activate-admin 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.components +9 -0
- data/.gitignore +29 -0
- data/Gemfile +57 -0
- data/Gemfile.lock +184 -0
- data/Procfile +1 -0
- data/README.md +54 -0
- data/Rakefile +6 -0
- data/activate-admin.gemspec +19 -0
- data/admin/app.rb +160 -0
- data/admin/assets/fonts/FontAwesome.otf +0 -0
- data/admin/assets/fonts/fontawesome-webfont.eot +0 -0
- data/admin/assets/fonts/fontawesome-webfont.ttf +0 -0
- data/admin/assets/fonts/fontawesome-webfont.woff +0 -0
- data/admin/assets/javascripts/bootstrap-wysihtml5-0.0.2.js +321 -0
- data/admin/assets/javascripts/bootstrap.min.js +6 -0
- data/admin/assets/javascripts/jquery-1.9.1.min.js +5 -0
- data/admin/assets/javascripts/jquery-migrate-1.1.1.js +511 -0
- data/admin/assets/javascripts/jquery-ujs.js +95 -0
- data/admin/assets/javascripts/jquery.ba-bbq.min.js +18 -0
- data/admin/assets/javascripts/wysihtml5-0.3.0.js +9530 -0
- data/admin/assets/stylesheets/bootstrap-responsive.min.css +9 -0
- data/admin/assets/stylesheets/bootstrap-wysihtml5-0.0.2.css +44 -0
- data/admin/assets/stylesheets/bootstrap.min.css +9 -0
- data/admin/assets/stylesheets/font-awesome.min.css +34 -0
- data/admin/helpers/helpers.rb +19 -0
- data/admin/views/build.erb +111 -0
- data/admin/views/home.erb +24 -0
- data/admin/views/index.erb +108 -0
- data/admin/views/layouts/application.erb +75 -0
- data/admin/views/login_page.erb +31 -0
- data/config/apps.rb +5 -0
- data/config/boot.rb +26 -0
- data/config/mongoid.yml +14 -0
- data/config/navigation.rb +3 -0
- data/config.ru +9 -0
- data/lib/activate-admin/version.rb +3 -0
- data/lib/activate-admin.rb +6 -0
- data/lib/assetpack_patch.rb +18 -0
- data/lib/date_formats.rb +11 -0
- data/lib/datetime_helpers.rb +32 -0
- data/lib/dragonfly.rb +30 -0
- data/lib/kaminari/_first_page.html.erb +12 -0
- data/lib/kaminari/_gap.html.erb +8 -0
- data/lib/kaminari/_last_page.html.erb +13 -0
- data/lib/kaminari/_next_page.html.erb +13 -0
- data/lib/kaminari/_page.html.erb +12 -0
- data/lib/kaminari/_paginator.html.erb +25 -0
- data/lib/kaminari/_prev_page.html.erb +13 -0
- data/lib/kaminari.rb +51 -0
- data/lib/param_helpers.rb +41 -0
- metadata +113 -0
@@ -0,0 +1,511 @@
|
|
1
|
+
/*!
|
2
|
+
* jQuery Migrate - v1.1.1 - 2013-02-16
|
3
|
+
* https://github.com/jquery/jquery-migrate
|
4
|
+
* Copyright 2005, 2013 jQuery Foundation, Inc. and other contributors; Licensed MIT
|
5
|
+
*/
|
6
|
+
(function( jQuery, window, undefined ) {
|
7
|
+
// See http://bugs.jquery.com/ticket/13335
|
8
|
+
// "use strict";
|
9
|
+
|
10
|
+
|
11
|
+
var warnedAbout = {};
|
12
|
+
|
13
|
+
// List of warnings already given; public read only
|
14
|
+
jQuery.migrateWarnings = [];
|
15
|
+
|
16
|
+
// Set to true to prevent console output; migrateWarnings still maintained
|
17
|
+
// jQuery.migrateMute = false;
|
18
|
+
|
19
|
+
// Show a message on the console so devs know we're active
|
20
|
+
if ( !jQuery.migrateMute && window.console && console.log ) {
|
21
|
+
console.log("JQMIGRATE: Logging is active");
|
22
|
+
}
|
23
|
+
|
24
|
+
// Set to false to disable traces that appear with warnings
|
25
|
+
if ( jQuery.migrateTrace === undefined ) {
|
26
|
+
jQuery.migrateTrace = true;
|
27
|
+
}
|
28
|
+
|
29
|
+
// Forget any warnings we've already given; public
|
30
|
+
jQuery.migrateReset = function() {
|
31
|
+
warnedAbout = {};
|
32
|
+
jQuery.migrateWarnings.length = 0;
|
33
|
+
};
|
34
|
+
|
35
|
+
function migrateWarn( msg) {
|
36
|
+
if ( !warnedAbout[ msg ] ) {
|
37
|
+
warnedAbout[ msg ] = true;
|
38
|
+
jQuery.migrateWarnings.push( msg );
|
39
|
+
if ( window.console && console.warn && !jQuery.migrateMute ) {
|
40
|
+
console.warn( "JQMIGRATE: " + msg );
|
41
|
+
if ( jQuery.migrateTrace && console.trace ) {
|
42
|
+
console.trace();
|
43
|
+
}
|
44
|
+
}
|
45
|
+
}
|
46
|
+
}
|
47
|
+
|
48
|
+
function migrateWarnProp( obj, prop, value, msg ) {
|
49
|
+
if ( Object.defineProperty ) {
|
50
|
+
// On ES5 browsers (non-oldIE), warn if the code tries to get prop;
|
51
|
+
// allow property to be overwritten in case some other plugin wants it
|
52
|
+
try {
|
53
|
+
Object.defineProperty( obj, prop, {
|
54
|
+
configurable: true,
|
55
|
+
enumerable: true,
|
56
|
+
get: function() {
|
57
|
+
migrateWarn( msg );
|
58
|
+
return value;
|
59
|
+
},
|
60
|
+
set: function( newValue ) {
|
61
|
+
migrateWarn( msg );
|
62
|
+
value = newValue;
|
63
|
+
}
|
64
|
+
});
|
65
|
+
return;
|
66
|
+
} catch( err ) {
|
67
|
+
// IE8 is a dope about Object.defineProperty, can't warn there
|
68
|
+
}
|
69
|
+
}
|
70
|
+
|
71
|
+
// Non-ES5 (or broken) browser; just set the property
|
72
|
+
jQuery._definePropertyBroken = true;
|
73
|
+
obj[ prop ] = value;
|
74
|
+
}
|
75
|
+
|
76
|
+
if ( document.compatMode === "BackCompat" ) {
|
77
|
+
// jQuery has never supported or tested Quirks Mode
|
78
|
+
migrateWarn( "jQuery is not compatible with Quirks Mode" );
|
79
|
+
}
|
80
|
+
|
81
|
+
|
82
|
+
var attrFn = jQuery( "<input/>", { size: 1 } ).attr("size") && jQuery.attrFn,
|
83
|
+
oldAttr = jQuery.attr,
|
84
|
+
valueAttrGet = jQuery.attrHooks.value && jQuery.attrHooks.value.get ||
|
85
|
+
function() { return null; },
|
86
|
+
valueAttrSet = jQuery.attrHooks.value && jQuery.attrHooks.value.set ||
|
87
|
+
function() { return undefined; },
|
88
|
+
rnoType = /^(?:input|button)$/i,
|
89
|
+
rnoAttrNodeType = /^[238]$/,
|
90
|
+
rboolean = /^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,
|
91
|
+
ruseDefault = /^(?:checked|selected)$/i;
|
92
|
+
|
93
|
+
// jQuery.attrFn
|
94
|
+
migrateWarnProp( jQuery, "attrFn", attrFn || {}, "jQuery.attrFn is deprecated" );
|
95
|
+
|
96
|
+
jQuery.attr = function( elem, name, value, pass ) {
|
97
|
+
var lowerName = name.toLowerCase(),
|
98
|
+
nType = elem && elem.nodeType;
|
99
|
+
|
100
|
+
if ( pass ) {
|
101
|
+
// Since pass is used internally, we only warn for new jQuery
|
102
|
+
// versions where there isn't a pass arg in the formal params
|
103
|
+
if ( oldAttr.length < 4 ) {
|
104
|
+
migrateWarn("jQuery.fn.attr( props, pass ) is deprecated");
|
105
|
+
}
|
106
|
+
if ( elem && !rnoAttrNodeType.test( nType ) &&
|
107
|
+
(attrFn ? name in attrFn : jQuery.isFunction(jQuery.fn[name])) ) {
|
108
|
+
return jQuery( elem )[ name ]( value );
|
109
|
+
}
|
110
|
+
}
|
111
|
+
|
112
|
+
// Warn if user tries to set `type`, since it breaks on IE 6/7/8; by checking
|
113
|
+
// for disconnected elements we don't warn on $( "<button>", { type: "button" } ).
|
114
|
+
if ( name === "type" && value !== undefined && rnoType.test( elem.nodeName ) && elem.parentNode ) {
|
115
|
+
migrateWarn("Can't change the 'type' of an input or button in IE 6/7/8");
|
116
|
+
}
|
117
|
+
|
118
|
+
// Restore boolHook for boolean property/attribute synchronization
|
119
|
+
if ( !jQuery.attrHooks[ lowerName ] && rboolean.test( lowerName ) ) {
|
120
|
+
jQuery.attrHooks[ lowerName ] = {
|
121
|
+
get: function( elem, name ) {
|
122
|
+
// Align boolean attributes with corresponding properties
|
123
|
+
// Fall back to attribute presence where some booleans are not supported
|
124
|
+
var attrNode,
|
125
|
+
property = jQuery.prop( elem, name );
|
126
|
+
return property === true || typeof property !== "boolean" &&
|
127
|
+
( attrNode = elem.getAttributeNode(name) ) && attrNode.nodeValue !== false ?
|
128
|
+
|
129
|
+
name.toLowerCase() :
|
130
|
+
undefined;
|
131
|
+
},
|
132
|
+
set: function( elem, value, name ) {
|
133
|
+
var propName;
|
134
|
+
if ( value === false ) {
|
135
|
+
// Remove boolean attributes when set to false
|
136
|
+
jQuery.removeAttr( elem, name );
|
137
|
+
} else {
|
138
|
+
// value is true since we know at this point it's type boolean and not false
|
139
|
+
// Set boolean attributes to the same name and set the DOM property
|
140
|
+
propName = jQuery.propFix[ name ] || name;
|
141
|
+
if ( propName in elem ) {
|
142
|
+
// Only set the IDL specifically if it already exists on the element
|
143
|
+
elem[ propName ] = true;
|
144
|
+
}
|
145
|
+
|
146
|
+
elem.setAttribute( name, name.toLowerCase() );
|
147
|
+
}
|
148
|
+
return name;
|
149
|
+
}
|
150
|
+
};
|
151
|
+
|
152
|
+
// Warn only for attributes that can remain distinct from their properties post-1.9
|
153
|
+
if ( ruseDefault.test( lowerName ) ) {
|
154
|
+
migrateWarn( "jQuery.fn.attr('" + lowerName + "') may use property instead of attribute" );
|
155
|
+
}
|
156
|
+
}
|
157
|
+
|
158
|
+
return oldAttr.call( jQuery, elem, name, value );
|
159
|
+
};
|
160
|
+
|
161
|
+
// attrHooks: value
|
162
|
+
jQuery.attrHooks.value = {
|
163
|
+
get: function( elem, name ) {
|
164
|
+
var nodeName = ( elem.nodeName || "" ).toLowerCase();
|
165
|
+
if ( nodeName === "button" ) {
|
166
|
+
return valueAttrGet.apply( this, arguments );
|
167
|
+
}
|
168
|
+
if ( nodeName !== "input" && nodeName !== "option" ) {
|
169
|
+
migrateWarn("jQuery.fn.attr('value') no longer gets properties");
|
170
|
+
}
|
171
|
+
return name in elem ?
|
172
|
+
elem.value :
|
173
|
+
null;
|
174
|
+
},
|
175
|
+
set: function( elem, value ) {
|
176
|
+
var nodeName = ( elem.nodeName || "" ).toLowerCase();
|
177
|
+
if ( nodeName === "button" ) {
|
178
|
+
return valueAttrSet.apply( this, arguments );
|
179
|
+
}
|
180
|
+
if ( nodeName !== "input" && nodeName !== "option" ) {
|
181
|
+
migrateWarn("jQuery.fn.attr('value', val) no longer sets properties");
|
182
|
+
}
|
183
|
+
// Does not return so that setAttribute is also used
|
184
|
+
elem.value = value;
|
185
|
+
}
|
186
|
+
};
|
187
|
+
|
188
|
+
|
189
|
+
var matched, browser,
|
190
|
+
oldInit = jQuery.fn.init,
|
191
|
+
oldParseJSON = jQuery.parseJSON,
|
192
|
+
// Note this does NOT include the #9521 XSS fix from 1.7!
|
193
|
+
rquickExpr = /^(?:[^<]*(<[\w\W]+>)[^>]*|#([\w\-]*))$/;
|
194
|
+
|
195
|
+
// $(html) "looks like html" rule change
|
196
|
+
jQuery.fn.init = function( selector, context, rootjQuery ) {
|
197
|
+
var match;
|
198
|
+
|
199
|
+
if ( selector && typeof selector === "string" && !jQuery.isPlainObject( context ) &&
|
200
|
+
(match = rquickExpr.exec( selector )) && match[1] ) {
|
201
|
+
// This is an HTML string according to the "old" rules; is it still?
|
202
|
+
if ( selector.charAt( 0 ) !== "<" ) {
|
203
|
+
migrateWarn("$(html) HTML strings must start with '<' character");
|
204
|
+
}
|
205
|
+
// Now process using loose rules; let pre-1.8 play too
|
206
|
+
if ( context && context.context ) {
|
207
|
+
// jQuery object as context; parseHTML expects a DOM object
|
208
|
+
context = context.context;
|
209
|
+
}
|
210
|
+
if ( jQuery.parseHTML ) {
|
211
|
+
return oldInit.call( this, jQuery.parseHTML( jQuery.trim(selector), context, true ),
|
212
|
+
context, rootjQuery );
|
213
|
+
}
|
214
|
+
}
|
215
|
+
return oldInit.apply( this, arguments );
|
216
|
+
};
|
217
|
+
jQuery.fn.init.prototype = jQuery.fn;
|
218
|
+
|
219
|
+
// Let $.parseJSON(falsy_value) return null
|
220
|
+
jQuery.parseJSON = function( json ) {
|
221
|
+
if ( !json && json !== null ) {
|
222
|
+
migrateWarn("jQuery.parseJSON requires a valid JSON string");
|
223
|
+
return null;
|
224
|
+
}
|
225
|
+
return oldParseJSON.apply( this, arguments );
|
226
|
+
};
|
227
|
+
|
228
|
+
jQuery.uaMatch = function( ua ) {
|
229
|
+
ua = ua.toLowerCase();
|
230
|
+
|
231
|
+
var match = /(chrome)[ \/]([\w.]+)/.exec( ua ) ||
|
232
|
+
/(webkit)[ \/]([\w.]+)/.exec( ua ) ||
|
233
|
+
/(opera)(?:.*version|)[ \/]([\w.]+)/.exec( ua ) ||
|
234
|
+
/(msie) ([\w.]+)/.exec( ua ) ||
|
235
|
+
ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec( ua ) ||
|
236
|
+
[];
|
237
|
+
|
238
|
+
return {
|
239
|
+
browser: match[ 1 ] || "",
|
240
|
+
version: match[ 2 ] || "0"
|
241
|
+
};
|
242
|
+
};
|
243
|
+
|
244
|
+
// Don't clobber any existing jQuery.browser in case it's different
|
245
|
+
if ( !jQuery.browser ) {
|
246
|
+
matched = jQuery.uaMatch( navigator.userAgent );
|
247
|
+
browser = {};
|
248
|
+
|
249
|
+
if ( matched.browser ) {
|
250
|
+
browser[ matched.browser ] = true;
|
251
|
+
browser.version = matched.version;
|
252
|
+
}
|
253
|
+
|
254
|
+
// Chrome is Webkit, but Webkit is also Safari.
|
255
|
+
if ( browser.chrome ) {
|
256
|
+
browser.webkit = true;
|
257
|
+
} else if ( browser.webkit ) {
|
258
|
+
browser.safari = true;
|
259
|
+
}
|
260
|
+
|
261
|
+
jQuery.browser = browser;
|
262
|
+
}
|
263
|
+
|
264
|
+
// Warn if the code tries to get jQuery.browser
|
265
|
+
migrateWarnProp( jQuery, "browser", jQuery.browser, "jQuery.browser is deprecated" );
|
266
|
+
|
267
|
+
jQuery.sub = function() {
|
268
|
+
function jQuerySub( selector, context ) {
|
269
|
+
return new jQuerySub.fn.init( selector, context );
|
270
|
+
}
|
271
|
+
jQuery.extend( true, jQuerySub, this );
|
272
|
+
jQuerySub.superclass = this;
|
273
|
+
jQuerySub.fn = jQuerySub.prototype = this();
|
274
|
+
jQuerySub.fn.constructor = jQuerySub;
|
275
|
+
jQuerySub.sub = this.sub;
|
276
|
+
jQuerySub.fn.init = function init( selector, context ) {
|
277
|
+
if ( context && context instanceof jQuery && !(context instanceof jQuerySub) ) {
|
278
|
+
context = jQuerySub( context );
|
279
|
+
}
|
280
|
+
|
281
|
+
return jQuery.fn.init.call( this, selector, context, rootjQuerySub );
|
282
|
+
};
|
283
|
+
jQuerySub.fn.init.prototype = jQuerySub.fn;
|
284
|
+
var rootjQuerySub = jQuerySub(document);
|
285
|
+
migrateWarn( "jQuery.sub() is deprecated" );
|
286
|
+
return jQuerySub;
|
287
|
+
};
|
288
|
+
|
289
|
+
|
290
|
+
// Ensure that $.ajax gets the new parseJSON defined in core.js
|
291
|
+
jQuery.ajaxSetup({
|
292
|
+
converters: {
|
293
|
+
"text json": jQuery.parseJSON
|
294
|
+
}
|
295
|
+
});
|
296
|
+
|
297
|
+
|
298
|
+
var oldFnData = jQuery.fn.data;
|
299
|
+
|
300
|
+
jQuery.fn.data = function( name ) {
|
301
|
+
var ret, evt,
|
302
|
+
elem = this[0];
|
303
|
+
|
304
|
+
// Handles 1.7 which has this behavior and 1.8 which doesn't
|
305
|
+
if ( elem && name === "events" && arguments.length === 1 ) {
|
306
|
+
ret = jQuery.data( elem, name );
|
307
|
+
evt = jQuery._data( elem, name );
|
308
|
+
if ( ( ret === undefined || ret === evt ) && evt !== undefined ) {
|
309
|
+
migrateWarn("Use of jQuery.fn.data('events') is deprecated");
|
310
|
+
return evt;
|
311
|
+
}
|
312
|
+
}
|
313
|
+
return oldFnData.apply( this, arguments );
|
314
|
+
};
|
315
|
+
|
316
|
+
|
317
|
+
var rscriptType = /\/(java|ecma)script/i,
|
318
|
+
oldSelf = jQuery.fn.andSelf || jQuery.fn.addBack;
|
319
|
+
|
320
|
+
jQuery.fn.andSelf = function() {
|
321
|
+
migrateWarn("jQuery.fn.andSelf() replaced by jQuery.fn.addBack()");
|
322
|
+
return oldSelf.apply( this, arguments );
|
323
|
+
};
|
324
|
+
|
325
|
+
// Since jQuery.clean is used internally on older versions, we only shim if it's missing
|
326
|
+
if ( !jQuery.clean ) {
|
327
|
+
jQuery.clean = function( elems, context, fragment, scripts ) {
|
328
|
+
// Set context per 1.8 logic
|
329
|
+
context = context || document;
|
330
|
+
context = !context.nodeType && context[0] || context;
|
331
|
+
context = context.ownerDocument || context;
|
332
|
+
|
333
|
+
migrateWarn("jQuery.clean() is deprecated");
|
334
|
+
|
335
|
+
var i, elem, handleScript, jsTags,
|
336
|
+
ret = [];
|
337
|
+
|
338
|
+
jQuery.merge( ret, jQuery.buildFragment( elems, context ).childNodes );
|
339
|
+
|
340
|
+
// Complex logic lifted directly from jQuery 1.8
|
341
|
+
if ( fragment ) {
|
342
|
+
// Special handling of each script element
|
343
|
+
handleScript = function( elem ) {
|
344
|
+
// Check if we consider it executable
|
345
|
+
if ( !elem.type || rscriptType.test( elem.type ) ) {
|
346
|
+
// Detach the script and store it in the scripts array (if provided) or the fragment
|
347
|
+
// Return truthy to indicate that it has been handled
|
348
|
+
return scripts ?
|
349
|
+
scripts.push( elem.parentNode ? elem.parentNode.removeChild( elem ) : elem ) :
|
350
|
+
fragment.appendChild( elem );
|
351
|
+
}
|
352
|
+
};
|
353
|
+
|
354
|
+
for ( i = 0; (elem = ret[i]) != null; i++ ) {
|
355
|
+
// Check if we're done after handling an executable script
|
356
|
+
if ( !( jQuery.nodeName( elem, "script" ) && handleScript( elem ) ) ) {
|
357
|
+
// Append to fragment and handle embedded scripts
|
358
|
+
fragment.appendChild( elem );
|
359
|
+
if ( typeof elem.getElementsByTagName !== "undefined" ) {
|
360
|
+
// handleScript alters the DOM, so use jQuery.merge to ensure snapshot iteration
|
361
|
+
jsTags = jQuery.grep( jQuery.merge( [], elem.getElementsByTagName("script") ), handleScript );
|
362
|
+
|
363
|
+
// Splice the scripts into ret after their former ancestor and advance our index beyond them
|
364
|
+
ret.splice.apply( ret, [i + 1, 0].concat( jsTags ) );
|
365
|
+
i += jsTags.length;
|
366
|
+
}
|
367
|
+
}
|
368
|
+
}
|
369
|
+
}
|
370
|
+
|
371
|
+
return ret;
|
372
|
+
};
|
373
|
+
}
|
374
|
+
|
375
|
+
var eventAdd = jQuery.event.add,
|
376
|
+
eventRemove = jQuery.event.remove,
|
377
|
+
eventTrigger = jQuery.event.trigger,
|
378
|
+
oldToggle = jQuery.fn.toggle,
|
379
|
+
oldLive = jQuery.fn.live,
|
380
|
+
oldDie = jQuery.fn.die,
|
381
|
+
ajaxEvents = "ajaxStart|ajaxStop|ajaxSend|ajaxComplete|ajaxError|ajaxSuccess",
|
382
|
+
rajaxEvent = new RegExp( "\\b(?:" + ajaxEvents + ")\\b" ),
|
383
|
+
rhoverHack = /(?:^|\s)hover(\.\S+|)\b/,
|
384
|
+
hoverHack = function( events ) {
|
385
|
+
if ( typeof( events ) !== "string" || jQuery.event.special.hover ) {
|
386
|
+
return events;
|
387
|
+
}
|
388
|
+
if ( rhoverHack.test( events ) ) {
|
389
|
+
migrateWarn("'hover' pseudo-event is deprecated, use 'mouseenter mouseleave'");
|
390
|
+
}
|
391
|
+
return events && events.replace( rhoverHack, "mouseenter$1 mouseleave$1" );
|
392
|
+
};
|
393
|
+
|
394
|
+
// Event props removed in 1.9, put them back if needed; no practical way to warn them
|
395
|
+
if ( jQuery.event.props && jQuery.event.props[ 0 ] !== "attrChange" ) {
|
396
|
+
jQuery.event.props.unshift( "attrChange", "attrName", "relatedNode", "srcElement" );
|
397
|
+
}
|
398
|
+
|
399
|
+
// Undocumented jQuery.event.handle was "deprecated" in jQuery 1.7
|
400
|
+
if ( jQuery.event.dispatch ) {
|
401
|
+
migrateWarnProp( jQuery.event, "handle", jQuery.event.dispatch, "jQuery.event.handle is undocumented and deprecated" );
|
402
|
+
}
|
403
|
+
|
404
|
+
// Support for 'hover' pseudo-event and ajax event warnings
|
405
|
+
jQuery.event.add = function( elem, types, handler, data, selector ){
|
406
|
+
if ( elem !== document && rajaxEvent.test( types ) ) {
|
407
|
+
migrateWarn( "AJAX events should be attached to document: " + types );
|
408
|
+
}
|
409
|
+
eventAdd.call( this, elem, hoverHack( types || "" ), handler, data, selector );
|
410
|
+
};
|
411
|
+
jQuery.event.remove = function( elem, types, handler, selector, mappedTypes ){
|
412
|
+
eventRemove.call( this, elem, hoverHack( types ) || "", handler, selector, mappedTypes );
|
413
|
+
};
|
414
|
+
|
415
|
+
jQuery.fn.error = function() {
|
416
|
+
var args = Array.prototype.slice.call( arguments, 0);
|
417
|
+
migrateWarn("jQuery.fn.error() is deprecated");
|
418
|
+
args.splice( 0, 0, "error" );
|
419
|
+
if ( arguments.length ) {
|
420
|
+
return this.bind.apply( this, args );
|
421
|
+
}
|
422
|
+
// error event should not bubble to window, although it does pre-1.7
|
423
|
+
this.triggerHandler.apply( this, args );
|
424
|
+
return this;
|
425
|
+
};
|
426
|
+
|
427
|
+
jQuery.fn.toggle = function( fn, fn2 ) {
|
428
|
+
|
429
|
+
// Don't mess with animation or css toggles
|
430
|
+
if ( !jQuery.isFunction( fn ) || !jQuery.isFunction( fn2 ) ) {
|
431
|
+
return oldToggle.apply( this, arguments );
|
432
|
+
}
|
433
|
+
migrateWarn("jQuery.fn.toggle(handler, handler...) is deprecated");
|
434
|
+
|
435
|
+
// Save reference to arguments for access in closure
|
436
|
+
var args = arguments,
|
437
|
+
guid = fn.guid || jQuery.guid++,
|
438
|
+
i = 0,
|
439
|
+
toggler = function( event ) {
|
440
|
+
// Figure out which function to execute
|
441
|
+
var lastToggle = ( jQuery._data( this, "lastToggle" + fn.guid ) || 0 ) % i;
|
442
|
+
jQuery._data( this, "lastToggle" + fn.guid, lastToggle + 1 );
|
443
|
+
|
444
|
+
// Make sure that clicks stop
|
445
|
+
event.preventDefault();
|
446
|
+
|
447
|
+
// and execute the function
|
448
|
+
return args[ lastToggle ].apply( this, arguments ) || false;
|
449
|
+
};
|
450
|
+
|
451
|
+
// link all the functions, so any of them can unbind this click handler
|
452
|
+
toggler.guid = guid;
|
453
|
+
while ( i < args.length ) {
|
454
|
+
args[ i++ ].guid = guid;
|
455
|
+
}
|
456
|
+
|
457
|
+
return this.click( toggler );
|
458
|
+
};
|
459
|
+
|
460
|
+
jQuery.fn.live = function( types, data, fn ) {
|
461
|
+
migrateWarn("jQuery.fn.live() is deprecated");
|
462
|
+
if ( oldLive ) {
|
463
|
+
return oldLive.apply( this, arguments );
|
464
|
+
}
|
465
|
+
jQuery( this.context ).on( types, this.selector, data, fn );
|
466
|
+
return this;
|
467
|
+
};
|
468
|
+
|
469
|
+
jQuery.fn.die = function( types, fn ) {
|
470
|
+
migrateWarn("jQuery.fn.die() is deprecated");
|
471
|
+
if ( oldDie ) {
|
472
|
+
return oldDie.apply( this, arguments );
|
473
|
+
}
|
474
|
+
jQuery( this.context ).off( types, this.selector || "**", fn );
|
475
|
+
return this;
|
476
|
+
};
|
477
|
+
|
478
|
+
// Turn global events into document-triggered events
|
479
|
+
jQuery.event.trigger = function( event, data, elem, onlyHandlers ){
|
480
|
+
if ( !elem && !rajaxEvent.test( event ) ) {
|
481
|
+
migrateWarn( "Global events are undocumented and deprecated" );
|
482
|
+
}
|
483
|
+
return eventTrigger.call( this, event, data, elem || document, onlyHandlers );
|
484
|
+
};
|
485
|
+
jQuery.each( ajaxEvents.split("|"),
|
486
|
+
function( _, name ) {
|
487
|
+
jQuery.event.special[ name ] = {
|
488
|
+
setup: function() {
|
489
|
+
var elem = this;
|
490
|
+
|
491
|
+
// The document needs no shimming; must be !== for oldIE
|
492
|
+
if ( elem !== document ) {
|
493
|
+
jQuery.event.add( document, name + "." + jQuery.guid, function() {
|
494
|
+
jQuery.event.trigger( name, null, elem, true );
|
495
|
+
});
|
496
|
+
jQuery._data( this, name, jQuery.guid++ );
|
497
|
+
}
|
498
|
+
return false;
|
499
|
+
},
|
500
|
+
teardown: function() {
|
501
|
+
if ( this !== document ) {
|
502
|
+
jQuery.event.remove( document, name + "." + jQuery._data( this, name ) );
|
503
|
+
}
|
504
|
+
return false;
|
505
|
+
}
|
506
|
+
};
|
507
|
+
}
|
508
|
+
);
|
509
|
+
|
510
|
+
|
511
|
+
})( jQuery, window );
|
@@ -0,0 +1,95 @@
|
|
1
|
+
/*
|
2
|
+
* Padrino Javascript Jquery Adapter
|
3
|
+
* Created for use with Padrino Ruby Web Framework (http://www.padrinorb.com)
|
4
|
+
**/
|
5
|
+
|
6
|
+
/* Remote Form Support
|
7
|
+
* form_for @user, '/user', :remote => true
|
8
|
+
**/
|
9
|
+
|
10
|
+
$(function(){
|
11
|
+
$('form').on('submit', function(e) {
|
12
|
+
var element = $(this), message = element.data('confirm');
|
13
|
+
if (message && !confirm(message)) { return false; }
|
14
|
+
if (element.data('remote') == true) {
|
15
|
+
e.preventDefault(); e.stopped = true;
|
16
|
+
JSAdapter.sendRequest(element, {
|
17
|
+
verb: element.data('method') || element.attr('method') || 'post',
|
18
|
+
url: element.attr('action'),
|
19
|
+
dataType: element.data('type') || ($.ajaxSettings && $.ajaxSettings.dataType) || 'script',
|
20
|
+
params: element.serializeArray()
|
21
|
+
});
|
22
|
+
}
|
23
|
+
});
|
24
|
+
|
25
|
+
/* Confirmation Support
|
26
|
+
* link_to 'sign out', '/logout', :confirm => 'Log out?'
|
27
|
+
**/
|
28
|
+
|
29
|
+
$('a[data-confirm]').on('click', function(e) {
|
30
|
+
var message = $(this).data('confirm');
|
31
|
+
if (!confirm(message)) { e.preventDefault(); e.stopped = true; }
|
32
|
+
});
|
33
|
+
|
34
|
+
/*
|
35
|
+
* Link Remote Support
|
36
|
+
* link_to 'add item', '/create', :remote => true
|
37
|
+
**/
|
38
|
+
|
39
|
+
$('a[data-remote=true]').on('click', function(e) {
|
40
|
+
var element = $(this);
|
41
|
+
if (e.stopped) return;
|
42
|
+
e.preventDefault(); e.stopped = true;
|
43
|
+
JSAdapter.sendRequest(element, {
|
44
|
+
verb: element.data('method') || 'get',
|
45
|
+
url: element.attr('href')
|
46
|
+
});
|
47
|
+
});
|
48
|
+
|
49
|
+
/*
|
50
|
+
* Link Method Support
|
51
|
+
* link_to 'delete item', '/destroy', :method => :delete
|
52
|
+
**/
|
53
|
+
|
54
|
+
$('a[data-method]:not([data-remote])').on('click', function(e) {
|
55
|
+
if (e.stopped) return;
|
56
|
+
JSAdapter.sendMethod($(this));
|
57
|
+
e.preventDefault(); e.stopped = true;
|
58
|
+
});
|
59
|
+
|
60
|
+
/* JSAdapter */
|
61
|
+
var JSAdapter = {
|
62
|
+
// Sends an xhr request to the specified url with given verb and params
|
63
|
+
// JSAdapter.sendRequest(element, { verb: 'put', url : '...', params: {} });
|
64
|
+
sendRequest: function(element, options) {
|
65
|
+
var verb = options.verb, url = options.url, params = options.params, dataType = options.dataType;
|
66
|
+
var event = element.trigger('ajax:before');
|
67
|
+
if (event.stopped) return false;
|
68
|
+
$.ajax({
|
69
|
+
url: url,
|
70
|
+
type: verb.toUpperCase() || 'POST',
|
71
|
+
data: params || [],
|
72
|
+
dataType: dataType,
|
73
|
+
|
74
|
+
beforeSend: function(request) { element.trigger('ajax:loading', [ request ]); },
|
75
|
+
complete: function(request) { element.trigger('ajax:complete', [ request ]); },
|
76
|
+
success: function(request) { element.trigger('ajax:success', [ request ]); },
|
77
|
+
error: function(request) { element.trigger('ajax:failure', [ request ]); }
|
78
|
+
});
|
79
|
+
element.trigger('ajax:after');
|
80
|
+
},
|
81
|
+
// Triggers a particular method verb to be triggered in a form posting to the url
|
82
|
+
// JSAdapter.sendMethod(element);
|
83
|
+
sendMethod: function(element) {
|
84
|
+
var verb = element.data('method');
|
85
|
+
var url = element.attr('href');
|
86
|
+
var form = $('<form method="post" action="'+url+'"></form>');
|
87
|
+
form.hide().appendTo('body');
|
88
|
+
if (verb !== 'post') {
|
89
|
+
var field = '<input type="hidden" name="_method" value="' + verb + '" />';
|
90
|
+
form.append(field);
|
91
|
+
}
|
92
|
+
form.submit();
|
93
|
+
}
|
94
|
+
};
|
95
|
+
});
|
@@ -0,0 +1,18 @@
|
|
1
|
+
/*
|
2
|
+
* jQuery BBQ: Back Button & Query Library - v1.3pre - 8/26/2010
|
3
|
+
* http://benalman.com/projects/jquery-bbq-plugin/
|
4
|
+
*
|
5
|
+
* Copyright (c) 2010 "Cowboy" Ben Alman
|
6
|
+
* Dual licensed under the MIT and GPL licenses.
|
7
|
+
* http://benalman.com/about/license/
|
8
|
+
*/
|
9
|
+
(function($,r){var h,n=Array.prototype.slice,t=decodeURIComponent,a=$.param,j,c,m,y,b=$.bbq=$.bbq||{},s,x,k,e=$.event.special,d="hashchange",B="querystring",F="fragment",z="elemUrlAttr",l="href",w="src",p=/^.*\?|#.*$/g,u,H,g,i,C,E={};function G(I){return typeof I==="string"}function D(J){var I=n.call(arguments,1);return function(){return J.apply(this,I.concat(n.call(arguments)))}}function o(I){return I.replace(H,"$2")}function q(I){return I.replace(/(?:^[^?#]*\?([^#]*).*$)?.*/,"$1")}function f(K,P,I,L,J){var R,O,N,Q,M;if(L!==h){N=I.match(K?H:/^([^#?]*)\??([^#]*)(#?.*)/);M=N[3]||"";if(J===2&&G(L)){O=L.replace(K?u:p,"")}else{Q=m(N[2]);L=G(L)?m[K?F:B](L):L;O=J===2?L:J===1?$.extend({},L,Q):$.extend({},Q,L);O=j(O);if(K){O=O.replace(g,t)}}R=N[1]+(K?C:O||!N[1]?"?":"")+O+M}else{R=P(I!==h?I:location.href)}return R}a[B]=D(f,0,q);a[F]=c=D(f,1,o);a.sorted=j=function(J,K){var I=[],L={};$.each(a(J,K).split("&"),function(P,M){var O=M.replace(/(?:%5B|=).*$/,""),N=L[O];if(!N){N=L[O]=[];I.push(O)}N.push(M)});return $.map(I.sort(),function(M){return L[M]}).join("&")};c.noEscape=function(J){J=J||"";var I=$.map(J.split(""),encodeURIComponent);g=new RegExp(I.join("|"),"g")};c.noEscape(",/");c.ajaxCrawlable=function(I){if(I!==h){if(I){u=/^.*(?:#!|#)/;H=/^([^#]*)(?:#!|#)?(.*)$/;C="#!"}else{u=/^.*#/;H=/^([^#]*)#?(.*)$/;C="#"}i=!!I}return i};c.ajaxCrawlable(0);$.deparam=m=function(L,I){var K={},J={"true":!0,"false":!1,"null":null};$.each(L.replace(/\+/g," ").split("&"),function(O,T){var N=T.split("="),S=t(N[0]),M,R=K,P=0,U=S.split("]["),Q=U.length-1;if(/\[/.test(U[0])&&/\]$/.test(U[Q])){U[Q]=U[Q].replace(/\]$/,"");U=U.shift().split("[").concat(U);Q=U.length-1}else{Q=0}if(N.length===2){M=t(N[1]);if(I){M=M&&!isNaN(M)?+M:M==="undefined"?h:J[M]!==h?J[M]:M}if(Q){for(;P<=Q;P++){S=U[P]===""?R.length:U[P];R=R[S]=P<Q?R[S]||(U[P+1]&&isNaN(U[P+1])?{}:[]):M}}else{if($.isArray(K[S])){K[S].push(M)}else{if(K[S]!==h){K[S]=[K[S],M]}else{K[S]=M}}}}else{if(S){K[S]=I?h:""}}});return K};function A(K,I,J){if(I===h||typeof I==="boolean"){J=I;I=a[K?F:B]()}else{I=G(I)?I.replace(K?u:p,""):I}return m(I,J)}m[B]=D(A,0);m[F]=y=D(A,1);$[z]||($[z]=function(I){return $.extend(E,I)})({a:l,base:l,iframe:w,img:w,input:w,form:"action",link:l,script:w});k=$[z];function v(L,J,K,I){if(!G(K)&&typeof K!=="object"){I=K;K=J;J=h}return this.each(function(){var O=$(this),M=J||k()[(this.nodeName||"").toLowerCase()]||"",N=M&&O.attr(M)||"";O.attr(M,a[L](N,K,I))})}$.fn[B]=D(v,B);$.fn[F]=D(v,F);b.pushState=s=function(L,I){if(G(L)&&/^#/.test(L)&&I===h){I=2}var K=L!==h,J=c(location.href,K?L:{},K?I:2);location.href=J};b.getState=x=function(I,J){return I===h||typeof I==="boolean"?y(I):y(J)[I]};b.removeState=function(I){var J={};if(I!==h){J=x();$.each($.isArray(I)?I:arguments,function(L,K){delete J[K]})}s(J,2)};e[d]=$.extend(e[d],{add:function(I){var K;function J(M){var L=M[F]=c();M.getState=function(N,O){return N===h||typeof N==="boolean"?m(L,N):m(L,O)[N]};K.apply(this,arguments)}if($.isFunction(I)){K=I;return J}else{K=I.handler;I.handler=J}}})})(jQuery,this);
|
10
|
+
/*
|
11
|
+
* jQuery hashchange event - v1.3 - 7/21/2010
|
12
|
+
* http://benalman.com/projects/jquery-hashchange-plugin/
|
13
|
+
*
|
14
|
+
* Copyright (c) 2010 "Cowboy" Ben Alman
|
15
|
+
* Dual licensed under the MIT and GPL licenses.
|
16
|
+
* http://benalman.com/about/license/
|
17
|
+
*/
|
18
|
+
(function($,e,b){var c="hashchange",h=document,f,g=$.event.special,i=h.documentMode,d="on"+c in e&&(i===b||i>7);function a(j){j=j||location.href;return"#"+j.replace(/^[^#]*#?(.*)$/,"$1")}$.fn[c]=function(j){return j?this.bind(c,j):this.trigger(c)};$.fn[c].delay=50;g[c]=$.extend(g[c],{setup:function(){if(d){return false}$(f.start)},teardown:function(){if(d){return false}$(f.stop)}});f=(function(){var j={},p,m=a(),k=function(q){return q},l=k,o=k;j.start=function(){p||n()};j.stop=function(){p&&clearTimeout(p);p=b};function n(){var r=a(),q=o(m);if(r!==m){l(m=r,q);$(e).trigger(c)}else{if(q!==m){location.href=location.href.replace(/#.*/,"")+q}}p=setTimeout(n,$.fn[c].delay)}$.browser.msie&&!d&&(function(){var q,r;j.start=function(){if(!q){r=$.fn[c].src;r=r&&r+a();q=$('<iframe tabindex="-1" title="empty"/>').hide().one("load",function(){r||l(a());n()}).attr("src",r||"javascript:0").insertAfter("body")[0].contentWindow;h.onpropertychange=function(){try{if(event.propertyName==="title"){q.document.title=h.title}}catch(s){}}}};j.stop=k;o=function(){return a(q.location.href)};l=function(v,s){var u=q.document,t=$.fn[c].domain;if(v!==s){u.title=h.title;u.open();t&&u.write('<script>document.domain="'+t+'"<\/script>');u.close();q.location.hash=v}}})();return j})()})(jQuery,this);
|