##// END OF EJS Templates
shortlog: show all refs (bookmarks,tags,branches) in one dedicated column...
marcink -
r3707:93de0349 beta
parent child Browse files
Show More
@@ -2637,7 +2637,7 b' h3.files_location {'
2637 2637 left: initial;
2638 2638 }
2639 2639
2640 #graph_content .logtags .bookbook,
2640 #graph_content .logtags .booktag,
2641 2641 #graph_content .logtags .tagtag {
2642 2642 float: left;
2643 2643 line-height: 1em;
@@ -2761,9 +2761,15 b' h3.files_location {'
2761 2761 margin: 0px 2px;
2762 2762 }
2763 2763
2764 #shortlog_data .branchtag,
2765 #shortlog_data .booktag,
2766 #shortlog_data .tagtag {
2767 margin: 0px 2px;
2768 }
2769
2764 2770 .branchtag,
2765 2771 .tagtag,
2766 .bookbook,
2772 .booktag,
2767 2773 .spantag {
2768 2774 padding: 1px 3px 1px 3px;
2769 2775 font-size: 10px;
@@ -2777,14 +2783,14 b' h3.files_location {'
2777 2783
2778 2784 #graph_content .branchtag,
2779 2785 #graph_content .tagtag,
2780 #graph_content .bookbook {
2786 #graph_content .booktag {
2781 2787 margin: 1.1em 0;
2782 2788 margin-right: 0.5em;
2783 2789 }
2784 2790
2785 2791 .branchtag,
2786 2792 .tagtag,
2787 .bookbook {
2793 .booktag {
2788 2794 float: left;
2789 2795 }
2790 2796
@@ -2797,7 +2803,7 b' h3.files_location {'
2797 2803 display: block;
2798 2804 }
2799 2805
2800 .bookbook {
2806 .booktag {
2801 2807 border-color: #46A546;
2802 2808 color: #46A546;
2803 2809 }
@@ -2831,7 +2837,7 b' h3.files_location {'
2831 2837 text-decoration: none;
2832 2838 color: inherit;
2833 2839 }
2834 .logbooks .bookbook, .logbooks .bookbook, .logtags .bookbook, .logtags .bookbook {
2840 .logbooks .booktag, .logbooks .booktag, .logtags .booktag, .logtags .booktag {
2835 2841 padding: 1px 3px 1px 3px;
2836 2842 background-color: #46A546;
2837 2843 font-size: 10px;
@@ -2840,14 +2846,14 b' h3.files_location {'
2840 2846 -webkit-border-radius: 3px;
2841 2847 border-radius: 3px;
2842 2848 }
2843 .logbooks .bookbook, .logbooks .bookbook a, .right .logtags .bookbook, .logtags .bookbook a {
2849 .logbooks .booktag, .logbooks .booktag a, .right .logtags .booktag, .logtags .booktag a {
2844 2850 color: #ffffff;
2845 2851 }
2846 2852
2847 .logbooks .bookbook, .logbooks .bookbook a:hover,
2848 .logtags .bookbook, .logtags .bookbook a:hover,
2849 .bookbook a,
2850 .bookbook a:hover {
2853 .logbooks .booktag, .logbooks .booktag a:hover,
2854 .logtags .booktag, .logtags .booktag a:hover,
2855 .booktag a,
2856 .booktag a:hover {
2851 2857 text-decoration: none;
2852 2858 color: inherit;
2853 2859 }
@@ -67,7 +67,7 b" myDataTable.subscribe('postRenderEvent',"
67 67 var func = function(node){
68 68 return node.parentNode.parentNode.parentNode.parentNode.parentNode;
69 69 }
70 q_filter('q_filter_bookmarks',YUQ('div.table tr td .logbooks .bookbook a'),func);
70 q_filter('q_filter_bookmarks',YUQ('div.table tr td .logbooks .booktag a'),func);
71 71 });
72 72
73 73 </script>
@@ -13,7 +13,7 b''
13 13 <tr class="parity${cnt%2}">
14 14 <td>
15 15 <span class="logbooks">
16 <span class="bookbook">${h.link_to(book[0],
16 <span class="booktag">${h.link_to(book[0],
17 17 h.url('files_home',repo_name=c.repo_name,revision=book[1].raw_id))}</span>
18 18 </span>
19 19 </td>
@@ -98,7 +98,7 b''
98 98 %endif
99 99 %if h.is_hg(c.rhodecode_repo):
100 100 %for book in cs.bookmarks:
101 <div class="bookbook" title="${_('Bookmark %s') % book}">
101 <div class="booktag" title="${_('Bookmark %s') % book}">
102 102 ${h.link_to(h.shorter(book),h.url('files_home',repo_name=c.repo_name,revision=cs.raw_id))}
103 103 </div>
104 104 %endfor
@@ -83,7 +83,7 b''
83 83 %endif
84 84 %if h.is_hg(c.rhodecode_repo):
85 85 %for book in cs.bookmarks:
86 <span class="bookbook" title="${_('Bookmark %s') % book}">
86 <span class="booktag" title="${_('Bookmark %s') % book}">
87 87 ${h.link_to(h.shorter(book),h.url('files_home',repo_name=c.repo_name,revision=cs.raw_id))}
88 88 </span>
89 89 %endfor
@@ -6,8 +6,7 b''
6 6 <th class="left">${_('Commit message')}</th>
7 7 <th class="left">${_('Age')}</th>
8 8 <th class="left">${_('Author')}</th>
9 <th class="left">${_('Branch')}</th>
10 <th class="left">${_('Tags')}</th>
9 <th class="left">${_('Refs')}</th>
11 10 </tr>
12 11 %for cnt,cs in enumerate(c.repo_changesets):
13 12 <tr class="parity${cnt%2}">
@@ -37,20 +36,23 b''
37 36 </td>
38 37 <td title="${cs.author}">${h.person(cs.author)}</td>
39 38 <td>
40 <span class="logtags">
41 %if cs.branch:
42 <span class="branchtag">
43 ${cs.branch}
44 </span>
45 %endif
46 </span>
47 </td>
48 <td>
49 <span class="logtags">
50 %for tag in cs.tags:
51 <span class="tagtag">${tag}</span>
39 %if h.is_hg(c.rhodecode_repo):
40 %for book in cs.bookmarks:
41 <div class="booktag" title="${_('Bookmark %s') % book}">
42 ${h.link_to(h.shorter(book),h.url('files_home',repo_name=c.repo_name,revision=cs.raw_id))}
43 </div>
52 44 %endfor
53 </span>
45 %endif
46 %for tag in cs.tags:
47 <div class="tagtag" title="${_('Tag %s') % tag}">
48 ${h.link_to(h.shorter(tag),h.url('files_home',repo_name=c.repo_name,revision=cs.raw_id))}
49 </div>
50 %endfor
51 %if cs.branch:
52 <div class="branchtag" title="${_('Branch %s' % cs.branch)}">
53 ${h.link_to(h.shorter(cs.branch),h.url('changelog_home',repo_name=c.repo_name,branch=cs.branch))}
54 </div>
55 %endif
54 56 </td>
55 57 </tr>
56 58 %endfor
General Comments 0
You need to be logged in to leave comments. Login now