Re: [Tracker] Major website update



John Drinkwater ha scritto:
Just had a quick look at this submission:

I'm a long time lurker on the list, but still want to contribute,
you'll have to accept my apologies if you find these suggestions less
than helpful.


Suggestion really welcome.
See below.


Michele Mattioni wrote:
This is a major website update:

1) XHTML valid.

2) Layout: Using CSS to shape the site.

3) Getting Start: Written how to install from the source and run. KISS
approach.

4) Documentation: An initial Documentation covering only what to index
or not and which are the GUI that are already available to search
tracker.
We have to improve this page... See my next e-mail for what we need.

5) Automatic date update in the footer equal across all the pages
(javascript only no php)

6) Three screenshot provided to show the Tracker-Search-Gui, the
trackerd memory and time test.
Just unzip this stuff under the images directories to have the
thumbnails and the big images working.

M.
Index: start.html
===================================================================
--- start.html    (revision 4934)
+++ start.html    (working copy)
@@ -1,11 +1,12 @@
+<!DOCTYPE html
+PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+<html xmlns="http://www.w3.org/1999/xhtml";>
 <head>
-<title>Meta Tracker - freedesktop.org - Home Page</title>
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

Can a "description" meta tag be added? should help with
bookmarks/search engines, etc

Added to this patch.
Feel free to add whatever you think is usefull

-  <li class="sel" onClick=" window.location='start.html'"><a
href="start.html">Getting Started</a></li>
+  <li><a href="start.html">Getting Started</a></li>

The class here could still be kept, it would be handy for styling. (in
all files)


My fault. I've just missed it ...
I'm going to correct.

+<h3>Run tracker!!</h3>
+<p>To run tracker simple digit <code>trackerd</code></p>
+<p><strong>Tracker is indexing your home!!!!</strong></p>

Waaay too many exclamations, heh :)

I've removed some :)
(yeah, two still there... but I cannot resist :) )


+<div id="footer">
+<hr/>
+<script type="text/javascript" src="js/datemod.js"
language="JavaScript"></script>

see below


Index: faq.html
===================================================================

+<h3><a name="1">What is it?</a></h3>
+<h3><a name="2">Is Tracker able to detect different types of
files?</a></h3>

These could probably contain `id="point1" name="point1"` for future
proofing.

Correct as suggested...


Index: index.html
===================================================================

+    <tr><td><img alt="files"
src="images/files.png"/></td><td><strong>Files</strong></td></tr>
+    <tr><td><img alt="documents"
src="images/docs.png"/></td><td><strong>Documents</strong></td></tr>

This whole table could be a <dl> or a <ul> with ids to pick the images
from CSS

<ul>
 <li id="files">Files</li>
...
#files { background: url(images/files.png); etc }

I'm going to reject this one...
I think using a table here makes sense.

But if you think this is really important send a patch.
I mean a full one :).


Index: documentation.html
===================================================================

+<div class="example">
+ +WatchDirectoryRoots=/path/to/directory_1;/path/to/directory_2</div>

+<div class="example">

+NoWatchDirectory=/path/to/directory_to_NOT_index_1;
/path/to/directory_to_NOT_index_2</div>

Very picky comment, but maybe use <code class="example">?

I don't see any differences here.
Only one tag more.
Right now the class example is only used for snippet of the
configuration file.

We use the standard <code></code> for code already...


Index: js/datemod.js
===================================================================
--- js/datemod.js    (revision 0)
+++ js/datemod.js    (revision 0)
@@ -0,0 +1,10 @@
+// Formatted last-modified date
+// Using the javascript to do in a smart way
+if (Date.parse(document.lastModified) != 0) {
+  var modiDate = new Date(document.lastModified);
+  var monthName = new Array("January", "February", "March", "April",
"May", +   "June", "July", "August", "September", "October",
"November", "December");
+  document.write("Last modified: " + monthName[modiDate.getMonth()]
+ " ");
+  document.write(modiDate.getDate() + ", " + modiDate.getFullYear());
+  }
+  \ No newline at end of file


Not a very useful addition to the page, is it really needed ?

document.write() isn't too safe with xHTML; and for people with
noscript it'll bug them for no reason


IMHO make sense to have the date when was the last modified of the page
written .
This give a "lazy" feedback to the readers in how the information
displayed are up to date.
I don't want to update the footer by hand (most of the time I forget!)


Note we can't use php include according to the gnome web server
configuration...

Maybe using the Server Side Include like:

<!--#flastmod file="index.html" -->

but I don't know if they are working on the current WebServer we use.
Need a test.

Any other suggestion is welcome.

Fell free to send a patch.


Jamie plz commit this one to have the head svn update
[would be easier to make patches :) for Jon and all the others]

Cheers,
    John


Cheers,
    Michele.
Index: start.html
===================================================================
--- start.html  (revision 4934)
+++ start.html  (working copy)
@@ -1,12 +1,12 @@
-
-<!-- header.php -->
-
-<html>
+<!DOCTYPE html
+PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+<html xmlns="http://www.w3.org/1999/xhtml";>
 <head>
-<title>Meta Tracker - freedesktop.org - Home Page</title>
-
-<link rel="stylesheet" href="style.css" media="screen">
-
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+<meta name="description" content="Meta Tracker -- tracker-project.org" />
+<title>Meta Tracker - tracker-project.org</title>
+<link type="text/css" rel="stylesheet" href="style.css" media="screen" />
 </head>
 <body>
 
@@ -14,46 +14,52 @@
 
 <!-- navigation.php -->
 
+<div id="logo">
 <img src="images/meta_tracker_logo.png" alt="Meta Tracker"/>
+</div>
 
+<div id="navigation">
 <ul class="navbar">
-  <li onClick="window.location='index.html'"><a href="index.html">About</a></li>
-  <li onClick=" window.location='features.html'"><a href="features.html">Features</a></li>
-  <li class="sel" onClick=" window.location='start.html'"><a href="start.html">Getting Started</a></li>
-  <li onClick=" window.location='faq.html'"><a href="faq.html">FAQ</a></li>
-  <li onClick=" window.location='screenshots.html'"><a href="screenshots.html">Screenshots</a></li>
-  <li onClick=" window.location='download.html'"><a href="download.html">Download</a></li>
-  <li onClick=" window.location='development.html'"><a href="development.html">Development</a></li>
-  <li onClick=" window.location='documentation.html'"><a href="documentation.html">Documentation</a></li>
+  <li><a href="index.html">About</a></li>
+  <li><a href="features.html">Features</a></li>
+  <li class="sel" ><a href="start.html">Getting Started</a></li>
+  <li><a href="faq.html">FAQ</a></li>
+  <li><a href="screenshots.html">Screenshots</a></li>
+  <li><a href="download.html">Download</a></li>
+  <li><a href="development.html">Development</a></li>
+  <li><a href="documentation.html">Documentation</a></li>
 </ul>
-
+</div>
 <!-- navigation.php -->
 
 <!-- start.php -->
-
+<div id="content">
+<h2>Getting Started</h2>
 <h3>Installation</h3>
+<p>To install tracker you can compile from the source or grab an RPM or DEB package.</p>
+<h4>Installing from the source</h4>
+<ol>
+       <li>Extract the tarball <br/>
+               <code>tar xvzf tracker-x.y.z.tar.gz</code> <em>where x.y.z is the version number</em></li>
+       <li><code>cd tracker-x.y.z</code></li>
+       <li><code>./configure</code></li>
+       <li><code>make</code></li>
+       <li><code>sudo make install</code> <em>or run as root if you don't use sudo</em></li>
+</ol>
+<p>If you run Ubuntu you maybe want to have a look to : <a 
href="https://help.ubuntu.com/community/Tracker";>How-to install Meta Tracker</a> on Ubuntu Community 
Documentation</p>
 
-<p><a href="https://help.ubuntu.com/community/Tracker";>How-to install Meta Tracker</a> on Ubuntu Community 
Documentation</p>
-
-<p>Nautilus 2.14 packages with Tracker support:</p>
-
+<h3>Run tracker</h3>
+<p>To run tracker simple digit <code>trackerd</code></p>
+<p><strong>Tracker is indexing your home!!</strong></p>
+<p>To search you can use :</p>
 <ul>
-       <li>
-               <p>
-               Deb (Ubuntu) : <a 
href="http://gnome.org/~jamiemcc/tracker/DEB/nautilus_2.14.1-0ubuntu9tracker1_i386.deb";>http://gnome.org/~jamiemcc/tracker/DEB/nautilus_2.14.1-0ubuntu9tracker1_i386.deb</a>
 
-               </p>
-       </li>
+       <li>the command line <code>tracker-search</code></li>
+       <li>the tracker-search-tool <code>tracker-search-tool</code></li>
 </ul>
 
-<p>Deskbar 2.14 packages with Tracker support:</p>
+<p>For more information in how configure tracker read the README file or refer to <a 
href="documentation.html">Documentation</a>.</p>
+<p>For more information about the others GUI available to search with tracker refer to <a 
href="documentation.html#other_gui">Documention Other GUI</a> </p>
 
-<ul>
-       <li>
-               <p>
-               Deb (Ubuntu) : <a 
href="http://www.madman2k.net/files/deskbar-applet_2.14.2-0ubuntu1tracker1_i386.deb";>http://www.madman2k.net/files/deskbar-applet_2.14.2-0ubuntu1tracker1_i386.deb</a>
 
-               </p>
-       </li>
-</ul>
 
 
 
@@ -62,15 +68,14 @@
 
 <!-- footer.php -->
 
-</br>
-</br>
+<div id="footer">
+<hr/>
+<script type="text/javascript" src="js/datemod.js" language="JavaScript"></script>
+<br/>
+Original site designed by Peter Vander Klippe (peter.vk gmail,com)
+</div>
 
-<address>
-<small>
-July 19, 2006<br>
-Peter Vander Klippe - peter.vk gmail,com
-</small>
-</address>
+</div>
 
 </body>
 </html>
Index: features.html
===================================================================
--- features.html       (revision 4934)
+++ features.html       (working copy)
@@ -1,69 +1,68 @@
-
-<!-- header.php -->
-
-<html>
+<!DOCTYPE html
+PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+<html xmlns="http://www.w3.org/1999/xhtml";>
 <head>
-<title>Meta Tracker - freedesktop.org - Home Page</title>
-
-<link rel="stylesheet" href="style.css" media="screen">
-
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+<meta name="description" content="Meta Tracker -- tracker-project.org" />
+<title>Meta Tracker - tracker-project.org</title>
+<link type="text/css" rel="stylesheet" href="style.css" media="screen" />
 </head>
 <body>
 
-<!-- header.php -->
 
 
-<!-- navigation.php -->
-
+<div id="logo">
 <img src="images/meta_tracker_logo.png" alt="Meta Tracker"/>
+</div>
 
+<div id="navigation">
 <ul class="navbar">
-  <li onClick="window.location='index.html'"><a href="index.html">About</a></li>
-  <li class="sel" onClick=" window.location='features.html'"><a href="features.html">Features</a></li>
-  <li onClick=" window.location='start.html'"><a href="start.html">Getting Started</a></li>
-  <li onClick=" window.location='faq.html'"><a href="faq.html">FAQ</a></li>
-  <li onClick=" window.location='screenshots.html'"><a href="screenshots.html">Screenshots</a></li>
-  <li onClick=" window.location='download.html'"><a href="download.html">Download</a></li>
-  <li onClick=" window.location='development.html'"><a href="development.html">Development</a></li>
-  <li onClick=" window.location='documentation.html'"><a href="documentation.html">Documentation</a></li>
+  <li ><a href="index.html">About</a></li>
+  <li class="sel"><a href="features.html">Features</a></li>
+  <li ><a href="start.html">Getting Started</a></li>
+  <li ><a href="faq.html">FAQ</a></li>
+  <li ><a href="screenshots.html">Screenshots</a></li>
+  <li ><a href="download.html">Download</a></li>
+  <li ><a href="development.html">Development</a></li>
+  <li ><a href="documentation.html">Documentation</a></li>
 </ul>
+</div>
 
-<!-- navigation.php -->
+<div id="content">
 
-<!-- news.php -->
+<h2>Features</h2>
 
-<h3>Features</h3>
-
 <ul>
-<li/> Desktop-neutral design (its a freedesktop product built around other freedesktop technologies like 
DBus and XDGMime but contains no GNOME specific dependencies)<br/><br/>
+<li> Desktop-neutral design (its a freedesktop product built around other freedesktop technologies like DBus 
and XDGMime but contains no GNOME specific dependencies)</li>
 
