bagder: curl-www/auto Makefile, 1.15, 1.16 _index.html, 1.5, 1.6 _menu.html, 1.4, 1.5 _readme-ares.html, NONE, 1.1 _readme-curl_off_t.html, NONE, 1.1 _readme-curlx.html, NONE, 1.1 _readme-encoding.html, NONE, 1.1

[email protected] Sat, 09 Oct 2010 14:06:43 +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-serv8421

Modified Files:
	Makefile _index.html _menu.html 
Added Files:
	_readme-ares.html _readme-curl_off_t.html _readme-curlx.html 
	_readme-encoding.html 
Log Message:
more, started to get README files added


Index: _menu.html
===================================================================
RCS file: /cvsroot/curl/curl-www/auto/_menu.html,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- _menu.html	9 Oct 2010 10:18:47 -0000	1.4
+++ _menu.html	9 Oct 2010 14:06:40 -0000	1.5
@@ -121,6 +121,33 @@
 VLINK(/rfc/, Specifications, Specs and RFSs that concern us)
 #endif
 
+<hr>
+READMEs:
+<br>
+#ifdef DEVEL_README_ares
+HERE(x, ares)
+#else
+VLINK(/dev/readme-ares.html, ares, How to build libcurl with ares support)
+#endif
+
+#ifdef DEVEL_README_curl_off_t
+HERE(x, curl_off_t)
+#else
+VLINK(/dev/readme-curl_off_t.html, curl_off_t, curl_off_t explained)
+#endif
+
+#ifdef DEVEL_README_curlx
+HERE(x, curlx)
+#else
+VLINK(/dev/readme-curlx.html, curlx, curlx explained)
+#endif
+
+#ifdef DEVEL_README_encoding
+HERE(x, encoding)
+#else
+VLINK(/dev/readme-encoding.html, encoding, HTTP Content Encoding explained)
+#endif
+
 </div>
 
 <p>

--- NEW FILE: _readme-encoding.html ---
#include "_doctype.html"
<html>
<head> <title>cURL - README.encoding</title>
#include "css.t"
</head>

#define DEVEL_README_encoding
#define CURL_URL dev/readme-encoding.html

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

WHERE2(Development, "/dev/", README.encoding)

TITLE(HTTP Content Encoding explained)
<p>
 This contents is from the <b>curl/lib/README.encoding</b> file.

<pre>
#include "README.encoding.dump"
</pre>

#include "_footer.html"

</BODY>
</HTML>


Index: Makefile
===================================================================
RCS file: /cvsroot/curl/curl-www/auto/Makefile,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- Makefile	9 Oct 2010 10:18:46 -0000	1.15
+++ Makefile	9 Oct 2010 14:06:40 -0000	1.16
@@ -3,6 +3,7 @@
 SRCROOT=$(ROOT)/cvssource
 DOCROOT=$(SRCROOT)/docs
 TESTROOT=$(SRCROOT)/tests
+LIBROOT=$(SRCROOT)/lib
 CURL= $(ROOT)
 
 MAINPARTS= $(ROOT)/_doctype.html $(CURL)/_menu.html $(CURL)/_footer.html \
@@ -19,7 +20,8 @@
 	cvshistory.html table0.html table1.html table2.html table3.html \
 	missing.html keywords.html builds.html todo-release.html \
 	release-notes.html index.html contribute.html internals.html \
-	testcurl.html runtests.html source.html
+	testcurl.html runtests.html source.html readme-ares.html \
+	readme-curl_off_t.html readme-curlx.html readme-encoding.html
 
 all: $(PAGES)
 
@@ -100,6 +102,29 @@
 table3.html: _table3.html $(MAINPARTS) table3.t explainopts.t
 	$(ACTION)
 
