qwerty 0.0.5.pre → 0.0.7.pre

Sign up to get free protection for your applications and to get access to all the features.
Files changed (23) hide show
  1. data/{README.rdoc → README.md} +11 -13
  2. data/lib/qwerty/version.rb +1 -1
  3. data/test/dummy/log/development.log +698 -0
  4. data/test/dummy/tmp/cache/assets/C21/520/sprockets%2F652a92002fc0c29931f48367871554d2 +0 -0
  5. data/test/dummy/tmp/cache/assets/C59/DA0/sprockets%2F57468a09b48337e460aa3383f45856f0 +0 -0
  6. data/test/dummy/tmp/cache/assets/C86/CA0/sprockets%2Fa607636155791b021e8ce74c95c9b148 +0 -0
  7. data/test/dummy/tmp/cache/assets/CA8/200/sprockets%2Fc9bba0c1f81d750647d37232e1284680 +0 -0
  8. data/test/dummy/tmp/cache/assets/CD2/EC0/sprockets%2F20535c2e0eaa1cf97a6b5690405f2842 +0 -0
  9. data/test/dummy/tmp/cache/assets/CF3/9E0/sprockets%2F8afd4786b07ab855976167194d3e74ca +0 -0
  10. data/test/dummy/tmp/cache/assets/D17/EA0/sprockets%2Fb6aa6228187da2288fb8f428e95db090 +0 -0
  11. data/test/dummy/tmp/cache/assets/D77/CC0/sprockets%2F2f3c6a31d7e596f39e74751cccbf21f5 +0 -0
  12. data/test/dummy/tmp/cache/assets/DA5/660/sprockets%2F4fc47a92c03dfa1768fda7b8e4ef2822 +0 -0
  13. data/test/dummy/tmp/cache/assets/DCD/700/sprockets%2F6e356fcc84f036fd10689bdae1cdeb13 +0 -0
  14. data/test/dummy/tmp/dragonfly/cache/body/21/a3574680e9571e1b0c944c0e2b36e2013ebe4d +9 -0
  15. data/test/dummy/tmp/dragonfly/cache/body/7b/83bb1bc8e951ba6a762064e4f6bfbbe58777bb +429 -0
  16. data/test/dummy/tmp/dragonfly/cache/body/be/314d2b5c8dfcdc0dad2a28de383a74f70dc9ac +7 -0
  17. data/test/dummy/tmp/dragonfly/cache/body/e4/32ca5c76ce861e6e3bbb8385bfc33a0608486c +9556 -0
  18. data/test/dummy/tmp/dragonfly/cache/meta/66/f44aba1428593600ff0e47ea6aa54362e39a59 +0 -0
  19. data/test/dummy/tmp/dragonfly/cache/meta/80/5841ac20acdd8dd41460c8346294abc5c4dd8f +0 -0
  20. data/test/dummy/tmp/dragonfly/cache/meta/ee/fe74949a8c2a0bbc077385a12944d9f98a12e0 +0 -0
  21. data/test/dummy/tmp/dragonfly/cache/meta/f9/67ac04386c59253bd80f4034d18af166cc5691 +0 -0
  22. data/test/dummy/tmp/pids/server.pid +1 -0
  23. metadata +127 -30
