Ok, yet another website patch. Cleaned up CSS file: - 4-space indented with consistent formatting. - Removed margins from body so page will display properly on 1024x768 - changed .example to .terminal and added further styling
Updated start page: - more comprehensive install-from-source directions - updated for new css (.terminal) Updated download page: - Better organization between different distros packages - updated for new css (.terminal) Updated development page: - added link for viewcvs svn interface - updated for new css (.terminal) Updated documentation page: - updated for new css (.terminal)
Index: start.html =================================================================== --- start.html (revision 4983) +++ start.html (working copy) @@ -33,12 +33,32 @@ <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 --prefix=/usr</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> + <li> + Download the latest source tarball from the <a href="download.html">download</a> page + </li> + <li> + Extract the tarball <em>(where x.y.z is the version number)</em><br/> + <div class="terminal">tar xvzf tracker-x.y.z.tar.gz</div> + </li> + <li> + Change to tracker source directory<br/> + <div class="terminal">cd tracker-x.y.z</div> + </li> + <li> + Configure the make process<br/> + <div class="terminal">./configure --prefix=/usr</div> + </li> + <li> + Compile the code<br/> + <div class="terminal">make</div> + </li> + <li> + Install the software<br/> + <div class="terminal">sudo make install</div><br/> + OR<br/> + <div class="terminal">sudo checkinstall</div><br/> + Run as root if you do not use sudo + </li> </ol> <h4>Installing using packages</h4> @@ -56,17 +76,18 @@ <p>As example we write how to install using a Debian/Ubuntu system <ul> - <li><code>apt-get install tracker tracker-utils</code> to install the indexer and the command line</li> - <li><code>apt-get install tracker tracker-utils tracker-search-tool libdeskbar-tracker</code> to install the Gnome GUI and the deskbar handler.</li> + <li><div class="terminal">apt-get install tracker tracker-utils</div> to install the indexer and the command line</li> + <li><div class="terminal">apt-get install tracker tracker-utils tracker-search-tool libdeskbar-tracker</div> to install the Gnome GUI and the deskbar handler.</li> </ul> <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 run tracker simply run <div class="terminal">trackerd &</div></p> +<p><strong>Tracker is indexing your home directory by default</strong></p> +<p>To get a view of what Tracker is doing run <div class="terminal">tail ~/.Tracker/logfile</div></p> <p>To search you can use :</p> <ul> - <li>the command line <code>tracker-search</code></li> - <li>the tracker-search-tool <code>tracker-search-tool</code> <em>(If you have installed the relevant package)</em></li> + <li>the command line <div class="terminal">tracker-search</div></li> + <li>the tracker-search-tool <div class="terminal">tracker-search-tool</div> <em>(If you have installed the relevant package)</em></li> </ul> <p>For more information in how configure tracker read the README file or refer to <a href="documentation.html">Documentation</a>.</p> Index: development.html =================================================================== --- development.html (revision 4983) +++ development.html (working copy) @@ -36,7 +36,8 @@ <h3>Hacking</h3> <p>Retrieve current development code with the following command:</p> -<p><code>svn checkout http://svn.gnome.org/svn/tracker/trunk</code></p> +<p><div class="terminal">svn checkout http://svn.gnome.org/svn/tracker/trunk</div></p> +<p>ViewCVS web interface for svn: <a href="http://svn.gnome.org/viewcvs/tracker/">http://svn.gnome.org/viewcvs/tracker/</a> <p>If you want to write a 3rd Party Application using tracker, but you have question in how to do it just jump in in the IRC channel for now. Tutorials and Documentation are coming soon.</p> Index: style.css =================================================================== --- style.css (revision 4983) +++ style.css (working copy) @@ -1,10 +1,5 @@ /* -Initial Style sheet Copyright 2006 by Peter Vander Klippe -Free to modify and redistribute as long as credit is given -*/ -/* - New Freedesktop colors: #747474 - Background #A2C7DF - Lightest @@ -14,35 +9,36 @@ */ body { - margin-left:50px; - margin-right:20px; color: black; - background-color: rgb(255, 255, 240);} + background-color: rgb(255, 255, 240); + } div#navigation { - float:left; - width:180px;} + float:left; + width:160px; + } div#logo { - margin-left:200px; - } + margin-left:180px; + } div#content { - margin-left:200px; - width:800px; - } + margin-left:180px; + width:800px; + } div#footer { - font-style: italic; - text-align: center; - font-size: small; - color: grey; - clear:both;} + font-style: italic; + text-align: center; + font-size: small; + color: grey; + clear:both; + } table.tab_class { - padding: 15; -} + padding: 15; + } ul.navbar { width:150px; @@ -52,84 +48,86 @@ } ul.navbar li a { - display:block; - text-decoration:none; + display:block; + text-decoration:none; + padding: 0.3em; + height:1.5em; + line-height:1.5em; + border-top: 0.1em solid black; + border-bottom: 0.1em solid black; + border-left: 0.1em solid black; + border-right: 0.1em solid black; + } - padding: 0.3em; - height:1.5em; - line-height:1.5em; - border-top: 0.1em solid black; - border-bottom: 0.1em solid black; - border-left: 0.1em solid black; - border-right: 0.1em solid black; - } +ul.navbar li { + margin-top:10px; + } - ul.navbar li { - - margin-top:10px; - } - ul.navbar li a:hover, ul.navbar li a:active { - background: orange; - } + background: orange; + } - ul.navbar li.sel { - background: orange; - border-top: 0.1em solid black; - border-bottom: 0.1em solid black; - border-left: 0.1em solid black; - border-right: 0.1em solid black; -} -/* -ul.navbar li { - background: #FFFFF0; - margin: 0.5em 0; - padding: 0.3em; + background: orange; border-top: 0.1em solid black; border-bottom: 0.1em solid black; border-left: 0.1em solid black; border-right: 0.1em solid black; -} - -*/ + } ul.navbar a { - color: black; - text-decoration: none } + color: black; + text-decoration: none; + } - - h2 { - color: #142C3B; + color: #142C3B; background: #65B6FF; margin: 0.5em 0; - padding: 0.4em;} + padding: 0.4em; + } h3 { - color: black; + color: black; background: #BCC7CF; margin: 0.5em 0; - padding: 0.3em;} + padding: 0.3em; + } h3.a { - color: black; + color: black; background: #BCC7CF; margin: 0.5em 0; - padding: 0.3em;} + padding: 0.3em; + } h4 { - color: black; - border: 2px #9F9BBF solid; - margin-top: 1.5em; - margin-bottom: 0.5em; - padding: 0.3em;} + color: black; + border: 2px #9F9BBF solid; + margin-top: 1.5em; + margin-bottom: 0.5em; + padding: 0.3em; + } img { - border:0px; } + border:0px; + } .example { - border: 0.1em solid #142C3B; - background: #A2C7DF; - padding: 12px; } - + border: 0.1em solid #142C3B; + background: black; + color: white; + padding: 6px; + font-family: monospace; + margin-left:12px; + margin-right:12px; + } + +.terminal { + border: 0.1em solid #142C3B; + background: black; + color: white; + padding: 6px; + font-family: monospace; + margin:10px; + } Index: download.html =================================================================== --- download.html (revision 4983) +++ download.html (working copy) @@ -35,42 +35,47 @@ <p>Here is the latest stable release for Tracker.</p> <p>Note that the deb's and the rpm's may be outdated.</p> -<ul> - <li> - <p> - <strong>Tarball</strong> : <a href="http://www.gnome.org/~jamiemcc/tracker/tracker-0.5.4.tar.gz">http://www.gnome.org/~jamiemcc/tracker/tracker-0.5.4.tar.gz</a> - </p> - </li> - <li><p> - <strong>Debian</strong> : experimental debian repo can be found at : <code>"deb http://debs.michaelbiebl.de/ unstable main"</code> - </p></li> - <li> - <strong>Ubuntu</strong> : - <ul> - <li><p> - Feisty : Tracker is in the universe. </p> - <li> - <p>Edgy: repo <code>"deb http://debs.michaelbiebl.de/ edgy main"</code></p> - </li> - <li> - <p>Dappper: repo <code>"deb http://debs.michaelbiebl.de/ dapper main"</code></p> - </li> - </ul> -</ul> +<h4>Tarball</h4> +<a href="http://www.gnome.org/~jamiemcc/tracker/tracker-0.5.4.tar.gz">http://www.gnome.org/~jamiemcc/tracker/tracker-0.5.4.tar.gz</a> - <p>If your architeture is not 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></p> - -<ul> - <li> - <p><strong>RPM (FC5/FC6)</strong>: Can now be found in Fedora Extras</p> +<h4>Debian i386</h4> +Experimental debian repo can be found at: +<div class="terminal">deb http://debs.michaelbiebl.de/ unstable main</div> + +<h4>Ubuntu i386</h4> +<ul> + <li> + <p>Feisty 7.04: Tracker is in the universe. </p> </li> <li> - <p><strong>Gentoo</strong>: Tracker is in portage just <code>emerge tracker</code> to install it</p> - </li> + <p>Edgy 6.10: repo <div class="terminal">deb http://debs.michaelbiebl.de/ edgy main</div></p> + </li> + <li> + <p>Dappper 6.06: repo <div class="terminal">deb http://debs.michaelbiebl.de/ dapper main</div></p> + </li> </ul> +<h4>Debian Based Distro or non i386 Debian and Ubuntu</h4> +Add the following to your /etc/apt/sources.list: + <div class="terminal"> + deb-src http://debs.michaelbiebl.de/ dapper main + </div> +Download the build-dependancies + <div class="terminal"> + sudo apt-get build-dep tracker + </div> +Compile the software: + <div class="terminal"> + sudo apt-get source -b tracker + </div> +</p> + +<h4>Fedora 5 & 6</h4> +Install from Fedora Extras</p> +<h4>Gentoo</h4> +Tracker is now included in portage. To install, run:<div class="terminal">emerge tracker</div> + <div id="footer"> <hr/> <script type="text/javascript" src="js/datemod.js" language="JavaScript"></script> Index: documentation.html =================================================================== --- documentation.html (revision 4983) +++ documentation.html (working copy) @@ -41,15 +41,16 @@ <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> +<div class="terminal"> +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> +<div class="terminal"> +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>
_______________________________________________ tracker-list mailing list tracker-list@gnome.org http://mail.gnome.org/mailman/listinfo/tracker-list