trusty-festivity-extension 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +33 -0
- data/README.md +2 -0
- data/Rakefile +110 -0
- data/app/assets/fonts/bootstrap/glyphicons-halflings-regular.eot +0 -0
- data/app/assets/fonts/bootstrap/glyphicons-halflings-regular.svg +288 -0
- data/app/assets/fonts/bootstrap/glyphicons-halflings-regular.ttf +0 -0
- data/app/assets/fonts/bootstrap/glyphicons-halflings-regular.woff +0 -0
- data/app/assets/fonts/bootstrap/glyphicons-halflings-regular.woff2 +0 -0
- data/app/assets/images/pct-black.png +0 -0
- data/app/assets/images/skins/pghkids/footer.png +0 -0
- data/app/assets/images/skins/pghkids/footer_mobile.png +0 -0
- data/app/assets/images/skins/pghkids/frog.png +0 -0
- data/app/assets/images/skins/pghkids/frog_mobile.png +0 -0
- data/app/assets/images/skins/pghkids/header.png +0 -0
- data/app/assets/images/skins/pghkids/header_mobile.png +0 -0
- data/app/assets/images/skins/pghkids/seafoam.jpg +0 -0
- data/app/assets/javascripts/admin/festivity_admin.js +22 -0
- data/app/assets/javascripts/admin/pages/ajax_image_uploader.js +29 -0
- data/app/assets/javascripts/admin/pages/page_bindings.js +94 -0
- data/app/assets/javascripts/admin/pages/performances.js +59 -0
- data/app/assets/javascripts/admin/sites/categories.js +74 -0
- data/app/assets/javascripts/admin/sites/category_types.js +63 -0
- data/app/assets/javascripts/admin/sites/site_bindings.js +4 -0
- data/app/assets/javascripts/ajaxupload.js +1 -0
- data/app/assets/javascripts/bootstrap-sprockets.js +12 -0
- data/app/assets/javascripts/bootstrap.js +2306 -0
- data/app/assets/javascripts/bootstrap.min.js +7 -0
- data/app/assets/javascripts/bootstrap/affix.js +162 -0
- data/app/assets/javascripts/bootstrap/alert.js +94 -0
- data/app/assets/javascripts/bootstrap/button.js +116 -0
- data/app/assets/javascripts/bootstrap/carousel.js +237 -0
- data/app/assets/javascripts/bootstrap/collapse.js +211 -0
- data/app/assets/javascripts/bootstrap/dropdown.js +161 -0
- data/app/assets/javascripts/bootstrap/modal.js +324 -0
- data/app/assets/javascripts/bootstrap/popover.js +113 -0
- data/app/assets/javascripts/bootstrap/scrollspy.js +175 -0
- data/app/assets/javascripts/bootstrap/tab.js +153 -0
- data/app/assets/javascripts/bootstrap/tooltip.js +472 -0
- data/app/assets/javascripts/bootstrap/transition.js +59 -0
- data/app/assets/javascripts/events/event_list_bindings.js +3 -0
- data/app/assets/javascripts/events/filters.js +100 -0
- data/app/assets/javascripts/festivity.js +1 -0
- data/app/assets/javascripts/festivity_app.js +13 -0
- data/app/assets/javascripts/jasny-bootstrap.js +1024 -0
- data/app/assets/javascripts/jquery-migrate.js +521 -0
- data/app/assets/javascripts/jquery.collapse.js +176 -0
- data/app/assets/javascripts/jquery.collapse_cookie_storage.js +37 -0
- data/app/assets/javascripts/jquery.collapse_storage.js +56 -0
- data/app/assets/javascripts/jquery.inputmask.bundle.min.js +10 -0
- data/app/assets/javascripts/lodash.min.js +88 -0
- data/app/assets/javascripts/readmore.min.js +11 -0
- data/app/assets/javascripts/script.js +22 -0
- data/app/assets/javascripts/underscore.js +1545 -0
- data/app/assets/stylesheets/_bootstrap-compass.scss +9 -0
- data/app/assets/stylesheets/_bootstrap-mincer.scss +19 -0
- data/app/assets/stylesheets/_bootstrap-sprockets.scss +9 -0
- data/app/assets/stylesheets/_bootstrap.scss +50 -0
- data/app/assets/stylesheets/_defaults.scss +6 -0
- data/app/assets/stylesheets/_event_filter_bar.scss +78 -0
- data/app/assets/stylesheets/_faq.scss +48 -0
- data/app/assets/stylesheets/_filter-bar-mobile.scss +32 -0
- data/app/assets/stylesheets/_footer.scss +18 -0
- data/app/assets/stylesheets/_global.scss +30 -0
- data/app/assets/stylesheets/_header.scss +95 -0
- data/app/assets/stylesheets/_landing_page.scss +62 -0
- data/app/assets/stylesheets/_locations.scss +17 -0
- data/app/assets/stylesheets/_media-queries.scss +9 -0
- data/app/assets/stylesheets/_mixins.scss +17 -0
- data/app/assets/stylesheets/_nav.scss +128 -0
- data/app/assets/stylesheets/_normalize.scss +375 -0
- data/app/assets/stylesheets/_overrides.scss +11 -0
- data/app/assets/stylesheets/_page-template.scss +124 -0
- data/app/assets/stylesheets/_related_events.scss +20 -0
- data/app/assets/stylesheets/_search-results.scss +20 -0
- data/app/assets/stylesheets/_utils.scss +8 -0
- data/app/assets/stylesheets/admin/festivity_admin.scss +28 -0
- data/app/assets/stylesheets/admin/modules/_category_styles.scss +23 -0
- data/app/assets/stylesheets/admin/modules/_form_styles.scss +40 -0
- data/app/assets/stylesheets/admin/modules/_list_styles.scss +30 -0
- data/app/assets/stylesheets/admin/modules/_variables.scss +3 -0
- data/app/assets/stylesheets/bootstrap/_alerts.scss +73 -0
- data/app/assets/stylesheets/bootstrap/_badges.scss +67 -0
- data/app/assets/stylesheets/bootstrap/_breadcrumbs.scss +26 -0
- data/app/assets/stylesheets/bootstrap/_button-groups.scss +243 -0
- data/app/assets/stylesheets/bootstrap/_buttons.scss +160 -0
- data/app/assets/stylesheets/bootstrap/_carousel.scss +269 -0
- data/app/assets/stylesheets/bootstrap/_close.scss +36 -0
- data/app/assets/stylesheets/bootstrap/_code.scss +69 -0
- data/app/assets/stylesheets/bootstrap/_component-animations.scss +38 -0
- data/app/assets/stylesheets/bootstrap/_dropdowns.scss +214 -0
- data/app/assets/stylesheets/bootstrap/_forms.scss +570 -0
- data/app/assets/stylesheets/bootstrap/_glyphicons.scss +301 -0
- data/app/assets/stylesheets/bootstrap/_grid.scss +84 -0
- data/app/assets/stylesheets/bootstrap/_input-groups.scss +166 -0
- data/app/assets/stylesheets/bootstrap/_jumbotron.scss +50 -0
- data/app/assets/stylesheets/bootstrap/_labels.scss +66 -0
- data/app/assets/stylesheets/bootstrap/_list-group.scss +124 -0
- data/app/assets/stylesheets/bootstrap/_media.scss +61 -0
- data/app/assets/stylesheets/bootstrap/_mixins.scss +39 -0
- data/app/assets/stylesheets/bootstrap/_modals.scss +148 -0
- data/app/assets/stylesheets/bootstrap/_navbar.scss +663 -0
- data/app/assets/stylesheets/bootstrap/_navs.scss +244 -0
- data/app/assets/stylesheets/bootstrap/_normalize.scss +427 -0
- data/app/assets/stylesheets/bootstrap/_pager.scss +54 -0
- data/app/assets/stylesheets/bootstrap/_pagination.scss +88 -0
- data/app/assets/stylesheets/bootstrap/_panels.scss +265 -0
- data/app/assets/stylesheets/bootstrap/_popovers.scss +135 -0
- data/app/assets/stylesheets/bootstrap/_print.scss +107 -0
- data/app/assets/stylesheets/bootstrap/_progress-bars.scss +87 -0
- data/app/assets/stylesheets/bootstrap/_responsive-embed.scss +35 -0
- data/app/assets/stylesheets/bootstrap/_responsive-utilities.scss +177 -0
- data/app/assets/stylesheets/bootstrap/_scaffolding.scss +150 -0
- data/app/assets/stylesheets/bootstrap/_tables.scss +234 -0
- data/app/assets/stylesheets/bootstrap/_theme.scss +273 -0
- data/app/assets/stylesheets/bootstrap/_thumbnails.scss +38 -0
- data/app/assets/stylesheets/bootstrap/_tooltip.scss +103 -0
- data/app/assets/stylesheets/bootstrap/_type.scss +298 -0
- data/app/assets/stylesheets/bootstrap/_utilities.scss +56 -0
- data/app/assets/stylesheets/bootstrap/_variables.scss +862 -0
- data/app/assets/stylesheets/bootstrap/_wells.scss +29 -0
- data/app/assets/stylesheets/bootstrap/mixins/_alerts.scss +14 -0
- data/app/assets/stylesheets/bootstrap/mixins/_background-variant.scss +11 -0
- data/app/assets/stylesheets/bootstrap/mixins/_border-radius.scss +18 -0
- data/app/assets/stylesheets/bootstrap/mixins/_buttons.scss +52 -0
- data/app/assets/stylesheets/bootstrap/mixins/_center-block.scss +7 -0
- data/app/assets/stylesheets/bootstrap/mixins/_clearfix.scss +22 -0
- data/app/assets/stylesheets/bootstrap/mixins/_forms.scss +88 -0
- data/app/assets/stylesheets/bootstrap/mixins/_gradients.scss +58 -0
- data/app/assets/stylesheets/bootstrap/mixins/_grid-framework.scss +81 -0
- data/app/assets/stylesheets/bootstrap/mixins/_grid.scss +122 -0
- data/app/assets/stylesheets/bootstrap/mixins/_hide-text.scss +21 -0
- data/app/assets/stylesheets/bootstrap/mixins/_image.scss +33 -0
- data/app/assets/stylesheets/bootstrap/mixins/_labels.scss +12 -0
- data/app/assets/stylesheets/bootstrap/mixins/_list-group.scss +31 -0
- data/app/assets/stylesheets/bootstrap/mixins/_nav-divider.scss +10 -0
- data/app/assets/stylesheets/bootstrap/mixins/_nav-vertical-align.scss +9 -0
- data/app/assets/stylesheets/bootstrap/mixins/_opacity.scss +8 -0
- data/app/assets/stylesheets/bootstrap/mixins/_pagination.scss +23 -0
- data/app/assets/stylesheets/bootstrap/mixins/_panels.scss +24 -0
- data/app/assets/stylesheets/bootstrap/mixins/_progress-bar.scss +10 -0
- data/app/assets/stylesheets/bootstrap/mixins/_reset-filter.scss +8 -0
- data/app/assets/stylesheets/bootstrap/mixins/_resize.scss +6 -0
- data/app/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss +21 -0
- data/app/assets/stylesheets/bootstrap/mixins/_size.scss +10 -0
- data/app/assets/stylesheets/bootstrap/mixins/_tab-focus.scss +9 -0
- data/app/assets/stylesheets/bootstrap/mixins/_table-row.scss +28 -0
- data/app/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss +11 -0
- data/app/assets/stylesheets/bootstrap/mixins/_text-overflow.scss +8 -0
- data/app/assets/stylesheets/bootstrap/mixins/_vendor-prefixes.scss +222 -0
- data/app/assets/stylesheets/events/_event-list-item.scss +85 -0
- data/app/assets/stylesheets/events/_event_template.scss +66 -0
- data/app/assets/stylesheets/events/_filter-bar.scss +5 -0
- data/app/assets/stylesheets/festivity.scss +35 -0
- data/app/assets/stylesheets/skins/pghkids/_events.scss +17 -0
- data/app/assets/stylesheets/skins/pghkids/_footer.scss +22 -0
- data/app/assets/stylesheets/skins/pghkids/_global.scss +42 -0
- data/app/assets/stylesheets/skins/pghkids/_header.scss +27 -0
- data/app/assets/stylesheets/skins/pghkids/_home.scss +113 -0
- data/app/assets/stylesheets/skins/pghkids/skin.scss +8 -0
- data/app/assets/stylesheets/vars/_vars_color.scss +6 -0
- data/app/assets/stylesheets/vars/_vars_media-queries.scss +5 -0
- data/app/assets/stylesheets/vars/_vars_type.scss +1 -0
- data/app/controllers/admin/festivity_categories_controller.rb +31 -0
- data/app/controllers/admin/festivity_category_types_controller.rb +31 -0
- data/app/controllers/admin/festivity_performances_controller.rb +21 -0
- data/app/controllers/festivity_events_controller.rb +71 -0
- data/app/controllers/festivity_location_areas_controller.rb +17 -0
- data/app/controllers/festivity_locations_controller.rb +19 -0
- data/app/controllers/search_controller.rb +17 -0
- data/app/helpers/admin/festivity_performances_helper.rb +3 -0
- data/app/helpers/admin/snippets_helper.rb +3 -0
- data/app/helpers/festivity_events_helper.rb +12 -0
- data/app/helpers/festivity_locations_helper.rb +4 -0
- data/app/models/festivity_base_page.rb +23 -0
- data/app/models/festivity_category.rb +17 -0
- data/app/models/festivity_category_type.rb +14 -0
- data/app/models/festivity_event_list.rb +90 -0
- data/app/models/festivity_event_list/festivity_event.rb +40 -0
- data/app/models/festivity_event_list/festivity_event_performance.rb +10 -0
- data/app/models/festivity_event_list/festivity_location.rb +15 -0
- data/app/models/festivity_event_page.rb +55 -0
- data/app/models/festivity_location_area_page.rb +5 -0
- data/app/models/festivity_location_page.rb +3 -0
- data/app/models/festivity_market_page.rb +3 -0
- data/app/models/festivity_page_category.rb +4 -0
- data/app/models/festivity_performance.rb +29 -0
- data/app/views/admin/pages/_festivity_base_fields.html.haml +75 -0
- data/app/views/admin/pages/_festivity_featured_image_fields.html.haml +3 -0
- data/app/views/admin/pages/_festivity_includes.html.haml +2 -0
- data/app/views/admin/pages/_festivity_location_fields.html.haml +26 -0
- data/app/views/admin/pages/partials/_categories.html.haml +18 -0
- data/app/views/admin/pages/partials/_category.html.haml +4 -0
- data/app/views/admin/pages/partials/_featured_image.html.haml +18 -0
- data/app/views/admin/pages/partials/_performance.html.haml +13 -0
- data/app/views/admin/pages/partials/_performances.html.haml +11 -0
- data/app/views/admin/pages/partials/_performances_table.html.haml +15 -0
- data/app/views/admin/sites/_festivity_site_fields.html.haml +26 -0
- data/app/views/admin/sites/partials/_category.html.haml +7 -0
- data/app/views/admin/sites/partials/_category_popup.html.haml +19 -0
- data/app/views/admin/sites/partials/_category_popups.haml +27 -0
- data/app/views/admin/sites/partials/_category_section.html.haml +7 -0
- data/app/views/admin/sites/partials/_category_types.html.haml +23 -0
- data/app/views/admin/sites/partials/_filters.html.haml +25 -0
- data/app/views/admin/sites/partials/_new_category.html.haml +3 -0
- data/app/views/admin/sites/partials/_new_category_type.html.haml +3 -0
- data/app/views/festivity_events/_event_filters.html.haml +39 -0
- data/app/views/festivity_events/_event_list.html.haml +62 -0
- data/app/views/festivity_events/_filter_bar_mobile.html.haml +22 -0
- data/app/views/festivity_events/index.html.haml +34 -0
- data/app/views/festivity_events/show.html.haml +152 -0
- data/app/views/festivity_location_areas/show.html.haml +29 -0
- data/app/views/festivity_locations/show.html.haml +66 -0
- data/app/views/header/_meta_tags.html.haml +8 -0
- data/app/views/navigation/_subnav_one_column.html.haml +15 -0
- data/app/views/navigation/_subnav_three_column.html.haml +7 -0
- data/app/views/navigation/_three_column_item.html.haml +11 -0
- data/app/views/search/_page.html.haml +1 -0
- data/app/views/search/_pagination_links.html.haml +7 -0
- data/app/views/search/_result_item.html.haml +6 -0
- data/app/views/search/show.html.haml +19 -0
- data/config/initializers/pluralizations.rb +0 -0
- data/config/initializers/radiant_config.rb +1 -0
- data/config/locales/en.yml +16 -0
- data/config/routes.rb +14 -0
- data/config/trustygems.yml +2 -0
- data/db/content/layouts/base.html +174 -0
- data/db/content/layouts/normal.html +5 -0
- data/db/fixtures/home_pages.yml +40 -0
- data/db/fixtures/layouts.yml +2 -0
- data/db/fixtures/pages.yml +23 -0
- data/db/fixtures/sites.yml +57 -0
- data/db/fixtures/users.yml +8 -0
- data/db/migrate/200150325136087799_add_event_performances_view.rb +27 -0
- data/db/migrate/200150425136087799_update_event_performances_view_with_site.rb +27 -0
- data/db/migrate/20150123175758_add_site_fields.rb +15 -0
- data/db/migrate/20150127090858995_add_base_event_fields.rb +24 -0
- data/db/migrate/20150127091005232_add_market_and_event_fields.rb +29 -0
- data/db/migrate/20150204113325731_add_category_types_table.rb +15 -0
- data/db/migrate/20150204113427832_add_categories_table.rb +15 -0
- data/db/migrate/20150204113510326_add_page_categories_table.rb +12 -0
- data/db/migrate/20150226131727777_add_location_page_fields.rb +19 -0
- data/db/migrate/20150302135485569_add_performances_table.rb +19 -0
- data/db/migrate/20150324135487799_add_indexes.rb +21 -0
- data/festivity_extension.rb +25 -0
- data/lib/festivity/admin/assets_helper.rb +17 -0
- data/lib/festivity/engine.rb +9 -0
- data/lib/festivity/extensions/page_extensions.rb +61 -0
- data/lib/festivity/extensions/pages_helper_extensions.rb +11 -0
- data/lib/festivity/extensions/paperclipped_extensions.rb +22 -0
- data/lib/festivity/extensions/site_extensions.rb +40 -0
- data/lib/festivity/mixins/not_found.rb +10 -0
- data/lib/tags/header_tags.rb +41 -0
- data/lib/tags/navigation_tags.rb +55 -0
- data/lib/tasks/active_record_utils.rb +35 -0
- data/lib/tasks/festivity_extension_tasks.rake +7 -0
- data/lib/tasks/setup.rake +101 -0
- data/lib/trusty-festivity-extension.rb +8 -0
- data/trusty-festivity-extension.gemspec +37 -0
- metadata +442 -0
@@ -0,0 +1,521 @@
|
|
1
|
+
/*!
|
2
|
+
* jQuery Migrate - v1.2.1 - 2013-05-08
|
3
|
+
* https://github.com/jquery/jquery-migrate
|
4
|
+
* Copyright 2005, 2013 jQuery Foundation, Inc. and other contributors; Licensed MIT
|
5
|
+
*/
|
6
|
+
(function( jQuery, window, undefined ) {
|
7
|
+
// See http://bugs.jquery.com/ticket/13335
|
8
|
+
// "use strict";
|
9
|
+
|
10
|
+
|
11
|
+
var warnedAbout = {};
|
12
|
+
|
13
|
+
// List of warnings already given; public read only
|
14
|
+
jQuery.migrateWarnings = [];
|
15
|
+
|
16
|
+
// Set to true to prevent console output; migrateWarnings still maintained
|
17
|
+
// jQuery.migrateMute = false;
|
18
|
+
|
19
|
+
// Show a message on the console so devs know we're active
|
20
|
+
if ( !jQuery.migrateMute && window.console && window.console.log ) {
|
21
|
+
window.console.log("JQMIGRATE: Logging is active");
|
22
|
+
}
|
23
|
+
|
24
|
+
// Set to false to disable traces that appear with warnings
|
25
|
+
if ( jQuery.migrateTrace === undefined ) {
|
26
|
+
jQuery.migrateTrace = true;
|
27
|
+
}
|
28
|
+
|
29
|
+
// Forget any warnings we've already given; public
|
30
|
+
jQuery.migrateReset = function() {
|
31
|
+
warnedAbout = {};
|
32
|
+
jQuery.migrateWarnings.length = 0;
|
33
|
+
};
|
34
|
+
|
35
|
+
function migrateWarn( msg) {
|
36
|
+
var console = window.console;
|
37
|
+
if ( !warnedAbout[ msg ] ) {
|
38
|
+
warnedAbout[ msg ] = true;
|
39
|
+
jQuery.migrateWarnings.push( msg );
|
40
|
+
if ( console && console.warn && !jQuery.migrateMute ) {
|
41
|
+
console.warn( "JQMIGRATE: " + msg );
|
42
|
+
if ( jQuery.migrateTrace && console.trace ) {
|
43
|
+
console.trace();
|
44
|
+
}
|
45
|
+
}
|
46
|
+
}
|
47
|
+
}
|
48
|
+
|
49
|
+
function migrateWarnProp( obj, prop, value, msg ) {
|
50
|
+
if ( Object.defineProperty ) {
|
51
|
+
// On ES5 browsers (non-oldIE), warn if the code tries to get prop;
|
52
|
+
// allow property to be overwritten in case some other plugin wants it
|
53
|
+
try {
|
54
|
+
Object.defineProperty( obj, prop, {
|
55
|
+
configurable: true,
|
56
|
+
enumerable: true,
|
57
|
+
get: function() {
|
58
|
+
migrateWarn( msg );
|
59
|
+
return value;
|
60
|
+
},
|
61
|
+
set: function( newValue ) {
|
62
|
+
migrateWarn( msg );
|
63
|
+
value = newValue;
|
64
|
+
}
|
65
|
+
});
|
66
|
+
return;
|
67
|
+
} catch( err ) {
|
68
|
+
// IE8 is a dope about Object.defineProperty, can't warn there
|
69
|
+
}
|
70
|
+
}
|
71
|
+
|
72
|
+
// Non-ES5 (or broken) browser; just set the property
|
73
|
+
jQuery._definePropertyBroken = true;
|
74
|
+
obj[ prop ] = value;
|
75
|
+
}
|
76
|
+
|
77
|
+
if ( document.compatMode === "BackCompat" ) {
|
78
|
+
// jQuery has never supported or tested Quirks Mode
|
79
|
+
migrateWarn( "jQuery is not compatible with Quirks Mode" );
|
80
|
+
}
|
81
|
+
|
82
|
+
|
83
|
+
var attrFn = jQuery( "<input/>", { size: 1 } ).attr("size") && jQuery.attrFn,
|
84
|
+
oldAttr = jQuery.attr,
|
85
|
+
valueAttrGet = jQuery.attrHooks.value && jQuery.attrHooks.value.get ||
|
86
|
+
function() { return null; },
|
87
|
+
valueAttrSet = jQuery.attrHooks.value && jQuery.attrHooks.value.set ||
|
88
|
+
function() { return undefined; },
|
89
|
+
rnoType = /^(?:input|button)$/i,
|
90
|
+
rnoAttrNodeType = /^[238]$/,
|
91
|
+
rboolean = /^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i,
|
92
|
+
ruseDefault = /^(?:checked|selected)$/i;
|
93
|
+
|
94
|
+
// jQuery.attrFn
|
95
|
+
migrateWarnProp( jQuery, "attrFn", attrFn || {}, "jQuery.attrFn is deprecated" );
|
96
|
+
|
97
|
+
jQuery.attr = function( elem, name, value, pass ) {
|
98
|
+
var lowerName = name.toLowerCase(),
|
99
|
+
nType = elem && elem.nodeType;
|
100
|
+
|
101
|
+
if ( pass ) {
|
102
|
+
// Since pass is used internally, we only warn for new jQuery
|
103
|
+
// versions where there isn't a pass arg in the formal params
|
104
|
+
if ( oldAttr.length < 4 ) {
|
105
|
+
migrateWarn("jQuery.fn.attr( props, pass ) is deprecated");
|
106
|
+
}
|
107
|
+
if ( elem && !rnoAttrNodeType.test( nType ) &&
|
108
|
+
(attrFn ? name in attrFn : jQuery.isFunction(jQuery.fn[name])) ) {
|
109
|
+
return jQuery( elem )[ name ]( value );
|
110
|
+
}
|
111
|
+
}
|
112
|
+
|
113
|
+
// Warn if user tries to set `type`, since it breaks on IE 6/7/8; by checking
|
114
|
+
// for disconnected elements we don't warn on $( "<button>", { type: "button" } ).
|
115
|
+
if ( name === "type" && value !== undefined && rnoType.test( elem.nodeName ) && elem.parentNode ) {
|
116
|
+
migrateWarn("Can't change the 'type' of an input or button in IE 6/7/8");
|
117
|
+
}
|
118
|
+
|
119
|
+
// Restore boolHook for boolean property/attribute synchronization
|
120
|
+
if ( !jQuery.attrHooks[ lowerName ] && rboolean.test( lowerName ) ) {
|
121
|
+
jQuery.attrHooks[ lowerName ] = {
|
122
|
+
get: function( elem, name ) {
|
123
|
+
// Align boolean attributes with corresponding properties
|
124
|
+
// Fall back to attribute presence where some booleans are not supported
|
125
|
+
var attrNode,
|
126
|
+
property = jQuery.prop( elem, name );
|
127
|
+
return property === true || typeof property !== "boolean" &&
|
128
|
+
( attrNode = elem.getAttributeNode(name) ) && attrNode.nodeValue !== false ?
|
129
|
+
|
130
|
+
name.toLowerCase() :
|
131
|
+
undefined;
|
132
|
+
},
|
133
|
+
set: function( elem, value, name ) {
|
134
|
+
var propName;
|
135
|
+
if ( value === false ) {
|
136
|
+
// Remove boolean attributes when set to false
|
137
|
+
jQuery.removeAttr( elem, name );
|
138
|
+
} else {
|
139
|
+
// value is true since we know at this point it's type boolean and not false
|
140
|
+
// Set boolean attributes to the same name and set the DOM property
|
141
|
+
propName = jQuery.propFix[ name ] || name;
|
142
|
+
if ( propName in elem ) {
|
143
|
+
// Only set the IDL specifically if it already exists on the element
|
144
|
+
elem[ propName ] = true;
|
145
|
+
}
|
146
|
+
|
147
|
+
elem.setAttribute( name, name.toLowerCase() );
|
148
|
+
}
|
149
|
+
return name;
|
150
|
+
}
|
151
|
+
};
|
152
|
+
|
153
|
+
// Warn only for attributes that can remain distinct from their properties post-1.9
|
154
|
+
if ( ruseDefault.test( lowerName ) ) {
|
155
|
+
migrateWarn( "jQuery.fn.attr('" + lowerName + "') may use property instead of attribute" );
|
156
|
+
}
|
157
|
+
}
|
158
|
+
|
159
|
+
return oldAttr.call( jQuery, elem, name, value );
|
160
|
+
};
|
161
|
+
|
162
|
+
// attrHooks: value
|
163
|
+
jQuery.attrHooks.value = {
|
164
|
+
get: function( elem, name ) {
|
165
|
+
var nodeName = ( elem.nodeName || "" ).toLowerCase();
|
166
|
+
if ( nodeName === "button" ) {
|
167
|
+
return valueAttrGet.apply( this, arguments );
|
168
|
+
}
|
169
|
+
if ( nodeName !== "input" && nodeName !== "option" ) {
|
170
|
+
migrateWarn("jQuery.fn.attr('value') no longer gets properties");
|
171
|
+
}
|
172
|
+
return name in elem ?
|
173
|
+
elem.value :
|
174
|
+
null;
|
175
|
+
},
|
176
|
+
set: function( elem, value ) {
|
177
|
+
var nodeName = ( elem.nodeName || "" ).toLowerCase();
|
178
|
+
if ( nodeName === "button" ) {
|
179
|
+
return valueAttrSet.apply( this, arguments );
|
180
|
+
}
|
181
|
+
if ( nodeName !== "input" && nodeName !== "option" ) {
|
182
|
+
migrateWarn("jQuery.fn.attr('value', val) no longer sets properties");
|
183
|
+
}
|
184
|
+
// Does not return so that setAttribute is also used
|
185
|
+
elem.value = value;
|
186
|
+
}
|
187
|
+
};
|
188
|
+
|
189
|
+
|
190
|
+
var matched, browser,
|
191
|
+
oldInit = jQuery.fn.init,
|
192
|
+
oldParseJSON = jQuery.parseJSON,
|
193
|
+
// Note: XSS check is done below after string is trimmed
|
194
|
+
rquickExpr = /^([^<]*)(<[\w\W]+>)([^>]*)$/;
|
195
|
+
|
196
|
+
// $(html) "looks like html" rule change
|
197
|
+
jQuery.fn.init = function( selector, context, rootjQuery ) {
|
198
|
+
var match;
|
199
|
+
|
200
|
+
if ( selector && typeof selector === "string" && !jQuery.isPlainObject( context ) &&
|
201
|
+
(match = rquickExpr.exec( jQuery.trim( selector ) )) && match[ 0 ] ) {
|
202
|
+
// This is an HTML string according to the "old" rules; is it still?
|
203
|
+
if ( selector.charAt( 0 ) !== "<" ) {
|
204
|
+
migrateWarn("$(html) HTML strings must start with '<' character");
|
205
|
+
}
|
206
|
+
if ( match[ 3 ] ) {
|
207
|
+
migrateWarn("$(html) HTML text after last tag is ignored");
|
208
|
+
}
|
209
|
+
// Consistently reject any HTML-like string starting with a hash (#9521)
|
210
|
+
// Note that this may break jQuery 1.6.x code that otherwise would work.
|
211
|
+
if ( match[ 0 ].charAt( 0 ) === "#" ) {
|
212
|
+
migrateWarn("HTML string cannot start with a '#' character");
|
213
|
+
jQuery.error("JQMIGRATE: Invalid selector string (XSS)");
|
214
|
+
}
|
215
|
+
// Now process using loose rules; let pre-1.8 play too
|
216
|
+
if ( context && context.context ) {
|
217
|
+
// jQuery object as context; parseHTML expects a DOM object
|
218
|
+
context = context.context;
|
219
|
+
}
|
220
|
+
if ( jQuery.parseHTML ) {
|
221
|
+
return oldInit.call( this, jQuery.parseHTML( match[ 2 ], context, true ),
|
222
|
+
context, rootjQuery );
|
223
|
+
}
|
224
|
+
}
|
225
|
+
return oldInit.apply( this, arguments );
|
226
|
+
};
|
227
|
+
jQuery.fn.init.prototype = jQuery.fn;
|
228
|
+
|
229
|
+
// Let $.parseJSON(falsy_value) return null
|
230
|
+
jQuery.parseJSON = function( json ) {
|
231
|
+
if ( !json && json !== null ) {
|
232
|
+
migrateWarn("jQuery.parseJSON requires a valid JSON string");
|
233
|
+
return null;
|
234
|
+
}
|
235
|
+
return oldParseJSON.apply( this, arguments );
|
236
|
+
};
|
237
|
+
|
238
|
+
jQuery.uaMatch = function( ua ) {
|
239
|
+
ua = ua.toLowerCase();
|
240
|
+
|
241
|
+
var match = /(chrome)[ \/]([\w.]+)/.exec( ua ) ||
|
242
|
+
/(webkit)[ \/]([\w.]+)/.exec( ua ) ||
|
243
|
+
/(opera)(?:.*version|)[ \/]([\w.]+)/.exec( ua ) ||
|
244
|
+
/(msie) ([\w.]+)/.exec( ua ) ||
|
245
|
+
ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec( ua ) ||
|
246
|
+
[];
|
247
|
+
|
248
|
+
return {
|
249
|
+
browser: match[ 1 ] || "",
|
250
|
+
version: match[ 2 ] || "0"
|
251
|
+
};
|
252
|
+
};
|
253
|
+
|
254
|
+
// Don't clobber any existing jQuery.browser in case it's different
|
255
|
+
if ( !jQuery.browser ) {
|
256
|
+
matched = jQuery.uaMatch( navigator.userAgent );
|
257
|
+
browser = {};
|
258
|
+
|
259
|
+
if ( matched.browser ) {
|
260
|
+
browser[ matched.browser ] = true;
|
261
|
+
browser.version = matched.version;
|
262
|
+
}
|
263
|
+
|
264
|
+
// Chrome is Webkit, but Webkit is also Safari.
|
265
|
+
if ( browser.chrome ) {
|
266
|
+
browser.webkit = true;
|
267
|
+
} else if ( browser.webkit ) {
|
268
|
+
browser.safari = true;
|
269
|
+
}
|
270
|
+
|
271
|
+
jQuery.browser = browser;
|
272
|
+
}
|
273
|
+
|
274
|
+
// Warn if the code tries to get jQuery.browser
|
275
|
+
migrateWarnProp( jQuery, "browser", jQuery.browser, "jQuery.browser is deprecated" );
|
276
|
+
|
277
|
+
jQuery.sub = function() {
|
278
|
+
function jQuerySub( selector, context ) {
|
279
|
+
return new jQuerySub.fn.init( selector, context );
|
280
|
+
}
|
281
|
+
jQuery.extend( true, jQuerySub, this );
|
282
|
+
jQuerySub.superclass = this;
|
283
|
+
jQuerySub.fn = jQuerySub.prototype = this();
|
284
|
+
jQuerySub.fn.constructor = jQuerySub;
|
285
|
+
jQuerySub.sub = this.sub;
|
286
|
+
jQuerySub.fn.init = function init( selector, context ) {
|
287
|
+
if ( context && context instanceof jQuery && !(context instanceof jQuerySub) ) {
|
288
|
+
context = jQuerySub( context );
|
289
|
+
}
|
290
|
+
|
291
|
+
return jQuery.fn.init.call( this, selector, context, rootjQuerySub );
|
292
|
+
};
|
293
|
+
jQuerySub.fn.init.prototype = jQuerySub.fn;
|
294
|
+
var rootjQuerySub = jQuerySub(document);
|
295
|
+
migrateWarn( "jQuery.sub() is deprecated" );
|
296
|
+
return jQuerySub;
|
297
|
+
};
|
298
|
+
|
299
|
+
|
300
|
+
// Ensure that $.ajax gets the new parseJSON defined in core.js
|
301
|
+
jQuery.ajaxSetup({
|
302
|
+
converters: {
|
303
|
+
"text json": jQuery.parseJSON
|
304
|
+
}
|
305
|
+
});
|
306
|
+
|
307
|
+
|
308
|
+
var oldFnData = jQuery.fn.data;
|
309
|
+
|
310
|
+
jQuery.fn.data = function( name ) {
|
311
|
+
var ret, evt,
|
312
|
+
elem = this[0];
|
313
|
+
|
314
|
+
// Handles 1.7 which has this behavior and 1.8 which doesn't
|
315
|
+
if ( elem && name === "events" && arguments.length === 1 ) {
|
316
|
+
ret = jQuery.data( elem, name );
|
317
|
+
evt = jQuery._data( elem, name );
|
318
|
+
if ( ( ret === undefined || ret === evt ) && evt !== undefined ) {
|
319
|
+
migrateWarn("Use of jQuery.fn.data('events') is deprecated");
|
320
|
+
return evt;
|
321
|
+
}
|
322
|
+
}
|
323
|
+
return oldFnData.apply( this, arguments );
|
324
|
+
};
|
325
|
+
|
326
|
+
|
327
|
+
var rscriptType = /\/(java|ecma)script/i,
|
328
|
+
oldSelf = jQuery.fn.andSelf || jQuery.fn.addBack;
|
329
|
+
|
330
|
+
jQuery.fn.andSelf = function() {
|
331
|
+
migrateWarn("jQuery.fn.andSelf() replaced by jQuery.fn.addBack()");
|
332
|
+
return oldSelf.apply( this, arguments );
|
333
|
+
};
|
334
|
+
|
335
|
+
// Since jQuery.clean is used internally on older versions, we only shim if it's missing
|
336
|
+
if ( !jQuery.clean ) {
|
337
|
+
jQuery.clean = function( elems, context, fragment, scripts ) {
|
338
|
+
// Set context per 1.8 logic
|
339
|
+
context = context || document;
|
340
|
+
context = !context.nodeType && context[0] || context;
|
341
|
+
context = context.ownerDocument || context;
|
342
|
+
|
343
|
+
migrateWarn("jQuery.clean() is deprecated");
|
344
|
+
|
345
|
+
var i, elem, handleScript, jsTags,
|
346
|
+
ret = [];
|
347
|
+
|
348
|
+
jQuery.merge( ret, jQuery.buildFragment( elems, context ).childNodes );
|
349
|
+
|
350
|
+
// Complex logic lifted directly from jQuery 1.8
|
351
|
+
if ( fragment ) {
|
352
|
+
// Special handling of each script element
|
353
|
+
handleScript = function( elem ) {
|
354
|
+
// Check if we consider it executable
|
355
|
+
if ( !elem.type || rscriptType.test( elem.type ) ) {
|
356
|
+
// Detach the script and store it in the scripts array (if provided) or the fragment
|
357
|
+
// Return truthy to indicate that it has been handled
|
358
|
+
return scripts ?
|
359
|
+
scripts.push( elem.parentNode ? elem.parentNode.removeChild( elem ) : elem ) :
|
360
|
+
fragment.appendChild( elem );
|
361
|
+
}
|
362
|
+
};
|
363
|
+
|
364
|
+
for ( i = 0; (elem = ret[i]) != null; i++ ) {
|
365
|
+
// Check if we're done after handling an executable script
|
366
|
+
if ( !( jQuery.nodeName( elem, "script" ) && handleScript( elem ) ) ) {
|
367
|
+
// Append to fragment and handle embedded scripts
|
368
|
+
fragment.appendChild( elem );
|
369
|
+
if ( typeof elem.getElementsByTagName !== "undefined" ) {
|
370
|
+
// handleScript alters the DOM, so use jQuery.merge to ensure snapshot iteration
|
371
|
+
jsTags = jQuery.grep( jQuery.merge( [], elem.getElementsByTagName("script") ), handleScript );
|
372
|
+
|
373
|
+
// Splice the scripts into ret after their former ancestor and advance our index beyond them
|
374
|
+
ret.splice.apply( ret, [i + 1, 0].concat( jsTags ) );
|
375
|
+
i += jsTags.length;
|
376
|
+
}
|
377
|
+
}
|
378
|
+
}
|
379
|
+
}
|
380
|
+
|
381
|
+
return ret;
|
382
|
+
};
|
383
|
+
}
|
384
|
+
|
385
|
+
var eventAdd = jQuery.event.add,
|
386
|
+
eventRemove = jQuery.event.remove,
|
387
|
+
eventTrigger = jQuery.event.trigger,
|
388
|
+
oldToggle = jQuery.fn.toggle,
|
389
|
+
oldLive = jQuery.fn.live,
|
390
|
+
oldDie = jQuery.fn.die,
|
391
|
+
ajaxEvents = "ajaxStart|ajaxStop|ajaxSend|ajaxComplete|ajaxError|ajaxSuccess",
|
392
|
+
rajaxEvent = new RegExp( "\\b(?:" + ajaxEvents + ")\\b" ),
|
393
|
+
rhoverHack = /(?:^|\s)hover(\.\S+|)\b/,
|
394
|
+
hoverHack = function( events ) {
|
395
|
+
if ( typeof( events ) !== "string" || jQuery.event.special.hover ) {
|
396
|
+
return events;
|
397
|
+
}
|
398
|
+
if ( rhoverHack.test( events ) ) {
|
399
|
+
migrateWarn("'hover' pseudo-event is deprecated, use 'mouseenter mouseleave'");
|
400
|
+
}
|
401
|
+
return events && events.replace( rhoverHack, "mouseenter$1 mouseleave$1" );
|
402
|
+
};
|
403
|
+
|
404
|
+
// Event props removed in 1.9, put them back if needed; no practical way to warn them
|
405
|
+
if ( jQuery.event.props && jQuery.event.props[ 0 ] !== "attrChange" ) {
|
406
|
+
jQuery.event.props.unshift( "attrChange", "attrName", "relatedNode", "srcElement" );
|
407
|
+
}
|
408
|
+
|
409
|
+
// Undocumented jQuery.event.handle was "deprecated" in jQuery 1.7
|
410
|
+
if ( jQuery.event.dispatch ) {
|
411
|
+
migrateWarnProp( jQuery.event, "handle", jQuery.event.dispatch, "jQuery.event.handle is undocumented and deprecated" );
|
412
|
+
}
|
413
|
+
|
414
|
+
// Support for 'hover' pseudo-event and ajax event warnings
|
415
|
+
jQuery.event.add = function( elem, types, handler, data, selector ){
|
416
|
+
if ( elem !== document && rajaxEvent.test( types ) ) {
|
417
|
+
migrateWarn( "AJAX events should be attached to document: " + types );
|
418
|
+
}
|
419
|
+
eventAdd.call( this, elem, hoverHack( types || "" ), handler, data, selector );
|
420
|
+
};
|
421
|
+
jQuery.event.remove = function( elem, types, handler, selector, mappedTypes ){
|
422
|
+
eventRemove.call( this, elem, hoverHack( types ) || "", handler, selector, mappedTypes );
|
423
|
+
};
|
424
|
+
|
425
|
+
jQuery.fn.error = function() {
|
426
|
+
var args = Array.prototype.slice.call( arguments, 0);
|
427
|
+
migrateWarn("jQuery.fn.error() is deprecated");
|
428
|
+
args.splice( 0, 0, "error" );
|
429
|
+
if ( arguments.length ) {
|
430
|
+
return this.bind.apply( this, args );
|
431
|
+
}
|
432
|
+
// error event should not bubble to window, although it does pre-1.7
|
433
|
+
this.triggerHandler.apply( this, args );
|
434
|
+
return this;
|
435
|
+
};
|
436
|
+
|
437
|
+
jQuery.fn.toggle = function( fn, fn2 ) {
|
438
|
+
|
439
|
+
// Don't mess with animation or css toggles
|
440
|
+
if ( !jQuery.isFunction( fn ) || !jQuery.isFunction( fn2 ) ) {
|
441
|
+
return oldToggle.apply( this, arguments );
|
442
|
+
}
|
443
|
+
migrateWarn("jQuery.fn.toggle(handler, handler...) is deprecated");
|
444
|
+
|
445
|
+
// Save reference to arguments for access in closure
|
446
|
+
var args = arguments,
|
447
|
+
guid = fn.guid || jQuery.guid++,
|
448
|
+
i = 0,
|
449
|
+
toggler = function( event ) {
|
450
|
+
// Figure out which function to execute
|
451
|
+
var lastToggle = ( jQuery._data( this, "lastToggle" + fn.guid ) || 0 ) % i;
|
452
|
+
jQuery._data( this, "lastToggle" + fn.guid, lastToggle + 1 );
|
453
|
+
|
454
|
+
// Make sure that clicks stop
|
455
|
+
event.preventDefault();
|
456
|
+
|
457
|
+
// and execute the function
|
458
|
+
return args[ lastToggle ].apply( this, arguments ) || false;
|
459
|
+
};
|
460
|
+
|
461
|
+
// link all the functions, so any of them can unbind this click handler
|
462
|
+
toggler.guid = guid;
|
463
|
+
while ( i < args.length ) {
|
464
|
+
args[ i++ ].guid = guid;
|
465
|
+
}
|
466
|
+
|
467
|
+
return this.click( toggler );
|
468
|
+
};
|
469
|
+
|
470
|
+
jQuery.fn.live = function( types, data, fn ) {
|
471
|
+
migrateWarn("jQuery.fn.live() is deprecated");
|
472
|
+
if ( oldLive ) {
|
473
|
+
return oldLive.apply( this, arguments );
|
474
|
+
}
|
475
|
+
jQuery( this.context ).on( types, this.selector, data, fn );
|
476
|
+
return this;
|
477
|
+
};
|
478
|
+
|
479
|
+
jQuery.fn.die = function( types, fn ) {
|
480
|
+
migrateWarn("jQuery.fn.die() is deprecated");
|
481
|
+
if ( oldDie ) {
|
482
|
+
return oldDie.apply( this, arguments );
|
483
|
+
}
|
484
|
+
jQuery( this.context ).off( types, this.selector || "**", fn );
|
485
|
+
return this;
|
486
|
+
};
|
487
|
+
|
488
|
+
// Turn global events into document-triggered events
|
489
|
+
jQuery.event.trigger = function( event, data, elem, onlyHandlers ){
|
490
|
+
if ( !elem && !rajaxEvent.test( event ) ) {
|
491
|
+
migrateWarn( "Global events are undocumented and deprecated" );
|
492
|
+
}
|
493
|
+
return eventTrigger.call( this, event, data, elem || document, onlyHandlers );
|
494
|
+
};
|
495
|
+
jQuery.each( ajaxEvents.split("|"),
|
496
|
+
function( _, name ) {
|
497
|
+
jQuery.event.special[ name ] = {
|
498
|
+
setup: function() {
|
499
|
+
var elem = this;
|
500
|
+
|
501
|
+
// The document needs no shimming; must be !== for oldIE
|
502
|
+
if ( elem !== document ) {
|
503
|
+
jQuery.event.add( document, name + "." + jQuery.guid, function() {
|
504
|
+
jQuery.event.trigger( name, null, elem, true );
|
505
|
+
});
|
506
|
+
jQuery._data( this, name, jQuery.guid++ );
|
507
|
+
}
|
508
|
+
return false;
|
509
|
+
},
|
510
|
+
teardown: function() {
|
511
|
+
if ( this !== document ) {
|
512
|
+
jQuery.event.remove( document, name + "." + jQuery._data( this, name ) );
|
513
|
+
}
|
514
|
+
return false;
|
515
|
+
}
|
516
|
+
};
|
517
|
+
}
|
518
|
+
);
|
519
|
+
|
520
|
+
|
521
|
+
})( jQuery, window );
|