annotate rhodecode/public/js/rhodecode.js @ 4135:cc28a05562d3 rhodecode-2.2.5-gpl

Clarify copyright and license of PyRoutes.JS
author Bradley M. Kuhn <bkuhn@sfconservancy.org>
date Wed, 02 Jul 2014 19:03:18 -0400
parents 182a25646cf4
children bc296381fb6c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1421
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
1 /**
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
2 RhodeCode JS Files
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
3 **/
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
4
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
5 if (typeof console == "undefined" || typeof console.log == "undefined"){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
6 console = { log: function() {} }
1421
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
7 }
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
8
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
9
1699
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
10 var str_repeat = function(i, m) {
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
11 for (var o = []; m > 0; o[--m] = i);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
12 return o.join('');
1699
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
13 };
1421
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
14
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
15 /**
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
16 * INJECT .format function into String
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
17 * Usage: "My name is {0} {1}".format("Johny","Bravo")
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
18 * Return "My name is Johny Bravo"
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
19 * Inspired by https://gist.github.com/1049426
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
20 */
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
21 String.prototype.format = function() {
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
22
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
23 function format() {
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
24 var str = this;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
25 var len = arguments.length+1;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
26 var safe = undefined;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
27 var arg = undefined;
1421
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
28
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
29 // For each {0} {1} {n...} replace with the argument in that position. If
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
30 // the argument is an object or an array it will be stringified to JSON.
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
31 for (var i=0; i < len; arg = arguments[i++]) {
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
32 safe = typeof arg === 'object' ? JSON.stringify(arg) : arg;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
33 str = str.replace(RegExp('\\{'+(i-1)+'\\}', 'g'), safe);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
34 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
35 return str;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
36 }
1421
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
37
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
38 // Save a reference of what may already exist under the property native.
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
39 // Allows for doing something like: if("".format.native) { /* use native */ }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
40 format.native = String.prototype.format;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
41
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
42 // Replace the prototype property
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
43 return format;
1421
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
44
1458
9d9e491e2a21 added author to main page tooltip
Marcin Kuzminski <marcin@python-works.com>
parents: 1426
diff changeset
45 }();
1421
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
46
2369
c2f131502037 Autocomplete fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 2368
diff changeset
47 String.prototype.strip = function(char) {
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
48 if(char === undefined){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
49 char = '\\s';
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
50 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
51 return this.replace(new RegExp('^'+char+'+|'+char+'+$','g'), '');
2369
c2f131502037 Autocomplete fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 2368
diff changeset
52 }
c2f131502037 Autocomplete fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 2368
diff changeset
53 String.prototype.lstrip = function(char) {
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
54 if(char === undefined){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
55 char = '\\s';
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
56 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
57 return this.replace(new RegExp('^'+char+'+'),'');
2369
c2f131502037 Autocomplete fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 2368
diff changeset
58 }
c2f131502037 Autocomplete fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 2368
diff changeset
59 String.prototype.rstrip = function(char) {
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
60 if(char === undefined){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
61 char = '\\s';
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
62 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
63 return this.replace(new RegExp(''+char+'+$'),'');
2369
c2f131502037 Autocomplete fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 2368
diff changeset
64 }
1465
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
65
2612
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
66
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
67 if(!Array.prototype.indexOf) {
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
68 Array.prototype.indexOf = function(needle) {
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
69 for(var i = 0; i < this.length; i++) {
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
70 if(this[i] === needle) {
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
71 return i;
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
72 }
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
73 }
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
74 return -1;
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
75 };
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
76 }
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
77
2698
4debfe3b50be ie8 fixes for inline comments :/
Marcin Kuzminski <marcin@python-works.com>
parents: 2694
diff changeset
78 // IE(CRAP) doesn't support previousElementSibling
4debfe3b50be ie8 fixes for inline comments :/
Marcin Kuzminski <marcin@python-works.com>
parents: 2694
diff changeset
79 var prevElementSibling = function( el ) {
4debfe3b50be ie8 fixes for inline comments :/
Marcin Kuzminski <marcin@python-works.com>
parents: 2694
diff changeset
80 if( el.previousElementSibling ) {
4debfe3b50be ie8 fixes for inline comments :/
Marcin Kuzminski <marcin@python-works.com>
parents: 2694
diff changeset
81 return el.previousElementSibling;
4debfe3b50be ie8 fixes for inline comments :/
Marcin Kuzminski <marcin@python-works.com>
parents: 2694
diff changeset
82 } else {
4debfe3b50be ie8 fixes for inline comments :/
Marcin Kuzminski <marcin@python-works.com>
parents: 2694
diff changeset
83 while( el = el.previousSibling ) {
4debfe3b50be ie8 fixes for inline comments :/
Marcin Kuzminski <marcin@python-works.com>
parents: 2694
diff changeset
84 if( el.nodeType === 1 ) return el;
4debfe3b50be ie8 fixes for inline comments :/
Marcin Kuzminski <marcin@python-works.com>
parents: 2694
diff changeset
85 }
4debfe3b50be ie8 fixes for inline comments :/
Marcin Kuzminski <marcin@python-works.com>
parents: 2694
diff changeset
86 }
4debfe3b50be ie8 fixes for inline comments :/
Marcin Kuzminski <marcin@python-works.com>
parents: 2694
diff changeset
87 }
4debfe3b50be ie8 fixes for inline comments :/
Marcin Kuzminski <marcin@python-works.com>
parents: 2694
diff changeset
88
1465
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
89 /**
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
90 * SmartColorGenerator
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
91 *
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
92 *usage::
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
93 * var CG = new ColorGenerator();
1465
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
94 * var col = CG.getColor(key); //returns array of RGB
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
95 * 'rgb({0})'.format(col.join(',')
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
96 *
1465
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
97 * @returns {ColorGenerator}
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
98 */
1699
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
99 var ColorGenerator = function(){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
100 this.GOLDEN_RATIO = 0.618033988749895;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
101 this.CURRENT_RATIO = 0.22717784590367374 // this can be random
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
102 this.HSV_1 = 0.75;//saturation
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
103 this.HSV_2 = 0.95;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
104 this.color;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
105 this.cacheColorMap = {};
1465
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
106 };
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
107
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
108 ColorGenerator.prototype = {
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
109 getColor:function(key){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
110 if(this.cacheColorMap[key] !== undefined){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
111 return this.cacheColorMap[key];
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
112 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
113 else{
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
114 this.cacheColorMap[key] = this.generateColor();
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
115 return this.cacheColorMap[key];
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
116 }
1465
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
117 },
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
118 _hsvToRgb:function(h,s,v){
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
119 if (s == 0.0)
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
120 return [v, v, v];
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
121 i = parseInt(h * 6.0)
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
122 f = (h * 6.0) - i
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
123 p = v * (1.0 - s)
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
124 q = v * (1.0 - s * f)
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
125 t = v * (1.0 - s * (1.0 - f))
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
126 i = i % 6
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
127 if (i == 0)
1465
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
128 return [v, t, p]
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
129 if (i == 1)
1465
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
130 return [q, v, p]
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
131 if (i == 2)
1465
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
132 return [p, v, t]
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
133 if (i == 3)
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
134 return [p, q, v]
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
135 if (i == 4)
1465
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
136 return [t, p, v]
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
137 if (i == 5)
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
138 return [v, p, q]
1465
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
139 },
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
140 generateColor:function(){
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
141 this.CURRENT_RATIO = this.CURRENT_RATIO+this.GOLDEN_RATIO;
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
142 this.CURRENT_RATIO = this.CURRENT_RATIO %= 1;
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
143 HSV_tuple = [this.CURRENT_RATIO, this.HSV_1, this.HSV_2]
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
144 RGB_tuple = this._hsvToRgb(HSV_tuple[0],HSV_tuple[1],HSV_tuple[2]);
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
145 function toRgb(v){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
146 return ""+parseInt(v*256)
1465
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
147 }
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
148 return [toRgb(RGB_tuple[0]),toRgb(RGB_tuple[1]),toRgb(RGB_tuple[2])];
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
149
1465
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
150 }
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
151 }
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
152
3388
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
153 /**
4135
cc28a05562d3 Clarify copyright and license of PyRoutes.JS
Bradley M. Kuhn <bkuhn@sfconservancy.org>
parents: 4087
diff changeset
154 * A customized version of PyRoutes.JS from https://pypi.python.org/pypi/pyroutes.js/
cc28a05562d3 Clarify copyright and license of PyRoutes.JS
Bradley M. Kuhn <bkuhn@sfconservancy.org>
parents: 4087
diff changeset
155 * which is copyright Stephane Klein and was made available under the BSD License.
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
156 *
3388
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
157 * Usage pyroutes.url('mark_error_fixed',{"error_id":error_id}) // /mark_error_fixed/<error_id>
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
158 */
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
159 var pyroutes = (function() {
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
160 // access global map defined in special file pyroutes
3388
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
161 var matchlist = PROUTES_MAP;
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
162 var sprintf = (function() {
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
163 function get_type(variable) {
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
164 return Object.prototype.toString.call(variable).slice(8, -1).toLowerCase();
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
165 }
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
166 function str_repeat(input, multiplier) {
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
167 for (var output = []; multiplier > 0; output[--multiplier] = input) {/* do nothing */}
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
168 return output.join('');
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
169 }
1465
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
170
3388
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
171 var str_format = function() {
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
172 if (!str_format.cache.hasOwnProperty(arguments[0])) {
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
173 str_format.cache[arguments[0]] = str_format.parse(arguments[0]);
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
174 }
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
175 return str_format.format.call(null, str_format.cache[arguments[0]], arguments);
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
176 };
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
177
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
178 str_format.format = function(parse_tree, argv) {
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
179 var cursor = 1, tree_length = parse_tree.length, node_type = '', arg, output = [], i, k, match, pad, pad_character, pad_length;
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
180 for (i = 0; i < tree_length; i++) {
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
181 node_type = get_type(parse_tree[i]);
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
182 if (node_type === 'string') {
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
183 output.push(parse_tree[i]);
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
184 }
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
185 else if (node_type === 'array') {
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
186 match = parse_tree[i]; // convenience purposes only
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
187 if (match[2]) { // keyword argument
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
188 arg = argv[cursor];
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
189 for (k = 0; k < match[2].length; k++) {
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
190 if (!arg.hasOwnProperty(match[2][k])) {
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
191 throw(sprintf('[sprintf] property "%s" does not exist', match[2][k]));
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
192 }
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
193 arg = arg[match[2][k]];
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
194 }
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
195 }
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
196 else if (match[1]) { // positional argument (explicit)
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
197 arg = argv[match[1]];
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
198 }
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
199 else { // positional argument (implicit)
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
200 arg = argv[cursor++];
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
201 }
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
202
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
203 if (/[^s]/.test(match[8]) && (get_type(arg) != 'number')) {
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
204 throw(sprintf('[sprintf] expecting number but found %s', get_type(arg)));
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
205 }
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
206 switch (match[8]) {
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
207 case 'b': arg = arg.toString(2); break;
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
208 case 'c': arg = String.fromCharCode(arg); break;
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
209 case 'd': arg = parseInt(arg, 10); break;
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
210 case 'e': arg = match[7] ? arg.toExponential(match[7]) : arg.toExponential(); break;
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
211 case 'f': arg = match[7] ? parseFloat(arg).toFixed(match[7]) : parseFloat(arg); break;
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
212 case 'o': arg = arg.toString(8); break;
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
213 case 's': arg = ((arg = String(arg)) && match[7] ? arg.substring(0, match[7]) : arg); break;
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
214 case 'u': arg = Math.abs(arg); break;
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
215 case 'x': arg = arg.toString(16); break;
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
216 case 'X': arg = arg.toString(16).toUpperCase(); break;
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
217 }
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
218 arg = (/[def]/.test(match[8]) && match[3] && arg >= 0 ? '+'+ arg : arg);
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
219 pad_character = match[4] ? match[4] == '0' ? '0' : match[4].charAt(1) : ' ';
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
220 pad_length = match[6] - String(arg).length;
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
221 pad = match[6] ? str_repeat(pad_character, pad_length) : '';
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
222 output.push(match[5] ? arg + pad : pad + arg);
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
223 }
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
224 }
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
225 return output.join('');
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
226 };
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
227
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
228 str_format.cache = {};
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
229
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
230 str_format.parse = function(fmt) {
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
231 var _fmt = fmt, match = [], parse_tree = [], arg_names = 0;
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
232 while (_fmt) {
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
233 if ((match = /^[^\x25]+/.exec(_fmt)) !== null) {
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
234 parse_tree.push(match[0]);
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
235 }
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
236 else if ((match = /^\x25{2}/.exec(_fmt)) !== null) {
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
237 parse_tree.push('%');
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
238 }
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
239 else if ((match = /^\x25(?:([1-9]\d*)\$|\(([^\)]+)\))?(\+)?(0|'[^$])?(-)?(\d+)?(?:\.(\d+))?([b-fosuxX])/.exec(_fmt)) !== null) {
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
240 if (match[2]) {
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
241 arg_names |= 1;
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
242 var field_list = [], replacement_field = match[2], field_match = [];
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
243 if ((field_match = /^([a-z_][a-z_\d]*)/i.exec(replacement_field)) !== null) {
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
244 field_list.push(field_match[1]);
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
245 while ((replacement_field = replacement_field.substring(field_match[0].length)) !== '') {
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
246 if ((field_match = /^\.([a-z_][a-z_\d]*)/i.exec(replacement_field)) !== null) {
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
247 field_list.push(field_match[1]);
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
248 }
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
249 else if ((field_match = /^\[(\d+)\]/.exec(replacement_field)) !== null) {
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
250 field_list.push(field_match[1]);
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
251 }
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
252 else {
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
253 throw('[sprintf] huh?');
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
254 }
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
255 }
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
256 }
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
257 else {
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
258 throw('[sprintf] huh?');
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
259 }
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
260 match[2] = field_list;
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
261 }
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
262 else {
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
263 arg_names |= 2;
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
264 }
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
265 if (arg_names === 3) {
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
266 throw('[sprintf] mixing positional and named placeholders is not (yet) supported');
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
267 }
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
268 parse_tree.push(match);
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
269 }
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
270 else {
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
271 throw('[sprintf] huh?');
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
272 }
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
273 _fmt = _fmt.substring(match[0].length);
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
274 }
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
275 return parse_tree;
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
276 };
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
277
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
278 return str_format;
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
279 })();
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
280
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
281 var vsprintf = function(fmt, argv) {
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
282 argv.unshift(fmt);
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
283 return sprintf.apply(null, argv);
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
284 };
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
285 return {
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
286 'url': function(route_name, params) {
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
287 var result = route_name;
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
288 if (typeof(params) != 'object'){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
289 params = {};
3388
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
290 }
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
291 if (matchlist.hasOwnProperty(route_name)) {
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
292 var route = matchlist[route_name];
3403
07f4193083fd extra params in pyroutes now generate GET params
Marcin Kuzminski <marcin@python-works.com>
parents: 3388
diff changeset
293 // param substitution
3388
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
294 for(var i=0; i < route[1].length; i++) {
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
295
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
296 if (!params.hasOwnProperty(route[1][i]))
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
297 throw new Error(route[1][i] + ' missing in "' + route_name + '" route generation');
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
298 }
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
299 result = sprintf(route[0], params);
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
300
3403
07f4193083fd extra params in pyroutes now generate GET params
Marcin Kuzminski <marcin@python-works.com>
parents: 3388
diff changeset
301 var ret = [];
07f4193083fd extra params in pyroutes now generate GET params
Marcin Kuzminski <marcin@python-works.com>
parents: 3388
diff changeset
302 //extra params => GET
07f4193083fd extra params in pyroutes now generate GET params
Marcin Kuzminski <marcin@python-works.com>
parents: 3388
diff changeset
303 for(param in params){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
304 if (route[1].indexOf(param) == -1){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
305 ret.push(encodeURIComponent(param) + "=" + encodeURIComponent(params[param]));
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
306 }
3403
07f4193083fd extra params in pyroutes now generate GET params
Marcin Kuzminski <marcin@python-works.com>
parents: 3388
diff changeset
307 }
07f4193083fd extra params in pyroutes now generate GET params
Marcin Kuzminski <marcin@python-works.com>
parents: 3388
diff changeset
308 var _parts = ret.join("&");
07f4193083fd extra params in pyroutes now generate GET params
Marcin Kuzminski <marcin@python-works.com>
parents: 3388
diff changeset
309 if(_parts){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
310 result = result +'?'+ _parts
3403
07f4193083fd extra params in pyroutes now generate GET params
Marcin Kuzminski <marcin@python-works.com>
parents: 3388
diff changeset
311 }
3388
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
312 }
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
313
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
314 return result;
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
315 },
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
316 'register': function(route_name, route_tmpl, req_params) {
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
317 if (typeof(req_params) != 'object') {
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
318 req_params = [];
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
319 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
320 //fix escape
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
321 route_tmpl = unescape(route_tmpl);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
322 keys = [];
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
323 for (o in req_params){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
324 keys.push(req_params[o])
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
325 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
326 matchlist[route_name] = [
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
327 route_tmpl,
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
328 keys
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
329 ]
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
330 },
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
331 '_routes': function(){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
332 return matchlist;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
333 }
3388
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
334 }
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
335 })();
1465
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
336
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
337
ef31d0c6bae9 Added smart color generator to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 1458
diff changeset
338
1421
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
339 /**
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
340 * GLOBAL YUI Shortcuts
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
341 */
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
342 var YUC = YAHOO.util.Connect;
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
343 var YUD = YAHOO.util.Dom;
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
344 var YUE = YAHOO.util.Event;
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
345 var YUQ = YAHOO.util.Selector.query;
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
346
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
347 // defines if push state is enabled for this browser ?
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
348 var push_state_enabled = Boolean(
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
349 window.history && window.history.pushState && window.history.replaceState
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
350 && !( /* disable for versions of iOS before version 4.3 (8F190) */
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
351 (/ Mobile\/([1-7][a-z]|(8([abcde]|f(1[0-8]))))/i).test(navigator.userAgent)
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
352 /* disable for the mercury iOS browser, or at least older versions of the webkit engine */
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
353 || (/AppleWebKit\/5([0-2]|3[0-2])/i).test(navigator.userAgent)
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
354 )
1699
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
355 );
1421
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
356
1717
7ff304d3028f Notification fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 1712
diff changeset
357 var _run_callbacks = function(callbacks){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
358 if (callbacks !== undefined){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
359 var _l = callbacks.length;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
360 for (var i=0;i<_l;i++){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
361 var func = callbacks[i];
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
362 if(typeof(func)=='function'){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
363 try{
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
364 func();
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
365 }catch (err){};
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
366 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
367 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
368 }
1717
7ff304d3028f Notification fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 1712
diff changeset
369 }
7ff304d3028f Notification fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 1712
diff changeset
370
1421
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
371 /**
3715
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
372 * turns objects into GET query string
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
373 */
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
374 var toQueryString = function(o) {
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
375 if(typeof o !== 'object') {
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
376 return false;
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
377 }
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
378 var _p, _qs = [];
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
379 for(_p in o) {
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
380 _qs.push(encodeURIComponent(_p) + '=' + encodeURIComponent(o[_p]));
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
381 }
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
382 return _qs.join('&');
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
383 };
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
384
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
385 /**
1421
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
386 * Partial Ajax Implementation
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
387 *
1421
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
388 * @param url: defines url to make partial request
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
389 * @param container: defines id of container to input partial result
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
390 * @param s_call: success callback function that takes o as arg
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
391 * o.tId
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
392 * o.status
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
393 * o.statusText
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
394 * o.getResponseHeader[ ]
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
395 * o.getAllResponseHeaders
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
396 * o.responseText
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
397 * o.responseXML
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
398 * o.argument
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
399 * @param f_call: failure callback
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
400 * @param args arguments
1421
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
401 */
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
402 function ypjax(url,container,s_call,f_call,args){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
403 var method='GET';
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
404 if(args===undefined){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
405 args=null;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
406 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
407
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
408 // Set special header for partial ajax == HTTP_X_PARTIAL_XHR
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
409 YUC.initHeader('X-PARTIAL-XHR',true);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
410
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
411 // wrapper of passed callback
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
412 var s_wrapper = (function(o){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
413 return function(o){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
414 YUD.get(container).innerHTML=o.responseText;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
415 YUD.setStyle(container,'opacity','1.0');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
416 //execute the given original callback
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
417 if (s_call !== undefined){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
418 s_call(o);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
419 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
420 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
421 })()
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
422 YUD.setStyle(container,'opacity','0.3');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
423 YUC.asyncRequest(method,url,{
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
424 success:s_wrapper,
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
425 failure:function(o){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
426 console.log(o);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
427 YUD.get(container).innerHTML='<span class="error_red">ERROR: {0}</span>'.format(o.status);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
428 YUD.setStyle(container,'opacity','1.0');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
429 },
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
430 cache:false
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
431 },args);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
432
1699
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
433 };
1421
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
434
2971
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
435 var ajaxGET = function(url,success) {
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
436 // Set special header for ajax == HTTP_X_PARTIAL_XHR
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
437 YUC.initHeader('X-PARTIAL-XHR',true);
2971
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
438
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
439 var sUrl = url;
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
440 var callback = {
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
441 success: success,
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
442 failure: function (o) {
3553
72c8917108ee journal: don't show "error" popup when navigating away from page while lazy info is loading
Mads Kiilerich <madski@unity3d.com>
parents: 3552
diff changeset
443 if (o.status != 0) {
72c8917108ee journal: don't show "error" popup when navigating away from page while lazy info is loading
Mads Kiilerich <madski@unity3d.com>
parents: 3552
diff changeset
444 alert("error: " + o.statusText);
72c8917108ee journal: don't show "error" popup when navigating away from page while lazy info is loading
Mads Kiilerich <madski@unity3d.com>
parents: 3552
diff changeset
445 };
2971
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
446 },
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
447 };
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
448
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
449 var request = YAHOO.util.Connect.asyncRequest('GET', sUrl, callback);
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
450 return request;
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
451 };
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
452
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
453
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
454
2187
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
455 var ajaxPOST = function(url,postData,success) {
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
456 // Set special header for ajax == HTTP_X_PARTIAL_XHR
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
457 YUC.initHeader('X-PARTIAL-XHR',true);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
458
2187
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
459 var sUrl = url;
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
460 var callback = {
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
461 success: success,
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
462 failure: function (o) {
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
463 alert("error");
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
464 },
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
465 };
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
466 var postData = toQueryString(postData);
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
467 var request = YAHOO.util.Connect.asyncRequest('POST', sUrl, callback, postData);
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
468 return request;
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
469 };
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
470
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
471
1421
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
472 /**
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
473 * tooltip activate
c6b811f11c94 Javascripts rewrite: updated yui to latest 2.9, simplified ajax loading for multiple pages. Removed YUI dev package
Marcin Kuzminski <marcin@python-works.com>
parents:
diff changeset
474 */
1458
9d9e491e2a21 added author to main page tooltip
Marcin Kuzminski <marcin@python-works.com>
parents: 1426
diff changeset
475 var tooltip_activate = function(){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
476 yt = YAHOO.yuitip.main;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
477 YUE.onDOMReady(yt.init);
1699
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
478 };
1426
91708b96e991 Fixed show more links.
Marcin Kuzminski <marcin@python-works.com>
parents: 1421
diff changeset
479
91708b96e991 Fixed show more links.
Marcin Kuzminski <marcin@python-works.com>
parents: 1421
diff changeset
480 /**
91708b96e991 Fixed show more links.
Marcin Kuzminski <marcin@python-works.com>
parents: 1421
diff changeset
481 * show more
91708b96e991 Fixed show more links.
Marcin Kuzminski <marcin@python-works.com>
parents: 1421
diff changeset
482 */
1458
9d9e491e2a21 added author to main page tooltip
Marcin Kuzminski <marcin@python-works.com>
parents: 1426
diff changeset
483 var show_more_event = function(){
1426
91708b96e991 Fixed show more links.
Marcin Kuzminski <marcin@python-works.com>
parents: 1421
diff changeset
484 YUE.on(YUD.getElementsByClassName('show_more'),'click',function(e){
91708b96e991 Fixed show more links.
Marcin Kuzminski <marcin@python-works.com>
parents: 1421
diff changeset
485 var el = e.target;
91708b96e991 Fixed show more links.
Marcin Kuzminski <marcin@python-works.com>
parents: 1421
diff changeset
486 YUD.setStyle(YUD.get(el.id.substring(1)),'display','');
91708b96e991 Fixed show more links.
Marcin Kuzminski <marcin@python-works.com>
parents: 1421
diff changeset
487 YUD.setStyle(el.parentNode,'display','none');
91708b96e991 Fixed show more links.
Marcin Kuzminski <marcin@python-works.com>
parents: 1421
diff changeset
488 });
1699
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
489 };
1426
91708b96e991 Fixed show more links.
Marcin Kuzminski <marcin@python-works.com>
parents: 1421
diff changeset
490
2971
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
491 /**
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
492 * show changeset tooltip
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
493 */
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
494 var show_changeset_tooltip = function(){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
495 YUE.on(YUD.getElementsByClassName('lazy-cs'), 'mouseover', function(e){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
496 var target = e.currentTarget;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
497 var rid = YUD.getAttribute(target,'raw_id');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
498 var repo_name = YUD.getAttribute(target,'repo_name');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
499 var ttid = 'tt-'+rid;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
500 var success = function(o){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
501 var json = JSON.parse(o.responseText);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
502 YUD.addClass(target,'tooltip')
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
503 YUD.setAttribute(target, 'title',json['message']);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
504 YAHOO.yuitip.main.show_yuitip(e, target);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
505 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
506 if(rid && !YUD.hasClass(target, 'tooltip')){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
507 YUD.setAttribute(target,'id',ttid);
3966
636ff0369986 fixed hover loading ... info on lazy-cs
Marcin Kuzminski <marcin@python-works.com>
parents: 3784
diff changeset
508 YUD.setAttribute(target, 'title',_TM['loading ...']);
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
509 YAHOO.yuitip.main.set_listeners(target);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
510 YAHOO.yuitip.main.show_yuitip(e, target);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
511 var url = pyroutes.url('changeset_info', {"repo_name":repo_name, "revision": rid});
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
512 ajaxGET(url, success)
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
513 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
514 });
2971
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
515 };
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
516
3066
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
517 var onSuccessFollow = function(target){
3527
87c97fcea029 Adding the context bar too all pages related to a Repository.
Leonardo <leo@unity3d.com>
parents: 3388
diff changeset
518 var f = YUD.get(target);
3066
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
519 var f_cnt = YUD.get('current_followers_count');
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
520
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
521 if(YUD.hasClass(f, 'follow')){
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
522 f.setAttribute('class','following');
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
523 f.setAttribute('title',_TM['Stop following this repository']);
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
524
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
525 if(f_cnt){
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
526 var cnt = Number(f_cnt.innerHTML)+1;
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
527 f_cnt.innerHTML = cnt;
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
528 }
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
529 }
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
530 else{
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
531 f.setAttribute('class','follow');
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
532 f.setAttribute('title',_TM['Start following this repository']);
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
533 if(f_cnt){
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
534 var cnt = Number(f_cnt.innerHTML)-1;
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
535 f_cnt.innerHTML = cnt;
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
536 }
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
537 }
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
538 }
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
539
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
540 var toggleFollowingUser = function(target,fallows_user_id,token,user_id){
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
541 args = 'follows_user_id='+fallows_user_id;
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
542 args+= '&amp;auth_token='+token;
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
543 if(user_id != undefined){
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
544 args+="&amp;user_id="+user_id;
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
545 }
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
546 YUC.asyncRequest('POST',TOGGLE_FOLLOW_URL,{
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
547 success:function(o){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
548 onSuccessFollow(target);
3066
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
549 }
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
550 },args);
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
551 return false;
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
552 }
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
553
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
554 var toggleFollowingRepo = function(target,fallows_repo_id,token,user_id){
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
555
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
556 args = 'follows_repo_id='+fallows_repo_id;
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
557 args+= '&amp;auth_token='+token;
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
558 if(user_id != undefined){
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
559 args+="&amp;user_id="+user_id;
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
560 }
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
561 YUC.asyncRequest('POST',TOGGLE_FOLLOW_URL,{
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
562 success:function(o){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
563 onSuccessFollow(target);
3066
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
564 }
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
565 },args);
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
566 return false;
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
567 }
5d580e9bc730 JS cleanup
Marcin Kuzminski <marcin@python-works.com>
parents: 3001
diff changeset
568
3246
b9ba0d4d3abf implemented #83 show repo size on summary page
Marcin Kuzminski <marcin@python-works.com>
parents: 3160
diff changeset
569 var showRepoSize = function(target, repo_name, token){
b9ba0d4d3abf implemented #83 show repo size on summary page
Marcin Kuzminski <marcin@python-works.com>
parents: 3160
diff changeset
570 var args= 'auth_token='+token;
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
571
3247
ed2fa8b1ccca disallow triggering repo size action more than once after loading
Marcin Kuzminski <marcin@python-works.com>
parents: 3246
diff changeset
572 if(!YUD.hasClass(target, 'loaded')){
3516
c44645e5a836 fix casings
Mads Kiilerich <madski@unity3d.com>
parents: 3512
diff changeset
573 YUD.get(target).innerHTML = _TM['Loading ...'];
3388
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
574 var url = pyroutes.url('repo_size', {"repo_name":repo_name});
3247
ed2fa8b1ccca disallow triggering repo size action more than once after loading
Marcin Kuzminski <marcin@python-works.com>
parents: 3246
diff changeset
575 YUC.asyncRequest('POST',url,{
ed2fa8b1ccca disallow triggering repo size action more than once after loading
Marcin Kuzminski <marcin@python-works.com>
parents: 3246
diff changeset
576 success:function(o){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
577 YUD.get(target).innerHTML = JSON.parse(o.responseText);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
578 YUD.addClass(target, 'loaded');
3247
ed2fa8b1ccca disallow triggering repo size action more than once after loading
Marcin Kuzminski <marcin@python-works.com>
parents: 3246
diff changeset
579 }
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
580 },args);
3247
ed2fa8b1ccca disallow triggering repo size action more than once after loading
Marcin Kuzminski <marcin@python-works.com>
parents: 3246
diff changeset
581 }
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
582 return false;
3246
b9ba0d4d3abf implemented #83 show repo size on summary page
Marcin Kuzminski <marcin@python-works.com>
parents: 3160
diff changeset
583 }
2971
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
584
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
585 /**
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
586 * TOOLTIP IMPL.
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
587 */
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
588 YAHOO.namespace('yuitip');
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
589 YAHOO.yuitip.main = {
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
590
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
591 $: YAHOO.util.Dom.get,
2971
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
592
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
593 bgColor: '#000',
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
594 speed: 0.3,
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
595 opacity: 0.9,
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
596 offset: [15,15],
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
597 useAnim: false,
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
598 maxWidth: 600,
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
599 add_links: false,
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
600 yuitips: [],
2976
45a8e0051280 Optimized new tooltip, and fixed events on lazy loaded ones
Marcin Kuzminski <marcin@python-works.com>
parents: 2974
diff changeset
601
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
602 set_listeners: function(tt){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
603 YUE.on(tt, 'mouseover', yt.show_yuitip, tt);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
604 YUE.on(tt, 'mousemove', yt.move_yuitip, tt);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
605 YUE.on(tt, 'mouseout', yt.close_yuitip, tt);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
606 },
2971
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
607
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
608 init: function(){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
609 yt.tipBox = yt.$('tip-box');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
610 if(!yt.tipBox){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
611 yt.tipBox = document.createElement('div');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
612 document.body.appendChild(yt.tipBox);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
613 yt.tipBox.id = 'tip-box';
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
614 }
2971
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
615
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
616 YUD.setStyle(yt.tipBox, 'display', 'none');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
617 YUD.setStyle(yt.tipBox, 'position', 'absolute');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
618 if(yt.maxWidth !== null){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
619 YUD.setStyle(yt.tipBox, 'max-width', yt.maxWidth+'px');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
620 }
2971
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
621
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
622 var yuitips = YUD.getElementsByClassName('tooltip');
2971
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
623
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
624 if(yt.add_links === true){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
625 var links = document.getElementsByTagName('a');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
626 var linkLen = links.length;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
627 for(i=0;i<linkLen;i++){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
628 yuitips.push(links[i]);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
629 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
630 }
2971
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
631
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
632 var yuiLen = yuitips.length;
2971
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
633
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
634 for(i=0;i<yuiLen;i++){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
635 yt.set_listeners(yuitips[i]);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
636 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
637 },
2971
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
638
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
639 show_yuitip: function(e, el){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
640 YUE.stopEvent(e);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
641 if(el.tagName.toLowerCase() === 'img'){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
642 yt.tipText = el.alt ? el.alt : '';
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
643 } else {
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
644 yt.tipText = el.title ? el.title : '';
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
645 }
2971
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
646
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
647 if(yt.tipText !== ''){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
648 // save org title
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
649 YUD.setAttribute(el, 'tt_title', yt.tipText);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
650 // reset title to not show org tooltips
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
651 YUD.setAttribute(el, 'title', '');
2971
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
652
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
653 yt.tipBox.innerHTML = yt.tipText;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
654 YUD.setStyle(yt.tipBox, 'display', 'block');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
655 if(yt.useAnim === true){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
656 YUD.setStyle(yt.tipBox, 'opacity', '0');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
657 var newAnim = new YAHOO.util.Anim(yt.tipBox,
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
658 {
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
659 opacity: { to: yt.opacity }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
660 }, yt.speed, YAHOO.util.Easing.easeOut
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
661 );
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
662 newAnim.animate();
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
663 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
664 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
665 },
2971
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
666
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
667 move_yuitip: function(e, el){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
668 YUE.stopEvent(e);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
669 var movePos = YUE.getXY(e);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
670 YUD.setStyle(yt.tipBox, 'top', (movePos[1] + yt.offset[1]) + 'px');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
671 YUD.setStyle(yt.tipBox, 'left', (movePos[0] + yt.offset[0]) + 'px');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
672 },
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
673
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
674 close_yuitip: function(e, el){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
675 YUE.stopEvent(e);
2971
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
676
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
677 if(yt.useAnim === true){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
678 var newAnim = new YAHOO.util.Anim(yt.tipBox,
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
679 {
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
680 opacity: { to: 0 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
681 }, yt.speed, YAHOO.util.Easing.easeOut
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
682 );
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
683 newAnim.animate();
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
684 } else {
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
685 YUD.setStyle(yt.tipBox, 'display', 'none');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
686 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
687 YUD.setAttribute(el,'title', YUD.getAttribute(el, 'tt_title'));
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
688 }
2971
2bfcec6a3985 new tooltip implementation
Marcin Kuzminski <marcin@python-works.com>
parents: 2891
diff changeset
689 }
1653
b1e1dffd595c one generic qfilter function.
Marcin Kuzminski <marcin@python-works.com>
parents: 1651
diff changeset
690
b1e1dffd595c one generic qfilter function.
Marcin Kuzminski <marcin@python-works.com>
parents: 1651
diff changeset
691 /**
b1e1dffd595c one generic qfilter function.
Marcin Kuzminski <marcin@python-works.com>
parents: 1651
diff changeset
692 * Quick filter widget
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
693 *
1653
b1e1dffd595c one generic qfilter function.
Marcin Kuzminski <marcin@python-works.com>
parents: 1651
diff changeset
694 * @param target: filter input target
b1e1dffd595c one generic qfilter function.
Marcin Kuzminski <marcin@python-works.com>
parents: 1651
diff changeset
695 * @param nodes: list of nodes in html we want to filter.
b1e1dffd595c one generic qfilter function.
Marcin Kuzminski <marcin@python-works.com>
parents: 1651
diff changeset
696 * @param display_element function that takes current node from nodes and
b1e1dffd595c one generic qfilter function.
Marcin Kuzminski <marcin@python-works.com>
parents: 1651
diff changeset
697 * does hide or show based on the node
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
698 *
1653
b1e1dffd595c one generic qfilter function.
Marcin Kuzminski <marcin@python-works.com>
parents: 1651
diff changeset
699 */
b1e1dffd595c one generic qfilter function.
Marcin Kuzminski <marcin@python-works.com>
parents: 1651
diff changeset
700 var q_filter = function(target,nodes,display_element){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
701
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
702 var nodes = nodes;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
703 var q_filter_field = YUD.get(target);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
704 var F = YAHOO.namespace(target);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
705
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
706 YUE.on(q_filter_field,'keyup',function(e){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
707 clearTimeout(F.filterTimeout);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
708 F.filterTimeout = setTimeout(F.updateFilter,600);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
709 });
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
710
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
711 F.filterTimeout = null;
1653
b1e1dffd595c one generic qfilter function.
Marcin Kuzminski <marcin@python-works.com>
parents: 1651
diff changeset
712
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
713 var show_node = function(node){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
714 YUD.setStyle(node,'display','')
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
715 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
716 var hide_node = function(node){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
717 YUD.setStyle(node,'display','none');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
718 }
1653
b1e1dffd595c one generic qfilter function.
Marcin Kuzminski <marcin@python-works.com>
parents: 1651
diff changeset
719
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
720 F.updateFilter = function() {
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
721 // Reset timeout
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
722 F.filterTimeout = null;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
723
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
724 var obsolete = [];
1653
b1e1dffd595c one generic qfilter function.
Marcin Kuzminski <marcin@python-works.com>
parents: 1651
diff changeset
725
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
726 var req = q_filter_field.value.toLowerCase();
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
727
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
728 var l = nodes.length;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
729 var i;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
730 var showing = 0;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
731
1653
b1e1dffd595c one generic qfilter function.
Marcin Kuzminski <marcin@python-works.com>
parents: 1651
diff changeset
732 for (i=0;i<l;i++ ){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
733 var n = nodes[i];
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
734 var target_element = display_element(n)
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
735 if(req && n.innerHTML.toLowerCase().indexOf(req) == -1){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
736 hide_node(target_element);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
737 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
738 else{
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
739 show_node(target_element);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
740 showing+=1;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
741 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
742 }
1653
b1e1dffd595c one generic qfilter function.
Marcin Kuzminski <marcin@python-works.com>
parents: 1651
diff changeset
743
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
744 // if repo_count is set update the number
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
745 var cnt = YUD.get('repo_count');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
746 if(cnt){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
747 YUD.get('repo_count').innerHTML = showing;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
748 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
749
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
750 }
1699
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
751 };
1653
b1e1dffd595c one generic qfilter function.
Marcin Kuzminski <marcin@python-works.com>
parents: 1651
diff changeset
752
2787
423a14349ef3 Don't use .innerHTML for tr field, I'm looking at you IE
Marcin Kuzminski <marcin@python-works.com>
parents: 2759
diff changeset
753 var tableTr = function(cls, body){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
754 var _el = document.createElement('div');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
755 var cont = new YAHOO.util.Element(body);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
756 var comment_id = fromHTML(body).children[0].id.split('comment-')[1];
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
757 var id = 'comment-tr-{0}'.format(comment_id);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
758 var _html = ('<table><tbody><tr id="{0}" class="{1}">'+
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
759 '<td class="lineno-inline new-inline"></td>'+
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
760 '<td class="lineno-inline old-inline"></td>'+
2787
423a14349ef3 Don't use .innerHTML for tr field, I'm looking at you IE
Marcin Kuzminski <marcin@python-works.com>
parents: 2759
diff changeset
761 '<td>{2}</td>'+
2789
d3e5c259fe71 Fixing inline comment for IE.
Marcin Kuzminski <marcin@python-works.com>
parents: 2787
diff changeset
762 '</tr></tbody></table>').format(id, cls, body);
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
763 _el.innerHTML = _html;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
764 return _el.children[0].children[0].children[0];
1674
6f0143e5efe5 #71 code review
Marcin Kuzminski <marcin@python-works.com>
parents: 1667
diff changeset
765 };
1653
b1e1dffd595c one generic qfilter function.
Marcin Kuzminski <marcin@python-works.com>
parents: 1651
diff changeset
766
1677
7276b170ce8b #71 code-review
Marcin Kuzminski <marcin@python-works.com>
parents: 1674
diff changeset
767 /** comments **/
7276b170ce8b #71 code-review
Marcin Kuzminski <marcin@python-works.com>
parents: 1674
diff changeset
768 var removeInlineForm = function(form) {
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
769 form.parentNode.removeChild(form);
1699
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
770 };
1677
7276b170ce8b #71 code-review
Marcin Kuzminski <marcin@python-works.com>
parents: 1674
diff changeset
771
1682
1f2ba96de73e #71 code review
Marcin Kuzminski <marcin@python-works.com>
parents: 1679
diff changeset
772 var createInlineForm = function(parent_tr, f_path, line) {
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
773 var tmpl = YUD.get('comment-inline-form-template').innerHTML;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
774 tmpl = tmpl.format(f_path, line);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
775 var form = tableTr('comment-form-inline',tmpl)
2787
423a14349ef3 Don't use .innerHTML for tr field, I'm looking at you IE
Marcin Kuzminski <marcin@python-works.com>
parents: 2759
diff changeset
776
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
777 // create event for hide button
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
778 form = new YAHOO.util.Element(form);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
779 var form_hide_button = new YAHOO.util.Element(YUD.getElementsByClassName('hide-inline-form',null,form)[0]);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
780 form_hide_button.on('click', function(e) {
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
781 var newtr = e.currentTarget.parentNode.parentNode.parentNode.parentNode.parentNode;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
782 if(YUD.hasClass(newtr.nextElementSibling,'inline-comments-button')){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
783 YUD.setStyle(newtr.nextElementSibling,'display','');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
784 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
785 removeInlineForm(newtr);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
786 YUD.removeClass(parent_tr, 'form-open');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
787 YUD.removeClass(parent_tr, 'hl-comment');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
788
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
789 });
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
790
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
791 return form
1699
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
792 };
2187
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
793
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
794 /**
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
795 * Inject inline comment for on given TR this tr should be always an .line
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
796 * tr containing the line. Code will detect comment, and always put the comment
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
797 * block at the very bottom
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
798 */
1705
5e4827a8e942 added reply comment button on top of inline comments
Marcin Kuzminski <marcin@python-works.com>
parents: 1699
diff changeset
799 var injectInlineForm = function(tr){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
800 if(!YUD.hasClass(tr, 'line')){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
801 return
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
802 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
803 var submit_url = AJAX_COMMENT_URL;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
804 var _td = YUD.getElementsByClassName('code',null,tr)[0];
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
805 if(YUD.hasClass(tr,'form-open') || YUD.hasClass(tr,'context') || YUD.hasClass(_td,'no-comment')){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
806 return
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
807 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
808 YUD.addClass(tr,'form-open');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
809 YUD.addClass(tr,'hl-comment');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
810 var node = YUD.getElementsByClassName('full_f_path',null,tr.parentNode.parentNode.parentNode)[0];
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
811 var f_path = YUD.getAttribute(node,'path');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
812 var lineno = getLineNo(tr);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
813 var form = createInlineForm(tr, f_path, lineno, submit_url);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
814
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
815 var parent = tr;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
816 while (1){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
817 var n = parent.nextElementSibling;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
818 // next element are comments !
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
819 if(YUD.hasClass(n,'inline-comments')){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
820 parent = n;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
821 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
822 else{
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
823 break;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
824 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
825 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
826 YUD.insertAfter(form,parent);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
827 var f = YUD.get(form);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
828 var overlay = YUD.getElementsByClassName('overlay',null,f)[0];
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
829 var _form = YUD.getElementsByClassName('inline-form',null,f)[0];
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
830
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
831 YUE.on(YUD.get(_form), 'submit',function(e){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
832 YUE.preventDefault(e);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
833
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
834 //ajax submit
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
835 var text = YUD.get('text_'+lineno).value;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
836 var postData = {
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
837 'text':text,
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
838 'f_path':f_path,
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
839 'line':lineno
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
840 };
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
841
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
842 if(lineno === undefined){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
843 alert('missing line !');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
844 return
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
845 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
846 if(f_path === undefined){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
847 alert('missing file path !');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
848 return
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
849 }
2187
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
850
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
851 if(text == ""){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
852 return
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
853 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
854
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
855 var success = function(o){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
856 YUD.removeClass(tr, 'form-open');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
857 removeInlineForm(f);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
858 var json_data = JSON.parse(o.responseText);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
859 renderInlineComment(json_data);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
860 };
3695
45df84d36b44 Implemented preview for comments
Marcin Kuzminski <marcin@python-works.com>
parents: 3665
diff changeset
861
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
862 if (YUD.hasClass(overlay,'overlay')){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
863 var w = _form.offsetWidth;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
864 var h = _form.offsetHeight;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
865 YUD.setStyle(overlay,'width',w+'px');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
866 YUD.setStyle(overlay,'height',h+'px');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
867 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
868 YUD.addClass(overlay, 'submitting');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
869
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
870 ajaxPOST(submit_url, postData, success);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
871 });
3695
45df84d36b44 Implemented preview for comments
Marcin Kuzminski <marcin@python-works.com>
parents: 3665
diff changeset
872
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
873 YUE.on('preview-btn_'+lineno, 'click', function(e){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
874 var _text = YUD.get('text_'+lineno).value;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
875 if(!_text){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
876 return
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
877 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
878 var post_data = {'text': _text};
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
879 YUD.addClass('preview-box_'+lineno, 'unloaded');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
880 YUD.get('preview-box_'+lineno).innerHTML = _TM['Loading ...'];
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
881 YUD.setStyle('edit-container_'+lineno, 'display', 'none');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
882 YUD.setStyle('preview-container_'+lineno, 'display', '');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
883
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
884 var url = pyroutes.url('changeset_comment_preview', {'repo_name': REPO_NAME});
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
885 ajaxPOST(url,post_data,function(o){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
886 YUD.get('preview-box_'+lineno).innerHTML = o.responseText;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
887 YUD.removeClass('preview-box_'+lineno, 'unloaded');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
888 })
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
889 })
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
890 YUE.on('edit-btn_'+lineno, 'click', function(e){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
891 YUD.setStyle('edit-container_'+lineno, 'display', '');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
892 YUD.setStyle('preview-container_'+lineno, 'display', 'none');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
893 })
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
894
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
895
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
896 setTimeout(function(){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
897 // callbacks
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
898 tooltip_activate();
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
899 MentionsAutoComplete('text_'+lineno, 'mentions_container_'+lineno,
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
900 _USERS_AC_DATA, _GROUPS_AC_DATA);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
901 var _e = YUD.get('text_'+lineno);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
902 if(_e){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
903 _e.focus();
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
904 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
905 },10)
1705
5e4827a8e942 added reply comment button on top of inline comments
Marcin Kuzminski <marcin@python-works.com>
parents: 1699
diff changeset
906 };
5e4827a8e942 added reply comment button on top of inline comments
Marcin Kuzminski <marcin@python-works.com>
parents: 1699
diff changeset
907
2187
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
908 var deleteComment = function(comment_id){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
909 var url = AJAX_COMMENT_DELETE_URL.replace('__COMMENT_ID__',comment_id);
2187
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
910 var postData = {'_method':'delete'};
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
911 var success = function(o){
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
912 var n = YUD.get('comment-tr-'+comment_id);
2698
4debfe3b50be ie8 fixes for inline comments :/
Marcin Kuzminski <marcin@python-works.com>
parents: 2694
diff changeset
913 var root = prevElementSibling(prevElementSibling(n));
2187
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
914 n.parentNode.removeChild(n);
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
915
3695
45df84d36b44 Implemented preview for comments
Marcin Kuzminski <marcin@python-works.com>
parents: 3665
diff changeset
916 // scann nodes, and attach add button to last one only for TR
45df84d36b44 Implemented preview for comments
Marcin Kuzminski <marcin@python-works.com>
parents: 3665
diff changeset
917 // which are the inline comments
45df84d36b44 Implemented preview for comments
Marcin Kuzminski <marcin@python-works.com>
parents: 3665
diff changeset
918 if(root && root.tagName == 'TR'){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
919 placeAddButton(root);
3695
45df84d36b44 Implemented preview for comments
Marcin Kuzminski <marcin@python-works.com>
parents: 3665
diff changeset
920 }
2187
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
921 }
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
922 ajaxPOST(url,postData,success);
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
923 }
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
924
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
925 var createInlineAddButton = function(tr){
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
926
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
927 var label = TRANSLATION_MAP['Add another comment'];
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
928
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
929 var html_el = document.createElement('div');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
930 YUD.addClass(html_el, 'add-comment');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
931 html_el.innerHTML = '<span class="ui-btn">{0}</span>'.format(label);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
932
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
933 var add = new YAHOO.util.Element(html_el);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
934 add.on('click', function(e) {
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
935 injectInlineForm(tr);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
936 });
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
937 return add;
1705
5e4827a8e942 added reply comment button on top of inline comments
Marcin Kuzminski <marcin@python-works.com>
parents: 1699
diff changeset
938 };
1699
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
939
1677
7276b170ce8b #71 code-review
Marcin Kuzminski <marcin@python-works.com>
parents: 1674
diff changeset
940 var getLineNo = function(tr) {
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
941 var line;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
942 var o = tr.children[0].id.split('_');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
943 var n = tr.children[1].id.split('_');
1677
7276b170ce8b #71 code-review
Marcin Kuzminski <marcin@python-works.com>
parents: 1674
diff changeset
944
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
945 if (n.length >= 2) {
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
946 line = n[n.length-1];
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
947 } else if (o.length >= 2) {
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
948 line = o[o.length-1];
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
949 }
1677
7276b170ce8b #71 code-review
Marcin Kuzminski <marcin@python-works.com>
parents: 1674
diff changeset
950
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
951 return line
1699
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
952 };
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
953
2187
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
954 var placeAddButton = function(target_tr){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
955 if(!target_tr){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
956 return
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
957 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
958 var last_node = target_tr;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
959 //scann
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
960 while (1){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
961 var n = last_node.nextElementSibling;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
962 // next element are comments !
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
963 if(YUD.hasClass(n,'inline-comments')){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
964 last_node = n;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
965 //also remove the comment button from previous
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
966 var comment_add_buttons = YUD.getElementsByClassName('add-comment',null,last_node);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
967 for(var i=0;i<comment_add_buttons.length;i++){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
968 var b = comment_add_buttons[i];
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
969 b.parentNode.removeChild(b);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
970 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
971 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
972 else{
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
973 break;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
974 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
975 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
976
2187
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
977 var add = createInlineAddButton(target_tr);
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
978 // get the comment div
2723
04aa0ea1ddd0 fixed comment addition and deletion functionality on IE9
Dies Koper <diesk@fast.au.fujitsu.com>
parents: 2699
diff changeset
979 var comment_block = YUD.getElementsByClassName('comment',null,last_node)[0];
2187
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
980 // attach add button
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
981 YUD.insertAfter(add,comment_block);
2187
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
982 }
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
983
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
984 /**
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
985 * Places the inline comment into the changeset block in proper line position
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
986 */
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
987 var placeInline = function(target_container,lineno,html){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
988 var lineid = "{0}_{1}".format(target_container,lineno);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
989 var target_line = YUD.get(lineid);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
990 var comment = new YAHOO.util.Element(tableTr('inline-comments',html))
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
991
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
992 // check if there are comments already !
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
993 var parent = target_line.parentNode;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
994 var root_parent = parent;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
995 while (1){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
996 var n = parent.nextElementSibling;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
997 // next element are comments !
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
998 if(YUD.hasClass(n,'inline-comments')){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
999 parent = n;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1000 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1001 else{
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1002 break;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1003 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1004 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1005 // put in the comment at the bottom
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1006 YUD.insertAfter(comment,parent);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1007
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1008 // scann nodes, and attach add button to last one
2187
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
1009 placeAddButton(root_parent);
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
1010
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1011 return target_line;
2187
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
1012 }
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
1013
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
1014 /**
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
1015 * make a single inline comment and place it inside
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
1016 */
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
1017 var renderInlineComment = function(json_data){
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
1018 try{
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1019 var html = json_data['rendered_text'];
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1020 var lineno = json_data['line_no'];
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1021 var target_id = json_data['target_id'];
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1022 placeInline(target_id, lineno, html);
2187
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
1023
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
1024 }catch(e){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1025 console.log(e);
2187
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
1026 }
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
1027 }
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
1028
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
1029 /**
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
1030 * Iterates over all the inlines, and places them inside proper blocks of data
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
1031 */
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
1032 var renderInlineComments = function(file_comments){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1033 for (f in file_comments){
2187
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
1034 // holding all comments for a FILE
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1035 var box = file_comments[f];
2187
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
1036
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1037 var target_id = YUD.getAttribute(box,'target_id');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1038 // actually comments with line numbers
2187
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
1039 var comments = box.children;
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
1040 for(var i=0; i<comments.length; i++){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1041 var data = {
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1042 'rendered_text': comments[i].outerHTML,
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1043 'line_no': YUD.getAttribute(comments[i],'line'),
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1044 'target_id': target_id
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1045 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1046 renderInlineComment(data);
2187
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
1047 }
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1048 }
2187
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
1049 }
b61e540122f2 #415: Adding comment to changeset causes reload
Marcin Kuzminski <marcin@python-works.com>
parents: 2145
diff changeset
1050
2428
530bd12fc18a removed JSON array envelope from filter files function
Marcin Kuzminski <marcin@python-works.com>
parents: 2369
diff changeset
1051 var fileBrowserListeners = function(current_url, node_list_url, url_base){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1052 var current_url_branch = +"?branch=__BRANCH__";
1699
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
1053
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1054 YUE.on('stay_at_branch','click',function(e){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1055 if(e.target.checked){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1056 var uri = current_url_branch;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1057 uri = uri.replace('__BRANCH__',e.target.value);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1058 window.location = uri;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1059 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1060 else{
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1061 window.location = current_url;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1062 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1063 })
1699
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
1064
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1065 var n_filter = YUD.get('node_filter');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1066 var F = YAHOO.namespace('node_filter');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1067
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1068 F.filterTimeout = null;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1069 var nodes = null;
1699
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
1070
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1071 F.initFilter = function(){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1072 YUD.setStyle('node_filter_box_loading','display','');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1073 YUD.setStyle('search_activate_id','display','none');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1074 YUD.setStyle('add_node_id','display','none');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1075 YUC.initHeader('X-PARTIAL-XHR',true);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1076 YUC.asyncRequest('GET', node_list_url, {
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1077 success:function(o){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1078 nodes = JSON.parse(o.responseText).nodes;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1079 YUD.setStyle('node_filter_box_loading','display','none');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1080 YUD.setStyle('node_filter_box','display','');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1081 n_filter.focus();
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1082 if(YUD.hasClass(n_filter,'init')){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1083 n_filter.value = '';
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1084 YUD.removeClass(n_filter,'init');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1085 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1086 },
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1087 failure:function(o){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1088 console.log('failed to load');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1089 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1090 },null);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1091 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1092
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1093 F.updateFilter = function(e) {
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1094
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1095 return function(){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1096 // Reset timeout
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1097 F.filterTimeout = null;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1098 var query = e.target.value.toLowerCase();
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1099 var match = [];
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1100 var matches = 0;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1101 var matches_max = 20;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1102 if (query != ""){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1103 for(var i=0;i<nodes.length;i++){
1699
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
1104
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1105 var pos = nodes[i].name.toLowerCase().indexOf(query)
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1106 if(query && pos != -1){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1107
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1108 matches++
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1109 //show only certain amount to not kill browser
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1110 if (matches > matches_max){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1111 break;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1112 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1113
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1114 var n = nodes[i].name;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1115 var t = nodes[i].type;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1116 var n_hl = n.substring(0,pos)
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1117 +"<b>{0}</b>".format(n.substring(pos,pos+query.length))
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1118 +n.substring(pos+query.length)
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1119 var new_url = url_base.replace('__FPATH__',n);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1120 match.push('<tr><td><a class="browser-{0}" href="{1}">{2}</a></td><td colspan="5"></td></tr>'.format(t,new_url,n_hl));
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1121 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1122 if(match.length >= matches_max){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1123 match.push('<tr><td>{0}</td><td colspan="5"></td></tr>'.format(_TM['Search truncated']));
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1124 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1125 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1126 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1127 if(query != ""){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1128 YUD.setStyle('tbody','display','none');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1129 YUD.setStyle('tbody_filtered','display','');
1699
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
1130
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1131 if (match.length==0){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1132 match.push('<tr><td>{0}</td><td colspan="5"></td></tr>'.format(_TM['No matching files']));
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1133 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1134
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1135 YUD.get('tbody_filtered').innerHTML = match.join("");
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1136 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1137 else{
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1138 YUD.setStyle('tbody','display','');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1139 YUD.setStyle('tbody_filtered','display','none');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1140 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1141
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1142 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1143 };
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1144
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1145 YUE.on(YUD.get('filter_activate'),'click',function(){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1146 F.initFilter();
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1147 })
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1148 YUE.on(n_filter,'click',function(){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1149 if(YUD.hasClass(n_filter,'init')){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1150 n_filter.value = '';
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1151 YUD.removeClass(n_filter,'init');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1152 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1153 });
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1154 YUE.on(n_filter,'keyup',function(e){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1155 clearTimeout(F.filterTimeout);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1156 F.filterTimeout = setTimeout(F.updateFilter(e),600);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1157 });
1699
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
1158 };
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
1159
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
1160
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1161 var initCodeMirror = function(textAreadId,resetUrl){
1699
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
1162 var myCodeMirror = CodeMirror.fromTextArea(YUD.get(textAreadId),{
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
1163 mode: "null",
4026
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents: 3966
diff changeset
1164 lineNumbers:true,
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents: 3966
diff changeset
1165 indentUnit: 4
1699
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
1166 });
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
1167 YUE.on('reset','click',function(e){
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
1168 window.location=resetUrl
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
1169 });
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1170
1699
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
1171 YUE.on('file_enable','click',function(){
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
1172 YUD.setStyle('editor_container','display','');
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
1173 YUD.setStyle('upload_file_container','display','none');
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
1174 YUD.setStyle('filename_container','display','');
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
1175 });
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1176
1699
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
1177 YUE.on('upload_file_enable','click',function(){
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
1178 YUD.setStyle('editor_container','display','none');
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
1179 YUD.setStyle('upload_file_container','display','');
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
1180 YUD.setStyle('filename_container','display','none');
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1181 });
4026
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents: 3966
diff changeset
1182
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents: 3966
diff changeset
1183 return myCodeMirror
1699
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
1184 };
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
1185
4026
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents: 3966
diff changeset
1186 var setCodeMirrorMode = function(codeMirrorInstance, mode) {
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents: 3966
diff changeset
1187 codeMirrorInstance.setOption("mode", mode);
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents: 3966
diff changeset
1188 CodeMirror.autoLoadMode(codeMirrorInstance, mode);
a60a0e9092c6 added codemirror edit mode with autodetection
Marcin Kuzminski <marcin@python-works.com>
parents: 3966
diff changeset
1189 }
1699
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
1190
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
1191
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
1192 var getIdentNode = function(n){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1193 //iterate thru nodes untill matched interesting node !
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1194
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1195 if (typeof n == 'undefined'){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1196 return -1
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1197 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1198
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1199 if(typeof n.id != "undefined" && n.id.match('L[0-9]+')){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1200 return n
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1201 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1202 else{
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1203 return getIdentNode(n.parentNode);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1204 }
1699
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
1205 };
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
1206
3001
37c7abd34d44 implements #636, lazy loading of history and authors to speed up page responsiveness.
Marcin Kuzminski <marcin@python-works.com>
parents: 2979
diff changeset
1207 var getSelectionLink = function(e) {
3081
b2c7f7c5ce11 fixed source selection link pop-up tooltip
Marcin Kuzminski <marcin@python-works.com>
parents: 3066
diff changeset
1208
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1209 //get selection from start/to nodes
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1210 if (typeof window.getSelection != "undefined") {
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1211 s = window.getSelection();
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1212
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1213 from = getIdentNode(s.anchorNode);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1214 till = getIdentNode(s.focusNode);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1215
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1216 f_int = parseInt(from.id.replace('L',''));
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1217 t_int = parseInt(till.id.replace('L',''));
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1218
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1219 if (f_int > t_int){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1220 //highlight from bottom
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1221 offset = -35;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1222 ranges = [t_int,f_int];
3081
b2c7f7c5ce11 fixed source selection link pop-up tooltip
Marcin Kuzminski <marcin@python-works.com>
parents: 3066
diff changeset
1223
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1224 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1225 else{
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1226 //highligth from top
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1227 offset = 35;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1228 ranges = [f_int,t_int];
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1229 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1230 // if we select more than 2 lines
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1231 if (ranges[0] != ranges[1]){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1232 if(YUD.get('linktt') == null){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1233 hl_div = document.createElement('div');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1234 hl_div.id = 'linktt';
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1235 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1236 hl_div.innerHTML = '';
3081
b2c7f7c5ce11 fixed source selection link pop-up tooltip
Marcin Kuzminski <marcin@python-works.com>
parents: 3066
diff changeset
1237
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1238 anchor = '#L'+ranges[0]+'-'+ranges[1];
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1239 var link = document.createElement('a');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1240 link.href = location.href.substring(0,location.href.indexOf('#'))+anchor;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1241 link.innerHTML = _TM['Selection link'];
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1242 hl_div.appendChild(link);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1243 YUD.get('body').appendChild(hl_div);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1244
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1245 xy = YUD.getXY(till.id);
3081
b2c7f7c5ce11 fixed source selection link pop-up tooltip
Marcin Kuzminski <marcin@python-works.com>
parents: 3066
diff changeset
1246
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1247 YUD.addClass('linktt', 'hl-tip-box');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1248 YUD.setStyle('linktt','top',xy[1]+offset+'px');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1249 YUD.setStyle('linktt','left',xy[0]+'px');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1250 YUD.setStyle('linktt','visibility','visible');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1251
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1252 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1253 else{
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1254 YUD.setStyle('linktt','visibility','hidden');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1255 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1256 }
1699
623b228cf325 cleaned up JS files in files templates.
Marcin Kuzminski <marcin@python-works.com>
parents: 1685
diff changeset
1257 };
1712
cac5109ac3b6 Notification system improvements
Marcin Kuzminski <marcin@python-works.com>
parents: 1705
diff changeset
1258
1717
7ff304d3028f Notification fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 1712
diff changeset
1259 var deleteNotification = function(url, notification_id,callbacks){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1260 var callback = {
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1261 success:function(o){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1262 var obj = YUD.get(String("notification_"+notification_id));
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1263 if(obj.parentNode !== undefined){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1264 obj.parentNode.removeChild(obj);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1265 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1266 _run_callbacks(callbacks);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1267 },
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1268 failure:function(o){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1269 alert("error");
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1270 },
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1271 };
1712
cac5109ac3b6 Notification system improvements
Marcin Kuzminski <marcin@python-works.com>
parents: 1705
diff changeset
1272 var postData = '_method=delete';
cac5109ac3b6 Notification system improvements
Marcin Kuzminski <marcin@python-works.com>
parents: 1705
diff changeset
1273 var sUrl = url.replace('__NOTIFICATION_ID__',notification_id);
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1274 var request = YAHOO.util.Connect.asyncRequest('POST', sUrl,
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1275 callback, postData);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1276 };
1778
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1277
2610
3fdf7c3be2c9 added mark as read for single notifications
Marcin Kuzminski <marcin@python-works.com>
parents: 2608
diff changeset
1278 var readNotification = function(url, notification_id,callbacks){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1279 var callback = {
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1280 success:function(o){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1281 var obj = YUD.get(String("notification_"+notification_id));
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1282 YUD.removeClass(obj, 'unread');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1283 var r_button = YUD.getElementsByClassName('read-notification',null,obj.children[0])[0];
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1284
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1285 if(r_button.parentNode !== undefined){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1286 r_button.parentNode.removeChild(r_button);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1287 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1288 _run_callbacks(callbacks);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1289 },
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1290 failure:function(o){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1291 alert("error");
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1292 },
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1293 };
2610
3fdf7c3be2c9 added mark as read for single notifications
Marcin Kuzminski <marcin@python-works.com>
parents: 2608
diff changeset
1294 var postData = '_method=put';
3fdf7c3be2c9 added mark as read for single notifications
Marcin Kuzminski <marcin@python-works.com>
parents: 2608
diff changeset
1295 var sUrl = url.replace('__NOTIFICATION_ID__',notification_id);
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1296 var request = YAHOO.util.Connect.asyncRequest('POST', sUrl,
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1297 callback, postData);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1298 };
1778
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1299
2142
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1300 /** MEMBERS AUTOCOMPLETE WIDGET **/
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1301
2759
c61c2ccea2b4 #538 form for permissions can handle multiple users at once
Marcin Kuzminski <marcin@python-works.com>
parents: 2723
diff changeset
1302 var MembersAutoComplete = function (divid, cont, users_list, groups_list) {
2142
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1303 var myUsers = users_list;
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1304 var myGroups = groups_list;
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1305
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1306 // Define a custom search function for the DataSource of users
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1307 var matchUsers = function (sQuery) {
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1308 // Case insensitive matching
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1309 var query = sQuery.toLowerCase();
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1310 var i = 0;
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1311 var l = myUsers.length;
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1312 var matches = [];
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1313
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1314 // Match against each name of each contact
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1315 for (; i < l; i++) {
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1316 contact = myUsers[i];
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1317 if (((contact.fname+"").toLowerCase().indexOf(query) > -1) ||
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1318 ((contact.lname+"").toLowerCase().indexOf(query) > -1) ||
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1319 ((contact.nname) && ((contact.nname).toLowerCase().indexOf(query) > -1))) {
2369
c2f131502037 Autocomplete fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 2368
diff changeset
1320 matches[matches.length] = contact;
c2f131502037 Autocomplete fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 2368
diff changeset
1321 }
2142
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1322 }
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1323 return matches;
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1324 };
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1325
3417
fa6ba6727475 further cleanup of UsersGroup
Mads Kiilerich <madski@unity3d.com>
parents: 3403
diff changeset
1326 // Define a custom search function for the DataSource of userGroups
2142
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1327 var matchGroups = function (sQuery) {
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1328 // Case insensitive matching
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1329 var query = sQuery.toLowerCase();
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1330 var i = 0;
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1331 var l = myGroups.length;
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1332 var matches = [];
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1333
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1334 // Match against each name of each contact
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1335 for (; i < l; i++) {
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1336 matched_group = myGroups[i];
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1337 if (matched_group.grname.toLowerCase().indexOf(query) > -1) {
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1338 matches[matches.length] = matched_group;
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1339 }
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1340 }
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1341 return matches;
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1342 };
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1343
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1344 //match all
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1345 var matchAll = function (sQuery) {
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1346 u = matchUsers(sQuery);
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1347 g = matchGroups(sQuery);
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1348 return u.concat(g);
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1349 };
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1350
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1351 // DataScheme for members
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1352 var memberDS = new YAHOO.util.FunctionDataSource(matchAll);
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1353 memberDS.responseSchema = {
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1354 fields: ["id", "fname", "lname", "nname", "grname", "grmembers", "gravatar_lnk"]
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1355 };
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1356
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1357 // DataScheme for owner
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1358 var ownerDS = new YAHOO.util.FunctionDataSource(matchUsers);
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1359 ownerDS.responseSchema = {
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1360 fields: ["id", "fname", "lname", "nname", "gravatar_lnk"]
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1361 };
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1362
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1363 // Instantiate AutoComplete for perms
2759
c61c2ccea2b4 #538 form for permissions can handle multiple users at once
Marcin Kuzminski <marcin@python-works.com>
parents: 2723
diff changeset
1364 var membersAC = new YAHOO.widget.AutoComplete(divid, cont, memberDS);
2142
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1365 membersAC.useShadow = false;
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1366 membersAC.resultTypeList = false;
2611
e83be26bb8d8 disable animation on autocomplete widget
Marcin Kuzminski <marcin@python-works.com>
parents: 2610
diff changeset
1367 membersAC.animVert = false;
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1368 membersAC.animHoriz = false;
2611
e83be26bb8d8 disable animation on autocomplete widget
Marcin Kuzminski <marcin@python-works.com>
parents: 2610
diff changeset
1369 membersAC.animSpeed = 0.1;
2142
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1370
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1371 // Instantiate AutoComplete for owner
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1372 var ownerAC = new YAHOO.widget.AutoComplete("user", "owner_container", ownerDS);
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1373 ownerAC.useShadow = false;
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1374 ownerAC.resultTypeList = false;
2611
e83be26bb8d8 disable animation on autocomplete widget
Marcin Kuzminski <marcin@python-works.com>
parents: 2610
diff changeset
1375 ownerAC.animVert = false;
e83be26bb8d8 disable animation on autocomplete widget
Marcin Kuzminski <marcin@python-works.com>
parents: 2610
diff changeset
1376 ownerAC.animHoriz = false;
e83be26bb8d8 disable animation on autocomplete widget
Marcin Kuzminski <marcin@python-works.com>
parents: 2610
diff changeset
1377 ownerAC.animSpeed = 0.1;
2142
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1378
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1379 // Helper highlight function for the formatter
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1380 var highlightMatch = function (full, snippet, matchindex) {
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1381 return full.substring(0, matchindex)
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1382 + "<span class='match'>"
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1383 + full.substr(matchindex, snippet.length)
2142
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1384 + "</span>" + full.substring(matchindex + snippet.length);
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1385 };
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1386
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1387 // Custom formatter to highlight the matching letters
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1388 var custom_formatter = function (oResultData, sQuery, sResultMatch) {
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1389 var query = sQuery.toLowerCase();
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1390 var _gravatar = function(res, em, group){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1391 if (group !== undefined){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1392 em = '/images/icons/group.png'
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1393 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1394 tmpl = '<div class="ac-container-wrap"><img class="perm-gravatar-ac" src="{0}"/>{1}</div>'
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1395 return tmpl.format(em,res)
2142
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1396 }
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1397 // group
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1398 if (oResultData.grname != undefined) {
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1399 var grname = oResultData.grname;
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1400 var grmembers = oResultData.grmembers;
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1401 var grnameMatchIndex = grname.toLowerCase().indexOf(query);
2369
c2f131502037 Autocomplete fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 2368
diff changeset
1402 var grprefix = "{0}: ".format(_TM['Group']);
2142
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1403 var grsuffix = " (" + grmembers + " )";
2369
c2f131502037 Autocomplete fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 2368
diff changeset
1404 var grsuffix = " ({0} {1})".format(grmembers, _TM['members']);
2142
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1405
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1406 if (grnameMatchIndex > -1) {
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1407 return _gravatar(grprefix + highlightMatch(grname, query, grnameMatchIndex) + grsuffix,null,true);
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1408 }
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1409 return _gravatar(grprefix + oResultData.grname + grsuffix, null,true);
2142
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1410 // Users
2369
c2f131502037 Autocomplete fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 2368
diff changeset
1411 } else if (oResultData.nname != undefined) {
c2f131502037 Autocomplete fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 2368
diff changeset
1412 var fname = oResultData.fname || "";
c2f131502037 Autocomplete fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 2368
diff changeset
1413 var lname = oResultData.lname || "";
c2f131502037 Autocomplete fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 2368
diff changeset
1414 var nname = oResultData.nname;
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1415
2369
c2f131502037 Autocomplete fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 2368
diff changeset
1416 // Guard against null value
c2f131502037 Autocomplete fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 2368
diff changeset
1417 var fnameMatchIndex = fname.toLowerCase().indexOf(query),
2142
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1418 lnameMatchIndex = lname.toLowerCase().indexOf(query),
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1419 nnameMatchIndex = nname.toLowerCase().indexOf(query),
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1420 displayfname, displaylname, displaynname;
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1421
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1422 if (fnameMatchIndex > -1) {
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1423 displayfname = highlightMatch(fname, query, fnameMatchIndex);
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1424 } else {
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1425 displayfname = fname;
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1426 }
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1427
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1428 if (lnameMatchIndex > -1) {
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1429 displaylname = highlightMatch(lname, query, lnameMatchIndex);
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1430 } else {
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1431 displaylname = lname;
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1432 }
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1433
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1434 if (nnameMatchIndex > -1) {
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1435 displaynname = "(" + highlightMatch(nname, query, nnameMatchIndex) + ")";
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1436 } else {
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1437 displaynname = nname ? "(" + nname + ")" : "";
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1438 }
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1439
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1440 return _gravatar(displayfname + " " + displaylname + " " + displaynname, oResultData.gravatar_lnk);
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1441 } else {
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1442 return '';
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1443 }
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1444 };
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1445 membersAC.formatResult = custom_formatter;
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1446 ownerAC.formatResult = custom_formatter;
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1447
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1448 var myHandler = function (sType, aArgs) {
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1449 var nextId = divid.split('perm_new_member_name_')[1];
2142
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1450 var myAC = aArgs[0]; // reference back to the AC instance
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1451 var elLI = aArgs[1]; // reference to the selected LI element
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1452 var oData = aArgs[2]; // object literal of selected item's result data
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1453 //fill the autocomplete with value
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1454 if (oData.nname != undefined) {
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1455 //users
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1456 myAC.getInputEl().value = oData.nname;
2759
c61c2ccea2b4 #538 form for permissions can handle multiple users at once
Marcin Kuzminski <marcin@python-works.com>
parents: 2723
diff changeset
1457 YUD.get('perm_new_member_type_'+nextId).value = 'user';
2142
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1458 } else {
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1459 //groups
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1460 myAC.getInputEl().value = oData.grname;
2759
c61c2ccea2b4 #538 form for permissions can handle multiple users at once
Marcin Kuzminski <marcin@python-works.com>
parents: 2723
diff changeset
1461 YUD.get('perm_new_member_type_'+nextId).value = 'users_group';
2142
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1462 }
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1463 };
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1464
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1465 membersAC.itemSelectEvent.subscribe(myHandler);
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1466 if(ownerAC.itemSelectEvent){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1467 ownerAC.itemSelectEvent.subscribe(myHandler);
2142
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1468 }
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1469
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1470 return {
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1471 memberDS: memberDS,
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1472 ownerDS: ownerDS,
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1473 membersAC: membersAC,
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1474 ownerAC: ownerAC,
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1475 };
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1476 }
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1477
a21eab6ff42f Added gravatars into permissions view and permissions autocomplete
Marcin Kuzminski <marcin@python-works.com>
parents: 2128
diff changeset
1478
2369
c2f131502037 Autocomplete fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 2368
diff changeset
1479 var MentionsAutoComplete = function (divid, cont, users_list, groups_list) {
2368
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1480 var myUsers = users_list;
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1481 var myGroups = groups_list;
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1482
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1483 // Define a custom search function for the DataSource of users
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1484 var matchUsers = function (sQuery) {
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1485 var org_sQuery = sQuery;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1486 if(this.mentionQuery == null){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1487 return []
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1488 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1489 sQuery = this.mentionQuery;
2368
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1490 // Case insensitive matching
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1491 var query = sQuery.toLowerCase();
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1492 var i = 0;
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1493 var l = myUsers.length;
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1494 var matches = [];
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1495
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1496 // Match against each name of each contact
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1497 for (; i < l; i++) {
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1498 contact = myUsers[i];
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1499 if (((contact.fname+"").toLowerCase().indexOf(query) > -1) ||
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1500 ((contact.lname+"").toLowerCase().indexOf(query) > -1) ||
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1501 ((contact.nname) && ((contact.nname).toLowerCase().indexOf(query) > -1))) {
2368
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1502 matches[matches.length] = contact;
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1503 }
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1504 }
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1505 return matches
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1506 };
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1507
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1508 //match all
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1509 var matchAll = function (sQuery) {
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1510 u = matchUsers(sQuery);
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1511 return u
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1512 };
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1513
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1514 // DataScheme for owner
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1515 var ownerDS = new YAHOO.util.FunctionDataSource(matchUsers);
2369
c2f131502037 Autocomplete fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 2368
diff changeset
1516
2368
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1517 ownerDS.responseSchema = {
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1518 fields: ["id", "fname", "lname", "nname", "gravatar_lnk"]
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1519 };
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1520
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1521 // Instantiate AutoComplete for mentions
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1522 var ownerAC = new YAHOO.widget.AutoComplete(divid, cont, ownerDS);
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1523 ownerAC.useShadow = false;
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1524 ownerAC.resultTypeList = false;
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1525 ownerAC.suppressInputUpdate = true;
2611
e83be26bb8d8 disable animation on autocomplete widget
Marcin Kuzminski <marcin@python-works.com>
parents: 2610
diff changeset
1526 ownerAC.animVert = false;
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1527 ownerAC.animHoriz = false;
2611
e83be26bb8d8 disable animation on autocomplete widget
Marcin Kuzminski <marcin@python-works.com>
parents: 2610
diff changeset
1528 ownerAC.animSpeed = 0.1;
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1529
2368
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1530 // Helper highlight function for the formatter
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1531 var highlightMatch = function (full, snippet, matchindex) {
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1532 return full.substring(0, matchindex)
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1533 + "<span class='match'>"
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1534 + full.substr(matchindex, snippet.length)
2368
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1535 + "</span>" + full.substring(matchindex + snippet.length);
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1536 };
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1537
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1538 // Custom formatter to highlight the matching letters
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1539 ownerAC.formatResult = function (oResultData, sQuery, sResultMatch) {
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1540 var org_sQuery = sQuery;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1541 if(this.dataSource.mentionQuery != null){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1542 sQuery = this.dataSource.mentionQuery;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1543 }
2368
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1544
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1545 var query = sQuery.toLowerCase();
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1546 var _gravatar = function(res, em, group){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1547 if (group !== undefined){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1548 em = '/images/icons/group.png'
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1549 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1550 tmpl = '<div class="ac-container-wrap"><img class="perm-gravatar-ac" src="{0}"/>{1}</div>'
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1551 return tmpl.format(em,res)
2368
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1552 }
2369
c2f131502037 Autocomplete fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 2368
diff changeset
1553 if (oResultData.nname != undefined) {
c2f131502037 Autocomplete fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 2368
diff changeset
1554 var fname = oResultData.fname || "";
c2f131502037 Autocomplete fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 2368
diff changeset
1555 var lname = oResultData.lname || "";
c2f131502037 Autocomplete fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 2368
diff changeset
1556 var nname = oResultData.nname;
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1557
2369
c2f131502037 Autocomplete fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 2368
diff changeset
1558 // Guard against null value
c2f131502037 Autocomplete fixes
Marcin Kuzminski <marcin@python-works.com>
parents: 2368
diff changeset
1559 var fnameMatchIndex = fname.toLowerCase().indexOf(query),
2368
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1560 lnameMatchIndex = lname.toLowerCase().indexOf(query),
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1561 nnameMatchIndex = nname.toLowerCase().indexOf(query),
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1562 displayfname, displaylname, displaynname;
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1563
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1564 if (fnameMatchIndex > -1) {
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1565 displayfname = highlightMatch(fname, query, fnameMatchIndex);
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1566 } else {
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1567 displayfname = fname;
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1568 }
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1569
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1570 if (lnameMatchIndex > -1) {
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1571 displaylname = highlightMatch(lname, query, lnameMatchIndex);
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1572 } else {
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1573 displaylname = lname;
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1574 }
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1575
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1576 if (nnameMatchIndex > -1) {
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1577 displaynname = "(" + highlightMatch(nname, query, nnameMatchIndex) + ")";
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1578 } else {
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1579 displaynname = nname ? "(" + nname + ")" : "";
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1580 }
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1581
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1582 return _gravatar(displayfname + " " + displaylname + " " + displaynname, oResultData.gravatar_lnk);
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1583 } else {
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1584 return '';
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1585 }
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1586 };
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1587
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1588 if(ownerAC.itemSelectEvent){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1589 ownerAC.itemSelectEvent.subscribe(function (sType, aArgs) {
2368
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1590
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1591 var myAC = aArgs[0]; // reference back to the AC instance
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1592 var elLI = aArgs[1]; // reference to the selected LI element
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1593 var oData = aArgs[2]; // object literal of selected item's result data
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1594 //fill the autocomplete with value
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1595 if (oData.nname != undefined) {
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1596 //users
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1597 //Replace the mention name with replaced
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1598 var re = new RegExp();
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1599 var org = myAC.getInputEl().value;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1600 var chunks = myAC.dataSource.chunks
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1601 // replace middle chunk(the search term) with actuall match
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1602 chunks[1] = chunks[1].replace('@'+myAC.dataSource.mentionQuery,
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1603 '@'+oData.nname+' ');
2368
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1604 myAC.getInputEl().value = chunks.join('')
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1605 YUD.get(myAC.getInputEl()).focus(); // Y U NO WORK !?
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1606 } else {
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1607 //groups
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1608 myAC.getInputEl().value = oData.grname;
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1609 YUD.get('perm_new_member_type').value = 'users_group';
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1610 }
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1611 });
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1612 }
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1613
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1614 // in this keybuffer we will gather current value of search !
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1615 // since we need to get this just when someone does `@` then we do the
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1616 // search
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1617 ownerAC.dataSource.chunks = [];
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1618 ownerAC.dataSource.mentionQuery = null;
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1619
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1620 ownerAC.get_mention = function(msg, max_pos) {
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1621 var org = msg;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1622 var re = new RegExp('(?:^@|\s@)([a-zA-Z0-9]{1}[a-zA-Z0-9\-\_\.]+)$')
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1623 var chunks = [];
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1624
2368
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1625
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1626 // cut first chunk until curret pos
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1627 var to_max = msg.substr(0, max_pos);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1628 var at_pos = Math.max(0,to_max.lastIndexOf('@')-1);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1629 var msg2 = to_max.substr(at_pos);
2368
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1630
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1631 chunks.push(org.substr(0,at_pos))// prefix chunk
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1632 chunks.push(msg2) // search chunk
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1633 chunks.push(org.substr(max_pos)) // postfix chunk
2368
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1634
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1635 // clean up msg2 for filtering and regex match
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1636 var msg2 = msg2.lstrip(' ').lstrip('\n');
2368
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1637
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1638 if(re.test(msg2)){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1639 var unam = re.exec(msg2)[1];
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1640 return [unam, chunks];
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1641 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1642 return [null, null];
2612
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1643 };
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1644
2698
4debfe3b50be ie8 fixes for inline comments :/
Marcin Kuzminski <marcin@python-works.com>
parents: 2694
diff changeset
1645 if (ownerAC.textboxKeyUpEvent){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1646 ownerAC.textboxKeyUpEvent.subscribe(function(type, args){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1647
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1648 var ac_obj = args[0];
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1649 var currentMessage = args[1];
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1650 var currentCaretPosition = args[0]._elTextbox.selectionStart;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1651
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1652 var unam = ownerAC.get_mention(currentMessage, currentCaretPosition);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1653 var curr_search = null;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1654 if(unam[0]){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1655 curr_search = unam[0];
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1656 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1657
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1658 ownerAC.dataSource.chunks = unam[1];
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1659 ownerAC.dataSource.mentionQuery = curr_search;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1660
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1661 })
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1662 }
2368
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1663 return {
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1664 ownerDS: ownerDS,
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1665 ownerAC: ownerAC,
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1666 };
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1667 }
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1668
3388
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
1669 var addReviewMember = function(id,fname,lname,nname,gravatar_link){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1670 var members = YUD.get('review_members');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1671 var tmpl = '<li id="reviewer_{2}">'+
3388
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
1672 '<div class="reviewers_member">'+
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
1673 '<div class="gravatar"><img alt="gravatar" src="{0}"/> </div>'+
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
1674 '<div style="float:left">{1}</div>'+
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
1675 '<input type="hidden" value="{2}" name="review_members" />'+
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
1676 '<span class="delete_icon action_button" onclick="removeReviewMember({2})"></span>'+
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
1677 '</div>'+
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1678 '</li>' ;
3388
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
1679 var displayname = "{0} {1} ({2})".format(fname,lname,nname);
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1680 var element = tmpl.format(gravatar_link,displayname,id);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1681 // check if we don't have this ID already in
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1682 var ids = [];
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1683 var _els = YUQ('#review_members li');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1684 for (el in _els){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1685 ids.push(_els[el].id)
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1686 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1687 if(ids.indexOf('reviewer_'+id) == -1){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1688 //only add if it's not there
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1689 members.innerHTML += element;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1690 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1691
3388
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
1692 }
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
1693
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
1694 var removeReviewMember = function(reviewer_id, repo_name, pull_request_id){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1695 var el = YUD.get('reviewer_{0}'.format(reviewer_id));
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1696 if (el.parentNode !== undefined){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1697 el.parentNode.removeChild(el);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1698 }
3388
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
1699 }
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
1700
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
1701 var updateReviewers = function(reviewers_ids, repo_name, pull_request_id){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1702 if (reviewers_ids === undefined){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1703 var reviewers_ids = [];
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1704 var ids = YUQ('#review_members input');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1705 for(var i=0; i<ids.length;i++){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1706 var id = ids[i].value
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1707 reviewers_ids.push(id);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1708 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1709 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1710 var url = pyroutes.url('pullrequest_update', {"repo_name":repo_name,
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1711 "pull_request_id": pull_request_id});
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1712 var postData = {'_method':'put',
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1713 'reviewers_ids': reviewers_ids};
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1714 var success = function(o){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1715 window.location.reload();
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1716 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1717 ajaxPOST(url,postData,success);
3388
cb40b3f6428c review members are dynamically changed based on selected other_repo owner
Marcin Kuzminski <marcin@python-works.com>
parents: 3247
diff changeset
1718 }
2368
5143b8df576c Added mentions autocomplete into main comments form
Marcin Kuzminski <marcin@python-works.com>
parents: 2189
diff changeset
1719
2612
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1720 var PullRequestAutoComplete = function (divid, cont, users_list, groups_list) {
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1721 var myUsers = users_list;
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1722 var myGroups = groups_list;
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1723
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1724 // Define a custom search function for the DataSource of users
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1725 var matchUsers = function (sQuery) {
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1726 // Case insensitive matching
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1727 var query = sQuery.toLowerCase();
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1728 var i = 0;
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1729 var l = myUsers.length;
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1730 var matches = [];
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1731
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1732 // Match against each name of each contact
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1733 for (; i < l; i++) {
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1734 contact = myUsers[i];
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1735 if (((contact.fname+"").toLowerCase().indexOf(query) > -1) ||
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1736 ((contact.lname+"").toLowerCase().indexOf(query) > -1) ||
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1737 ((contact.nname) && ((contact.nname).toLowerCase().indexOf(query) > -1))) {
2612
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1738 matches[matches.length] = contact;
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1739 }
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1740 }
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1741 return matches;
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1742 };
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1743
3417
fa6ba6727475 further cleanup of UsersGroup
Mads Kiilerich <madski@unity3d.com>
parents: 3403
diff changeset
1744 // Define a custom search function for the DataSource of userGroups
2612
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1745 var matchGroups = function (sQuery) {
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1746 // Case insensitive matching
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1747 var query = sQuery.toLowerCase();
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1748 var i = 0;
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1749 var l = myGroups.length;
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1750 var matches = [];
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1751
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1752 // Match against each name of each contact
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1753 for (; i < l; i++) {
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1754 matched_group = myGroups[i];
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1755 if (matched_group.grname.toLowerCase().indexOf(query) > -1) {
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1756 matches[matches.length] = matched_group;
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1757 }
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1758 }
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1759 return matches;
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1760 };
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1761
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1762 //match all
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1763 var matchAll = function (sQuery) {
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1764 u = matchUsers(sQuery);
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1765 return u
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1766 };
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1767
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1768 // DataScheme for owner
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1769 var ownerDS = new YAHOO.util.FunctionDataSource(matchUsers);
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1770
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1771 ownerDS.responseSchema = {
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1772 fields: ["id", "fname", "lname", "nname", "gravatar_lnk"]
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1773 };
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1774
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1775 // Instantiate AutoComplete for mentions
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1776 var reviewerAC = new YAHOO.widget.AutoComplete(divid, cont, ownerDS);
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1777 reviewerAC.useShadow = false;
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1778 reviewerAC.resultTypeList = false;
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1779 reviewerAC.suppressInputUpdate = true;
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1780 reviewerAC.animVert = false;
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1781 reviewerAC.animHoriz = false;
2612
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1782 reviewerAC.animSpeed = 0.1;
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1783
2612
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1784 // Helper highlight function for the formatter
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1785 var highlightMatch = function (full, snippet, matchindex) {
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1786 return full.substring(0, matchindex)
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1787 + "<span class='match'>"
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1788 + full.substr(matchindex, snippet.length)
2612
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1789 + "</span>" + full.substring(matchindex + snippet.length);
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1790 };
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1791
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1792 // Custom formatter to highlight the matching letters
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1793 reviewerAC.formatResult = function (oResultData, sQuery, sResultMatch) {
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1794 var org_sQuery = sQuery;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1795 if(this.dataSource.mentionQuery != null){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1796 sQuery = this.dataSource.mentionQuery;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1797 }
2612
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1798
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1799 var query = sQuery.toLowerCase();
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1800 var _gravatar = function(res, em, group){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1801 if (group !== undefined){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1802 em = '/images/icons/group.png'
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1803 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1804 tmpl = '<div class="ac-container-wrap"><img class="perm-gravatar-ac" src="{0}"/>{1}</div>'
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1805 return tmpl.format(em,res)
2612
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1806 }
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1807 if (oResultData.nname != undefined) {
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1808 var fname = oResultData.fname || "";
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1809 var lname = oResultData.lname || "";
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1810 var nname = oResultData.nname;
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1811
2612
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1812 // Guard against null value
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1813 var fnameMatchIndex = fname.toLowerCase().indexOf(query),
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1814 lnameMatchIndex = lname.toLowerCase().indexOf(query),
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1815 nnameMatchIndex = nname.toLowerCase().indexOf(query),
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1816 displayfname, displaylname, displaynname;
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1817
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1818 if (fnameMatchIndex > -1) {
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1819 displayfname = highlightMatch(fname, query, fnameMatchIndex);
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1820 } else {
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1821 displayfname = fname;
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1822 }
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1823
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1824 if (lnameMatchIndex > -1) {
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1825 displaylname = highlightMatch(lname, query, lnameMatchIndex);
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1826 } else {
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1827 displaylname = lname;
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1828 }
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1829
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1830 if (nnameMatchIndex > -1) {
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1831 displaynname = "(" + highlightMatch(nname, query, nnameMatchIndex) + ")";
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1832 } else {
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1833 displaynname = nname ? "(" + nname + ")" : "";
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1834 }
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1835
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1836 return _gravatar(displayfname + " " + displaylname + " " + displaynname, oResultData.gravatar_lnk);
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1837 } else {
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1838 return '';
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1839 }
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1840 };
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1841
2612
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1842 //members cache to catch duplicates
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1843 reviewerAC.dataSource.cache = [];
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1844 // hack into select event
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1845 if(reviewerAC.itemSelectEvent){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1846 reviewerAC.itemSelectEvent.subscribe(function (sType, aArgs) {
2612
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1847
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1848 var myAC = aArgs[0]; // reference back to the AC instance
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1849 var elLI = aArgs[1]; // reference to the selected LI element
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1850 var oData = aArgs[2]; // object literal of selected item's result data
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1851
2612
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1852 //fill the autocomplete with value
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1853
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1854 if (oData.nname != undefined) {
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1855 addReviewMember(oData.id, oData.fname, oData.lname, oData.nname,
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1856 oData.gravatar_lnk);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1857 myAC.dataSource.cache.push(oData.id);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1858 YUD.get('user').value = ''
2612
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1859 }
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1860 });
2612
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1861 }
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1862 return {
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1863 ownerDS: ownerDS,
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1864 reviewerAC: reviewerAC,
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1865 };
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1866 }
9364776d1331 Added autocomplete widget for pull request reviewers, in exchange of 90s style
Marcin Kuzminski <marcin@python-works.com>
parents: 2611
diff changeset
1867
1778
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1868 /**
1779
9edd6ac132f0 Added sorting into journal and admin pages
Marcin Kuzminski <marcin@python-works.com>
parents: 1778
diff changeset
1869 * QUICK REPO MENU
9edd6ac132f0 Added sorting into journal and admin pages
Marcin Kuzminski <marcin@python-works.com>
parents: 1778
diff changeset
1870 */
9edd6ac132f0 Added sorting into journal and admin pages
Marcin Kuzminski <marcin@python-works.com>
parents: 1778
diff changeset
1871 var quick_repo_menu = function(){
2088
382df4e69dfc quick_repo_menu changed from mouseclick to popup
Marcin Kuzminski <marcin@python-works.com>
parents: 2087
diff changeset
1872 YUE.on(YUQ('.quick_repo_menu'),'mouseenter',function(e){
382df4e69dfc quick_repo_menu changed from mouseclick to popup
Marcin Kuzminski <marcin@python-works.com>
parents: 2087
diff changeset
1873 var menu = e.currentTarget.firstElementChild.firstElementChild;
382df4e69dfc quick_repo_menu changed from mouseclick to popup
Marcin Kuzminski <marcin@python-works.com>
parents: 2087
diff changeset
1874 if(YUD.hasClass(menu,'hidden')){
382df4e69dfc quick_repo_menu changed from mouseclick to popup
Marcin Kuzminski <marcin@python-works.com>
parents: 2087
diff changeset
1875 YUD.replaceClass(e.currentTarget,'hidden', 'active');
382df4e69dfc quick_repo_menu changed from mouseclick to popup
Marcin Kuzminski <marcin@python-works.com>
parents: 2087
diff changeset
1876 YUD.replaceClass(menu, 'hidden', 'active');
382df4e69dfc quick_repo_menu changed from mouseclick to popup
Marcin Kuzminski <marcin@python-works.com>
parents: 2087
diff changeset
1877 }
382df4e69dfc quick_repo_menu changed from mouseclick to popup
Marcin Kuzminski <marcin@python-works.com>
parents: 2087
diff changeset
1878 })
382df4e69dfc quick_repo_menu changed from mouseclick to popup
Marcin Kuzminski <marcin@python-works.com>
parents: 2087
diff changeset
1879 YUE.on(YUQ('.quick_repo_menu'),'mouseleave',function(e){
382df4e69dfc quick_repo_menu changed from mouseclick to popup
Marcin Kuzminski <marcin@python-works.com>
parents: 2087
diff changeset
1880 var menu = e.currentTarget.firstElementChild.firstElementChild;
382df4e69dfc quick_repo_menu changed from mouseclick to popup
Marcin Kuzminski <marcin@python-works.com>
parents: 2087
diff changeset
1881 if(YUD.hasClass(menu,'active')){
382df4e69dfc quick_repo_menu changed from mouseclick to popup
Marcin Kuzminski <marcin@python-works.com>
parents: 2087
diff changeset
1882 YUD.replaceClass(e.currentTarget, 'active', 'hidden');
382df4e69dfc quick_repo_menu changed from mouseclick to popup
Marcin Kuzminski <marcin@python-works.com>
parents: 2087
diff changeset
1883 YUD.replaceClass(menu, 'active', 'hidden');
382df4e69dfc quick_repo_menu changed from mouseclick to popup
Marcin Kuzminski <marcin@python-works.com>
parents: 2087
diff changeset
1884 }
382df4e69dfc quick_repo_menu changed from mouseclick to popup
Marcin Kuzminski <marcin@python-works.com>
parents: 2087
diff changeset
1885 })
1779
9edd6ac132f0 Added sorting into journal and admin pages
Marcin Kuzminski <marcin@python-works.com>
parents: 1778
diff changeset
1886 };
9edd6ac132f0 Added sorting into journal and admin pages
Marcin Kuzminski <marcin@python-works.com>
parents: 1778
diff changeset
1887
9edd6ac132f0 Added sorting into journal and admin pages
Marcin Kuzminski <marcin@python-works.com>
parents: 1778
diff changeset
1888
9edd6ac132f0 Added sorting into journal and admin pages
Marcin Kuzminski <marcin@python-works.com>
parents: 1778
diff changeset
1889 /**
1778
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1890 * TABLE SORTING
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1891 */
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1892
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1893 // returns a node from given html;
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1894 var fromHTML = function(html){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1895 var _html = document.createElement('element');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1896 _html.innerHTML = html;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1897 return _html;
1778
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1898 }
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1899 var get_rev = function(node){
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1900 var n = node.firstElementChild.firstElementChild;
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1901
1778
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1902 if (n===null){
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1903 return -1
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1904 }
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1905 else{
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1906 out = n.firstElementChild.innerHTML.split(':')[0].replace('r','');
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1907 return parseInt(out);
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1908 }
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1909 }
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1910
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1911 var get_name = function(node){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1912 var name = node.firstElementChild.children[2].innerHTML;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1913 return name
1778
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1914 }
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1915 var get_group_name = function(node){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1916 var name = node.firstElementChild.children[1].innerHTML;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1917 return name
1778
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1918 }
1782
eaf09acf6872 added sorting to bookmarks tags and branches
Marcin Kuzminski <marcin@python-works.com>
parents: 1779
diff changeset
1919 var get_date = function(node){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1920 var date_ = YUD.getAttribute(node.firstElementChild,'date');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1921 return date_
1782
eaf09acf6872 added sorting to bookmarks tags and branches
Marcin Kuzminski <marcin@python-works.com>
parents: 1779
diff changeset
1922 }
eaf09acf6872 added sorting to bookmarks tags and branches
Marcin Kuzminski <marcin@python-works.com>
parents: 1779
diff changeset
1923
2548
0ff919f1c283 Fixed sorting by data when using custom date format from settings
Marcin Kuzminski <marcin@python-works.com>
parents: 2441
diff changeset
1924 var get_age = function(node){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1925 return node
2548
0ff919f1c283 Fixed sorting by data when using custom date format from settings
Marcin Kuzminski <marcin@python-works.com>
parents: 2441
diff changeset
1926 }
0ff919f1c283 Fixed sorting by data when using custom date format from settings
Marcin Kuzminski <marcin@python-works.com>
parents: 2441
diff changeset
1927
2658
80d837028c40 implemented admin panel Users table with YUI datatable
Marcin Kuzminski <marcin@python-works.com>
parents: 2614
diff changeset
1928 var get_link = function(node){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1929 return node.firstElementChild.text;
2658
80d837028c40 implemented admin panel Users table with YUI datatable
Marcin Kuzminski <marcin@python-works.com>
parents: 2614
diff changeset
1930 }
80d837028c40 implemented admin panel Users table with YUI datatable
Marcin Kuzminski <marcin@python-works.com>
parents: 2614
diff changeset
1931
1778
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1932 var revisionSort = function(a, b, desc, field) {
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1933
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1934 var a_ = fromHTML(a.getData(field));
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1935 var b_ = fromHTML(b.getData(field));
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1936
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1937 // extract revisions from string nodes
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1938 a_ = get_rev(a_)
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1939 b_ = get_rev(b_)
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1940
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1941 var comp = YAHOO.util.Sort.compare;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1942 var compState = comp(a_, b_, desc);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1943 return compState;
1778
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1944 };
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1945 var ageSort = function(a, b, desc, field) {
2548
0ff919f1c283 Fixed sorting by data when using custom date format from settings
Marcin Kuzminski <marcin@python-works.com>
parents: 2441
diff changeset
1946 var a_ = fromHTML(a.getData(field));
0ff919f1c283 Fixed sorting by data when using custom date format from settings
Marcin Kuzminski <marcin@python-works.com>
parents: 2441
diff changeset
1947 var b_ = fromHTML(b.getData(field));
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1948
2548
0ff919f1c283 Fixed sorting by data when using custom date format from settings
Marcin Kuzminski <marcin@python-works.com>
parents: 2441
diff changeset
1949 // extract name from table
0ff919f1c283 Fixed sorting by data when using custom date format from settings
Marcin Kuzminski <marcin@python-works.com>
parents: 2441
diff changeset
1950 a_ = get_date(a_)
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1951 b_ = get_date(b_)
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1952
1778
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1953 var comp = YAHOO.util.Sort.compare;
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1954 var compState = comp(a_, b_, desc);
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1955 return compState;
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1956 };
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1957
2699
4eef5eeb81a3 fixed sorting by last_login in users admin page
Marcin Kuzminski <marcin@python-works.com>
parents: 2698
diff changeset
1958 var lastLoginSort = function(a, b, desc, field) {
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1959 var a_ = a.getData('last_login_raw') || 0;
2699
4eef5eeb81a3 fixed sorting by last_login in users admin page
Marcin Kuzminski <marcin@python-works.com>
parents: 2698
diff changeset
1960 var b_ = b.getData('last_login_raw') || 0;
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1961
2699
4eef5eeb81a3 fixed sorting by last_login in users admin page
Marcin Kuzminski <marcin@python-works.com>
parents: 2698
diff changeset
1962 var comp = YAHOO.util.Sort.compare;
4eef5eeb81a3 fixed sorting by last_login in users admin page
Marcin Kuzminski <marcin@python-works.com>
parents: 2698
diff changeset
1963 var compState = comp(a_, b_, desc);
4eef5eeb81a3 fixed sorting by last_login in users admin page
Marcin Kuzminski <marcin@python-works.com>
parents: 2698
diff changeset
1964 return compState;
4eef5eeb81a3 fixed sorting by last_login in users admin page
Marcin Kuzminski <marcin@python-works.com>
parents: 2698
diff changeset
1965 };
4eef5eeb81a3 fixed sorting by last_login in users admin page
Marcin Kuzminski <marcin@python-works.com>
parents: 2698
diff changeset
1966
1778
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1967 var nameSort = function(a, b, desc, field) {
4087
182a25646cf4 change repo sorting to raw_nam so it's UI independent
Marcin Kuzminski <marcin@python-works.com>
parents: 4026
diff changeset
1968 var a_ = a.getData('raw_name') || 0;
182a25646cf4 change repo sorting to raw_nam so it's UI independent
Marcin Kuzminski <marcin@python-works.com>
parents: 4026
diff changeset
1969 var b_ = b.getData('raw_name') || 0;
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1970
1778
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1971 var comp = YAHOO.util.Sort.compare;
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1972 var compState = comp(a_, b_, desc);
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1973 return compState;
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1974 };
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1975
2127
b745d5d2563c implemented #377 Users view own permissions
Marcin Kuzminski <marcin@python-works.com>
parents: 2088
diff changeset
1976 var permNameSort = function(a, b, desc, field) {
b745d5d2563c implemented #377 Users view own permissions
Marcin Kuzminski <marcin@python-works.com>
parents: 2088
diff changeset
1977 var a_ = fromHTML(a.getData(field));
b745d5d2563c implemented #377 Users view own permissions
Marcin Kuzminski <marcin@python-works.com>
parents: 2088
diff changeset
1978 var b_ = fromHTML(b.getData(field));
b745d5d2563c implemented #377 Users view own permissions
Marcin Kuzminski <marcin@python-works.com>
parents: 2088
diff changeset
1979 // extract name from table
2128
e29c688e6885 linkify perms and make global ones display better
Marcin Kuzminski <marcin@python-works.com>
parents: 2127
diff changeset
1980
e29c688e6885 linkify perms and make global ones display better
Marcin Kuzminski <marcin@python-works.com>
parents: 2127
diff changeset
1981 a_ = a_.children[0].innerHTML;
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1982 b_ = b_.children[0].innerHTML;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1983
2127
b745d5d2563c implemented #377 Users view own permissions
Marcin Kuzminski <marcin@python-works.com>
parents: 2088
diff changeset
1984 var comp = YAHOO.util.Sort.compare;
b745d5d2563c implemented #377 Users view own permissions
Marcin Kuzminski <marcin@python-works.com>
parents: 2088
diff changeset
1985 var compState = comp(a_, b_, desc);
b745d5d2563c implemented #377 Users view own permissions
Marcin Kuzminski <marcin@python-works.com>
parents: 2088
diff changeset
1986 return compState;
b745d5d2563c implemented #377 Users view own permissions
Marcin Kuzminski <marcin@python-works.com>
parents: 2088
diff changeset
1987 };
b745d5d2563c implemented #377 Users view own permissions
Marcin Kuzminski <marcin@python-works.com>
parents: 2088
diff changeset
1988
1778
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1989 var groupNameSort = function(a, b, desc, field) {
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1990 var a_ = fromHTML(a.getData(field));
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1991 var b_ = fromHTML(b.getData(field));
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1992
1778
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1993 // extract name from table
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1994 a_ = get_group_name(a_)
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1995 b_ = get_group_name(b_)
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
1996
1778
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1997 var comp = YAHOO.util.Sort.compare;
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1998 var compState = comp(a_, b_, desc);
defcf245f3e9 fixes #229 repo sorting is not working.
Marcin Kuzminski <marcin@python-works.com>
parents: 1772
diff changeset
1999 return compState;
1782
eaf09acf6872 added sorting to bookmarks tags and branches
Marcin Kuzminski <marcin@python-works.com>
parents: 1779
diff changeset
2000 };
eaf09acf6872 added sorting to bookmarks tags and branches
Marcin Kuzminski <marcin@python-works.com>
parents: 1779
diff changeset
2001 var dateSort = function(a, b, desc, field) {
eaf09acf6872 added sorting to bookmarks tags and branches
Marcin Kuzminski <marcin@python-works.com>
parents: 1779
diff changeset
2002 var a_ = fromHTML(a.getData(field));
eaf09acf6872 added sorting to bookmarks tags and branches
Marcin Kuzminski <marcin@python-works.com>
parents: 1779
diff changeset
2003 var b_ = fromHTML(b.getData(field));
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2004
1782
eaf09acf6872 added sorting to bookmarks tags and branches
Marcin Kuzminski <marcin@python-works.com>
parents: 1779
diff changeset
2005 // extract name from table
eaf09acf6872 added sorting to bookmarks tags and branches
Marcin Kuzminski <marcin@python-works.com>
parents: 1779
diff changeset
2006 a_ = get_date(a_)
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2007 b_ = get_date(b_)
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2008
1782
eaf09acf6872 added sorting to bookmarks tags and branches
Marcin Kuzminski <marcin@python-works.com>
parents: 1779
diff changeset
2009 var comp = YAHOO.util.Sort.compare;
eaf09acf6872 added sorting to bookmarks tags and branches
Marcin Kuzminski <marcin@python-works.com>
parents: 1779
diff changeset
2010 var compState = comp(a_, b_, desc);
eaf09acf6872 added sorting to bookmarks tags and branches
Marcin Kuzminski <marcin@python-works.com>
parents: 1779
diff changeset
2011 return compState;
2394
6776f4e569d7 Moved select widget to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 2369
diff changeset
2012 };
6776f4e569d7 Moved select widget to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 2369
diff changeset
2013
3638
dddf48cd1eb9 fixed users sorting in admin pannel
Marcin Kuzminski <marcin@python-works.com>
parents: 3622
diff changeset
2014 var usernamelinkSort = function(a, b, desc, field) {
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2015 var a_ = fromHTML(a.getData(field));
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2016 var b_ = fromHTML(b.getData(field));
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2017
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2018 // extract url text from string nodes
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2019 a_ = get_link(a_)
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2020 b_ = get_link(b_)
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2021 var comp = YAHOO.util.Sort.compare;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2022 var compState = comp(a_, b_, desc);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2023 return compState;
2658
80d837028c40 implemented admin panel Users table with YUI datatable
Marcin Kuzminski <marcin@python-works.com>
parents: 2614
diff changeset
2024 }
2394
6776f4e569d7 Moved select widget to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 2369
diff changeset
2025
2759
c61c2ccea2b4 #538 form for permissions can handle multiple users at once
Marcin Kuzminski <marcin@python-works.com>
parents: 2723
diff changeset
2026 var addPermAction = function(_html, users_list, groups_list){
c61c2ccea2b4 #538 form for permissions can handle multiple users at once
Marcin Kuzminski <marcin@python-works.com>
parents: 2723
diff changeset
2027 var elmts = YUD.getElementsByClassName('last_new_member');
c61c2ccea2b4 #538 form for permissions can handle multiple users at once
Marcin Kuzminski <marcin@python-works.com>
parents: 2723
diff changeset
2028 var last_node = elmts[elmts.length-1];
c61c2ccea2b4 #538 form for permissions can handle multiple users at once
Marcin Kuzminski <marcin@python-works.com>
parents: 2723
diff changeset
2029 if (last_node){
c61c2ccea2b4 #538 form for permissions can handle multiple users at once
Marcin Kuzminski <marcin@python-works.com>
parents: 2723
diff changeset
2030 var next_id = (YUD.getElementsByClassName('new_members')).length;
c61c2ccea2b4 #538 form for permissions can handle multiple users at once
Marcin Kuzminski <marcin@python-works.com>
parents: 2723
diff changeset
2031 _html = _html.format(next_id);
c61c2ccea2b4 #538 form for permissions can handle multiple users at once
Marcin Kuzminski <marcin@python-works.com>
parents: 2723
diff changeset
2032 last_node.innerHTML = _html;
c61c2ccea2b4 #538 form for permissions can handle multiple users at once
Marcin Kuzminski <marcin@python-works.com>
parents: 2723
diff changeset
2033 YUD.setStyle(last_node, 'display', '');
c61c2ccea2b4 #538 form for permissions can handle multiple users at once
Marcin Kuzminski <marcin@python-works.com>
parents: 2723
diff changeset
2034 YUD.removeClass(last_node, 'last_new_member');
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2035 MembersAutoComplete("perm_new_member_name_"+next_id,
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2036 "perm_container_"+next_id, users_list, groups_list);
2759
c61c2ccea2b4 #538 form for permissions can handle multiple users at once
Marcin Kuzminski <marcin@python-works.com>
parents: 2723
diff changeset
2037 //create new last NODE
c61c2ccea2b4 #538 form for permissions can handle multiple users at once
Marcin Kuzminski <marcin@python-works.com>
parents: 2723
diff changeset
2038 var el = document.createElement('tr');
c61c2ccea2b4 #538 form for permissions can handle multiple users at once
Marcin Kuzminski <marcin@python-works.com>
parents: 2723
diff changeset
2039 el.id = 'add_perm_input';
c61c2ccea2b4 #538 form for permissions can handle multiple users at once
Marcin Kuzminski <marcin@python-works.com>
parents: 2723
diff changeset
2040 YUD.addClass(el,'last_new_member');
c61c2ccea2b4 #538 form for permissions can handle multiple users at once
Marcin Kuzminski <marcin@python-works.com>
parents: 2723
diff changeset
2041 YUD.addClass(el,'new_members');
c61c2ccea2b4 #538 form for permissions can handle multiple users at once
Marcin Kuzminski <marcin@python-works.com>
parents: 2723
diff changeset
2042 YUD.insertAfter(el, last_node);
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2043 }
2759
c61c2ccea2b4 #538 form for permissions can handle multiple users at once
Marcin Kuzminski <marcin@python-works.com>
parents: 2723
diff changeset
2044 }
3715
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
2045 function ajaxActionRevokePermission(url, obj_id, obj_type, field_id, extra_data) {
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
2046 var callback = {
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
2047 success: function (o) {
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
2048 var tr = YUD.get(String(field_id));
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
2049 tr.parentNode.removeChild(tr);
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
2050 },
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
2051 failure: function (o) {
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
2052 alert(_TM['Failed to remoke permission'] + ": " + o.status);
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
2053 },
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
2054 };
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
2055 query_params = {
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
2056 '_method': 'delete'
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
2057 }
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
2058 // put extra data into POST
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
2059 if (extra_data !== undefined && (typeof extra_data === 'object')){
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
2060 for(k in extra_data){
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
2061 query_params[k] = extra_data[k];
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
2062 }
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
2063 }
2394
6776f4e569d7 Moved select widget to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 2369
diff changeset
2064
3715
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
2065 if (obj_type=='user'){
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
2066 query_params['user_id'] = obj_id;
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
2067 query_params['obj_type'] = 'user';
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
2068 }
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
2069 else if (obj_type=='user_group'){
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
2070 query_params['user_group_id'] = obj_id;
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
2071 query_params['obj_type'] = 'user_group';
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
2072 }
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
2073
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
2074 var request = YAHOO.util.Connect.asyncRequest('POST', url, callback,
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
2075 toQueryString(query_params));
25dbbdae3ed9 consistent handling of grant/revoke of permissions widgets
Marcin Kuzminski <marcin@python-works.com>
parents: 3696
diff changeset
2076 };
2394
6776f4e569d7 Moved select widget to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 2369
diff changeset
2077 /* Multi selectors */
6776f4e569d7 Moved select widget to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 2369
diff changeset
2078
6776f4e569d7 Moved select widget to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 2369
diff changeset
2079 var MultiSelectWidget = function(selected_id, available_id, form_id){
6776f4e569d7 Moved select widget to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 2369
diff changeset
2080
6776f4e569d7 Moved select widget to rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 2369
diff changeset
2081
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2082 //definition of containers ID's
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2083 var selected_container = selected_id;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2084 var available_container = available_id;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2085
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2086 //temp container for selected storage.
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2087 var cache = new Array();
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2088 var av_cache = new Array();
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2089 var c = YUD.get(selected_container);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2090 var ac = YUD.get(available_container);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2091
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2092 //get only selected options for further fullfilment
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2093 for(var i = 0;node =c.options[i];i++){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2094 if(node.selected){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2095 //push selected to my temp storage left overs :)
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2096 cache.push(node);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2097 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2098 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2099
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2100 //get all available options to cache
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2101 for(var i = 0;node =ac.options[i];i++){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2102 //push selected to my temp storage left overs :)
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2103 av_cache.push(node);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2104 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2105
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2106 //fill available only with those not in chosen
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2107 ac.options.length=0;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2108 tmp_cache = new Array();
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2109
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2110 for(var i = 0;node = av_cache[i];i++){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2111 var add = true;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2112 for(var i2 = 0;node_2 = cache[i2];i2++){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2113 if(node.value == node_2.value){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2114 add=false;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2115 break;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2116 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2117 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2118 if(add){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2119 tmp_cache.push(new Option(node.text, node.value, false, false));
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2120 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2121 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2122
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2123 for(var i = 0;node = tmp_cache[i];i++){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2124 ac.options[i] = node;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2125 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2126
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2127 function prompts_action_callback(e){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2128
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2129 var chosen = YUD.get(selected_container);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2130 var available = YUD.get(available_container);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2131
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2132 //get checked and unchecked options from field
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2133 function get_checked(from_field){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2134 //temp container for storage.
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2135 var sel_cache = new Array();
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2136 var oth_cache = new Array();
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2137
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2138 for(var i = 0;node = from_field.options[i];i++){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2139 if(node.selected){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2140 //push selected fields :)
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2141 sel_cache.push(node);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2142 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2143 else{
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2144 oth_cache.push(node)
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2145 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2146 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2147
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2148 return [sel_cache,oth_cache]
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2149 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2150
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2151 //fill the field with given options
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2152 function fill_with(field,options){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2153 //clear firtst
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2154 field.options.length=0;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2155 for(var i = 0;node = options[i];i++){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2156 field.options[i]=new Option(node.text, node.value,
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2157 false, false);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2158 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2159
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2160 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2161 //adds to current field
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2162 function add_to(field,options){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2163 for(var i = 0;node = options[i];i++){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2164 field.appendChild(new Option(node.text, node.value,
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2165 false, false));
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2166 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2167 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2168
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2169 // add action
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2170 if (this.id=='add_element'){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2171 var c = get_checked(available);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2172 add_to(chosen,c[0]);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2173 fill_with(available,c[1]);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2174 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2175 // remove action
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2176 if (this.id=='remove_element'){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2177 var c = get_checked(chosen);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2178 add_to(available,c[0]);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2179 fill_with(chosen,c[1]);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2180 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2181 // add all elements
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2182 if(this.id=='add_all_elements'){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2183 for(var i=0; node = available.options[i];i++){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2184 chosen.appendChild(new Option(node.text,
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2185 node.value, false, false));
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2186 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2187 available.options.length = 0;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2188 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2189 //remove all elements
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2190 if(this.id=='remove_all_elements'){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2191 for(var i=0; node = chosen.options[i];i++){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2192 available.appendChild(new Option(node.text,
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2193 node.value, false, false));
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2194 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2195 chosen.options.length = 0;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2196 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2197
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2198 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2199
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2200 YUE.addListener(['add_element','remove_element',
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2201 'add_all_elements','remove_all_elements'],'click',
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2202 prompts_action_callback)
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2203 if (form_id !== undefined) {
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2204 YUE.addListener(form_id,'submit',function(){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2205 var chosen = YUD.get(selected_container);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2206 for (var i = 0; i < chosen.options.length; i++) {
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2207 chosen.options[i].selected = 'selected';
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2208 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2209 });
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2210 }
2723
04aa0ea1ddd0 fixed comment addition and deletion functionality on IE9
Dies Koper <diesk@fast.au.fujitsu.com>
parents: 2699
diff changeset
2211 }
3419
efc00d363d1e collapsable diff container in changeset, makes quick review easier
Marcin Kuzminski <marcin@python-works.com>
parents: 3417
diff changeset
2212
3784
62fb395a459d make sure we hide the spans
Marcin Kuzminski <marcin@python-works.com>
parents: 3776
diff changeset
2213 // custom paginator
62fb395a459d make sure we hide the spans
Marcin Kuzminski <marcin@python-works.com>
parents: 3776
diff changeset
2214 var YUI_paginator = function(links_per_page, containers){
3776
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2215
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2216 (function () {
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2217
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2218 var Paginator = YAHOO.widget.Paginator,
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2219 l = YAHOO.lang,
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2220 setId = YAHOO.util.Dom.generateId;
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2221
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2222 Paginator.ui.MyFirstPageLink = function (p) {
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2223 this.paginator = p;
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2224
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2225 p.subscribe('recordOffsetChange',this.update,this,true);
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2226 p.subscribe('rowsPerPageChange',this.update,this,true);
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2227 p.subscribe('totalRecordsChange',this.update,this,true);
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2228 p.subscribe('destroy',this.destroy,this,true);
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2229
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2230 // TODO: make this work
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2231 p.subscribe('firstPageLinkLabelChange',this.update,this,true);
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2232 p.subscribe('firstPageLinkClassChange',this.update,this,true);
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2233 };
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2234
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2235 Paginator.ui.MyFirstPageLink.init = function (p) {
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2236 p.setAttributeConfig('firstPageLinkLabel', {
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2237 value : 1,
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2238 validator : l.isString
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2239 });
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2240 p.setAttributeConfig('firstPageLinkClass', {
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2241 value : 'yui-pg-first',
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2242 validator : l.isString
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2243 });
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2244 p.setAttributeConfig('firstPageLinkTitle', {
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2245 value : 'First Page',
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2246 validator : l.isString
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2247 });
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2248 };
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2249
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2250 // Instance members and methods
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2251 Paginator.ui.MyFirstPageLink.prototype = {
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2252 current : null,
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2253 leftmost_page: null,
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2254 rightmost_page: null,
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2255 link : null,
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2256 span : null,
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2257 dotdot : null,
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2258 getPos : function(cur_page, max_page, items){
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2259 var edge = parseInt(items / 2) + 1;
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2260 if (cur_page <= edge){
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2261 var radius = Math.max(parseInt(items / 2), items - cur_page);
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2262 }
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2263 else if ((max_page - cur_page) < edge) {
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2264 var radius = (items - 1) - (max_page - cur_page);
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2265 }
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2266 else{
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2267 var radius = parseInt(items / 2);
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2268 }
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2269
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2270 var left = Math.max(1, (cur_page - (radius)))
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2271 var right = Math.min(max_page, cur_page + (radius))
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2272 return [left, cur_page, right]
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2273 },
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2274 render : function (id_base) {
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2275 var p = this.paginator,
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2276 c = p.get('firstPageLinkClass'),
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2277 label = p.get('firstPageLinkLabel'),
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2278 title = p.get('firstPageLinkTitle');
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2279
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2280 this.link = document.createElement('a');
3784
62fb395a459d make sure we hide the spans
Marcin Kuzminski <marcin@python-works.com>
parents: 3776
diff changeset
2281 this.span = document.createElement('span');
62fb395a459d make sure we hide the spans
Marcin Kuzminski <marcin@python-works.com>
parents: 3776
diff changeset
2282 YUD.setStyle(this.span, 'display', 'none');
3776
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2283
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2284 var _pos = this.getPos(p.getCurrentPage(), p.getTotalPages(), 5);
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2285 this.leftmost_page = _pos[0];
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2286 this.rightmost_page = _pos[2];
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2287
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2288 setId(this.link, id_base + '-first-link');
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2289 this.link.href = '#';
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2290 this.link.className = c;
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2291 this.link.innerHTML = label;
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2292 this.link.title = title;
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2293 YAHOO.util.Event.on(this.link,'click',this.onClick,this,true);
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2294
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2295 setId(this.span, id_base + '-first-span');
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2296 this.span.className = c;
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2297 this.span.innerHTML = label;
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2298
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2299 this.current = p.getCurrentPage() > 1 ? this.link : this.span;
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2300 return this.current;
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2301 },
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2302 update : function (e) {
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2303 var p = this.paginator;
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2304 var _pos = this.getPos(p.getCurrentPage(), p.getTotalPages(), 5);
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2305 this.leftmost_page = _pos[0];
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2306 this.rightmost_page = _pos[2];
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2307
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2308 if (e && e.prevValue === e.newValue) {
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2309 return;
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2310 }
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2311
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2312 var par = this.current ? this.current.parentNode : null;
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2313 if (this.leftmost_page > 1) {
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2314 if (par && this.current === this.span) {
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2315 par.replaceChild(this.link,this.current);
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2316 this.current = this.link;
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2317 }
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2318 } else {
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2319 if (par && this.current === this.link) {
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2320 par.replaceChild(this.span,this.current);
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2321 this.current = this.span;
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2322 }
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2323 }
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2324 },
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2325 destroy : function () {
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2326 YAHOO.util.Event.purgeElement(this.link);
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2327 this.current.parentNode.removeChild(this.current);
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2328 this.link = this.span = null;
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2329 },
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2330 onClick : function (e) {
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2331 YAHOO.util.Event.stopEvent(e);
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2332 this.paginator.setPage(1);
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2333 }
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2334 };
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2335
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2336 })();
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2337 (function () {
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2338
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2339 var Paginator = YAHOO.widget.Paginator,
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2340 l = YAHOO.lang,
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2341 setId = YAHOO.util.Dom.generateId;
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2342
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2343 Paginator.ui.MyLastPageLink = function (p) {
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2344 this.paginator = p;
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2345
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2346 p.subscribe('recordOffsetChange',this.update,this,true);
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2347 p.subscribe('rowsPerPageChange',this.update,this,true);
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2348 p.subscribe('totalRecordsChange',this.update,this,true);
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2349 p.subscribe('destroy',this.destroy,this,true);
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2350
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2351 // TODO: make this work
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2352 p.subscribe('lastPageLinkLabelChange',this.update,this,true);
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2353 p.subscribe('lastPageLinkClassChange', this.update,this,true);
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2354 };
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2355
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2356 Paginator.ui.MyLastPageLink.init = function (p) {
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2357 p.setAttributeConfig('lastPageLinkLabel', {
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2358 value : -1,
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2359 validator : l.isString
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2360 });
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2361 p.setAttributeConfig('lastPageLinkClass', {
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2362 value : 'yui-pg-last',
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2363 validator : l.isString
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2364 });
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2365 p.setAttributeConfig('lastPageLinkTitle', {
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2366 value : 'Last Page',
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2367 validator : l.isString
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2368 });
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2369
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2370 };
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2371
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2372 Paginator.ui.MyLastPageLink.prototype = {
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2373
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2374 current : null,
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2375 leftmost_page: null,
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2376 rightmost_page: null,
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2377 link : null,
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2378 span : null,
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2379 dotdot : null,
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2380 na : null,
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2381 getPos : function(cur_page, max_page, items){
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2382 var edge = parseInt(items / 2) + 1;
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2383 if (cur_page <= edge){
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2384 var radius = Math.max(parseInt(items / 2), items - cur_page);
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2385 }
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2386 else if ((max_page - cur_page) < edge) {
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2387 var radius = (items - 1) - (max_page - cur_page);
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2388 }
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2389 else{
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2390 var radius = parseInt(items / 2);
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2391 }
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2392
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2393 var left = Math.max(1, (cur_page - (radius)))
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2394 var right = Math.min(max_page, cur_page + (radius))
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2395 return [left, cur_page, right]
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2396 },
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2397 render : function (id_base) {
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2398 var p = this.paginator,
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2399 c = p.get('lastPageLinkClass'),
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2400 label = p.get('lastPageLinkLabel'),
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2401 last = p.getTotalPages(),
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2402 title = p.get('lastPageLinkTitle');
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2403
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2404 var _pos = this.getPos(p.getCurrentPage(), p.getTotalPages(), 5);
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2405 this.leftmost_page = _pos[0];
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2406 this.rightmost_page = _pos[2];
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2407
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2408 this.link = document.createElement('a');
3784
62fb395a459d make sure we hide the spans
Marcin Kuzminski <marcin@python-works.com>
parents: 3776
diff changeset
2409 this.span = document.createElement('span');
62fb395a459d make sure we hide the spans
Marcin Kuzminski <marcin@python-works.com>
parents: 3776
diff changeset
2410 YUD.setStyle(this.span, 'display', 'none');
62fb395a459d make sure we hide the spans
Marcin Kuzminski <marcin@python-works.com>
parents: 3776
diff changeset
2411
3776
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2412 this.na = this.span.cloneNode(false);
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2413
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2414 setId(this.link, id_base + '-last-link');
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2415 this.link.href = '#';
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2416 this.link.className = c;
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2417 this.link.innerHTML = label;
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2418 this.link.title = title;
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2419 YAHOO.util.Event.on(this.link,'click',this.onClick,this,true);
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2420
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2421 setId(this.span, id_base + '-last-span');
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2422 this.span.className = c;
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2423 this.span.innerHTML = label;
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2424
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2425 setId(this.na, id_base + '-last-na');
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2426
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2427 if (this.rightmost_page < p.getTotalPages()){
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2428 this.current = this.link;
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2429 }
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2430 else{
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2431 this.current = this.span;
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2432 }
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2433
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2434 this.current.innerHTML = p.getTotalPages();
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2435 return this.current;
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2436 },
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2437
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2438 update : function (e) {
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2439 var p = this.paginator;
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2440
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2441 var _pos = this.getPos(p.getCurrentPage(), p.getTotalPages(), 5);
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2442 this.leftmost_page = _pos[0];
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2443 this.rightmost_page = _pos[2];
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2444
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2445 if (e && e.prevValue === e.newValue) {
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2446 return;
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2447 }
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2448
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2449 var par = this.current ? this.current.parentNode : null,
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2450 after = this.link;
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2451 if (par) {
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2452
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2453 // only show the last page if the rightmost one is
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2454 // lower, so we don't have doubled entries at the end
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2455 if (!(this.rightmost_page < p.getTotalPages())){
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2456 after = this.span
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2457 }
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2458
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2459 if (this.current !== after) {
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2460 par.replaceChild(after,this.current);
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2461 this.current = after;
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2462 }
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2463 }
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2464 this.current.innerHTML = this.paginator.getTotalPages();
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2465
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2466 },
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2467 destroy : function () {
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2468 YAHOO.util.Event.purgeElement(this.link);
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2469 this.current.parentNode.removeChild(this.current);
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2470 this.link = this.span = null;
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2471 },
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2472 onClick : function (e) {
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2473 YAHOO.util.Event.stopEvent(e);
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2474 this.paginator.setPage(this.paginator.getTotalPages());
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2475 }
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2476 };
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2477
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2478 })();
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2479
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2480 var pagi = new YAHOO.widget.Paginator({
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2481 rowsPerPage: links_per_page,
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2482 alwaysVisible: false,
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2483 template : "{PreviousPageLink} {MyFirstPageLink} {PageLinks} {MyLastPageLink} {NextPageLink}",
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2484 pageLinks: 5,
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2485 containerClass: 'pagination-wh',
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2486 currentPageClass: 'pager_curpage',
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2487 pageLinkClass: 'pager_link',
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2488 nextPageLinkLabel: '&gt;',
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2489 previousPageLinkLabel: '&lt;',
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2490 containers:containers
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2491 })
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2492
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2493 return pagi
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2494 }
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2495
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2496
13241a4075e9 Unified the paginators for pylons and YUI.
Marcin Kuzminski <marcin@python-works.com>
parents: 3715
diff changeset
2497
3419
efc00d363d1e collapsable diff container in changeset, makes quick review easier
Marcin Kuzminski <marcin@python-works.com>
parents: 3417
diff changeset
2498 // global hooks after DOM is loaded
efc00d363d1e collapsable diff container in changeset, makes quick review easier
Marcin Kuzminski <marcin@python-works.com>
parents: 3417
diff changeset
2499
efc00d363d1e collapsable diff container in changeset, makes quick review easier
Marcin Kuzminski <marcin@python-works.com>
parents: 3417
diff changeset
2500 YUE.onDOMReady(function(){
3696
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2501 YUE.on(YUQ('.diff-collapse-button'), 'click', function(e){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2502 var button = e.currentTarget;
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2503 var t = YUD.get(button).getAttribute('target');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2504 console.log(t);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2505 if(YUD.hasClass(t, 'hidden')){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2506 YUD.removeClass(t, 'hidden');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2507 YUD.get(button).innerHTML = "&uarr; {0} &uarr;".format(_TM['Collapse diff']);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2508 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2509 else if(!YUD.hasClass(t, 'hidden')){
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2510 YUD.addClass(t, 'hidden');
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2511 YUD.get(button).innerHTML = "&darr; {0} &darr;".format(_TM['Expand diff']);
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2512 }
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2513 });
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2514
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2515
e07b07ac9fbe codecleaner for rhodecode.js
Marcin Kuzminski <marcin@python-works.com>
parents: 3695
diff changeset
2516
3419
efc00d363d1e collapsable diff container in changeset, makes quick review easier
Marcin Kuzminski <marcin@python-works.com>
parents: 3417
diff changeset
2517 });