Documentation update - minor details

master
Andre Carregal 2006-02-02 20:18:35 +00:00
parent 5cdbfa184a
commit f13878a881
4 changed files with 15 additions and 20 deletions

View File

@ -40,7 +40,7 @@
<li><a href="manual.html#introduction">Introduction</a></li>
<li><a href="manual.html#installation">Installation</a></li>
<li><a href="manual.html#data_types">Data types</a></li>
<li><a href="manual.html#basic">Basic support</a></li>
<li><a href="manual.html#functions">Library functions</a></li>
<li><a href="manual.html#client">Client side</a></li>
<li><a href="manual.html#server">Server side</a></li>
<li><a href="manual.html#references">References</a></li>

View File

@ -42,7 +42,7 @@
<li><a href="manual.html#introduction">Introduction</a></li>
<li><a href="manual.html#installation">Installation</a></li>
<li><a href="manual.html#data_types">Data types</a></li>
<li><a href="manual.html#basic">Basic support</a></li>
<li><a href="manual.html#functions">Library functions</a></li>
<li><a href="manual.html#client">Client side</a></li>
<li><a href="manual.html#server">Server side</a></li>
<li><a href="manual.html#references">References</a></li>

View File

@ -38,7 +38,7 @@
<li><a href="manual.html#introduction">Introduction</a></li>
<li><a href="manual.html#installation">Installation</a></li>
<li><a href="manual.html#data_types">Data types</a></li>
<li><a href="manual.html#basic">Basic support</a></li>
<li><a href="manual.html#functions">Library functions</a></li>
<li><a href="manual.html#client">Client side</a></li>
<li><a href="manual.html#server">Server side</a></li>
<li><a href="manual.html#references">References</a></li>
@ -60,8 +60,8 @@ or GNU-like "copyleft" restrictions. LuaXMLRPC qualifies as <a
href="http://www.opensource.org/docs/definition.html">Open
Source</a> software. Its licenses are compatible with <a href=
"http://www.gnu.org/licenses/gpl.html">GPL</a>. LuaXMLRPC is not in
the public domain and <a href="http://www.keplerproject.org">The
Kepler Project</a> keep its copyright. The legal details are below.
the public domain and the <a href="http://www.keplerproject.org">
Kepler Project</a> hold its copyright. The legal details are below.
</p>
<p>The spirit of the license is that you are free to use LuaXMLRPC
@ -76,7 +76,7 @@ The implementation is not derived from licensed software.</p>
<hr/>
<p>
Copyright &copy; 2003-2006 The Kepler Project.
Copyright &copy; 2003-2006 Kepler Project.
</p>
<p>Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation

View File

@ -201,7 +201,7 @@ them to floating point numbers.</p>
<h2><a name="functions"></a>Library functions</h2>
<p>The file <code>xmlrpc.lua</code> implements the functions that encode and decode XML-RPC messages and transform
<p>The <code>xmlrpc.lua</code> file implements the functions that encode and decode XML-RPC messages and transform
data types between the Lua and XML-RPC. The functions are:</p>
<dl>
@ -258,7 +258,7 @@ data types between the Lua and XML-RPC. The functions are:</p>
<h2><a name="client"></a>Client side</h2>
<p>The file <code>xmlrpc.http.lua</code> implements a simple
<p>The <code>http.lua</code> file implements a simple
stand-alone client based on
<a href="http://www.tecgraf.puc-rio.br/luasocket">LuaSocket 2.0</a>. The
following function is provided:</p>
@ -282,25 +282,20 @@ following function is provided:</p>
over a CGI launcher. This launcher just have to offer a way to
decode POST data and to send data back to the client.</p>
<p>The file <code>xmlrpc.cgi.lua</code> implements a simple XML-RPC
server using the package <code>post</code> that can parse incoming
POST data from the http server. An appropriate environment for
<p>The <code>tests</code> directory contains a file named
<code>cgi.lua</code>, which implements an example of a simple XML-RPC
server using the package <code>post</code> (which parses incoming
POST data from the http server). An appropriate environment for
writing Lua functions is implemented; a new <code>assert</code>
function generates a XML-RPC fault in case of a false condition; a
<code>respond</code> function creates the correct header for the
responses.</p>
<p>The main goal of this file is to give a starting point for other
real implementations.</p>
responses. The main goal of <code>cgi.lua</code> is to give a
starting point for other implementations.</p>
<h2><a name="references"></a>References</h2>
<p>A list of related documentation can be found at:</p>
<ul>
<li><a href="http://www.xmlrpc.com">http://www.xmlrpc.com</a></li>
</ul>
<p>Related documentation can be found at: <a href="http://www.xmlrpc.com">http://www.xmlrpc.com</a>.</p>
</div> <!-- id="content" -->