kuji-mercury-rails 0.3.2

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 (231) hide show
  1. data/LICENSE +25 -0
  2. data/POST_INSTALL +15 -0
  3. data/app/controllers/mercury/images_controller.rb +19 -0
  4. data/app/controllers/mercury_controller.rb +34 -0
  5. data/app/models/mercury/image.rb +16 -0
  6. data/app/views/layouts/mercury.html.erb +33 -0
  7. data/app/views/mercury/lightviews/about.html +11 -0
  8. data/app/views/mercury/modals/character.html +255 -0
  9. data/app/views/mercury/modals/htmleditor.html +13 -0
  10. data/app/views/mercury/modals/link.html +75 -0
  11. data/app/views/mercury/modals/media.html +82 -0
  12. data/app/views/mercury/modals/table.html +84 -0
  13. data/app/views/mercury/palettes/backcolor.html +73 -0
  14. data/app/views/mercury/palettes/forecolor.html +73 -0
  15. data/app/views/mercury/panels/history.html +3 -0
  16. data/app/views/mercury/panels/notes.html +3 -0
  17. data/app/views/mercury/panels/snippets.html +12 -0
  18. data/app/views/mercury/selects/formatblock.html +11 -0
  19. data/app/views/mercury/selects/style.html +5 -0
  20. data/app/views/mercury/snippets/example/options.html.erb +34 -0
  21. data/app/views/mercury/snippets/example/preview.html.erb +1 -0
  22. data/config/engine.rb +41 -0
  23. data/db/migrate/20110526035601_create_mercury_images.rb +11 -0
  24. data/features/loading/loading.feature +22 -0
  25. data/features/loading/navigating.feature +77 -0
  26. data/features/loading/user_interface.feature +67 -0
  27. data/features/regions/editable/advanced_editing.feature +0 -0
  28. data/features/regions/editable/basic_editing.feature +195 -0
  29. data/features/regions/editable/inserting_links.feature +98 -0
  30. data/features/regions/editable/inserting_media.feature +110 -0
  31. data/features/regions/editable/inserting_snippets.feature +102 -0
  32. data/features/regions/editable/inserting_special_characters.feature +24 -0
  33. data/features/regions/editable/inserting_tables.feature +109 -0
  34. data/features/regions/editable/pasting.feature +0 -0
  35. data/features/regions/editable/uploading_images.feature +0 -0
  36. data/features/regions/image/uploading_images.feature +0 -0
  37. data/features/regions/markupable/advanced_editing.feature +0 -0
  38. data/features/regions/markupable/basic_editing.feature +0 -0
  39. data/features/regions/markupable/inserting_links.feature +0 -0
  40. data/features/regions/markupable/inserting_media.feature +0 -0
  41. data/features/regions/markupable/inserting_snippets.feature +0 -0
  42. data/features/regions/markupable/inserting_special_characters.feature +0 -0
  43. data/features/regions/markupable/inserting_tables.feature +0 -0
  44. data/features/regions/markupable/uploading_images.feature +0 -0
  45. data/features/regions/simple/basic_editing.feature +5 -0
  46. data/features/regions/snippetable/advanced_editing.feature +0 -0
  47. data/features/regions/snippetable/basic_editing.feature +0 -0
  48. data/features/regions/snippetable/inserting_snippets.feature +0 -0
  49. data/features/saving/saving.feature +33 -0
  50. data/features/step_definitions/debug_steps.rb +14 -0
  51. data/features/step_definitions/mercury_steps.rb +438 -0
  52. data/features/step_definitions/web_steps.rb +211 -0
  53. data/features/support/env.rb +46 -0
  54. data/features/support/mercury_contents.rb +25 -0
  55. data/features/support/mercury_selectors.rb +148 -0
  56. data/features/support/paths.rb +38 -0
  57. data/features/support/selectors.rb +44 -0
  58. data/lib/generators/mercury/install/install_generator.rb +49 -0
  59. data/lib/generators/mercury/install/templates/mongoid_paperclip_image.rb +17 -0
  60. data/lib/mercury-rails.rb +3 -0
  61. data/lib/mercury/authentication.rb +8 -0
  62. data/spec/javascripts/mercury/dialog_spec.js.coffee +281 -0
  63. data/spec/javascripts/mercury/dialogs/backcolor_spec.js.coffee +37 -0
  64. data/spec/javascripts/mercury/dialogs/forecolor_spec.js.coffee +37 -0
  65. data/spec/javascripts/mercury/dialogs/formatblock_spec.js.coffee +25 -0
  66. data/spec/javascripts/mercury/dialogs/snippetpanel_spec.js.coffee +30 -0
  67. data/spec/javascripts/mercury/dialogs/style_spec.js.coffee +25 -0
  68. data/spec/javascripts/mercury/history_buffer_spec.js.coffee +76 -0
  69. data/spec/javascripts/mercury/lightview_spec.js.coffee +497 -0
  70. data/spec/javascripts/mercury/mercury_spec.js.coffee +132 -0
  71. data/spec/javascripts/mercury/modal_spec.js.coffee +504 -0
  72. data/spec/javascripts/mercury/modals/htmleditor_spec.js.coffee +30 -0
  73. data/spec/javascripts/mercury/modals/insertcharacter_spec.js.coffee +29 -0
  74. data/spec/javascripts/mercury/modals/insertlink_spec.js.coffee +220 -0
  75. data/spec/javascripts/mercury/modals/insertmedia_spec.js.coffee +167 -0
  76. data/spec/javascripts/mercury/modals/insertsnippet_spec.js.coffee +52 -0
  77. data/spec/javascripts/mercury/modals/inserttable_spec.js.coffee +160 -0
  78. data/spec/javascripts/mercury/native_extensions_spec.js.coffee +60 -0
  79. data/spec/javascripts/mercury/page_editor_spec.js.coffee +757 -0
  80. data/spec/javascripts/mercury/palette_spec.js.coffee +49 -0
  81. data/spec/javascripts/mercury/panel_spec.js.coffee +183 -0
  82. data/spec/javascripts/mercury/region_spec.js.coffee +298 -0
  83. data/spec/javascripts/mercury/regions/editable_spec.js.coffee +561 -0
  84. data/spec/javascripts/mercury/regions/image_spec.js.coffee +34 -0
  85. data/spec/javascripts/mercury/regions/markupable_spec.js.coffee +367 -0
  86. data/spec/javascripts/mercury/regions/simple_spec.js.coffee +33 -0
  87. data/spec/javascripts/mercury/regions/snippetable_spec.js.coffee +370 -0
  88. data/spec/javascripts/mercury/select_spec.js.coffee +49 -0
  89. data/spec/javascripts/mercury/snippet_spec.js.coffee +253 -0
  90. data/spec/javascripts/mercury/snippet_toolbar_spec.js.coffee +184 -0
  91. data/spec/javascripts/mercury/statusbar_spec.js.coffee +150 -0
  92. data/spec/javascripts/mercury/table_editor_spec.js.coffee +194 -0
  93. data/spec/javascripts/mercury/toolbar.button_group_spec.js.coffee +90 -0
  94. data/spec/javascripts/mercury/toolbar.button_spec.js.coffee +360 -0
  95. data/spec/javascripts/mercury/toolbar.expander_spec.js.coffee +118 -0
  96. data/spec/javascripts/mercury/toolbar_spec.js.coffee +222 -0
  97. data/spec/javascripts/mercury/tooltip_spec.js.coffee +186 -0
  98. data/spec/javascripts/mercury/uploader_spec.js.coffee +530 -0
  99. data/spec/javascripts/spec_helper.js +513 -0
  100. data/spec/javascripts/templates/mercury/dialog.html +2 -0
  101. data/spec/javascripts/templates/mercury/dialogs/backcolor.html +5 -0
  102. data/spec/javascripts/templates/mercury/dialogs/forecolor.html +5 -0
  103. data/spec/javascripts/templates/mercury/dialogs/formatblock.html +3 -0
  104. data/spec/javascripts/templates/mercury/dialogs/snippetpanel.html +16 -0
  105. data/spec/javascripts/templates/mercury/dialogs/style.html +3 -0
  106. data/spec/javascripts/templates/mercury/lightview.html +13 -0
  107. data/spec/javascripts/templates/mercury/modal.html +13 -0
  108. data/spec/javascripts/templates/mercury/modals/htmleditor.html +5 -0
  109. data/spec/javascripts/templates/mercury/modals/insertcharacter.html +5 -0
  110. data/spec/javascripts/templates/mercury/modals/insertlink.html +30 -0
  111. data/spec/javascripts/templates/mercury/modals/insertmedia.html +35 -0
  112. data/spec/javascripts/templates/mercury/modals/insertsnippet.html +6 -0
  113. data/spec/javascripts/templates/mercury/modals/inserttable.html +27 -0
  114. data/spec/javascripts/templates/mercury/page_editor.html +35 -0
  115. data/spec/javascripts/templates/mercury/palette.html +16 -0
  116. data/spec/javascripts/templates/mercury/panel.html +16 -0
  117. data/spec/javascripts/templates/mercury/region.html +2 -0
  118. data/spec/javascripts/templates/mercury/regions/editable.html +3 -0
  119. data/spec/javascripts/templates/mercury/regions/image.html +1 -0
  120. data/spec/javascripts/templates/mercury/regions/simple.html +3 -0
  121. data/spec/javascripts/templates/mercury/regions/snippetable.html +4 -0
  122. data/spec/javascripts/templates/mercury/select.html +16 -0
  123. data/spec/javascripts/templates/mercury/snippet.html +1 -0
  124. data/spec/javascripts/templates/mercury/snippet_toolbar.html +16 -0
  125. data/spec/javascripts/templates/mercury/statusbar.html +8 -0
  126. data/spec/javascripts/templates/mercury/table_editor.html +65 -0
  127. data/spec/javascripts/templates/mercury/toolbar.button.html +64 -0
  128. data/spec/javascripts/templates/mercury/toolbar.button_group.html +9 -0
  129. data/spec/javascripts/templates/mercury/toolbar.expander.html +18 -0
  130. data/spec/javascripts/templates/mercury/toolbar.html +11 -0
  131. data/spec/javascripts/templates/mercury/tooltip.html +12 -0
  132. data/spec/javascripts/templates/mercury/uploader.html +11 -0
  133. data/vendor/assets/images/mercury/button.png +0 -0
  134. data/vendor/assets/images/mercury/close.png +0 -0
  135. data/vendor/assets/images/mercury/default-snippet.png +0 -0
  136. data/vendor/assets/images/mercury/loading-dark.gif +0 -0
  137. data/vendor/assets/images/mercury/loading-light.gif +0 -0
  138. data/vendor/assets/images/mercury/missing-image.png +0 -0
  139. data/vendor/assets/images/mercury/search-icon.png +0 -0
  140. data/vendor/assets/images/mercury/temp-logo.png +0 -0
  141. data/vendor/assets/images/mercury/toolbar/editable/buttons.png +0 -0
  142. data/vendor/assets/images/mercury/toolbar/primary/_expander.png +0 -0
  143. data/vendor/assets/images/mercury/toolbar/primary/_pressed.png +0 -0
  144. data/vendor/assets/images/mercury/toolbar/primary/historypanel.png +0 -0
  145. data/vendor/assets/images/mercury/toolbar/primary/insertcharacter.png +0 -0
  146. data/vendor/assets/images/mercury/toolbar/primary/insertlink.png +0 -0
  147. data/vendor/assets/images/mercury/toolbar/primary/insertmedia.png +0 -0
  148. data/vendor/assets/images/mercury/toolbar/primary/inserttable.png +0 -0
  149. data/vendor/assets/images/mercury/toolbar/primary/inspectorpanel.png +0 -0
  150. data/vendor/assets/images/mercury/toolbar/primary/notespanel.png +0 -0
  151. data/vendor/assets/images/mercury/toolbar/primary/preview.png +0 -0
  152. data/vendor/assets/images/mercury/toolbar/primary/redo.png +0 -0
  153. data/vendor/assets/images/mercury/toolbar/primary/save.png +0 -0
  154. data/vendor/assets/images/mercury/toolbar/primary/snippetpanel.png +0 -0
  155. data/vendor/assets/images/mercury/toolbar/primary/undo.png +0 -0
  156. data/vendor/assets/images/mercury/toolbar/snippetable/buttons.png +0 -0
  157. data/vendor/assets/javascripts/mercury.js +479 -0
  158. data/vendor/assets/javascripts/mercury/dependencies/jquery-1.7.js +9300 -0
  159. data/vendor/assets/javascripts/mercury/dependencies/jquery-ui-1.8.13.custom.js +1328 -0
  160. data/vendor/assets/javascripts/mercury/dependencies/jquery.additions.js +206 -0
  161. data/vendor/assets/javascripts/mercury/dependencies/jquery.htmlClean.js +527 -0
  162. data/vendor/assets/javascripts/mercury/dependencies/liquidmetal.js +88 -0
  163. data/vendor/assets/javascripts/mercury/dependencies/showdown.js +1340 -0
  164. data/vendor/assets/javascripts/mercury/dialog.js.coffee +159 -0
  165. data/vendor/assets/javascripts/mercury/dialogs/backcolor.js.coffee +6 -0
  166. data/vendor/assets/javascripts/mercury/dialogs/forecolor.js.coffee +6 -0
  167. data/vendor/assets/javascripts/mercury/dialogs/formatblock.js.coffee +4 -0
  168. data/vendor/assets/javascripts/mercury/dialogs/snippetpanel.js.coffee +10 -0
  169. data/vendor/assets/javascripts/mercury/dialogs/style.js.coffee +4 -0
  170. data/vendor/assets/javascripts/mercury/finalize.js.coffee +3 -0
  171. data/vendor/assets/javascripts/mercury/history_buffer.js.coffee +30 -0
  172. data/vendor/assets/javascripts/mercury/lightview.js.coffee +205 -0
  173. data/vendor/assets/javascripts/mercury/locales/ar.locale.js.coffee +207 -0
  174. data/vendor/assets/javascripts/mercury/locales/da.locale.js.coffee +211 -0
  175. data/vendor/assets/javascripts/mercury/locales/de.locale.js.coffee +206 -0
  176. data/vendor/assets/javascripts/mercury/locales/es.locale.js.coffee +211 -0
  177. data/vendor/assets/javascripts/mercury/locales/example.local.js.coffee +211 -0
  178. data/vendor/assets/javascripts/mercury/locales/fr.locale.js.coffee +211 -0
  179. data/vendor/assets/javascripts/mercury/locales/it.locale.js.coffee +208 -0
  180. data/vendor/assets/javascripts/mercury/locales/ko.local.js.coffee +206 -0
  181. data/vendor/assets/javascripts/mercury/locales/nl.locale.js.coffee +206 -0
  182. data/vendor/assets/javascripts/mercury/locales/pt.locale.js.coffee +211 -0
  183. data/vendor/assets/javascripts/mercury/locales/sv.local.js.coffee +209 -0
  184. data/vendor/assets/javascripts/mercury/locales/swedish_chef.locale.js.coffee +213 -0
  185. data/vendor/assets/javascripts/mercury/mercury.js.coffee +109 -0
  186. data/vendor/assets/javascripts/mercury/modal.js.coffee +198 -0
  187. data/vendor/assets/javascripts/mercury/modals/htmleditor.js.coffee +11 -0
  188. data/vendor/assets/javascripts/mercury/modals/insertcharacter.js.coffee +4 -0
  189. data/vendor/assets/javascripts/mercury/modals/insertlink.js.coffee +92 -0
  190. data/vendor/assets/javascripts/mercury/modals/insertmedia.js.coffee +81 -0
  191. data/vendor/assets/javascripts/mercury/modals/insertsnippet.js.coffee +12 -0
  192. data/vendor/assets/javascripts/mercury/modals/inserttable.js.coffee +54 -0
  193. data/vendor/assets/javascripts/mercury/native_extensions.js.coffee +55 -0
  194. data/vendor/assets/javascripts/mercury/page_editor.js.coffee +225 -0
  195. data/vendor/assets/javascripts/mercury/palette.js.coffee +29 -0
  196. data/vendor/assets/javascripts/mercury/panel.js.coffee +115 -0
  197. data/vendor/assets/javascripts/mercury/plugins/save_as_xml/mercury/page_editor.js.coffee +28 -0
  198. data/vendor/assets/javascripts/mercury/plugins/save_as_xml/plugin.js +9 -0
  199. data/vendor/assets/javascripts/mercury/region.js.coffee +107 -0
  200. data/vendor/assets/javascripts/mercury/regions/editable.js.coffee +600 -0
  201. data/vendor/assets/javascripts/mercury/regions/image.js.coffee +114 -0
  202. data/vendor/assets/javascripts/mercury/regions/markupable.js.coffee +398 -0
  203. data/vendor/assets/javascripts/mercury/regions/simple.js.coffee +325 -0
  204. data/vendor/assets/javascripts/mercury/regions/snippetable.js.coffee +124 -0
  205. data/vendor/assets/javascripts/mercury/select.js.coffee +44 -0
  206. data/vendor/assets/javascripts/mercury/snippet.js.coffee +106 -0
  207. data/vendor/assets/javascripts/mercury/snippet_toolbar.js.coffee +72 -0
  208. data/vendor/assets/javascripts/mercury/statusbar.js.coffee +51 -0
  209. data/vendor/assets/javascripts/mercury/support/history.js +1 -0
  210. data/vendor/assets/javascripts/mercury/table_editor.js.coffee +265 -0
  211. data/vendor/assets/javascripts/mercury/toolbar.button.js.coffee +173 -0
  212. data/vendor/assets/javascripts/mercury/toolbar.button_group.js.coffee +42 -0
  213. data/vendor/assets/javascripts/mercury/toolbar.expander.js.coffee +56 -0
  214. data/vendor/assets/javascripts/mercury/toolbar.js.coffee +86 -0
  215. data/vendor/assets/javascripts/mercury/tooltip.js.coffee +74 -0
  216. data/vendor/assets/javascripts/mercury/uploader.js.coffee +244 -0
  217. data/vendor/assets/javascripts/mercury_loader.js +193 -0
  218. data/vendor/assets/javascripts/mercury_overrides.js +6 -0
  219. data/vendor/assets/stylesheets/mercury.css +28 -0
  220. data/vendor/assets/stylesheets/mercury/all_images.css.erb +89 -0
  221. data/vendor/assets/stylesheets/mercury/dialog.css +212 -0
  222. data/vendor/assets/stylesheets/mercury/form.css +118 -0
  223. data/vendor/assets/stylesheets/mercury/lightview.css +151 -0
  224. data/vendor/assets/stylesheets/mercury/mercury.css +37 -0
  225. data/vendor/assets/stylesheets/mercury/modal.css +183 -0
  226. data/vendor/assets/stylesheets/mercury/statusbar.css +32 -0
  227. data/vendor/assets/stylesheets/mercury/toolbar.css +304 -0
  228. data/vendor/assets/stylesheets/mercury/tooltip.css +26 -0
  229. data/vendor/assets/stylesheets/mercury/uploader.css +111 -0
  230. data/vendor/assets/stylesheets/mercury_overrides.css +17 -0
  231. metadata +572 -0
