cas-cms 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (126) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +43 -0
  4. data/Rakefile +37 -0
  5. data/app/assets/config/cas_manifest.js +2 -0
  6. data/app/assets/images/cas/black-star.svg +4 -0
  7. data/app/assets/images/cas/check.svg +4 -0
  8. data/app/assets/images/cas/dropzone-in.svg +4 -0
  9. data/app/assets/images/cas/loading.gif +0 -0
  10. data/app/assets/images/cas/white-star.svg +4 -0
  11. data/app/assets/javascripts/cas/application.js +51 -0
  12. data/app/assets/javascripts/cas/fileupload_manifest.js +269 -0
  13. data/app/assets/javascripts/cas/plugins/cas_image_gallery.js +353 -0
  14. data/app/assets/javascripts/cas/vendor/file_upload/canvas-to-blob.min.js +2 -0
  15. data/app/assets/javascripts/cas/vendor/file_upload/jquery.fileupload-image.js +326 -0
  16. data/app/assets/javascripts/cas/vendor/file_upload/jquery.fileupload-process.js +178 -0
  17. data/app/assets/javascripts/cas/vendor/file_upload/jquery.fileupload.js +1482 -0
  18. data/app/assets/javascripts/cas/vendor/file_upload/jquery.iframe-transport.js +224 -0
  19. data/app/assets/javascripts/cas/vendor/file_upload/jquery.ui.widget.js +572 -0
  20. data/app/assets/javascripts/cas/vendor/file_upload/load-image.all.min.js +2 -0
  21. data/app/assets/javascripts/cas/vendor/jquery.ui.touch-punch.min.js +11 -0
  22. data/app/assets/javascripts/cas/vendor/selectize.min.js +3 -0
  23. data/app/assets/stylesheets/cas/application.sass +17 -0
  24. data/app/assets/stylesheets/cas/colors.sass +6 -0
  25. data/app/assets/stylesheets/cas/form.sass +99 -0
  26. data/app/assets/stylesheets/cas/layout.sass +68 -0
  27. data/app/assets/stylesheets/cas/mixins.sass +34 -0
  28. data/app/assets/stylesheets/cas/plugins/attachments_form.sass +16 -0
  29. data/app/assets/stylesheets/cas/plugins/image_gallery.sass +128 -0
  30. data/app/assets/stylesheets/cas/tables.sass +13 -0
  31. data/app/assets/stylesheets/cas/typography.sass +27 -0
  32. data/app/assets/stylesheets/cas/vendors/selectize.default.css +394 -0
  33. data/app/assets/stylesheets/cas/vendors/simplegrid.css +298 -0
  34. data/app/controllers/cas/api/files_controller.rb +88 -0
  35. data/app/controllers/cas/application_controller.rb +17 -0
  36. data/app/controllers/cas/devise/sessions_controller.rb +9 -0
  37. data/app/controllers/cas/file_uploads_controller.rb +14 -0
  38. data/app/controllers/cas/sections/application_controller.rb +23 -0
  39. data/app/controllers/cas/sections/categories_controller.rb +47 -0
  40. data/app/controllers/cas/sections/contents_controller.rb +144 -0
  41. data/app/controllers/cas/sections_controller.rb +7 -0
  42. data/app/controllers/cas/users_controller.rb +61 -0
  43. data/app/helpers/cas/application_helper.rb +4 -0
  44. data/app/helpers/cas/form_helper.rb +11 -0
  45. data/app/jobs/cas/application_job.rb +4 -0
  46. data/app/jobs/cas/images/delete_job.rb +11 -0
  47. data/app/jobs/cas/images/promote_job.rb +11 -0
  48. data/app/jobs/cas/increment_pageviews_job.rb +11 -0
  49. data/app/models/cas/application_record.rb +5 -0
  50. data/app/models/cas/category.rb +6 -0
  51. data/app/models/cas/content.rb +59 -0
  52. data/app/models/cas/media_file.rb +77 -0
  53. data/app/models/cas/section.rb +10 -0
  54. data/app/models/cas/site.rb +5 -0
  55. data/app/models/cas/user.rb +39 -0
  56. data/app/uploaders/file_uploader.rb +26 -0
  57. data/app/views/cas/devise/sessions/new.html.erb +24 -0
  58. data/app/views/cas/sections/categories/_form.html.erb +19 -0
  59. data/app/views/cas/sections/categories/edit.html.erb +5 -0
  60. data/app/views/cas/sections/categories/index.html.erb +28 -0
  61. data/app/views/cas/sections/categories/new.html.erb +5 -0
  62. data/app/views/cas/sections/contents/_form_attachments.html.erb +42 -0
  63. data/app/views/cas/sections/contents/_form_attachments_template.html.erb +11 -0
  64. data/app/views/cas/sections/contents/_form_for_content.html.erb +85 -0
  65. data/app/views/cas/sections/contents/_form_for_survey.html.erb +36 -0
  66. data/app/views/cas/sections/contents/_form_images.html.erb +86 -0
  67. data/app/views/cas/sections/contents/edit.html.erb +6 -0
  68. data/app/views/cas/sections/contents/index.html.erb +71 -0
  69. data/app/views/cas/sections/contents/new.html.erb +5 -0
  70. data/app/views/cas/sections/index.html.erb +21 -0
  71. data/app/views/cas/shared/_error_messages.html.erb +12 -0
  72. data/app/views/cas/users/_form.html.erb +11 -0
  73. data/app/views/cas/users/edit.html.erb +2 -0
  74. data/app/views/cas/users/index.html.erb +34 -0
  75. data/app/views/cas/users/new.html.erb +2 -0
  76. data/app/views/layouts/cas/application.html.erb +71 -0
  77. data/config/initializers/acts_as_taggable.rb +1 -0
  78. data/config/initializers/devise.rb +277 -0
  79. data/config/initializers/shrine.rb +50 -0
  80. data/config/initializers/simple_form.rb +169 -0
  81. data/config/locales/devise.en.yml +64 -0
  82. data/config/locales/pt-BR.yml +242 -0
  83. data/config/locales/simple_form.en.yml +31 -0
  84. data/config/routes.rb +31 -0
  85. data/db/migrate/20170129212144_create_cas_sites.rb +15 -0
  86. data/db/migrate/20170219172958_create_cas_sections.rb +12 -0
  87. data/db/migrate/20170219175007_create_cas_contents.rb +17 -0
  88. data/db/migrate/20170612204500_create_cas_users.rb +14 -0
  89. data/db/migrate/20170613174724_create_cas_media_files.rb +20 -0
  90. data/db/migrate/20170613175912_create_cas_categories.rb +14 -0
  91. data/db/migrate/20170614171928_add_columns_to_cas_contents.rb +12 -0
  92. data/db/migrate/20170614172904_add_column_to_cas_sections.rb +6 -0
  93. data/db/migrate/20170615235532_add_devise_to_cas_users.rb +49 -0
  94. data/db/migrate/20170616011202_remove_password_from_cas_users.rb +5 -0
  95. data/db/migrate/20170618014204_v3_migration_fields.rb +30 -0
  96. data/db/migrate/20170623182702_add_column_category_id_to_cas_content.rb +6 -0
  97. data/db/migrate/20170624024648_rename_url_to_path_in_files.rb +7 -0
  98. data/db/migrate/20170625192119_acts_as_taggable_on_migration.acts_as_taggable_on_engine.rb +36 -0
  99. data/db/migrate/20170625192120_add_missing_unique_indices.acts_as_taggable_on_engine.rb +26 -0
  100. data/db/migrate/20170625192121_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb +20 -0
  101. data/db/migrate/20170625192122_add_missing_taggable_index.acts_as_taggable_on_engine.rb +15 -0
  102. data/db/migrate/20170625192123_change_collation_for_tag_names.acts_as_taggable_on_engine.rb +15 -0
  103. data/db/migrate/20170625192124_add_missing_indexes_on_taggings.acts_as_taggable_on_engine.rb +23 -0
  104. data/db/migrate/20170713210101_add_location_to_cas_content.rb +5 -0
  105. data/db/migrate/20170714043036_add_url_to_content.rb +5 -0
  106. data/db/migrate/20170718201535_add_embedded_to_content.rb +5 -0
  107. data/db/migrate/20170801171952_categories_with_jsonb_metadata.rb +6 -0
  108. data/db/migrate/20170801173256_add_published_at_to_cas_contents.rb +6 -0
  109. data/db/migrate/20170801175407_add_description_to_cas_categories.rb +5 -0
  110. data/db/migrate/20170830000000_add_data_search_extensions.rb +17 -0
  111. data/db/migrate/20170830000001_add_search_index_to_cas_contents.rb +20 -0
  112. data/db/migrate/20170830000002_use_uuid_with_acts_as_taggable_references.rb +17 -0
  113. data/db/migrate/20170919181809_pageviews_default_to_zero.rb +9 -0
  114. data/db/migrate/20171201191059_add_domains_to_cas_site.rb +6 -0
  115. data/lib/cas.rb +22 -0
  116. data/lib/cas/config.rb +42 -0
  117. data/lib/cas/engine.rb +33 -0
  118. data/lib/cas/form_field.rb +54 -0
  119. data/lib/cas/remote_callbacks.rb +36 -0
  120. data/lib/cas/section_config.rb +84 -0
  121. data/lib/cas/setup.rb +43 -0
  122. data/lib/cas/version.rb +3 -0
  123. data/lib/devise/custom_failure.rb +16 -0
  124. data/lib/tasks/cas_tasks.rake +4 -0
  125. data/lib/templates/erb/scaffold/_form.html.erb +13 -0
  126. metadata +560 -0
