changeset 682:23c2a0e6df0b beta

changed official rhodecode favicon, from hg to some more generic removed some unneded icons update setup to add changelog
author Marcin Kuzminski <marcin@python-works.com>
date Sat, 13 Nov 2010 00:23:36 +0100
parents 9c8a817462fe
children 341beaa9edba
files docs/changelog.rst rhodecode/public/css/style.css rhodecode/public/images/hgicon.png rhodecode/public/images/icons/success.png rhodecode/public/images/icons/warning.png rhodecode/templates/base/base.html rhodecode/templates/login.html setup.py
diffstat 8 files changed, 24 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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;
Binary file rhodecode/public/images/hgicon.png has changed
Binary file rhodecode/public/images/icons/success.png has changed
Binary file rhodecode/public/images/icons/warning.png has changed
--- 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 @@
 <html xmlns="http://www.w3.org/1999/xhtml" id="mainhtml">
 <head>
     <title>${next.title()}</title>
-    <link rel="icon" href="/images/hgicon.png" type="image/png" />
+    <link rel="icon" href="/images/icons/database_gear.png" type="image/png" />
     <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
     <meta name="robots" content="index, nofollow"/>
     <!-- stylesheets -->
--- 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 @@
     <head>
         <title>${_('Sign In')} - ${c.rhodecode_name}</title>
         <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
-        <link rel="icon" href="/images/hgicon.png" type="image/png" />
+        <link rel="icon" href="/images/icons/database_gear.png" type="image/png" />
         <meta name="robots" content="index, nofollow"/>
             
         <!-- stylesheets -->
--- 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