From: Joshua Slive Date: Thu, 1 Aug 2002 19:33:59 +0000 (+0000) Subject: Remove files that were moved to site-tools/httpd-docs-build X-Git-Tag: 2.0.40~48 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=93376661043d82f0ea6608f75ee49364a20f3a86;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/docs/manual/style/Makefile b/docs/manual/style/Makefile deleted file mode 100644 index 14239feb93e..00000000000 --- 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 f1b777c0d73..00000000000 --- 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 ff52a92e3d1..00000000000 --- a/docs/manual/style/build.xml +++ /dev/null @@ -1,88 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -