Show More
@@ -94,7 +94,7 b' def _ignorews_url(fileid=None):' | |||||
94 |
|
94 | |||
95 | params['anchor'] = fileid |
|
95 | params['anchor'] = fileid | |
96 | img = h.image('/images/icons/text_strikethrough.png', lbl, class_='icon') |
|
96 | img = h.image('/images/icons/text_strikethrough.png', lbl, class_='icon') | |
97 | return h.link_to(img, h.url.current(**params), title=lbl) |
|
97 | return h.link_to(img, h.url.current(**params), title=lbl, class_='tooltip') | |
98 |
|
98 | |||
99 |
|
99 | |||
100 | def get_line_ctx(fid, GET): |
|
100 | def get_line_ctx(fid, GET): | |
@@ -145,7 +145,7 b' def _context_url(fileid=None):' | |||||
145 |
|
145 | |||
146 | params['anchor'] = fileid |
|
146 | params['anchor'] = fileid | |
147 | img = h.image('/images/icons/table_add.png', lbl, class_='icon') |
|
147 | img = h.image('/images/icons/table_add.png', lbl, class_='icon') | |
148 | return h.link_to(img, h.url.current(**params), title=lbl) |
|
148 | return h.link_to(img, h.url.current(**params), title=lbl, class_='tooltip') | |
149 |
|
149 | |||
150 |
|
150 | |||
151 | class ChangesetController(BaseRepoController): |
|
151 | class ChangesetController(BaseRepoController): |
@@ -31,8 +31,8 b'' | |||||
31 | R${c.changeset.revision}:${h.link_to(h.short_id(c.changeset.raw_id),h.url('changeset_home',repo_name=c.repo_name,revision=c.changeset.raw_id))} |
|
31 | R${c.changeset.revision}:${h.link_to(h.short_id(c.changeset.raw_id),h.url('changeset_home',repo_name=c.repo_name,revision=c.changeset.raw_id))} | |
32 | ${c.changeset.date}</div> |
|
32 | ${c.changeset.date}</div> | |
33 | <div class="diff-actions"> |
|
33 | <div class="diff-actions"> | |
34 | <a href="${h.url('raw_changeset_home',repo_name=c.repo_name,revision=c.changeset.raw_id,diff='show')}" title="${_('raw diff')}"><img class="icon" src="${h.url('/images/icons/page_white.png')}"/></a> |
|
34 | <a href="${h.url('raw_changeset_home',repo_name=c.repo_name,revision=c.changeset.raw_id,diff='show')}" title="${_('raw diff')}" class="tooltip"><img class="icon" src="${h.url('/images/icons/page_white.png')}"/></a> | |
35 | <a href="${h.url('raw_changeset_home',repo_name=c.repo_name,revision=c.changeset.raw_id,diff='download')}" title="${_('download diff')}"><img class="icon" src="${h.url('/images/icons/page_white_get.png')}"/></a> |
|
35 | <a href="${h.url('raw_changeset_home',repo_name=c.repo_name,revision=c.changeset.raw_id,diff='download')}" title="${_('download diff')}" class="tooltip"><img class="icon" src="${h.url('/images/icons/page_white_get.png')}"/></a> | |
36 | ${c.ignorews_url()} |
|
36 | ${c.ignorews_url()} | |
37 | ${c.context_url()} |
|
37 | ${c.context_url()} | |
38 | </div> |
|
38 | </div> |
@@ -16,9 +16,9 b'' | |||||
16 | revision=filenode.changeset.raw_id,f_path=h.safe_unicode(filenode.path)))} |
|
16 | revision=filenode.changeset.raw_id,f_path=h.safe_unicode(filenode.path)))} | |
17 | </div> |
|
17 | </div> | |
18 | <div class="diff-actions"> |
|
18 | <div class="diff-actions"> | |
19 | <a href="${h.url('files_diff_home',repo_name=c.repo_name,f_path=h.safe_unicode(filenode.path),diff2=cs2,diff1=cs1,diff='diff',fulldiff=1)}" title="${_('diff')}"><img class="icon" src="${h.url('/images/icons/page_white_go.png')}"/></a> |
|
19 | <a href="${h.url('files_diff_home',repo_name=c.repo_name,f_path=h.safe_unicode(filenode.path),diff2=cs2,diff1=cs1,diff='diff',fulldiff=1)}" title="${_('diff')}" class="tooltip"><img class="icon" src="${h.url('/images/icons/page_white_go.png')}"/></a> | |
20 | <a href="${h.url('files_diff_home',repo_name=c.repo_name,f_path=h.safe_unicode(filenode.path),diff2=cs2,diff1=cs1,diff='raw')}" title="${_('raw diff')}"><img class="icon" src="${h.url('/images/icons/page_white.png')}"/></a> |
|
20 | <a href="${h.url('files_diff_home',repo_name=c.repo_name,f_path=h.safe_unicode(filenode.path),diff2=cs2,diff1=cs1,diff='raw')}" title="${_('raw diff')}" class="tooltip"><img class="icon" src="${h.url('/images/icons/page_white.png')}"/></a> | |
21 | <a href="${h.url('files_diff_home',repo_name=c.repo_name,f_path=h.safe_unicode(filenode.path),diff2=cs2,diff1=cs1,diff='download')}" title="${_('download diff')}"><img class="icon" src="${h.url('/images/icons/page_white_get.png')}"/></a> |
|
21 | <a href="${h.url('files_diff_home',repo_name=c.repo_name,f_path=h.safe_unicode(filenode.path),diff2=cs2,diff1=cs1,diff='download')}" title="${_('download diff')}" class="tooltip"><img class="icon" src="${h.url('/images/icons/page_white_get.png')}"/></a> | |
22 | ${c.ignorews_url(h.FID(filenode.changeset.raw_id,filenode.path))} |
|
22 | ${c.ignorews_url(h.FID(filenode.changeset.raw_id,filenode.path))} | |
23 | ${c.context_url(h.FID(filenode.changeset.raw_id,filenode.path))} |
|
23 | ${c.context_url(h.FID(filenode.changeset.raw_id,filenode.path))} | |
24 | </div> |
|
24 | </div> |
General Comments 0
You need to be logged in to leave comments.
Login now