bagder: curl-www/auto Makefile, 1.12, 1.13 _release-notes.html, NONE, 1.1 _todo-release.html, NONE, 1.1

[email protected] Tue, 05 Oct 2010 12:42:15 +0000
Newsgroups gmane.comp.web.curl.www.cvs
Message-ID <[email protected]>
Update of /cvsroot/curl/curl-www/auto
In directory giant.haxx.se:/var/tmp/cvs-serv1305

Modified Files:
	Makefile 
Added Files:
	_release-notes.html _todo-release.html 
Log Message:
new pages with stuff generated from source docs


Index: Makefile
===================================================================
RCS file: /cvsroot/curl/curl-www/auto/Makefile,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- Makefile	20 Oct 2006 09:19:05 -0000	1.12
+++ Makefile	5 Oct 2010 12:42:13 -0000	1.13
@@ -11,10 +11,12 @@
 ACTION=echo preprocessing $@; \
  rm -f $@; \
  fcpp -I.. -I. -WWW -Uunix -P -H -C -V -LL "$(NOW)" $< $@;
+TXT2PLAIN = txt2plain.pl
 
 PAGES = foot.html head.html loghead.html howto.html summary.html \
 	cvshistory.html table0.html table1.html table2.html table3.html \
-	missing.html keywords.html index.html
+	missing.html keywords.html index.html todo-release.html \
+	release-notes.html
 
 all: $(PAGES)
 
@@ -36,6 +38,18 @@
 missing.html: _missing.html $(MAINPARTS)
 	$(ACTION)
 
+release-notes.txt: $(SRCROOT)/RELEASE-NOTES
+	$(TXT2PLAIN) < $< > $@
+
+release-notes.html: _release-notes.html release-notes.txt $(MAINPARTS)
+	$(ACTION)
+
+todo-release.txt: $(SRCROOT)/TODO-RELEASE
+	$(TXT2PLAIN) < $< > $@
+
+todo-release.html: _todo-release.html todo-release.txt $(MAINPARTS)
+	$(ACTION)
+
 howto.html: _howto.html $(MAINPARTS) _head.html
 	$(ACTION)
 

--- NEW FILE: _release-notes.html ---
#include "_doctype.html"
<HTML>
<HEAD> <TITLE>cURL - RELEASE NOTES for next release</TITLE>
#include "css.t"
</HEAD>

#define CURL_AUTO
#define AUTO_RELEASENOTES
#define CURL_URL release-notes.html

#include "_menu.html"
#include "setup.t"

WHERE2(Devel, "/auto/", RELEASE-NOTES)

TITLE(Pending RELEASE-NOTES for the upcoming releases)
<div class="relatedbox">
<b>Related:</b>
<br><a href="todo-release.html">TODO-RELEASE</a>
<br><a href="/changes.html">changelog</a>
<br><a href="/docs/manpage.html">curl man page</a>
<br><a href="/docs/manual.html">Manual</a>
<br><a href="/docs/faq.html">FAQ</a>
</div>

<p>
 This is the current RELEASE-NOTES file. <i>It is work in progress and will
 change before the release goes public.</i>
<p>

<pre>
#include "release-notes.txt"
</pre>

#include "_footer.html"

</BODY>
</HTML>


--- NEW FILE: _todo-release.html ---
#include "_doctype.html"
<HTML>
<HEAD> <TITLE>cURL - TODO before next release</TITLE>
#include "css.t"
</HEAD>

#define CURL_AUTO
#define AUTO_TODORELEASE
#define CURL_URL todo-release.html

#include "_menu.html"
#include "setup.t"

WHERE2(Devel, "/auto/", TODO RELEASE)

TITLE(Things in the pipe for the upcoming releases)
<div class="relatedbox">
<b>Related:</b>
<br><a href="release-notes.html">RELEASE-NOTES</a>
<br><a href="/changes.html">changelog</a>
<br><a href="/docs/manpage.html">curl man page</a>
<br><a href="/docs/manual.html">Manual</a>
<br><a href="/docs/faq.html">FAQ</a>
</div>

<p>
 This is the current TODO-RELEASE file. <i>The mentioned changes are only
 ideas and suggestions of what to work on, they may or may not be fixed in the
 next release</i>.
<p>

<pre>
#include "todo-release.txt"
</pre>

#include "_footer.html"

</BODY>
</HTML>