changeset 562:1a77a0c350f5

extended size of some input fields cleaned prints from tasks
author Marcin Kuzminski <marcin@python-works.com>
date Sat, 09 Oct 2010 01:38:10 +0200
parents 5f3b967d9d10
children ba7e24cd4786
files rhodecode/lib/celerylib/tasks.py rhodecode/templates/admin/repos/repo_add.html rhodecode/templates/admin/repos/repo_add_create_repository.html rhodecode/templates/admin/repos/repo_edit.html rhodecode/templates/settings/repo_fork.html rhodecode/templates/settings/repo_settings.html
diffstat 6 files changed, 6 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/rhodecode/lib/celerylib/tasks.py	Sat Oct 09 01:11:44 2010 +0200
+++ b/rhodecode/lib/celerylib/tasks.py	Sat Oct 09 01:38:10 2010 +0200
@@ -146,10 +146,8 @@
                 datadict["added"] += len(cs.added)
                 datadict["changed"] += len(cs.changed)
                 datadict["removed"] += len(cs.removed)
-                #print datadict
                 
             else:
-                #print 'ELSE !!!!'
                 if k >= ts_min_y and k <= ts_max_y or skip_date_limit:
                     
                     datadict = {"time":k,
@@ -162,7 +160,6 @@
                         [author_key_cleaner(cs.author)]['data'].append(datadict)
                                         
         else:
-            #print k, 'nokey ADDING'
             if k >= ts_min_y and k <= ts_max_y or skip_date_limit:
                 commits_by_day_author_aggregate[author_key_cleaner(cs.author)] = {
                                     "label":author_key_cleaner(cs.author),
@@ -175,7 +172,7 @@
                                     "schema":["commits"],
                                     }               
     
-#        #gather all data by day
+        #gather all data by day
         if commits_by_day_aggregate.has_key(k):
             commits_by_day_aggregate[k] += 1
         else:
--- a/rhodecode/templates/admin/repos/repo_add.html	Sat Oct 09 01:11:44 2010 +0200
+++ b/rhodecode/templates/admin/repos/repo_add.html	Sat Oct 09 01:38:10 2010 +0200
@@ -31,7 +31,7 @@
 	                <label for="repo_name">${_('Name')}:</label>
 	            </div>
 	            <div class="input">
-	                ${h.text('repo_name',c.new_repo)}
+	                ${h.text('repo_name',c.new_repo,class_="small")}
 	            </div>
              </div>
             <div class="field">
--- a/rhodecode/templates/admin/repos/repo_add_create_repository.html	Sat Oct 09 01:11:44 2010 +0200
+++ b/rhodecode/templates/admin/repos/repo_add_create_repository.html	Sat Oct 09 01:38:10 2010 +0200
@@ -27,7 +27,7 @@
 	                <label for="repo_name">${_('Name')}:</label>
 	            </div>
 	            <div class="input">
-	                ${h.text('repo_name',c.new_repo)}
+	                ${h.text('repo_name',c.new_repo,class_="small")}
 	                ${h.hidden('user_created','True')}
 	            </div>
              </div>
--- a/rhodecode/templates/admin/repos/repo_edit.html	Sat Oct 09 01:11:44 2010 +0200
+++ b/rhodecode/templates/admin/repos/repo_edit.html	Sat Oct 09 01:38:10 2010 +0200
@@ -32,7 +32,7 @@
                     <label for="repo_name">${_('Name')}:</label>
                 </div>
                 <div class="input input-medium">
-                    ${h.text('repo_name')}
+                    ${h.text('repo_name',class_="small")}
                 </div>
              </div>
              
--- a/rhodecode/templates/settings/repo_fork.html	Sat Oct 09 01:11:44 2010 +0200
+++ b/rhodecode/templates/settings/repo_fork.html	Sat Oct 09 01:38:10 2010 +0200
@@ -29,7 +29,7 @@
 	                <label for="repo_name">${_('Fork name')}:</label>
 	            </div>
 	            <div class="input">
-	                ${h.text('fork_name')}
+	                ${h.text('fork_name',class_="small")}
 	            </div>
              </div>
             <div class="field">
--- a/rhodecode/templates/settings/repo_settings.html	Sat Oct 09 01:11:44 2010 +0200
+++ b/rhodecode/templates/settings/repo_settings.html	Sat Oct 09 01:38:10 2010 +0200
@@ -29,7 +29,7 @@
                     <label for="repo_name">${_('Name')}:</label>
                 </div>
                 <div class="input input-medium">
-                    ${h.text('repo_name')}
+                    ${h.text('repo_name',class_="small")}
                 </div>
              </div>