@@ -0,0 +1,224 @@
1
+ /*
2
+ * jQuery Iframe Transport Plugin
3
+ * https://github.com/blueimp/jQuery-File-Upload
4
+ *
5
+ * Copyright 2011, Sebastian Tschan
6
+ * https://blueimp.net
7
+ *
8
+ * Licensed under the MIT license:
9
+ * https://opensource.org/licenses/MIT
10
+ */
11
+
12
+ /* global define, require, window, document, JSON */
13
+
14
+ ;(function (factory) {
15
+ 'use strict';
16
+ if (typeof define === 'function' && define.amd) {
17
+ // Register as an anonymous AMD module:
18
+ define(['jquery'], factory);
19
+ } else if (typeof exports === 'object') {
20
+ // Node/CommonJS:
21
+ factory(require('jquery'));
22
+ } else {
23
+ // Browser globals:
24
+ factory(window.jQuery);
25
+ }
26
+ }(function ($) {
27
+ 'use strict';
28
+
29
+ // Helper variable to create unique names for the transport iframes:
30
+ var counter = 0,
31
+ jsonAPI = $,
32
+ jsonParse = 'parseJSON';
33
+
34
+ if ('JSON' in window && 'parse' in JSON) {
35
+ jsonAPI = JSON;
36
+ jsonParse = 'parse';
37
+ }
38
+
39
+ // The iframe transport accepts four additional options:
40
+ // options.fileInput: a jQuery collection of file input fields
41
+ // options.paramName: the parameter name for the file form data,
42
+ // overrides the name property of the file input field(s),
43
+ // can be a string or an array of strings.
44
+ // options.formData: an array of objects with name and value properties,
45
+ // equivalent to the return data of .serializeArray(), e.g.:
46
+ // [{name: 'a', value: 1}, {name: 'b', value: 2}]
47
+ // options.initialIframeSrc: the URL of the initial iframe src,
48
+ // by default set to "javascript:false;"
49
+ $.ajaxTransport('iframe', function (options) {
50
+ if (options.async) {
51
+ // javascript:false as initial iframe src
52
+ // prevents warning popups on HTTPS in IE6:
53
+ /*jshint scripturl: true */
54
+ var initialIframeSrc = options.initialIframeSrc || 'javascript:false;',
55
+ /*jshint scripturl: false */
56
+ form,
57
+ iframe,
58
+ addParamChar;
59
+ return {
60
+ send: function (_, completeCallback) {
61
+ form = $('<form style="display:none;"></form>');
62
+ form.attr('accept-charset', options.formAcceptCharset);
63
+ addParamChar = /\?/.test(options.url) ? '&' : '?';
64
+ // XDomainRequest only supports GET and POST:
65
+ if (options.type === 'DELETE') {
66
+ options.url = options.url + addParamChar + '_method=DELETE';
67
+ options.type = 'POST';
68
+ } else if (options.type === 'PUT') {
69
+ options.url = options.url + addParamChar + '_method=PUT';
70
+ options.type = 'POST';
71
+ } else if (options.type === 'PATCH') {
72
+ options.url = options.url + addParamChar + '_method=PATCH';
73
+ options.type = 'POST';
74
+ }
75
+ // IE versions below IE8 cannot set the name property of
76
+ // elements that have already been added to the DOM,
77
+ // so we set the name along with the iframe HTML markup:
78
+ counter += 1;
79
+ iframe = $(
80
+ '<iframe src="' + initialIframeSrc +
81
+ '" name="iframe-transport-' + counter + '"></iframe>'
82
+ ).bind('load', function () {
83
+ var fileInputClones,
84
+ paramNames = $.isArray(options.paramName) ?
85
+ options.paramName : [options.paramName];
86
+ iframe
87
+ .unbind('load')
88
+ .bind('load', function () {
89
+ var response;
90
+ // Wrap in a try/catch block to catch exceptions thrown
91
+ // when trying to access cross-domain iframe contents:
92
+ try {
93
+ response = iframe.contents();
94
+ // Google Chrome and Firefox do not throw an
95
+ // exception when calling iframe.contents() on
96
+ // cross-domain requests, so we unify the response:
97
+ if (!response.length || !response[0].firstChild) {
98
+ throw new Error();
99
+ }
100
+ } catch (e) {
101
+ response = undefined;
102
+ }
103
+ // The complete callback returns the
104
+ // iframe content document as response object:
105
+ completeCallback(
106
+ 200,
107
+ 'success',
108
+ {'iframe': response}
109
+ );
110
+ // Fix for IE endless progress bar activity bug
111
+ // (happens on form submits to iframe targets):
112
+ $('<iframe src="' + initialIframeSrc + '"></iframe>')
113
+ .appendTo(form);
114
+ window.setTimeout(function () {
115
+ // Removing the form in a setTimeout call
116
+ // allows Chrome's developer tools to display
117
+ // the response result
118
+ form.remove();
119
+ }, 0);
120
+ });
121
+ form
122
+ .prop('target', iframe.prop('name'))
123
+ .prop('action', options.url)
124
+ .prop('method', options.type);
125
+ if (options.formData) {
126
+ $.each(options.formData, function (index, field) {
127
+ $('<input type="hidden"/>')
128
+ .prop('name', field.name)
129
+ .val(field.value)
130
+ .appendTo(form);
131
+ });
132
+ }
133
+ if (options.fileInput && options.fileInput.length &&
134
+ options.type === 'POST') {
135
+ fileInputClones = options.fileInput.clone();
136
+ // Insert a clone for each file input field:
137
+ options.fileInput.after(function (index) {
138
+ return fileInputClones[index];
139
+ });
140
+ if (options.paramName) {
141
+ options.fileInput.each(function (index) {
142
+ $(this).prop(
143
+ 'name',
144
+ paramNames[index] || options.paramName
145
+ );
146
+ });
147
+ }
148
+ // Appending the file input fields to the hidden form
149
+ // removes them from their original location:
150
+ form
151
+ .append(options.fileInput)
152
+ .prop('enctype', 'multipart/form-data')
153
+ // enctype must be set as encoding for IE:
154
+ .prop('encoding', 'multipart/form-data');
155
+ // Remove the HTML5 form attribute from the input(s):
156
+ options.fileInput.removeAttr('form');
157
+ }
158
+ form.submit();
159
+ // Insert the file input fields at their original location
160
+ // by replacing the clones with the originals:
161
+ if (fileInputClones && fileInputClones.length) {
162
+ options.fileInput.each(function (index, input) {
163
+ var clone = $(fileInputClones[index]);
164
+ // Restore the original name and form properties:
165
+ $(input)
166
+ .prop('name', clone.prop('name'))
167
+ .attr('form', clone.attr('form'));
168
+ clone.replaceWith(input);
169
+ });
170
+ }
171
+ });
172
+ form.append(iframe).appendTo(document.body);
173
+ },
174
+ abort: function () {
175
+ if (iframe) {
176
+ // javascript:false as iframe src aborts the request
177
+ // and prevents warning popups on HTTPS in IE6.
178
+ // concat is used to avoid the "Script URL" JSLint error:
179
+ iframe
180
+ .unbind('load')
181
+ .prop('src', initialIframeSrc);
182
+ }
183
+ if (form) {
184
+ form.remove();
185
+ }
186
+ }
187
+ };
188
+ }
189
+ });
190
+
191
+ // The iframe transport returns the iframe content document as response.
192
+ // The following adds converters from iframe to text, json, html, xml
193
+ // and script.
194
+ // Please note that the Content-Type for JSON responses has to be text/plain
195
+ // or text/html, if the browser doesn't include application/json in the
196
+ // Accept header, else IE will show a download dialog.
197
+ // The Content-Type for XML responses on the other hand has to be always
198
+ // application/xml or text/xml, so IE properly parses the XML response.
199
+ // See also
200
+ // https://github.com/blueimp/jQuery-File-Upload/wiki/Setup#content-type-negotiation
201
+ $.ajaxSetup({
202
+ converters: {
203
+ 'iframe text': function (iframe) {
204
+ return iframe && $(iframe[0].body).text();
205
+ },
206
+ 'iframe json': function (iframe) {
207
+ return iframe && jsonAPI[jsonParse]($(iframe[0].body).text());
208
+ },
209
+ 'iframe html': function (iframe) {
210
+ return iframe && $(iframe[0].body).html();
211
+ },
212
+ 'iframe xml': function (iframe) {
213
+ var xmlDoc = iframe && iframe[0];
214
+ return xmlDoc && $.isXMLDoc(xmlDoc) ? xmlDoc :
215
+ $.parseXML((xmlDoc.XMLDocument && xmlDoc.XMLDocument.xml) ||
216
+ $(xmlDoc.body).html());
217
+ },
218
+ 'iframe script': function (iframe) {
219
+ return iframe && $.globalEval($(iframe[0].body).text());
220
+ }
221
+ }
222
+ });
223
+
224
+ }));
@@ -0,0 +1,572 @@
1
+ /*! jQuery UI - v1.11.4+CommonJS - 2015-08-28
2
+ * http://jqueryui.com
3
+ * Includes: widget.js
4
+ * Copyright 2015 jQuery Foundation and other contributors; Licensed MIT */
5
+
6
+ (function( factory ) {
7
+ if ( typeof define === "function" && define.amd ) {
8
+
9
+ // AMD. Register as an anonymous module.
10
+ define([ "jquery" ], factory );
11
+
12
+ } else if ( typeof exports === "object" ) {
13
+
14
+ // Node/CommonJS
15
+ factory( require( "jquery" ) );
16
+
17
+ } else {
18
+
19
+ // Browser globals
20
+ factory( jQuery );
21
+ }
22
+ }(function( $ ) {
23
+ /*!
24
+ * jQuery UI Widget 1.11.4
25
+ * http://jqueryui.com
26
+ *
27
+ * Copyright jQuery Foundation and other contributors
28
+ * Released under the MIT license.
29
+ * http://jquery.org/license
30
+ *
31
+ * http://api.jqueryui.com/jQuery.widget/
32
+ */
33
+
34
+
35
+ var widget_uuid = 0,
36
+ widget_slice = Array.prototype.slice;
37
+
38
+ $.cleanData = (function( orig ) {
39
+ return function( elems ) {
40
+ var events, elem, i;
41
+ for ( i = 0; (elem = elems[i]) != null; i++ ) {
42
+ try {
43
+
44
+ // Only trigger remove when necessary to save time
45
+ events = $._data( elem, "events" );
46
+ if ( events && events.remove ) {
47
+ $( elem ).triggerHandler( "remove" );
48
+ }
49
+
50
+ // http://bugs.jquery.com/ticket/8235
51
+ } catch ( e ) {}
52
+ }
53
+ orig( elems );
54
+ };
55
+ })( $.cleanData );
56
+
57
+ $.widget = function( name, base, prototype ) {
58
+ var fullName, existingConstructor, constructor, basePrototype,
59
+ // proxiedPrototype allows the provided prototype to remain unmodified
60
+ // so that it can be used as a mixin for multiple widgets (#8876)
61
+ proxiedPrototype = {},
62
+ namespace = name.split( "." )[ 0 ];
63
+
64
+ name = name.split( "." )[ 1 ];
65
+ fullName = namespace + "-" + name;
66
+
67
+ if ( !prototype ) {
68
+ prototype = base;
69
+ base = $.Widget;
70
+ }
71
+
72
+ // create selector for plugin
73
+ $.expr[ ":" ][ fullName.toLowerCase() ] = function( elem ) {
74
+ return !!$.data( elem, fullName );
75
+ };
76
+
77
+ $[ namespace ] = $[ namespace ] || {};
78
+ existingConstructor = $[ namespace ][ name ];
79
+ constructor = $[ namespace ][ name ] = function( options, element ) {
80
+ // allow instantiation without "new" keyword
81
+ if ( !this._createWidget ) {
82
+ return new constructor( options, element );
83
+ }
84
+
85
+ // allow instantiation without initializing for simple inheritance
86
+ // must use "new" keyword (the code above always passes args)
87
+ if ( arguments.length ) {
88
+ this._createWidget( options, element );
89
+ }
90
+ };
91
+ // extend with the existing constructor to carry over any static properties
92
+ $.extend( constructor, existingConstructor, {
93
+ version: prototype.version,
94
+ // copy the object used to create the prototype in case we need to
95
+ // redefine the widget later
96
+ _proto: $.extend( {}, prototype ),
97
+ // track widgets that inherit from this widget in case this widget is
98
+ // redefined after a widget inherits from it
99
+ _childConstructors: []
100
+ });
101
+
102
+ basePrototype = new base();
103
+ // we need to make the options hash a property directly on the new instance
104
+ // otherwise we'll modify the options hash on the prototype that we're
105
+ // inheriting from
106
+ basePrototype.options = $.widget.extend( {}, basePrototype.options );
107
+ $.each( prototype, function( prop, value ) {
108
+ if ( !$.isFunction( value ) ) {
109
+ proxiedPrototype[ prop ] = value;
110
+ return;
111
+ }
112
+ proxiedPrototype[ prop ] = (function() {
113
+ var _super = function() {
114
+ return base.prototype[ prop ].apply( this, arguments );
115
+ },
116
+ _superApply = function( args ) {
117
+ return base.prototype[ prop ].apply( this, args );
118
+ };
119
+ return function() {
120
+ var __super = this._super,
121
+ __superApply = this._superApply,
122
+ returnValue;
123
+
124
+ this._super = _super;
125
+ this._superApply = _superApply;
126
+
127
+ returnValue = value.apply( this, arguments );
128
+
129
+ this._super = __super;
130
+ this._superApply = __superApply;
131
+
132
+ return returnValue;
133
+ };
134
+ })();
135
+ });
136
+ constructor.prototype = $.widget.extend( basePrototype, {
137
+ // TODO: remove support for widgetEventPrefix
138
+ // always use the name + a colon as the prefix, e.g., draggable:start
139
+ // don't prefix for widgets that aren't DOM-based
140
+ widgetEventPrefix: existingConstructor ? (basePrototype.widgetEventPrefix || name) : name
141
+ }, proxiedPrototype, {
142
+ constructor: constructor,
143
+ namespace: namespace,
144
+ widgetName: name,
145
+ widgetFullName: fullName
146
+ });
147
+
148
+ // If this widget is being redefined then we need to find all widgets that
149
+ // are inheriting from it and redefine all of them so that they inherit from
150
+ // the new version of this widget. We're essentially trying to replace one
151
+ // level in the prototype chain.
152
+ if ( existingConstructor ) {
153
+ $.each( existingConstructor._childConstructors, function( i, child ) {
154
+ var childPrototype = child.prototype;
155
+
156
+ // redefine the child widget using the same prototype that was
157
+ // originally used, but inherit from the new version of the base
158
+ $.widget( childPrototype.namespace + "." + childPrototype.widgetName, constructor, child._proto );
159
+ });
160
+ // remove the list of existing child constructors from the old constructor
161
+ // so the old child constructors can be garbage collected
162
+ delete existingConstructor._childConstructors;
163
+ } else {
164
+ base._childConstructors.push( constructor );
165
+ }
166
+
167
+ $.widget.bridge( name, constructor );
168
+
169
+ return constructor;
170
+ };
171
+
172
+ $.widget.extend = function( target ) {
173
+ var input = widget_slice.call( arguments, 1 ),
174
+ inputIndex = 0,
175
+ inputLength = input.length,
176
+ key,
177
+ value;
178
+ for ( ; inputIndex < inputLength; inputIndex++ ) {
179
+ for ( key in input[ inputIndex ] ) {
180
+ value = input[ inputIndex ][ key ];
181
+ if ( input[ inputIndex ].hasOwnProperty( key ) && value !== undefined ) {
182
+ // Clone objects
183
+ if ( $.isPlainObject( value ) ) {
184
+ target[ key ] = $.isPlainObject( target[ key ] ) ?
185
+ $.widget.extend( {}, target[ key ], value ) :
186
+ // Don't extend strings, arrays, etc. with objects
187
+ $.widget.extend( {}, value );
188
+ // Copy everything else by reference
189
+ } else {
190
+ target[ key ] = value;
191
+ }
192
+ }
193
+ }
194
+ }
195
+ return target;
196
+ };
197
+
198
+ $.widget.bridge = function( name, object ) {
199
+ var fullName = object.prototype.widgetFullName || name;
200
+ $.fn[ name ] = function( options ) {
201
+ var isMethodCall = typeof options === "string",
202
+ args = widget_slice.call( arguments, 1 ),
203
+ returnValue = this;
204
+
205
+ if ( isMethodCall ) {
206
+ this.each(function() {
207
+ var methodValue,
208
+ instance = $.data( this, fullName );
209
+ if ( options === "instance" ) {
210
+ returnValue = instance;
211
+ return false;
212
+ }
213
+ if ( !instance ) {
214
+ return $.error( "cannot call methods on " + name + " prior to initialization; " +
215
+ "attempted to call method '" + options + "'" );
216
+ }
217
+ if ( !$.isFunction( instance[options] ) || options.charAt( 0 ) === "_" ) {
218
+ return $.error( "no such method '" + options + "' for " + name + " widget instance" );
219
+ }
220
+ methodValue = instance[ options ].apply( instance, args );
221
+ if ( methodValue !== instance && methodValue !== undefined ) {
222
+ returnValue = methodValue && methodValue.jquery ?
223
+ returnValue.pushStack( methodValue.get() ) :
224
+ methodValue;
225
+ return false;
226
+ }
227
+ });
228
+ } else {
229
+
230
+ // Allow multiple hashes to be passed on init
231
+ if ( args.length ) {
232
+ options = $.widget.extend.apply( null, [ options ].concat(args) );
233
+ }
234
+
235
+ this.each(function() {
236
+ var instance = $.data( this, fullName );
237
+ if ( instance ) {
238
+ instance.option( options || {} );
239
+ if ( instance._init ) {
240
+ instance._init();
241
+ }
242
+ } else {
243
+ $.data( this, fullName, new object( options, this ) );
244
+ }
245
+ });
246
+ }
247
+
248
+ return returnValue;
249
+ };
250
+ };
251
+
252
+ $.Widget = function( /* options, element */ ) {};
253
+ $.Widget._childConstructors = [];
254
+
255
+ $.Widget.prototype = {
256
+ widgetName: "widget",
257
+ widgetEventPrefix: "",
258
+ defaultElement: "<div>",
259
+ options: {
260
+ disabled: false,
261
+
262
+ // callbacks
263
+ create: null
264
+ },
265
+ _createWidget: function( options, element ) {
266
+ element = $( element || this.defaultElement || this )[ 0 ];
267
+ this.element = $( element );
268
+ this.uuid = widget_uuid++;
269
+ this.eventNamespace = "." + this.widgetName + this.uuid;
270
+
271
+ this.bindings = $();
272
+ this.hoverable = $();
273
+ this.focusable = $();
274
+
275
+ if ( element !== this ) {
276
+ $.data( element, this.widgetFullName, this );
277
+ this._on( true, this.element, {
278
+ remove: function( event ) {
279
+ if ( event.target === element ) {
280
+ this.destroy();
281
+ }
282
+ }
283
+ });
284
+ this.document = $( element.style ?
285
+ // element within the document
286
+ element.ownerDocument :
287
+ // element is window or document
288
+ element.document || element );
289
+ this.window = $( this.document[0].defaultView || this.document[0].parentWindow );
290
+ }
291
+
292
+ this.options = $.widget.extend( {},
293
+ this.options,
294
+ this._getCreateOptions(),
295
+ options );
296
+
297
+ this._create();
298
+ this._trigger( "create", null, this._getCreateEventData() );
299
+ this._init();
300
+ },
301
+ _getCreateOptions: $.noop,
302
+ _getCreateEventData: $.noop,
303
+ _create: $.noop,
304
+ _init: $.noop,
305
+
306
+ destroy: function() {
307
+ this._destroy();
308
+ // we can probably remove the unbind calls in 2.0
309
+ // all event bindings should go through this._on()
310
+ this.element
311
+ .unbind( this.eventNamespace )
312
+ .removeData( this.widgetFullName )
313
+ // support: jquery <1.6.3
314
+ // http://bugs.jquery.com/ticket/9413
315
+ .removeData( $.camelCase( this.widgetFullName ) );
316
+ this.widget()
317
+ .unbind( this.eventNamespace )
318
+ .removeAttr( "aria-disabled" )
319
+ .removeClass(
320
+ this.widgetFullName + "-disabled " +
321
+ "ui-state-disabled" );
322
+
323
+ // clean up events and states
324
+ this.bindings.unbind( this.eventNamespace );
325
+ this.hoverable.removeClass( "ui-state-hover" );
326
+ this.focusable.removeClass( "ui-state-focus" );
327
+ },
328
+ _destroy: $.noop,
329
+
330
+ widget: function() {
331
+ return this.element;
332
+ },
333
+
334
+ option: function( key, value ) {
335
+ var options = key,
336
+ parts,
337
+ curOption,
338
+ i;
339
+
340
+ if ( arguments.length === 0 ) {
341
+ // don't return a reference to the internal hash
342
+ return $.widget.extend( {}, this.options );
343
+ }
344
+
345
+ if ( typeof key === "string" ) {
346
+ // handle nested keys, e.g., "foo.bar" => { foo: { bar: ___ } }
347
+ options = {};
348
+ parts = key.split( "." );
349
+ key = parts.shift();
350
+ if ( parts.length ) {
351
+ curOption = options[ key ] = $.widget.extend( {}, this.options[ key ] );
352
+ for ( i = 0; i < parts.length - 1; i++ ) {
353
+ curOption[ parts[ i ] ] = curOption[ parts[ i ] ] || {};
354
+ curOption = curOption[ parts[ i ] ];
355
+ }
356
+ key = parts.pop();
357
+ if ( arguments.length === 1 ) {
358
+ return curOption[ key ] === undefined ? null : curOption[ key ];
359
+ }
360
+ curOption[ key ] = value;
361
+ } else {
362
+ if ( arguments.length === 1 ) {
363
+ return this.options[ key ] === undefined ? null : this.options[ key ];
364
+ }
365
+ options[ key ] = value;
366
+ }
367
+ }
368
+
369
+ this._setOptions( options );
370
+
371
+ return this;
372
+ },
373
+ _setOptions: function( options ) {
374
+ var key;
375
+
376
+ for ( key in options ) {
377
+ this._setOption( key, options[ key ] );
378
+ }
379
+
380
+ return this;
381
+ },
382
+ _setOption: function( key, value ) {
383
+ this.options[ key ] = value;
384
+
385
+ if ( key === "disabled" ) {
386
+ this.widget()
387
+ .toggleClass( this.widgetFullName + "-disabled", !!value );
388
+
389
+ // If the widget is becoming disabled, then nothing is interactive
390
+ if ( value ) {
391
+ this.hoverable.removeClass( "ui-state-hover" );
392
+ this.focusable.removeClass( "ui-state-focus" );
393
+ }
394
+ }
395
+
396
+ return this;
397
+ },
398
+
399
+ enable: function() {
400
+ return this._setOptions({ disabled: false });
401
+ },
402
+ disable: function() {
403
+ return this._setOptions({ disabled: true });
404
+ },
405
+
406
+ _on: function( suppressDisabledCheck, element, handlers ) {
407
+ var delegateElement,
408
+ instance = this;
409
+
410
+ // no suppressDisabledCheck flag, shuffle arguments
411
+ if ( typeof suppressDisabledCheck !== "boolean" ) {
412
+ handlers = element;
413
+ element = suppressDisabledCheck;
414
+ suppressDisabledCheck = false;
415
+ }
416
+
417
+ // no element argument, shuffle and use this.element
418
+ if ( !handlers ) {
419
+ handlers = element;
420
+ element = this.element;
421
+ delegateElement = this.widget();
422
+ } else {
423
+ element = delegateElement = $( element );
424
+ this.bindings = this.bindings.add( element );
425
+ }
426
+
427
+ $.each( handlers, function( event, handler ) {
428
+ function handlerProxy() {
429
+ // allow widgets to customize the disabled handling
430
+ // - disabled as an array instead of boolean
431
+ // - disabled class as method for disabling individual parts
432
+ if ( !suppressDisabledCheck &&
433
+ ( instance.options.disabled === true ||
434
+ $( this ).hasClass( "ui-state-disabled" ) ) ) {
435
+ return;
436
+ }
437
+ return ( typeof handler === "string" ? instance[ handler ] : handler )
438
+ .apply( instance, arguments );
439
+ }
440
+
441
+ // copy the guid so direct unbinding works
442
+ if ( typeof handler !== "string" ) {
443
+ handlerProxy.guid = handler.guid =
444
+ handler.guid || handlerProxy.guid || $.guid++;
445
+ }
446
+
447
+ var match = event.match( /^([\w:-]*)\s*(.*)$/ ),
448
+ eventName = match[1] + instance.eventNamespace,
449
+ selector = match[2];
450
+ if ( selector ) {
451
+ delegateElement.delegate( selector, eventName, handlerProxy );
452
+ } else {
453
+ element.bind( eventName, handlerProxy );
454
+ }
455
+ });
456
+ },
457
+
458
+ _off: function( element, eventName ) {
459
+ eventName = (eventName || "").split( " " ).join( this.eventNamespace + " " ) +
460
+ this.eventNamespace;
461
+ element.unbind( eventName ).undelegate( eventName );
462
+
463
+ // Clear the stack to avoid memory leaks (#10056)
464
+ this.bindings = $( this.bindings.not( element ).get() );
465
+ this.focusable = $( this.focusable.not( element ).get() );
466
+ this.hoverable = $( this.hoverable.not( element ).get() );
467
+ },
468
+
469
+ _delay: function( handler, delay ) {
470
+ function handlerProxy() {
471
+ return ( typeof handler === "string" ? instance[ handler ] : handler )
472
+ .apply( instance, arguments );
473
+ }
474
+ var instance = this;
475
+ return setTimeout( handlerProxy, delay || 0 );
476
+ },
477
+
478
+ _hoverable: function( element ) {
479
+ this.hoverable = this.hoverable.add( element );
480
+ this._on( element, {
481
+ mouseenter: function( event ) {
482
+ $( event.currentTarget ).addClass( "ui-state-hover" );
483
+ },
484
+ mouseleave: function( event ) {
485
+ $( event.currentTarget ).removeClass( "ui-state-hover" );
486
+ }
487
+ });
488
+ },
489
+
490
+ _focusable: function( element ) {
491
+ this.focusable = this.focusable.add( element );
492
+ this._on( element, {
493
+ focusin: function( event ) {
494
+ $( event.currentTarget ).addClass( "ui-state-focus" );
495
+ },
496
+ focusout: function( event ) {
497
+ $( event.currentTarget ).removeClass( "ui-state-focus" );
498
+ }
499
+ });
500
+ },
501
+
502
+ _trigger: function( type, event, data ) {
503
+ var prop, orig,
504
+ callback = this.options[ type ];
505
+
506
+ data = data || {};
507
+ event = $.Event( event );
508
+ event.type = ( type === this.widgetEventPrefix ?
509
+ type :
510
+ this.widgetEventPrefix + type ).toLowerCase();
511
+ // the original event may come from any element
512
+ // so we need to reset the target on the new event
513
+ event.target = this.element[ 0 ];
514
+
515
+ // copy original event properties over to the new event
516
+ orig = event.originalEvent;
517
+ if ( orig ) {
518
+ for ( prop in orig ) {
519
+ if ( !( prop in event ) ) {
520
+ event[ prop ] = orig[ prop ];
521
+ }
522
+ }
523
+ }
524
+
525
+ this.element.trigger( event, data );
526
+ return !( $.isFunction( callback ) &&
527
+ callback.apply( this.element[0], [ event ].concat( data ) ) === false ||
528
+ event.isDefaultPrevented() );
529
+ }
530
+ };
531
+
532
+ $.each( { show: "fadeIn", hide: "fadeOut" }, function( method, defaultEffect ) {
533
+ $.Widget.prototype[ "_" + method ] = function( element, options, callback ) {
534
+ if ( typeof options === "string" ) {
535
+ options = { effect: options };
536
+ }
537
+ var hasOptions,
538
+ effectName = !options ?
539
+ method :
540
+ options === true || typeof options === "number" ?
541
+ defaultEffect :
542
+ options.effect || defaultEffect;
543
+ options = options || {};
544
+ if ( typeof options === "number" ) {
545
+ options = { duration: options };
546
+ }
547
+ hasOptions = !$.isEmptyObject( options );
548
+ options.complete = callback;
549
+ if ( options.delay ) {
550
+ element.delay( options.delay );
551
+ }
552
+ if ( hasOptions && $.effects && $.effects.effect[ effectName ] ) {
553
+ element[ method ]( options );
554
+ } else if ( effectName !== method && element[ effectName ] ) {
555
+ element[ effectName ]( options.duration, options.easing, callback );
556
+ } else {
557
+ element.queue(function( next ) {
558
+ $( this )[ method ]();
559
+ if ( callback ) {
560
+ callback.call( element[ 0 ] );
561
+ }
562
+ next();
563
+ });
564
+ }
565
+ };
566
+ });
567
+
568
+ var widget = $.widget;
569
+
570
+
571
+
572
+ }));