+README.ares.dump: $(LIBROOT)/README.ares
+	$(TXT2PLAIN) < $< > $@
+
+readme-ares.html: _readme-ares.html README.ares.dump $(MAINPARTS)
+	$(ACTION)
+
+README.curl_off_t.dump: $(LIBROOT)/README.curl_off_t
+	$(TXT2PLAIN) < $< > $@
+
+readme-curl_off_t.html: _readme-curl_off_t.html README.curl_off_t.dump $(MAINPARTS)
+	$(ACTION)
+
+README.curlx.dump: $(LIBROOT)/README.curlx
+	$(TXT2PLAIN) < $< > $@
+
+readme-curlx.html: _readme-curlx.html README.curlx.dump $(MAINPARTS)
+	$(ACTION)
+
+README.encoding.dump: $(LIBROOT)/README.encoding
+	$(TXT2PLAIN) < $< > $@
+
+readme-encoding.html: _readme-encoding.html README.encoding.dump $(MAINPARTS)
+	$(ACTION)
 
 full: all
 

--- NEW FILE: _readme-curl_off_t.html ---
#include "_doctype.html"
<html>
<head> <title>cURL - README.curl_off_t</title>
#include "css.t"
</head>

#define DEVEL_README_curl_off_t
#define CURL_URL dev/readme-curl_off_t.html

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

WHERE2(Development, "/dev/", README.curl_off_t)

TITLE(curl_off_t explained)
<p>
 This contents is from the <b>curl/lib/README.curl_off_t</b> file.

<pre>
#include "README.curl_off_t.dump"
</pre>

#include "_footer.html"

</BODY>
</HTML>


--- NEW FILE: _readme-ares.html ---
#include "_doctype.html"
<html>
<head> <title>cURL - README.ares</title>
#include "css.t"
</head>

#define DEVEL_README_ares
#define CURL_URL dev/readme-ares.html

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

WHERE2(Development, "/dev/", README.ares)

TITLE(How to build libcurl with ares support)
<p>
 This contents is from the <b>curl/lib/README.ares</b> file.

<pre>
#include "README.ares.dump"
</pre>

#include "_footer.html"

</BODY>
</HTML>


Index: _index.html
===================================================================
RCS file: /cvsroot/curl/curl-www/auto/_index.html,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- _index.html	9 Oct 2010 13:27:39 -0000	1.5
+++ _index.html	9 Oct 2010 14:06:40 -0000	1.6
@@ -106,23 +106,23 @@
 <li> The <a href="runtests.html">runtests</a> man page
 
 <li> The <a href="testcurl.html">testcurl</a> docs
+</ul>
 
 <p>
-  Should also provide these docs:
-<pre>
-README.ares
-README.curl_off_t
-README.curlx
-README.encoding
-README.hostip
-README.httpauth
-README.memoryleak
-README.multi_socket
-README.pingpong
-README.pipelining
-</pre>
-
+  The README documentation files from the curl/lib directory:
+<ul>
+<li> <a href="readme-ares.html">README.ares</a>
+<li> <a href="readme-curl_off_t.html">README.curl_off_t</a>
+<li> <a href="readme-curlx.html">README.curlx</a>
+<li> <a href="readme-encoding.html">README.encoding</a>
+<li> README.hostip
+<li> README.httpauth
+<li> README.memoryleak
+<li> README.multi_socket
+<li> README.pingpong
+<li> README.pipelining
 </ul>
+
 SUBTITLE(Related Documentation)
 <ul>
 <li>

--- NEW FILE: _readme-curlx.html ---
#include "_doctype.html"
<html>
<head> <title>cURL - README.curlx</title>
#include "css.t"
</head>

#define DEVEL_README_curlx
#define CURL_URL dev/readme-curlx.html

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

WHERE2(Development, "/dev/", README.curlx)

TITLE(curlx explained)
<p>
 This contents is from the <b>curl/lib/README.curlx</b> file.

<pre>
#include "README.curlx.dump"
</pre>

#include "_footer.html"

</BODY>
</HTML>