slitaz-dev-tools rev 276

Hg style: start migration to new theme (made with love for you guys :-)
author Christophe Lincoln <pankso@slitaz.org>
date Wed Mar 01 15:21:46 2017 +0100 (2017-03-01)
parents 0b423b5392bc
children 35f40719ec56
files slitaz-mercurial-style/README slitaz-mercurial-style/hgweb.cgi slitaz-mercurial-style/templates/slitaz/changeset.tmpl slitaz-mercurial-style/templates/slitaz/filelog.tmpl slitaz-mercurial-style/templates/slitaz/filerevision.tmpl slitaz-mercurial-style/templates/slitaz/header.tmpl slitaz-mercurial-style/templates/slitaz/index.tmpl slitaz-mercurial-style/templates/slitaz/manifest.tmpl slitaz-mercurial-style/templates/slitaz/search.tmpl slitaz-mercurial-style/templates/slitaz/shortlog.tmpl slitaz-mercurial-style/templates/slitaz/summary.tmpl slitaz-mercurial-style/templates/static/coal-file.png slitaz-mercurial-style/templates/static/images/development.png slitaz-mercurial-style/templates/static/images/network.png slitaz-mercurial-style/templates/static/style-slitaz.css
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/slitaz-mercurial-style/README	Wed Mar 01 15:21:46 2017 +0100
     1.3 @@ -0,0 +1,26 @@
     1.4 +README for slitaz-mercurial-style
     1.5 +================================================================================
     1.6 +
     1.7 +This the template for our so famous and so used Hg repositories.
     1.8 +
     1.9 +Install: /usr/lib/python2.7/site-packages/mercurial/templates/slitaz
    1.10 +
    1.11 +To work on it you need hgweb.cgi with it config file, Lighttpd with
    1.12 +CGI Python support.
    1.13 +
    1.14 +To use it localy you can install the package: slitaz-mercurial-style
    1.15 +and use a config file that look like that:
    1.16 +
    1.17 +--------------------------------------------------------------------------------
    1.18 +# hgweb.config - Hg web interface configuration
    1.19 +#
    1.20 +
    1.21 +[collections]
    1.22 +/home/pankso/Projects = /home/pankso/Projects
    1.23 +
    1.24 +[web]
    1.25 +style = slitaz
    1.26 +allow_archive = gz bz2
    1.27 +baseurl = /
    1.28 +
    1.29 +--------------------------------------------------------------------------------
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/slitaz-mercurial-style/hgweb.cgi	Wed Mar 01 15:21:46 2017 +0100
     2.3 @@ -0,0 +1,19 @@
     2.4 +#!/usr/bin/env python
     2.5 +#
     2.6 +# An example hgweb CGI script, edit as necessary
     2.7 +# See also https://mercurial-scm.org/wiki/PublishingRepositories
     2.8 +
     2.9 +# Path to repo or hgweb config to serve (see 'hg help hgweb')
    2.10 +config = "hgweb.config"
    2.11 +
    2.12 +# Uncomment and adjust if Mercurial is not installed system-wide
    2.13 +# (consult "installed modules" path from 'hg debuginstall'):
    2.14 +#import sys; sys.path.insert(0, "/path/to/python/lib")
    2.15 +
    2.16 +# Uncomment to send python tracebacks to the browser if an error occurs:
    2.17 +#import cgitb; cgitb.enable()
    2.18 +
    2.19 +from mercurial import demandimport; demandimport.enable()
    2.20 +from mercurial.hgweb import hgweb, wsgicgi
    2.21 +application = hgweb(config)
    2.22 +wsgicgi.launch(application)
     3.1 --- a/slitaz-mercurial-style/templates/slitaz/changeset.tmpl	Tue Feb 28 22:36:16 2017 +0000
     3.2 +++ b/slitaz-mercurial-style/templates/slitaz/changeset.tmpl	Wed Mar 01 15:21:46 2017 +0100
     3.3 @@ -20,48 +20,29 @@
     3.4  	<h1><a href="http://hg.slitaz.org/">SliTaz Repositories</a></h1>
     3.5  </div>
     3.6  
     3.7 -<!-- Block -->
     3.8 -<div id="block">
     3.9 -	<!-- Navigation -->
    3.10 -	<div id="block_nav">
    3.11 -		<h4>Navigation</h4>
    3.12 -		<div class="right_box">
    3.13 -			<ul>
    3.14 -				<li>Changeset</li>
    3.15 -				<li><a href="{url}file/{node|short}{sessionvars%urlparameter}">Browse</a></li>
    3.16 -				<li><a href="{url}raw-rev/{node|short}{sessionvars%urlparameter}">Raw</a></li>
    3.17 -			</ul>
    3.18 -		</div>
    3.19 -		<div class="left_box">
    3.20 -			<ul>
    3.21 -				<li><a href="{url}summary{sessionvars%urlparameter}">Summary</a></li>
    3.22 -				<li><a href="{url}shortlog/{node|short}{sessionvars%urlparameter}">Changelog</a></li>
    3.23 -				<li><a href="{url}graph/{node|short}{sessionvars%urlparameter}">Graph</a></li>
    3.24 -				<li><a href="{url}tags{sessionvars%urlparameter}">Tags</a></li>
    3.25 -				<li><a href="{url}branches{sessionvars%urlparameter}">Branches</a></li>
    3.26 -			</ul>
    3.27 -		</div>
    3.28 -	</div>
    3.29 -	<!-- Information/image -->
    3.30 -	<div id="block_info">
    3.31 -		<h4>Project: {repo|escape}</h4>
    3.32 -		<p>
    3.33 -			Clone project: hg clone http://hg.slitaz.org/{repo|escape}
    3.34 -		</p>
    3.35 -		<div id="tarball">
    3.36 -			<ul>
    3.37 -				<li>Download tarball:</li>
    3.38 -				{archives%archiveentry}
    3.39 -			</ul>
    3.40 -		</div>
    3.41 -		<h4>Search</h4>
    3.42 -		<form class="search" action="{url}log">
    3.43 -			{sessionvars%hiddenformentry}
    3.44 -			<p><input name="rev" id="search1" type="text" /></p>
    3.45 -			<div id="hint">find changesets by author, revision,
    3.46 -			files, or words in the commit message</div>
    3.47 -		</form>
    3.48 -	</div>
    3.49 +<!-- Navigation -->
    3.50 +<nav id="nav" role="navigation" tabindex="0">
    3.51 +	<ul>
    3.52 +		<li><a class="nav2" href="{url}summary{sessionvars%urlparameter}">Summary</a></li>
    3.53 +		<li><a class="nav1" href="{url}log{sessionvars%urlparameter}">Changelog</a></li>
    3.54 +		<li><a class="nav2" href="{url}rev/{node|short}{sessionvars%urlparameter}">Changeset</a></li>
    3.55 +		<li><a class="nav1" href="{url}graph/{node|short}{sessionvars%urlparameter}">Graph</a></li>
    3.56 +		<li><a class="nav2" href="{url}file/{node|short}{path|urlescape}{sessionvars%urlparameter}">Browse</a></li>
    3.57 +	</ul>
    3.58 +	<p>
    3.59 +		Repo: <span class="repo">{repo|escape}</span> &#8594;
    3.60 +		Download: <a href="{url}raw-rev/{node|short}{sessionvars%urlparameter}">diff</a> -
    3.61 +		Changeset: <span class="value">{node|short}</span>
    3.62 +		<br />
    3.63 +		<span id="repo-desc">{desc}</span>
    3.64 +	</p>
    3.65 +</nav>
    3.66 +
    3.67 +<div id="hgsearch">
    3.68 +	<form class="search" action="{url}log">
    3.69 +	{sessionvars%hiddenformentry}
    3.70 +	<input name="rev" id="search1" type="text" placeholder="Search" />
    3.71 +	</form>
    3.72  </div>
    3.73  
    3.74  <!-- Content -->
     4.1 --- a/slitaz-mercurial-style/templates/slitaz/filelog.tmpl	Tue Feb 28 22:36:16 2017 +0000
     4.2 +++ b/slitaz-mercurial-style/templates/slitaz/filelog.tmpl	Wed Mar 01 15:21:46 2017 +0100
     4.3 @@ -16,7 +16,6 @@
     4.4  		<a href="http://doc.slitaz.org/">Doc</a>
     4.5  		<a href="http://forum.slitaz.org/">Forum</a>
     4.6  		<a href="http://irc.slitaz.org/">IRC</a>
     4.7 -		<a href="http://pro.slitaz.org/">Pro</a>
     4.8  		<a href="http://bugs.slitaz.org">Bugs</a>
     4.9  		<span>Hg</span>
    4.10  		<a href="http://cook.slitaz.org/">Cook</a>
    4.11 @@ -24,6 +23,18 @@
    4.12  	<h1><a href="http://hg.slitaz.org/">SliTaz Repositories</a></h1>
    4.13  </div>
    4.14  
    4.15 +<nav id="nav" role="navigation" tabindex="0">
    4.16 +	<ul>
    4.17 +		<li><a class="nav2" href="http://www.slitaz.org/en/devel/">Devel Doc</a></li>
    4.18 +		<li><a class="nav1" href="http://tank.slitaz.org/">Main Mirror</a></li>
    4.19 +		<li><a class="nav2" href="http://pkgs.slitaz.org/">Packages</a></li>
    4.20 +		<li><a class="nav1" href="http://people.slitaz.org/">People</a></li>
    4.21 +	</ul>
    4.22 +	<p>
    4.23 +		Real time improvements, fixes and goodies from SliTaz contributors
    4.24 +	</p>
    4.25 +</nav>
    4.26 +
    4.27  <!-- Block -->
    4.28  <div id="block">
    4.29  	<!-- Navigation -->
     5.1 --- a/slitaz-mercurial-style/templates/slitaz/filerevision.tmpl	Tue Feb 28 22:36:16 2017 +0000
     5.2 +++ b/slitaz-mercurial-style/templates/slitaz/filerevision.tmpl	Wed Mar 01 15:21:46 2017 +0100
     5.3 @@ -12,7 +12,6 @@
     5.4  		<a href="http://doc.slitaz.org/">Doc</a>
     5.5  		<a href="http://forum.slitaz.org/">Forum</a>
     5.6  		<a href="http://irc.slitaz.org/">IRC</a>
     5.7 -		<a href="http://pro.slitaz.org/">Pro</a>
     5.8  		<a href="http://bugs.slitaz.org">Bugs</a>
     5.9  		<span>Hg</span>
    5.10  		<a href="http://cook.slitaz.org/">Cook</a>
     6.1 --- a/slitaz-mercurial-style/templates/slitaz/header.tmpl	Tue Feb 28 22:36:16 2017 +0000
     6.2 +++ b/slitaz-mercurial-style/templates/slitaz/header.tmpl	Wed Mar 01 15:21:46 2017 +0100
     6.3 @@ -1,8 +1,7 @@
     6.4 -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
     6.5 -	"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
     6.6 -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
     6.7 +<!DOCTYPE html>
     6.8 +<html lang="en">
     6.9  <head>
    6.10 -	<meta http-equiv="content-type" content="text/html; charset=utf-8" />
    6.11 +	<meta charset="utf-8" />
    6.12  	<meta name="robots" content="index, nofollow" />
    6.13  	<link rel="icon" href="{staticurl}favicon.ico" type="image/ico" />
    6.14  	<link rel="stylesheet" href="{staticurl}style-slitaz.css" type="text/css" />
     7.1 --- a/slitaz-mercurial-style/templates/slitaz/index.tmpl	Tue Feb 28 22:36:16 2017 +0000
     7.2 +++ b/slitaz-mercurial-style/templates/slitaz/index.tmpl	Wed Mar 01 15:21:46 2017 +0100
     7.3 @@ -12,7 +12,6 @@
     7.4  		<a href="http://doc.slitaz.org/">Doc</a>
     7.5  		<a href="http://forum.slitaz.org/">Forum</a>
     7.6  		<a href="http://irc.slitaz.org/">IRC</a>
     7.7 -		<a href="http://pro.slitaz.org/">Pro</a>
     7.8  		<a href="http://bugs.slitaz.org">Bugs</a>
     7.9  		<span>Hg</span>
    7.10  		<a href="http://cook.slitaz.org/">Cook</a>
    7.11 @@ -20,37 +19,17 @@
    7.12  	<h1><a href="http://hg.slitaz.org/">SliTaz Repositories</a></h1>
    7.13  </div>
    7.14  
    7.15 -<!-- Block -->
    7.16 -<div id="block">
    7.17 -	<!-- Navigation -->
    7.18 -	<div id="block_nav">
    7.19 -		<h4>Developers corner</h4>
    7.20 -		<div class="right_box">
    7.21 -			<ul>
    7.22 -				<li><a href="http://tank.slitaz.org/">Tank Server</a></li>
    7.23 -				<li><a href="http://mirror.slitaz.org/">Main Mirror</a></li>
    7.24 -			</ul>
    7.25 -		</div>
    7.26 -		<div class="left_box">
    7.27 -			<ul>
    7.28 -				<li><a href="http://www.slitaz.org/en/devel/">Devel Doc</a></li>
    7.29 -				<li><a href="http://people.slitaz.org/">SliTaz People</a></li>
    7.30 -				<li><a href="http://pkgs.slitaz.org/">Packages</a></li>
    7.31 -			</ul>
    7.32 -		</div>
    7.33 -	</div>
    7.34 -	<!-- Information/image -->
    7.35 -	<div id="block_info">
    7.36 -		<h4>Mercurial Repos</h4>
    7.37 -		<p>
    7.38 -			This web interface lets you follow in real time all 
    7.39 -			improvements, fixes and other changes made by SliTaz 
    7.40 -			GNU/Linux contributors. Latest commits to the Cooking wok
    7.41 -			are on the SliTaz <a href="http://www.slitaz.org/">website</a>
    7.42 -			and <a href="http://scn.slitaz.org/">SCN</a>.
    7.43 -		</p>
    7.44 -	</div>
    7.45 -</div>
    7.46 +<nav id="nav" role="navigation" tabindex="0">
    7.47 +	<ul>
    7.48 +		<li><a class="nav2" href="http://www.slitaz.org/en/devel/">Devel Doc</a></li>
    7.49 +		<li><a class="nav1" href="http://tank.slitaz.org/">Main Mirror</a></li>
    7.50 +		<li><a class="nav2" href="http://pkgs.slitaz.org/">Packages</a></li>
    7.51 +		<li><a class="nav1" href="http://people.slitaz.org/">People</a></li>
    7.52 +	</ul>
    7.53 +	<p>
    7.54 +		Real time improvements, fixes and goodies from SliTaz contributors
    7.55 +	</p>
    7.56 +</nav>
    7.57  
    7.58  <!-- Content -->
    7.59  <div id="content">
     8.1 --- a/slitaz-mercurial-style/templates/slitaz/manifest.tmpl	Tue Feb 28 22:36:16 2017 +0000
     8.2 +++ b/slitaz-mercurial-style/templates/slitaz/manifest.tmpl	Wed Mar 01 15:21:46 2017 +0100
     8.3 @@ -12,7 +12,6 @@
     8.4  		<a href="http://doc.slitaz.org/">Doc</a>
     8.5  		<a href="http://forum.slitaz.org/">Forum</a>
     8.6  		<a href="http://irc.slitaz.org/">IRC</a>
     8.7 -		<a href="http://pro.slitaz.org/">Pro</a>
     8.8  		<a href="http://bugs.slitaz.org">Bugs</a>
     8.9  		<span>Hg</span>
    8.10  		<a href="http://cook.slitaz.org/">Cook</a>
    8.11 @@ -20,54 +19,38 @@
    8.12  	<h1><a href="http://hg.slitaz.org/">SliTaz Repositories</a></h1>
    8.13  </div>
    8.14  
    8.15 -<!-- Block -->
    8.16 -<div id="block">
    8.17 -	<!-- Navigation -->
    8.18 -	<div id="block_nav">
    8.19 -		<h4>Navigation</h4>
    8.20 -		<div class="right_box">
    8.21 -			<ul>
    8.22 -				<li><a href="{url}rev/{node|short}{sessionvars%urlparameter}">Changeset</a></li>
    8.23 -				<li>Browse</li>
    8.24 -			</ul>
    8.25 -		</div>
    8.26 -		<div class="left_box">
    8.27 -			<ul>
    8.28 -				<li><a href="{url}summary{sessionvars%urlparameter}">Summary</a></li>
    8.29 -				<li><a href="{url}log{sessionvars%urlparameter}">Changelog</a></li>
    8.30 -				<li><a href="{url}graph/{node|short}{sessionvars%urlparameter}">Graph</a></li>
    8.31 -				<li><a href="{url}tags{sessionvars%urlparameter}">Tags</a></li>
    8.32 -				<li><a href="{url}branches{sessionvars%urlparameter}">Branches</a></li>
    8.33 -			</ul>
    8.34 -		</div>
    8.35 -	</div>
    8.36 -	<!-- Information/image -->
    8.37 -	<div id="block_info">
    8.38 -		<h4>Project: {repo|escape}</h4>
    8.39 -		<p>
    8.40 -			Clone project: hg clone http://hg.slitaz.org/{repo|escape}
    8.41 -		</p>
    8.42 -		<div id="tarball">
    8.43 -			<ul>
    8.44 -				<li>Download tarball:</li>
    8.45 -				{archives%archiveentry}
    8.46 -			</ul>
    8.47 -		</div>
    8.48 -		<h4>Search</h4>
    8.49 -		<form class="search" action="{url}log">
    8.50 -			{sessionvars%hiddenformentry}
    8.51 -			<p><input name="rev" id="search1" type="text" /></p>
    8.52 -			<!-- <div id="hint">find changesets by author, revision,
    8.53 -			files, or words in the commit message</div> -->
    8.54 -		</form>
    8.55 -	</div>
    8.56 +<!-- Navigation -->
    8.57 +<nav id="nav" role="navigation" tabindex="0">
    8.58 +	<ul>
    8.59 +		<li><a class="nav2" href="{url}summary{sessionvars%urlparameter}">Summary</a></li>
    8.60 +		<li><a class="nav1" href="{url}log{sessionvars%urlparameter}">Changelog</a></li>
    8.61 +		<li><a class="nav2" href="{url}rev/{node|short}{sessionvars%urlparameter}">Changeset</a></li>
    8.62 +		<li><a class="nav1" href="{url}graph/{node|short}{sessionvars%urlparameter}">Graph</a></li>
    8.63 +		<li><a class="nav2" href="{url}file/{node|short}{path|urlescape}{sessionvars%urlparameter}">Browse</a></li>
    8.64 +	</ul>
    8.65 +	<p>
    8.66 +		Repo: <span class="repo">{repo|escape}</span> &#8594;
    8.67 +		Download: <a href="/{repo|escape}/archive/tip.tar.bz2">bz2</a> -
    8.68 +		Changeset: <span class="value">{node|short}</span>
    8.69 +		
    8.70 +		
    8.71 +		<br />
    8.72 +		<span id="repo-desc">Revision: {rev}</span>
    8.73 +	</p>
    8.74 +</nav>
    8.75 +
    8.76 +<div id="hgsearch">
    8.77 +	<form class="search" action="{url}log">
    8.78 +	{sessionvars%hiddenformentry}
    8.79 +	<input name="rev" id="search1" type="text" placeholder="Search" />
    8.80 +	</form>
    8.81  </div>
    8.82  
    8.83  <!-- Content -->
    8.84  <div id="content">
    8.85  
    8.86  <h2><a href="{url}{sessionvars%urlparameter}">{repo|escape}</a>
    8.87 -	directory {path|escape} @ {rev}:{node|short} {tags%changelogtag}</h2>
    8.88 +	{path|escape} {tags%changelogtag}</h2>
    8.89  
    8.90  <table class="bigtable">
    8.91  <tr>
     9.1 --- a/slitaz-mercurial-style/templates/slitaz/search.tmpl	Tue Feb 28 22:36:16 2017 +0000
     9.2 +++ b/slitaz-mercurial-style/templates/slitaz/search.tmpl	Wed Mar 01 15:21:46 2017 +0100
     9.3 @@ -12,7 +12,6 @@
     9.4  		<a href="http://doc.slitaz.org/">Doc</a>
     9.5  		<a href="http://forum.slitaz.org/">Forum</a>
     9.6  		<a href="http://irc.slitaz.org/">IRC</a>
     9.7 -		<a href="http://pro.slitaz.org/">Pro</a>
     9.8  		<a href="http://bugs.slitaz.org">Bugs</a>
     9.9  		<span>Hg</span>
    9.10  		<a href="http://cook.slitaz.org/">Cook</a>
    9.11 @@ -20,39 +19,30 @@
    9.12  	<h1><a href="http://hg.slitaz.org/">SliTaz Repositories</a></h1>
    9.13  </div>
    9.14  
    9.15 -<!-- Block -->
    9.16 -<div id="block">
    9.17 -	<!-- Navigation -->
    9.18 -	<div id="block_nav">
    9.19 -		<h4>Navigation</h4>
    9.20 -		<ul>
    9.21 -			<li><a href="{url}summary{sessionvars%urlparameter}">Summary</a></li>
    9.22 -			<li><a href="{url}log{sessionvars%urlparameter}">Changelog</a></li>
    9.23 -			<li><a href="{url}graph{sessionvars%urlparameter}">Graph</a></li>
    9.24 -			<li><a href="{url}tags{sessionvars%urlparameter}">Tags</a></li>
    9.25 -			<li><a href="{url}branches{sessionvars%urlparameter}">Branches</a></li>
    9.26 -		</ul>
    9.27 -	</div>
    9.28 -	<!-- Information/image -->
    9.29 -	<div id="block_info">
    9.30 -		<h4>Project: {repo|escape}</h4>
    9.31 -		<p>
    9.32 -			Clone project: hg clone http://hg.slitaz.org/{repo|escape}
    9.33 -		</p>
    9.34 -		<div id="tarball">
    9.35 -			<ul>
    9.36 -				<li>Download tarball:</li>
    9.37 -				{archives%archiveentry}
    9.38 -			</ul>
    9.39 -		</div>
    9.40 -		<h4>Search</h4>
    9.41 -		<form class="search" action="{url}log">
    9.42 -			{sessionvars%hiddenformentry}
    9.43 -			<p><input name="rev" id="search1" type="text" /></p>
    9.44 -			<!-- <div id="hint">find changesets by author, revision,
    9.45 -			files, or words in the commit message</div> -->
    9.46 -		</form>
    9.47 -	</div>
    9.48 +<!-- Navigation -->
    9.49 +<nav id="nav" role="navigation" tabindex="0">
    9.50 +	<ul>
    9.51 +		<li><a class="nav2" href="{url}summary{sessionvars%urlparameter}">Summary</a></li>
    9.52 +		<li><a class="nav1" href="{url}log{sessionvars%urlparameter}">Changelog</a></li>
    9.53 +		<li><a class="nav2" href="{url}rev/{node|short}{sessionvars%urlparameter}">Changeset</a></li>
    9.54 +		<li><a class="nav1" href="{url}graph/{node|short}{sessionvars%urlparameter}">Graph</a></li>
    9.55 +		<li><a class="nav2" href="{url}file/{node|short}{path|urlescape}{sessionvars%urlparameter}">Browse</a></li>
    9.56 +	</ul>
    9.57 +	<p>
    9.58 +		Repo: <span class="repo">{repo|escape}</span> &#8594;
    9.59 +		Download: <a href="/{repo|escape}/archive/tip.tar.bz2">bz2</a> -
    9.60 +		<a href="{url}tags{sessionvars%urlparameter}">Tags</a> -
    9.61 +		<a href="{url}branches{sessionvars%urlparameter}">Branches</a>
    9.62 +		<br />
    9.63 +		<span id="repo-desc">Search: {query|escape}</span>
    9.64 +	</p>
    9.65 +</nav>
    9.66 +
    9.67 +<div id="hgsearch">
    9.68 +	<form class="search" action="{url}log">
    9.69 +	{sessionvars%hiddenformentry}
    9.70 +	<input name="rev" id="search1" type="text" placeholder="Search" />
    9.71 +	</form>
    9.72  </div>
    9.73  
    9.74  <!-- Content -->
    10.1 --- a/slitaz-mercurial-style/templates/slitaz/shortlog.tmpl	Tue Feb 28 22:36:16 2017 +0000
    10.2 +++ b/slitaz-mercurial-style/templates/slitaz/shortlog.tmpl	Wed Mar 01 15:21:46 2017 +0100
    10.3 @@ -16,7 +16,6 @@
    10.4  		<a href="http://doc.slitaz.org/">Doc</a>
    10.5  		<a href="http://forum.slitaz.org/">Forum</a>
    10.6  		<a href="http://irc.slitaz.org/">IRC</a>
    10.7 -		<a href="http://pro.slitaz.org/">Pro</a>
    10.8  		<a href="http://bugs.slitaz.org">Bugs</a>
    10.9  		<span>Hg</span>
   10.10  		<a href="http://cook.slitaz.org/">Cook</a>
   10.11 @@ -24,47 +23,29 @@
   10.12  	<h1><a href="http://hg.slitaz.org/">SliTaz Repositories</a></h1>
   10.13  </div>
   10.14  
   10.15 -<!-- Block -->
   10.16 -<div id="block">
   10.17 -	<!-- Navigation -->
   10.18 -	<div id="block_nav">
   10.19 -		<h4>Navigation</h4>
   10.20 -		<div class="right_box">
   10.21 -			<ul>
   10.22 -				<li><a href="{url}rev/{node|short}{sessionvars%urlparameter}">Changeset</a></li>
   10.23 -				<li><a href="{url}file/{node|short}{path|urlescape}{sessionvars%urlparameter}">Browse</a></li>
   10.24 -			</ul>
   10.25 -		</div>
   10.26 -		<div class="left_box">
   10.27 -			<ul>
   10.28 -				<li><a href="{url}summary{sessionvars%urlparameter}">Summary</a></li>
   10.29 -				<li>Changelog</li>
   10.30 -				<li><a href="{url}graph/{node|short}{sessionvars%urlparameter}">Graph</a></li>
   10.31 -				<li><a href="{url}tags{sessionvars%urlparameter}">Tags</a></li>
   10.32 -				<li><a href="{url}branches{sessionvars%urlparameter}">Branches</a></li>
   10.33 -			</ul>
   10.34 -		</div>
   10.35 -	</div>
   10.36 -	<!-- Information/image -->
   10.37 -	<div id="block_info">
   10.38 -		<h4>Project: {repo|escape}</h4>
   10.39 -		<p>
   10.40 -			Clone project: hg clone http://hg.slitaz.org/{repo|escape}
   10.41 -		</p>
   10.42 -		<div id="tarball">
   10.43 -			<ul>
   10.44 -				<li>Download tarball:</li>
   10.45 -				{archives%archiveentry}
   10.46 -			</ul>
   10.47 -		</div>
   10.48 -		<h4>Search</h4>
   10.49 -		<form class="search" action="{url}log">
   10.50 -			{sessionvars%hiddenformentry}
   10.51 -			<p><input name="rev" id="search1" type="text" /></p>
   10.52 -			<!-- <div id="hint">find changesets by author, revision,
   10.53 -			files, or words in the commit message</div> -->
   10.54 -		</form>
   10.55 -	</div>
   10.56 +<!-- Navigation -->
   10.57 +<nav id="nav" role="navigation" tabindex="0">
   10.58 +	<ul>
   10.59 +		<li><a class="nav2" href="{url}summary{sessionvars%urlparameter}">Summary</a></li>
   10.60 +		<li><a class="nav1" href="{url}log{sessionvars%urlparameter}">Changelog</a></li>
   10.61 +		<li><a class="nav2" href="{url}rev/{node|short}{sessionvars%urlparameter}">Changeset</a></li>
   10.62 +		<li><a class="nav1" href="{url}graph/{node|short}{sessionvars%urlparameter}">Graph</a></li>
   10.63 +		<li><a class="nav2" href="{url}file/{node|short}{path|urlescape}{sessionvars%urlparameter}">Browse</a></li>
   10.64 +	</ul>
   10.65 +	<p>
   10.66 +		Repo: <span class="repo">{repo|escape}</span> &#8594;
   10.67 +		Download: <a href="/{repo|escape}/archive/tip.tar.bz2">bz2</a> -
   10.68 +		Revision: {rev} - {changenav%navshort}
   10.69 +		<br />
   10.70 +		<span id="repo-desc">Changeset: {node|short}</span>
   10.71 +	</p>
   10.72 +</nav>
   10.73 +
   10.74 +<div id="hgsearch">
   10.75 +	<form class="search" action="{url}log">
   10.76 +	{sessionvars%hiddenformentry}
   10.77 +	<input name="rev" id="search1" type="text" placeholder="Search" />
   10.78 +	</form>
   10.79  </div>
   10.80  
   10.81  <!-- Content -->
   10.82 @@ -72,8 +53,6 @@
   10.83  
   10.84  <h2><a href="{url}{sessionvars%urlparameter}">{repo|escape}</a> log</h2>
   10.85  
   10.86 -<div class="navigate">rev {rev}: {changenav%navshort}</div>
   10.87 -
   10.88  <table class="bigtable">
   10.89   <tr>
   10.90    <th class="age">age</th>
    11.1 --- a/slitaz-mercurial-style/templates/slitaz/summary.tmpl	Tue Feb 28 22:36:16 2017 +0000
    11.2 +++ b/slitaz-mercurial-style/templates/slitaz/summary.tmpl	Wed Mar 01 15:21:46 2017 +0100
    11.3 @@ -16,7 +16,6 @@
    11.4  		<a href="http://doc.slitaz.org/">Doc</a>
    11.5  		<a href="http://forum.slitaz.org/">Forum</a>
    11.6  		<a href="http://irc.slitaz.org/">IRC</a>
    11.7 -		<a href="http://pro.slitaz.org/">Pro</a>
    11.8  		<a href="http://bugs.slitaz.org">Bugs</a>
    11.9  		<span>Hg</span>
   11.10  		<a href="http://cook.slitaz.org/">Cook</a>
   11.11 @@ -24,61 +23,44 @@
   11.12  	<h1><a href="http://hg.slitaz.org/">SliTaz Repositories</a></h1>
   11.13  </div>
   11.14  
   11.15 -<!-- Block -->
   11.16 -<div id="block">
   11.17 -	<!-- Navigation -->
   11.18 -	<div id="block_nav">
   11.19 -		<h4>Navigation</h4>
   11.20 -		<div class="right_box">
   11.21 -			<ul>
   11.22 -				<li><a href="{url}rev/{node|short}{sessionvars%urlparameter}">Changeset</a></li>
   11.23 -				<li><a href="{url}file/{node|short}{path|urlescape}{sessionvars%urlparameter}">Browse</a></li>
   11.24 -			</ul>
   11.25 -		</div>
   11.26 -		<div class="left_box">
   11.27 -			<ul>
   11.28 -				<li>Summary</li>
   11.29 -				<li><a href="{url}log{sessionvars%urlparameter}">Changelog</a></li>
   11.30 -				<li><a href="{url}graph/{node|short}{sessionvars%urlparameter}">Graph</a></li>
   11.31 -				<li><a href="{url}tags{sessionvars%urlparameter}">Tags</a></li>
   11.32 -				<li><a href="{url}branches{sessionvars%urlparameter}">Branches</a></li>
   11.33 -			</ul>
   11.34 -		</div>
   11.35 -	</div>
   11.36 -	<!-- Information/image -->
   11.37 -	<div id="block_info">
   11.38 -		<h4>Project: {repo|escape}</h4>
   11.39 -		<p>
   11.40 -			Clone project: hg clone http://hg.slitaz.org/{repo|escape}
   11.41 -		</p>
   11.42 -		<div id="tarball">
   11.43 -			<ul>
   11.44 -				<li>Download tarball:</li>
   11.45 -				{archives%archiveentry}
   11.46 -			</ul>
   11.47 -		</div>
   11.48 -		<h4>Search</h4>
   11.49 -		<form class="search" action="{url}log">
   11.50 -			{sessionvars%hiddenformentry}
   11.51 -			<p><input name="rev" id="search1" type="text" /></p>
   11.52 -			<!-- <div id="hint">find changesets by author, revision,
   11.53 -			files, or words in the commit message</div> -->
   11.54 -		</form>
   11.55 -	</div>
   11.56 +<!-- Navigation -->
   11.57 +<nav id="nav" role="navigation" tabindex="0">
   11.58 +	<ul>
   11.59 +		<li><a class="nav2" href="{url}summary{sessionvars%urlparameter}">Summary</a></li>
   11.60 +		<li><a class="nav1" href="{url}log{sessionvars%urlparameter}">Changelog</a></li>
   11.61 +		<li><a class="nav2" href="{url}rev/{node|short}{sessionvars%urlparameter}">Changeset</a></li>
   11.62 +		<li><a class="nav1" href="{url}graph/{node|short}{sessionvars%urlparameter}">Graph</a></li>
   11.63 +		<li><a class="nav2" href="{url}file/{node|short}{path|urlescape}{sessionvars%urlparameter}">Browse</a></li>
   11.64 +	</ul>
   11.65 +	<p>
   11.66 +		Repo: <span class="repo">{repo|escape}</span> &#8594;
   11.67 +		Download: <a href="/{repo|escape}/archive/tip.tar.bz2">bz2</a> -
   11.68 +		Last change: {lastchange|age}
   11.69 +		<br />
   11.70 +		<span id="repo-desc">{desc}</span>
   11.71 +	</p>
   11.72 +</nav>
   11.73 +
   11.74 +<div id="hgsearch">
   11.75 +	<form class="search" action="{url}log">
   11.76 +	{sessionvars%hiddenformentry}
   11.77 +	<input name="rev" id="search1" type="text" placeholder="Search" />
   11.78 +	<!-- <div id="hint">find changesets by author, revision,
   11.79 +	files, or words</div> -->
   11.80 +	</form>
   11.81  </div>
   11.82  
   11.83 -
   11.84  <div id="content">
   11.85  
   11.86  <h2>Repository Overview</h2>
   11.87  
   11.88 -<ul style="list-style-type: square;">
   11.89 -	<li>Repo: {repo|escape} - {desc}</li>
   11.90 -	<li>Owner: {owner|obfuscate}</li>
   11.91 -	<li>Last change: {lastchange|rfc822date}</li>
   11.92 -</ul>
   11.93 +<pre>
   11.94 +Node            : {node}
   11.95 +Changeset       : <span class="value">{node|short}</span>
   11.96 +Owner           : {owner|obfuscate}
   11.97 +</pre>
   11.98  
   11.99 -<h2>Changes</h2>
  11.100 +<h3>Changes</h3>
  11.101  <table style="margin-top: 10px;">
  11.102  {shortlog}
  11.103  	<tr class="light">
  11.104 @@ -88,7 +70,7 @@
  11.105  	</tr>
  11.106  </table>
  11.107  
  11.108 -<h2>Tags</h2>
  11.109 +<h3>Tags</h3>
  11.110  <table style="margin-top: 10px;">
  11.111  {tags}
  11.112  	<tr class="light">
  11.113 @@ -98,7 +80,7 @@
  11.114  	</tr>
  11.115  </table>
  11.116  
  11.117 -<h2>Branches</h2>
  11.118 +<h3>Branches</h3>
  11.119  <table style="margin-top: 10px;">
  11.120  {branches%branchentry}
  11.121  </table>
    12.1 Binary file slitaz-mercurial-style/templates/static/coal-file.png has changed
    13.1 Binary file slitaz-mercurial-style/templates/static/images/development.png has changed
    14.1 Binary file slitaz-mercurial-style/templates/static/images/network.png has changed
    15.1 --- a/slitaz-mercurial-style/templates/static/style-slitaz.css	Tue Feb 28 22:36:16 2017 +0000
    15.2 +++ b/slitaz-mercurial-style/templates/static/style-slitaz.css	Wed Mar 01 15:21:46 2017 +0100
    15.3 @@ -1,5 +1,5 @@
    15.4  /*
    15.5 -	CSS style for SliTaz Network - (C) 2015 SliTaz GNU/Linux
    15.6 +	CSS style for SliTaz Network - (C) 201 SliTaz GNU/Linux
    15.7  */
    15.8  
    15.9  html {
   15.10 @@ -11,15 +11,18 @@
   15.11  	color: black;
   15.12  	font: 13px sans-serif, vernada, arial;
   15.13  	margin: 0;
   15.14 -	min-width: 900px;
   15.15 +	min-width: 780px;
   15.16 +	height: 100%;
   15.17  }
   15.18  
   15.19  a { text-decoration: underline; color: #215090; }
   15.20 -a:hover { text-decoration: none; color: blue; }
   15.21 +a:hover { text-decoration: none; }
   15.22  img { border: 0pt none; vertical-align: middle; }
   15.23 -h2 { color: #444; margin-bottom: 0;}
   15.24 +h2 { color: #444; font-size: 180%; }
   15.25  h3 { color: #666; font-size: 140%; }
   15.26  h4 { color: #888; font-size: 120%; }
   15.27 +h2, h3 { border-bottom: 1px dashed #afafaf; padding-bottom: 5px; }
   15.28 +li { list-style-type: square; }
   15.29  pre { 
   15.30  	background-color: #f8f8f8; 
   15.31  	border: 1px solid #ddd; 
   15.32 @@ -73,70 +76,68 @@
   15.33  #network a, #network span { padding: 0 4px; }
   15.34  #network span { color: #afafaf; font-weight: bold; }
   15.35  
   15.36 -/* Block */
   15.37 -
   15.38 -#block { 
   15.39 -	min-height: 148px; 
   15.40 -	background: #ccc; 
   15.41 -	padding: 20px 10% 0px;
   15.42 -	text-align: center;
   15.43 -	color: #222;
   15.44 -	border-bottom: 1px solid #afafaf;
   15.45 -}
   15.46 -
   15.47 -#block_info {
   15.48 -	text-align: justify; 
   15.49 -	width: 48%;
   15.50 -	padding: 10px 10px 0 0;
   15.51 -}
   15.52 -
   15.53 -#network a, #block_nav a { 
   15.54 +#network a { 
   15.55  	color: #fff; 
   15.56  	font-weight: bold;
   15.57  	text-decoration: none;
   15.58  }
   15.59  
   15.60 -#block h4 {
   15.61 -	color: #111;
   15.62 -	margin: 0 0 6px;
   15.63 -	font-weight: bold;
   15.64 -	font-size: 110%;
   15.65 +/* 
   15.66 + * 
   15.67 + * 
   15.68 + * Navigation NG 
   15.69 + * 
   15.70 + * 
   15.71 + * */
   15.72 +
   15.73 +nav {
   15.74 +	font-size: 120%;
   15.75 +	min-height: 100px;
   15.76 +	background: #ddd; 
   15.77 +	padding: 56px 6% 0;
   15.78 +	text-align: center;
   15.79 +	color: #222;
   15.80 +	border-bottom: 1px solid #afafaf;
   15.81 +	top: 40px;
   15.82  }
   15.83  
   15.84 -#block_info p { margin: 6px 0; padding: 0 12px 0 0; }
   15.85 -#block_info a { font-weight: normal; }
   15.86 -#block ul { list-style-type: square; }
   15.87 +nav ul {
   15.88 +    margin: 0; padding: 0;
   15.89 +    list-style: none;
   15.90 +}
   15.91 +nav li { display: inline; }
   15.92  
   15.93 -/* Navigation */
   15.94 +nav a, .dlbutton { 
   15.95 +	text-decoration: none;
   15.96 +	padding: 12px;
   15.97 +	color: #fff; 
   15.98 +	font-weight: bold;
   15.99 +	vertical-align: middle;
  15.100 +	-webkit-transition: background-color 0.6s;
  15.101 +	transition: background-color 0.5s;
  15.102 +}
  15.103 +nav p { padding: 8px; color: #333; font-size: 92%; }
  15.104  
  15.105 -#block_nav {
  15.106 -	background: #666;
  15.107 -	padding: 10px;
  15.108 -	text-align: justify;
  15.109 -	width: 48%;
  15.110 -	float: right;
  15.111 -}
  15.112 -
  15.113 -#block_nav ul { 
  15.114 -	list-style-type: none; 
  15.115 -	margin:  0px 0; 
  15.116 -	padding: 0;
  15.117 -}
  15.118 -
  15.119 -#block_nav h4 img { 
  15.120 -	margin: 0 4px 0 0; 
  15.121 -	padding: 0;
  15.122 -}
  15.123 +.nav1 { background-color: #333; }
  15.124 +.nav1:hover { background-color: #128da9; }
  15.125 +.nav2 { background-color: #ab3c00; }
  15.126 +.nav2:hover { background-color: #ff9b00; }
  15.127 +.navpi { background-color: #444; }
  15.128 +.navpi:hover { background-color: #bc1142; }
  15.129  
  15.130  /* Languages */
  15.131  
  15.132  #lang {
  15.133 -	float: right;
  15.134 -	padding: 6px;
  15.135 -	font-size: 11px;
  15.136 +	padding: 8px;
  15.137 +	font-size: 12px;
  15.138 +	position: absolute;
  15.139 +	right: 0px;
  15.140 +	color: #666;
  15.141  }
  15.142 +#lang .flag { font-size: 14px; }
  15.143 +#lang .flag:hover { text-decoration: none; }
  15.144  
  15.145 -#lang a {
  15.146 +#lang a, #lang strong,  #lang span {
  15.147  	text-decoration: none;
  15.148  	padding: 0 2px;
  15.149  }
  15.150 @@ -145,28 +146,44 @@
  15.151  	text-decoration: underline;
  15.152  }
  15.153  
  15.154 +.box #lang { text-align: center; position: relative; 
  15.155 +	font-size: 13px; }	 /* for /i18n page */
  15.156 +
  15.157  /* Content */
  15.158  
  15.159  #content {
  15.160  	padding: 30px 80px;
  15.161  	text-align: justify;
  15.162  }
  15.163 +#content li { line-height: 1.6em; }
  15.164  
  15.165 -#news li {
  15.166 -	list-style-type: square;
  15.167 +.news li {
  15.168  	border-bottom: 1px dotted #BEBEBE;
  15.169  	margin-left: -25px;
  15.170  	padding: 4px 0px 4px 0px;
  15.171  }
  15.172  
  15.173 -#news a, .feed-grid a { text-decoration: none; }
  15.174 -#news p a { text-decoration: underline; }
  15.175 -#news p a:hover { text-decoration: none; }
  15.176 -#twitter { margin: 20px 0; }
  15.177 +.news a, .feed-grid a { text-decoration: none; }
  15.178 +.news p a { text-decoration: underline; }
  15.179 +.news p a:hover { text-decoration: none; }
  15.180 +#twitter { margin: 20px 0; text-align: center; }
  15.181  #gallery { text-align: center; }
  15.182  
  15.183 +#sponsor {
  15.184 +	font-size: 90%;
  15.185 +	background-color: #fbfbfb;
  15.186 +	border: 2px solid #ddd;
  15.187 +	width: 200px;
  15.188 +	height: 140px;
  15.189 +	float: right;
  15.190 +	text-align: center;
  15.191 +	margin: 20px 0px 20px 20px;
  15.192 +}
  15.193 +
  15.194  /* Classes */
  15.195  
  15.196 +.mobile { display: none !important; }
  15.197 +
  15.198  .right_box { width: 48%; float: right; }
  15.199  .left_box { width: 48%; float: left; }
  15.200  
  15.201 @@ -177,6 +194,27 @@
  15.202  	border: 1px solid #ddd;
  15.203  }
  15.204  
  15.205 +.box-dl, .box-up {
  15.206 +	margin: 20px 0;
  15.207 +	min-height: 48px;
  15.208 +	border: 1px solid #ddd;
  15.209 +	vertical-align: middle;
  15.210 +}
  15.211 +.box-dl {
  15.212 +	background: url("/images/download.png") no-repeat 12px center;
  15.213 +	padding: 16px 16px 16px 72px;
  15.214 +}
  15.215 +.box-up {
  15.216 +	background: url("/images/update.png") no-repeat 12px center;
  15.217 +	padding: 16px 16px 16px 62px;
  15.218 +}
  15.219 +.box-dl a { font-weight: bold; text-decoration: none; }
  15.220 +.dlbutton { padding-left: 38px; }
  15.221 +pre, .box, .box-dl, .box-up, .box-share, .box-rpi {
  15.222 +	background-color: #efefef;
  15.223 +	border: 1px solid #ddd;
  15.224 +}
  15.225 +
  15.226  .searchbox { 
  15.227  	margin: 20px 80px; 
  15.228  	padding: 12px; 
  15.229 @@ -185,56 +223,59 @@
  15.230  	border: 1px solid #ddd;
  15.231  }
  15.232  
  15.233 -.feed-grid { height: 180px; overflow: hidden; text-align: left; }
  15.234 -.feed-grid h3 { 
  15.235 -	margin: 15px 0 0; font-size: 16px; 
  15.236 -	padding: 0 22px;
  15.237 -	background: url(images/feed.png) no-repeat left; }
  15.238 -.feed-grid span { font-size: 10px; color: #888; margin-left: 24px; }
  15.239 -.feed-grid ul { color: #666; }
  15.240 -.feed-grid a { color: #666; }
  15.241 -.feed-grid a:hover { color: blue; }
  15.242 +/* Activity Box */
  15.243 +
  15.244 +.activity { 
  15.245 +	margin: 0 0 20px; 
  15.246 +	background: #efefef; 
  15.247 +	padding: 5px 2px 0; 
  15.248 +	border: 1px solid #ddd; 
  15.249 +}
  15.250 +.activity div { padding: 5px 10px; background: #fff; margin-top: 5px; }
  15.251 +.activity p { margin: 0; padding: 5px 10px; font-weight: bold; }
  15.252 +.activity a { text-decoration: none; }
  15.253 +.activity ul { margin: 4px 0; padding: 0 4px; line-height: 150%; }
  15.254 +.activity li { list-style-type: none; }
  15.255 +.activity_more { text-align: right;  }
  15.256 +.activity_more a { font-weight: normal; color: #000; padding: 0 4px; }
  15.257 +.activity_more a:hover { text-decoration: underline; }
  15.258 +
  15.259 +.activity span, .news span { 
  15.260 +	color: #666; 
  15.261 +	font-size: 11px; 
  15.262 +	font-weight: normal;
  15.263 +}
  15.264  
  15.265  /* Button */
  15.266  
  15.267 -.button a { 
  15.268 -	background-color: #b64b22;
  15.269 +#block_info .button a { 
  15.270 +	background-color: #666;
  15.271  	color: #ffffff;
  15.272 -	margin-right: 6px;
  15.273 +	margin: 0px 4px;
  15.274  	padding: 6px 10px;
  15.275  	font-size: 12px;
  15.276  	text-decoration: none;
  15.277  	font-weight: bold;
  15.278  }
  15.279 -.button a:hover, input[type=submit]:hover { 
  15.280 -	background-color: #a3431f;
  15.281 +#block_info .button a:hover, input[type=submit]:hover { 
  15.282 +	background-color: #444;
  15.283  	color: #ffffff;
  15.284  }
  15.285  
  15.286  /* Round corner */
  15.287  
  15.288 -#block_nav, pre, .box, .searchbox, .button a, #twitter {
  15.289 +#block_nav, pre, .box, .box-dl, .box-up, .searchbox, .button a, 
  15.290 +#twitter, .activity, .activity div, #sponsor, nav a, .dlbutton {
  15.291  	-moz-border-radius: 4px;
  15.292  	-webkit-border-radius: 4px;
  15.293  	border-radius: 4px;
  15.294  }
  15.295  
  15.296 -/* Transition */
  15.297 -
  15.298 -.box {	
  15.299 -	-webkit-transition-property: background-color;
  15.300 -	-webkit-transition-duration: 2s;
  15.301 -	-moz-transition-property: background-color;
  15.302 -	-moz-transition-duration: 2s;
  15.303 -	transition-property: background-color;
  15.304 -	transition-duration: 2s;
  15.305 -}
  15.306 -
  15.307  /* Form */
  15.308  
  15.309  input[type=submit] {
  15.310 -	border: 1px solid #b64b22;
  15.311 -	background-color: #b64b22;
  15.312 +	border: 1px solid #666;
  15.313 +	background-color: #666;
  15.314  	color: white;
  15.315  	font-weight: bold;
  15.316  	cursor: pointer;
  15.317 @@ -249,17 +290,7 @@
  15.318  	border-bottom-right-radius: 4px;
  15.319  }
  15.320  
  15.321 -input[type=submit]:hover { background-color: #a3431f; }
  15.322 -
  15.323 -input[type=text] {
  15.324 -	border: 1px inset #333333;
  15.325 -	padding: 2px;
  15.326 -	height: 17px;
  15.327 -	width: 100%;
  15.328 -	-webkit-border-radius: 4px;
  15.329 -	-moz-border-radius: 4px;
  15.330 -	border-radius: 4px;
  15.331 -}
  15.332 +input[type=submit]:hover { background-color: #444; }
  15.333  
  15.334  /* Footer */
  15.335  
  15.336 @@ -269,23 +300,72 @@
  15.337  	border-top: 1px solid #ddd;
  15.338  	padding: 40px;
  15.339  	color: #666;
  15.340 +	clear: both;
  15.341 +	margin-bottom: -2%;
  15.342  }
  15.343  
  15.344  #footer a { color: #666; padding: 0 2px; }
  15.345  
  15.346  .year:after {
  15.347  	/* content: "2007-2015"; */
  15.348 -	content: "2015";
  15.349 +	content: "2007-2017";
  15.350  }
  15.351  
  15.352 -/* Mercurial */
  15.353 +p, li {
  15.354 +	-moz-hyphens: auto;
  15.355 +	-webkit-hyphens: auto;
  15.356 +	hyphens: auto;
  15.357 +}
  15.358 +
  15.359 +/* 
  15.360 + * 
  15.361 + * 
  15.362 + *
  15.363 + *  Mercurial custom CSS
  15.364 + * 
  15.365 + * 
  15.366 + * 
  15.367 + */
  15.368  
  15.369  #tarball ul { margin: 0 0 6px; padding: 0px; }
  15.370  #tarball li { display: inline-block; }
  15.371  
  15.372 -#content a { text-decoration:none; }
  15.373 +nav p a { 
  15.374 +	padding: 0;
  15.375 +	font-weight: normal;
  15.376 +	color: #215090;
  15.377 +}
  15.378 +nav p a:hover { text-decoration: underline; }
  15.379  
  15.380 -#block_nav li { font-weight: bold; }
  15.381 +.repo { font-weight: bold; }
  15.382 +#repo-desc { font-size: 90%; color: #888; }
  15.383 +#repo-desc a { font-size: 90%; color: #333; }
  15.384 +
  15.385 +#content a { text-decoration: none; }
  15.386 +
  15.387 +.comment { color: #a00; }
  15.388 +.value   { color: #e50; }
  15.389 +.var     { color: #05a; }
  15.390 +.color32 { color: green; }
  15.391 +
  15.392 +#hgsearch {
  15.393 +	float: right;
  15.394 +	margin: 40px 80px 0px 0px;
  15.395 +}
  15.396 +
  15.397 +#hgsearch input[type="text"] {
  15.398 +	width: 240px;
  15.399 +	padding: 4px;
  15.400 +	margin: 4px 0px;
  15.401 +	font-size: 14px;
  15.402 +	line-height: 1.2em;
  15.403 +	background: #fefefe;
  15.404 +	border: 2px solid #afafaf;
  15.405 +	-webkit-appearance: none;
  15.406 +	-webkit-padding-end: 12px;
  15.407 +	-webkit-padding-start: 6px;
  15.408 +	border-radius: 4px;
  15.409 +}
  15.410  
  15.411  .container {
  15.412    margin: 0px 280px 0px 0px;
  15.413 @@ -310,16 +390,18 @@
  15.414  }
  15.415  
  15.416  form.search div#hint {
  15.417 -  display: none;
  15.418 -  position: absolute;
  15.419 -  top: 96px;
  15.420 -  left: 10%;
  15.421 -  width: 300px;
  15.422 -  padding: 5px 10px;
  15.423 -  background: #f1f1f1;
  15.424 -  border: 1px solid #c5c5c5;
  15.425 -  -moz-border-radius: 5px; /* this works only in camino/firefox */
  15.426 -  -webkit-border-radius: 5px; /* this is just for Safari */
  15.427 +	display: none;
  15.428 +	position: absolute;
  15.429 +	right: 80px;
  15.430 +	width: 240px;
  15.431 +	padding: 5px;
  15.432 +	margin-top: 14px;
  15.433 +	background: #f8f8f8;
  15.434 +	border: 1px solid #ddd;
  15.435 +	-webkit-appearance: none;
  15.436 +	-webkit-padding-end: 12px;
  15.437 +	-webkit-padding-start: 6px;
  15.438 +	border-radius: 4px;
  15.439  }
  15.440  
  15.441  form.search:hover div#hint { display: block; }
  15.442 @@ -377,31 +459,35 @@
  15.443  h2 a { color: #215090; }
  15.444  
  15.445  /* log and tags tables */
  15.446 +
  15.447 +table { border-collapse: collapse; }
  15.448 +
  15.449  .bigtable {
  15.450 -  border-bottom: 1px solid #999;
  15.451 +  border-bottom: 1px solid #ddd;
  15.452    border-collapse: collapse;
  15.453 -  font-size: 90%;
  15.454 +  font-size: 100%;
  15.455    width: 100%;
  15.456    font-weight: normal;
  15.457    text-align: left;
  15.458    margin-top: 10px;
  15.459  }
  15.460  
  15.461 -.bigtable td {
  15.462 +.bigtable td, table td {
  15.463    vertical-align: top;
  15.464 +  padding: 4px 2px;
  15.465  }
  15.466  
  15.467  .bigtable th {
  15.468 -  padding: 1px 4px;
  15.469 -  border-bottom: 1px solid #999;
  15.470 +  padding: 0px 2px 6px 0;
  15.471 +  border-bottom: 1px solid #ddd;
  15.472  }
  15.473  .bigtable tr { border: none; }
  15.474 -.bigtable .age { width: 6em; }
  15.475 -.bigtable .author { width: 12em; }
  15.476 +table .age { width: 6em; padding-right: 10px; }
  15.477 +table .author { width: 12em; }
  15.478  .bigtable .description { }
  15.479  .bigtable .node { width: 5em; font-family: monospace;}
  15.480  .bigtable .permissions { width: 8em; text-align: left;}
  15.481 -.bigtable .size { width: 5em; text-align: right; }
  15.482 +.bigtable .size { width: 5em; text-align: right; padding-right: 20px; }
  15.483  .bigtable .annotate { text-align: right; }
  15.484  .bigtable td.annotate { font-size: smaller; }
  15.485  .bigtable td.source { font-size: inherit; }
  15.486 @@ -410,12 +496,12 @@
  15.487    font-family: monospace;
  15.488    white-space: pre;
  15.489    padding: 1px 4px;
  15.490 -  font-size: 90%;
  15.491 +  font-size: 94%;
  15.492  }
  15.493 -.sourcefirst { border-bottom: 1px solid #999; font-weight: bold; }
  15.494 -.sourcelast { border-top: 1px solid #999; }
  15.495 +.sourcefirst { border-bottom: 0px solid #ddd; font-weight: bold; }
  15.496 +.sourcelast { border-top: 0px solid #ddd; }
  15.497  .source a { color: #999; font-size: smaller; font-family: monospace;}
  15.498 -.bottomline { border-bottom: 1px solid #999; }
  15.499 +.bottomline { border-bottom: 0px solid #999; }
  15.500  
  15.501  .fileline { font-family: monospace; }
  15.502  .fileline img { border: 0; }
  15.503 @@ -431,7 +517,7 @@
  15.504  }
  15.505  
  15.506  #changesetEntry th {
  15.507 -  padding: 1px 4px;
  15.508 +  padding: 4px;
  15.509    width: 4em;
  15.510    text-align: right;
  15.511    font-weight: normal;
  15.512 @@ -441,7 +527,7 @@
  15.513  }
  15.514  
  15.515  div.description {
  15.516 -  border-left: 2px solid #999;
  15.517 +  border-left: 2px solid #888;
  15.518    margin: 1em 0 1em 0;
  15.519    padding: .3em;
  15.520  }