From: Michael Smith Date: Tue, 17 Jul 2007 14:44:36 +0000 (+0000) Subject: Remove old doc and docsrc dirs; we will rename the docx and X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7f687d5bcab2ea2f797412c8c4b66790343d1286;p=docbook-dsssl Remove old doc and docsrc dirs; we will rename the docx and docsrcx dirs to become the new doc and docsrc dirs. --- diff --git a/xsl/doc/.cvsignore b/xsl/doc/.cvsignore deleted file mode 100644 index adbe11dd7..000000000 --- a/xsl/doc/.cvsignore +++ /dev/null @@ -1,6 +0,0 @@ -*.html -reference.pdf.gz -reference.txt.gz -reference.fo -reference.pdf -reference.txt diff --git a/xsl/doc/AUTHORS b/xsl/doc/AUTHORS deleted file mode 100644 index 635ae5153..000000000 --- a/xsl/doc/AUTHORS +++ /dev/null @@ -1,3 +0,0 @@ -The reference documentation for the DocBook XSL stylesheets is -maintained by Norman Walsh, , and members of the -DocBook Project, diff --git a/xsl/doc/COPYING b/xsl/doc/COPYING deleted file mode 100644 index 8cbc3b9dc..000000000 --- a/xsl/doc/COPYING +++ /dev/null @@ -1,47 +0,0 @@ -Copyright ---------- -Copyright (C) 1999-2007 Norman Walsh -Copyright (C) 2003 Jiří Kosek -Copyright (C) 2004-2007 Steve Ball -Copyright (C) 2005-2007 The DocBook Project - -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation -files (the ``Software''), to deal in the Software without -restriction, including without limitation the rights to use, -copy, modify, merge, publish, distribute, sublicense, and/or -sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following -conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -Except as contained in this notice, the names of individuals -credited with contribution to this software shall not be used in -advertising or otherwise to promote the sale, use or other -dealings in this Software without prior written authorization -from the individuals in question. - -Any stylesheet derived from this Software that is publically -distributed will be identified with a different name and the -version strings in any derived Software will be changed so that -no possibility of confusion between the derived package and this -Software will exist. - -Warranty --------- -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES -OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL NORMAN WALSH OR ANY OTHER -CONTRIBUTOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -OTHER DEALINGS IN THE SOFTWARE. - -Contacting the Author ---------------------- -The reference documentation for the DocBook XSL stylesheets is -maintained by Norman Walsh, , and members of the -DocBook Project, diff --git a/xsl/doc/Makefile b/xsl/doc/Makefile deleted file mode 100644 index 19afdd203..000000000 --- a/xsl/doc/Makefile +++ /dev/null @@ -1,92 +0,0 @@ -include ../../releasetools/Variables.mk - -XJPARSEFLAGS= -E 0 -w -FO_BUILDER=saxon -XSLTOPT= -PROCOPT= - -XEP=xep -XEPFLAGS= - -TXT_MAKER = LANG=C w3mmee -TXT_MAKER_FLAGS = -dump -config $(W3MMEECONFIG) -W3MMEECONFIG = ../../releasetools/w3mmee_config - -GZIP=gzip -GZIPFLAGS= - -.PHONY : clean - -VPATH=../docsrc - -DIRS=common refentry lib html fo manpages roundtrip slides-html slides-fo website template utility - -%.included: % - $(XINCLUDE) $< >$@ - -# build reference.pdf.gz except for snapshot releases -ifneq (snapshot,$(findstring snapshot,$(RELVER))) -all: reference.txt.gz reference.pdf.gz html -else -all: reference.txt.gz html -endif - -html: base copyright.html warranty.html reference.html index.html - -base: - for i in $(DIRS) __bogus__; do \ - if [ $$i != __bogus__ ] ; then \ - echo "$(MAKE) -C $$i"; $(MAKE) -C $$i; \ - fi \ - done - -copyright.html: copyright.xml $(RSTYLE) - $(XJPARSE) $(XJPARSEFLAGS) $(VPATH)/$< - $(XSLT) $(PROCOPT) $< $(RSTYLE) $@ $(XSLTOPT) - -warranty.html: warranty.xml $(RSTYLE) - $(XJPARSE) $(XJPARSEFLAGS) $(VPATH)/$< - $(XSLT) $(PROCOPT) $< $(RSTYLE) $@ $(XSLTOPT) - -reference.html: reference.xml $(RSTYLE) - $(XJPARSE) $(XJPARSEFLAGS) $(VPATH)/$< - $(XSLT) $(PROCOPT) $< $(RSTYLE) $@ $(XSLTOPT) - -index.html: reference.html - cp -p $< $@ - -reference.fo: ../docsrc/reference.dbk.included $(REFERENCEFOXSL) - $(DOCBOOK_SVN)/buildtools/xslt -$(FO_BUILDER) $< $(REFERENCEFOXSL) > $@ - -reference.pdf: reference.fo - $(XEP) $(XEPFLAGS) $< - -reference.txt.html: ../docsrc/reference.dbk.included $(REFERENCETXTXSL) - $(XSLT) $< $(REFERENCETXTXSL) > $@ - -reference.txt: reference.txt.html - $(TXT_MAKER) $(TXT_MAKER_FLAGS) $< > $@ - -reference.pdf.gz: reference.pdf - cat $< | $(GZIP) $(GZIPFLAGS) > $@ - -reference.txt.gz: reference.txt - cat $< | $(GZIP) $(GZIPFLAGS) > $@ - -clean: - for i in $(DIRS) __bogus__; do \ - if [ $$i != __bogus__ ] ; then \ - echo "$(MAKE) -C $$i clean"; $(MAKE) -C $$i clean; \ - fi \ - done - $(RM) copyright.html - $(RM) index.html - $(RM) reference.html - $(RM) warranty.html - $(RM) reference.fo - $(RM) reference.pdf - $(RM) reference.txt - $(RM) reference.txt.html - $(RM) reference.pdf.gz - $(RM) reference.txt.gz - $(RM) ../docsrc/reference.dbk.included diff --git a/xsl/doc/Makefile.incl b/xsl/doc/Makefile.incl deleted file mode 100644 index 725ebb8da..000000000 --- a/xsl/doc/Makefile.incl +++ /dev/null @@ -1,17 +0,0 @@ -# Makefile.incl gets included by makefiles in all subdirs - -PARAMFILES = $(shell if [ -f $(VPATH)/docparam.xml ]; then $(XSLT) $(VPATH)/docparam.xml $(DOCPARAM2TXT); fi) - -all: $(HTMLFILES) - -%.html : %.xml $(JREFHTML) - $(XSLT) $< $(JREFHTML) $@ $(XSLTOPT) - -index.html: docparam.xml - $(XSLT) $< $(CLREFENTRY) $(XSLTOPT) - -clean: - $(RM) $(HTMLFILES) -ifneq ($(PARAMFILES),) - $(RM) $(PARAMFILES) -endif diff --git a/xsl/doc/README b/xsl/doc/README deleted file mode 100644 index ddd9aebe7..000000000 --- a/xsl/doc/README +++ /dev/null @@ -1,34 +0,0 @@ ----------------------------------------------------------------------- - README file for the DocBook XSL Stylesheets reference documentation ----------------------------------------------------------------------- -$Id$ - -This is generated reference documentation for the DocBook XSL -stylesheets, primarily documentation on the parameters you can -adjust to control the behavior of the stylesheets. - -This is purely reference documentation, not how-to documentation. -For a thorough step-by-step how-to guide to publishing content -using the DocBook XSL stylesheets, see Bob Stayton's "DocBook XSL: -The Complete Guide", available online at - - http://www.sagehill.net/docbookxsl/ - ----------------------------------------------------------------------- -Manifest ----------------------------------------------------------------------- -AUTHORS - contact information -COPYING - copyright, license, and warranty information -README - this file -copyright.html - copyright and license information (HTML) -index.html - documentation start page -reference.html - documentation start page (same as index.html) -reference.pdf.gz - documentation in PDF form (gzipped) -reference.txt.gz - documentation in plain-text form (gzipped) -warranty.html - warranty information (HTML)and - -The subdirectories all contain documentation on individual DocBook -XSL stylesheets parameters, in HTML form. You don't need to access -the subdirectories directly, because the content in all the -subdirectories is accessible through the index.html (and -reference.html) start page. diff --git a/xsl/doc/common/.cvsignore b/xsl/doc/common/.cvsignore deleted file mode 100644 index 2d19fc766..000000000 --- a/xsl/doc/common/.cvsignore +++ /dev/null @@ -1 +0,0 @@ -*.html diff --git a/xsl/doc/common/Makefile b/xsl/doc/common/Makefile deleted file mode 100644 index 6535b3d99..000000000 --- a/xsl/doc/common/Makefile +++ /dev/null @@ -1,4 +0,0 @@ -include ../../../releasetools/Variables.mk -VPATH=../../docsrc/common -HTMLFILES = common.html -include ../Makefile.incl diff --git a/xsl/doc/css/reference.css b/xsl/doc/css/reference.css deleted file mode 100644 index 653e0ff00..000000000 --- a/xsl/doc/css/reference.css +++ /dev/null @@ -1,43 +0,0 @@ -/* reference.css, a stylesheet for reference documentation */ - -div.legalnotice { font-size: 80%; } - -div.note { - border-left: solid #d5dee3 20px; - border-right: solid #d5dee3 20px; - margin-left: 5%; - margin-right: 10%; - padding: 5px; -} - -div.informalexample { background-color: #d5dee3; - border-top-width: 2px; - border-top-style: double; - border-top-color: #d3d3d3; - border-bottom-width: 2px; - border-bottom-style: double; - border-bottom-color: #d3d3d3; - padding: 4px; - margin: 0em; - margin-left: 2em; - } - -pre.programlisting { whitespace: pre; - font-family: monospace; - background-color: #d5dee3; - border-top-width: 1px; - border-top-style: single; - border-top-color: #d3d3d3; - border-bottom-width: 1px; - border-bottom-style: single; - border-bottom-color: #d3d3d3; - padding: 4px; - margin: 0em; - } - -div.informalexample pre { whitespace: pre; - font-family: monospace; - border-top-width: 0px; - border-bottom-width: 0px; - padding: 0px; - } diff --git a/xsl/doc/fo/.cvsignore b/xsl/doc/fo/.cvsignore deleted file mode 100644 index 2d19fc766..000000000 --- a/xsl/doc/fo/.cvsignore +++ /dev/null @@ -1 +0,0 @@ -*.html diff --git a/xsl/doc/fo/Makefile b/xsl/doc/fo/Makefile deleted file mode 100644 index da7148d9a..000000000 --- a/xsl/doc/fo/Makefile +++ /dev/null @@ -1,4 +0,0 @@ -include ../../../releasetools/Variables.mk -VPATH=../../docsrc/fo -HTMLFILES = index.html table.html -include ../Makefile.incl diff --git a/xsl/doc/fo/page.png b/xsl/doc/fo/page.png deleted file mode 100644 index 9c15d8883..000000000 Binary files a/xsl/doc/fo/page.png and /dev/null differ diff --git a/xsl/doc/html/.cvsignore b/xsl/doc/html/.cvsignore deleted file mode 100644 index 2d19fc766..000000000 --- a/xsl/doc/html/.cvsignore +++ /dev/null @@ -1 +0,0 @@ -*.html diff --git a/xsl/doc/html/Makefile b/xsl/doc/html/Makefile deleted file mode 100644 index 007900e41..000000000 --- a/xsl/doc/html/Makefile +++ /dev/null @@ -1,4 +0,0 @@ -include ../../../releasetools/Variables.mk -VPATH=../../docsrc/html -HTMLFILES = index.html -include ../Makefile.incl diff --git a/xsl/doc/lib/.cvsignore b/xsl/doc/lib/.cvsignore deleted file mode 100644 index 2d19fc766..000000000 --- a/xsl/doc/lib/.cvsignore +++ /dev/null @@ -1 +0,0 @@ -*.html diff --git a/xsl/doc/lib/Makefile b/xsl/doc/lib/Makefile deleted file mode 100644 index 86745dca5..000000000 --- a/xsl/doc/lib/Makefile +++ /dev/null @@ -1,4 +0,0 @@ -include ../../../releasetools/Variables.mk -VPATH=../../lib -HTMLFILES = lib.html -include ../Makefile.incl diff --git a/xsl/doc/manpages/.cvsignore b/xsl/doc/manpages/.cvsignore deleted file mode 100644 index 2d19fc766..000000000 --- a/xsl/doc/manpages/.cvsignore +++ /dev/null @@ -1 +0,0 @@ -*.html diff --git a/xsl/doc/manpages/Makefile b/xsl/doc/manpages/Makefile deleted file mode 100644 index 98c468ced..000000000 --- a/xsl/doc/manpages/Makefile +++ /dev/null @@ -1,4 +0,0 @@ -include ../../../releasetools/Variables.mk -VPATH=../../docsrc/manpages -HTMLFILES = index.html -include ../Makefile.incl diff --git a/xsl/doc/pi/.cvsignore b/xsl/doc/pi/.cvsignore deleted file mode 100644 index 2d19fc766..000000000 --- a/xsl/doc/pi/.cvsignore +++ /dev/null @@ -1 +0,0 @@ -*.html diff --git a/xsl/doc/pi/Makefile b/xsl/doc/pi/Makefile deleted file mode 100644 index 5753e0c6d..000000000 --- a/xsl/doc/pi/Makefile +++ /dev/null @@ -1,7 +0,0 @@ -include ../../../releasetools/Variables.mk -VPATH=../../docsrc/pi -HTMLFILES = common.html -include ../Makefile.incl - -common.html: pi.xml - $(XSLT) $< $(PIREFENTRY) $(XSLTOPT) diff --git a/xsl/doc/refentry/.cvsignore b/xsl/doc/refentry/.cvsignore deleted file mode 100644 index 2d19fc766..000000000 --- a/xsl/doc/refentry/.cvsignore +++ /dev/null @@ -1 +0,0 @@ -*.html diff --git a/xsl/doc/refentry/Makefile b/xsl/doc/refentry/Makefile deleted file mode 100644 index 5a91a4a6e..000000000 --- a/xsl/doc/refentry/Makefile +++ /dev/null @@ -1,4 +0,0 @@ -include ../../../releasetools/Variables.mk -VPATH=../../docsrc/refentry -HTMLFILES = refentry.html -include ../Makefile.incl diff --git a/xsl/doc/roundtrip/.cvsignore b/xsl/doc/roundtrip/.cvsignore deleted file mode 100644 index 2d19fc766..000000000 --- a/xsl/doc/roundtrip/.cvsignore +++ /dev/null @@ -1 +0,0 @@ -*.html diff --git a/xsl/doc/roundtrip/Makefile b/xsl/doc/roundtrip/Makefile deleted file mode 100644 index 78d16cc8a..000000000 --- a/xsl/doc/roundtrip/Makefile +++ /dev/null @@ -1,4 +0,0 @@ -include ../../../releasetools/Variables.mk -VPATH=../../docsrc/roundtrip -HTMLFILES = index.html -include ../Makefile.incl diff --git a/xsl/doc/slides-fo/.cvsignore b/xsl/doc/slides-fo/.cvsignore deleted file mode 100644 index 2d19fc766..000000000 --- a/xsl/doc/slides-fo/.cvsignore +++ /dev/null @@ -1 +0,0 @@ -*.html diff --git a/xsl/doc/slides-fo/Makefile b/xsl/doc/slides-fo/Makefile deleted file mode 100644 index cef3f67c1..000000000 --- a/xsl/doc/slides-fo/Makefile +++ /dev/null @@ -1,4 +0,0 @@ -include ../../../releasetools/Variables.mk -VPATH=../../docsrc/slides-fo -HTMLFILES = index.html -include ../Makefile.incl diff --git a/xsl/doc/slides-html/.cvsignore b/xsl/doc/slides-html/.cvsignore deleted file mode 100644 index 2d19fc766..000000000 --- a/xsl/doc/slides-html/.cvsignore +++ /dev/null @@ -1 +0,0 @@ -*.html diff --git a/xsl/doc/slides-html/Makefile b/xsl/doc/slides-html/Makefile deleted file mode 100644 index d66e0eab5..000000000 --- a/xsl/doc/slides-html/Makefile +++ /dev/null @@ -1,4 +0,0 @@ -include ../../../releasetools/Variables.mk -VPATH=../../docsrc/slides-html -HTMLFILES = index.html -include ../Makefile.incl diff --git a/xsl/doc/template/.cvsignore b/xsl/doc/template/.cvsignore deleted file mode 100644 index 2d19fc766..000000000 --- a/xsl/doc/template/.cvsignore +++ /dev/null @@ -1 +0,0 @@ -*.html diff --git a/xsl/doc/template/Makefile b/xsl/doc/template/Makefile deleted file mode 100644 index 38e39f84b..000000000 --- a/xsl/doc/template/Makefile +++ /dev/null @@ -1,4 +0,0 @@ -include ../../../releasetools/Variables.mk -VPATH=../../docsrc/template -HTMLFILES = titlepage.html -include ../Makefile.incl diff --git a/xsl/doc/utility/.cvsignore b/xsl/doc/utility/.cvsignore deleted file mode 100644 index 2d19fc766..000000000 --- a/xsl/doc/utility/.cvsignore +++ /dev/null @@ -1 +0,0 @@ -*.html diff --git a/xsl/doc/utility/Makefile b/xsl/doc/utility/Makefile deleted file mode 100644 index b5a06981f..000000000 --- a/xsl/doc/utility/Makefile +++ /dev/null @@ -1,4 +0,0 @@ -include ../../../releasetools/Variables.mk -VPATH=../../docsrc/utility -HTMLFILES = utility.html -include ../Makefile.incl diff --git a/xsl/doc/website/.cvsignore b/xsl/doc/website/.cvsignore deleted file mode 100644 index 2d19fc766..000000000 --- a/xsl/doc/website/.cvsignore +++ /dev/null @@ -1 +0,0 @@ -*.html diff --git a/xsl/doc/website/Makefile b/xsl/doc/website/Makefile deleted file mode 100644 index 525beeac3..000000000 --- a/xsl/doc/website/Makefile +++ /dev/null @@ -1,4 +0,0 @@ -include ../../../releasetools/Variables.mk -VPATH=../../docsrc/website -HTMLFILES = index.html -include ../Makefile.incl diff --git a/xsl/docsrc/Makefile b/xsl/docsrc/Makefile deleted file mode 100644 index 04fb8798d..000000000 --- a/xsl/docsrc/Makefile +++ /dev/null @@ -1,32 +0,0 @@ -include ../../releasetools/Variables.mk -DIRS=common refentry html fo manpages roundtrip slides-html slides-fo website template utility pi-fo pi-html pi-common - -DOCBOOK_RNG=$(DOCBOOK_SVN)/releasetools/docbook.rng -PARAM_XSL_FILES=$(shell for file in $$(find .. -name "param.xsl"); do \ - readlink -f $$file; done | grep -v xhtml) - -all: base $(DOCBOOK_ELEMENTS) $(XSL_PARAMS) - -base: - for i in $(DIRS) __bogus__; do \ - if [ $$i != __bogus__ ] ; then \ - echo "$(MAKE) -C $$i"; $(MAKE) -C $$i; \ - fi \ - done - -clean: - for i in $(DIRS) __bogus__; do \ - if [ $$i != __bogus__ ] ; then \ - echo "$(MAKE) -C $$i clean"; $(MAKE) -C $$i clean; \ - fi \ - done - -$(DOCBOOK_ELEMENTS): $(MAKE_ELEMENTS_XSL) $(DOCBOOK_RNG) - $(XSLT) $(DOCBOOK_RNG) $< $@ - -$(XSL_PARAMS): $(MAKE_PARAMS_XSL) $(PARAM_XSL_FILES) - $(XSLT) $< $< $@ - -release-clean: clean - $(RM) $(DOCBOOK_ELEMENTS) - $(RM) $(XSL_PARAMS) diff --git a/xsl/docsrc/Makefile.incl b/xsl/docsrc/Makefile.incl deleted file mode 100644 index da8aaa64f..000000000 --- a/xsl/docsrc/Makefile.incl +++ /dev/null @@ -1,25 +0,0 @@ -XJPARSEFLAGS=-E 0 -w -all: $(XMLFILES) - -clean: - $(RM) $(XMLFILES) - -%.refsect1.xml: %.xml $(JREF2REFSECT1) - $(XSLT) $< $(JREF2REFSECT1) $@ - -%.xml : %.xsl $(XSL2JREF) - $(XSLT) $< $(XSL2JREF) /dev/null output-file=$@ - $(XJPARSE) $(XJPARSEFLAGS) $@ - -docparam.xml: $(VPATH)/param.xweb $(PARAMS) - $(DOCBOOK_SVN)/buildtools/paramchk -m Makefile.param $< - $(XSLT) $< ../../profiling/profile.xsl $(PARAMPROF) profile.condition=html - $(XSLT) $(PARAMPROF) ../../profiling/strip-attributes.xsl $(PARAMSTRIP) attributes=condition -ifeq ($(ADDNEWLINE),) - $(XSLT) $(PARAMSTRIP) $(DOCBOOK_SVN)/releasetools/w2docbook.xsl $@ -else - $(XSLT) $(PARAMSTRIP) $(DOCBOOK_SVN)/releasetools/w2docbook.xsl $@.tmp - $(XSLT) $@.tmp $(ADDNEWLINE) $@ - $(RM) $@.tmp -endif - $(RM) $(PARAMPROF) $(PARAMSTRIP) diff --git a/xsl/docsrc/authors.xml b/xsl/docsrc/authors.xml deleted file mode 100644 index ee203251a..000000000 --- a/xsl/docsrc/authors.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - WalshNorman - - - - The DocBook Project - - diff --git a/xsl/docsrc/common/.cvsignore b/xsl/docsrc/common/.cvsignore deleted file mode 100644 index 6722cd96e..000000000 --- a/xsl/docsrc/common/.cvsignore +++ /dev/null @@ -1 +0,0 @@ -*.xml diff --git a/xsl/docsrc/common/Makefile b/xsl/docsrc/common/Makefile deleted file mode 100644 index 01e1c7829..000000000 --- a/xsl/docsrc/common/Makefile +++ /dev/null @@ -1,4 +0,0 @@ -include ../../../releasetools/Variables.mk -VPATH=../../common -XMLFILES = common.xml common.refsect1.xml -include ../Makefile.incl diff --git a/xsl/docsrc/copyright.xml b/xsl/docsrc/copyright.xml deleted file mode 100644 index 31948ddce..000000000 --- a/xsl/docsrc/copyright.xml +++ /dev/null @@ -1,19 +0,0 @@ - - - 1999-2007 - Norman Walsh - - - 2003 - Jiří Kosek - - - 2004-2007 - Steve Ball - - - 2001-2007 - The DocBook Project - - diff --git a/xsl/docsrc/fo/.cvsignore b/xsl/docsrc/fo/.cvsignore deleted file mode 100644 index 597a43c7d..000000000 --- a/xsl/docsrc/fo/.cvsignore +++ /dev/null @@ -1,2 +0,0 @@ -*.xml -Makefile.param diff --git a/xsl/docsrc/fo/Makefile b/xsl/docsrc/fo/Makefile deleted file mode 100644 index 844ee0bd7..000000000 --- a/xsl/docsrc/fo/Makefile +++ /dev/null @@ -1,4 +0,0 @@ -include ../../../releasetools/Variables.mk -VPATH=../../fo -XMLFILES = docparam.xml table.xml table.refsect1.xml -include ../Makefile.incl diff --git a/xsl/docsrc/html/.cvsignore b/xsl/docsrc/html/.cvsignore deleted file mode 100644 index 597a43c7d..000000000 --- a/xsl/docsrc/html/.cvsignore +++ /dev/null @@ -1,2 +0,0 @@ -*.xml -Makefile.param diff --git a/xsl/docsrc/html/Makefile b/xsl/docsrc/html/Makefile deleted file mode 100644 index 51cc59c8e..000000000 --- a/xsl/docsrc/html/Makefile +++ /dev/null @@ -1,4 +0,0 @@ -include ../../../releasetools/Variables.mk -VPATH=../../html -XMLFILES = docparam.xml -include ../Makefile.incl diff --git a/xsl/docsrc/license.xml b/xsl/docsrc/license.xml deleted file mode 100644 index 017a9ed97..000000000 --- a/xsl/docsrc/license.xml +++ /dev/null @@ -1,26 +0,0 @@ -License - -Permission is hereby granted, free of charge, to any person -obtaining a copy of this software and associated documentation files -(the Software), to deal in the Software without -restriction, including without limitation the rights to use, copy, -modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished -to do so, subject to the following conditions: - - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -Except as contained in this notice, the names of individuals -credited with contribution to this software shall not be used in -advertising or otherwise to promote the sale, use or other dealings in -this Software without prior written authorization from the individuals -in question. - -Any stylesheet derived from this Software that is publically -distributed will be identified with a different name and the version -strings in any derived Software will be changed so that no possibility -of confusion between the derived package and this Software will -exist. - diff --git a/xsl/docsrc/manpages/.cvsignore b/xsl/docsrc/manpages/.cvsignore deleted file mode 100644 index 597a43c7d..000000000 --- a/xsl/docsrc/manpages/.cvsignore +++ /dev/null @@ -1,2 +0,0 @@ -*.xml -Makefile.param diff --git a/xsl/docsrc/manpages/Makefile b/xsl/docsrc/manpages/Makefile deleted file mode 100644 index c1b074518..000000000 --- a/xsl/docsrc/manpages/Makefile +++ /dev/null @@ -1,4 +0,0 @@ -include ../../../releasetools/Variables.mk -VPATH=../../manpages -XMLFILES = docparam.xml -include ../Makefile.incl diff --git a/xsl/docsrc/pi-common/Makefile b/xsl/docsrc/pi-common/Makefile deleted file mode 100644 index 35830a370..000000000 --- a/xsl/docsrc/pi-common/Makefile +++ /dev/null @@ -1,4 +0,0 @@ -include ../../../releasetools/Variables.mk -VPATH=../../common -XMLFILES = pi.xml pi.refsect1.xml -include ../Makefile.incl diff --git a/xsl/docsrc/pi-fo/Makefile b/xsl/docsrc/pi-fo/Makefile deleted file mode 100644 index d3a4b8fb5..000000000 --- a/xsl/docsrc/pi-fo/Makefile +++ /dev/null @@ -1,4 +0,0 @@ -include ../../../releasetools/Variables.mk -VPATH=../../fo -XMLFILES = pi.xml pi.refsect1.xml -include ../Makefile.incl diff --git a/xsl/docsrc/pi-html/Makefile b/xsl/docsrc/pi-html/Makefile deleted file mode 100644 index d3a4b8fb5..000000000 --- a/xsl/docsrc/pi-html/Makefile +++ /dev/null @@ -1,4 +0,0 @@ -include ../../../releasetools/Variables.mk -VPATH=../../fo -XMLFILES = pi.xml pi.refsect1.xml -include ../Makefile.incl diff --git a/xsl/docsrc/refentry/.cvsignore b/xsl/docsrc/refentry/.cvsignore deleted file mode 100644 index 6722cd96e..000000000 --- a/xsl/docsrc/refentry/.cvsignore +++ /dev/null @@ -1 +0,0 @@ -*.xml diff --git a/xsl/docsrc/refentry/Makefile b/xsl/docsrc/refentry/Makefile deleted file mode 100644 index 5be64c7b7..000000000 --- a/xsl/docsrc/refentry/Makefile +++ /dev/null @@ -1,4 +0,0 @@ -include ../../../releasetools/Variables.mk -VPATH=../../common -XMLFILES = refentry.xml refentry.refsect1.xml -include ../Makefile.incl diff --git a/xsl/docsrc/reference.dbk b/xsl/docsrc/reference.dbk deleted file mode 100644 index c19123983..000000000 --- a/xsl/docsrc/reference.dbk +++ /dev/null @@ -1,266 +0,0 @@ - - - DocBook XSL Stylesheets: Reference Documentation - $Id$ - - - - - - About this document - This is generated reference documentation for the DocBook - XSL stylesheets, primarily documentation on the parameters you - can adjust to control the behavior of the stylesheets. - - This is purely reference documentation â€“ not how-to - documentation. For a thorough step-by-step how-to guide to - publishing content using the DocBook XSL stylesheets, see - Bob Stayton’s DocBook XSL: The Complete Guide, available online - at http://www.sagehill.net/docbookxsl/index.html - - - This document is divided into three sets of references: - the first two sets provides user documentation; the third, - developer documentation. - - - DocBook XSL Stylesheets User Reference: Parameters - - - This is generated reference documentation for all - user-configurable parameters in the DocBook XSL - stylesheets. - - This is purely reference documentation â€“ not how-to - documentation. For a thorough step-by-step how-to guide to - publishing content using the DocBook XSL stylesheets, see - Bob Stayton’s DocBook XSL: The Complete Guide, available online - at http://www.sagehill.net/docbookxsl/index.html - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - DocBook XSL Stylesheets User Reference: PIs - - - This is generated reference documentation for all - user-specifiable processing instructions in the DocBook - XSL stylesheets. - - You add these PIs at particular points in a document to - cause specific “exceptions” to formatting/output behavior. To - make global changes in formatting/output behavior across an - entire document, it’s better to do it by setting an - appropriate stylesheet parameter (if there is one). - - - - - - - - - - Templates - - - - - - - - - Templates - - - - - - - - - Templates - - - - - DocBook XSL Stylesheets Developer Reference - - - This is technical reference documentation for - developers using the DocBook XSL Stylesheets. It is not - intended to be user documentation, but is instead - provided for developers writing customization layers for - the stylesheets. - - - - - - - - - - - - - - - - - - Templates - - - - - - - - - - - Templates - - - - - - - - - - - Templates - - - - - - - - - - - Templates - - - - - - - - - - - Templates - - - - - diff --git a/xsl/docsrc/reference.xml b/xsl/docsrc/reference.xml deleted file mode 100644 index c009075a8..000000000 --- a/xsl/docsrc/reference.xml +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - - - - - - - -]> - - - DocBook XSL Stylesheet Reference Documentation - - $Id$ - - Walsh - Norman - - 1999-2007 - Norman Walsh - - - - - About this document - - This is generated reference documentation for the DocBook XSL - stylesheets, primarily documentation on the parameters you can - adjust to control the behavior of the stylesheets. - - - This is purely reference documentation â€“ not how-to - documentation. For a thorough step-by-step how-to guide to - publishing content using the DocBook XSL stylesheets, see Bob - Stayton’s DocBook - XSL: The Complete Guide, available online at http://www.sagehill.net/docbookxsl/index.html - - - This document is divided into two sets of references: the - first set provides user documentation; the second, developer - documentation. - - - User documentation - - - - - - - - - - - - - - - - - - Developer documentation - - - - - - - - - - - - - - - - diff --git a/xsl/docsrc/roundtrip/.cvsignore b/xsl/docsrc/roundtrip/.cvsignore deleted file mode 100644 index 597a43c7d..000000000 --- a/xsl/docsrc/roundtrip/.cvsignore +++ /dev/null @@ -1,2 +0,0 @@ -*.xml -Makefile.param diff --git a/xsl/docsrc/roundtrip/Makefile b/xsl/docsrc/roundtrip/Makefile deleted file mode 100644 index 7d254aef9..000000000 --- a/xsl/docsrc/roundtrip/Makefile +++ /dev/null @@ -1,4 +0,0 @@ -include ../../../releasetools/Variables.mk -VPATH=../../roundtrip -XMLFILES = docparam.xml -include ../Makefile.incl diff --git a/xsl/docsrc/slides-fo/.cvsignore b/xsl/docsrc/slides-fo/.cvsignore deleted file mode 100644 index 597a43c7d..000000000 --- a/xsl/docsrc/slides-fo/.cvsignore +++ /dev/null @@ -1,2 +0,0 @@ -*.xml -Makefile.param diff --git a/xsl/docsrc/slides-fo/Makefile b/xsl/docsrc/slides-fo/Makefile deleted file mode 100644 index ea6ba303c..000000000 --- a/xsl/docsrc/slides-fo/Makefile +++ /dev/null @@ -1,4 +0,0 @@ -include ../../../releasetools/Variables.mk -VPATH=../../slides/fo -XMLFILES = docparam.xml -include ../Makefile.incl diff --git a/xsl/docsrc/slides-html/.cvsignore b/xsl/docsrc/slides-html/.cvsignore deleted file mode 100644 index 597a43c7d..000000000 --- a/xsl/docsrc/slides-html/.cvsignore +++ /dev/null @@ -1,2 +0,0 @@ -*.xml -Makefile.param diff --git a/xsl/docsrc/slides-html/Makefile b/xsl/docsrc/slides-html/Makefile deleted file mode 100644 index f6e2a8bde..000000000 --- a/xsl/docsrc/slides-html/Makefile +++ /dev/null @@ -1,4 +0,0 @@ -include ../../../releasetools/Variables.mk -VPATH=../../slides/html -XMLFILES = docparam.xml -include ../Makefile.incl diff --git a/xsl/docsrc/template/.cvsignore b/xsl/docsrc/template/.cvsignore deleted file mode 100644 index 6722cd96e..000000000 --- a/xsl/docsrc/template/.cvsignore +++ /dev/null @@ -1 +0,0 @@ -*.xml diff --git a/xsl/docsrc/template/Makefile b/xsl/docsrc/template/Makefile deleted file mode 100644 index dad0c4d82..000000000 --- a/xsl/docsrc/template/Makefile +++ /dev/null @@ -1,4 +0,0 @@ -include ../../../releasetools/Variables.mk -VPATH=../../template -XMLFILES = titlepage.xml titlepage.refsect1.xml -include ../Makefile.incl diff --git a/xsl/docsrc/utility/.cvsignore b/xsl/docsrc/utility/.cvsignore deleted file mode 100644 index 6722cd96e..000000000 --- a/xsl/docsrc/utility/.cvsignore +++ /dev/null @@ -1 +0,0 @@ -*.xml diff --git a/xsl/docsrc/utility/Makefile b/xsl/docsrc/utility/Makefile deleted file mode 100644 index 259c18706..000000000 --- a/xsl/docsrc/utility/Makefile +++ /dev/null @@ -1,4 +0,0 @@ -include ../../../releasetools/Variables.mk -VPATH=../../common -XMLFILES = utility.xml utility.refsect1.xml -include ../Makefile.incl diff --git a/xsl/docsrc/warranty.xml b/xsl/docsrc/warranty.xml deleted file mode 100644 index 99d230f2a..000000000 --- a/xsl/docsrc/warranty.xml +++ /dev/null @@ -1,14 +0,0 @@ - - -Warranty -THE SOFTWARE IS PROVIDED AS IS, -WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT -LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR -PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL NORMAN WALSH OR ANY -OTHER CONTRIBUTOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, -WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT -OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - diff --git a/xsl/docsrc/website/.cvsignore b/xsl/docsrc/website/.cvsignore deleted file mode 100644 index 597a43c7d..000000000 --- a/xsl/docsrc/website/.cvsignore +++ /dev/null @@ -1,2 +0,0 @@ -*.xml -Makefile.param diff --git a/xsl/docsrc/website/Makefile b/xsl/docsrc/website/Makefile deleted file mode 100644 index 0928cb056..000000000 --- a/xsl/docsrc/website/Makefile +++ /dev/null @@ -1,4 +0,0 @@ -include ../../../releasetools/Variables.mk -VPATH=../../website -XMLFILES = docparam.xml -include ../Makefile.incl