-<li/> Very memory efficient and non-leaking (typical RAM usage 4 - 6 MB). Unlike some other indexers, 
tracker is designed and built to run well on lower memory systems with typically 128MB or 256MB memory. It 
should even be efficient enough to use on some mobile devices.<br/><br/>
+<li> Very memory efficient and non-leaking (typical RAM usage 4 - 6 MB). Unlike some other indexers, tracker 
is designed and built to run well on lower memory systems with typically 128MB or 256MB memory. It should 
even be efficient enough to use on some mobile devices.</li>
 
-<li/> Non-bloated and written in C for maximum efficiency.<br/><br/>
+<li> Non-bloated and written in C for maximum efficiency.</li>
 
-<li/> Small size and minimal dependencies makes it easy to bundle into various distro's including live 
cds.<br/><br/>
+<li> Small size and minimal dependencies makes it easy to bundle into various distro's including live 
cds.</li>
 
-<li/> Fast indexing and unobtrusive - no need to index stuff overnight. Tracker runs at nice+10 so it should 
have a minimal impact on your system. <br/><br/>
+<li> Fast indexing and unobtrusive - no need to index stuff overnight. Tracker runs at nice+19 so it should 
have a minimal impact on your system.</li>
 
-<li/> Implements the freedesktop specification for metadata <a 
href="http://freedesktop.org/wiki/Standards/shared-filemetadata-spec";>http://freedesktop.org/wiki/Standards/shared-filemetadata-spec</a><br/><br/>
+<li> Implements the freedesktop specification for metadata <a 
href="http://freedesktop.org/wiki/Standards/shared-filemetadata-spec";>http://freedesktop.org/wiki/Standards/shared-filemetadata-spec</a></li>
 
-<li/> Extracts embedded File, Image, Document and Audio type metadata from files.<br/><br/>
+<li> Extracts embedded File, Image, Document and Audio type metadata from files.</li>
 
-<li/> Extracts embedded metadata from HTML, PDF, PS, OLE2 (DOC, XLS, PPT), OpenOffice (sxw), StarOffice 
(sdw), DVI, MAN, MP3 (ID3v1 and ID3v2), OGG, WAV, EXIV2, JPEG, GIF, PNG, TIFF, DEB, RPM, TAR(.GZ), ZIP, ELF, 
REAL, RIFF (AVI), MPEG, QT and ASF files<br/><br/>
+<li> Extracts embedded metadata from HTML, PDF, PS, OLE2 (DOC, XLS, PPT), OpenOffice (sxw), StarOffice 
(sdw), DVI, MAN, MP3 (ID3v1 and ID3v2), OGG, WAV, EXIV2, JPEG, GIF, PNG, TIFF, DEB, RPM, TAR(.GZ), ZIP, ELF, 
REAL, RIFF (AVI), MPEG, QT and ASF files</li>
 
-<li/> Supports the WC3's RDF Query syntax for querying metadata<br/><br/>
+<li> Supports the WC3's RDF Query syntax for querying metadata</li>
 
-<li/> Provides support for both free text search (like Beagle/Google) as well as structured searches using 
RDF Query<br/><br/>
+<li> Provides support for both free text search (like Beagle/Google) as well as structured searches using 
RDF Query</li>
 
-<li/> Respond in real time to file system changes to keep its metadata database up to date and in 
synch<br/><br/>
+<li> Respond in real time to file system changes to keep its metadata database up to date and in synch</li>
 
-<li/> Fully extendable with custom metadata - you can store, retrieve, register and search via RDF Query all 
your own custom metadata<br/><br/>
+<li> Fully extendable with custom metadata - you can store, retrieve, register and search via RDF Query all 
your own custom metadata</li>
 
-<li/> Can extract a file's contents as plain text and index them<br/><br/>
+<li> Can extract a file's contents as plain text and index them</li>
 
-<li/> Provides text filters for PDF, MS Office, OpenOffice (all versions), HTML and PS files.<br/><br/>
+<li> Provides text filters for PDF, MS Office, OpenOffice (all versions), HTML and PS files.</li>
 
-<li/> Can provide thumbnailing on the fly<br/><br/>
+<li> Can provide thumbnailing on the fly</li>
 
 </ul>
 
@@ -89,14 +88,13 @@
 
 <!-- footer.php -->
 
-</br>
-</br>
-<hr>
-<address>
-<small>
+<div id="footer">
+<hr/>
+<script type="text/javascript" src="js/datemod.js" language="JavaScript"></script>
+<br/>
 Original site designed by Peter Vander Klippe (peter.vk gmail,com)
-</small>
-</address>
+</div>
+</div>
 
 </body>
 </html>
Index: screenshots.html
===================================================================
--- screenshots.html    (revision 4934)
+++ screenshots.html    (working copy)
@@ -1,58 +1,59 @@
-
-<!-- header.php -->
-
-<html>
+<!DOCTYPE html
+PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+<html xmlns="http://www.w3.org/1999/xhtml";>
 <head>
-<title>Meta Tracker - freedesktop.org - Home Page</title>
-
-<link rel="stylesheet" href="style.css" media="screen">
-
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+<meta name="description" content="Meta Tracker -- tracker-project.org" />
+<title>Meta Tracker - tracker-project.org</title>
+<link type="text/css" rel="stylesheet" href="style.css" media="screen" />
 </head>
 <body>
 
-<!-- header.php -->
-
 <!-- navigation.php -->
 
 <img src="images/meta_tracker_logo.png" alt="Meta Tracker"/>
 
+<div id="navigation">
 <ul class="navbar">
-  <li onClick="window.location='index.html'"><a href="index.html">About</a></li>
-  <li onClick=" window.location='features.html'"><a href="features.html">Features</a></li>
-  <li onClick=" window.location='start.html'"><a href="start.html">Getting Started</a></li>
-  <li onClick=" window.location='faq.html'"><a href="faq.html">FAQ</a></li>
-  <li class="sel" onClick=" window.location='screenshots.html'"><a 
href="screenshots.html">Screenshots</a></li>
-  <li onClick=" window.location='download.html'"><a href="download.html">Download</a></li>
-  <li onClick=" window.location='development.html'"><a href="development.html">Development</a></li>
-  <li onClick=" window.location='documentation.html'"><a href="documentation.html">Documentation</a></li>
+  <li ><a href="index.html">About</a></li>
+  <li ><a href="features.html">Features</a></li>
+  <li ><a href="start.html">Getting Started</a></li>
+  <li ><a href="faq.html">FAQ</a></li>
+  <li class="sel" ><a href="screenshots.html">Screenshots</a></li>
+  <li ><a href="download.html">Download</a></li>
+  <li ><a href="development.html">Development</a></li>
+  <li><a href="documentation.html">Documentation</a></li>
 </ul>
