front page
authorbarbieri <barbieri@gmail.com>
Thu, 13 Dec 2007 05:27:31 +0000 (05:27 +0000)
committerbarbieri <barbieri@gmail.com>
Thu, 13 Dec 2007 05:27:31 +0000 (05:27 +0000)
www/images/indt_logo.jpg [new file with mode: 0644]
www/images/maemo_logo.jpg [new file with mode: 0644]
www/index.html [new file with mode: 0644]

diff --git a/www/images/indt_logo.jpg b/www/images/indt_logo.jpg
new file mode 100644 (file)
index 0000000..1b02397
Binary files /dev/null and b/www/images/indt_logo.jpg differ
diff --git a/www/images/maemo_logo.jpg b/www/images/maemo_logo.jpg
new file mode 100644 (file)
index 0000000..3507a2c
Binary files /dev/null and b/www/images/maemo_logo.jpg differ
diff --git a/www/index.html b/www/index.html
new file mode 100644 (file)
index 0000000..bebaccd
--- /dev/null
@@ -0,0 +1,57 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US" lang="en-US">
+  <head profile="http://www.w3.org/2000/08/w3c-synd/#">
+    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+    <title>Light Media Scanner</title>
+    <style type="text/css">
+body {
+   background-color: #ffffff;
+   color: #000000;
+   font-family: Tahoma, Verdana, sans-serif;
+}
+    </style>
+  </head>
+  <body>
+    <h1>Light Media Scanner</h1>
+    <p>
+      Lightweight media scanner meant to be used in not-so-powerful
+      devices, like embedded systems or old machines.
+    </p>
+    <p>
+      Provides an optimized way to recursively scan directories,
+      handling the parser in a child process, avoiding breaks of the
+      main process when parsers break (quite common with such bad libs
+      and tags).
+    </p>
+    <p>
+      Parsers are plugins in the form of shared objects, so it's easy
+      to add new without having to recompiling the scanner.
+    </p>
+    <p>
+      The scanner will use SQLite3 to store file-mtime association,
+      avoiding parsing files that are already up-to-date. This SQLite
+      connection and the file id within the master table 'files' are
+      handled to plugins for relationship with other tables.
+    </p>
+    <h2>Documentation</h2>
+    <ul>
+      <li><a href="api/index.html">C API</a></li>
+      <li><a href="python-api/index.html">Python API</a></li>
+    </ul>
+    <h2>License</h2>
+    <p>
+      Light Media Scanner is licensed under <em>GNU Lesser General
+      Public License 2.1</em>.
+    </p>
+    <hr />
+    <p style="text-align: center">
+      <a
+          href="http://www.indt.org.br"><img src="images/indt_logo.jpg"
+          alt="INdT" /></a>
+      <a
+          href="http://www.maemo.org"><img src="images/maemo_logo.jpg"
+          alt="Maemo" /></a>
+    </p>
+  </body>
+</html>