[PHP-DOC] cvs: phpdoc / .cvsignore Makefile.in install.dsl install.xml From: Jouni Ahto (jahto <email protected>)
Date: 10/07/01

jah Sun Oct 7 07:35:04 2001 EDT

  Added files:
    /phpdoc install.xml install.dsl

  Modified files:
    /phpdoc Makefile.in .cvsignore
  Log:
  install.txt can now be generated separately for inclusion in distribution.
  
  
Index: phpdoc/Makefile.in
diff -u phpdoc/Makefile.in:1.73 phpdoc/Makefile.in:1.74
--- phpdoc/Makefile.in:1.73 Thu Oct 4 16:36:52 2001
+++ phpdoc/Makefile.in Sun Oct 7 07:35:04 2001
@@ -17,7 +17,7 @@
 #
 
 #
-# $Id: Makefile.in,v 1.73 2001/10/04 20:36:52 jimw Exp $
+# $Id: Makefile.in,v 1.74 2001/10/07 11:35:04 jah Exp $
 #
 
 VPATH= <email protected>@
@@ -183,6 +183,12 @@
 howto/howto.html.tar.gz: howto/html/index.html $(HOWTO_DEPS)
         tar -cvzf $@ howto/html/*.html
   
+install.html: install.xml $(HTML_DEPS)
+ $(JADE) $(CATALOG) -V nochunks -d install.dsl -t sgml $(srcdir)/phpdocxml.dcl install.xml > $@
+
+install.txt: install.html
+ lynx -nolist -dump file:`pwd`/$< > $@
+
 # File endings we are going to define general rules for:
 .SUFFIXES: .html .xml .sgml .tex .dvi .ps .rtf .pdf
 
Index: phpdoc/.cvsignore
diff -u phpdoc/.cvsignore:1.21 phpdoc/.cvsignore:1.22
--- phpdoc/.cvsignore:1.21 Sun Sep 30 17:57:27 2001
+++ phpdoc/.cvsignore Sun Oct 7 07:35:04 2001
@@ -36,6 +36,8 @@
 html.dsl
 html.xsl
 htmlhelp.xsl
+install.html
+install.txt
 makedoc
 php_manual_*
 manual.txt

Index: phpdoc/install.xml
+++ phpdoc/install.xml
<?xml version='1.0' encoding='ISO-8859-1' ?>
<!DOCTYPE book PUBLIC "-//Norman Walsh//DTD DocBk XML V1.7//EN"
          "./dbxml/docbookx.dtd" [

<!ENTITY % language-defs SYSTEM "./en/language-defs.ent">
<!ENTITY % language-snippets SYSTEM "./en/language-snippets.ent">

%language-defs;
%language-snippets;

<!-- All global entities for the XML files -->
<!ENTITY % global.entities SYSTEM "./global.ent">

<!-- All entities for the FAQ section -->
<!ENTITY % faqonly.entities SYSTEM "./faqurls.ent">

<!-- These are language independent -->
<!ENTITY % build.version SYSTEM "version.ent">
<!ENTITY % global.chapters SYSTEM "chapters.ent">

%global.entities;
%faqonly.entities;
%global.chapters;
%build.version;

]>

<book id="install" lang="en">
 <title>Installing PHP</title>
  &chapters.install;
</book>

<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
sgml-omittag:t
sgml-shorttag:t
sgml-minimize-attributes:nil
sgml-always-quote-attributes:t
sgml-indent-step:1
sgml-indent-data:t
sgml-parent-document:nil
sgml-default-dtd-file:"manual.ced"
sgml-exposed-tags:nil
sgml-local-catalogs:nil
sgml-local-ecat-files:nil
End:
-->

Index: phpdoc/install.dsl
+++ phpdoc/install.dsl
<!DOCTYPE style-sheet PUBLIC "-//James Clark//DTD DSSSL Style Sheet//EN" [
<!ENTITY docbook.dsl SYSTEM "/usr/lib/dsssl/stylesheets/docbook/html/docbook.dsl" CDATA DSSSL>
]>

<!--

  $Id: install.dsl,v 1.1 2001/10/07 11:35:04 jah Exp $

  Stylesheet customization for install.txt

-->

<style-sheet>
<style-specification id="docbook-php-html" use="docbook">
<style-specification-body>

(define %generate-chapter-toc% #f)
(define %generate-book-toc% #f)
(define ($generate-book-lot-list$) (list))
(define %generate-chapter-titlepage% #f)
(define %generate-part-titlepage% #f)
(define %generate-book-titlepage% #f)
(define %chapter-autolabel% #f)

</style-specification-body>
</style-specification>

<external-specification id="docbook" document="docbook.dsl">

</style-sheet>