-
+</div>
 <!-- navigation.php -->
 
-<!-- index.php -->
+
+<div id="content">
+
 <h2>Screenshots</h2>
 <h3>Desktop Integration:</h3>
-<img src="images/screenshot-search_for_parachutes.png" alt="Screenshot - Search for parachutes">
+<a href="images/screenshot-search_for_test.png"><img src="images/screenshot-search_for_test_thumbnail.png" 
width="350" height="217" alt="Screenshot -- Search for test" /></a>
+
+
 <h3>Low Memory Use:</h3>
-<img src="images/screenshot-system_monitor-trackerd.png" alt="Screenshot - System Monitor: trackerd">
+<a href="images/screenshot-system_monitor-trackerd.png"><img 
src="images/screenshot-system_monitor-trackerd_thumbnail.png" width="252" height="247" alt="Screenshot - 
System Monitor: trackerd" /></a>
 <h3>Fast:</h3>
-<img src="images/screenshot-time-tracker-search.png" alt="Screenshot - time tracker-search">
+<a href="images/screenshot-time-tracker-search.png"><img 
src="images/screenshot-time-tracker-search_thumbnail.png" width="293" height="165" alt="Screenshot - time 
tracker-search" /></a>
 
 <!-- index.php -->
 
 
 <!-- footer.php -->
 
-</br>
-</br>
+<div id="footer">
+<hr/>
+<script type="text/javascript" src="js/datemod.js" language="JavaScript"></script>
+<br/>
+Original site designed by Peter Vander Klippe (peter.vk gmail,com)
+</div>
+</div>
 
-<address>
-<small>
-July 19, 2006<br>
-Peter Vander Klippe - peter.vk gmail,com
-</small>
-</address>
-
 </body>
 </html>
 
Index: development.html
===================================================================
--- development.html    (revision 4934)
+++ development.html    (working copy)
@@ -1,38 +1,38 @@
-
-<!-- header.php -->
-
-<html>
+<!DOCTYPE html
+PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+<html xmlns="http://www.w3.org/1999/xhtml";>
 <head>
-<title>Meta Tracker - freedesktop.org - Home Page</title>
-
-<link rel="stylesheet" href="style.css" media="screen">
-
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+<meta name="description" content="Meta Tracker -- tracker-project.org" />
+<title>Meta Tracker - tracker-project.org</title>
+<link type="text/css" rel="stylesheet" href="style.css" media="screen" />
 </head>
 <body>
 
-<!-- header.php -->
-
-
-<!-- navigation.php -->
-
+<div id="logo">
 <img src="images/meta_tracker_logo.png" alt="Meta Tracker"/>
+</div>
 
+<div id="navigation">
 <ul class="navbar">
-  <li onClick="window.location='index.html'"><a href="index.html">About</a></li>
-  <li onClick=" window.location='features.html'"><a href="features.html">Features</a></li>
-  <li onClick=" window.location='start.html'"><a href="start.html">Getting Started</a></li>
-  <li onClick=" window.location='faq.html'"><a href="faq.html">FAQ</a></li>
-  <li onClick=" window.location='screenshots.html'"><a href="screenshots.html">Screenshots</a></li>
-  <li onClick=" window.location='download.html'"><a href="download.html">Download</a></li>
-  <li  class="sel" onClick=" window.location='development.html'"><a 
href="development.html">Development</a></li>
-  <li onClick=" window.location='documentation.html'"><a href="documentation.html">Documentation</a></li>
+  <li ><a href="index.html">About</a></li>
+  <li ><a href="features.html">Features</a></li>
+  <li ><a href="start.html">Getting Started</a></li>
+  <li ><a href="faq.html">FAQ</a></li>
+  <li ><a href="screenshots.html">Screenshots</a></li>
+  <li ><a href="download.html">Download</a></li>
+  <li  class="sel" ><a href="development.html">Development</a></li>
+  <li><a href="documentation.html">Documentation</a></li>
 </ul>
 
+</div>
 
-<!-- navigation.php -->
 
-<!-- development.php -->
 
+
+<div id="content">
+
 <h2>Development</h2>
 
 <p>
@@ -45,40 +45,33 @@
 <p><code>svn checkout http://svn.gnome.org/svn/tracker/trunk</code></p>
 
 <h3>BUGS!!</h3>
-<p>To report a bug you can use:
+<p>To report a bug you can use:</p>
 <ul>
        <li>the bugzilla on gnome <a 
href="http://bugzilla.gnome.org/browse.cgi?product=tracker";>http://bugzilla.gnome.org/browse.cgi?product=tracker</a></li>
        <li>the Tracker Mailing list <a href="http://mail.gnome.org/mailman/listinfo/tracker-list";>Tracker 
mailing list</a></li>
 </ul>
 
-</p>
-
 <h3>Communication</h3>
 
 <p>
-You can contact us:
+You can contact us:</p>
 <ul>
 <li>Using the Mailing List <a href="http://mail.gnome.org/mailman/listinfo/tracker-list";>Tracker mailing 
list</a></li>
 <li>On IRC: GimpNet, channel #tracker</li>
 </ul>
 
-</p>
-
 <!-- development.php -->
 
 
 <!-- footer.php -->
 
-</br>
-</br>
-
-<address>
-<small>
-January 10, 2007<br>
-Peter Vander Klippe - peter.vk gmail,com
-</small>
-</address>
-
+<div id="footer">
+<hr/>
+<script type="text/javascript" src="js/datemod.js" language="JavaScript"></script>
+<br/>
+Original site designed by Peter Vander Klippe (peter.vk gmail,com)
+</div>
+</div>
 </body>
 </html>
 
