From 1606742c13db7ecaf074f7def5cf67d15211dee5 Mon Sep 17 00:00:00 2001 From: Joshua Slive Date: Thu, 1 Aug 2002 19:33:59 +0000 Subject: [PATCH] Remove files that were moved to site-tools/httpd-docs-build (except for Makefile, which was just trashed because it isn't needed anymore) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96273 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/style/Makefile | 20 --------- docs/manual/style/build.sh | 30 ------------- docs/manual/style/build.xml | 88 ------------------------------------- 3 files changed, 138 deletions(-) delete mode 100644 docs/manual/style/Makefile delete mode 100644 docs/manual/style/build.sh delete mode 100644 docs/manual/style/build.xml diff --git a/docs/manual/style/Makefile b/docs/manual/style/Makefile deleted file mode 100644 index 14239feb93..0000000000 --- a/docs/manual/style/Makefile +++ /dev/null @@ -1,20 +0,0 @@ -# Uses Xalan-C++ to build Apache html documentation. - -workdir := ../mod -xmlfiles := $(wildcard $(workdir)/*.xml) -xmlfiles := $(subst allmodules.xml,,$(xmlfiles)) -htmlfiles := $(subst xml,html,$(xmlfiles)) - -html: $(htmlfiles) - -# Xalan-C users use this: -#%.html : %.xml -# xsl-c -HTML -OUT $@ -IN ./manual.xsl - -# Xalan-C++ users use this: -#%.html : %.xml -# Xalan -v -o $@ $< ./manual.xsl - -# Xalan-J users use this: -%.html : %.xml - java org.apache.xalan.xslt.Process -in $< -out $@ -xsl manual.xsl diff --git a/docs/manual/style/build.sh b/docs/manual/style/build.sh deleted file mode 100644 index f1b777c0d7..0000000000 --- a/docs/manual/style/build.sh +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/sh - -if [ "$JAVA_HOME" = "" ] ; then - echo You must set JAVA_HOME to point at your Java Development Kit directory - exit 1 -fi - -# convert the existing path to unix -if [ "$OSTYPE" = "cygwin32" ] || [ "$OSTYPE" = "cygwin" ] ; then - CLASSPATH=`cygpath --path --unix "$CLASSPATH"` -fi - -# Add in your .jar files first -for i in ./lib/*.jar -do - CLASSPATH=$CLASSPATH:"$i" -done - -# convert the unix path to windows -if [ "$OSTYPE" = "cygwin32" ] || [ "$OSTYPE" = "cygwin" ] ; then - CLASSPATH=`cygpath --path --windows "$CLASSPATH"` -fi - -BUILDFILE=build.xml - -${JAVA_HOME}/bin/java $ANT_OPTS -classpath "$CLASSPATH" \ - org.apache.tools.ant.Main \ - -Dant.home=$ANT_HOME \ - -buildfile ${BUILDFILE} \ - "$@" diff --git a/docs/manual/style/build.xml b/docs/manual/style/build.xml deleted file mode 100644 index ff52a92e3d..0000000000 --- a/docs/manual/style/build.xml +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -- 2.40.0