sooner 0.0.8 → 0.0.9
Sign up to get free protection for your applications and to get access to all the features.
- data/MIT-LICENSE +1 -1
- data/README.rdoc +0 -0
- data/Rakefile +28 -32
- data/app/assets/javascripts/sooner/admin/application.js +8 -0
- data/app/assets/javascripts/sooner/application.js +2 -0
- data/app/assets/javascripts/sooner/jquery.tablesorter.min.js +4 -0
- data/app/assets/javascripts/sooner/subscribers.js +2 -0
- data/app/assets/stylesheets/sooner/admin/application.css +37 -0
- data/app/assets/stylesheets/sooner/application.css +3 -0
- data/app/assets/stylesheets/sooner/subscribers.css +0 -0
- data/app/controllers/sooner/admin/subscribers_controller.rb +89 -0
- data/app/controllers/sooner/application_controller.rb +4 -0
- data/app/controllers/sooner/subscribers_controller.rb +20 -16
- data/app/helpers/sooner/admin/subscribers_helper.rb +4 -0
- data/app/helpers/sooner/application_helper.rb +4 -0
- data/app/helpers/sooner/subscribers_helper.rb +4 -0
- data/app/mailers/sooner/subscribers_mailer.rb +16 -0
- data/app/models/sooner/admin/subscriber.rb +3 -0
- data/app/models/sooner/subscriber.rb +19 -12
- data/app/views/layouts/sooner/admin.html.erb +21 -0
- data/app/views/layouts/sooner/application.html.erb +14 -0
- data/app/views/sooner/admin/subscribers/_form.html.erb +19 -0
- data/app/views/sooner/admin/subscribers/edit.html.erb +6 -0
- data/app/views/sooner/admin/subscribers/index.html.erb +22 -0
- data/app/views/sooner/admin/subscribers/new.html.erb +8 -0
- data/app/views/sooner/admin/subscribers/show.html.erb +5 -0
- data/app/views/sooner/subscribers/_message.html.erb +1 -0
- data/app/views/sooner/subscribers/create.js.erb +5 -0
- data/app/views/sooner/subscribers/new.html.erb +17 -10
- data/app/views/sooner/subscribers_mailer/subscribed.text.erb +3 -0
- data/config/routes.rb +8 -3
- data/lib/generators/sooner/install/install_generator.rb +33 -32
- data/lib/generators/sooner/install/templates/README +3 -13
- data/lib/generators/sooner/views/views_generator.rb +49 -47
- data/lib/sooner/engine.rb +5 -0
- data/lib/sooner/version.rb +2 -2
- data/lib/sooner/version.rb~ +3 -0
- data/lib/sooner.rb +21 -12
- data/lib/tasks/sooner_tasks.rake +4 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +9 -0
- data/test/dummy/app/assets/stylesheets/application.css +7 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/config/application.rb +45 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +33 -0
- data/test/dummy/config/environments/production.rb +60 -0
- data/test/dummy/config/environments/test.rb +39 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +10 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/mongoid.yml +20 -0
- data/test/dummy/config/routes.rb +3 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/log/development.log +13370 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +26 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/public/subscribers.csv +1 -0
- data/test/dummy/script/rails +6 -0
- data/test/dummy/tmp/cache/assets/C30/8B0/sprockets%2F6853748309a0fdd864824f56536d8023 +9062 -0
- data/test/dummy/tmp/cache/assets/C3F/0E0/sprockets%2F0e1cbc926773103d03774752e9108a00 +335 -0
- data/test/dummy/tmp/cache/assets/C66/FB0/sprockets%2F98a6552e0c72949d717178b5902e6f36 +71 -0
- data/test/dummy/tmp/cache/assets/C6D/F80/sprockets%2F44533615dbef3e810253094110825dac +62 -0
- data/test/dummy/tmp/cache/assets/C7A/910/sprockets%2F856f6b120c31d4622c49b3630219de68 +9069 -0
- data/test/dummy/tmp/cache/assets/C92/6A0/sprockets%2Fc5438348d868c777420d2e63fce56245 +98 -0
- data/test/dummy/tmp/cache/assets/C9C/A60/sprockets%2Fc6c3395667d18857f7f12369e53fa727 +350 -0
- data/test/dummy/tmp/cache/assets/CA7/430/sprockets%2F202cbe6f48604eb00549854f3053b58a +25 -0
- data/test/dummy/tmp/cache/assets/CB4/610/sprockets%2Ffeb1a7838d426857f0530993e420b60e +115 -0
- data/test/dummy/tmp/cache/assets/CE4/0D0/sprockets%2F439a9e8509403ac14ca356e5f2e9348b +7 -0
- data/test/dummy/tmp/cache/assets/CEB/DC0/sprockets%2F38536533e8e59a3fe0be483209c6d5c6 +352 -0
- data/test/dummy/tmp/cache/assets/CF6/900/sprockets%2F94575569edeb05737ebeaa60898940b6 +26 -0
- data/test/dummy/tmp/cache/assets/D07/4F0/sprockets%2Fe6091698b531dd271d5ac325b8b84ba0 +10 -0
- data/test/dummy/tmp/cache/assets/D19/BD0/sprockets%2F88636a6d051daca6365de6bd82096f48 +2445 -0
- data/test/dummy/tmp/cache/assets/D2B/3B0/sprockets%2F7de3b697dd206aa6eb292e301b140b60 +88 -0
- data/test/dummy/tmp/cache/assets/D39/410/sprockets%2Fa93af35d175ac7db006e63e91a0889b0 +42 -0
- data/test/dummy/tmp/cache/assets/D53/160/sprockets%2F8970dd07264d6eae78dd182d79df13c8 +303 -0
- data/test/dummy/tmp/cache/assets/D60/CE0/sprockets%2F06310f19d92bb4f40da80a37750ebdee +9 -0
- data/test/dummy/tmp/cache/assets/D65/620/sprockets%2F631e2801093d7a12aa6766bccaadfe88 +422 -0
- data/test/dummy/tmp/cache/assets/D7E/D20/sprockets%2Ff491cba4ec5176a691d9e5d7fc70892c +9052 -0
- data/test/dummy/tmp/cache/assets/D88/580/sprockets%2Ffef9b1c3b3b1b0316917a509cb1afb42 +439 -0
- data/test/dummy/tmp/cache/assets/D8E/B60/sprockets%2F1bc4810ecfe6a7b05c934eb3b0c2963a +9064 -0
- data/test/dummy/tmp/cache/assets/D99/D60/sprockets%2F29025313ddeaa1ff18cade1ed728949a +41 -0
- data/test/dummy/tmp/cache/assets/D9E/FD0/sprockets%2Ff8c955f36a2caa4039a66afc4c376e3a +0 -0
- data/test/dummy/tmp/cache/assets/DA5/1C0/sprockets%2Fec8cd61eddd7205e7c9c647f59413ac0 +371 -0
- data/test/dummy/tmp/cache/assets/DAF/6E0/sprockets%2F1b832fdf9fb97a8a7bcd2c907e652f47 +2386 -0
- data/test/dummy/tmp/cache/assets/DBC/650/sprockets%2Fd6da39f6f3f4a37c0db10cbc34ab0681 +67 -0
- data/test/dummy/tmp/cache/assets/DC2/150/sprockets%2F5cd685a35e3b593acade42a3b01def72 +8 -0
- data/test/dummy/tmp/cache/assets/DC7/530/sprockets%2Fea29d9af8aad9da0803062d3d7c06ac8 +373 -0
- data/test/dummy/tmp/cache/assets/DC9/2C0/sprockets%2Fbe1b3f07eb2f550c47c493a6f9a0de7b +333 -0
- data/test/dummy/tmp/cache/assets/DD6/820/sprockets%2Fb453f0fef899e0c6fe08aba14b94d09e +45 -0
- data/test/dummy/tmp/cache/assets/DD7/130/sprockets%2F6af271c6eec0698bc95224abf1ebf9f6 +390 -0
- data/test/dummy/tmp/cache/assets/E03/200/sprockets%2F8bd487cf65caa9fe453abd16be83e0a7 +70 -0
- data/test/dummy/tmp/cache/assets/E1D/680/sprockets%2Fc5c6b0ea20de8ef4d2f1eed00a35c93c +25 -0
- data/test/dummy/tmp/cache/assets/E49/440/sprockets%2Fbb92f156efb75bdda7bbacc04acb1425 +27 -0
- data/test/dummy/tmp/cache/assets/E59/430/sprockets%2Fb3073d96f7bcefcbdd3cdabe09a45a74 +286 -0
- data/test/dummy/tmp/cache/assets/E84/430/sprockets%2F61ffc0ed6338cebfdac2f1d3eaf0ae47 +9420 -0
- data/test/fixtures/sooner/admin/subscribers.yml +11 -0
- data/test/fixtures/sooner/subscribers.yml +7 -0
- data/test/functional/sooner/admin/subscribers_controller_test.rb +51 -0
- data/test/functional/sooner/subscribers_controller_test.rb +51 -0
- data/test/functional/sooner/subscribers_mailer_test.rb +14 -0
- data/test/integration/navigation_test.rb +10 -0
- data/test/sooner_test.rb +7 -0
- data/test/test_helper.rb +10 -0
- data/test/unit/helpers/sooner/admin/subscribers_helper_test.rb +6 -0
- data/test/unit/helpers/sooner/subscribers_helper_test.rb +6 -0
- data/test/unit/sooner/admin/subscriber_test.rb +9 -0
- data/test/unit/sooner/subscriber_test.rb +9 -0
- metadata +252 -53
- data/Gemfile +0 -4
- data/lib/sooner/email_format_validator.rb +0 -9
- data/lib/sooner/rails.rb +0 -5
@@ -0,0 +1,67 @@
|
|
1
|
+
o: ActiveSupport::Cache::Entry :@compressedF:@expires_in0:@created_atf1320241418.7118437:@value{I"
|
2
|
+
class:EFI"BundledAsset;
|
3
|
+
FI"id;
|
4
|
+
F"%2aa34c1bcef9e4538de6025379d76c0cI"logical_path;
|
5
|
+
FI"!sooner/admin/application.css;
|
6
|
+
TI"
|
7
|
+
F"W/home/sbertel/workspace/sooner/app/assets/stylesheets/sooner/admin/application.cssI"content_type;
|
8
|
+
FI"
|
9
|
+
FI"
|
10
|
+
mtime;
|
11
|
+
FI"2011-11-02T15:43:33+02:00;
|
12
|
+
FI" body;
|
13
|
+
FI"�/*
|
14
|
+
*/
|
15
|
+
/* Override some defaults */
|
16
|
+
|
17
|
+
html, body {
|
18
|
+
background-color:#eee;
|
19
|
+
}
|
20
|
+
body {
|
21
|
+
padding-top:40px; /* 40px to make the container go all the way to the bottom of the topbar */
|
22
|
+
}
|
23
|
+
.container> footer p {
|
24
|
+
text-align:center; /* center align it with the container */
|
25
|
+
}
|
26
|
+
.container {
|
27
|
+
width:820px; /* downsize our container to make the content feel a bit tighter and more cohesive. NOTE: this removes two full columns from the grid, meaning you only go to 14 columns and not 16. */
|
28
|
+
}
|
29
|
+
.content {
|
30
|
+
background-color:white;
|
31
|
+
padding:20px;
|
32
|
+
margin:0 -20px;
|
33
|
+
-webkit-border-radius:6px 6px 6px 6px;
|
34
|
+
-moz-border-radius:6px 6px 6px 6px;
|
35
|
+
border-radius:6px 6px 6px 6px;
|
36
|
+
-webkit-box-shadow:0 1px 2px rgba(0,0,0,.15);
|
37
|
+
-moz-box-shadow:0 1px 2px rgba(0,0,0,.15);
|
38
|
+
box-shadow:0 1px 2px rgba(0,0,0,.15);
|
39
|
+
}
|
40
|
+
/* Page header tweaks */
|
41
|
+
.page-header {
|
42
|
+
-webkit-border-radius:6px 6px 0 0;
|
43
|
+
-moz-border-radius:6px 6px 0 0;
|
44
|
+
border-radius:6px 6px 0 0;
|
45
|
+
background-color:#f5f5f5;
|
46
|
+
padding:20px 20px 10px;
|
47
|
+
margin:-20px -20px 20px;
|
48
|
+
}
|
49
|
+
;
|
50
|
+
FI"asset_paths;
|
51
|
+
F["O/home/sbertel/workspace/sooner/app/assets/stylesheets/sooner/bootstrap.css"W/home/sbertel/workspace/sooner/app/assets/stylesheets/sooner/admin/application.cssI"dependency_paths;
|
52
|
+
F[{I" path;
|
53
|
+
F"W/home/sbertel/workspace/sooner/app/assets/stylesheets/sooner/admin/application.cssI"
|
54
|
+
mtime;
|
55
|
+
FIu: Time
|
56
|
+
|
57
|
+
��
|
58
|
+
:@_zoneI"EET;
|
59
|
+
T:
|
60
|
+
F"%7ae14dd0f86ddeb5b08e23a11affe428{I" path;
|
61
|
+
F"O/home/sbertel/workspace/sooner/app/assets/stylesheets/sooner/bootstrap.cssI"
|
62
|
+
mtime;
|
63
|
+
FIu;
|
64
|
+
;I"EET;
|
65
|
+
T;
|
66
|
+
F"%b0df9b5e1c4a1f7f85488e915ee2c246I"
|
67
|
+
F"%46dde6621c301f4928e3b34efee9e3b5
|
@@ -0,0 +1,8 @@
|
|
1
|
+
o: ActiveSupport::Cache::Entry :@compressedF:@expires_in0:@created_atf1320069165.6662126:@value{ I"length:EFi�I"digest;
|
2
|
+
F"%c14ee96118d9157b9d075663cd003f63I"source;
|
3
|
+
FI"�// Place all the behaviors and hooks related to the matching controller here.
|
4
|
+
// All this logic will automatically be available in application.js.
|
5
|
+
;
|
6
|
+
;
|
7
|
+
FI"
|
8
|
+
F"%7d2d57cf67fd68c5ae7e4c7ec76ea4e1
|
@@ -0,0 +1,373 @@
|
|
1
|
+
o: ActiveSupport::Cache::Entry :@compressedF:@expires_in0:@created_atf1320069165.6637285:@value{ I"length:EFi;I"digest;
|
2
|
+
F"%73ab0c1f1ca15b2fb76fb52efbe07d7aI"source;
|
3
|
+
FI";/**
|
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').live('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').live('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
|
+
|
49
|
+
(function($, undefined) {
|
50
|
+
// Shorthand to make it a little easier to call public rails functions from within rails.js
|
51
|
+
var rails;
|
52
|
+
|
53
|
+
$.rails = rails = {
|
54
|
+
// Link elements bound by jquery-ujs
|
55
|
+
linkClickSelector: 'a[data-confirm], a[data-method], a[data-remote], a[data-disable-with]',
|
56
|
+
|
57
|
+
// Select elements bound by jquery-ujs
|
58
|
+
inputChangeSelector: 'select[data-remote], input[data-remote], textarea[data-remote]',
|
59
|
+
|
60
|
+
// Form elements bound by jquery-ujs
|
61
|
+
formSubmitSelector: 'form',
|
62
|
+
|
63
|
+
// Form input elements bound by jquery-ujs
|
64
|
+
formInputClickSelector: 'form input[type=submit], form input[type=image], form button[type=submit], form button:not(button[type])',
|
65
|
+
|
66
|
+
// Form input elements disabled during form submission
|
67
|
+
disableSelector: 'input[data-disable-with], button[data-disable-with], textarea[data-disable-with]',
|
68
|
+
|
69
|
+
// Form input elements re-enabled after form submission
|
70
|
+
enableSelector: 'input[data-disable-with]:disabled, button[data-disable-with]:disabled, textarea[data-disable-with]:disabled',
|
71
|
+
|
72
|
+
// Form required input elements
|
73
|
+
requiredInputSelector: 'input[name][required]:not([disabled]),textarea[name][required]:not([disabled])',
|
74
|
+
|
75
|
+
// Form file input elements
|
76
|
+
fileInputSelector: 'input:file',
|
77
|
+
|
78
|
+
// Link onClick disable selector with possible reenable after remote submission
|
79
|
+
linkDisableSelector: 'a[data-disable-with]',
|
80
|
+
|
81
|
+
// Make sure that every Ajax request sends the CSRF token
|
82
|
+
CSRFProtection: function(xhr) {
|
83
|
+
var token = $('meta[name="csrf-token"]').attr('content');
|
84
|
+
if (token) xhr.setRequestHeader('X-CSRF-Token', token);
|
85
|
+
},
|
86
|
+
|
87
|
+
// Triggers an event on an element and returns false if the event result is false
|
88
|
+
fire: function(obj, name, data) {
|
89
|
+
var event = $.Event(name);
|
90
|
+
obj.trigger(event, data);
|
91
|
+
return event.result !== false;
|
92
|
+
},
|
93
|
+
|
94
|
+
// Default confirm dialog, may be overridden with custom confirm dialog in $.rails.confirm
|
95
|
+
confirm: function(message) {
|
96
|
+
return confirm(message);
|
97
|
+
},
|
98
|
+
|
99
|
+
// Default ajax function, may be overridden with custom function in $.rails.ajax
|
100
|
+
ajax: function(options) {
|
101
|
+
return $.ajax(options);
|
102
|
+
},
|
103
|
+
|
104
|
+
// Submits "remote" forms and links with ajax
|
105
|
+
handleRemote: function(element) {
|
106
|
+
var method, url, data,
|
107
|
+
crossDomain = element.data('cross-domain') || null,
|
108
|
+
dataType = element.data('type') || ($.ajaxSettings && $.ajaxSettings.dataType),
|
109
|
+
options;
|
110
|
+
|
111
|
+
if (rails.fire(element, 'ajax:before')) {
|
112
|
+
|
113
|
+
if (element.is('form')) {
|
114
|
+
method = element.attr('method');
|
115
|
+
url = element.attr('action');
|
116
|
+
data = element.serializeArray();
|
117
|
+
// memoized value from clicked submit button
|
118
|
+
var button = element.data('ujs:submit-button');
|
119
|
+
if (button) {
|
120
|
+
data.push(button);
|
121
|
+
element.data('ujs:submit-button', null);
|
122
|
+
}
|
123
|
+
} else if (element.is(rails.inputChangeSelector)) {
|
124
|
+
method = element.data('method');
|
125
|
+
url = element.data('url');
|
126
|
+
data = element.serialize();
|
127
|
+
if (element.data('params')) data = data + "&" + element.data('params');
|
128
|
+
} else {
|
129
|
+
method = element.data('method');
|
130
|
+
url = element.attr('href');
|
131
|
+
data = element.data('params') || null;
|
132
|
+
}
|
133
|
+
|
134
|
+
options = {
|
135
|
+
type: method || 'GET', data: data, dataType: dataType, crossDomain: crossDomain,
|
136
|
+
// stopping the "ajax:beforeSend" event will cancel the ajax request
|
137
|
+
beforeSend: function(xhr, settings) {
|
138
|
+
if (settings.dataType === undefined) {
|
139
|
+
xhr.setRequestHeader('accept', '*/*;q=0.5, ' + settings.accepts.script);
|
140
|
+
}
|
141
|
+
return rails.fire(element, 'ajax:beforeSend', [xhr, settings]);
|
142
|
+
},
|
143
|
+
success: function(data, status, xhr) {
|
144
|
+
element.trigger('ajax:success', [data, status, xhr]);
|
145
|
+
},
|
146
|
+
complete: function(xhr, status) {
|
147
|
+
element.trigger('ajax:complete', [xhr, status]);
|
148
|
+
},
|
149
|
+
error: function(xhr, status, error) {
|
150
|
+
element.trigger('ajax:error', [xhr, status, error]);
|
151
|
+
}
|
152
|
+
};
|
153
|
+
// Only pass url to `ajax` options if not blank
|
154
|
+
if (url) { options.url = url; }
|
155
|
+
|
156
|
+
rails.ajax(options);
|
157
|
+
}
|
158
|
+
},
|
159
|
+
|
160
|
+
// Handles "data-method" on links such as:
|
161
|
+
// <a href="/users/5" data-method="delete" rel="nofollow" data-confirm="Are you sure?">Delete</a>
|
162
|
+
handleMethod: function(link) {
|
163
|
+
var href = link.attr('href'),
|
164
|
+
method = link.data('method'),
|
165
|
+
target = link.attr('target'),
|
166
|
+
csrf_token = $('meta[name=csrf-token]').attr('content'),
|
167
|
+
csrf_param = $('meta[name=csrf-param]').attr('content'),
|
168
|
+
form = $('<form method="post" action="' + href + '"></form>'),
|
169
|
+
metadata_input = '<input name="_method" value="' + method + '" type="hidden" />';
|
170
|
+
|
171
|
+
if (csrf_param !== undefined && csrf_token !== undefined) {
|
172
|
+
metadata_input += '<input name="' + csrf_param + '" value="' + csrf_token + '" type="hidden" />';
|
173
|
+
}
|
174
|
+
|
175
|
+
if (target) { form.attr('target', target); }
|
176
|
+
|
177
|
+
form.hide().append(metadata_input).appendTo('body');
|
178
|
+
form.submit();
|
179
|
+
},
|
180
|
+
|
181
|
+
/* Disables form elements:
|
182
|
+
- Caches element value in 'ujs:enable-with' data store
|
183
|
+
- Replaces element text with value of 'data-disable-with' attribute
|
184
|
+
- Sets disabled property to true
|
185
|
+
*/
|
186
|
+
disableFormElements: function(form) {
|
187
|
+
form.find(rails.disableSelector).each(function() {
|
188
|
+
var element = $(this), method = element.is('button') ? 'html' : 'val';
|
189
|
+
element.data('ujs:enable-with', element[method]());
|
190
|
+
element[method](element.data('disable-with'));
|
191
|
+
element.prop('disabled', true);
|
192
|
+
});
|
193
|
+
},
|
194
|
+
|
195
|
+
/* Re-enables disabled form elements:
|
196
|
+
- Replaces element text with cached value from 'ujs:enable-with' data store (created in `disableFormElements`)
|
197
|
+
- Sets disabled property to false
|
198
|
+
*/
|
199
|
+
enableFormElements: function(form) {
|
200
|
+
form.find(rails.enableSelector).each(function() {
|
201
|
+
var element = $(this), method = element.is('button') ? 'html' : 'val';
|
202
|
+
if (element.data('ujs:enable-with')) element[method](element.data('ujs:enable-with'));
|
203
|
+
element.prop('disabled', false);
|
204
|
+
});
|
205
|
+
},
|
206
|
+
|
207
|
+
/* For 'data-confirm' attribute:
|
208
|
+
- Fires `confirm` event
|
209
|
+
- Shows the confirmation dialog
|
210
|
+
- Fires the `confirm:complete` event
|
211
|
+
|
212
|
+
Returns `true` if no function stops the chain and user chose yes; `false` otherwise.
|
213
|
+
Attaching a handler to the element's `confirm` event that returns a `falsy` value cancels the confirmation dialog.
|
214
|
+
Attaching a handler to the element's `confirm:complete` event that returns a `falsy` value makes this function
|
215
|
+
return false. The `confirm:complete` event is fired whether or not the user answered true or false to the dialog.
|
216
|
+
*/
|
217
|
+
allowAction: function(element) {
|
218
|
+
var message = element.data('confirm'),
|
219
|
+
answer = false, callback;
|
220
|
+
if (!message) { return true; }
|
221
|
+
|
222
|
+
if (rails.fire(element, 'confirm')) {
|
223
|
+
answer = rails.confirm(message);
|
224
|
+
callback = rails.fire(element, 'confirm:complete', [answer]);
|
225
|
+
}
|
226
|
+
return answer && callback;
|
227
|
+
},
|
228
|
+
|
229
|
+
// Helper function which checks for blank inputs in a form that match the specified CSS selector
|
230
|
+
blankInputs: function(form, specifiedSelector, nonBlank) {
|
231
|
+
var inputs = $(), input,
|
232
|
+
selector = specifiedSelector || 'input,textarea';
|
233
|
+
form.find(selector).each(function() {
|
234
|
+
input = $(this);
|
235
|
+
// Collect non-blank inputs if nonBlank option is true, otherwise, collect blank inputs
|
236
|
+
if (nonBlank ? input.val() : !input.val()) {
|
237
|
+
inputs = inputs.add(input);
|
238
|
+
}
|
239
|
+
});
|
240
|
+
return inputs.length ? inputs : false;
|
241
|
+
},
|
242
|
+
|
243
|
+
// Helper function which checks for non-blank inputs in a form that match the specified CSS selector
|
244
|
+
nonBlankInputs: function(form, specifiedSelector) {
|
245
|
+
return rails.blankInputs(form, specifiedSelector, true); // true specifies nonBlank
|
246
|
+
},
|
247
|
+
|
248
|
+
// Helper function, needed to provide consistent behavior in IE
|
249
|
+
stopEverything: function(e) {
|
250
|
+
$(e.target).trigger('ujs:everythingStopped');
|
251
|
+
e.stopImmediatePropagation();
|
252
|
+
return false;
|
253
|
+
},
|
254
|
+
|
255
|
+
// find all the submit events directly bound to the form and
|
256
|
+
// manually invoke them. If anyone returns false then stop the loop
|
257
|
+
callFormSubmitBindings: function(form) {
|
258
|
+
var events = form.data('events'), continuePropagation = true;
|
259
|
+
if (events !== undefined && events['submit'] !== undefined) {
|
260
|
+
$.each(events['submit'], function(i, obj){
|
261
|
+
if (typeof obj.handler === 'function') return continuePropagation = obj.handler(obj.data);
|
262
|
+
});
|
263
|
+
}
|
264
|
+
return continuePropagation;
|
265
|
+
},
|
266
|
+
|
267
|
+
// replace element's html with the 'data-disable-with' after storing original html
|
268
|
+
// and prevent clicking on it
|
269
|
+
disableElement: function(element) {
|
270
|
+
element.data('ujs:enable-with', element.html()); // store enabled state
|
271
|
+
element.html(element.data('disable-with')); // set to disabled state
|
272
|
+
element.bind('click.railsDisable', function(e) { // prevent further clicking
|
273
|
+
return rails.stopEverything(e)
|
274
|
+
});
|
275
|
+
},
|
276
|
+
|
277
|
+
// restore element to its original state which was disabled by 'disableElement' above
|
278
|
+
enableElement: function(element) {
|
279
|
+
if (element.data('ujs:enable-with') !== undefined) {
|
280
|
+
element.html(element.data('ujs:enable-with')); // set to old enabled state
|
281
|
+
// this should be element.removeData('ujs:enable-with')
|
282
|
+
// but, there is currently a bug in jquery which makes hyphenated data attributes not get removed
|
283
|
+
element.data('ujs:enable-with', false); // clean up cache
|
284
|
+
}
|
285
|
+
element.unbind('click.railsDisable'); // enable element
|
286
|
+
}
|
287
|
+
|
288
|
+
};
|
289
|
+
|
290
|
+
$.ajaxPrefilter(function(options, originalOptions, xhr){ if ( !options.crossDomain ) { rails.CSRFProtection(xhr); }});
|
291
|
+
|
292
|
+
$(rails.linkDisableSelector).live('ajax:complete', function() {
|
293
|
+
rails.enableElement($(this));
|
294
|
+
});
|
295
|
+
|
296
|
+
$(rails.linkClickSelector).live('click.rails', function(e) {
|
297
|
+
var link = $(this), method = link.data('method'), data = link.data('params');
|
298
|
+
if (!rails.allowAction(link)) return rails.stopEverything(e);
|
299
|
+
|
300
|
+
if (link.is(rails.linkDisableSelector)) rails.disableElement(link);
|
301
|
+
|
302
|
+
if (link.data('remote') !== undefined) {
|
303
|
+
if ( (e.metaKey || e.ctrlKey) && (!method || method === 'GET') && !data ) { return true; }
|
304
|
+
rails.handleRemote(link);
|
305
|
+
return false;
|
306
|
+
} else if (link.data('method')) {
|
307
|
+
rails.handleMethod(link);
|
308
|
+
return false;
|
309
|
+
}
|
310
|
+
});
|
311
|
+
|
312
|
+
$(rails.inputChangeSelector).live('change.rails', function(e) {
|
313
|
+
var link = $(this);
|
314
|
+
if (!rails.allowAction(link)) return rails.stopEverything(e);
|
315
|
+
|
316
|
+
rails.handleRemote(link);
|
317
|
+
return false;
|
318
|
+
});
|
319
|
+
|
320
|
+
$(rails.formSubmitSelector).live('submit.rails', function(e) {
|
321
|
+
var form = $(this),
|
322
|
+
remote = form.data('remote') !== undefined,
|
323
|
+
blankRequiredInputs = rails.blankInputs(form, rails.requiredInputSelector),
|
324
|
+
nonBlankFileInputs = rails.nonBlankInputs(form, rails.fileInputSelector);
|
325
|
+
|
326
|
+
if (!rails.allowAction(form)) return rails.stopEverything(e);
|
327
|
+
|
328
|
+
// skip other logic when required values are missing or file upload is present
|
329
|
+
if (blankRequiredInputs && form.attr("novalidate") == undefined && rails.fire(form, 'ajax:aborted:required', [blankRequiredInputs])) {
|
330
|
+
return rails.stopEverything(e);
|
331
|
+
}
|
332
|
+
|
333
|
+
if (remote) {
|
334
|
+
if (nonBlankFileInputs) {
|
335
|
+
return rails.fire(form, 'ajax:aborted:file', [nonBlankFileInputs]);
|
336
|
+
}
|
337
|
+
|
338
|
+
// If browser does not support submit bubbling, then this live-binding will be called before direct
|
339
|
+
// bindings. Therefore, we should directly call any direct bindings before remotely submitting form.
|
340
|
+
if (!$.support.submitBubbles && rails.callFormSubmitBindings(form) === false) return rails.stopEverything(e);
|
341
|
+
|
342
|
+
rails.handleRemote(form);
|
343
|
+
return false;
|
344
|
+
} else {
|
345
|
+
// slight timeout so that the submit button gets properly serialized
|
346
|
+
setTimeout(function(){ rails.disableFormElements(form); }, 13);
|
347
|
+
}
|
348
|
+
});
|
349
|
+
|
350
|
+
$(rails.formInputClickSelector).live('click.rails', function(event) {
|
351
|
+
var button = $(this);
|
352
|
+
|
353
|
+
if (!rails.allowAction(button)) return rails.stopEverything(event);
|
354
|
+
|
355
|
+
// register the pressed submit button
|
356
|
+
var name = button.attr('name'),
|
357
|
+
data = name ? {name:name, value:button.val()} : null;
|
358
|
+
|
359
|
+
button.closest('form').data('ujs:submit-button', data);
|
360
|
+
});
|
361
|
+
|
362
|
+
$(rails.formSubmitSelector).live('ajax:beforeSend.rails', function(event) {
|
363
|
+
if (this == event.target) rails.disableFormElements($(this));
|
364
|
+
});
|
365
|
+
|
366
|
+
$(rails.formSubmitSelector).live('ajax:complete.rails', function(event) {
|
367
|
+
if (this == event.target) rails.enableFormElements($(this));
|
368
|
+
});
|
369
|
+
|
370
|
+
})( jQuery );
|
371
|
+
;
|
372
|
+
FI"
|
373
|
+
F"%a073618aade3908bd9d0bb1433d6024e
|