Index: style.css
===================================================================
--- style.css   (revision 4934)
+++ style.css   (working copy)
@@ -14,23 +14,37 @@
 */
 
 body {
-    padding-left: 11em;
-    color: black;
-    background-color: #FFFFF0 }
+    margin-left:50px;
+    margin-right:20px;
+    color: black;}
 
+div#navigation {
+       float:left;
+       width:180px;}
 
+div#logo {
+       margin-left:200px;
+       }       
+
+div#content {
+       margin-left:200px;
+       width:800px;    
+       }
+       
+div#footer {
+       font-size: 14px;
+       font-style: italic;
+       text-align: center;
+       clear:both;}
+       
+
 table.tab_class {
        padding: 15;
 }
 
 ul.navbar {
     list-style-type: none;
-    padding: 0;
-    margin: 0;
-    position: absolute;
-    top: 75px;
-    left: 1em;
-    width: 9em }
+    }
 
 
 ul.navbar li.sel {
@@ -70,12 +84,24 @@
     background: #BCC7CF;
     margin: 0.5em 0;
     padding: 0.3em;}
+    
+h3.a {
+       color: black;
+    background: #BCC7CF;
+    margin: 0.5em 0;
+    padding: 0.3em;}
 
 h4 {
        color: black;
        margin-top: 1.5em;
        margin-bottom: 0em;
-    padding: 0.3em;}
+   padding: 0.3em;}
 
-address {
-       text-align: center;}
+img {
+       border:0px;     }
+       
+.example {
+        border: 0.1em solid #142C3B;
+        background: #A2C7DF;
+        padding: 12px; }
+
Index: download.html
===================================================================
--- download.html       (revision 4934)
+++ download.html       (working copy)
@@ -1,36 +1,33 @@
-
-<!-- header.php -->
-
-<html>
+<!DOCTYPE html
+PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+<html xmlns="http://www.w3.org/1999/xhtml";>
 <head>
-<title>Meta Tracker - freedesktop.org - Home Page</title>
-
-<link rel="stylesheet" href="style.css" media="screen">
-
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+<meta name="description" content="Meta Tracker -- tracker-project.org" />
+<title>Meta Tracker - tracker-project.org</title>
+<link type="text/css" rel="stylesheet" href="style.css" media="screen" />
 </head>
 <body>
 
-<!-- header.php -->
-
-
-<!-- navigation.php -->
-
+<div id="logo">
 <img src="images/meta_tracker_logo.png" alt="Meta Tracker"/>
+</div>
 
+<div id="navigation">
 <ul class="navbar">
-  <li onClick="window.location='index.html'"><a href="index.html">About</a></li>
-  <li onClick=" window.location='features.html'"><a href="features.html">Features</a></li>
-  <li onClick=" window.location='start.html'"><a href="start.html">Getting Started</a></li>
-  <li onClick=" window.location='faq.html'"><a href="faq.html">FAQ</a></li>
-  <li onClick=" window.location='screenshots.html'"><a href="screenshots.html">Screenshots</a></li>
-  <li class="sel" onClick=" window.location='download.html'"><a href="download.html">Download</a></li>
-  <li onClick=" window.location='development.html'"><a href="development.html">Development</a></li>
-  <li onClick=" window.location='documentation.html'"><a href="documentation.html">Documentation</a></li>
+  <li ><a href="index.html">About</a></li>
+  <li ><a href="features.html">Features</a></li>
+  <li ><a href="start.html">Getting Started</a></li>
+  <li ><a href="faq.html">FAQ</a></li>
+  <li ><a href="screenshots.html">Screenshots</a></li>
+  <li class="sel" ><a href="download.html">Download</a></li>
+  <li ><a href="development.html">Development</a></li>
+  <li ><a href="documentation.html">Documentation</a></li>
 </ul>
-<!-- navigation.php -->
+</div>
 
-<!-- download.php -->
-
+<div id="content">
 <h2>Download</h2>
 
 <p>
@@ -53,7 +50,7 @@
                <br/><code>"deb http://debs.michaelbiebl.de/ dapper main"</code> for dapper
                
                <br/>If your architeture is !i386 you can use <code>"deb-src http://debs.michaelbiebl.de/ 
dapper main"</code> 
-               <br/>and recompiling yourself using <code>"apt-get build-dep tracker && apt-get source -b 
tracker" </code> 
+               <br/>and recompiling yourself using <code>"apt-get build-dep tracker &amp;&amp; apt-get 
source -b tracker" </code> 
                
 
        </li>
@@ -68,16 +65,14 @@
 
 <!-- footer.php -->
 
-</br>
-</br>
+<div id="footer">
+<hr/>
+<script type="text/javascript" src="js/datemod.js" language="JavaScript"></script>
+<br/>
+Original site designed by Peter Vander Klippe (peter.vk gmail,com)
+</div>
+</div>
 
-<address>
-<small>
-January 11, 2007<br>
-Peter Vander Klippe - peter.vk gmail,com
-</small>
-</address>
-
 </body>
 </html>
 
Index: faq.html
===================================================================
--- faq.html    (revision 4934)
+++ faq.html    (working copy)
@@ -1,37 +1,34 @@
-<p></p>
-<!-- header.php -->
-
-<html>
+<!DOCTYPE html
+PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+<html xmlns="http://www.w3.org/1999/xhtml";>
 <head>
-<title>Meta Tracker - freedesktop.org - Home Page</title>
-
-<link rel="stylesheet" href="style.css" media="screen">
-
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+<meta name="description" content="Meta Tracker -- tracker-project.org" />
+<title>Meta Tracker - tracker-project.org</title>
+<link type="text/css" rel="stylesheet" href="style.css" media="screen" />
 </head>
 <body>
 
-<!-- header.php -->
-
-
-<!-- navigation.php -->
-
+<div id="logo">
 <img src="images/meta_tracker_logo.png" alt="Meta Tracker"/>
+</div>
 
+<div id="navigation">
+
 <ul class="navbar">
-  <li onClick="window.location='index.html'"><a href="index.html">About</a></li>
-  <li onClick=" window.location='features.html'"><a href="features.html">Features</a></li>
-  <li onClick=" window.location='start.html'"><a href="start.html">Getting Started</a></li>
+  <li><a href="index.html">About</a></li>
+  <li ><a href="features.html">Features</a></li>
+  <li ><a href="start.html">Getting Started</a></li>
   <li class="sel" ><a href="faq.html">FAQ</a></li>
