Documentation updates for 1.3.0

This commit is contained in:
carregal
2007-10-26 21:44:43 +00:00
parent 4790b562ca
commit 9cdf62e1bd
5 changed files with 34 additions and 19 deletions

20
README
View File

@@ -1,9 +1,19 @@
LuaFileSystem - File System Library for Lua LuaFileSystem - File System Library for Lua
Copyright 2003-2007 PUC-Rio Copyright 2003-2007 Kepler Project
http://www.keplerproject.org/luafilesystem http://www.keplerproject.org/luafilesystem
LuaFileSystem is a Lua library developed to complement the set of functions related to file systems offered by the standard Lua distribution. LuaFileSystem offers a portable way to access the underlying directory structure and file attributes. LuaFileSystem is free software and uses the same license as Lua 5.1 Current version is 1.2.1. Description
-----------
LuaFileSystem is a Lua library developed to complement the set of functions
related to file systems offered by the standard Lua distribution.
LuaFileSystem offers a portable way to access the underlying directory structure and file attributes.
LuaFileSystem is free software and uses the same license as Lua 5.1
Current version is 1.3.0
Unix Installation
-----------------
To install on Linux/OSX/BSD, please edit the config file and then call To install on Linux/OSX/BSD, please edit the config file and then call
make make
@@ -11,4 +21,10 @@ make install
The last step may require root privileges. The last step may require root privileges.
Windows Installation
--------------------
To install on Windows, please copy lfs.ddl to your package.cpath directory
Documentation
-------------
Please check the documentation at /doc/us/ for more information. Please check the documentation at /doc/us/ for more information.

View File

@@ -93,9 +93,8 @@ attrdir (".")
</div> <!-- id="main" --> </div> <!-- id="main" -->
<div id="about"> <div id="about">
<p><a href="http://validator.w3.org/check?uri=referer"> <p><a href="http://validator.w3.org/check?uri=referer">Valid XHTML 1.0!</a></p>
<img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" height="31" width="88" /></a></p> <p><small>$Id: examples.html,v 1.7 2007/10/26 21:44:43 carregal Exp $</small></p>
<p><small>$Id: examples.html,v 1.6 2007/05/08 19:23:12 carregal Exp $</small></p>
</div> <!-- id="about" --> </div> <!-- id="about" -->
</div> <!-- id="container" --> </div> <!-- id="container" -->

View File

@@ -84,22 +84,23 @@ version of LuaFileSystem can be found at the same LuaForge page.</p>
<h2><a name="history"></a>History</h2> <h2><a name="history"></a>History</h2>
<dl class="history"> <dl class="history">
<dt><strong>Version 1.3.0</strong> [?/Jun/2007]</dt> <dt><strong>Version 1.3.0</strong> [26/Oct/2007]</dt>
<dd> <dd>
<ul> <ul>
<li>added function <li>added function
<a href="manual.html#symlinkattributes"><code>lfs.symlinkattributes</code></a></li> <a href="manual.html#symlinkattributes"><code>lfs.symlinkattributes</code></a>
(works only in non Windows systems).</li>
</ul> </ul>
</dd> </dd>
<dt><strong>Version 1.2.1</strong> [08/May/2007]</dt> <dt><strong><a href="http://www.keplerproject.org/luafilesystem/1.2/">Version 1.2.1</a></strong> [08/May/2007]</dt>
<dd> <dd>
<ul> <ul>
<li>compatible only with Lua 5.1 (Lua 5.0 support was dropped)</li> <li>compatible only with Lua 5.1 (Lua 5.0 support was dropped)</li>
</ul> </ul>
</dd> </dd>
<dt><strong>Version 1.2</strong> [15/Mar/2006]</dt> <dt><strong><a href="http://www.keplerproject.org/luafilesystem/1.2/">Version 1.2</a></strong> [15/Mar/2006]</dt>
<dd> <dd>
<ul> <ul>
<li>added optional argument to <li>added optional argument to
@@ -145,9 +146,8 @@ Comments are welcome!</p>
</div> <!-- id="main" --> </div> <!-- id="main" -->
<div id="about"> <div id="about">
<p><a href="http://validator.w3.org/check?uri=referer"> <p><a href="http://validator.w3.org/check?uri=referer">Valid XHTML 1.0!</a></p>
<img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" height="31" width="88" /></a></p> <p><small>$Id: index.html,v 1.37 2007/10/26 21:44:43 carregal Exp $</small></p>
<p><small>$Id: index.html,v 1.36 2007/06/07 01:28:08 tomas Exp $</small></p>
</div> <!-- id="about" --> </div> <!-- id="about" -->
</div> <!-- id="container" --> </div> <!-- id="container" -->

View File

@@ -85,7 +85,7 @@ Ierusalimschy, Andr&eacute; Carregal and Tom&aacute;s Guisasola.
The implementation is not derived from licensed software.</p> The implementation is not derived from licensed software.</p>
<hr/> <hr/>
<p>Copyright &copy; 2004-2007 The Kepler Project.</p> <p>Copyright &copy; 2004-2007 Kepler Project.</p>
<p>Permission is hereby granted, free of charge, to any person <p>Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation obtaining a copy of this software and associated documentation
@@ -112,9 +112,8 @@ SOFTWARE.</p>
</div> <!-- id="main" --> </div> <!-- id="main" -->
<div id="about"> <div id="about">
<p><a href="http://validator.w3.org/check?uri=referer"> <p><a href="http://validator.w3.org/check?uri=referer">Valid XHTML 1.0!</a></p>
<img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" height="31" width="88" /></a></p> <p><small>$Id: license.html,v 1.11 2007/10/26 21:44:43 carregal Exp $</small></p>
<p><small>$Id: license.html,v 1.10 2007/05/08 19:23:12 carregal Exp $</small></p>
</div><!-- id="about" --> </div><!-- id="about" -->
</div><!-- id="container" --> </div><!-- id="container" -->

View File

@@ -206,6 +206,8 @@ LuaFileSystem offers the following functions:
<dt><a name="symlinkattributes"></a><strong><code>lfs.symlinkattributes (filepath [, aname])</code></strong></dt> <dt><a name="symlinkattributes"></a><strong><code>lfs.symlinkattributes (filepath [, aname])</code></strong></dt>
<dd>Identical to <a href="#attributes">lfs.attributes</a> except that <dd>Identical to <a href="#attributes">lfs.attributes</a> except that
it obtains information about the link itself (not the file it refers to). it obtains information about the link itself (not the file it refers to).
This function is not available in Windows so you may want to make sure that
<code>lfs.symlinkattributes</code> exists before using it.
</dd> </dd>
<dt><a name="touch"></a><strong><code>lfs.touch (filepath [, atime [, mtime]])</code></strong></dt> <dt><a name="touch"></a><strong><code>lfs.touch (filepath [, atime [, mtime]])</code></strong></dt>
@@ -237,9 +239,8 @@ LuaFileSystem offers the following functions:
</div> <!-- id="main" --> </div> <!-- id="main" -->
<div id="about"> <div id="about">
<p><a href="http://validator.w3.org/check?uri=referer"> <p><a href="http://validator.w3.org/check?uri=referer">Valid XHTML 1.0!</a></p>
<img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" height="31" width="88" /></a></p> <p><small>$Id: manual.html,v 1.37 2007/10/26 21:44:43 carregal Exp $</small></p>
<p><small>$Id: manual.html,v 1.36 2007/06/07 01:28:08 tomas Exp $</small></p>
</div> <!-- id="about" --> </div> <!-- id="about" -->
</div> <!-- id="container" --> </div> <!-- id="container" -->