@@ -0,0 +1,206 @@
1
+ /*
2
+ * jQuery serializeObject Plugin
3
+ *
4
+ */
5
+ (function($) {
6
+ $.fn.serializeObject = function() {
7
+ var o = {};
8
+ var a = this.serializeArray();
9
+ jQuery.each(a, function() {
10
+ if (o[this.name] !== undefined) {
11
+ if (!o[this.name].push) o[this.name] = [o[this.name]];
12
+ o[this.name].push(this.value || '');
13
+ } else {
14
+ o[this.name] = this.value || '';
15
+ }
16
+ });
17
+ return o;
18
+ };
19
+ })(jQuery);
20
+
21
+ /*
22
+ * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
23
+ *
24
+ * Uses the built in easing capabilities added In jQuery 1.1 to offer multiple easing options
25
+ *
26
+ * TERMS OF USE - jQuery Easing
27
+ *
28
+ * Open source under the BSD License.
29
+ *
30
+ * Copyright © 2008 George McGinley Smith
31
+ * All rights reserved.
32
+ *
33
+ * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
34
+ * following conditions are met:
35
+ *
36
+ * Redistributions of source code must retain the above copyright notice, this list of conditions and the following
37
+ * disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and
38
+ * the following disclaimer in the documentation and/or other materials provided with the distribution.
39
+ *
40
+ * Neither the name of the author nor the names of contributors may be used to endorse or promote products derived from
41
+ * this software without specific prior written permission.
42
+ *
43
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
44
+ * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
45
+ * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
46
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
47
+ * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
48
+ * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
49
+ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
50
+ */
51
+ jQuery.extend(jQuery.easing, {
52
+ easeInSine: function (x, t, b, c, d) {
53
+ return -c * Math.cos(t / d * (Math.PI / 2)) + c + b
54
+ },
55
+ easeOutSine: function (x, t, b, c, d) {
56
+ return c * Math.sin(t / d * (Math.PI / 2)) + b
57
+ },
58
+ easeInOutSine: function (x, t, b, c, d) {
59
+ return -c / 2 * (Math.cos(Math.PI * t / d) - 1) + b
60
+ }
61
+ });
62
+
63
+ /*
64
+ * jQuery JSON Plugin version: 2.1 (2009-08-14)
65
+ *
66
+ * This document is licensed as free software under the terms of the MIT License:
67
+ * http://www.opensource.org/licenses/mit-license.php
68
+ *
69
+ * Brantley Harris wrote this plugin. It is based somewhat on the JSON.org website's http://www.json.org/json2.js,
70
+ * which proclaims: "NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK.", a sentiment that I uphold.
71
+ *
72
+ * It is also influenced heavily by MochiKit's serializeJSON, which is copyrighted 2005 by Bob Ippolito.
73
+ */
74
+ (function($) {
75
+ $.toJSON = function(o) {
76
+ if (typeof(JSON) == 'object' && JSON.stringify) return JSON.stringify(o);
77
+
78
+ var type = typeof(o);
79
+
80
+ if (o === null) return "null";
81
+ if (type == "undefined") return undefined;
82
+ if (type == "number" || type == "boolean") return o + "";
83
+ if (type == "string") return $.quoteString(o);
84
+
85
+ if (type == 'object') {
86
+ if (typeof(o.toJSON) == "function") return $.toJSON(o.toJSON());
87
+
88
+ if (o.constructor === Date) {
89
+ var year = o.getUTCFullYear();
90
+
91
+ var month = o.getUTCMonth() + 1;
92
+ if (month < 10) month = '0' + month;
93
+
94
+ var day = o.getUTCDate();
95
+ if (day < 10) day = '0' + day;
96
+
97
+ var hours = o.getUTCHours();
98
+ if (hours < 10) hours = '0' + hours;
99
+
100
+ var minutes = o.getUTCMinutes();
101
+ if (minutes < 10) minutes = '0' + minutes;
102
+
103
+ var seconds = o.getUTCSeconds();
104
+ if (seconds < 10) seconds = '0' + seconds;
105
+
106
+ var milli = o.getUTCMilliseconds();
107
+ if (milli < 100) milli = '0' + milli;
108
+ if (milli < 10) milli = '0' + milli;
109
+
110
+ return '"' + year + '-' + month + '-' + day + 'T' + hours + ':' + minutes + ':' + seconds + '.' + milli + 'Z"';
111
+ }
112
+
113
+ if (o.constructor === Array) {
114
+ var ret = [];
115
+ for (var i = 0; i < o.length; i++) ret.push($.toJSON(o[i]) || "null");
116
+ return "[" + ret.join(",") + "]";
117
+ }
118
+
119
+ var pairs = [];
120
+ for (var k in o) {
121
+ var name;
122
+ type = typeof(k);
123
+
124
+ if (type == "number") name = '"' + k + '"';
125
+ else if (type == "string") name = $.quoteString(k);
126
+ else continue; //skip non-string or number keys
127
+
128
+ if (typeof o[k] == "function") continue; //skip pairs where the value is a function.
129
+ var val = $.toJSON(o[k]);
130
+ pairs.push(name + ":" + val);
131
+ }
132
+
133
+ return "{" + pairs.join(", ") + "}";
134
+ }
135
+ };
136
+
137
+ $.quoteString = function(string) {
138
+ if (string.match(_escapeable)) {
139
+ return '"' + string.replace(_escapeable, function (a) {
140
+ var c = _meta[a];
141
+ if (typeof c === 'string') return c;
142
+ c = a.charCodeAt();
143
+ return '\\u00' + Math.floor(c / 16).toString(16) + (c % 16).toString(16);
144
+ }) + '"';
145
+ }
146
+ return '"' + string + '"';
147
+ };
148
+
149
+ var _escapeable = /["\\\x00-\x1f\x7f-\x9f]/g;
150
+ var _meta = {'\b': '\\b', '\t': '\\t', '\n': '\\n', '\f': '\\f', '\r': '\\r', '"' : '\\"', '\\': '\\\\'};
151
+ })(jQuery);
152
+
153
+ /*
154
+ * jQuery Localizer Plugin
155
+ *
156
+ * Copyright (c) 2011 Sagi Mann (with a basic reworking by Jeremy Jackson)
157
+ * All rights reserved.
158
+ *
159
+ * Redistribution and use in source and binary forms are permitted provided that the above copyright notice and this
160
+ * paragraph are duplicated in all such forms and that any documentation, advertising materials, and other materials
161
+ * related to such distribution and use acknowledge that the software was developed by the <organization>. The name of
162
+ * the University may not be used to endorse or promote products derived from this software without specific prior
163
+ * written permission.
164
+ *
165
+ * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE
166
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
167
+ */
168
+ (function($) {
169
+ $.fn.localize = function(locale) {
170
+ this.find('*').contents().each(function() {
171
+ var translated = false;
172
+ var source = '';
173
+ if (typeof(this.data) == 'string') {
174
+ source = $.trim(this.data);
175
+ if (source && (translated = (locale.sub[source] || locale.top[source]))) {
176
+ this.data = translated;
177
+ }
178
+ }
179
+
180
+ if (this.nodeName == 'IMG' && this.attributes['src']) {
181
+ source = this.attributes['src'].nodeValue;
182
+ if (source && (translated = (locale.sub[source] || locale.top[source]))) {
183
+ $(this).attr('src', translated);
184
+ }
185
+ }
186
+
187
+ if (this.nodeName == "A" && this.attributes['href']) {
188
+ source = $.trim(this.attributes['href'].nodeValue);
189
+ if (source && (translated = (locale.sub[source] || locale.top[source]))) {
190
+ $(this).attr('href', translated);
191
+ }
192
+ }
193
+
194
+ if (this.nodeName == "INPUT" && this.attributes['type']) {
195
+ if (this.attributes['value'] && ['submit', 'reset', 'button'].indexOf(this.attributes['type'].nodeValue.toLowerCase()) > -1) {
196
+ source = $.trim(this.attributes['value'].nodeValue);
197
+ if (source && (translated = (locale.sub[source] || locale.top[source]))) {
198
+ $(this).attr('value', translated);
199
+ }
200
+ }
201
+ }
202
+
203
+ return this;
204
+ });
205
+ };
206
+ })(jQuery);
@@ -0,0 +1,527 @@
1
+ /*
2
+ HTML Clean for jQuery
3
+ Anthony Johnston
4
+ http://www.antix.co.uk
5
+
6
+ version 1.2.3
7
+
8
+ $Revision: 51 $
9
+
10
+ requires jQuery http://jquery.com
11
+
12
+ Use and distibution http://www.opensource.org/licenses/bsd-license.php
13
+
14
+ 2010-04-02 allowedTags/removeTags added (white/black list) thanks to David Wartian (Dwartian)
15
+ 2010-06-30 replaceStyles added for replacement of bold, italic, super and sub styles on a tag
16
+ 2010-07-01 notRenderedTags added, where tags are to be removed but their contents are kept
17
+ */
18
+ (function ($) {
19
+ $.fn.htmlClean = function (options) {
20
+ // iterate and html clean each matched element
21
+ return this.each(function () {
22
+ if (this.value) {
23
+ this.value = $.htmlClean(this.value, options);
24
+ } else {
25
+ this.innerHTML = $.htmlClean(this.innerHTML, options);
26
+ }
27
+ });
28
+ };
29
+
30
+ // clean the passed html
31
+ $.htmlClean = function (html, options) {
32
+ options = $.extend({}, $.htmlClean.defaults, options);
33
+
34
+ var tagsRE = /<(\/)?(\w+:)?([\w]+)([^>]*)>/gi;
35
+ var attrsRE = /(\w+)=(".*?"|'.*?'|[^\s>]*)/gi;
36
+
37
+ var tagMatch;
38
+ var root = new Element();
39
+ var stack = [root];
40
+ var container = root;
41
+
42
+ if (options.bodyOnly) {
43
+ // check for body tag
44
+ if (tagMatch = /<body[^>]*>((\n|.)*)<\/body>/i.exec(html)) {
45
+ html = tagMatch[1];
46
+ }
47
+ }
48
+ html = html.concat("<xxx>"); // ensure last element/text is found
49
+ var lastIndex;
50
+
51
+ while (tagMatch = tagsRE.exec(html)) {
52
+ var tag = new Tag(tagMatch[3], tagMatch[1], tagMatch[4], options);
53
+
54
+ // add the text
55
+ var text = html.substring(lastIndex, tagMatch.index);
56
+ if (text.length > 0) {
57
+ var child = container.children[container.children.length - 1];
58
+ if (container.children.length > 0 && isText(child = container.children[container.children.length - 1])) {
59
+ // merge text
60
+ container.children[container.children.length - 1] = child.concat(text);
61
+ } else {
62
+ container.children.push(text);
63
+ }
64
+ }
65
+ lastIndex = tagsRE.lastIndex;
66
+
67
+ if (tag.isClosing) {
68
+ // find matching container
69
+ if (pop(stack, [tag.name])) {
70
+ stack.pop();
71
+ container = stack[stack.length - 1];
72
+ }
73
+ } else {
74
+ // create a new element
75
+ var element = new Element(tag);
76
+
77
+ // add attributes
78
+ var attrMatch;
79
+ while (attrMatch = attrsRE.exec(tag.rawAttributes)) {
80
+ // check style attribute and do replacements
81
+ if (attrMatch[1].toLowerCase() == "style" && options.replaceStyles) {
82
+
83
+ var renderParent = !tag.isInline;
84
+ for (var i = 0; i < options.replaceStyles.length; i++) {
85
+ if (options.replaceStyles[i][0].test(attrMatch[2])) {
86
+
87
+ if (!renderParent) {
88
+ tag.render = false;
89
+ renderParent = true;
90
+ }
91
+ container.children.push(element); // assumes not replaced
92
+ stack.push(element);
93
+ container = element; // assumes replacement is a container
94
+ // create new tag and element
95
+ tag = new Tag(options.replaceStyles[i][1], "", "", options);
96
+ element = new Element(tag);
97
+ }
98
+ }
99
+ }
100
+
101
+ if (tag.allowedAttributes != null
102
+ && (tag.allowedAttributes.length == 0
103
+ || $.inArray(attrMatch[1], tag.allowedAttributes) > -1)) {
104
+ element.attributes.push(new Attribute(attrMatch[1], attrMatch[2]));
105
+ }
106
+ }
107
+
108
+ // add required empty ones
109
+ $.each(tag.requiredAttributes, function () {
110
+ var name = this.toString();
111
+ if (!element.hasAttribute(name)) element.attributes.push(new Attribute(name, ""));
112
+ });
113
+
114
+ // check for replacements
115
+ for (var repIndex = 0; repIndex < options.replace.length; repIndex++) {
116
+ for (var tagIndex = 0; tagIndex < options.replace[repIndex][0].length; tagIndex++) {
117
+ var byName = typeof (options.replace[repIndex][0][tagIndex]) == "string";
118
+ if ((byName && options.replace[repIndex][0][tagIndex] == tag.name)
119
+ || (!byName && options.replace[repIndex][0][tagIndex].test(tagMatch))) {
120
+ // don't render this tag
121
+ tag.render = false;
122
+ container.children.push(element);
123
+ stack.push(element);
124
+ container = element;
125
+
126
+ // render new tag, keep attributes
127
+ tag = new Tag(options.replace[repIndex][1], tagMatch[1], tagMatch[4], options);
128
+ element = new Element(tag);
129
+ element.attributes = container.attributes;
130
+
131
+ repIndex = options.replace.length; // break out of both loops
132
+ break;
133
+ }
134
+ }
135
+ }
136
+
137
+ // check container rules
138
+ var add = true;
139
+ if (!container.isRoot) {
140
+ if (container.tag.isInline && !tag.isInline) {
141
+ add = false;
142
+ } else if (container.tag.disallowNest && tag.disallowNest
143
+ && !tag.requiredParent) {
144
+ add = false;
145
+ } else if (tag.requiredParent) {
146
+ if (add = pop(stack, tag.requiredParent)) {
147
+ container = stack[stack.length - 1];
148
+ }
149
+ }
150
+ }
151
+
152
+ if (add) {
153
+ container.children.push(element);
154
+
155
+ if (tag.toProtect) {
156
+ // skip to closing tag
157
+ var tagMatch2 = null;
158
+ while (tagMatch2 = tagsRE.exec(html)) {
159
+ var tag2 = new Tag(tagMatch2[3], tagMatch2[1], tagMatch2[4], options);
160
+ if (tag2.isClosing && tag2.name == tag.name) {
161
+ element.children.push(RegExp.leftContext.substring(lastIndex));
162
+ lastIndex = tagsRE.lastIndex;
163
+ break;
164
+ }
165
+ }
166
+ } else {
167
+ // set as current container element
168
+ if (!tag.isSelfClosing && !tag.isNonClosing) {
169
+ stack.push(element);
170
+ container = element;
171
+ }
172
+ }
173
+ }
174
+ }
175
+ }
176
+
177
+ // render doc
178
+ return render(root, options).join("");
179
+ };
180
+
181
+ // defaults
182
+ $.htmlClean.defaults = {
183
+ // only clean the body tagbody
184
+ bodyOnly: true,
185
+ // only allow tags in this array, (white list), contents still rendered
186
+ allowedTags: [],
187
+ // remove tags in this array, (black list), contents still rendered
188
+ removeTags: ["basefont", "center", "dir", "font", "frame", "frameset", "iframe", "isindex", "menu", "noframes", "s", "strike", "u"],
189
+ // array of attribute names to remove on all elements in addition to those not in tagAttributes e.g ["width", "height"]
190
+ removeAttrs: [],
191
+ // array of [className], [optional array of allowed on elements] e.g. [["class"], ["anotherClass", ["p", "dl"]]]
192
+ allowedClasses: [],
193
+ // tags not rendered, contents remain
194
+ notRenderedTags: [],
195
+ // format the result
196
+ format: false,
197
+ // format indent to start on
198
+ formatIndent: 0,
199
+ // tags to replace, and what to replace with, tag name or regex to match the tag and attributes
200
+ replace: [
201
+ [
202
+ ["b", "big"],
203
+ "strong"
204
+ ],
205
+ [
206
+ ["i"],
207
+ "em"
208
+ ]
209
+ ],
210
+ // styles to replace with tags, multiple style matches supported, inline tags are replaced by the first match blocks are retained
211
+ replaceStyles: [
212
+ [/font-weight:\s*bold/i, "strong"],
213
+ [/font-style:\s*italic/i, "em"],
214
+ [/vertical-align:\s*super/i, "sup"],
215
+ [/vertical-align:\s*sub/i, "sub"]
216
+ ]
217
+ };
218
+
219
+ function applyFormat(element, options, output, indent) {
220
+ if (!element.tag.isInline && output.length > 0) {
221
+ output.push("\n");
222
+ for (var i = 0; i < indent; i++) output.push("\t");
223
+ }
224
+ }
225
+
226
+ function render(element, options) {
227
+ var output = [],
228
+ empty = element.attributes.length == 0,
229
+ indent = 0,
230
+ outputChildren = null;
231
+
232
+ // don't render if not in allowedTags or in removeTags
233
+ var renderTag
234
+ = element.tag.render
235
+ && (options.allowedTags.length == 0 || $.inArray(element.tag.name, options.allowedTags) > -1)
236
+ && (options.removeTags.length == 0 || $.inArray(element.tag.name, options.removeTags) == -1);
237
+
238
+ if (!element.isRoot && renderTag) {
239
+ // render opening tag
240
+ output.push("<");
241
+ output.push(element.tag.name);
242
+ $.each(element.attributes, function () {
243
+ if ($.inArray(this.name, options.removeAttrs) == -1) {
244
+ var m = new RegExp(/^(['"]?)(.*?)['"]?$/).exec(this.value);
245
+ var value = m[2];
246
+ var valueQuote = m[1] || "'";
247
+
248
+ // check for classes allowed
249
+ if (this.name == "class") {
250
+ value =
251
+ $.grep(value.split(" "), function (c) {
252
+ return $.grep(options.allowedClasses,
253
+ function (a) {
254
+ return a[0] == c && (a.length == 1 || $.inArray(element.tag.name, a[1]) > -1);
255
+ }).length > 0;
256
+ })
257
+ .join(" ");
258
+ valueQuote = "'";
259
+ }
260
+
261
+ if (value != null && (value.length > 0 || $.inArray(this.name, element.tag.requiredAttributes) > -1)) {
262
+ output.push(" ");
263
+ output.push(this.name);
264
+ output.push("=");
265
+ output.push(valueQuote);
266
+ output.push(value);
267
+ output.push(valueQuote);
268
+ }
269
+ }
270
+ });
271
+ }
272
+
273
+ if (element.tag.isSelfClosing) {
274
+ // self closing
275
+ if (renderTag) output.push(" />");
276
+ empty = false;
277
+ } else if (element.tag.isNonClosing) {
278
+ empty = false;
279
+ } else {
280
+ if (!element.isRoot && renderTag) {
281
+ // close
282
+ output.push(">");
283
+ }
284
+
285
+ indent = options.formatIndent++;
286
+
287
+ // render children
288
+ if (element.tag.toProtect) {
289
+ outputChildren = $.htmlClean.trim(element.children.join("")).replace(/<br>/ig, "\n");
290
+ output.push(outputChildren);
291
+ empty = outputChildren.length == 0;
292
+ options.formatIndent--;
293
+ } else {
294
+ outputChildren = [];
295
+ for (var i = 0; i < element.children.length; i++) {
296
+ var child = element.children[i];
297
+ var text = $.htmlClean.trim(textClean(isText(child) ? child : child.childrenToString()));
298
+ if (isInline(child)) {
299
+ if (i > 0 && text.length > 0
300
+ && (startsWithWhitespace(child) || endsWithWhitespace(element.children[i - 1]))) {
301
+ outputChildren.push(" ");
302
+ }
303
+ }
304
+ if (isText(child)) {
305
+ if (text.length > 0) {
306
+ outputChildren.push(text);
307
+ }
308
+ } else {
309
+ // don't allow a break to be the last child
310
+ if (i != element.children.length - 1 || child.tag.name != "br") {
311
+ if (options.format) applyFormat(child, options, outputChildren, indent);
312
+ outputChildren = outputChildren.concat(render(child, options));
313
+ }
314
+ }
315
+ }
316
+ options.formatIndent--;
317
+
318
+ if (outputChildren.length > 0) {
319
+ if (options.format && outputChildren[0] != "\n") applyFormat(element, options, output, indent);
320
+ output = output.concat(outputChildren);
321
+ empty = false;
322
+ }
323
+ }
324
+
325
+ if (!element.isRoot && renderTag) {
326
+ // render the closing tag
327
+ if (options.format) applyFormat(element, options, output, indent - 1);
328
+ output.push("</");
329
+ output.push(element.tag.name);
330
+ output.push(">");
331
+ }
332
+ }
333
+
334
+ // check for empty tags
335
+ if (!element.tag.allowEmpty && empty) {
336
+ return [];
337
+ }
338
+
339
+ return output;
340
+ }
341
+
342
+ // find a matching tag, and pop to it, if not do nothing
343
+ function pop(stack, tagNameArray, index) {
344
+ index = index || 1;
345
+ if ($.inArray(stack[stack.length - index].tag.name, tagNameArray) > -1) {
346
+ return true;
347
+ } else if (stack.length - (index + 1) > 0
348
+ && pop(stack, tagNameArray, index + 1)) {
349
+ stack.pop();
350
+ return true;
351
+ }
352
+ return false;
353
+ }
354
+
355
+ // Element Object
356
+ function Element(tag) {
357
+ if (tag) {
358
+ this.tag = tag;
359
+ this.isRoot = false;
360
+ } else {
361
+ this.tag = new Tag("root");
362
+ this.isRoot = true;
363
+ }
364
+ this.attributes = [];
365
+ this.children = [];
366
+
367
+ this.hasAttribute = function (name) {
368
+ for (var i = 0; i < this.attributes.length; i++) {
369
+ if (this.attributes[i].name == name) return true;
370
+ }
371
+ return false;
372
+ };
373
+
374
+ this.childrenToString = function () {
375
+ return this.children.join("");
376
+ };
377
+
378
+ return this;
379
+ }
380
+
381
+ // Attribute Object
382
+ function Attribute(name, value) {
383
+ this.name = name;
384
+ this.value = value;
385
+
386
+ return this;
387
+ }
388
+
389
+ // Tag object
390
+ function Tag(name, close, rawAttributes, options) {
391
+ this.name = name.toLowerCase();
392
+
393
+ this.isSelfClosing = $.inArray(this.name, tagSelfClosing) > -1;
394
+ this.isNonClosing = $.inArray(this.name, tagNonClosing) > -1;
395
+ this.isClosing = (close != undefined && close.length > 0);
396
+
397
+ this.isInline = $.inArray(this.name, tagInline) > -1;
398
+ this.disallowNest = $.inArray(this.name, tagDisallowNest) > -1;
399
+ this.requiredParent = tagRequiredParent[$.inArray(this.name, tagRequiredParent) + 1];
400
+ this.allowEmpty = $.inArray(this.name, tagAllowEmpty) > -1;
401
+
402
+ this.toProtect = $.inArray(this.name, tagProtect) > -1;
403
+
404
+ this.rawAttributes = rawAttributes;
405
+ this.allowedAttributes = tagAttributes[$.inArray(this.name, tagAttributes) + 1];
406
+ this.requiredAttributes = tagAttributesRequired[$.inArray(this.name, tagAttributesRequired) + 1];
407
+
408
+ this.render = options && $.inArray(this.name, options.notRenderedTags) == -1;
409
+
410
+ return this;
411
+ }
412
+
413
+ function startsWithWhitespace(item) {
414
+ while (isElement(item) && item.children.length > 0) {
415
+ item = item.children[0]
416
+ }
417
+ return isText(item) && item.length > 0 && $.htmlClean.isWhitespace(item.charAt(0));
418
+ }
419
+
420
+ function endsWithWhitespace(item) {
421
+ while (isElement(item) && item.children.length > 0) {
422
+ item = item.children[item.children.length - 1]
423
+ }
424
+ return isText(item) && item.length > 0 && $.htmlClean.isWhitespace(item.charAt(item.length - 1));
425
+ }
426
+
427
+ function isText(item) {
428
+ return item.constructor == String;
429
+ }
430
+
431
+ function isInline(item) {
432
+ return isText(item) || item.tag.isInline;
433
+ }
434
+
435
+ function isElement(item) {
436
+ return item.constructor == Element;
437
+ }
438
+
439
+ function textClean(text) {
440
+ return text.replace(/&nbsp;|\n/g, " ").replace(/\s\s+/g, " ");
441
+ }
442
+
443
+ // trim off white space, doesn't use regex
444
+ $.htmlClean.trim = function (text) {
445
+ return $.htmlClean.trimStart($.htmlClean.trimEnd(text));
446
+ };
447
+ $.htmlClean.trimStart = function (text) {
448
+ return text.substring($.htmlClean.trimStartIndex(text));
449
+ };
450
+ $.htmlClean.trimStartIndex = function (text) {
451
+ for (var start = 0; start < text.length - 1 && $.htmlClean.isWhitespace(text.charAt(start)); start++);
452
+ return start;
453
+ };
454
+ $.htmlClean.trimEnd = function (text) {
455
+ return text.substring(0, $.htmlClean.trimEndIndex(text));
456
+ };
457
+ $.htmlClean.trimEndIndex = function (text) {
458
+ for (var end = text.length - 1; end >= 0 && $.htmlClean.isWhitespace(text.charAt(end)); end--);
459
+ return end + 1;
460
+ };
461
+ // checks a char is white space or not
462
+ $.htmlClean.isWhitespace = function (c) {
463
+ return $.inArray(c, whitespace) != -1;
464
+ };
465
+
466
+ // tags which are inline
467
+ var tagInline = [
468
+ "a", "abbr", "acronym", "address", "b", "big", "br", "button",
469
+ "caption", "cite", "code", "del", "em", "font",
470
+ "hr", "i", "input", "img", "ins", "label", "legend", "map", "q",
471
+ "samp", "select", "small", "span", "strong", "sub", "sup",
472
+ "tt", "var"];
473
+ var tagDisallowNest = ["h1", "h2", "h3", "h4", "h5", "h6", "p", "th", "td"];
474
+ var tagAllowEmpty = ["th", "td"];
475
+ var tagRequiredParent = [
476
+ null,
477
+ "li", ["ul", "ol"],
478
+ "dt", ["dl"],
479
+ "dd", ["dl"],
480
+ "td", ["tr"],
481
+ "th", ["tr"],
482
+ "tr", ["table", "thead", "tbody", "tfoot"],
483
+ "thead", ["table"],
484
+ "tbody", ["table"],
485
+ "tfoot", ["table"]
486
+ ];
487
+ var tagProtect = ["script", "style", "pre", "code"];
488
+ // tags which self close e.g. <br />
489
+ var tagSelfClosing = ["br", "hr", "img", "link", "meta"];
490
+ // tags which do not close
491
+ var tagNonClosing = ["!doctype", "?xml"];
492
+ // attributes allowed on tags
493
+ var tagAttributes = [
494
+ ["class"], // default, for all tags not mentioned
495
+ "?xml", [],
496
+ "!doctype", [],
497
+ "a", ["accesskey", "class", "href", "name", "title", "rel", "rev", "type", "tabindex"],
498
+ "abbr", ["class", "title"],
499
+ "acronym", ["class", "title"],
500
+ "blockquote", ["cite", "class"],
501
+ "button", ["class", "disabled", "name", "type", "value"],
502
+ "del", ["cite", "class", "datetime"],
503
+ "form", ["accept", "action", "class", "enctype", "method", "name"],
504
+ "input", ["accept", "accesskey", "alt", "checked", "class", "disabled", "ismap", "maxlength", "name", "size", "readonly", "src", "tabindex", "type", "usemap", "value"],
505
+ "img", ["alt", "class", "height", "src", "width"],
506
+ "ins", ["cite", "class", "datetime"],
507
+ "label", ["accesskey", "class", "for"],
508
+ "legend", ["accesskey", "class"],
509
+ "link", ["href", "rel", "type"],
510
+ "meta", ["content", "http-equiv", "name", "scheme"],
511
+ "map", ["name"],
512
+ "optgroup", ["class", "disabled", "label"],
513
+ "option", ["class", "disabled", "label", "selected", "value"],
514
+ "q", ["class", "cite"],
515
+ "td", ["colspan", "rowspan"],
516
+ "th", ["colspan", "rowspan"],
517
+ "script", ["src", "type"],
518
+ "select", ["class", "disabled", "multiple", "name", "size", "tabindex"],
519
+ "style", ["type"],
520
+ "table", ["class", "summary"],
521
+ "textarea", ["accesskey", "class", "cols", "disabled", "name", "readonly", "rows", "tabindex"]
522
+ ];
523
+ var tagAttributesRequired = [[], "img", ["alt"]];
524
+ // white space chars
525
+ var whitespace = [" ", " ", "\t", "\n", "\r", "\f"];
526
+
527
+ })(jQuery);