-  <li onClick=" window.location='screenshots.html'"><a href="screenshots.html">Screenshots</a></li>
-  <li onClick=" window.location='download.html'"><a href="download.html">Download</a></li>
-  <li onClick=" window.location='development.html'"><a href="development.html">Development</a></li>
-  <li onClick=" window.location='documentation.html'"><a href="documentation.html">Documentation</a></li>
+  <li ><a href="screenshots.html">Screenshots</a></li>
+  <li ><a href="download.html">Download</a></li>
+  <li ><a href="development.html">Development</a></li>
+  <li ><a href="documentation.html">Documentation</a></li>
 </ul>
+</div>
+<div id="content">
 
-<!-- navigation.php -->
-
-<!-- faq.php -->
-
 <h2>FAQ</h2>
 
 <ul>
@@ -43,19 +40,19 @@
 </ul>
 
  
-<h3><a name="1">What is it?</h3>
+<h3><a id="point1">What is it?</a></h3>
 
 <p>Tracker is a first class object database, extensible tag/metadata database, search tool and indexer.</p>
 
 <p>It can trawl through your hard drive and index existing files and data stores.</p>
 
-<h3><a name="2">Is Tracker able to detect different types of files?</h3>
+<h3><a id="point2">Is Tracker able to detect different types of files?</a></h3>
 <p>
 Tracker detects file mime types and further enables you to limit searchs to specific types of files (audio, 
video, text files, etc.).
 </p>
 
 
-<h3><a name="3">Can Tracker index file contents?</h3>
+<h3><a id="point3">Can Tracker index file contents?</a></h3>
 
 
 <p>
@@ -63,29 +60,26 @@
 </p>
 
 
-<h3><a name="5">Is there a GUI?</h3>
+<h3><a id="point5">Is there a GUI?</a></h3>
 
 <p>
 There is a GTK-based GUI known as <code>tracker-search-tool</code> (here's the <a 
href="screenshots.html">screenshots)</a>.
 A QT-based one which is under development and can be downloaded from Tracker's subversion sources.
+There are also other option to search using the tracker engine. Refer to <a 
href="documentation.html">Documentation</a>.
 </p>
 
-<h3><a name="6"> Ok, I want to try it!!</h3>
+<h3><a id="point6"> Ok, I want to try it!!</a></h3>
 <p>Go to the <a href="download.html">Download section</a>.</p>
-<!-- faq.php -->
 
 
-<!-- footer.php -->
-</br>
-</br>
+<div id="footer">
+<hr/>
+<script type="text/javascript" src="js/datemod.js" language="JavaScript"></script>
+<br/>
+Original site designed by Peter Vander Klippe (peter.vk gmail,com)
+</div>
+</div>
 
-<address>
-<small>
-Jan 02, 2007<br>
-Peter Vander Klippe - peter.vk gmail,com
-</small>
-</address>
-
 </body>
 </html>
 <!-- footer.php -->
Index: index.html
===================================================================
--- index.html  (revision 4934)
+++ index.html  (working copy)
@@ -1,95 +1,93 @@
-
-<!-- header.php -->
-
-<html>
+<!DOCTYPE html
+PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+<html xmlns="http://www.w3.org/1999/xhtml";>
 <head>
-<title>Meta Tracker's Home Page</title>
-
-<link rel="stylesheet" href="style.css" media="screen">
-
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+<meta name="description" content="Meta Tracker -- tracker-project.org" />
+<title>Meta Tracker - tracker-project.org</title>
+<link type="text/css" rel="stylesheet" href="style.css" media="screen" />
 </head>
+
 <body>
 
 <!-- header.php -->
 
 <!-- navigation.php -->
 
+<div id="logo">
 <img src="images/meta_tracker_logo.png" alt="Meta Tracker"/>
-
+</div>
+<div id="navigation">
 <ul class="navbar">
-  <li class="sel" onClick="window.location='index.html'"><a href="index.html">About</a></li>
-  <li onClick=" window.location='features.html'"><a href="features.html">Features</a></li>
-  <li onClick=" window.location='start.html'"><a href="start.html">Getting Started</a></li>
-  <li onClick=" window.location='faq.html'"><a href="faq.html">FAQ</a></li>
-  <li onClick=" window.location='screenshots.html'"><a href="screenshots.html">Screenshots</a></li>
-  <li onClick=" window.location='download.html'"><a href="download.html">Download</a></li>
-  <li onClick=" window.location='development.html'"><a href="development.html">Development</a></li>
-  <li onClick=" window.location='documentation.html'"><a href="documentation.html">Documentation</a></li>
+  <li class="sel"><a href="index.html">About</a></li>
+  <li ><a href="features.html">Features</a></li>
+  <li ><a href="start.html">Getting Started</a></li>
+  <li ><a href="faq.html">FAQ</a></li>
+  <li ><a href="screenshots.html">Screenshots</a></li>
+  <li ><a href="download.html">Download</a></li>
+  <li ><a href="development.html">Development</a></li>
+  <li ><a href="documentation.html">Documentation</a></li>
 </ul>
+</div>
 
-<!-- navigation.php -->
+<div id="content">
 
-<!-- index.php -->
-<h3>What is it?</h3>
+<h2>What is it?</h2>
 <p>Tracker is a first class object database, extensible tag/metadata database, search tool and indexer.</p>
 
 <p>It can trawl through your hard drive and index existing files and data stores</p>
 
 <p>It has been designed from the ground up to be very lightweight (the tracker daemon consumes ~4MB of RAM 
in typical use) yet at the same time very fast too.</p>
 
-<p>It provides a comprehensive, persistent and extensible storage system that can store and index almost any 
object. These objects can also have extensible user defined metadata and tags to create rich first class 
objects.
+<p>It provides a comprehensive, persistent and extensible storage system that can store and index almost any 
object. These objects can also have extensible user defined metadata and tags to create rich first class 
objects.</p>
 
 
-<p>First class object support includes:
+<p>First class object support includes:</p>
 
 <table class="tab_class">
