# HG changeset patch # User Marcin Kuzminski # Date 1289604216 -3600 # Node ID 23c2a0e6df0b411cb6645137d092233fa8cbb3fc # Parent 9c8a817462fe76d1ec45e10420183de9adde8e07 changed official rhodecode favicon, from hg to some more generic removed some unneded icons update setup to add changelog diff -r 9c8a817462fe -r 23c2a0e6df0b docs/changelog.rst --- a/docs/changelog.rst Thu Nov 11 15:31:03 2010 +0100 +++ b/docs/changelog.rst Sat Nov 13 00:23:36 2010 +0100 @@ -18,7 +18,7 @@ - gui optimizations, fixed application width to 1024px - numerous small bugfixes -1.0.2 (**2010-11-XX**) +1.0.2 (**2010-11-12**) ---------------------- - fixed #59 missing graph.js diff -r 9c8a817462fe -r 23c2a0e6df0b rhodecode/public/css/style.css --- a/rhodecode/public/css/style.css Thu Nov 11 15:31:03 2010 +0100 +++ b/rhodecode/public/css/style.css Sat Nov 13 00:23:36 2010 +0100 @@ -393,7 +393,7 @@ max-height:275px; overflow:auto; overflow-x:hidden; -white-space:nowrap; +white-space:normal; } #header #header-inner #quick li ul li a.journal,#header #header-inner #quick li ul li a.journal:hover { @@ -417,6 +417,20 @@ padding:12px 9px 7px 24px; } +#header #header-inner #quick li ul li a.hg,#header #header-inner #quick li ul li a.hg:hover { +background:url("../images/icons/hgicon.png") no-repeat scroll 4px 9px #FFF; +min-width:167px; +margin:0; +padding:12px 9px 7px 24px; +} + +#header #header-inner #quick li ul li a.git,#header #header-inner #quick li ul li a.git:hover { +background:url("../images/icons/giticon.png") no-repeat scroll 4px 9px #FFF; +min-width:167px; +margin:0; +padding:12px 9px 7px 24px; +} + #header #header-inner #quick li ul li a.repos,#header #header-inner #quick li ul li a.repos:hover { background:url("../images/icons/database_edit.png") no-repeat scroll 4px 9px #FFF; width:167px; diff -r 9c8a817462fe -r 23c2a0e6df0b rhodecode/public/images/hgicon.png Binary file rhodecode/public/images/hgicon.png has changed diff -r 9c8a817462fe -r 23c2a0e6df0b rhodecode/public/images/icons/success.png Binary file rhodecode/public/images/icons/success.png has changed diff -r 9c8a817462fe -r 23c2a0e6df0b rhodecode/public/images/icons/warning.png Binary file rhodecode/public/images/icons/warning.png has changed diff -r 9c8a817462fe -r 23c2a0e6df0b rhodecode/templates/base/base.html --- a/rhodecode/templates/base/base.html Thu Nov 11 15:31:03 2010 +0100 +++ b/rhodecode/templates/base/base.html Sat Nov 13 00:23:36 2010 +0100 @@ -3,7 +3,7 @@ ${next.title()} - + diff -r 9c8a817462fe -r 23c2a0e6df0b rhodecode/templates/login.html --- a/rhodecode/templates/login.html Thu Nov 11 15:31:03 2010 +0100 +++ b/rhodecode/templates/login.html Sat Nov 13 00:23:36 2010 +0100 @@ -4,7 +4,7 @@ ${_('Sign In')} - ${c.rhodecode_name} - + diff -r 9c8a817462fe -r 23c2a0e6df0b setup.py --- a/setup.py Thu Nov 11 15:31:03 2010 +0100 +++ b/setup.py Sat Nov 13 00:23:36 2010 +0100 @@ -39,10 +39,14 @@ #long description try: readme_file = 'README.rst' - long_description = open(readme_file).read() + changelog_file = 'docs/changelog.rst' + long_description = open(readme_file).read() + '/n/n' + \ + open(changelog_file).read() + except IOError, err: sys.stderr.write("[WARNING] Cannot find file specified as " - "long_description (%s)\n skipping that file" % readme_file) + "long_description (%s)\n or changelog (%s) skipping that file" \ + % (readme_file, changelog_file)) long_description = description