Return-Path: Mailing-List: contact xerces-cvs-help@xml.apache.org; run by ezmlm Delivered-To: mailing list xerces-cvs@xml.apache.org Received: (qmail 9001 invoked by uid 1054); 5 Feb 2001 17:03:12 -0000 Date: 5 Feb 2001 17:03:12 -0000 Message-ID: <20010205170312.8999.qmail@apache.org> From: tng@apache.org To: xml-xerces-cvs@apache.org Subject: cvs commit: xml-xerces/c/scripts packageSources.pl tng 01/02/05 09:03:11 Modified: c/doc pdf-c.xml xerces-c_book.xml c/doc/html/apiDocs header.html c/scripts packageSources.pl Log: Add pdf documentation generation. Revision Changes Path 1.2 +2 -4 xml-xerces/c/doc/pdf-c.xml Index: pdf-c.xml =================================================================== RCS file: /home/cvs/xml-xerces/c/doc/pdf-c.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- pdf-c.xml 2000/06/09 19:06:52 1.1 +++ pdf-c.xml 2001/02/05 17:02:56 1.2 @@ -4,12 +4,10 @@

You can get the entire &XercesCName; documentation in - PDF format for + PDF format for printing and offline reference.

A word of caution! The tools to create the PDF documentation are still experimental. So the resulting PDF document is not perfect. We would be glad to receive your comments on - &XercesCName; mailing list. We know, - for example, that links do not work properly, images are not supported yet, and the - shading within the document (around source code) does not print properly. + &XercesCName; mailing list.
1.17 +1 -0 xml-xerces/c/doc/xerces-c_book.xml Index: xerces-c_book.xml =================================================================== RCS file: /home/cvs/xml-xerces/c/doc/xerces-c_book.xml,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- xerces-c_book.xml 2001/02/05 15:01:05 1.16 +++ xerces-c_book.xml 2001/02/05 17:02:58 1.17 @@ -45,6 +45,7 @@ + 1.7 +5 -3 xml-xerces/c/doc/html/apiDocs/header.html Index: header.html =================================================================== RCS file: /home/cvs/xml-xerces/c/doc/html/apiDocs/header.html,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- header.html 2001/01/26 21:59:21 1.6 +++ header.html 2001/02/05 17:03:03 1.7 @@ -23,12 +23,14 @@ Releases
Feedback
Bug-Todo
+ PDF Document

- Download
- CVS Repository
- Mail Archive
+ Download
+ CVS Repository
+ Mail Archive
+
API Docs for SAX and DOM
  1.27 +5 -6 xml-xerces/c/scripts/packageSources.pl Index: packageSources.pl =================================================================== RCS file: /home/cvs/xml-xerces/c/scripts/packageSources.pl,v retrieving revision 1.26 retrieving revision 1.27 diff -u -r1.26 -r1.27 --- packageSources.pl 2001/01/12 22:09:07 1.26 +++ packageSources.pl 2001/02/05 17:03:09 1.27 @@ -47,7 +47,7 @@ while ($fileline = ) { if ($fileline =~ /gXML4CFullVersionStr = \"(.*)\"/) { # " - $binarytargetdir = $1; # We found the version string inside this file + $binarytargetdir = $1; # We found the version string inside this file } } close(VERSIONFILE); @@ -97,12 +97,10 @@ system("cp -Rf $XERCESCROOT/* $srctargetdir"); # Select APache style or IBM Alphaworks style docs - $styleFile = "style-apachexml.jar"; if (length($ICUROOT) > 0) { change_documentation_entities("$srctargetdir/doc/dtd/entities.ent"); change_doxygen("$srctargetdir/doc/Doxyfile"); change_createdocs_bat("$srctargetdir/createdocs.bat"); - $styleFile = "style-ibm.zip"; } # Now create the API documentation from the XML sources @@ -117,11 +115,12 @@ system("$RM -rf *.dep"); system("$RM -rf *.mak"); system("$RM -rf Makefile"); - system("java -classpath \"../tools/jars/stylebook-1.0-b2.jar;../tools/jars/xalan.jar;../tools/jars/xerces.jar\" org.apache.stylebook.StyleBook \"targetDirectory=$srctargetdir/doc/html\" xerces-c_book.xml ../tools/jars/$styleFile"); + chdir ("$srctargetdir"); + system("createdocs"); } else { # all UNIX flavors - + # Docs are only building on Windows for now... $RM = "\\rm"; @@ -312,7 +311,7 @@ open (FIZZLEOUT, ">$thefile"); while ($line = ) { $line =~ s/Xerces-C/XML4C/g; - $line =~ s/1\.3\.0/3\.3\.1/g; + $line =~ s/1\.4\.0/3\.4\.0/g; $line =~ s/header.html/header_ibm.html/g; print FIZZLEOUT $line; }