Changeset - cdf89e722ef6
[Not reviewed]
default
0 7 0
Mads Kiilerich - 11 years ago 2014-07-18 18:44:54
madski@unity3d.com
templates: don't use explicit uppercase style - shouting is rude
7 files changed with 6 insertions and 19 deletions:
0 comments (0 inline, 0 general)
kallithea/templates/admin/notifications/notifications.html
Show inline comments
 
@@ -21,11 +21,6 @@
 
    <!-- box / title -->
 
    <div class="title">
 
        ${self.breadcrumbs()}
 
        ##<ul class="links">
 
        ##    <li>
 
        ##      <span style="text-transform: uppercase;"><a href="#">${_('Compose message')}</a></span>
 
        ##    </li>
 
        ##</ul>
 
    </div>
 

	
 
      <div style="padding:14px 18px;text-align: right;float:left">
kallithea/templates/admin/notifications/show_notification.html
Show inline comments
 
@@ -23,11 +23,6 @@
 
    <!-- box / title -->
 
    <div class="title">
 
        ${self.breadcrumbs()}
 
        ##<ul class="links">
 
        ##    <li>
 
        ##      <span style="text-transform: uppercase;"><a href="#">${_('Compose message')}</a></span>
 
        ##    </li>
 
        ##</ul>
 
    </div>
 
    <div class="table">
 
      <div id="notification_${c.notification.notification_id}">
kallithea/templates/files/files.html
Show inline comments
 
@@ -30,7 +30,7 @@ ${self.repo_context_bar('files')}
 
        ${self.breadcrumbs()}
 
        <ul class="links">
 
            <li>
 
              <span style="text-transform: uppercase;"><a href="#">${_('Branch')}: ${c.changeset.branch}</a></span>
 
              <span><a href="#">${_('Branch')}: ${c.changeset.branch}</a></span>
 
            </li>
 
        </ul>
 
    </div>
kallithea/templates/files/files_add.html
Show inline comments
 
@@ -33,8 +33,7 @@ ${self.repo_context_bar('files')}
 
        ${self.breadcrumbs()}
 
        <ul class="links">
 
            <li>
 
              <span style="text-transform: uppercase;">
 
              <a href="#">${_('Branch')}: ${c.cs.branch}</a></span>
 
              <span><a href="#">${_('Branch')}: ${c.cs.branch}</a></span>
 
            </li>
 
        </ul>
 
    </div>
kallithea/templates/files/files_delete.html
Show inline comments
 
@@ -33,8 +33,7 @@ ${self.repo_context_bar('files')}
 
        ${self.breadcrumbs()}
 
        <ul class="links">
 
            <li>
 
              <span style="text-transform: uppercase;">
 
              <a href="#">${_('Branch')}: ${c.cs.branch}</a></span>
 
              <span><a href="#">${_('Branch')}: ${c.cs.branch}</a></span>
 
            </li>
 
        </ul>
 
    </div>
kallithea/templates/files/files_edit.html
Show inline comments
 
@@ -33,8 +33,7 @@ ${self.repo_context_bar('files')}
 
        ${self.breadcrumbs()}
 
        <ul class="links">
 
            <li>
 
              <span style="text-transform: uppercase;">
 
              <a href="#">${_('Branch')}: ${c.cs.branch}</a></span>
 
              <span><a href="#">${_('Branch')}: ${c.cs.branch}</a></span>
 
            </li>
 
        </ul>
 
    </div>
kallithea/tests/functional/test_files.py
Show inline comments
 
@@ -73,7 +73,7 @@ class TestFilesController(TestController
 
                                    revision='97e8b885c04894463c51898e14387d80c30ed1ee',
 
                                    f_path='/'))
 

	
 
        response.mustcontain("""<span style="text-transform: uppercase;"><a href="#">Branch: git</a></span>""")
 
        response.mustcontain("""<a href="#">Branch: git</a>""")
 

	
 
    def test_index_paging(self):
 
        self.log_user()
 
@@ -105,7 +105,7 @@ Improved test to clone into uniq reposit
 
removed extra unicode conversion in diff.</div>
 
""")
 

	
 
        response.mustcontain("""<span style="text-transform: uppercase;"><a href="#">Branch: default</a></span>""")
 
        response.mustcontain("""<a href="#">Branch: default</a>""")
 

	
 
    def test_file_source_history(self):
 
        self.log_user()
0 comments (0 inline, 0 general)