Update of /cvsroot/mockpp/mockpp/mockpp/docs/en
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19012
Modified Files:
.cvsignore Makefile.am
Added Files:
customize.xsl.in
Removed Files:
customize-chunked.xsl
Log Message:
cygwin fix
--- customize-chunked.xsl DELETED ---
--- NEW FILE: customize.xsl.in ---
<?xml version='1.0'?>
<!-- Common custumisation options
$Id: customize.xsl.in,v 1.1 2005/05/27 08:15:53 ewald-arnold Exp $
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:import href="@CHUNK_XSL@"/>
<!--
<xsl:template name="user.footer.content">
<HR/><center><P class="copyright">© 2002 Megacorp, Inc.</P>
<br />
</center>
</xsl:template>
user.header.navigation Called before standard navigational header.
header.navigation The standard navigational header.
user.header.content Called after standard navigational header but before any other content.
user.footer.content Called after the chunk content but before the standard navigational footer.
footer.navigation The standard navigational footer.
user.footer.navigation Called after the standard navigational footer
-->
<xsl:param name="html.stylesheet" select="'common/mockpp.css'"/>
<xsl:param name="admon.graphics" select="1"/>
<xsl:param name="linenumbering.extension" select="1"/>
<xsl:param name="chapter.autolabel" select="1"/>
<xsl:param name="appendix.autolabel" select="1"/>
<xsl:param name="section.autolabel" select="1"/>
<xsl:param name="section.label.includes.component.label" select="1"/>
<xsl:param name="callout.graphics.number.limit" select="'15'"/>
<xsl:param name="use.id.as.filename" select="'1'"/>
<xsl:param name="use.extensions" select="'1'"/>
</xsl:stylesheet>
Index: Makefile.am
===================================================================
RCS file: /cvsroot/mockpp/mockpp/mockpp/docs/en/Makefile.am,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -d -r1.25 -r1.26
--- Makefile.am 7 May 2005 17:00:56 -0000 1.25
+++ Makefile.am 27 May 2005 08:15:53 -0000 1.26
@@ -25,7 +25,10 @@
################################################################
-html-chunk-files:
+$(srcdir)/customize.xsl: customize.xsl
+ cp $< $@
+
+html-chunk-files: $(srcdir)/customize.xsl
-test -L tutorial && rm tutorial
ln -s ../../examples/tutorial/html tutorial
-test -L api-doc && rm api-doc
@@ -41,7 +44,7 @@
fi
xsltproc -o var/ $(srcdir)/customize-chunked.xsl $(srcdir)/index.docbook
-html-flat-files:
+html-flat-files: $(srcdir)/customize.xsl
-test -L tutorial && rm tutorial
ln -s ../../examples/tutorial/html tutorial
-test -L api-doc && rm api-doc
Index: .cvsignore
===================================================================
RCS file: /cvsroot/mockpp/mockpp/mockpp/docs/en/.cvsignore,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- .cvsignore 21 Nov 2004 19:33:16 -0000 1.5
+++ .cvsignore 27 May 2005 08:15:53 -0000 1.6
@@ -1,3 +1,5 @@
+*~
+*.~*
*.html
Makefile
Makefile.in
|