-       <tr><td><img src="images/files.png"/></td><td><strong>Files</strong></td></tr>
-       <tr><td><img src="images/docs.png"/></td><td><strong>Documents</strong></td></tr>
-       <tr><td><img src="images/music.png"/></td><td><strong>Music</strong></td></tr>
-       <tr><td><img src="images/images.png"/></td><td><strong>Images</strong></td></tr>
-       <tr><td><img src="images/videos.png"/></td><td><strong>Videos</strong></td></tr>
-       <tr><td><img src="images/text.png"/></td><td><strong>Text Files</strong></td></tr>
-       <tr><td><img src="images/development.png"/></td><td><strong>Development Files</strong></td></tr>
-       <tr><td><img src="images/playlist.png"/></td><td><strong>Playlists*</strong></td></tr>
-       <tr><td><img src="images/notes.png"/></td><td><strong>Notes*</strong></td></tr>
-       <tr><td><img src="images/app.png"/></td><td><strong>Applications*</strong></td></tr>
-       <tr><td><img src="images/contacts.png"/></td><td><strong>People/Contacts*</strong></td></tr>
-       <tr><td><img src="images/email.png"/></td><td><strong>Emails*</strong></td></tr>
-       <tr><td><img src="images/conversation.png"/></td><td><strong>Conversations*</strong></td></tr>
-       <tr><td><img src="images/appointments.png"/></td><td><strong>Appointments*</strong></td></tr>
-       <tr><td><img src="images/tasks.png"/></td><td><strong>Tasks*</strong></td></tr>
-       <tr><td><img src="images/bookmark.png"/></td><td><strong>Bookmarks and History*</strong></td></tr>
-       <tr><td><img src="images/projects.png"/></td><td><strong>Projects*</strong></td></tr>
+       <tr><td><img alt="files" src="images/files.png"/></td><td><strong>Files</strong></td></tr>
+       <tr><td><img alt="documents" src="images/docs.png"/></td><td><strong>Documents</strong></td></tr>
+       <tr><td><img alt="music" src="images/music.png"/></td><td><strong>Music</strong></td></tr>
+       <tr><td><img alt="images" src="images/images.png"/></td><td><strong>Images</strong></td></tr>
+       <tr><td><img alt="videos" src="images/videos.png"/></td><td><strong>Videos</strong></td></tr>
+       <tr><td><img alt="text" src="images/text.png"/></td><td><strong>Text Files</strong></td></tr>
+       <tr><td><img alt="developmentfiles" src="images/development.png"/></td><td><strong>Development 
Files</strong></td></tr>
+       <tr><td><img alt="playlist" src="images/playlist.png"/></td><td><strong>Playlists*</strong></td></tr>
+       <tr><td><img alt="notes" src="images/notes.png"/></td><td><strong>Notes*</strong></td></tr>
+       <tr><td><img alt="application" src="images/app.png"/></td><td><strong>Applications*</strong></td></tr>
+       <tr><td><img alt="contacts" 
src="images/contacts.png"/></td><td><strong>People/Contacts*</strong></td></tr>
+       <tr><td><img alt="emails" src="images/email.png"/></td><td><strong>Emails*</strong></td></tr>
+       <tr><td><img alt="conversation" 
src="images/conversation.png"/></td><td><strong>Conversations*</strong></td></tr>
+       <tr><td><img alt="appointments" 
src="images/appointments.png"/></td><td><strong>Appointments*</strong></td></tr>
+       <tr><td><img alt="tasks" src="images/tasks.png"/></td><td><strong>Tasks*</strong></td></tr>
+       <tr><td><img alt="bookmarks" src="images/bookmark.png"/></td><td><strong>Bookmarks and 
History*</strong></td></tr>
+       <tr><td><img alt="project" src="images/projects.png"/></td><td><strong>Projects*</strong></td></tr>
 </table>
-</p>
+
 <p><small>(* these services are not currently indexed at the moment but will be in later 
versions)</small></p>
 
 <h3> Use Cases </h3>
-Tracker is the most powerful open source metadata database and indexer framework currently available and 
because it is based on a combination database/indexer it has very powerful use cases and can go much farther 
than most of the dedicated indexers.
+<p>Tracker is the most powerful open source metadata database and indexer framework currently available and 
because it is based on a combination database/indexer it has very powerful use cases and can go much farther 
than most of the dedicated indexers.</p>
 
 <ul>
-       <li/>Provide search and indexing facilities similiar to those on other systems
-       <li/>Common database storage for all first class objects (EG a common 
music/photo/contacts/email/bookmarks/history database) complete with additional metadata and tags/keywords
-       <li/>Comprehensive one stop solution for all applications needing an object database, powerful search 
(via RDF Query), first class methods, related metadata and user definable metadata/tags
-       <li/>Can provide a full semantic desktop with metadata everywhere
-       <li/>Can remove the pain of hierarchical file directories and enables flat views of files of a 
certain service or Mime types
-       <li/>Can provide powerful criteria based searching suitable for creating smart file dialogs and 
vfolder systems
-       <li/>Can provide a more intelligent desktop using statistical metadata
-       <li/>Removes the need for multiple incompatible databases throughout the platform as Tracker's 
Database can normally do the job better and more efficiently
+       <li>Provide search and indexing facilities similiar to those on other systems</li>
+       <li>Common database storage for all first class objects (EG a common 
music/photo/contacts/email/bookmarks/history database) complete with additional metadata and 
tags/keywords</li>
+       <li>Comprehensive one stop solution for all applications needing an object database, powerful search 
(via RDF Query), first class methods, related metadata and user definable metadata/tags</li>
+       <li>Can provide a full semantic desktop with metadata everywhere</li>
+       <li>Can remove the pain of hierarchical file directories and enables flat views of files of a certain 
service or Mime types</li>
+       <li>Can provide powerful criteria based searching suitable for creating smart file dialogs and 
vfolder systems</li>
+       <li>Can provide a more intelligent desktop using statistical metadata</li>
+       <li>Removes the need for multiple incompatible databases throughout the platform as Tracker's 
Database can normally do the job better and more efficiently</li>
 </ul>
-<!-- index.php -->
 
-
-<!-- footer.php -->
-
-</br>
-</br>
-<hr>
-<address>
-<small>
+<div id="footer">
+<hr/>
+<script type="text/javascript" src="js/datemod.js" language="JavaScript"></script>
+<br/>
 Original site designed by Peter Vander Klippe (peter.vk gmail,com)
-</small>
-</address>
+</div>
+</div>
 
 </body>
 </html>
