summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorFabio Mascarenhas <mascarenhas@lambda.local>2009-10-20 19:03:43 -0200
committerFabio Mascarenhas <mascarenhas@lambda.local>2009-10-20 19:03:43 -0200
commit8332f1ab9ef64d1c8faab97d31a026576490b510 (patch)
tree5d45f664cb8078775088b8b86925002ff156ed25 /index.html
downloadluafilesystem-8332f1ab9ef64d1c8faab97d31a026576490b510.tar.gz
luafilesystem-8332f1ab9ef64d1c8faab97d31a026576490b510.tar.bz2
luafilesystem-8332f1ab9ef64d1c8faab97d31a026576490b510.zip
first pages commit for luafilesystem
Diffstat (limited to 'index.html')
-rw-r--r--index.html192
1 files changed, 192 insertions, 0 deletions
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..43edefc
--- /dev/null
+++ b/index.html
@@ -0,0 +1,192 @@
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4<head>
5 <title>LuaFileSystem</title>
6 <link rel="stylesheet" href="http://www.keplerproject.org/doc.css" type="text/css"/>
7 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
8</head>
9
10<body>
11
12<div id="container">
13
14<div id="product">
15 <div id="product_logo">
16 <a href="http://www.keplerproject.org">
17 <img alt="LuaFileSystem" src="luafilesystem.png"/>
18 </a>
19 </div>
20 <div id="product_name"><big><strong>LuaFileSystem</strong></big></div>
21 <div id="product_description">File System Library for the Lua Programming Language</div>
22</div> <!-- id="product" -->
23
24<div id="main">
25
26<div id="navigation">
27<h1>LuaFileSystem</h1>
28 <ul>
29 <li><strong>Home</strong>
30 <ul>
31 <li><a href="index.html#overview">Overview</a></li>
32 <li><a href="index.html#status">Status</a></li>
33 <li><a href="index.html#download">Download</a></li>
34 <li><a href="index.html#history">History</a></li>
35 <li><a href="index.html#credits">Credits</a></li>
36 <li><a href="index.html#contact">Contact us</a></li>
37 </ul>
38 </li>
39 <li><a href="manual.html">Manual</a>
40 <ul>
41 <li><a href="manual.html#introduction">Introduction</a></li>
42 <li><a href="manual.html#building">Building</a></li>
43 <li><a href="manual.html#installation">Installation</a></li>
44 <li><a href="manual.html#reference">Reference</a></li>
45 </ul>
46 </li>
47 <li><a href="examples.html">Examples</a></li>
48 <li><a href="http://luaforge.net/projects/luafilesystem/">Project</a>
49 <ul>
50 <li><a href="http://luaforge.net/tracker/?group_id=66">Bug Tracker</a></li>
51 <li><a href="http://luaforge.net/scm/?group_id=66">CVS</a></li>
52 </ul>
53 </li>
54 <li><a href="license.html">License</a></li>
55 </ul>
56</div> <!-- id="navigation" -->
57
58<div id="content">
59
60<h2><a name="overview"></a>Overview</h2>
61
62<p>LuaFileSystem is a <a href="http://www.lua.org">Lua</a> library
63developed to complement the set of functions related to file
64systems offered by the standard Lua distribution.</p>
65
66<p>LuaFileSystem offers a portable way to access
67the underlying directory structure and file attributes.</p>
68
69<p>LuaFileSystem is free software and uses the same
70<a href="license.html">license</a> as Lua 5.1.</p>
71
72<h2><a name="status"></a>Status</h2>
73
74<p>Current version is 1.5.0. It was developed for Lua 5.1.</p>
75
76<h2><a name="download"></a>Download</h2>
77
78<p>LuaFileSystem source can be downloaded from its
79<a href="http://github.com/keplerproject/luafilesystem">Github</a>
80page.</p>
81
82<h2><a name="history"></a>History</h2>
83
84<dl class="history">
85 <dt><strong>Version 1.5.0</strong> [20/Oct/2009]</dt>
86 <li>Added explicit next and close methods to second return value of lfs.dir
87(the directory object), for explicit iteration or explicit closing.</li>
88 <li>Added directory locking via lfs.lock_dir function (see the <a href="manual.html">manual</a>).</li>
89 <dt><strong>Version 1.4.2</strong> [03/Feb/2009]</dt>
90 <dd>
91 <ul>
92 <li>fixed bug [<a href="http://luaforge.net/tracker/?func=detail&amp;group_id=66&amp;aid=13198&amp;atid=356">#13198</a>]
93 lfs.attributes(filename, 'size') overflow on files > 2 Gb again (bug report and patch by KUBO Takehiro).</li>
94 <li>fixed bug [<a href="http://luaforge.net/tracker/?group_id=66&amp;atid=356&amp;func=detail&amp;aid=39794">#39794</a>]
95 Compile error on Solaris 10 (bug report and patch by Aaron B).</li>
96 <li>fixed compilation problems with Borland C.</li>
97 </ul>
98 </dd>
99
100 <dt><strong>Version 1.4.1</strong> [07/May/2008]</dt>
101 <dd>
102 <ul>
103 <li>documentation review</li>
104 <li>fixed Windows compilation issues</li>
105 <li>fixed bug in the Windows tests (patch by Shmuel Zeigerman)</li>
106 <li>fixed bug [<a href="http://luaforge.net/tracker/?func=detail&amp;group_id=66&amp;aid=2185&amp;atid=356">#2185</a>]
107 <code>lfs.attributes(filename, 'size')</code> overflow on files > 2 Gb
108 </li>
109 </ul>
110 </dd>
111
112 <dt><strong>Version 1.4.0</strong> [13/Feb/2008]</dt>
113 <dd>
114 <ul>
115 <li>added function
116 <a href="manual.html#setmode"><code>lfs.setmode</code></a>
117 (works only in Windows systems).</li>
118 <li><a href="manual.html#attributes"><code>lfs.attributes</code></a>
119 raises an error if attribute does not exist</li>
120 </ul>
121 </dd>
122
123 <dt><strong><a href="http://www.keplerproject.org/luafilesystem/1.3/">Version 1.3.0</a></strong> [26/Oct/2007]</dt>
124 <dd>
125 <ul>
126 <li>added function
127 <a href="manual.html#symlinkattributes"><code>lfs.symlinkattributes</code></a>
128 (works only in non Windows systems).</li>
129 </ul>
130 </dd>
131
132 <dt><strong><a href="http://www.keplerproject.org/luafilesystem/1.2/">Version 1.2.1</a></strong> [08/May/2007]</dt>
133 <dd>
134 <ul>
135 <li>compatible only with Lua 5.1 (Lua 5.0 support was dropped)</li>
136 </ul>
137 </dd>
138
139 <dt><strong><a href="http://www.keplerproject.org/luafilesystem/1.2/">Version 1.2</a></strong> [15/Mar/2006]</dt>
140 <dd>
141 <ul>
142 <li>added optional argument to
143 <a href="manual.html#attributes"><code>lfs.attributes</code></a></li>
144 <li>added function
145 <a href="manual.html#rmdir"><code>lfs.rmdir</code></a></li>
146 <li>bug correction on <a href="manual.html#dir"><code>lfs.dir</code></a></li>
147 </ul>
148 </dd>
149
150 <dt><strong><a href="http://www.keplerproject.org/luafilesystem/1.1/">Version 1.1</a></strong> [30/May/2005]</dt>
151 <dd>
152 <ul>
153 <li>added function <a href="manual.html#touch"><code>lfs.touch</code></a>.</li>
154 </ul>
155 </dd>
156
157 <dt><strong><a href="http://www.keplerproject.org/luafilesystem/1.0/">Version 1.0</a></strong> [21/Jan/2005]</dt>
158 <dd />
159
160 <dt><strong>Version 1.0 Beta</strong> [10/Nov/2004]</dt>
161 <dd />
162</dl>
163
164<h2><a name="credits"></a>Credits</h2>
165
166<p>LuaFileSystem was designed by Roberto Ierusalimschy,
167Andr&eacute; Carregal and Tom&aacute;s Guisasola as part of the
168<a href="http://www.keplerproject.org">Kepler Project</a>,
169which holds its copyright. LuaFileSystem is currently maintained by F&aacute;bio Mascarenhas.</p>
170
171<h2><a name="contact"></a>Contact us</h2>
172
173<p>For more information please
174<a href="mailto:info-NO-SPAM-THANKS@keplerproject.org">contact us</a>.
175Comments are welcome!</p>
176
177<p>You can also reach other Kepler developers and users on the Kepler Project
178<a href="http://luaforge.net/mail/?group_id=104">mailing list</a>.</p>
179
180</div> <!-- id="content" -->
181
182</div> <!-- id="main" -->
183
184<div id="about">
185 <p><a href="http://validator.w3.org/check?uri=referer">Valid XHTML 1.0!</a></p>
186 <p><small>$Id: index.html,v 1.44 2009/02/04 21:21:33 carregal Exp $</small></p>
187</div> <!-- id="about" -->
188
189</div> <!-- id="container" -->
190
191</body>
192</html>