<html>
<head>
<style><!--
body {background-color:#ffffff;}
.file {border:1px solid #eeeeee;margin-top:1em;margin-bottom:1em;}
.pathname {font-family:monospace; float:right;}
.fileheader {margin-bottom:.5em;}
.diff {margin:0;}
.tasklist {padding:4px;border:1px dashed #000000;margin-top:1em;}
.tasklist ul {margin-top:0;margin-bottom:0;}
tr.alt {background-color:#eeeeee}
#added {background-color:#ddffdd;}
#addedchars {background-color:#99ff99;font-weight:bolder;}
tr.alt #added {background-color:#ccf7cc;}
#removed {background-color:#ffdddd;}
#removedchars {background-color:#ff9999;font-weight:bolder;}
tr.alt #removed {background-color:#f7cccc;}
#info {color:#888888;}
#context {background-color:#eeeeee;}
td {padding-left:.3em;padding-right:.3em;}
tr.head {border-bottom-width:1px;border-bottom-style:solid;}
tr.head td {padding:0;padding-top:.2em;}
.task {background-color:#ffff00;}
.comment {padding:4px;border:1px dashed #000000;background-color:#ffffdd}
.error {color:red;}
hr {border-width:0px;height:2px;background:black;}
--></style>
</head>
<body>
<table cellspacing="0" cellpadding="0" border="0" rules="cols">
<tr class="head"><td colspan="4">Commit in <b><tt>phpslash-dev/doc/html</tt></b><span id="info"> on MAIN</span></td></tr>
<tr><td><tt><a href="#file1">Makefile</a></tt></td><td align="right" id="added">+10</td><td align="right" id="removed">-8</td><td nowrap="nowrap" align="center">1.5 -> 1.6</td></tr>
</table>
<pre class="comment">
simple documents are created in their own directories
</pre>
<hr /><a name="file1" /><div class="file">
<span class="pathname">phpslash-dev/doc/html<br /></span>
<div class="fileheader"><big><b>Makefile</b></big> <small id="info">1.5 -> 1.6</small></div>
<pre class="diff"><small id="info">diff -u -r1.5 -r1.6
--- Makefile 23 Nov 2004 17:06:48 -0000 1.5
+++ Makefile 23 Nov 2004 22:13:04 -0000 1.6
@@ -1,5 +1,5 @@
</small></pre><pre class="diff" id="context"> #
</pre><pre class="diff" id="removed">-# $Id: Makefile,v 1.5 2004/11/23 17:06:48 lems1 Exp $
</pre><pre class="diff" id="added">+# $Id: Makefile,v 1.6 2004/11/23 22:13:04 lems1 Exp $
</pre><pre class="diff" id="context">
# phpSlash Documentation Makefile
# nathan hruby <nh...@ds...>
</pre><pre class="diff"><small id="info">@@ -20,7 +20,7 @@
</small></pre><pre class="diff" id="context"> sgmlcheck $(master)
# Make one big html file of stuff
</pre><pre class="diff" id="removed">-onehtml : $(master)
</pre><pre class="diff" id="added">+onehtml : $(master)<span id="addedchars"> dirs</span>
</pre><pre class="diff" id="context"> @echo "----------- Making single page HTML doc from SGML in single/"
# cp $(master) single/
# cd single ; sgml2html -s 0 $(master) ; cd ../
</pre><pre class="diff"><small id="info">@@ -31,37 +31,39 @@
</small></pre><pre class="diff" id="context"> mv *.html single/
# Make separate html files
</pre><pre class="diff" id="removed">-html : $(master)
</pre><pre class="diff" id="added">+html : $(master)<span id="addedchars"> dirs</span>
</pre><pre class="diff" id="context"> @echo "----------- Making multi page HTML doc from SGML"
linuxdoc -B html -s 1 $(master)
# sgml2html -s 1 $(master)
mkdir html
mv *.html html/
</pre><pre class="diff" id="removed">-rtf : $(master)
</pre><pre class="diff" id="added">+rtf : $(master)<span id="addedchars"> dirs</span>
</pre><pre class="diff" id="context"> @echo "----------- Making single page RTF doc from SGML in single/"
sgml2rtf $(master)
# linuxdoc -B rtf $(master)
mkdir single
mv *.rtf single/
</pre><pre class="diff" id="removed">-pdf : $(master)
</pre><pre class="diff" id="added">+pdf : $(master)<span id="addedchars"> dirs</span>
</pre><pre class="diff" id="context"> @echo "----------- Making single page PDF doc from SGML in single/"
# cp $(master) single/
# cd single ; sgml2html -s 0 $(master) ; cd ../
# rm single/$(master)
linuxdoc -B latex -o pdf $(master)
</pre><pre class="diff" id="removed">- mkdir single
</pre><pre class="diff" id="context"> mv *.pdf single/
# Make a text version too
</pre><pre class="diff" id="removed">-txt : $(master)
</pre><pre class="diff" id="added">+txt : $(master)<span id="addedchars"> dirs</span>
</pre><pre class="diff" id="context"> @echo "----------- Making single page text docs from SGML in single/"
# sgml2txt $(master)
linuxdoc -B txt $(master)
</pre><pre class="diff" id="removed">- mkdir single
</pre><pre class="diff" id="context"> mv *.txt single/
</pre><pre class="diff" id="added">+dirs:
+ if [ ! -d html ]; then mkdir html; fi
+ if [ ! -d single ]; then mkdir single; fi
+
</pre><pre class="diff" id="context"> clean :
@echo "----------- Removing all generated docs"
rm -fr *.html single/ html/
</pre></div>
<center><small><a href="http://www.badgers-in-foil.co.uk/projects/cvsspam/" title="commit -> email">CVSspam</a> 0.2.10</small></center>
</body></html>
|