##// END OF EJS Templates
Update minified YUI to version 2.9 built from Source....
Update minified YUI to version 2.9 built from Source. yui.2.9.js used to be a minified version of YUI 2.9 until 5143b8df576c updated it to something else and applied more aggresive minification. We stick to a clean but minified version 2.9. The license of YUI is BSD 3-clause, as described on http://yuilibrary.com/license/ . Since the minified version combines with GPLv3'd Javascript, it is only GPLv3'd compliant to distribute this Object Code version with the Corresponding Source (or offer therefor). This yui.2.9.js is built from Source this way: git clone https://github.com/yui/builder git clone https://github.com/yui/yui2 cd yui2/ git checkout hudson-yui2-2800 ln -sf JumpToPageDropDown.js src/paginator/js/JumpToPageDropdown.js # work around inconsistent casing rm -f tmp.js for m in yahoo event dom connection animation dragdrop element datasource autocomplete container event-delegate json datatable paginator; do rm -f build/$m/$m.js; ( cd src/$m && ant build deploybuild ) && sed -e 's,@VERSION@,2.9.0,g' -e 's,@BUILD@,2800,g' build/$m/$m.js >> tmp.js done java -jar ../builder/componentbuild/lib/yuicompressor/yuicompressor-2.4.4.jar tmp.js -o yui.2.9.js The source is mirrored and available on https://kallithea-scm.org/repos/mirror .

File last commit:

r4116:ffd45b18 rhodecode-2.2.5-gpl
r4131:31f510a8 rhodecode-2.2.5-gpl
Show More
bookmarks.html
99 lines | 3.0 KiB | text/html | HtmlLexer
implements #135 bookmark support for UI
r1748 ## -*- coding: utf-8 -*-
<%inherit file="/base/base.html"/>
<%def name="title()">
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 ${_('%s Bookmarks') % c.repo_name}
%if c.rhodecode_name:
&middot; ${c.rhodecode_name}
%endif
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
templates: drop context_bar, use repo_context_bar directly
r3988 ${self.repo_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 -->
added compare option into bookmarks
r3798 %if c.repo_bookmarks:
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 <div class="info_box" id="compare_bookmarks" style="clear: both;padding: 10px 19px;text-align: right;"><a href="#" class="btn btn-mini">${_('Compare Bookmarks')}</a></div>
added compare option into bookmarks
r3798 %endif
implements #135 bookmark support for UI
r1748 <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 compare option into bookmarks
r3798 YUE.on('compare_bookmarks','click',function(e){
YUE.preventDefault(e);
var org = YUQ('input[name=compare_org]:checked')[0];
var other = YUQ('input[name=compare_other]:checked')[0];
added sorting to bookmarks tags and branches
r1782
added compare option into bookmarks
r3798 if(org && other){
var compare_url = "${h.url('compare_url',repo_name=c.repo_name,org_ref_type='book',org_ref='__ORG__',other_ref_type='book',other_ref='__OTHER__')}";
var u = compare_url.replace('__ORG__',org.value)
.replace('__OTHER__',other.value);
window.location=u;
}
});
added sorting to bookmarks tags and branches
r1782 // main table sorting
var myColumnDefs = [
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 {key:"name",label:"${_('Name')}",sortable:true,
sortOptions: { sortFunction: nameSort }},
added sorting to bookmarks tags and branches
r1782 {key:"date",label:"${_('Date')}",sortable:true,
sortOptions: { sortFunction: dateSort }},
{key:"author",label:"${_('Author')}",sortable:true},
{key:"revision",label:"${_('Revision')}",sortable:true,
sortOptions: { sortFunction: revisionSort }},
added compare option into bookmarks
r3798 {key:"compare",label:"${_('Compare')}",sortable:false,},
added sorting to bookmarks tags and branches
r1782 ];
var myDataSource = new YAHOO.util.DataSource(YUD.get("bookmarks_data"));
myDataSource.responseType = YAHOO.util.DataSource.TYPE_HTMLTABLE;
myDataSource.responseSchema = {
fields: [
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 {key:"raw_name"},
added sorting to bookmarks tags and branches
r1782 {key:"name"},
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 {key:"raw_date"},
added sorting to bookmarks tags and branches
r1782 {key:"date"},
{key:"author"},
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 {key:"last_rev_raw"},
added sorting to bookmarks tags and branches
r1782 {key:"revision"},
added compare option into bookmarks
r3798 {key:"compare"},
added sorting to bookmarks tags and branches
r1782 ]
};
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>