@@ -0,0 +1,9 @@
1
+ // This is a manifest file that'll be compiled into including all the files listed below.
2
+ // Add new JavaScript/Coffee code in separate files in this directory and they'll automatically
3
+ // be included in the compiled file accessible from http://example.com/assets/application.js
4
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
5
+ // the compiled file.
6
+ //
7
+
8
+
9
+ ;
@@ -0,0 +1,429 @@
1
+ (function($, undefined) {
2
+
3
+ /**
4
+ * Unobtrusive scripting adapter for jQuery
5
+ *
6
+ * Requires jQuery 1.6.0 or later.
7
+ * https://github.com/rails/jquery-ujs
8
+
9
+ * Uploading file using rails.js
10
+ * =============================
11
+ *
12
+ * By default, browsers do not allow files to be uploaded via AJAX. As a result, if there are any non-blank file fields
13
+ * in the remote form, this adapter aborts the AJAX submission and allows the form to submit through standard means.
14
+ *
15
+ * The `ajax:aborted:file` event allows you to bind your own handler to process the form submission however you wish.
16
+ *
17
+ * Ex:
18
+ * $('form').bind('ajax:aborted:file', function(event, elements){
19
+ * // Implement own remote file-transfer handler here for non-blank file inputs passed in `elements`.
20
+ * // Returning false in this handler tells rails.js to disallow standard form submission
21
+ * return false;
22
+ * });
23
+ *
24
+ * The `ajax:aborted:file` event is fired when a file-type input is detected with a non-blank value.
25
+ *
26
+ * Third-party tools can use this hook to detect when an AJAX file upload is attempted, and then use
27
+ * techniques like the iframe method to upload the file instead.
28
+ *
29
+ * Required fields in rails.js
30
+ * ===========================
31
+ *
32
+ * If any blank required inputs (required="required") are detected in the remote form, the whole form submission
33
+ * is canceled. Note that this is unlike file inputs, which still allow standard (non-AJAX) form submission.
34
+ *
35
+ * The `ajax:aborted:required` event allows you to bind your own handler to inform the user of blank required inputs.
36
+ *
37
+ * !! Note that Opera does not fire the form's submit event if there are blank required inputs, so this event may never
38
+ * get fired in Opera. This event is what causes other browsers to exhibit the same submit-aborting behavior.
39
+ *
40
+ * Ex:
41
+ * $('form').bind('ajax:aborted:required', function(event, elements){
42
+ * // Returning false in this handler tells rails.js to submit the form anyway.
43
+ * // The blank required inputs are passed to this function in `elements`.
44
+ * return ! confirm("Would you like to submit the form with missing info?");
45
+ * });
46
+ */
47
+
48
+ // Cut down on the number if issues from people inadvertently including jquery_ujs twice
49
+ // by detecting and raising an error when it happens.
50
+ var alreadyInitialized = function() {
51
+ var events = $._data(document, 'events');
52
+ return events && events.click && $.grep(events.click, function(e) { return e.namespace === 'rails'; }).length;
53
+ }
54
+
55
+ if ( alreadyInitialized() ) {
56
+ $.error('jquery-ujs has already been loaded!');
57
+ }
58
+
59
+ // Shorthand to make it a little easier to call public rails functions from within rails.js
60
+ var rails;
61
+
62
+ $.rails = rails = {
63
+ // Link elements bound by jquery-ujs
64
+ linkClickSelector: 'a[data-confirm], a[data-method], a[data-remote], a[data-disable-with]',
65
+
66
+ // Select elements bound by jquery-ujs
67
+ inputChangeSelector: 'select[data-remote], input[data-remote], textarea[data-remote]',
68
+
69
+ // Form elements bound by jquery-ujs
70
+ formSubmitSelector: 'form',
71
+
72
+ // Form input elements bound by jquery-ujs
73
+ formInputClickSelector: 'form input[type=submit], form input[type=image], form button[type=submit], form button:not([type])',
74
+
75
+ // Form input elements disabled during form submission
76
+ disableSelector: 'input[data-disable-with], button[data-disable-with], textarea[data-disable-with]',
77
+
78
+ // Form input elements re-enabled after form submission
79
+ enableSelector: 'input[data-disable-with]:disabled, button[data-disable-with]:disabled, textarea[data-disable-with]:disabled',
80
+
81
+ // Form required input elements
82
+ requiredInputSelector: 'input[name][required]:not([disabled]),textarea[name][required]:not([disabled])',
83
+
84
+ // Form file input elements
85
+ fileInputSelector: 'input:file',
86
+
87
+ // Link onClick disable selector with possible reenable after remote submission
88
+ linkDisableSelector: 'a[data-disable-with]',
89
+
90
+ // Make sure that every Ajax request sends the CSRF token
91
+ CSRFProtection: function(xhr) {
92
+ var token = $('meta[name="csrf-token"]').attr('content');
93
+ if (token) xhr.setRequestHeader('X-CSRF-Token', token);
94
+ },
95
+
96
+ // Triggers an event on an element and returns false if the event result is false
97
+ fire: function(obj, name, data) {
98
+ var event = $.Event(name);
99
+ obj.trigger(event, data);
100
+ return event.result !== false;
101
+ },
102
+
103
+ // Default confirm dialog, may be overridden with custom confirm dialog in $.rails.confirm
104
+ confirm: function(message) {
105
+ return confirm(message);
106
+ },
107
+
108
+ // Default ajax function, may be overridden with custom function in $.rails.ajax
109
+ ajax: function(options) {
110
+ return $.ajax(options);
111
+ },
112
+
113
+ // Default way to get an element's href. May be overridden at $.rails.href.
114
+ href: function(element) {
115
+ return element.attr('href');
116
+ },
117
+
118
+ // Submits "remote" forms and links with ajax
119
+ handleRemote: function(element) {
120
+ var method, url, data, elCrossDomain, crossDomain, withCredentials, dataType, options;
121
+
122
+ if (rails.fire(element, 'ajax:before')) {
123
+ elCrossDomain = element.data('cross-domain');
124
+ crossDomain = elCrossDomain === undefined ? null : elCrossDomain;
125
+ withCredentials = element.data('with-credentials') || null;
126
+ dataType = element.data('type') || ($.ajaxSettings && $.ajaxSettings.dataType);
127
+
128
+ if (element.is('form')) {
129
+ method = element.attr('method');
130
+ url = element.attr('action');
131
+ data = element.serializeArray();
132
+ // memoized value from clicked submit button
133
+ var button = element.data('ujs:submit-button');
134
+ if (button) {
135
+ data.push(button);
136
+ element.data('ujs:submit-button', null);
137
+ }
138
+ } else if (element.is(rails.inputChangeSelector)) {
139
+ method = element.data('method');
140
+ url = element.data('url');
141
+ data = element.serialize();
142
+ if (element.data('params')) data = data + "&" + element.data('params');
143
+ } else {
144
+ method = element.data('method');
145
+ url = rails.href(element);
146
+ data = element.data('params') || null;
147
+ }
148
+
149
+ options = {
150
+ type: method || 'GET', data: data, dataType: dataType,
151
+ // stopping the "ajax:beforeSend" event will cancel the ajax request
152
+ beforeSend: function(xhr, settings) {
153
+ if (settings.dataType === undefined) {
154
+ xhr.setRequestHeader('accept', '*/*;q=0.5, ' + settings.accepts.script);
155
+ }
156
+ return rails.fire(element, 'ajax:beforeSend', [xhr, settings]);
157
+ },
158
+ success: function(data, status, xhr) {
159
+ element.trigger('ajax:success', [data, status, xhr]);
160
+ },
161
+ complete: function(xhr, status) {
162
+ element.trigger('ajax:complete', [xhr, status]);
163
+ },
164
+ error: function(xhr, status, error) {
165
+ element.trigger('ajax:error', [xhr, status, error]);
166
+ },
167
+ xhrFields: {
168
+ withCredentials: withCredentials
169
+ },
170
+ crossDomain: crossDomain
171
+ };
172
+ // Only pass url to `ajax` options if not blank
173
+ if (url) { options.url = url; }
174
+
175
+ var jqxhr = rails.ajax(options);
176
+ element.trigger('ajax:send', jqxhr);
177
+ return jqxhr;
178
+ } else {
179
+ return false;
180
+ }
181
+ },
182
+
183
+ // Handles "data-method" on links such as:
184
+ // <a href="/users/5" data-method="delete" rel="nofollow" data-confirm="Are you sure?">Delete</a>
185
+ handleMethod: function(link) {
186
+ var href = rails.href(link),
187
+ method = link.data('method'),
188
+ target = link.attr('target'),
189
+ csrf_token = $('meta[name=csrf-token]').attr('content'),
190
+ csrf_param = $('meta[name=csrf-param]').attr('content'),
191
+ form = $('<form method="post" action="' + href + '"></form>'),
192
+ metadata_input = '<input name="_method" value="' + method + '" type="hidden" />';
193
+
194
+ if (csrf_param !== undefined && csrf_token !== undefined) {
195
+ metadata_input += '<input name="' + csrf_param + '" value="' + csrf_token + '" type="hidden" />';
196
+ }
197
+
198
+ if (target) { form.attr('target', target); }
199
+
200
+ form.hide().append(metadata_input).appendTo('body');
201
+ form.submit();
202
+ },
203
+
204
+ /* Disables form elements:
205
+ - Caches element value in 'ujs:enable-with' data store
206
+ - Replaces element text with value of 'data-disable-with' attribute
207
+ - Sets disabled property to true
208
+ */
209
+ disableFormElements: function(form) {
210
+ form.find(rails.disableSelector).each(function() {
211
+ var element = $(this), method = element.is('button') ? 'html' : 'val';
212
+ element.data('ujs:enable-with', element[method]());
213
+ element[method](element.data('disable-with'));
214
+ element.prop('disabled', true);
215
+ });
216
+ },
217
+
218
+ /* Re-enables disabled form elements:
219
+ - Replaces element text with cached value from 'ujs:enable-with' data store (created in `disableFormElements`)
220
+ - Sets disabled property to false
221
+ */
222
+ enableFormElements: function(form) {
223
+ form.find(rails.enableSelector).each(function() {
224
+ var element = $(this), method = element.is('button') ? 'html' : 'val';
225
+ if (element.data('ujs:enable-with')) element[method](element.data('ujs:enable-with'));
226
+ element.prop('disabled', false);
227
+ });
228
+ },
229
+
230
+ /* For 'data-confirm' attribute:
231
+ - Fires `confirm` event
232
+ - Shows the confirmation dialog
233
+ - Fires the `confirm:complete` event
234
+
235
+ Returns `true` if no function stops the chain and user chose yes; `false` otherwise.
236
+ Attaching a handler to the element's `confirm` event that returns a `falsy` value cancels the confirmation dialog.
237
+ Attaching a handler to the element's `confirm:complete` event that returns a `falsy` value makes this function
238
+ return false. The `confirm:complete` event is fired whether or not the user answered true or false to the dialog.
239
+ */
240
+ allowAction: function(element) {
241
+ var message = element.data('confirm'),
242
+ answer = false, callback;
243
+ if (!message) { return true; }
244
+
245
+ if (rails.fire(element, 'confirm')) {
246
+ answer = rails.confirm(message);
247
+ callback = rails.fire(element, 'confirm:complete', [answer]);
248
+ }
249
+ return answer && callback;
250
+ },
251
+
252
+ // Helper function which checks for blank inputs in a form that match the specified CSS selector
253
+ blankInputs: function(form, specifiedSelector, nonBlank) {
254
+ var inputs = $(), input, valueToCheck,
255
+ selector = specifiedSelector || 'input,textarea',
256
+ allInputs = form.find(selector);
257
+
258
+ allInputs.each(function() {
259
+ input = $(this);
260
+ valueToCheck = input.is(':checkbox,:radio') ? input.is(':checked') : input.val();
261
+ // If nonBlank and valueToCheck are both truthy, or nonBlank and valueToCheck are both falsey
262
+ if (!valueToCheck === !nonBlank) {
263
+
264
+ // Don't count unchecked required radio if other radio with same name is checked
265
+ if (input.is(':radio') && allInputs.filter('input:radio:checked[name="' + input.attr('name') + '"]').length) {
266
+ return true; // Skip to next input
267
+ }
268
+
269
+ inputs = inputs.add(input);
270
+ }
271
+ });
272
+ return inputs.length ? inputs : false;
273
+ },
274
+
275
+ // Helper function which checks for non-blank inputs in a form that match the specified CSS selector
276
+ nonBlankInputs: function(form, specifiedSelector) {
277
+ return rails.blankInputs(form, specifiedSelector, true); // true specifies nonBlank
278
+ },
279
+
280
+ // Helper function, needed to provide consistent behavior in IE
281
+ stopEverything: function(e) {
282
+ $(e.target).trigger('ujs:everythingStopped');
283
+ e.stopImmediatePropagation();
284
+ return false;
285
+ },
286
+
287
+ // find all the submit events directly bound to the form and
288
+ // manually invoke them. If anyone returns false then stop the loop
289
+ callFormSubmitBindings: function(form, event) {
290
+ var events = form.data('events'), continuePropagation = true;
291
+ if (events !== undefined && events['submit'] !== undefined) {
292
+ $.each(events['submit'], function(i, obj){
293
+ if (typeof obj.handler === 'function') return continuePropagation = obj.handler(event);
294
+ });
295
+ }
296
+ return continuePropagation;
297
+ },
298
+
299
+ // replace element's html with the 'data-disable-with' after storing original html
300
+ // and prevent clicking on it
301
+ disableElement: function(element) {
302
+ element.data('ujs:enable-with', element.html()); // store enabled state
303
+ element.html(element.data('disable-with')); // set to disabled state
304
+ element.bind('click.railsDisable', function(e) { // prevent further clicking
305
+ return rails.stopEverything(e);
306
+ });
307
+ },
308
+
309
+ // restore element to its original state which was disabled by 'disableElement' above
310
+ enableElement: function(element) {
311
+ if (element.data('ujs:enable-with') !== undefined) {
312
+ element.html(element.data('ujs:enable-with')); // set to old enabled state
313
+ // this should be element.removeData('ujs:enable-with')
314
+ // but, there is currently a bug in jquery which makes hyphenated data attributes not get removed
315
+ element.data('ujs:enable-with', false); // clean up cache
316
+ }
317
+ element.unbind('click.railsDisable'); // enable element
318
+ }
319
+
320
+ };
321
+
322
+ if (rails.fire($(document), 'rails:attachBindings')) {
323
+
324
+ $.ajaxPrefilter(function(options, originalOptions, xhr){ if ( !options.crossDomain ) { rails.CSRFProtection(xhr); }});
325
+
326
+ $(document).delegate(rails.linkDisableSelector, 'ajax:complete', function() {
327
+ rails.enableElement($(this));
328
+ });
329
+
330
+ $(document).delegate(rails.linkClickSelector, 'click.rails', function(e) {
331
+ var link = $(this), method = link.data('method'), data = link.data('params');
332
+ if (!rails.allowAction(link)) return rails.stopEverything(e);
333
+
334
+ if (link.is(rails.linkDisableSelector)) rails.disableElement(link);
335
+
336
+ if (link.data('remote') !== undefined) {
337
+ if ( (e.metaKey || e.ctrlKey) && (!method || method === 'GET') && !data ) { return true; }
338
+
339
+ var handleRemote = rails.handleRemote(link);
340
+ // response from rails.handleRemote() will either be false or a deferred object promise.
341
+ if (handleRemote === false) {
342
+ rails.enableElement(link);
343
+ } else {
344
+ handleRemote.error( function() { rails.enableElement(link); } );
345
+ }
346
+ return false;
347
+
348
+ } else if (link.data('method')) {
349
+ rails.handleMethod(link);
350
+ return false;
351
+ }
352
+ });
353
+
354
+ $(document).delegate(rails.inputChangeSelector, 'change.rails', function(e) {
355
+ var link = $(this);
356
+ if (!rails.allowAction(link)) return rails.stopEverything(e);
357
+
358
+ rails.handleRemote(link);
359
+ return false;
360
+ });
361
+
362
+ $(document).delegate(rails.formSubmitSelector, 'submit.rails', function(e) {
363
+ var form = $(this),
364
+ remote = form.data('remote') !== undefined,
365
+ blankRequiredInputs = rails.blankInputs(form, rails.requiredInputSelector),
366
+ nonBlankFileInputs = rails.nonBlankInputs(form, rails.fileInputSelector);
367
+
368
+ if (!rails.allowAction(form)) return rails.stopEverything(e);
369
+
370
+ // skip other logic when required values are missing or file upload is present
371
+ if (blankRequiredInputs && form.attr("novalidate") == undefined && rails.fire(form, 'ajax:aborted:required', [blankRequiredInputs])) {
372
+ return rails.stopEverything(e);
373
+ }
374
+
375
+ if (remote) {
376
+ if (nonBlankFileInputs) {
377
+ // slight timeout so that the submit button gets properly serialized
378
+ // (make it easy for event handler to serialize form without disabled values)
379
+ setTimeout(function(){ rails.disableFormElements(form); }, 13);
380
+ var aborted = rails.fire(form, 'ajax:aborted:file', [nonBlankFileInputs]);
381
+
382
+ // re-enable form elements if event bindings return false (canceling normal form submission)
383
+ if (!aborted) { setTimeout(function(){ rails.enableFormElements(form); }, 13); }
384
+
385
+ return aborted;
386
+ }
387
+
388
+ // If browser does not support submit bubbling, then this live-binding will be called before direct
389
+ // bindings. Therefore, we should directly call any direct bindings before remotely submitting form.
390
+ if (!$.support.submitBubbles && $().jquery < '1.7' && rails.callFormSubmitBindings(form, e) === false) return rails.stopEverything(e);
391
+
392
+ rails.handleRemote(form);
393
+ return false;
394
+
395
+ } else {
396
+ // slight timeout so that the submit button gets properly serialized
397
+ setTimeout(function(){ rails.disableFormElements(form); }, 13);
398
+ }
399
+ });
400
+
401
+ $(document).delegate(rails.formInputClickSelector, 'click.rails', function(event) {
402
+ var button = $(this);
403
+
404
+ if (!rails.allowAction(button)) return rails.stopEverything(event);
405
+
406
+ // register the pressed submit button
407
+ var name = button.attr('name'),
408
+ data = name ? {name:name, value:button.val()} : null;
409
+
410
+ button.closest('form').data('ujs:submit-button', data);
411
+ });
412
+
413
+ $(document).delegate(rails.formSubmitSelector, 'ajax:beforeSend.rails', function(event) {
414
+ if (this == event.target) rails.disableFormElements($(this));
415
+ });
416
+
417
+ $(document).delegate(rails.formSubmitSelector, 'ajax:complete.rails', function(event) {
418
+ if (this == event.target) rails.enableFormElements($(this));
419
+ });
420
+
421
+ $(function(){
422
+ // making sure that all forms have actual up-to-date token(cached forms contain old one)
423
+ csrf_token = $('meta[name=csrf-token]').attr('content');
424
+ csrf_param = $('meta[name=csrf-param]').attr('content');
425
+ $('form input[name="' + csrf_param + '"]').val(csrf_token);
426
+ });
427
+ }
428
+
429
+ })( jQuery );