##// END OF EJS Templates
html: move "Submit a bug" to make it more clear that it is for RhodeCode, not the repo...
html: move "Submit a bug" to make it more clear that it is for RhodeCode, not the repo RhodeCode _could_ contain a bug tracker and this link _could_ be for filing bugs for the hosted projects. Moving the link to the RhodeCode info makes it more clear that it is for RhodeCode bugs. The server instance is however something local, not directly related to the upstream.

File last commit:

r3707:93de0349 beta
r3779:e61a656b beta
Show More
bookmarks.html
76 lines | 2.1 KiB | text/html | HtmlLexer
implements #135 bookmark support for UI
r1748 ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
improved title consistency...
r3582 ${_('%s Bookmarks') % c.repo_name} &middot; ${c.rhodecode_name}
implements #135 bookmark support for UI
r1748 </%def>
<%def name="breadcrumbs_links()">
use placeholders in qfilter, not the ugly JS logic
r3665 <input class="q_filter_box" id="q_filter_bookmarks" size="15" type="text" name="filter" placeholder="${_('quick filter...')}" value=""/>
Leonardo
Fixing missing icons....
r3532 ${_('Bookmarks')}
implements #135 bookmark support for UI
r1748 </%def>
<%def name="page_nav()">
Mads Kiilerich
use valid options for the top menu: repositories, journal, search and admin
r3603 ${self.menu('repositories')}
implements #135 bookmark support for UI
r1748 </%def>
Mads Kiilerich
repository pages: cleanup of use of repository context menu
r3601
implements #135 bookmark support for UI
r1748 <%def name="main()">
Mads Kiilerich
repository pages: cleanup of use of repository context menu
r3601 ${self.context_bar('switch-to')}
implements #135 bookmark support for UI
r1748 <div class="box">
<!-- box / title -->
<div class="title">
${self.breadcrumbs()}
</div>
<!-- end box / title -->
<div class="table">
<%include file='bookmarks_data.html'/>
</div>
</div>
Mads Kiilerich
repository pages: cleanup of use of repository context menu
r3601
implements #135 bookmark support for UI
r1748 <script type="text/javascript">
added sorting to bookmarks tags and branches
r1782
// main table sorting
var myColumnDefs = [
{key:"name",label:"${_('Name')}",sortable:true},
{key:"date",label:"${_('Date')}",sortable:true,
sortOptions: { sortFunction: dateSort }},
{key:"author",label:"${_('Author')}",sortable:true},
{key:"revision",label:"${_('Revision')}",sortable:true,
sortOptions: { sortFunction: revisionSort }},
];
var myDataSource = new YAHOO.util.DataSource(YUD.get("bookmarks_data"));
myDataSource.responseType = YAHOO.util.DataSource.TYPE_HTMLTABLE;
myDataSource.responseSchema = {
fields: [
{key:"name"},
{key:"date"},
{key:"author"},
{key:"revision"},
]
};
var myDataTable = new YAHOO.widget.DataTable("table_wrap", myColumnDefs, myDataSource,
{
sortedBy:{key:"name",dir:"asc"},
MSG_SORTASC:"${_('Click to sort ascending')}",
MSG_SORTDESC:"${_('Click to sort descending')}",
MSG_EMPTY:"${_('No records found.')}",
MSG_ERROR:"${_('Data error.')}",
White-space cleanup
r1888 MSG_LOADING:"${_('Loading...')}",
added sorting to bookmarks tags and branches
r1782 }
);
myDataTable.subscribe('postRenderEvent',function(oArgs) {
tooltip_activate();
var func = function(node){
return node.parentNode.parentNode.parentNode.parentNode.parentNode;
}
shortlog: show all refs (bookmarks,tags,branches) in one dedicated column...
r3707 q_filter('q_filter_bookmarks',YUQ('div.table tr td .logbooks .booktag a'),func);
White-space cleanup
r1888 });
added sorting to bookmarks tags and branches
r1782
implements #135 bookmark support for UI
r1748 </script>
added sorting to bookmarks tags and branches
r1782
White-space cleanup
r1888 </%def>