ajax_scaffold_generator 1.0.0 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/MIT-LICENSE +20 -20
- data/{USAGE → README} +28 -31
- data/ajax_scaffold_generator.rb +123 -201
- data/templates/add.gif +0 -0
- data/templates/controller.rb +61 -49
- data/templates/error.gif +0 -0
- data/templates/form.rhtml +5 -1
- data/templates/functional_test.rb +88 -71
- data/templates/helper.rb +12 -2
- data/templates/indicator.gif +0 -0
- data/templates/layout.rhtml +15 -14
- data/templates/partial_form_errors.rhtml +9 -0
- data/templates/partial_item.rhtml +25 -16
- data/templates/rico_corner.js +781 -0
- data/templates/script.js +327 -47
- data/templates/style.css +324 -74
- data/templates/view_edit.rhtml +22 -0
- data/templates/view_index.rhtml +1 -0
- data/templates/view_list.rhtml +53 -15
- data/templates/view_new.rhtml +22 -0
- metadata +32 -39
- data/templates/partial_edit.rhtml +0 -13
- data/templates/partial_error.rhtml +0 -3
- data/templates/partial_new.rhtml +0 -13
@@ -0,0 +1,781 @@
|
|
1
|
+
/**
|
2
|
+
*
|
3
|
+
* Copyright 2005 Sabre Airline Solutions
|
4
|
+
*
|
5
|
+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
|
6
|
+
* file except in compliance with the License. You may obtain a copy of the License at
|
7
|
+
*
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
*
|
10
|
+
* Unless required by applicable law or agreed to in writing, software distributed under the
|
11
|
+
* License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
|
12
|
+
* either express or implied. See the License for the specific language governing permissions
|
13
|
+
* and limitations under the License.
|
14
|
+
**/
|
15
|
+
|
16
|
+
|
17
|
+
//-------------------- rico.js
|
18
|
+
var Rico = {
|
19
|
+
Version: '1.1.0',
|
20
|
+
prototypeVersion: parseFloat(Prototype.Version.split(".")[0] + "." + Prototype.Version.split(".")[1])
|
21
|
+
}
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
|
26
|
+
//-------------------- ricoColor.js
|
27
|
+
Rico.Color = Class.create();
|
28
|
+
|
29
|
+
Rico.Color.prototype = {
|
30
|
+
|
31
|
+
initialize: function(red, green, blue) {
|
32
|
+
this.rgb = { r: red, g : green, b : blue };
|
33
|
+
},
|
34
|
+
|
35
|
+
setRed: function(r) {
|
36
|
+
this.rgb.r = r;
|
37
|
+
},
|
38
|
+
|
39
|
+
setGreen: function(g) {
|
40
|
+
this.rgb.g = g;
|
41
|
+
},
|
42
|
+
|
43
|
+
setBlue: function(b) {
|
44
|
+
this.rgb.b = b;
|
45
|
+
},
|
46
|
+
|
47
|
+
setHue: function(h) {
|
48
|
+
|
49
|
+
// get an HSB model, and set the new hue...
|
50
|
+
var hsb = this.asHSB();
|
51
|
+
hsb.h = h;
|
52
|
+
|
53
|
+
// convert back to RGB...
|
54
|
+
this.rgb = Rico.Color.HSBtoRGB(hsb.h, hsb.s, hsb.b);
|
55
|
+
},
|
56
|
+
|
57
|
+
setSaturation: function(s) {
|
58
|
+
// get an HSB model, and set the new hue...
|
59
|
+
var hsb = this.asHSB();
|
60
|
+
hsb.s = s;
|
61
|
+
|
62
|
+
// convert back to RGB and set values...
|
63
|
+
this.rgb = Rico.Color.HSBtoRGB(hsb.h, hsb.s, hsb.b);
|
64
|
+
},
|
65
|
+
|
66
|
+
setBrightness: function(b) {
|
67
|
+
// get an HSB model, and set the new hue...
|
68
|
+
var hsb = this.asHSB();
|
69
|
+
hsb.b = b;
|
70
|
+
|
71
|
+
// convert back to RGB and set values...
|
72
|
+
this.rgb = Rico.Color.HSBtoRGB( hsb.h, hsb.s, hsb.b );
|
73
|
+
},
|
74
|
+
|
75
|
+
darken: function(percent) {
|
76
|
+
var hsb = this.asHSB();
|
77
|
+
this.rgb = Rico.Color.HSBtoRGB(hsb.h, hsb.s, Math.max(hsb.b - percent,0));
|
78
|
+
},
|
79
|
+
|
80
|
+
brighten: function(percent) {
|
81
|
+
var hsb = this.asHSB();
|
82
|
+
this.rgb = Rico.Color.HSBtoRGB(hsb.h, hsb.s, Math.min(hsb.b + percent,1));
|
83
|
+
},
|
84
|
+
|
85
|
+
blend: function(other) {
|
86
|
+
this.rgb.r = Math.floor((this.rgb.r + other.rgb.r)/2);
|
87
|
+
this.rgb.g = Math.floor((this.rgb.g + other.rgb.g)/2);
|
88
|
+
this.rgb.b = Math.floor((this.rgb.b + other.rgb.b)/2);
|
89
|
+
},
|
90
|
+
|
91
|
+
isBright: function() {
|
92
|
+
var hsb = this.asHSB();
|
93
|
+
return this.asHSB().b > 0.5;
|
94
|
+
},
|
95
|
+
|
96
|
+
isDark: function() {
|
97
|
+
return ! this.isBright();
|
98
|
+
},
|
99
|
+
|
100
|
+
asRGB: function() {
|
101
|
+
return "rgb(" + this.rgb.r + "," + this.rgb.g + "," + this.rgb.b + ")";
|
102
|
+
},
|
103
|
+
|
104
|
+
asHex: function() {
|
105
|
+
return "#" + this.rgb.r.toColorPart() + this.rgb.g.toColorPart() + this.rgb.b.toColorPart();
|
106
|
+
},
|
107
|
+
|
108
|
+
asHSB: function() {
|
109
|
+
return Rico.Color.RGBtoHSB(this.rgb.r, this.rgb.g, this.rgb.b);
|
110
|
+
},
|
111
|
+
|
112
|
+
toString: function() {
|
113
|
+
return this.asHex();
|
114
|
+
}
|
115
|
+
|
116
|
+
};
|
117
|
+
|
118
|
+
Rico.Color.createFromHex = function(hexCode) {
|
119
|
+
if(hexCode.length==4) {
|
120
|
+
var shortHexCode = hexCode;
|
121
|
+
var hexCode = '#';
|
122
|
+
for(var i=1;i<4;i++) hexCode += (shortHexCode.charAt(i) +
|
123
|
+
shortHexCode.charAt(i));
|
124
|
+
}
|
125
|
+
if ( hexCode.indexOf('#') == 0 )
|
126
|
+
hexCode = hexCode.substring(1);
|
127
|
+
var red = hexCode.substring(0,2);
|
128
|
+
var green = hexCode.substring(2,4);
|
129
|
+
var blue = hexCode.substring(4,6);
|
130
|
+
return new Rico.Color( parseInt(red,16), parseInt(green,16), parseInt(blue,16) );
|
131
|
+
}
|
132
|
+
|
133
|
+
/**
|
134
|
+
* Factory method for creating a color from the background of
|
135
|
+
* an HTML element.
|
136
|
+
*/
|
137
|
+
Rico.Color.createColorFromBackground = function(elem) {
|
138
|
+
|
139
|
+
var actualColor = RicoUtil.getElementsComputedStyle($(elem), "backgroundColor", "background-color");
|
140
|
+
|
141
|
+
if ( actualColor == "transparent" && elem.parentNode )
|
142
|
+
return Rico.Color.createColorFromBackground(elem.parentNode);
|
143
|
+
|
144
|
+
if ( actualColor == null )
|
145
|
+
return new Rico.Color(255,255,255);
|
146
|
+
|
147
|
+
if ( actualColor.indexOf("rgb(") == 0 ) {
|
148
|
+
var colors = actualColor.substring(4, actualColor.length - 1 );
|
149
|
+
var colorArray = colors.split(",");
|
150
|
+
return new Rico.Color( parseInt( colorArray[0] ),
|
151
|
+
parseInt( colorArray[1] ),
|
152
|
+
parseInt( colorArray[2] ) );
|
153
|
+
|
154
|
+
}
|
155
|
+
else if ( actualColor.indexOf("#") == 0 ) {
|
156
|
+
return Rico.Color.createFromHex(actualColor);
|
157
|
+
}
|
158
|
+
else
|
159
|
+
return new Rico.Color(255,255,255);
|
160
|
+
}
|
161
|
+
|
162
|
+
Rico.Color.HSBtoRGB = function(hue, saturation, brightness) {
|
163
|
+
|
164
|
+
var red = 0;
|
165
|
+
var green = 0;
|
166
|
+
var blue = 0;
|
167
|
+
|
168
|
+
if (saturation == 0) {
|
169
|
+
red = parseInt(brightness * 255.0 + 0.5);
|
170
|
+
green = red;
|
171
|
+
blue = red;
|
172
|
+
}
|
173
|
+
else {
|
174
|
+
var h = (hue - Math.floor(hue)) * 6.0;
|
175
|
+
var f = h - Math.floor(h);
|
176
|
+
var p = brightness * (1.0 - saturation);
|
177
|
+
var q = brightness * (1.0 - saturation * f);
|
178
|
+
var t = brightness * (1.0 - (saturation * (1.0 - f)));
|
179
|
+
|
180
|
+
switch (parseInt(h)) {
|
181
|
+
case 0:
|
182
|
+
red = (brightness * 255.0 + 0.5);
|
183
|
+
green = (t * 255.0 + 0.5);
|
184
|
+
blue = (p * 255.0 + 0.5);
|
185
|
+
break;
|
186
|
+
case 1:
|
187
|
+
red = (q * 255.0 + 0.5);
|
188
|
+
green = (brightness * 255.0 + 0.5);
|
189
|
+
blue = (p * 255.0 + 0.5);
|
190
|
+
break;
|
191
|
+
case 2:
|
192
|
+
red = (p * 255.0 + 0.5);
|
193
|
+
green = (brightness * 255.0 + 0.5);
|
194
|
+
blue = (t * 255.0 + 0.5);
|
195
|
+
break;
|
196
|
+
case 3:
|
197
|
+
red = (p * 255.0 + 0.5);
|
198
|
+
green = (q * 255.0 + 0.5);
|
199
|
+
blue = (brightness * 255.0 + 0.5);
|
200
|
+
break;
|
201
|
+
case 4:
|
202
|
+
red = (t * 255.0 + 0.5);
|
203
|
+
green = (p * 255.0 + 0.5);
|
204
|
+
blue = (brightness * 255.0 + 0.5);
|
205
|
+
break;
|
206
|
+
case 5:
|
207
|
+
red = (brightness * 255.0 + 0.5);
|
208
|
+
green = (p * 255.0 + 0.5);
|
209
|
+
blue = (q * 255.0 + 0.5);
|
210
|
+
break;
|
211
|
+
}
|
212
|
+
}
|
213
|
+
|
214
|
+
return { r : parseInt(red), g : parseInt(green) , b : parseInt(blue) };
|
215
|
+
}
|
216
|
+
|
217
|
+
Rico.Color.RGBtoHSB = function(r, g, b) {
|
218
|
+
|
219
|
+
var hue;
|
220
|
+
var saturation;
|
221
|
+
var brightness;
|
222
|
+
|
223
|
+
var cmax = (r > g) ? r : g;
|
224
|
+
if (b > cmax)
|
225
|
+
cmax = b;
|
226
|
+
|
227
|
+
var cmin = (r < g) ? r : g;
|
228
|
+
if (b < cmin)
|
229
|
+
cmin = b;
|
230
|
+
|
231
|
+
brightness = cmax / 255.0;
|
232
|
+
if (cmax != 0)
|
233
|
+
saturation = (cmax - cmin)/cmax;
|
234
|
+
else
|
235
|
+
saturation = 0;
|
236
|
+
|
237
|
+
if (saturation == 0)
|
238
|
+
hue = 0;
|
239
|
+
else {
|
240
|
+
var redc = (cmax - r)/(cmax - cmin);
|
241
|
+
var greenc = (cmax - g)/(cmax - cmin);
|
242
|
+
var bluec = (cmax - b)/(cmax - cmin);
|
243
|
+
|
244
|
+
if (r == cmax)
|
245
|
+
hue = bluec - greenc;
|
246
|
+
else if (g == cmax)
|
247
|
+
hue = 2.0 + redc - bluec;
|
248
|
+
else
|
249
|
+
hue = 4.0 + greenc - redc;
|
250
|
+
|
251
|
+
hue = hue / 6.0;
|
252
|
+
if (hue < 0)
|
253
|
+
hue = hue + 1.0;
|
254
|
+
}
|
255
|
+
|
256
|
+
return { h : hue, s : saturation, b : brightness };
|
257
|
+
}
|
258
|
+
|
259
|
+
|
260
|
+
//-------------------- ricoCorner.js
|
261
|
+
Rico.Corner = {
|
262
|
+
|
263
|
+
round: function(e, options) {
|
264
|
+
var e = $(e);
|
265
|
+
this._setOptions(options);
|
266
|
+
|
267
|
+
var color = this.options.color;
|
268
|
+
if ( this.options.color == "fromElement" )
|
269
|
+
color = this._background(e);
|
270
|
+
|
271
|
+
var bgColor = this.options.bgColor;
|
272
|
+
if ( this.options.bgColor == "fromParent" )
|
273
|
+
bgColor = this._background(e.offsetParent);
|
274
|
+
|
275
|
+
this._roundCornersImpl(e, color, bgColor);
|
276
|
+
},
|
277
|
+
|
278
|
+
_roundCornersImpl: function(e, color, bgColor) {
|
279
|
+
if(this.options.border)
|
280
|
+
this._renderBorder(e,bgColor);
|
281
|
+
if(this._isTopRounded())
|
282
|
+
this._roundTopCorners(e,color,bgColor);
|
283
|
+
if(this._isBottomRounded())
|
284
|
+
this._roundBottomCorners(e,color,bgColor);
|
285
|
+
},
|
286
|
+
|
287
|
+
_renderBorder: function(el,bgColor) {
|
288
|
+
var borderValue = "1px solid " + this._borderColor(bgColor);
|
289
|
+
var borderL = "border-left: " + borderValue;
|
290
|
+
var borderR = "border-right: " + borderValue;
|
291
|
+
var style = "style='" + borderL + ";" + borderR + "'";
|
292
|
+
el.innerHTML = "<div " + style + ">" + el.innerHTML + "</div>"
|
293
|
+
},
|
294
|
+
|
295
|
+
_roundTopCorners: function(el, color, bgColor) {
|
296
|
+
var corner = this._createCorner(bgColor);
|
297
|
+
for(var i=0 ; i < this.options.numSlices ; i++ )
|
298
|
+
corner.appendChild(this._createCornerSlice(color,bgColor,i,"top"));
|
299
|
+
el.style.paddingTop = 0;
|
300
|
+
el.insertBefore(corner,el.firstChild);
|
301
|
+
},
|
302
|
+
|
303
|
+
_roundBottomCorners: function(el, color, bgColor) {
|
304
|
+
var corner = this._createCorner(bgColor);
|
305
|
+
for(var i=(this.options.numSlices-1) ; i >= 0 ; i-- )
|
306
|
+
corner.appendChild(this._createCornerSlice(color,bgColor,i,"bottom"));
|
307
|
+
el.style.paddingBottom = 0;
|
308
|
+
el.appendChild(corner);
|
309
|
+
},
|
310
|
+
|
311
|
+
_createCorner: function(bgColor) {
|
312
|
+
var corner = document.createElement("div");
|
313
|
+
corner.style.backgroundColor = (this._isTransparent() ? "transparent" : bgColor);
|
314
|
+
return corner;
|
315
|
+
},
|
316
|
+
|
317
|
+
_createCornerSlice: function(color,bgColor, n, position) {
|
318
|
+
var slice = document.createElement("span");
|
319
|
+
|
320
|
+
var inStyle = slice.style;
|
321
|
+
inStyle.backgroundColor = color;
|
322
|
+
inStyle.display = "block";
|
323
|
+
inStyle.height = "1px";
|
324
|
+
inStyle.overflow = "hidden";
|
325
|
+
inStyle.fontSize = "1px";
|
326
|
+
|
327
|
+
var borderColor = this._borderColor(color,bgColor);
|
328
|
+
if ( this.options.border && n == 0 ) {
|
329
|
+
inStyle.borderTopStyle = "solid";
|
330
|
+
inStyle.borderTopWidth = "1px";
|
331
|
+
inStyle.borderLeftWidth = "0px";
|
332
|
+
inStyle.borderRightWidth = "0px";
|
333
|
+
inStyle.borderBottomWidth = "0px";
|
334
|
+
inStyle.height = "0px"; // assumes css compliant box model
|
335
|
+
inStyle.borderColor = borderColor;
|
336
|
+
}
|
337
|
+
else if(borderColor) {
|
338
|
+
inStyle.borderColor = borderColor;
|
339
|
+
inStyle.borderStyle = "solid";
|
340
|
+
inStyle.borderWidth = "0px 1px";
|
341
|
+
}
|
342
|
+
|
343
|
+
if ( !this.options.compact && (n == (this.options.numSlices-1)) )
|
344
|
+
inStyle.height = "2px";
|
345
|
+
|
346
|
+
this._setMargin(slice, n, position);
|
347
|
+
this._setBorder(slice, n, position);
|
348
|
+
return slice;
|
349
|
+
},
|
350
|
+
|
351
|
+
_setOptions: function(options) {
|
352
|
+
this.options = {
|
353
|
+
corners : "all",
|
354
|
+
color : "fromElement",
|
355
|
+
bgColor : "fromParent",
|
356
|
+
blend : true,
|
357
|
+
border : false,
|
358
|
+
compact : false
|
359
|
+
}
|
360
|
+
Object.extend(this.options, options || {});
|
361
|
+
|
362
|
+
this.options.numSlices = this.options.compact ? 2 : 4;
|
363
|
+
if ( this._isTransparent() )
|
364
|
+
this.options.blend = false;
|
365
|
+
},
|
366
|
+
|
367
|
+
_whichSideTop: function() {
|
368
|
+
if ( this._hasString(this.options.corners, "all", "top") )
|
369
|
+
return "";
|
370
|
+
|
371
|
+
if ( this.options.corners.indexOf("tl") >= 0 && this.options.corners.indexOf("tr") >= 0 )
|
372
|
+
return "";
|
373
|
+
|
374
|
+
if (this.options.corners.indexOf("tl") >= 0)
|
375
|
+
return "left";
|
376
|
+
else if (this.options.corners.indexOf("tr") >= 0)
|
377
|
+
return "right";
|
378
|
+
return "";
|
379
|
+
},
|
380
|
+
|
381
|
+
_whichSideBottom: function() {
|
382
|
+
if ( this._hasString(this.options.corners, "all", "bottom") )
|
383
|
+
return "";
|
384
|
+
|
385
|
+
if ( this.options.corners.indexOf("bl")>=0 && this.options.corners.indexOf("br")>=0 )
|
386
|
+
return "";
|
387
|
+
|
388
|
+
if(this.options.corners.indexOf("bl") >=0)
|
389
|
+
return "left";
|
390
|
+
else if(this.options.corners.indexOf("br")>=0)
|
391
|
+
return "right";
|
392
|
+
return "";
|
393
|
+
},
|
394
|
+
|
395
|
+
_borderColor : function(color,bgColor) {
|
396
|
+
if ( color == "transparent" )
|
397
|
+
return bgColor;
|
398
|
+
else if ( this.options.border )
|
399
|
+
return this.options.border;
|
400
|
+
else if ( this.options.blend )
|
401
|
+
return this._blend( bgColor, color );
|
402
|
+
else
|
403
|
+
return "";
|
404
|
+
},
|
405
|
+
|
406
|
+
|
407
|
+
_setMargin: function(el, n, corners) {
|
408
|
+
var marginSize = this._marginSize(n);
|
409
|
+
var whichSide = corners == "top" ? this._whichSideTop() : this._whichSideBottom();
|
410
|
+
|
411
|
+
if ( whichSide == "left" ) {
|
412
|
+
el.style.marginLeft = marginSize + "px"; el.style.marginRight = "0px";
|
413
|
+
}
|
414
|
+
else if ( whichSide == "right" ) {
|
415
|
+
el.style.marginRight = marginSize + "px"; el.style.marginLeft = "0px";
|
416
|
+
}
|
417
|
+
else {
|
418
|
+
el.style.marginLeft = marginSize + "px"; el.style.marginRight = marginSize + "px";
|
419
|
+
}
|
420
|
+
},
|
421
|
+
|
422
|
+
_setBorder: function(el,n,corners) {
|
423
|
+
var borderSize = this._borderSize(n);
|
424
|
+
var whichSide = corners == "top" ? this._whichSideTop() : this._whichSideBottom();
|
425
|
+
if ( whichSide == "left" ) {
|
426
|
+
el.style.borderLeftWidth = borderSize + "px"; el.style.borderRightWidth = "0px";
|
427
|
+
}
|
428
|
+
else if ( whichSide == "right" ) {
|
429
|
+
el.style.borderRightWidth = borderSize + "px"; el.style.borderLeftWidth = "0px";
|
430
|
+
}
|
431
|
+
else {
|
432
|
+
el.style.borderLeftWidth = borderSize + "px"; el.style.borderRightWidth = borderSize + "px";
|
433
|
+
}
|
434
|
+
if (this.options.border != false)
|
435
|
+
el.style.borderLeftWidth = borderSize + "px"; el.style.borderRightWidth = borderSize + "px";
|
436
|
+
},
|
437
|
+
|
438
|
+
_marginSize: function(n) {
|
439
|
+
if ( this._isTransparent() )
|
440
|
+
return 0;
|
441
|
+
|
442
|
+
var marginSizes = [ 5, 3, 2, 1 ];
|
443
|
+
var blendedMarginSizes = [ 3, 2, 1, 0 ];
|
444
|
+
var compactMarginSizes = [ 2, 1 ];
|
445
|
+
var smBlendedMarginSizes = [ 1, 0 ];
|
446
|
+
|
447
|
+
if ( this.options.compact && this.options.blend )
|
448
|
+
return smBlendedMarginSizes[n];
|
449
|
+
else if ( this.options.compact )
|
450
|
+
return compactMarginSizes[n];
|
451
|
+
else if ( this.options.blend )
|
452
|
+
return blendedMarginSizes[n];
|
453
|
+
else
|
454
|
+
return marginSizes[n];
|
455
|
+
},
|
456
|
+
|
457
|
+
_borderSize: function(n) {
|
458
|
+
var transparentBorderSizes = [ 5, 3, 2, 1 ];
|
459
|
+
var blendedBorderSizes = [ 2, 1, 1, 1 ];
|
460
|
+
var compactBorderSizes = [ 1, 0 ];
|
461
|
+
var actualBorderSizes = [ 0, 2, 0, 0 ];
|
462
|
+
|
463
|
+
if ( this.options.compact && (this.options.blend || this._isTransparent()) )
|
464
|
+
return 1;
|
465
|
+
else if ( this.options.compact )
|
466
|
+
return compactBorderSizes[n];
|
467
|
+
else if ( this.options.blend )
|
468
|
+
return blendedBorderSizes[n];
|
469
|
+
else if ( this.options.border )
|
470
|
+
return actualBorderSizes[n];
|
471
|
+
else if ( this._isTransparent() )
|
472
|
+
return transparentBorderSizes[n];
|
473
|
+
return 0;
|
474
|
+
},
|
475
|
+
|
476
|
+
_hasString: function(str) { for(var i=1 ; i<arguments.length ; i++) if (str.indexOf(arguments[i]) >= 0) return true; return false; },
|
477
|
+
_blend: function(c1, c2) { var cc1 = Rico.Color.createFromHex(c1); cc1.blend(Rico.Color.createFromHex(c2)); return cc1; },
|
478
|
+
_background: function(el) { try { return Rico.Color.createColorFromBackground(el).asHex(); } catch(err) { return "#ffffff"; } },
|
479
|
+
_isTransparent: function() { return this.options.color == "transparent"; },
|
480
|
+
_isTopRounded: function() { return this._hasString(this.options.corners, "all", "top", "tl", "tr"); },
|
481
|
+
_isBottomRounded: function() { return this._hasString(this.options.corners, "all", "bottom", "bl", "br"); },
|
482
|
+
_hasSingleTextChild: function(el) { return el.childNodes.length == 1 && el.childNodes[0].nodeType == 3; }
|
483
|
+
}
|
484
|
+
|
485
|
+
//-------------------- ricoUtil.js
|
486
|
+
Rico.ArrayExtensions = new Array();
|
487
|
+
|
488
|
+
if (Object.prototype.extend) {
|
489
|
+
// in prototype.js...
|
490
|
+
Rico.ArrayExtensions[ Rico.ArrayExtensions.length ] = Object.prototype.extend;
|
491
|
+
}else{
|
492
|
+
Object.prototype.extend = function(object) {
|
493
|
+
return Object.extend.apply(this, [this, object]);
|
494
|
+
}
|
495
|
+
Rico.ArrayExtensions[ Rico.ArrayExtensions.length ] = Object.prototype.extend;
|
496
|
+
}
|
497
|
+
|
498
|
+
if (Array.prototype.push) {
|
499
|
+
// in prototype.js...
|
500
|
+
Rico.ArrayExtensions[ Rico.ArrayExtensions.length ] = Array.prototype.push;
|
501
|
+
}
|
502
|
+
|
503
|
+
if (!Array.prototype.remove) {
|
504
|
+
Array.prototype.remove = function(dx) {
|
505
|
+
if( isNaN(dx) || dx > this.length )
|
506
|
+
return false;
|
507
|
+
for( var i=0,n=0; i<this.length; i++ )
|
508
|
+
if( i != dx )
|
509
|
+
this[n++]=this[i];
|
510
|
+
this.length-=1;
|
511
|
+
};
|
512
|
+
Rico.ArrayExtensions[ Rico.ArrayExtensions.length ] = Array.prototype.remove;
|
513
|
+
}
|
514
|
+
|
515
|
+
if (!Array.prototype.removeItem) {
|
516
|
+
Array.prototype.removeItem = function(item) {
|
517
|
+
for ( var i = 0 ; i < this.length ; i++ )
|
518
|
+
if ( this[i] == item ) {
|
519
|
+
this.remove(i);
|
520
|
+
break;
|
521
|
+
}
|
522
|
+
};
|
523
|
+
Rico.ArrayExtensions[ Rico.ArrayExtensions.length ] = Array.prototype.removeItem;
|
524
|
+
}
|
525
|
+
|
526
|
+
if (!Array.prototype.indices) {
|
527
|
+
Array.prototype.indices = function() {
|
528
|
+
var indexArray = new Array();
|
529
|
+
for ( index in this ) {
|
530
|
+
var ignoreThis = false;
|
531
|
+
for ( var i = 0 ; i < Rico.ArrayExtensions.length ; i++ ) {
|
532
|
+
if ( this[index] == Rico.ArrayExtensions[i] ) {
|
533
|
+
ignoreThis = true;
|
534
|
+
break;
|
535
|
+
}
|
536
|
+
}
|
537
|
+
if ( !ignoreThis )
|
538
|
+
indexArray[ indexArray.length ] = index;
|
539
|
+
}
|
540
|
+
return indexArray;
|
541
|
+
}
|
542
|
+
Rico.ArrayExtensions[ Rico.ArrayExtensions.length ] = Array.prototype.indices;
|
543
|
+
}
|
544
|
+
|
545
|
+
Rico.ArrayExtensions[ Rico.ArrayExtensions.length ] = Array.prototype.unique;
|
546
|
+
Rico.ArrayExtensions[ Rico.ArrayExtensions.length ] = Array.prototype.inArray;
|
547
|
+
|
548
|
+
|
549
|
+
// Create the loadXML method and xml getter for Mozilla
|
550
|
+
if ( window.DOMParser &&
|
551
|
+
window.XMLSerializer &&
|
552
|
+
window.Node && Node.prototype && Node.prototype.__defineGetter__ ) {
|
553
|
+
|
554
|
+
if (!Document.prototype.loadXML) {
|
555
|
+
Document.prototype.loadXML = function (s) {
|
556
|
+
var doc2 = (new DOMParser()).parseFromString(s, "text/xml");
|
557
|
+
while (this.hasChildNodes())
|
558
|
+
this.removeChild(this.lastChild);
|
559
|
+
|
560
|
+
for (var i = 0; i < doc2.childNodes.length; i++) {
|
561
|
+
this.appendChild(this.importNode(doc2.childNodes[i], true));
|
562
|
+
}
|
563
|
+
};
|
564
|
+
}
|
565
|
+
|
566
|
+
Document.prototype.__defineGetter__( "xml",
|
567
|
+
function () {
|
568
|
+
return (new XMLSerializer()).serializeToString(this);
|
569
|
+
}
|
570
|
+
);
|
571
|
+
}
|
572
|
+
|
573
|
+
document.getElementsByTagAndClassName = function(tagName, className) {
|
574
|
+
if ( tagName == null )
|
575
|
+
tagName = '*';
|
576
|
+
|
577
|
+
var children = document.getElementsByTagName(tagName) || document.all;
|
578
|
+
var elements = new Array();
|
579
|
+
|
580
|
+
if ( className == null )
|
581
|
+
return children;
|
582
|
+
|
583
|
+
for (var i = 0; i < children.length; i++) {
|
584
|
+
var child = children[i];
|
585
|
+
var classNames = child.className.split(' ');
|
586
|
+
for (var j = 0; j < classNames.length; j++) {
|
587
|
+
if (classNames[j] == className) {
|
588
|
+
elements.push(child);
|
589
|
+
break;
|
590
|
+
}
|
591
|
+
}
|
592
|
+
}
|
593
|
+
|
594
|
+
return elements;
|
595
|
+
}
|
596
|
+
|
597
|
+
var RicoUtil = {
|
598
|
+
|
599
|
+
getElementsComputedStyle: function ( htmlElement, cssProperty, mozillaEquivalentCSS) {
|
600
|
+
if ( arguments.length == 2 )
|
601
|
+
mozillaEquivalentCSS = cssProperty;
|
602
|
+
|
603
|
+
var el = $(htmlElement);
|
604
|
+
if ( el.currentStyle )
|
605
|
+
return el.currentStyle[cssProperty];
|
606
|
+
else
|
607
|
+
return document.defaultView.getComputedStyle(el, null).getPropertyValue(mozillaEquivalentCSS);
|
608
|
+
},
|
609
|
+
|
610
|
+
createXmlDocument : function() {
|
611
|
+
if (document.implementation && document.implementation.createDocument) {
|
612
|
+
var doc = document.implementation.createDocument("", "", null);
|
613
|
+
|
614
|
+
if (doc.readyState == null) {
|
615
|
+
doc.readyState = 1;
|
616
|
+
doc.addEventListener("load", function () {
|
617
|
+
doc.readyState = 4;
|
618
|
+
if (typeof doc.onreadystatechange == "function")
|
619
|
+
doc.onreadystatechange();
|
620
|
+
}, false);
|
621
|
+
}
|
622
|
+
|
623
|
+
return doc;
|
624
|
+
}
|
625
|
+
|
626
|
+
if (window.ActiveXObject)
|
627
|
+
return Try.these(
|
628
|
+
function() { return new ActiveXObject('MSXML2.DomDocument') },
|
629
|
+
function() { return new ActiveXObject('Microsoft.DomDocument')},
|
630
|
+
function() { return new ActiveXObject('MSXML.DomDocument') },
|
631
|
+
function() { return new ActiveXObject('MSXML3.DomDocument') }
|
632
|
+
) || false;
|
633
|
+
|
634
|
+
return null;
|
635
|
+
},
|
636
|
+
|
637
|
+
getContentAsString: function( parentNode ) {
|
638
|
+
return parentNode.xml != undefined ?
|
639
|
+
this._getContentAsStringIE(parentNode) :
|
640
|
+
this._getContentAsStringMozilla(parentNode);
|
641
|
+
},
|
642
|
+
|
643
|
+
_getContentAsStringIE: function(parentNode) {
|
644
|
+
var contentStr = "";
|
645
|
+
for ( var i = 0 ; i < parentNode.childNodes.length ; i++ ) {
|
646
|
+
var n = parentNode.childNodes[i];
|
647
|
+
if (n.nodeType == 4) {
|
648
|
+
contentStr += n.nodeValue;
|
649
|
+
}
|
650
|
+
else {
|
651
|
+
contentStr += n.xml;
|
652
|
+
}
|
653
|
+
}
|
654
|
+
return contentStr;
|
655
|
+
},
|
656
|
+
|
657
|
+
_getContentAsStringMozilla: function(parentNode) {
|
658
|
+
var xmlSerializer = new XMLSerializer();
|
659
|
+
var contentStr = "";
|
660
|
+
for ( var i = 0 ; i < parentNode.childNodes.length ; i++ ) {
|
661
|
+
var n = parentNode.childNodes[i];
|
662
|
+
if (n.nodeType == 4) { // CDATA node
|
663
|
+
contentStr += n.nodeValue;
|
664
|
+
}
|
665
|
+
else {
|
666
|
+
contentStr += xmlSerializer.serializeToString(n);
|
667
|
+
}
|
668
|
+
}
|
669
|
+
return contentStr;
|
670
|
+
},
|
671
|
+
|
672
|
+
toViewportPosition: function(element) {
|
673
|
+
return this._toAbsolute(element,true);
|
674
|
+
},
|
675
|
+
|
676
|
+
toDocumentPosition: function(element) {
|
677
|
+
return this._toAbsolute(element,false);
|
678
|
+
},
|
679
|
+
|
680
|
+
/**
|
681
|
+
* Compute the elements position in terms of the window viewport
|
682
|
+
* so that it can be compared to the position of the mouse (dnd)
|
683
|
+
* This is additions of all the offsetTop,offsetLeft values up the
|
684
|
+
* offsetParent hierarchy, ...taking into account any scrollTop,
|
685
|
+
* scrollLeft values along the way...
|
686
|
+
*
|
687
|
+
* IE has a bug reporting a correct offsetLeft of elements within a
|
688
|
+
* a relatively positioned parent!!!
|
689
|
+
**/
|
690
|
+
_toAbsolute: function(element,accountForDocScroll) {
|
691
|
+
|
692
|
+
if ( navigator.userAgent.toLowerCase().indexOf("msie") == -1 )
|
693
|
+
return this._toAbsoluteMozilla(element,accountForDocScroll);
|
694
|
+
|
695
|
+
var x = 0;
|
696
|
+
var y = 0;
|
697
|
+
var parent = element;
|
698
|
+
while ( parent ) {
|
699
|
+
|
700
|
+
var borderXOffset = 0;
|
701
|
+
var borderYOffset = 0;
|
702
|
+
if ( parent != element ) {
|
703
|
+
var borderXOffset = parseInt(this.getElementsComputedStyle(parent, "borderLeftWidth" ));
|
704
|
+
var borderYOffset = parseInt(this.getElementsComputedStyle(parent, "borderTopWidth" ));
|
705
|
+
borderXOffset = isNaN(borderXOffset) ? 0 : borderXOffset;
|
706
|
+
borderYOffset = isNaN(borderYOffset) ? 0 : borderYOffset;
|
707
|
+
}
|
708
|
+
|
709
|
+
x += parent.offsetLeft - parent.scrollLeft + borderXOffset;
|
710
|
+
y += parent.offsetTop - parent.scrollTop + borderYOffset;
|
711
|
+
parent = parent.offsetParent;
|
712
|
+
}
|
713
|
+
|
714
|
+
if ( accountForDocScroll ) {
|
715
|
+
x -= this.docScrollLeft();
|
716
|
+
y -= this.docScrollTop();
|
717
|
+
}
|
718
|
+
|
719
|
+
return { x:x, y:y };
|
720
|
+
},
|
721
|
+
|
722
|
+
/**
|
723
|
+
* Mozilla did not report all of the parents up the hierarchy via the
|
724
|
+
* offsetParent property that IE did. So for the calculation of the
|
725
|
+
* offsets we use the offsetParent property, but for the calculation of
|
726
|
+
* the scrollTop/scrollLeft adjustments we navigate up via the parentNode
|
727
|
+
* property instead so as to get the scroll offsets...
|
728
|
+
*
|
729
|
+
**/
|
730
|
+
_toAbsoluteMozilla: function(element,accountForDocScroll) {
|
731
|
+
var x = 0;
|
732
|
+
var y = 0;
|
733
|
+
var parent = element;
|
734
|
+
while ( parent ) {
|
735
|
+
x += parent.offsetLeft;
|
736
|
+
y += parent.offsetTop;
|
737
|
+
parent = parent.offsetParent;
|
738
|
+
}
|
739
|
+
|
740
|
+
parent = element;
|
741
|
+
while ( parent &&
|
742
|
+
parent != document.body &&
|
743
|
+
parent != document.documentElement ) {
|
744
|
+
if ( parent.scrollLeft )
|
745
|
+
x -= parent.scrollLeft;
|
746
|
+
if ( parent.scrollTop )
|
747
|
+
y -= parent.scrollTop;
|
748
|
+
parent = parent.parentNode;
|
749
|
+
}
|
750
|
+
|
751
|
+
if ( accountForDocScroll ) {
|
752
|
+
x -= this.docScrollLeft();
|
753
|
+
y -= this.docScrollTop();
|
754
|
+
}
|
755
|
+
|
756
|
+
return { x:x, y:y };
|
757
|
+
},
|
758
|
+
|
759
|
+
docScrollLeft: function() {
|
760
|
+
if ( window.pageXOffset )
|
761
|
+
return window.pageXOffset;
|
762
|
+
else if ( document.documentElement && document.documentElement.scrollLeft )
|
763
|
+
return document.documentElement.scrollLeft;
|
764
|
+
else if ( document.body )
|
765
|
+
return document.body.scrollLeft;
|
766
|
+
else
|
767
|
+
return 0;
|
768
|
+
},
|
769
|
+
|
770
|
+
docScrollTop: function() {
|
771
|
+
if ( window.pageYOffset )
|
772
|
+
return window.pageYOffset;
|
773
|
+
else if ( document.documentElement && document.documentElement.scrollTop )
|
774
|
+
return document.documentElement.scrollTop;
|
775
|
+
else if ( document.body )
|
776
|
+
return document.body.scrollTop;
|
777
|
+
else
|
778
|
+
return 0;
|
779
|
+
}
|
780
|
+
|
781
|
+
};
|