Index: documentation.html
===================================================================
--- documentation.html  (revision 4934)
+++ documentation.html  (working copy)
@@ -1,59 +1,92 @@
-
-<!-- header.php -->
-
-<html>
+<!DOCTYPE html
+PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
+<html xmlns="http://www.w3.org/1999/xhtml";>
 <head>
-<title>Meta Tracker - freedesktop.org - Home Page</title>
-
-<link rel="stylesheet" href="style.css" media="screen">
-
+<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
+<meta name="description" content="Meta Tracker -- tracker-project.org" />
+<title>Meta Tracker - tracker-project.org</title>
+<link type="text/css" rel="stylesheet" href="style.css" media="screen" />
 </head>
 <body>
 
-<!-- header.php -->
+<div id="logo">
+<img src="images/meta_tracker_logo.png" alt="Meta Tracker"/>
+</div>
 
+<div id="navigation">
+<ul class="navbar">
+  <li> <a href="index.html">About</a></li>
+  <li> <a href="features.html">Features</a></li>
+  <li> <a href="start.html">Getting Started</a></li>
+  <li> <a href="faq.html">FAQ</a></li>
+  <li> <a href="screenshots.html">Screenshots</a></li>
+  <li> <a href="download.html">Download</a></li>
+  <li> <a href="development.html">Development</a></li>
+  <li class="sel"> <a href="documentation.html">Documentation</a></li>
+</ul>
+</div>
 <!-- navigation.php -->
 
-<img src="images/meta_tracker_logo.png" alt="Meta Tracker"/>
+<div id="content">
+<h2>Documentation</h2>
+<p>For a quickstart in how to install and run tracker read <a href="start.html">here</a>.</p>
+<p>For tuning how you tracker is indexing just keep on reading :) .</p>
+<p><em>Tracker is under an hard development that's why we are going to cover only some of the 
configurations.</em></p>
 
-<ul class="navbar">
-  <li onClick="window.location='index.html'"><a href="index.html">About</a></li>
-  <li onClick=" window.location='features.html'"><a href="features.html">Features</a></li>
-  <li onClick=" window.location='start.html'"><a href="start.html">Getting Started</a></li>
-  <li onClick=" window.location='faq.html'"><a href="faq.html">FAQ</a></li>
-  <li onClick=" window.location='screenshots.html'"><a href="screenshots.html">Screenshots</a></li>
-  <li onClick=" window.location='download.html'"><a href="download.html">Download</a></li>
-  <li onClick=" window.location='development.html'"><a href="development.html">Development</a></li>
-  <li  class="sel" onClick=" window.location='documentation.html'"><a 
href="documentation.html">Documentation</a></li>
+<h3>Choose what to index!!!</h3>
+<p> You can configure the behavior of tracker using the configuration file : 
<code>~/.Tracker/tracker.cfg</code>.</p>
+<p>List all the directory that you want to index in the <strong>WatchDirectoryRoots</strong> field separated 
by a semicolon.</p>
+<p><em>Default is set to your home directory.</em></p>
+
+<div class="example">
+ 
+WatchDirectoryRoots=/path/to/directory_1;/path/to/directory_2</div>
+
+<p> List of directory roots to not index and not watch seperated by semicolons in the 
<strong>NoWatchDirectory</strong></p>
+<p><em>Default is not set</em></p>
+
+<div class="example">
+NoWatchDirectory=/path/to/directory_to_NOT_index_1;/path/to/directory_to_NOT_index_2</div>
+
+<h3>Other ways to search using the tracker engine:</h3>
+
+<h4>Nautilus integration</h4>
+
+<p>Nautilus 2.14 packages with Tracker support:</p>
+
+<ul>
+       <li>
+               Deb (Ubuntu) : <a 
href="http://gnome.org/~jamiemcc/tracker/DEB/nautilus_2.14.1-0ubuntu9tracker1_i386.deb";>http://gnome.org/~jamiemcc/tracker/DEB/nautilus_2.14.1-0ubuntu9tracker1_i386.deb</a>
 
+       </li>
+       <li><a 
href="http://www.gnome.org/~jamiemcc/tracker/DEB/Edgy/nautilus_2.16.1-0ubuntu3tracker1_i386.deb";>http://www.gnome.org/~jamiemcc/tracker/DEB/Edgy/nautilus_2.16.1-0ubuntu3tracker1_i386.deb</a></li>
+
 </ul>
 
-<!-- navigation.php -->
+<h4>Deskbar</h4>
 
-<!-- roadmap.php -->
-<p>
-<p>Under construction!
-<p>...
-<p>...
-<p>...
-<p>...
-<p>...
-<p>...
-<p>...
-<p>...
-<p>...
-<p>...
-<!-- footer.php -->
-<p>
-</br>
-</br>
+<p>Deskbar 2.14 packages with Tracker support:</p>
 
-<address>
-<small>
-July 19, 2006<br>
-Peter Vander Klippe - peter.vk gmail,com
-</small>
-</address>
+<ul>
+       <li>
 
+               Deb (Ubuntu) : <a 
href="http://www.madman2k.net/files/deskbar-applet_2.14.2-0ubuntu1tracker1_i386.deb";>http://www.madman2k.net/files/deskbar-applet_2.14.2-0ubuntu1tracker1_i386.deb</a>
 
+
+       </li>
+</ul>
+
+<h4>QT Gui</h4>
+
+<p>Coming soon!!</p>
+<!-- footer -->
+
+<div id="footer">
+<hr/>
+<script type="text/javascript" src="js/datemod.js" language="JavaScript"></script>
+<br/>
+Original site designed by Peter Vander Klippe (peter.vk gmail,com)
+</div>
+</div>
 </body>
 </html>
 
Index: js/datemod.js
===================================================================
--- js/datemod.js       (revision 0)
+++ js/datemod.js       (revision 0)
@@ -0,0 +1,10 @@
+// Formatted last-modified date
+// Using the javascript to do in a smart way
+if (Date.parse(document.lastModified) != 0) {
+  var modiDate = new Date(document.lastModified);
+  var monthName = new Array("January", "February", "March", "April", "May", 
+   "June", "July", "August", "September", "October", "November", "December");
+  document.write("Last modified: " + monthName[modiDate.getMonth()] + " ");
+  document.write(modiDate.getDate() + ", " + modiDate.getFullYear());
+  }
+  
\ No newline at end of file


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]