Changeset - 23c2a0e6df0b
[Not reviewed]
beta
3 5 0
Marcin Kuzminski - 15 years ago 2010-11-13 00:23:36
marcin@python-works.com
changed official rhodecode favicon, from hg to some more generic
removed some unneded icons
update setup to add changelog
8 files changed with 24 insertions and 6 deletions:
0 comments (0 inline, 0 general)
docs/changelog.rst
Show inline comments
 
@@ -18,7 +18,7 @@ Changelog
 
- 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
rhodecode/public/css/style.css
Show inline comments
 
@@ -393,7 +393,7 @@ right:200px;
 
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 @@ margin:0;
 
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;
rhodecode/public/images/hgicon.png
Show inline comments
 
deleted file
 
binary diff not shown
Show images
rhodecode/public/images/icons/success.png
Show inline comments
 
deleted file
 
binary diff not shown
Show images
rhodecode/public/images/icons/warning.png
Show inline comments
 
deleted file
 
binary diff not shown
Show images
rhodecode/templates/base/base.html
Show inline comments
 
@@ -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 -->
rhodecode/templates/login.html
Show inline comments
 
@@ -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 -->
setup.py
Show inline comments
 
@@ -39,10 +39,14 @@ description = ('Mercurial and Git reposi
 
#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
 

	
 

	
0 comments (0 inline, 0 general)