openshift-origin-console 1.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.
- data/COPYRIGHT +1 -0
- data/Gemfile +21 -0
- data/LICENSE +203 -0
- data/README.md +123 -0
- data/Rakefile +44 -0
- data/app/assets/images/cartridge-edge.gif +0 -0
- data/app/assets/images/console/arrow-down.png +0 -0
- data/app/assets/images/console/console-sprite.png +0 -0
- data/app/assets/images/favicon-32.png +0 -0
- data/app/assets/images/loader-dark.gif +0 -0
- data/app/assets/images/loader.gif +0 -0
- data/app/assets/images/sprite-vert.png +0 -0
- data/app/assets/javascripts/console.js +10 -0
- data/app/assets/javascripts/console/form.js.coffee +51 -0
- data/app/assets/stylesheets/_alerts.scss +84 -0
- data/app/assets/stylesheets/_breadcrumbs.scss +31 -0
- data/app/assets/stylesheets/_buttons.scss +229 -0
- data/app/assets/stylesheets/_code.scss +86 -0
- data/app/assets/stylesheets/_custom.scss +207 -0
- data/app/assets/stylesheets/_footer.scss +54 -0
- data/app/assets/stylesheets/_forms.scss +710 -0
- data/app/assets/stylesheets/_grid.scss +28 -0
- data/app/assets/stylesheets/_input-prepend-append.scss +138 -0
- data/app/assets/stylesheets/_labels.scss +40 -0
- data/app/assets/stylesheets/_mixins.scss +76 -0
- data/app/assets/stylesheets/_override-variables.scss +1 -0
- data/app/assets/stylesheets/_responsive.scss +438 -0
- data/app/assets/stylesheets/_ribbon.scss +57 -0
- data/app/assets/stylesheets/_type.scss +306 -0
- data/app/assets/stylesheets/_utilities.scss +10 -0
- data/app/assets/stylesheets/_variables.scss +131 -0
- data/app/assets/stylesheets/common.css.scss +82 -0
- data/app/assets/stylesheets/console/_application.scss +194 -0
- data/app/assets/stylesheets/console/_base.scss +26 -0
- data/app/assets/stylesheets/console/_breadcrumbs.scss +32 -0
- data/app/assets/stylesheets/console/_buttons.scss +214 -0
- data/app/assets/stylesheets/console/_core.scss +1002 -0
- data/app/assets/stylesheets/console/_dropdowns.scss +63 -0
- data/app/assets/stylesheets/console/_help.scss +54 -0
- data/app/assets/stylesheets/console/_mixins.scss +11 -0
- data/app/assets/stylesheets/console/_navbar.scss +415 -0
- data/app/assets/stylesheets/console/_ribbon.scss +82 -0
- data/app/assets/stylesheets/console/_tile.scss +122 -0
- data/app/assets/stylesheets/origin.css.scss +37 -0
- data/app/controllers/account/dashboard.rb +13 -0
- data/app/controllers/account_controller.rb +3 -0
- data/app/controllers/application_types_controller.rb +80 -0
- data/app/controllers/applications_controller.rb +183 -0
- data/app/controllers/building_controller.rb +81 -0
- data/app/controllers/capability_aware.rb +18 -0
- data/app/controllers/cartridge_types_controller.rb +53 -0
- data/app/controllers/cartridges_controller.rb +43 -0
- data/app/controllers/console/auth/basic.rb +65 -0
- data/app/controllers/console/auth/none.rb +5 -0
- data/app/controllers/console/auth/remote_user.rb +69 -0
- data/app/controllers/console/rescue.rb +48 -0
- data/app/controllers/console_controller.rb +19 -0
- data/app/controllers/console_index_controller.rb +14 -0
- data/app/controllers/domain_aware.rb +26 -0
- data/app/controllers/domain_session_sweeper.rb +29 -0
- data/app/controllers/domains_controller.rb +30 -0
- data/app/controllers/keys_controller.rb +43 -0
- data/app/controllers/scaling_controller.rb +46 -0
- data/app/controllers/sshkey_aware.rb +23 -0
- data/app/controllers/sshkey_session_sweeper.rb +29 -0
- data/app/controllers/user_session_sweeper.rb +29 -0
- data/app/helpers/console/community_helper.rb +78 -0
- data/app/helpers/console/console_helper.rb +26 -0
- data/app/helpers/console/help_helper.rb +270 -0
- data/app/helpers/console/html5_boilerplate_helper.rb +63 -0
- data/app/helpers/console/layout_helper.rb +277 -0
- data/app/helpers/console/model_helper.rb +106 -0
- data/app/helpers/console/secured_helper.rb +5 -0
- data/app/models/alias.rb +10 -0
- data/app/models/application.rb +148 -0
- data/app/models/application_associations.rb +36 -0
- data/app/models/application_template.rb +90 -0
- data/app/models/application_type.rb +258 -0
- data/app/models/async_aware.rb +60 -0
- data/app/models/capabilities.rb +62 -0
- data/app/models/cartridge.rb +122 -0
- data/app/models/cartridge_type.rb +140 -0
- data/app/models/domain.rb +44 -0
- data/app/models/domain_associations.rb +33 -0
- data/app/models/embedded.rb +11 -0
- data/app/models/gear.rb +13 -0
- data/app/models/gear_group.rb +104 -0
- data/app/models/key.rb +87 -0
- data/app/models/quickstart.rb +135 -0
- data/app/models/rest_api.rb +130 -0
- data/app/models/rest_api/base.rb +781 -0
- data/app/models/rest_api/cacheable.rb +91 -0
- data/app/models/rest_api/environment.rb +13 -0
- data/app/models/rest_api/info.rb +34 -0
- data/app/models/rest_api/log_subscriber.rb +29 -0
- data/app/models/rest_api/railties/controller_runtime.rb +37 -0
- data/app/models/user.rb +27 -0
- data/app/models/user_associations.rb +6 -0
- data/app/views/account/_domain.html.haml +14 -0
- data/app/views/account/_keys.html.haml +20 -0
- data/app/views/account/_user.html.haml +5 -0
- data/app/views/account/show.html.haml +15 -0
- data/app/views/application_templates/_application_template.html.haml +5 -0
- data/app/views/application_types/_application_type.html.haml +19 -0
- data/app/views/application_types/_custom.html.haml +19 -0
- data/app/views/application_types/_persisted.html.haml +26 -0
- data/app/views/application_types/_tile.html.haml +9 -0
- data/app/views/application_types/index.html.haml +87 -0
- data/app/views/application_types/search.html.haml +67 -0
- data/app/views/application_types/show.html.haml +219 -0
- data/app/views/applications/_application.html.haml +34 -0
- data/app/views/applications/_applications_filter.html.haml +8 -0
- data/app/views/applications/_footer.html.haml +0 -0
- data/app/views/applications/_name.html.haml +28 -0
- data/app/views/applications/delete.html.haml +19 -0
- data/app/views/applications/get_started.html.haml +145 -0
- data/app/views/applications/index.html.haml +55 -0
- data/app/views/applications/show.html.haml +193 -0
- data/app/views/building/delete.html.haml +22 -0
- data/app/views/building/new.html.haml +57 -0
- data/app/views/building/show.html.haml +12 -0
- data/app/views/cartridge_types/_cartridge_type.html.haml +61 -0
- data/app/views/cartridge_types/index.html.haml +37 -0
- data/app/views/cartridge_types/show.html.haml +21 -0
- data/app/views/cartridges/next_steps.html.haml +58 -0
- data/app/views/cartridges/show.html.haml +1 -0
- data/app/views/console/error.html.haml +58 -0
- data/app/views/console/help.html.haml +90 -0
- data/app/views/console/not_found.html.haml +69 -0
- data/app/views/console/unauthorized.html.haml +7 -0
- data/app/views/domains/_domain.html.haml +14 -0
- data/app/views/domains/_form.html.haml +13 -0
- data/app/views/domains/edit.html.haml +5 -0
- data/app/views/domains/new.html.haml +6 -0
- data/app/views/keys/_form.html.haml +14 -0
- data/app/views/keys/_simple_form.html.haml +14 -0
- data/app/views/keys/new.html.haml +2 -0
- data/app/views/layouts/_footer.html.haml +38 -0
- data/app/views/layouts/_head.html.haml +35 -0
- data/app/views/layouts/console.html.haml +60 -0
- data/app/views/layouts/console/_header.html.haml +44 -0
- data/app/views/layouts/console/_identity.html.haml +7 -0
- data/app/views/layouts/console/_javascripts.html.haml +5 -0
- data/app/views/layouts/console/_stylesheets.html.haml +6 -0
- data/app/views/scaling/delete.html.haml +17 -0
- data/app/views/scaling/new.html.haml +24 -0
- data/app/views/scaling/show.html.haml +81 -0
- data/app/views/shared/_tracking.html.haml +0 -0
- data/conf/console.conf.example +108 -0
- data/conf/openshift_console.conf +10 -0
- data/config/cartridge_types.yml +54 -0
- data/config/initializers/barista_config.rb +86 -0
- data/config/initializers/cartridge_types.rb +5 -0
- data/config/initializers/console_security.rb +1 -0
- data/config/initializers/date_helper.rb +5 -0
- data/config/initializers/extended_logger.rb +51 -0
- data/config/initializers/formtastic.rb +100 -0
- data/config/initializers/inflections.rb +38 -0
- data/config/initializers/rdiscount.rb +8 -0
- data/config/initializers/rest_api.rb +22 -0
- data/config/initializers/sass.rb +30 -0
- data/config/initializers/session_trace.rb +32 -0
- data/config/initializers/x_frame_options.rb +53 -0
- data/config/locales/en.yml +12 -0
- data/lib/active_resource/associations.rb +107 -0
- data/lib/active_resource/associations/builder/association.rb +35 -0
- data/lib/active_resource/associations/builder/belongs_to.rb +5 -0
- data/lib/active_resource/associations/builder/has_many.rb +5 -0
- data/lib/active_resource/associations/builder/has_one.rb +5 -0
- data/lib/active_resource/persistent_connection.rb +341 -0
- data/lib/active_resource/persistent_http_mock.rb +68 -0
- data/lib/active_resource/reflection.rb +78 -0
- data/lib/console.rb +8 -0
- data/lib/console/config_file.rb +13 -0
- data/lib/console/configuration.rb +163 -0
- data/lib/console/engine.rb +28 -0
- data/lib/console/formtastic/bootstrap_form_builder.rb +369 -0
- data/lib/console/rails/app_redirector.rb +40 -0
- data/lib/console/rails/filter_hash.rb +15 -0
- data/lib/console/rails/routes.rb +51 -0
- data/lib/console/version.rb +5 -0
- data/lib/tasks/assets.rake +79 -0
- data/lib/tasks/stats.rake +18 -0
- data/lib/tasks/test_suites.rake +73 -0
- data/test/coverage_helper.rb +27 -0
- data/test/fixtures/cartridges.json +1 -0
- data/test/fixtures/quickstarts.csv +3 -0
- data/test/functional/account_controller_test.rb +14 -0
- data/test/functional/application_types_controller_test.rb +251 -0
- data/test/functional/applications_controller_sanity_test.rb +26 -0
- data/test/functional/applications_controller_test.rb +365 -0
- data/test/functional/building_controller_test.rb +203 -0
- data/test/functional/cartridge_types_controller_isolation_test.rb +68 -0
- data/test/functional/cartridge_types_controller_test.rb +48 -0
- data/test/functional/cartridges_controller_test.rb +83 -0
- data/test/functional/console_auth_basic_controller_test.rb +82 -0
- data/test/functional/console_auth_remote_user_controller_test.rb +90 -0
- data/test/functional/console_index_controller_test.rb +22 -0
- data/test/functional/domains_controller_test.rb +194 -0
- data/test/functional/keys_controller_test.rb +163 -0
- data/test/functional/quickstarts.json +18 -0
- data/test/functional/scaling_controller_test.rb +153 -0
- data/test/integration/assets_test.rb +34 -0
- data/test/integration/help_link_test.rb +43 -0
- data/test/integration/quickstarts_test.rb +24 -0
- data/test/integration/rescue_from_test.rb +25 -0
- data/test/integration/rest_api/application_test.rb +115 -0
- data/test/integration/rest_api/cartridge_test.rb +44 -0
- data/test/integration/rest_api/cartridge_type_test.rb +143 -0
- data/test/integration/rest_api/domain_test.rb +91 -0
- data/test/integration/rest_api/info_test.rb +9 -0
- data/test/integration/rest_api/key_test.rb +85 -0
- data/test/integration/static_pages_test.rb +44 -0
- data/test/rails_app/Rakefile +7 -0
- data/test/rails_app/app/controllers/application_controller.rb +5 -0
- data/test/rails_app/config.ru +4 -0
- data/test/rails_app/config/application.rb +48 -0
- data/test/rails_app/config/boot.rb +10 -0
- data/test/rails_app/config/database.yml +25 -0
- data/test/rails_app/config/environment.rb +5 -0
- data/test/rails_app/config/environments/development.rb +38 -0
- data/test/rails_app/config/environments/production.rb +70 -0
- data/test/rails_app/config/environments/test.rb +43 -0
- data/test/rails_app/config/initializers/auth.rb +0 -0
- data/test/rails_app/config/initializers/backtrace_silencers.rb +7 -0
- data/test/rails_app/config/initializers/inflections.rb +10 -0
- data/test/rails_app/config/initializers/mime_types.rb +5 -0
- data/test/rails_app/config/initializers/secret_token.rb +7 -0
- data/test/rails_app/config/initializers/session_store.rb +8 -0
- data/test/rails_app/config/locales/en.yml +5 -0
- data/test/rails_app/config/routes.rb +4 -0
- data/test/rails_app/script/rails +6 -0
- data/test/support/auth.rb +111 -0
- data/test/support/base.rb +142 -0
- data/test/support/errors.rb +28 -0
- data/test/support/rest_api.rb +189 -0
- data/test/test_helper.rb +14 -0
- data/test/unit/active_model_compliance_test.rb +23 -0
- data/test/unit/async_aware_test.rb +55 -0
- data/test/unit/configuration_test.rb +158 -0
- data/test/unit/filter_hash_test.rb +64 -0
- data/test/unit/helpers/model_helper_test.rb +61 -0
- data/test/unit/overrides_test.rb +9 -0
- data/test/unit/rest_api_test.rb +1590 -0
- data/vendor/assets/javascripts/MIT-LICENSE.txt +20 -0
- data/vendor/assets/javascripts/bootstrap-collapse.js +157 -0
- data/vendor/assets/javascripts/bootstrap-dropdown.js +100 -0
- data/vendor/assets/javascripts/bootstrap-tab.js +135 -0
- data/vendor/assets/javascripts/bootstrap-transition.js +61 -0
- data/vendor/assets/javascripts/jquery.spin.js +47 -0
- data/vendor/assets/javascripts/jquery.ui.widget.js +16 -0
- data/vendor/assets/javascripts/jquery_cookie.js +41 -0
- data/vendor/assets/javascripts/jquery_validate_min.js +51 -0
- data/vendor/assets/javascripts/modernizr.min.js +2 -0
- data/vendor/assets/javascripts/plugins.js +16 -0
- data/vendor/assets/stylesheets/bootstrap/_accordion.scss +28 -0
- data/vendor/assets/stylesheets/bootstrap/_alerts.scss +70 -0
- data/vendor/assets/stylesheets/bootstrap/_breadcrumbs.scss +22 -0
- data/vendor/assets/stylesheets/bootstrap/_button-groups.scss +147 -0
- data/vendor/assets/stylesheets/bootstrap/_buttons.scss +183 -0
- data/vendor/assets/stylesheets/bootstrap/_carousel.scss +121 -0
- data/vendor/assets/stylesheets/bootstrap/_close.scss +18 -0
- data/vendor/assets/stylesheets/bootstrap/_code.scss +57 -0
- data/vendor/assets/stylesheets/bootstrap/_component-animations.scss +18 -0
- data/vendor/assets/stylesheets/bootstrap/_dropdowns.scss +130 -0
- data/vendor/assets/stylesheets/bootstrap/_forms.scss +522 -0
- data/vendor/assets/stylesheets/bootstrap/_grid.scss +8 -0
- data/vendor/assets/stylesheets/bootstrap/_hero-unit.scss +20 -0
- data/vendor/assets/stylesheets/bootstrap/_labels.scss +32 -0
- data/vendor/assets/stylesheets/bootstrap/_layouts.scss +17 -0
- data/vendor/assets/stylesheets/bootstrap/_mixins.scss +602 -0
- data/vendor/assets/stylesheets/bootstrap/_modals.scss +84 -0
- data/vendor/assets/stylesheets/bootstrap/_navbar.scss +299 -0
- data/vendor/assets/stylesheets/bootstrap/_navs.scss +353 -0
- data/vendor/assets/stylesheets/bootstrap/_pager.scss +30 -0
- data/vendor/assets/stylesheets/bootstrap/_pagination.scss +55 -0
- data/vendor/assets/stylesheets/bootstrap/_popovers.scss +49 -0
- data/vendor/assets/stylesheets/bootstrap/_progress-bars.scss +95 -0
- data/vendor/assets/stylesheets/bootstrap/_reset.scss +126 -0
- data/vendor/assets/stylesheets/bootstrap/_scaffolding.scss +33 -0
- data/vendor/assets/stylesheets/bootstrap/_sprites.scss +158 -0
- data/vendor/assets/stylesheets/bootstrap/_tables.scss +150 -0
- data/vendor/assets/stylesheets/bootstrap/_thumbnails.scss +35 -0
- data/vendor/assets/stylesheets/bootstrap/_tooltip.scss +35 -0
- data/vendor/assets/stylesheets/bootstrap/_type.scss +218 -0
- data/vendor/assets/stylesheets/bootstrap/_utilities.scss +23 -0
- data/vendor/assets/stylesheets/bootstrap/_variables.scss +107 -0
- data/vendor/assets/stylesheets/bootstrap/_wells.scss +17 -0
- data/vendor/assets/stylesheets/bootstrap/bootstrap.scss +66 -0
- data/vendor/assets/stylesheets/bootstrap/responsive.scss +334 -0
- metadata +506 -0
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Copyright (c) 2007-2010 Contributors at http://github.com/rails/jquery-ujs/contributors
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
4
|
+
a copy of this software and associated documentation files (the
|
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
9
|
+
the following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be
|
|
12
|
+
included in all copies or substantial portions of the Software.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
/* =============================================================
|
|
2
|
+
* bootstrap-collapse.js v2.0.3
|
|
3
|
+
* http://twitter.github.com/bootstrap/javascript.html#collapse
|
|
4
|
+
* =============================================================
|
|
5
|
+
* Copyright 2012 Twitter, Inc.
|
|
6
|
+
*
|
|
7
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
8
|
+
* you may not use this file except in compliance with the License.
|
|
9
|
+
* You may obtain a copy of the License at
|
|
10
|
+
*
|
|
11
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
+
*
|
|
13
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
14
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
15
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
16
|
+
* See the License for the specific language governing permissions and
|
|
17
|
+
* limitations under the License.
|
|
18
|
+
* ============================================================ */
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
!function ($) {
|
|
22
|
+
|
|
23
|
+
"use strict"; // jshint ;_;
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
/* COLLAPSE PUBLIC CLASS DEFINITION
|
|
27
|
+
* ================================ */
|
|
28
|
+
|
|
29
|
+
var Collapse = function (element, options) {
|
|
30
|
+
this.$element = $(element)
|
|
31
|
+
this.options = $.extend({}, $.fn.collapse.defaults, options)
|
|
32
|
+
|
|
33
|
+
if (this.options.parent) {
|
|
34
|
+
this.$parent = $(this.options.parent)
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
this.options.toggle && this.toggle()
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
Collapse.prototype = {
|
|
41
|
+
|
|
42
|
+
constructor: Collapse
|
|
43
|
+
|
|
44
|
+
, dimension: function () {
|
|
45
|
+
var hasWidth = this.$element.hasClass('width')
|
|
46
|
+
return hasWidth ? 'width' : 'height'
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
, show: function () {
|
|
50
|
+
var dimension
|
|
51
|
+
, scroll
|
|
52
|
+
, actives
|
|
53
|
+
, hasData
|
|
54
|
+
|
|
55
|
+
if (this.transitioning) return
|
|
56
|
+
|
|
57
|
+
dimension = this.dimension()
|
|
58
|
+
scroll = $.camelCase(['scroll', dimension].join('-'))
|
|
59
|
+
actives = this.$parent && this.$parent.find('> .accordion-group > .in')
|
|
60
|
+
|
|
61
|
+
if (actives && actives.length) {
|
|
62
|
+
hasData = actives.data('collapse')
|
|
63
|
+
if (hasData && hasData.transitioning) return
|
|
64
|
+
actives.collapse('hide')
|
|
65
|
+
hasData || actives.data('collapse', null)
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
this.$element[dimension](0)
|
|
69
|
+
this.transition('addClass', $.Event('show'), 'shown')
|
|
70
|
+
this.$element[dimension](this.$element[0][scroll])
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
, hide: function () {
|
|
74
|
+
var dimension
|
|
75
|
+
if (this.transitioning) return
|
|
76
|
+
dimension = this.dimension()
|
|
77
|
+
this.reset(this.$element[dimension]())
|
|
78
|
+
this.transition('removeClass', $.Event('hide'), 'hidden')
|
|
79
|
+
this.$element[dimension](0)
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
, reset: function (size) {
|
|
83
|
+
var dimension = this.dimension()
|
|
84
|
+
|
|
85
|
+
this.$element
|
|
86
|
+
.removeClass('collapse')
|
|
87
|
+
[dimension](size || 'auto')
|
|
88
|
+
[0].offsetWidth
|
|
89
|
+
|
|
90
|
+
this.$element[size !== null ? 'addClass' : 'removeClass']('collapse')
|
|
91
|
+
|
|
92
|
+
return this
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
, transition: function (method, startEvent, completeEvent) {
|
|
96
|
+
var that = this
|
|
97
|
+
, complete = function () {
|
|
98
|
+
if (startEvent.type == 'show') that.reset()
|
|
99
|
+
that.transitioning = 0
|
|
100
|
+
that.$element.trigger(completeEvent)
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
this.$element.trigger(startEvent)
|
|
104
|
+
|
|
105
|
+
if (startEvent.isDefaultPrevented()) return
|
|
106
|
+
|
|
107
|
+
this.transitioning = 1
|
|
108
|
+
|
|
109
|
+
this.$element[method]('in')
|
|
110
|
+
|
|
111
|
+
$.support.transition && this.$element.hasClass('collapse') ?
|
|
112
|
+
this.$element.one($.support.transition.end, complete) :
|
|
113
|
+
complete()
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
, toggle: function () {
|
|
117
|
+
this[this.$element.hasClass('in') ? 'hide' : 'show']()
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
/* COLLAPSIBLE PLUGIN DEFINITION
|
|
124
|
+
* ============================== */
|
|
125
|
+
|
|
126
|
+
$.fn.collapse = function (option) {
|
|
127
|
+
return this.each(function () {
|
|
128
|
+
var $this = $(this)
|
|
129
|
+
, data = $this.data('collapse')
|
|
130
|
+
, options = typeof option == 'object' && option
|
|
131
|
+
if (!data) $this.data('collapse', (data = new Collapse(this, options)))
|
|
132
|
+
if (typeof option == 'string') data[option]()
|
|
133
|
+
})
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
$.fn.collapse.defaults = {
|
|
137
|
+
toggle: true
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
$.fn.collapse.Constructor = Collapse
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
/* COLLAPSIBLE DATA-API
|
|
144
|
+
* ==================== */
|
|
145
|
+
|
|
146
|
+
$(function () {
|
|
147
|
+
$('body').on('click.collapse.data-api', '[data-toggle=collapse]', function ( e ) {
|
|
148
|
+
var $this = $(this), href
|
|
149
|
+
, target = $this.attr('data-target')
|
|
150
|
+
|| e.preventDefault()
|
|
151
|
+
|| (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') //strip for ie7
|
|
152
|
+
, option = $(target).data('collapse') ? 'toggle' : $this.data()
|
|
153
|
+
$(target).collapse(option)
|
|
154
|
+
})
|
|
155
|
+
})
|
|
156
|
+
|
|
157
|
+
}(window.jQuery);
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
/* ============================================================
|
|
2
|
+
* bootstrap-dropdown.js v2.0.3
|
|
3
|
+
* http://twitter.github.com/bootstrap/javascript.html#dropdowns
|
|
4
|
+
* ============================================================
|
|
5
|
+
* Copyright 2012 Twitter, Inc.
|
|
6
|
+
*
|
|
7
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
8
|
+
* you may not use this file except in compliance with the License.
|
|
9
|
+
* You may obtain a copy of the License at
|
|
10
|
+
*
|
|
11
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
+
*
|
|
13
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
14
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
15
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
16
|
+
* See the License for the specific language governing permissions and
|
|
17
|
+
* limitations under the License.
|
|
18
|
+
* ============================================================ */
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
!function ($) {
|
|
22
|
+
|
|
23
|
+
"use strict"; // jshint ;_;
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
/* DROPDOWN CLASS DEFINITION
|
|
27
|
+
* ========================= */
|
|
28
|
+
|
|
29
|
+
var toggle = '[data-toggle="dropdown"]'
|
|
30
|
+
, Dropdown = function (element) {
|
|
31
|
+
var $el = $(element).on('click.dropdown.data-api', this.toggle)
|
|
32
|
+
$('html').on('click.dropdown.data-api', function () {
|
|
33
|
+
$el.parent().removeClass('open')
|
|
34
|
+
})
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
Dropdown.prototype = {
|
|
38
|
+
|
|
39
|
+
constructor: Dropdown
|
|
40
|
+
|
|
41
|
+
, toggle: function (e) {
|
|
42
|
+
var $this = $(this)
|
|
43
|
+
, $parent
|
|
44
|
+
, selector
|
|
45
|
+
, isActive
|
|
46
|
+
|
|
47
|
+
if ($this.is('.disabled, :disabled')) return
|
|
48
|
+
|
|
49
|
+
selector = $this.attr('data-target')
|
|
50
|
+
|
|
51
|
+
if (!selector) {
|
|
52
|
+
selector = $this.attr('href')
|
|
53
|
+
selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
$parent = $(selector)
|
|
57
|
+
$parent.length || ($parent = $this.parent())
|
|
58
|
+
|
|
59
|
+
isActive = $parent.hasClass('open')
|
|
60
|
+
|
|
61
|
+
clearMenus()
|
|
62
|
+
|
|
63
|
+
if (!isActive) $parent.toggleClass('open')
|
|
64
|
+
|
|
65
|
+
return false
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
function clearMenus() {
|
|
71
|
+
$(toggle).parent().removeClass('open')
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
/* DROPDOWN PLUGIN DEFINITION
|
|
76
|
+
* ========================== */
|
|
77
|
+
|
|
78
|
+
$.fn.dropdown = function (option) {
|
|
79
|
+
return this.each(function () {
|
|
80
|
+
var $this = $(this)
|
|
81
|
+
, data = $this.data('dropdown')
|
|
82
|
+
if (!data) $this.data('dropdown', (data = new Dropdown(this)))
|
|
83
|
+
if (typeof option == 'string') data[option].call($this)
|
|
84
|
+
})
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
$.fn.dropdown.Constructor = Dropdown
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
/* APPLY TO STANDARD DROPDOWN ELEMENTS
|
|
91
|
+
* =================================== */
|
|
92
|
+
|
|
93
|
+
$(function () {
|
|
94
|
+
$('html').on('click.dropdown.data-api', clearMenus)
|
|
95
|
+
$('body')
|
|
96
|
+
.on('click.dropdown', '.dropdown form', function (e) { e.stopPropagation() })
|
|
97
|
+
.on('click.dropdown.data-api', toggle, Dropdown.prototype.toggle)
|
|
98
|
+
})
|
|
99
|
+
|
|
100
|
+
}(window.jQuery);
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
/* ========================================================
|
|
2
|
+
* bootstrap-tab.js v2.1.1
|
|
3
|
+
* http://twitter.github.com/bootstrap/javascript.html#tabs
|
|
4
|
+
* ========================================================
|
|
5
|
+
* Copyright 2012 Twitter, Inc.
|
|
6
|
+
*
|
|
7
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
8
|
+
* you may not use this file except in compliance with the License.
|
|
9
|
+
* You may obtain a copy of the License at
|
|
10
|
+
*
|
|
11
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
+
*
|
|
13
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
14
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
15
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
16
|
+
* See the License for the specific language governing permissions and
|
|
17
|
+
* limitations under the License.
|
|
18
|
+
* ======================================================== */
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
!function ($) {
|
|
22
|
+
|
|
23
|
+
"use strict"; // jshint ;_;
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
/* TAB CLASS DEFINITION
|
|
27
|
+
* ==================== */
|
|
28
|
+
|
|
29
|
+
var Tab = function (element) {
|
|
30
|
+
this.element = $(element)
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
Tab.prototype = {
|
|
34
|
+
|
|
35
|
+
constructor: Tab
|
|
36
|
+
|
|
37
|
+
, show: function () {
|
|
38
|
+
var $this = this.element
|
|
39
|
+
, $ul = $this.closest('ul:not(.dropdown-menu)')
|
|
40
|
+
, selector = $this.attr('data-target')
|
|
41
|
+
, previous
|
|
42
|
+
, $target
|
|
43
|
+
, e
|
|
44
|
+
|
|
45
|
+
if (!selector) {
|
|
46
|
+
selector = $this.attr('href')
|
|
47
|
+
selector = selector && selector.replace(/.*(?=#[^\s]*$)/, '') //strip for ie7
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
if ( $this.parent('li').hasClass('active') ) return
|
|
51
|
+
|
|
52
|
+
previous = $ul.find('.active a').last()[0]
|
|
53
|
+
|
|
54
|
+
e = $.Event('show', {
|
|
55
|
+
relatedTarget: previous
|
|
56
|
+
})
|
|
57
|
+
|
|
58
|
+
$this.trigger(e)
|
|
59
|
+
|
|
60
|
+
if (e.isDefaultPrevented()) return
|
|
61
|
+
|
|
62
|
+
$target = $(selector)
|
|
63
|
+
|
|
64
|
+
this.activate($this.parent('li'), $ul)
|
|
65
|
+
this.activate($target, $target.parent(), function () {
|
|
66
|
+
$this.trigger({
|
|
67
|
+
type: 'shown'
|
|
68
|
+
, relatedTarget: previous
|
|
69
|
+
})
|
|
70
|
+
})
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
, activate: function ( element, container, callback) {
|
|
74
|
+
var $active = container.find('> .active')
|
|
75
|
+
, transition = callback
|
|
76
|
+
&& $.support.transition
|
|
77
|
+
&& $active.hasClass('fade')
|
|
78
|
+
|
|
79
|
+
function next() {
|
|
80
|
+
$active
|
|
81
|
+
.removeClass('active')
|
|
82
|
+
.find('> .dropdown-menu > .active')
|
|
83
|
+
.removeClass('active')
|
|
84
|
+
|
|
85
|
+
element.addClass('active')
|
|
86
|
+
|
|
87
|
+
if (transition) {
|
|
88
|
+
element[0].offsetWidth // reflow for transition
|
|
89
|
+
element.addClass('in')
|
|
90
|
+
} else {
|
|
91
|
+
element.removeClass('fade')
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
if ( element.parent('.dropdown-menu') ) {
|
|
95
|
+
element.closest('li.dropdown').addClass('active')
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
callback && callback()
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
transition ?
|
|
102
|
+
$active.one($.support.transition.end, next) :
|
|
103
|
+
next()
|
|
104
|
+
|
|
105
|
+
$active.removeClass('in')
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
/* TAB PLUGIN DEFINITION
|
|
111
|
+
* ===================== */
|
|
112
|
+
|
|
113
|
+
$.fn.tab = function ( option ) {
|
|
114
|
+
return this.each(function () {
|
|
115
|
+
var $this = $(this)
|
|
116
|
+
, data = $this.data('tab')
|
|
117
|
+
if (!data) $this.data('tab', (data = new Tab(this)))
|
|
118
|
+
if (typeof option == 'string') data[option]()
|
|
119
|
+
})
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
$.fn.tab.Constructor = Tab
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
/* TAB DATA-API
|
|
126
|
+
* ============ */
|
|
127
|
+
|
|
128
|
+
$(function () {
|
|
129
|
+
$('body').on('click.tab.data-api', '[data-toggle="tab"], [data-toggle="pill"]', function (e) {
|
|
130
|
+
e.preventDefault()
|
|
131
|
+
$(this).tab('show')
|
|
132
|
+
})
|
|
133
|
+
})
|
|
134
|
+
|
|
135
|
+
}(window.jQuery);
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
/* ===================================================
|
|
2
|
+
* bootstrap-transition.js v2.0.3
|
|
3
|
+
* http://twitter.github.com/bootstrap/javascript.html#transitions
|
|
4
|
+
* ===================================================
|
|
5
|
+
* Copyright 2012 Twitter, Inc.
|
|
6
|
+
*
|
|
7
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
8
|
+
* you may not use this file except in compliance with the License.
|
|
9
|
+
* You may obtain a copy of the License at
|
|
10
|
+
*
|
|
11
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
12
|
+
*
|
|
13
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
14
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
15
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
16
|
+
* See the License for the specific language governing permissions and
|
|
17
|
+
* limitations under the License.
|
|
18
|
+
* ========================================================== */
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
!function ($) {
|
|
22
|
+
|
|
23
|
+
$(function () {
|
|
24
|
+
|
|
25
|
+
"use strict"; // jshint ;_;
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
/* CSS TRANSITION SUPPORT (http://www.modernizr.com/)
|
|
29
|
+
* ======================================================= */
|
|
30
|
+
|
|
31
|
+
$.support.transition = (function () {
|
|
32
|
+
|
|
33
|
+
var transitionEnd = (function () {
|
|
34
|
+
|
|
35
|
+
var el = document.createElement('bootstrap')
|
|
36
|
+
, transEndEventNames = {
|
|
37
|
+
'WebkitTransition' : 'webkitTransitionEnd'
|
|
38
|
+
, 'MozTransition' : 'transitionend'
|
|
39
|
+
, 'OTransition' : 'oTransitionEnd'
|
|
40
|
+
, 'msTransition' : 'MSTransitionEnd'
|
|
41
|
+
, 'transition' : 'transitionend'
|
|
42
|
+
}
|
|
43
|
+
, name
|
|
44
|
+
|
|
45
|
+
for (name in transEndEventNames){
|
|
46
|
+
if (el.style[name] !== undefined) {
|
|
47
|
+
return transEndEventNames[name]
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
}())
|
|
52
|
+
|
|
53
|
+
return transitionEnd && {
|
|
54
|
+
end: transitionEnd
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
})()
|
|
58
|
+
|
|
59
|
+
})
|
|
60
|
+
|
|
61
|
+
}(window.jQuery);
|