Changeset - 647e7e0ce812
[Not reviewed]
kallithea/public/css/style.css
Show inline comments
 
@@ -50,9 +50,6 @@ div.formatted-fixed,
 
.changeset_hash {
 
  font-family: Lucida Console, Consolas, Monaco, Inconsolata, Liberation Mono, monospace;
 
}
 
.empty_data {
 
  color: #B9B9B9;
 
}
 
.inline-comments-general.show-general-status .hidden.general-only {
 
  display: block !important;
 
}
kallithea/public/less/style.less
Show inline comments
 
@@ -54,9 +54,7 @@ div.formatted-fixed,
 
.changeset_hash {
 
  font-family: Lucida Console, Consolas, Monaco, Inconsolata, Liberation Mono, monospace;
 
}
 
.empty_data {
 
  color: #B9B9B9;
 
}
 

	
 
.inline-comments-general.show-general-status .hidden.general-only {
 
  display: block !important;
 
}
kallithea/templates/admin/user_groups/user_group_edit_members.html
Show inline comments
 
@@ -8,5 +8,5 @@
 
  %endfor
 
  </ul>
 
%else:
 
    <span class="empty_data">${_('No members yet')}</span>
 
    <span class="text-muted">${_('No members yet')}</span>
 
%endif
kallithea/templates/base/perms_summary.html
Show inline comments
 
@@ -19,7 +19,7 @@
 
            %endif
 
        </div>
 
        %if not permissions[section]:
 
            <span class="empty_data">${_('No permissions defined yet')}</span>
 
            <span class="text-muted">${_('No permissions defined yet')}</span>
 
        %else:
 
        <div id='tbl_list_wrap_${section}'>
 
         <table id="tbl_list_${section}" class="table">
kallithea/templates/compare/compare_cs.html
Show inline comments
 
@@ -2,7 +2,7 @@
 
<%namespace name="changelog_table" file="/changelog/changelog_table.html"/>
 
<div>
 
  %if not c.cs_ranges:
 
    <span class="empty_data">${_('No changesets')}</span>
 
    <span class="text-muted">${_('No changesets')}</span>
 
  %else:
 

	
 
    %if c.ancestors:
kallithea/templates/compare/compare_diff.html
Show inline comments
 
@@ -66,7 +66,7 @@ ${self.repo_context_bar('changelog')}
 
                </h5>
 
                <div class="cs_files">
 
                  %if not c.file_diff_data:
 
                     <span class="empty_data">${_('No files')}</span>
 
                     <span class="text-muted">${_('No files')}</span>
 
                  %endif
 
                  %for fid, url_fid, op, a_path, path, diff, stats in c.file_diff_data:
 
                    <div class="cs_${op} clearfix">
kallithea/templates/pullrequests/pullrequest_data.html
Show inline comments
 
@@ -3,7 +3,7 @@
 
<%def name="pullrequest_overview(pullrequests)">
 

	
 
%if not len(pullrequests):
 
    <div class="empty_data">${_('No entries')}</div>
 
    <div class="text-muted">${_('No entries')}</div>
 
    <% return %>
 
%endif
 

	
kallithea/templates/pullrequests/pullrequest_show.html
Show inline comments
 
@@ -303,7 +303,7 @@ ${self.repo_context_bar('showpullrequest
 
              </h5>
 
              <div class="cs_files">
 
                %if not c.file_diff_data:
 
                   <span class="empty_data">${_('No files')}</span>
 
                   <span class="text-muted">${_('No files')}</span>
 
                %endif
 
                %for fid, url_fid, op, a_path, path, diff, stats in c.file_diff_data:
 
                    <div class="cs_${op} clearfix">
kallithea/tests/functional/test_compare_local.py
Show inline comments
 
@@ -126,8 +126,8 @@ class TestCompareController(TestControll
 
        response.mustcontain('%s@default' % (HG_REPO))
 
        response.mustcontain('%s@default' % (HG_REPO))
 
        # branch are equal
 
        response.mustcontain('<span class="empty_data">No files</span>')
 
        response.mustcontain('<span class="empty_data">No changesets</span>')
 
        response.mustcontain('<span class="text-muted">No files</span>')
 
        response.mustcontain('<span class="text-muted">No changesets</span>')
 

	
 
    def test_index_branch_git(self):
 
        self.log_user()
 
@@ -142,8 +142,8 @@ class TestCompareController(TestControll
 
        response.mustcontain('%s@master' % (GIT_REPO))
 
        response.mustcontain('%s@master' % (GIT_REPO))
 
        # branch are equal
 
        response.mustcontain('<span class="empty_data">No files</span>')
 
        response.mustcontain('<span class="empty_data">No changesets</span>')
 
        response.mustcontain('<span class="text-muted">No files</span>')
 
        response.mustcontain('<span class="text-muted">No changesets</span>')
 

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