Mercurial > public > src > rhodecode
changeset 225:710e7a75bb6b v0.7.5
templating update, improved look & feel, version bump
author | Marcin Kuzminski <marcin@python-works.com> |
---|---|
date | Wed, 26 May 2010 00:20:03 +0200 |
parents | fdcef6ea3b55 |
children | c6526b7531e9 |
files | pylons_app/__init__.py pylons_app/public/css/monoblue_custom.css pylons_app/templates/base/base.html pylons_app/templates/changeset/changeset.html pylons_app/templates/index.html pylons_app/templates/summary/summary.html |
diffstat | 6 files changed, 46 insertions(+), 42 deletions(-) [+] |
line wrap: on
line diff
--- a/pylons_app/__init__.py Wed May 26 00:05:30 2010 +0200 +++ b/pylons_app/__init__.py Wed May 26 00:20:03 2010 +0200 @@ -2,7 +2,7 @@ Hg app, a web based mercurial repository managment based on pylons """ -VERSION = (0, 7, 4, 'beta') +VERSION = (0, 7, 5, 'beta') __version__ = '.'.join((str(each) for each in VERSION[:4]))
--- a/pylons_app/public/css/monoblue_custom.css Wed May 26 00:05:30 2010 +0200 +++ b/pylons_app/public/css/monoblue_custom.css Wed May 26 00:20:03 2010 +0200 @@ -173,13 +173,13 @@ } ul.page-nav li { - margin: 0 2px 0 0; + margin: 0 4px 0 0; float: left; height: 24px; font-size: 1.1em; line-height: 24px; text-align: center; - background: #DDD; + background: #556CB5; } ul.page-nav li.current { @@ -187,21 +187,24 @@ padding-right: 5px; padding-left: 5px; } - +ul.page-nav li.current a { + color: #556CB5; +} ul.page-nav li a { height: 24px; - color: #666; + color: #FFF; padding-right: 5px; padding-left: 5px; display: block; text-decoration: none; + font-weight: bold; } ul.page-nav li.logout a { - color: red; + color: #FDAC9D; } ul.page-nav li a:hover { - color: #333; background: #FFF; + color: #556CB5; } ul.submenu { @@ -523,21 +526,12 @@ } #changeset_content .container .left .message{ - + font-style: italic; + color: #556CB5; } - - - - - - - - .cs_files{ - border: 1px solid #CCCCCC; width: 60%; - } .cs_files .cs_added{
--- a/pylons_app/templates/base/base.html Wed May 26 00:05:30 2010 +0200 +++ b/pylons_app/templates/base/base.html Wed May 26 00:20:03 2010 +0200 @@ -65,6 +65,7 @@ else{ YAHOO.util.Dom.setStyle('switch_repos','display',''); YAHOO.util.Dom.setStyle('repo_switcher','background','#FFFFFF'); + YAHOO.util.Dom.setStyle('repo_switcher','color','#556CB5'); YAHOO.util.Dom.addClass('repo_switcher','selected'); } }); @@ -75,7 +76,7 @@ window.location = url; }) }); - </script> + </script> <ul class="page-nav"> <li> <a id="repo_switcher" title="${_('Switch repository')}" href="#">↓</a>
--- a/pylons_app/templates/changeset/changeset.html Wed May 26 00:05:30 2010 +0200 +++ b/pylons_app/templates/changeset/changeset.html Wed May 26 00:20:03 2010 +0200 @@ -54,7 +54,7 @@ </div> </div> - <div style="clear: both"></div> + <div style="clear:both;height:10px"></div> <div class="cs_files"> %for change,filenode,diff in c.changes: <div class="cs_${change}">${h.link_to(filenode.path,h.url.current(anchor='CHANGE-%s'%filenode.path))}</div> @@ -67,21 +67,25 @@ <div id="body" class="diffblock"> <div id="${'CHANGE-%s'%filenode.path}" class="code-header"> <div> - <span> - ${h.link_to_if(change!='removed',filenode.path,h.url('files_home',repo_name=c.repo_name, - revision=filenode.changeset.raw_id,f_path=filenode.path))} - </span> - - ##» <span style="font-size:77%">${h.link_to(_('diff'), - ##h.url.current(diff2=c.diff2,diff1=c.diff1,diff='diff'))}</span> - ##» <span style="font-size:77%">${h.link_to(_('raw diff'), - ##h.url.current(diff2=c.diff2,diff1=c.diff1.split(':')[-1],diff='raw'))}</span> - ##» <span style="font-size:77%">${h.link_to(_('download diff'), - ##h.url.current(diff2=c.diff2,diff1=c.diff1,diff='download'))}</span> + <span> + ${h.link_to_if(change!='removed',filenode.path,h.url('files_home',repo_name=c.repo_name, + revision=filenode.changeset.raw_id,f_path=filenode.path))} + </span> + + ##» <span style="font-size:77%">${h.link_to(_('diff'), + ##h.url.current(diff2=c.diff2,diff1=c.diff1,diff='diff'))}</span> + ##» <span style="font-size:77%">${h.link_to(_('raw diff'), + ##h.url.current(diff2=c.diff2,diff1=c.diff1.split(':')[-1],diff='raw'))}</span> + ##» <span style="font-size:77%">${h.link_to(_('download diff'), + ##h.url.current(diff2=c.diff2,diff1=c.diff1,diff='download'))}</span> </div> </div> <div class="code-body"> - ${diff|n} + %if diff: + ${diff|n} + %else: + ${_('No changes in this file')} + %endif </div> </div> %endif
--- a/pylons_app/templates/index.html Wed May 26 00:05:30 2010 +0200 +++ b/pylons_app/templates/index.html Wed May 26 00:20:03 2010 +0200 @@ -39,16 +39,16 @@ <td>${h.link(repo['name'],h.url('summary_home',repo_name=repo['name']))}</td> <td>${repo['description']}</td> <td>${repo['last_change']|n,filters.age}</td> - <td>r${repo['rev']}:<a href="/${repo['name']}/rev/${repo['tip']}/">${repo['tip']}</a></td> - <td>${repo['contact']}</td> + <td>${h.link_to('r%s:%s' % (repo['rev'],repo['tip']),h.url('changeset_home',repo_name=repo['name'],revision=repo['tip']))}</td> + <td title="${repo['contact']}">${repo['contact']|n,filters.person}</td> - %for archive in repo['repo_archives']: - <td class="indexlinks"> - ${h.link_to(archive['type'], - h.url('files_archive_home',repo_name=repo['name'], - revision='tip',fileformat=archive['extension']),class_="archive_logo" )} - </td> - %endfor + ##%for archive in repo['repo_archives']: + ##<td class="indexlinks"> + ## ${h.link_to(archive['type'], + ## h.url('files_archive_home',repo_name=repo['name'], + ## revision='tip',fileformat=archive['extension']),class_="archive_logo" )} + ##</td> + ##%endfor <td> ${h.link_to(_('RSS'),h.url('rss_feed_home',repo_name=repo['name']),class_='rss_logo')}
--- a/pylons_app/templates/summary/summary.html Wed May 26 00:05:30 2010 +0200 +++ b/pylons_app/templates/summary/summary.html Wed May 26 00:20:03 2010 +0200 @@ -41,7 +41,7 @@ <dt>${_('contact')}</dt> <dd>${c.repo_info.contact}</dd> <dt>${_('last change')}</dt> - <dd>${c.repo_info.last_change|n,filters.rfc822date} - ${c.repo_info.last_change|n,filters.age}</dd> + <dd>${c.repo_info.last_change|n,filters.age} - ${c.repo_info.last_change|n,filters.rfc822date}</dd> <dt>${_('clone url')}</dt> <dd><input type="text" id="clone_url" readonly="readonly" value="hg clone ${c.clone_repo_url}" size="40"/></dd> <dt>${_('download')}</dt> @@ -55,6 +55,11 @@ revision='tip',fileformat=archive['extension']),class_="archive_logo")} %endfor </dd> + <dt>${_('feeds')}</dt> + <dd> + ${h.link_to(_('RSS'),h.url('rss_feed_home',repo_name=c.repo_info.name),class_='rss_logo')} + ${h.link_to(_('Atom'),h.url('atom_feed_home',repo_name=c.repo_info.name),class_='atom_logo')} + </dd> </dl> <h2>${h.link_to(_('Changes'),h.url('changelog_home',repo_name=c.repo_name))}</h2>