mirror of
https://github.com/lunarmodules/luafilesystem.git
synced 2026-07-25 05:03:07 +00:00
xhtml validation
This commit is contained in:
@@ -54,7 +54,7 @@ developed to complement the set of functions related to file
|
|||||||
systems offered by the standard Lua distribution.</p>
|
systems offered by the standard Lua distribution.</p>
|
||||||
|
|
||||||
<p>LuaFileSystem offers a portable way to access
|
<p>LuaFileSystem offers a portable way to access
|
||||||
the underlying directory structure and file attributes.<p>
|
the underlying directory structure and file attributes.</p>
|
||||||
|
|
||||||
<p>LuaFileSystem is free software and uses the same
|
<p>LuaFileSystem is free software and uses the same
|
||||||
<a href="license.html">license</a> as Lua 5.0.</p>
|
<a href="license.html">license</a> as Lua 5.0.</p>
|
||||||
@@ -78,7 +78,7 @@ page.</p>
|
|||||||
<h2><a name="history"></a>History</h2>
|
<h2><a name="history"></a>History</h2>
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>[20/May/2005] Version 1.1 released<br />
|
<li>[20/May/2005] Version 1.1 released<br/>
|
||||||
added function <code>lfs.touch</code>.
|
added function <code>lfs.touch</code>.
|
||||||
</li>
|
</li>
|
||||||
<li>[21/Jan/2005] Version 1.0 released</li>
|
<li>[21/Jan/2005] Version 1.0 released</li>
|
||||||
@@ -107,7 +107,7 @@ Comments are welcome!</p>
|
|||||||
<div id="about">
|
<div id="about">
|
||||||
<p><a href="http://validator.w3.org/check?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" height="31" width="88" /></a></p>
|
<p><a href="http://validator.w3.org/check?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" height="31" width="88" /></a></p>
|
||||||
<p><small>
|
<p><small>
|
||||||
$Id: index.html,v 1.15 2005/05/20 18:04:56 uid20002 Exp $
|
$Id: index.html,v 1.16 2005/05/20 18:38:07 uid20006 Exp $
|
||||||
</small></p>
|
</small></p>
|
||||||
</div> <!-- id="about" -->
|
</div> <!-- id="about" -->
|
||||||
|
|
||||||
|
|||||||
@@ -74,7 +74,7 @@ somewhere in your product or its documentation.</p>
|
|||||||
Ierusalimschy, André Carregal and Tomás Guisasola.
|
Ierusalimschy, André Carregal and Tomás Guisasola.
|
||||||
The implementation is not derived from licensed software.</p>
|
The implementation is not derived from licensed software.</p>
|
||||||
|
|
||||||
<hr>
|
<hr/>
|
||||||
<p>Copyright © 2004-2005 The Kepler Project.</p>
|
<p>Copyright © 2004-2005 The 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
|
||||||
@@ -104,7 +104,7 @@ SOFTWARE.</p>
|
|||||||
<div id="about">
|
<div id="about">
|
||||||
<p><a href="http://validator.w3.org/check?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" height="31" width="88" /></a></p>
|
<p><a href="http://validator.w3.org/check?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" height="31" width="88" /></a></p>
|
||||||
<p><small>
|
<p><small>
|
||||||
$Id: license.html,v 1.6 2005/05/20 18:04:56 uid20002 Exp $
|
$Id: license.html,v 1.7 2005/05/20 18:43:00 uid20006 Exp $
|
||||||
</small></p>
|
</small></p>
|
||||||
</div><!-- id="about" -->
|
</div><!-- id="about" -->
|
||||||
|
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ developed to complement the set of functions related to file
|
|||||||
systems offered by the standard Lua distribution.</p>
|
systems offered by the standard Lua distribution.</p>
|
||||||
|
|
||||||
<p>LuaFileSystem offers a portable way to access
|
<p>LuaFileSystem offers a portable way to access
|
||||||
the underlying directory structure and file attributes.<p>
|
the underlying directory structure and file attributes.</p>
|
||||||
|
|
||||||
<h2><a name="installation"></a>Installation</h2>
|
<h2><a name="installation"></a>Installation</h2>
|
||||||
|
|
||||||
@@ -128,16 +128,15 @@ If you are using Lua 5.1, nothing should be done.</p>
|
|||||||
|
|
||||||
<dt><strong><code>blksize</code></strong></dt>
|
<dt><strong><code>blksize</code></strong></dt>
|
||||||
<dd>optimal file system I/O blocksize; (Unix only)</dd>
|
<dd>optimal file system I/O blocksize; (Unix only)</dd>
|
||||||
</dl>
|
</dl>
|
||||||
|
</dd>
|
||||||
|
|
||||||
<dt><a name="chdir"></a><strong><code>lfs.chdir (path)</code></strong></dt>
|
<dt><a name="chdir"></a><strong><code>lfs.chdir (path)</code></strong></dt>
|
||||||
<dd>Changes the current working directory to the given
|
<dd>Changes the current working directory to the given
|
||||||
<code>path</code>.<br />
|
<code>path</code>.<br />
|
||||||
Returns <code>true</code> in case of success or <code>nil</code> plus an
|
Returns <code>true</code> in case of success or <code>nil</code> plus an
|
||||||
error string.</dd>
|
error string.</dd>
|
||||||
|
|
||||||
|
|
||||||
<dt><a name="getcwd"></a><strong><code>lfs.currentdir ()</code></strong></dt>
|
<dt><a name="getcwd"></a><strong><code>lfs.currentdir ()</code></strong></dt>
|
||||||
<dd>Returns a string with the current working directory or <code>nil</code>
|
<dd>Returns a string with the current working directory or <code>nil</code>
|
||||||
plus an error string.</dd>
|
plus an error string.</dd>
|
||||||
@@ -194,7 +193,7 @@ If you are using Lua 5.1, nothing should be done.</p>
|
|||||||
<div id="about">
|
<div id="about">
|
||||||
<p><a href="http://validator.w3.org/check?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" height="31" width="88" /></a></p>
|
<p><a href="http://validator.w3.org/check?uri=referer"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" height="31" width="88" /></a></p>
|
||||||
<p><small>
|
<p><small>
|
||||||
$Id: manual.html,v 1.16 2005/05/20 18:23:29 uid20002 Exp $
|
$Id: manual.html,v 1.18 2005/05/20 18:44:59 uid20006 Exp $
|
||||||
</small></p>
|
</small></p>
|
||||||
</div> <!-- id="about" -->
|
</div> <!-- id="about" -->
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user