169 lines
4.1 KiB
HTML
Executable File
169 lines
4.1 KiB
HTML
Executable File
<! See Copyright Notice in license.html>
|
||
<html>
|
||
|
||
<head>
|
||
<title>LuaXMLRPC: XML-RPC interface to the Lua programming language</title>
|
||
<style type="text/css">
|
||
ul { list-style-type: disc };
|
||
</style>
|
||
</head>
|
||
|
||
<body bgcolor="#FFFFFF">
|
||
|
||
<hr>
|
||
|
||
<center>
|
||
<table border=0 cellspacing=2 cellpadding=2>
|
||
<tr><td align=center><a href="http://www.keplerproject.org/luaxmlrpc">
|
||
<img border=0 alt="LuaXMLRPC logo" src="luaxmlrpc.png"></a>
|
||
<tr><td align=center><big><b>LuaXMLRPC</b></big>
|
||
<tr><td align=center valign=top>XML-RPC interface to the
|
||
<a href="http://www.lua.org">Lua</a>
|
||
programming language
|
||
</table>
|
||
</center>
|
||
<p>
|
||
|
||
<center><small>
|
||
<a href=#over>overview</a> ·
|
||
<a href=#version>current version</a> ·
|
||
<a href=#download>download</a> ·
|
||
<a href=#new>news</a> ·
|
||
<a href=#installation>installation</a> ·
|
||
<a href="manual.html">manual</a> ·
|
||
<a href="license.html">license</a> ·
|
||
<a href="#credits">credits</a> ·
|
||
<a href="#contact">contact us</a>
|
||
</small></center>
|
||
<p>
|
||
|
||
<hr>
|
||
|
||
<h2>Contents</h2>
|
||
<p>
|
||
<ul>
|
||
<li> <a href=#over>Overview</a>
|
||
<li> <a href=#version>Current Version</a>
|
||
<li> <a href=#download>Download</a>
|
||
<li> <a href=#new>What's new</a>
|
||
<li> <a href=#installation>Installation</a>
|
||
<li> <a href="manual.html">User's manual</a>
|
||
<ul>
|
||
<li> <a href="manual.html#introduction">Introduction</a>
|
||
<li> <a href="manual.html#data_types">Data types</a>
|
||
<li> <a href="manual.html#basic">Basic support</a>
|
||
<li> <a href="manual.html#client">Client side</a>
|
||
<li> <a href="manual.html#server">Server side</a>
|
||
<li> <a href="manual.html#examples">Examples</a>
|
||
<li> <a href="manual.html#related_docs">Related documentation</a>
|
||
</ul>
|
||
<li> <a href="#credits">Credits</a>
|
||
<li> <a href="#contact">Contact us</a>
|
||
</ul>
|
||
</p>
|
||
|
||
|
||
<a name=over>
|
||
<h2>Overview</h2>
|
||
<p>
|
||
LuaXMLRPC is a library to make remote procedure calls using
|
||
<a href="http://www.xmlrpc.com">XML-RPC</a>.
|
||
It also offers facilities to develop server-side software.
|
||
</p>
|
||
<p>
|
||
LuaXMLRPC provides a simple API and an abstraction layer over XML
|
||
avoiding manipulation of string representation of data structures.
|
||
It also offers ways to express everything when needed.
|
||
<p>
|
||
LuaXMLRPC is free software and uses the same
|
||
<a href="license.html">license</a>
|
||
as Lua 5.0.
|
||
</p>
|
||
|
||
|
||
<a name=version>
|
||
<h2>Current version</h2>
|
||
<p>
|
||
Current version is 1.0 alpha.
|
||
It was developed for Lua 5.0 based on
|
||
<a href="http://www.keplerproject.org/luaexpat">LuaExpat</a>.
|
||
</p>
|
||
|
||
|
||
<a name=download>
|
||
<h2>Download</h2>
|
||
|
||
LuaXMLRPC can be downloaded in source code from the following links: <p>
|
||
|
||
<blockquote>
|
||
<a href="luaxmlrpc-1.0a.tar.gz">luaxmlrpc-1.0a.tar.gz</a><br>
|
||
<a href="luaxmlrpc-1.0a.zip">luaxmlrpc-1.0a.zip</a>
|
||
</blockquote><p>
|
||
|
||
|
||
<a name=new>
|
||
<h2>What's new</h2>
|
||
<p>
|
||
<ul>
|
||
<li>[10/dec/2003] Version 1.0 alpha released
|
||
</ul>
|
||
</p>
|
||
|
||
|
||
<a name="installation"></a>
|
||
<h2>Installation</h2>
|
||
|
||
<p>
|
||
LuaXMLRPC is composed by three Lua files.
|
||
These files should be copied to a directory named <code>xmlrpc</code>
|
||
created in your <code>LUA_PATH</code>.
|
||
|
||
|
||
<a name="credits">
|
||
<h2>Credits</h2>
|
||
|
||
<p>
|
||
LuaXMLRPC was designed by Roberto Ierusalimschy, André Carregal
|
||
and Tomás Guisasola as part of
|
||
<a href="http://www.keplerproject.org">The Kepler Project</a>
|
||
which holds its copyright.
|
||
It was implemented by Tomás Guisasola.
|
||
</p>
|
||
<p>
|
||
LuaXMLRPC development was sponsored by
|
||
<a href="http://www.fabricadigital.com.br">F<EFBFBD>brica Digital</a>
|
||
and FINEP.
|
||
</p>
|
||
|
||
|
||
<a name="contact"></a>
|
||
<h2>Contact us</h2>
|
||
|
||
<p>
|
||
For more information please
|
||
<a href="mailto:tomas-NO-SPAM-THANKS@keplerproject.org">contact us</a>.
|
||
Comments are welcome!
|
||
</p>
|
||
|
||
<p>
|
||
<center><small>
|
||
<a href=#over>overview</a> ·
|
||
<a href=#version>current version</a> ·
|
||
<a href=#download>download</a> ·
|
||
<a href=#new>news</a> ·
|
||
<a href=#installation>installation</a> ·
|
||
<a href="manual.html">manual</a> ·
|
||
<a href="license.html">license</a> ·
|
||
<a href="#credits">credits</a> ·
|
||
<a href="#contact">contact us</a>
|
||
</small></center>
|
||
<p>
|
||
|
||
<hr>
|
||
<small>
|
||
$Id$
|
||
</small>
|
||
|
||
</body>
|
||
</html>
|