mustache_render 0.0.5 → 0.0.6

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.
Files changed (54) hide show
  1. data/lib/generators/mustache_render/install/templates/active_record/migration.rb +65 -0
  2. data/lib/generators/mustache_render/install/templates/config/initializers/mustache_render.rb +25 -0
  3. data/lib/generators/mustache_render/{migration → install}/templates/models/active_record/mustache_render_folder.rb +0 -0
  4. data/lib/generators/mustache_render/install/templates/models/active_record/mustache_render_manager.rb +6 -0
  5. data/lib/generators/mustache_render/{migration → install}/templates/models/active_record/mustache_render_template.rb +0 -0
  6. data/lib/generators/mustache_render/install/templates/models/active_record/mustache_render_template_version.rb +6 -0
  7. data/lib/generators/mustache_render/{migration/install_generator.rb → install_generator.rb} +5 -5
  8. data/lib/mustache_render.rb +14 -6
  9. data/lib/mustache_render/adapter.rb +75 -0
  10. data/lib/mustache_render/config.rb +48 -0
  11. data/lib/mustache_render/controllers/mustache_render/manage/base_controller.rb +42 -0
  12. data/lib/mustache_render/controllers/mustache_render/{manager → manage}/folders_controller.rb +3 -3
  13. data/lib/mustache_render/controllers/mustache_render/manage/template_versions_controller.rb +71 -0
  14. data/lib/mustache_render/controllers/mustache_render/{manager → manage}/templates_controller.rb +12 -5
  15. data/lib/mustache_render/helpers/mustache_render/manage/base_helper.rb +29 -0
  16. data/lib/mustache_render/models/mustache_render_manager_mixin.rb +23 -0
  17. data/lib/mustache_render/models/mustache_render_template_mixin.rb +42 -2
  18. data/lib/mustache_render/models/mustache_render_template_version_mixin.rb +46 -0
  19. data/lib/mustache_render/resources/jquery.js +9473 -0
  20. data/lib/mustache_render/resources/jquery_ujs.js +429 -0
  21. data/lib/mustache_render/version.rb +1 -1
  22. data/lib/mustache_render/views/layouts/mustache_render/manage/base.html.erb +22 -0
  23. data/lib/mustache_render/views/mustache_render/manage/folders/_edit_2.html.erb +7 -0
  24. data/lib/mustache_render/views/mustache_render/manage/folders/_edit_3.html.erb +6 -0
  25. data/lib/mustache_render/views/mustache_render/{manager → manage}/folders/_form.html.erb +0 -0
  26. data/lib/mustache_render/views/mustache_render/{manager/folders/new.html.erb → manage/folders/_new_2.html.erb} +1 -6
  27. data/lib/mustache_render/views/mustache_render/manage/folders/_new_3.html.erb +3 -0
  28. data/lib/mustache_render/views/mustache_render/manage/folders/edit.html.erb +11 -0
  29. data/lib/mustache_render/views/mustache_render/{manager → manage}/folders/index.html.erb +2 -2
  30. data/lib/mustache_render/views/mustache_render/manage/folders/new.html.erb +10 -0
  31. data/lib/mustache_render/views/mustache_render/{manager → manage}/folders/show.html.erb +6 -6
  32. data/lib/mustache_render/views/mustache_render/manage/template_versions/_edit_2.html.erb +10 -0
  33. data/lib/mustache_render/views/mustache_render/manage/template_versions/_edit_3.html.erb +10 -0
  34. data/lib/mustache_render/views/mustache_render/manage/template_versions/_form.html.erb +43 -0
  35. data/lib/mustache_render/views/mustache_render/manage/template_versions/_list.html.erb +41 -0
  36. data/lib/mustache_render/views/mustache_render/manage/template_versions/edit.html.erb +22 -0
  37. data/lib/mustache_render/views/mustache_render/manage/template_versions/index.html.erb +20 -0
  38. data/lib/mustache_render/views/mustache_render/manage/template_versions/show.html.erb +53 -0
  39. data/lib/mustache_render/views/mustache_render/manage/templates/_edit_2.html.erb +10 -0
  40. data/lib/mustache_render/views/mustache_render/manage/templates/_edit_3.html.erb +9 -0
  41. data/lib/mustache_render/views/mustache_render/{manager → manage}/templates/_form.html.erb +7 -0
  42. data/lib/mustache_render/views/mustache_render/manage/templates/_new_2.html.erb +9 -0
  43. data/lib/mustache_render/views/mustache_render/manage/templates/_new_3.html.erb +9 -0
  44. data/lib/mustache_render/views/mustache_render/manage/templates/edit.html.erb +13 -0
  45. data/lib/mustache_render/views/mustache_render/manage/templates/new.html.erb +10 -0
  46. data/lib/mustache_render/views/mustache_render/manage/templates/show.html.erb +52 -0
  47. metadata +46 -21
  48. data/lib/generators/mustache_render/migration/templates/active_record/migration.rb +0 -37
  49. data/lib/mustache_render/controllers/mustache_render/manager/base_controller.rb +0 -17
  50. data/lib/mustache_render/views/layouts/mustache_render/manager/base.html.erb +0 -14
  51. data/lib/mustache_render/views/mustache_render/manager/folders/edit.html.erb +0 -11
  52. data/lib/mustache_render/views/mustache_render/manager/templates/edit.html.erb +0 -15
  53. data/lib/mustache_render/views/mustache_render/manager/templates/new.html.erb +0 -12
  54. data/lib/mustache_render/views/mustache_render/manager/templates/show.html.erb +0 -33
@@ -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').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
+ // 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 );
@@ -3,7 +3,7 @@ module MustacheRender
3
3
  VERSION_NUMBERS = [
4
4
  VERSION_MAJOR = 0,
5
5
  VERSION_MINOR = 0,
6
- VERSION_BUILD = 5,
6
+ VERSION_BUILD = 6,
7
7
  ]
8
8
 
9
9
  VERSION = VERSION_NUMBERS.join(".")
@@ -0,0 +1,22 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title><%= h(MustacheRender.config.manage_view_base[:title]) %></title>
5
+ <script type='text/javascript'>
6
+ <%= raw(generate_jquery_code) %>
7
+ </script>
8
+
9
+ <script type='text/javascript'>
10
+ <%= raw generate_jquery_ujs_code %>
11
+ </script>
12
+
13
+ <% unless MustacheRender.adapter.rails_2? %>
14
+ <%= csrf_meta_tags %>
15
+ <% end %>
16
+ </head>
17
+ <body>
18
+
19
+ <%= yield %>
20
+
21
+ </body>
22
+ </html>