bagder: curl-www/auto Makefile, 1.16, 1.17 _index.html, 1.6, 1.7 _menu.html, 1.5, 1.6 _readme-hostip.html, NONE, 1.1 _readme-httpauth.html, NONE, 1.1 _readme-memoryleak.html, NONE, 1.1 _readme-multi_socket.html, NONE, 1.1

[email protected] Sat, 09 Oct 2010 14:42:37 +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-serv14684

Modified Files:
	Makefile _index.html _menu.html 
Added Files:
	_readme-hostip.html _readme-httpauth.html 
	_readme-memoryleak.html _readme-multi_socket.html 
Log Message:
more README files added and linked


Index: _menu.html
===================================================================
RCS file: /cvsroot/curl/curl-www/auto/_menu.html,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- _menu.html	9 Oct 2010 14:06:40 -0000	1.5
+++ _menu.html	9 Oct 2010 14:42:34 -0000	1.6
@@ -148,6 +148,30 @@
 VLINK(/dev/readme-encoding.html, encoding, HTTP Content Encoding explained)
 #endif
 
+#ifdef DEVEL_README_hostip
+HERE(x, hostip)
+#else
+VLINK(/dev/readme-hostip.html, hostip, hostip explained)
+#endif
+
+#ifdef DEVEL_README_httpauth
+HERE(x, httpauth)
+#else
+VLINK(/dev/readme-httpauth.html, httpauth, httpauth explained)
+#endif
+
+#ifdef DEVEL_README_memoryleak
+HERE(x, memoryleak)
+#else
+VLINK(/dev/readme-memoryleak.html, memoryleak, How to track down memoryleaks)
+#endif
+
+#ifdef DEVEL_README_multi_socket
+HERE(x, multi_socket)
+#else
+VLINK(/dev/readme-multi_socket.html, multi_socket, multi_socket explained)
+#endif
+
 </div>
 
 <p>

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

#define DEVEL_README_httpauth
#define CURL_URL dev/readme-httpauth.html

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

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

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

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

#include "_footer.html"

</BODY>
</HTML>


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

#define DEVEL_README_multi_socket
#define CURL_URL dev/readme-multi_socket.html

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

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

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

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

#include "_footer.html"

</BODY>
</HTML>


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

#define DEVEL_README_hostip
#define CURL_URL dev/readme-hostip.html

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

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

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

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

#include "_footer.html"

</BODY>
</HTML>


Index: Makefile
===================================================================
RCS file: /cvsroot/curl/curl-www/auto/Makefile,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- Makefile	9 Oct 2010 14:06:40 -0000	1.16
+++ Makefile	9 Oct 2010 14:42:34 -0000	1.17
@@ -21,7 +21,9 @@
 	missing.html keywords.html builds.html todo-release.html \
 	release-notes.html index.html contribute.html internals.html \
 	testcurl.html runtests.html source.html readme-ares.html \
-	readme-curl_off_t.html readme-curlx.html readme-encoding.html
+	readme-curl_off_t.html readme-curlx.html readme-encoding.html \
+	readme-hostip.html readme-httpauth.html readme-memoryleak.html \
+	readme-multi_socket.html
 
 all: $(PAGES)
 
@@ -126,6 +128,30 @@
 readme-encoding.html: _readme-encoding.html README.encoding.dump $(MAINPARTS)
 	$(ACTION)
 
+README.hostip.dump: $(LIBROOT)/README.hostip
+	$(TXT2PLAIN) < $< > $@
+
+readme-hostip.html: _readme-hostip.html README.hostip.dump $(MAINPARTS)
+	$(ACTION)
+
+README.httpauth.dump: $(LIBROOT)/README.httpauth
+	$(TXT2PLAIN) < $< > $@
+
+readme-httpauth.html: _readme-httpauth.html README.httpauth.dump $(MAINPARTS)
+	$(ACTION)
+
+README.memoryleak.dump: $(LIBROOT)/README.memoryleak
+	$(TXT2PLAIN) < $< > $@
+
+readme-memoryleak.html: _readme-memoryleak.html README.memoryleak.dump $(MAINPARTS)
+	$(ACTION)
+
+README.multi_socket.dump: $(LIBROOT)/README.multi_socket
+	$(TXT2PLAIN) < $< > $@
+
+readme-multi_socket.html: _readme-multi_socket.html README.multi_socket.dump $(MAINPARTS)
+	$(ACTION)
+
 full: all
 
 clean:

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

#define DEVEL_README_memoryleak
#define CURL_URL dev/readme-memoryleak.html

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

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

TITLE(How to detect and debug memoryleaks in libcurl)
<p>
 This contents is from the <b>curl/lib/README.memoryleak</b> file.

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

#include "_footer.html"

</BODY>
</HTML>


Index: _index.html
===================================================================
RCS file: /cvsroot/curl/curl-www/auto/_index.html,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- _index.html	9 Oct 2010 14:06:40 -0000	1.6
+++ _index.html	9 Oct 2010 14:42:34 -0000	1.7
@@ -115,10 +115,10 @@
 <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> <a href="readme-hostip.html">README.hostip</a>
+<li> <a href="readme-httpauth.html">README.httpauth</a>
+<li> <a href="readme-memoryleak.html">README.memoryleak</a>
+<li> <a href="readme-multi_socket.html">README.multi_socket</a>
 <li> README.pingpong
 <li> README.pipelining
 </ul>