From 05fd24d9bb426edab69ba83b1a00fa2454ba7f14 Mon Sep 17 00:00:00 2001 From: m0gg Date: Tue, 12 Dec 2006 07:23:11 +0000 Subject: Documentation fix --- libcsoap/soap-client.h | 4 ++-- libcsoap/soap-server.h | 20 ++++++++++---------- nanohttp/nanohttp-server.h | 30 +++++++++++++++--------------- 3 files changed, 27 insertions(+), 27 deletions(-) diff --git a/libcsoap/soap-client.h b/libcsoap/soap-client.h index b4a0cce..a4082ca 100644 --- a/libcsoap/soap-client.h +++ b/libcsoap/soap-client.h @@ -1,5 +1,5 @@ /****************************************************************** - * $Id: soap-client.h,v 1.17 2006/12/10 19:21:06 m0gg Exp $ + * $Id: soap-client.h,v 1.18 2006/12/12 07:23:11 m0gg Exp $ * * CSOAP Project: A SOAP client/server library in C * Copyright (C) 2003 Ferhat Ayaz @@ -32,7 +32,7 @@ #include #endif -/** @page nanohttp_client Howto write a SOAP client +/** @page csoap_client_page Howto write a SOAP client * * @section toc_sec Table of contents * diff --git a/libcsoap/soap-server.h b/libcsoap/soap-server.h index 4a850a8..63cf0c1 100644 --- a/libcsoap/soap-server.h +++ b/libcsoap/soap-server.h @@ -1,5 +1,5 @@ /****************************************************************** - * $Id: soap-server.h,v 1.21 2006/12/11 08:13:19 m0gg Exp $ + * $Id: soap-server.h,v 1.22 2006/12/12 07:23:11 m0gg Exp $ * * CSOAP Project: A SOAP client/server library in C * Copyright (C) 2003 Ferhat Ayaz @@ -36,7 +36,7 @@ * * @section project_features_sec Features * - * - @subpage soap_page + * - @subpage csoap_page * - different transport services * - @subpage nanohttp_page (HTTP including SSL) * - client/server UDP transport service (multicast) @@ -68,7 +68,7 @@ * * @section downloads_sec Downloads * - * @subsection Download stable release + * @subsection download_stable_sec Download stable release * * A stable release is a tested version of cSOAP. Download this package if you * want to use it in your productive projects. @@ -76,7 +76,7 @@ * Download source code of libsoap-1.1.0.tar.gz: * http://prdownloads.sourceforge.net/csoap/libsoap-1.1.0.tar.gz?download * - * @subsection Download latest snapshot (nightly build) + * @subsection download_snapshot_sec Download latest snapshot (nightly build) * * Latest snapshots are build nightly on a detected CVS commit. This is sometimes * not very stable but in some case are snapshots the better choice then the @@ -86,7 +86,7 @@ * Download latest snapshot (nightly build): * http://csoap.sourceforge.net/downloads/libsoap-snapshot.tar.gz * - * @subsection Checkout from CVS + * @subsection download_cvs_sec Checkout from CVS * * Do you want the latest source codes? You want to contribute a patch? Have you * found a bug? Or whatever. You should check out csoap from CVS to play the game @@ -108,19 +108,19 @@ * */ -/** @page soap_page +/** @page csoap_page * * T.B.D. * * @section soap_howto_sec HOWTOs and coding examples * - * - @ref csoap_client_page - * - @ref csoap_server_page - * - @ref csoap_mime_page + * - @subpage csoap_client_page + * - @subpage csoap_server_page + * - @subpage csoap_mime_page * */ -/** @page soap_server_page Howto write an SOAP server +/** @page csoap_server_page Howto write a SOAP server * * @section soap_server_toc_sec Table of contents * diff --git a/nanohttp/nanohttp-server.h b/nanohttp/nanohttp-server.h index eb1f178..3b70dd7 100644 --- a/nanohttp/nanohttp-server.h +++ b/nanohttp/nanohttp-server.h @@ -1,5 +1,5 @@ /****************************************************************** - * $Id: nanohttp-server.h,v 1.31 2006/12/11 08:13:19 m0gg Exp $ + * $Id: nanohttp-server.h,v 1.32 2006/12/12 07:23:11 m0gg Exp $ * * CSOAP Project: A http client/server library in C * Copyright (C) 2003 Ferhat Ayaz @@ -46,11 +46,11 @@ * - attachments via MIME * - HTTPS support (SSL/TLS) using OpenSSL * - * @section links_sec Howto to the nanoHTTP library + * @section links_sec Howto to use the nanoHTTP library * - * - @ref nanohttp_client_page - * - @ref nanohttp_server_page - * - @ref nanohttp_mime_page + * - @subpage nanohttp_client_page + * - @subpage nanohttp_server_page + * - @subpage nanohttp_mime_page * * @author Ferhat Ayaz * @author Michael Rans @@ -68,13 +68,13 @@ * * @section server_sec Table of contents * - * - @ref init_sec - * - @ref service_sec - * - @ref running_sec - * - @ref cleanup_sec - * - @ref function_sec + * - @ref nanohttp_server_init_sec + * - @ref nanohttp_server_service_sec + * - @ref nanohttp_server_running_sec + * - @ref nanohttp_server_cleanup_sec + * - @ref nanohttp_server_function_sec * - * @section init_sec Server initialization + * @section nanohttp_server_init_sec Server initialization * * @code * int main(int argc, char **argv) @@ -89,7 +89,7 @@ * } * @endcode * - * @section service_sec Service registration + * @section nanohttp_server_service_sec Service registration * * @code * if ((status = httpd_register("/", root_service)) != H_OK) @@ -131,7 +131,7 @@ * } * @endcode * - * @section running_sec Running the server + * @section nanohttp_server_running_sec Running the server * * @code * if ((status = httpd_run()) != H_OK) @@ -143,7 +143,7 @@ * } * @endcode * - * @section cleanup_sec Server cleanup + * @section nanohttp_server_cleanup_sec Server cleanup * * @code * httpd_destroy(); @@ -152,7 +152,7 @@ * } * @endcode * - * @section function_seq Sample service function + * @section nanohttp_server_function_sec Sample service function * * @code * static void headers_service(httpd_conn_t *conn, struct hrequest_t *req) -- cgit v1.1-32-gdbae