middleman-core 4.4.3 → 5.0.0.rc.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gemtest +0 -0
- data/cucumber.yml +2 -2
- data/lib/middleman-core/application.rb +22 -24
- data/lib/middleman-core/builder.rb +221 -84
- data/lib/middleman-core/callback_manager.rb +1 -1
- data/lib/middleman-core/config_context.rb +3 -3
- data/lib/middleman-core/configuration.rb +20 -8
- data/lib/middleman-core/contracts.rb +38 -3
- data/lib/middleman-core/core_extensions/collections/lazy_root.rb +1 -1
- data/lib/middleman-core/core_extensions/collections/lazy_step.rb +9 -9
- data/lib/middleman-core/core_extensions/collections/pagination.rb +6 -7
- data/lib/middleman-core/core_extensions/collections.rb +7 -9
- data/lib/middleman-core/core_extensions/data/controller.rb +109 -0
- data/lib/middleman-core/core_extensions/data/proxies/array.rb +74 -0
- data/lib/middleman-core/core_extensions/data/proxies/base.rb +82 -0
- data/lib/middleman-core/core_extensions/data/proxies/hash.rb +32 -0
- data/lib/middleman-core/core_extensions/data/stores/base.rb +42 -0
- data/lib/middleman-core/core_extensions/data/stores/in_memory.rb +52 -0
- data/lib/middleman-core/core_extensions/data/stores/local_file.rb +92 -0
- data/lib/middleman-core/core_extensions/data.rb +33 -204
- data/lib/middleman-core/core_extensions/default_helpers.rb +37 -46
- data/lib/middleman-core/core_extensions/external_helpers.rb +1 -1
- data/lib/middleman-core/core_extensions/file_watcher.rb +2 -4
- data/lib/middleman-core/core_extensions/front_matter.rb +28 -17
- data/lib/middleman-core/core_extensions/i18n.rb +107 -50
- data/lib/middleman-core/core_extensions/rendering.rb +6 -0
- data/lib/middleman-core/core_extensions/routing.rb +21 -18
- data/lib/middleman-core/core_extensions.rb +3 -9
- data/lib/middleman-core/data_proxy.rb +69 -0
- data/lib/middleman-core/dependencies/edge.rb +27 -0
- data/lib/middleman-core/dependencies/graph.rb +144 -0
- data/lib/middleman-core/dependencies/vertices/data_collection_path_vertex.rb +78 -0
- data/lib/middleman-core/dependencies/vertices/data_collection_vertex.rb +67 -0
- data/lib/middleman-core/dependencies/vertices/file_vertex.rb +65 -0
- data/lib/middleman-core/dependencies/vertices/vertex.rb +82 -0
- data/lib/middleman-core/dependencies/vertices.rb +18 -0
- data/lib/middleman-core/dependencies.rb +131 -0
- data/lib/middleman-core/dns_resolver/basic_network_resolver.rb +6 -4
- data/lib/middleman-core/dns_resolver/hosts_resolver.rb +2 -2
- data/lib/middleman-core/dns_resolver/local_link_resolver.rb +3 -3
- data/lib/middleman-core/dns_resolver/network_resolver.rb +2 -2
- data/lib/middleman-core/dns_resolver.rb +7 -5
- data/lib/middleman-core/extension.rb +39 -42
- data/lib/middleman-core/extension_manager.rb +8 -4
- data/lib/middleman-core/extensions/asset_hash.rb +48 -51
- data/lib/middleman-core/extensions/asset_host.rb +30 -18
- data/lib/middleman-core/extensions/automatic_alt_tags.rb +6 -4
- data/lib/middleman-core/extensions/automatic_image_sizes.rb +9 -7
- data/lib/middleman-core/extensions/cache_buster.rb +21 -8
- data/lib/middleman-core/extensions/directory_indexes.rb +14 -14
- data/lib/middleman-core/extensions/external_pipeline.rb +14 -9
- data/lib/middleman-core/extensions/gzip.rb +16 -11
- data/lib/middleman-core/extensions/lorem.rb +15 -14
- data/lib/middleman-core/extensions/minify_css.rb +58 -96
- data/lib/middleman-core/extensions/minify_javascript.rb +65 -109
- data/lib/middleman-core/extensions/relative_assets.rb +30 -19
- data/lib/middleman-core/extensions.rb +14 -16
- data/lib/middleman-core/file_renderer.rb +20 -24
- data/lib/middleman-core/filter.rb +56 -0
- data/lib/middleman-core/inline_url_filter.rb +76 -0
- data/lib/middleman-core/load_paths.rb +13 -14
- data/lib/middleman-core/logger.rb +6 -13
- data/lib/middleman-core/meta_pages/assets/glyphicons-halflings.png +0 -0
- data/lib/middleman-core/meta_pages/assets/sitemap.js +0 -0
- data/lib/middleman-core/meta_pages/sitemap_resource.rb +0 -2
- data/lib/middleman-core/meta_pages/sitemap_tree.rb +1 -1
- data/lib/middleman-core/meta_pages.rb +2 -2
- data/lib/middleman-core/preview_server/checks.rb +15 -4
- data/lib/middleman-core/preview_server/information.rb +22 -23
- data/lib/middleman-core/preview_server/network_interface_inventory.rb +3 -3
- data/lib/middleman-core/preview_server/server_information.rb +5 -5
- data/lib/middleman-core/preview_server/server_information_callback_proxy.rb +1 -1
- data/lib/middleman-core/preview_server/server_ip_address.rb +15 -6
- data/lib/middleman-core/preview_server/server_url.rb +39 -11
- data/lib/middleman-core/preview_server/tcp_port_prober.rb +1 -1
- data/lib/middleman-core/preview_server.rb +37 -31
- data/lib/middleman-core/rack.rb +7 -12
- data/lib/middleman-core/renderers/coffee_script.rb +2 -2
- data/lib/middleman-core/renderers/erb.rb +1 -1
- data/lib/middleman-core/renderers/haml.rb +2 -7
- data/lib/middleman-core/renderers/kramdown.rb +0 -4
- data/lib/middleman-core/renderers/less.rb +1 -1
- data/lib/middleman-core/renderers/liquid.rb +9 -12
- data/lib/middleman-core/renderers/markdown.rb +8 -10
- data/lib/middleman-core/renderers/redcarpet.rb +3 -4
- data/lib/middleman-core/renderers/sass.rb +20 -7
- data/lib/middleman-core/renderers/sass_functions.rb +14 -8
- data/lib/middleman-core/renderers/slim.rb +2 -2
- data/lib/middleman-core/renderers/stylus.rb +10 -0
- data/lib/middleman-core/sitemap/extensions/ignores.rb +5 -9
- data/lib/middleman-core/sitemap/extensions/import.rb +16 -17
- data/lib/middleman-core/sitemap/extensions/move_file.rb +7 -5
- data/lib/middleman-core/sitemap/extensions/on_disk.rb +10 -9
- data/lib/middleman-core/sitemap/extensions/proxies.rb +27 -20
- data/lib/middleman-core/sitemap/extensions/redirects.rb +4 -4
- data/lib/middleman-core/sitemap/extensions/request_endpoints.rb +4 -5
- data/lib/middleman-core/sitemap/extensions/traversal.rb +75 -29
- data/lib/middleman-core/sitemap/resource.rb +169 -54
- data/lib/middleman-core/sitemap/resource_list_container.rb +248 -0
- data/lib/middleman-core/sitemap/store.rb +29 -103
- data/lib/middleman-core/sources/source_watcher.rb +27 -21
- data/lib/middleman-core/sources.rb +40 -27
- data/lib/middleman-core/step_definitions/builder_steps.rb +73 -12
- data/lib/middleman-core/step_definitions/commandline_steps.rb +10 -6
- data/lib/middleman-core/step_definitions/middleman_steps.rb +24 -14
- data/lib/middleman-core/step_definitions/server_steps.rb +19 -18
- data/lib/middleman-core/template_context.rb +55 -23
- data/lib/middleman-core/template_renderer.rb +68 -42
- data/lib/middleman-core/util/binary.rb +307 -3
- data/lib/middleman-core/util/data.rb +13 -41
- data/lib/middleman-core/util/empty_hash.rb +3 -0
- data/lib/middleman-core/util/files.rb +35 -9
- data/lib/middleman-core/util/paths.rb +75 -71
- data/lib/middleman-core/util/rack.rb +8 -7
- data/lib/middleman-core/util/uri_templates.rb +2 -5
- data/lib/middleman-core/util.rb +2 -4
- data/lib/middleman-core/version.rb +1 -1
- data/lib/middleman-core.rb +5 -3
- data/middleman-core.gemspec +15 -15
- metadata +73 -1153
- data/features/asset_hash.feature +0 -340
- data/features/asset_host.feature +0 -55
- data/features/auto_layout.feature +0 -36
- data/features/automatic_alt_tags.feature +0 -8
- data/features/automatic_directory_matcher.feature +0 -32
- data/features/automatic_image_sizes.feature +0 -29
- data/features/builder.feature +0 -61
- data/features/cache_buster.feature +0 -56
- data/features/capture_html.feature +0 -18
- data/features/chained_templates.feature +0 -109
- data/features/clean_build.feature +0 -78
- data/features/coffee-script.feature +0 -22
- data/features/collections.feature +0 -265
- data/features/console.feature +0 -11
- data/features/content_for.feature +0 -16
- data/features/content_type.feature +0 -46
- data/features/custom-source.feature +0 -7
- data/features/custom_layout_engines.feature +0 -8
- data/features/custom_layouts.feature +0 -84
- data/features/data.feature +0 -111
- data/features/default-layout.feature +0 -90
- data/features/default_alt_tag.feature +0 -11
- data/features/directory_index.feature +0 -82
- data/features/dynamic_pages.feature +0 -136
- data/features/encoding_option.feature +0 -28
- data/features/extension_api_deprecations.feature +0 -10
- data/features/extension_hooks.feature +0 -13
- data/features/extensionless_text_files.feature +0 -24
- data/features/feature_params.feature +0 -6
- data/features/former_padrino_helpers.feature +0 -27
- data/features/front-matter-neighbor.feature +0 -157
- data/features/front-matter.feature +0 -87
- data/features/frontmatter_page_settings.feature +0 -43
- data/features/gzip.feature +0 -51
- data/features/helpers_auto_javascript_include_tag.feature +0 -53
- data/features/helpers_auto_stylesheet_link_tag.feature +0 -48
- data/features/helpers_content_tag.feature +0 -16
- data/features/helpers_external.feature +0 -12
- data/features/helpers_form_tag.feature +0 -26
- data/features/helpers_link_to.feature +0 -195
- data/features/helpers_lorem.feature +0 -6
- data/features/helpers_page_classes.feature +0 -32
- data/features/helpers_select_tag.feature +0 -17
- data/features/helpers_url_for.feature +0 -152
- data/features/i18n_builder.feature +0 -164
- data/features/i18n_force_locale.feature +0 -13
- data/features/i18n_link_to.feature +0 -213
- data/features/i18n_mixed_sources.feature +0 -39
- data/features/i18n_partials.feature +0 -23
- data/features/i18n_preview.feature +0 -252
- data/features/ignore.feature +0 -206
- data/features/ignore_already_minified.feature +0 -47
- data/features/image_srcset_paths.feature +0 -7
- data/features/import_files.feature +0 -15
- data/features/layouts_dir.feature +0 -38
- data/features/liquid.feature +0 -14
- data/features/markdown.feature +0 -23
- data/features/markdown_kramdown.feature +0 -55
- data/features/markdown_kramdown_in_haml.feature +0 -42
- data/features/markdown_kramdown_in_slim.feature +0 -42
- data/features/markdown_redcarpet.feature +0 -167
- data/features/markdown_redcarpet_in_haml.feature +0 -41
- data/features/markdown_redcarpet_in_slim.feature +0 -41
- data/features/minify_css.feature +0 -205
- data/features/minify_javascript.feature +0 -266
- data/features/missing-tilt-lib.feature +0 -20
- data/features/more-clean_build.feature +0 -14
- data/features/more-extensionless_text_files.feature +0 -28
- data/features/more-frontmatter_page_settings.feature +0 -42
- data/features/more-ignore.feature +0 -62
- data/features/more-sitemap_traversal.feature +0 -83
- data/features/more-wildcard_page_helper.feature +0 -10
- data/features/mount_rack.feature +0 -65
- data/features/move_files.feature +0 -44
- data/features/multiple-sources.feature +0 -35
- data/features/nested_layouts.feature +0 -58
- data/features/page-id.feature +0 -74
- data/features/paginate.feature +0 -204
- data/features/partials.feature +0 -64
- data/features/preview_changes.feature +0 -29
- data/features/proxy_pages.feature +0 -84
- data/features/redirects.feature +0 -61
- data/features/relative_assets.feature +0 -148
- data/features/relative_assets_helpers_only.feature +0 -125
- data/features/sass-assets-paths.feature +0 -11
- data/features/sass_in_slim.feature +0 -40
- data/features/sass_partials.feature +0 -54
- data/features/scss-support.feature +0 -17
- data/features/sitemap_traversal.feature +0 -83
- data/features/slim.feature +0 -81
- data/features/strip_url.feature +0 -40
- data/features/support/env.rb +0 -12
- data/features/support/preserve_mime_types.rb +0 -7
- data/features/template-key-collision.feature +0 -26
- data/features/tilde_directories.feature +0 -14
- data/features/unicode_filecontents.feature +0 -13
- data/features/unicode_filenames.feature +0 -36
- data/features/v4_extension_callbacks.feature +0 -8
- data/features/wildcard_page_helper.feature +0 -10
- data/fixtures/asset-hash-app/config.rb +0 -6
- data/fixtures/asset-hash-app/lib/middleware.rb +0 -16
- data/fixtures/asset-hash-app/source/api.json.erb +0 -1
- data/fixtures/asset-hash-app/source/apple-touch-icon.png +0 -0
- data/fixtures/asset-hash-app/source/favicon.ico +0 -0
- data/fixtures/asset-hash-app/source/fonts/fontawesome-webfont.woff +0 -0
- data/fixtures/asset-hash-app/source/fonts/fontawesome-webfont.woff2 +0 -0
- data/fixtures/asset-hash-app/source/images/100px.gif +0 -0
- data/fixtures/asset-hash-app/source/images/100px.jpg +0 -0
- data/fixtures/asset-hash-app/source/images/100px.png +0 -0
- data/fixtures/asset-hash-app/source/images/200px.jpg +0 -0
- data/fixtures/asset-hash-app/source/images/300px.jpg +0 -0
- data/fixtures/asset-hash-app/source/index.html.erb +0 -314
- data/fixtures/asset-hash-app/source/javascripts/application.js +0 -8
- data/fixtures/asset-hash-app/source/layout.erb +0 -18
- data/fixtures/asset-hash-app/source/other.html.erb +0 -5
- data/fixtures/asset-hash-app/source/partials.html.erb +0 -1
- data/fixtures/asset-hash-app/source/slim.html.slim +0 -8
- data/fixtures/asset-hash-app/source/stylesheets/_partial.sass +0 -2
- data/fixtures/asset-hash-app/source/stylesheets/fragment.css.scss +0 -7
- data/fixtures/asset-hash-app/source/stylesheets/site.css.scss +0 -4
- data/fixtures/asset-hash-app/source/stylesheets/uses_fonts.css +0 -4
- data/fixtures/asset-hash-app/source/stylesheets/uses_partials.css.sass +0 -4
- data/fixtures/asset-hash-app/source/subdir/api.json.erb +0 -1
- data/fixtures/asset-hash-app/source/subdir/index.html.erb +0 -317
- data/fixtures/asset-hash-host-app/source/images/100px.gif +0 -0
- data/fixtures/asset-hash-host-app/source/images/100px.jpg +0 -0
- data/fixtures/asset-hash-host-app/source/images/100px.png +0 -0
- data/fixtures/asset-hash-host-app/source/index.html.erb +0 -9
- data/fixtures/asset-hash-host-app/source/layout.erb +0 -17
- data/fixtures/asset-hash-host-app/source/other.html.erb +0 -5
- data/fixtures/asset-hash-host-app/source/stylesheets/fragment.css.scss +0 -7
- data/fixtures/asset-hash-host-app/source/stylesheets/site.css.scss +0 -4
- data/fixtures/asset-hash-host-app/source/subdir/index.html.erb +0 -6
- data/fixtures/asset-hash-minified-app/config.rb +0 -5
- data/fixtures/asset-hash-minified-app/source/images/100px.jpg +0 -0
- data/fixtures/asset-hash-minified-app/source/javascripts/jquery.min.js +0 -5
- data/fixtures/asset-hash-minified-app/source/stylesheets/test.css +0 -3
- data/fixtures/asset-hash-prefix/config.rb +0 -7
- data/fixtures/asset-hash-prefix/lib/middleware.rb +0 -16
- data/fixtures/asset-hash-prefix/source/index.html.erb +0 -6
- data/fixtures/asset-hash-prefix/source/javascripts/application.js +0 -2
- data/fixtures/asset-hash-prefix/source/javascripts/application.js.map +0 -1
- data/fixtures/asset-hash-prefix/source/layout.erb +0 -17
- data/fixtures/asset-hash-remove-filename/config.rb +0 -9
- data/fixtures/asset-hash-remove-filename/source/index.html.erb +0 -6
- data/fixtures/asset-hash-remove-filename/source/javascripts/application.js +0 -2
- data/fixtures/asset-hash-remove-filename/source/javascripts/application.js.map +0 -1
- data/fixtures/asset-hash-remove-filename/source/layout.erb +0 -17
- data/fixtures/asset-hash-source-map/config.rb +0 -6
- data/fixtures/asset-hash-source-map/lib/middleware.rb +0 -16
- data/fixtures/asset-hash-source-map/source/index.html.erb +0 -6
- data/fixtures/asset-hash-source-map/source/javascripts/application.js +0 -2
- data/fixtures/asset-hash-source-map/source/javascripts/application.js.map +0 -1
- data/fixtures/asset-hash-source-map/source/layout.erb +0 -17
- data/fixtures/asset-host-app/config.rb +0 -1
- data/fixtures/asset-host-app/source/.htaccess +0 -1
- data/fixtures/asset-host-app/source/asset_host.html.erb +0 -55
- data/fixtures/asset-host-app/source/images/blank.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank0.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank1.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank10.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank100.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank101.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank1010.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank102.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank1020.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank1021.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank1022.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank1023.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank1024.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank103.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank1030.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank1031.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank1032.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank1033.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank1034.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank104.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank1043.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank1054.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank2.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank20.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank21.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank22.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank23.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank24.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank3.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank30.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank31.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank32.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank33.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank34.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank4.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank43.gif +0 -0
- data/fixtures/asset-host-app/source/images/blank54.gif +0 -0
- data/fixtures/asset-host-app/source/javascripts/asset_host.js +0 -2
- data/fixtures/asset-host-app/source/stylesheets/asset_host.css.sass +0 -48
- data/fixtures/auto-css-app/config.rb +0 -9
- data/fixtures/auto-css-app/source/auto-css/auto-css.html.erb +0 -1
- data/fixtures/auto-css-app/source/auto-css/index.html.erb +0 -1
- data/fixtures/auto-css-app/source/auto-css/sub/auto-css.html.erb +0 -1
- data/fixtures/auto-css-app/source/auto-css.html.erb +0 -1
- data/fixtures/auto-css-app/source/stylesheets/auto-css/auto-css.css +0 -3
- data/fixtures/auto-css-app/source/stylesheets/auto-css/index.css +0 -0
- data/fixtures/auto-css-app/source/stylesheets/auto-css/sub/auto-css.css +0 -3
- data/fixtures/auto-css-app/source/stylesheets/auto-css.css +0 -3
- data/fixtures/auto-js-app/config.rb +0 -9
- data/fixtures/auto-js-app/source/auto-js/auto-js.html.erb +0 -1
- data/fixtures/auto-js-app/source/auto-js/index.html.erb +0 -1
- data/fixtures/auto-js-app/source/auto-js/sub/auto-js.html.erb +0 -1
- data/fixtures/auto-js-app/source/auto-js.html.erb +0 -1
- data/fixtures/auto-js-app/source/javascripts/auto-js/auto-js.js +0 -1
- data/fixtures/auto-js-app/source/javascripts/auto-js/index.js +0 -1
- data/fixtures/auto-js-app/source/javascripts/auto-js/sub/auto-js.js +0 -1
- data/fixtures/auto-js-app/source/javascripts/auto-js.js +0 -1
- data/fixtures/auto-js-directory-index-app/config.rb +0 -1
- data/fixtures/auto-js-directory-index-app/source/auto-js.html.erb +0 -1
- data/fixtures/auto-js-directory-index-app/source/javascripts/auto-js.js +0 -1
- data/fixtures/automatic-alt-tags-app/config.rb +0 -0
- data/fixtures/automatic-alt-tags-app/source/auto-image-sizes.html.erb +0 -1
- data/fixtures/automatic-alt-tags-app/source/images/blank.gif +0 -0
- data/fixtures/automatic-directory-matcher-app/config.rb +0 -1
- data/fixtures/automatic-directory-matcher-app/source/root-plain.html +0 -1
- data/fixtures/automatic-directory-matcher-app/source/root.html.erb +0 -1
- data/fixtures/automatic-directory-matcher-app/source/sub--sub--sub-plain.html +0 -1
- data/fixtures/automatic-directory-matcher-app/source/sub--sub--sub.html.erb +0 -1
- data/fixtures/automatic-directory-matcher-app/source/sub--sub-plain.html +0 -1
- data/fixtures/automatic-directory-matcher-app/source/sub--sub.html.erb +0 -1
- data/fixtures/automatic-image-size-app/config.rb +0 -0
- data/fixtures/automatic-image-size-app/source/auto-image-sizes.html.erb +0 -1
- data/fixtures/automatic-image-size-app/source/images/blank.gif +0 -0
- data/fixtures/automatic-image-size-app/source/markdown-sizes.html.markdown +0 -1
- data/fixtures/basic-data-app/config.rb +0 -2
- data/fixtures/basic-data-app/data/test.yml +0 -4
- data/fixtures/basic-data-app/data/test2.json +0 -4
- data/fixtures/basic-data-app/data/test3.toml +0 -7
- data/fixtures/basic-data-app/source/data.html.erb +0 -5
- data/fixtures/basic-data-app/source/data3.html.erb +0 -5
- data/fixtures/basic-data-app/source/data4.html.erb +0 -5
- data/fixtures/build-with-errors-app/config.rb +0 -1
- data/fixtures/build-with-errors-app/source/index.html.erb +0 -1
- data/fixtures/cache-buster-app/config.rb +0 -0
- data/fixtures/cache-buster-app/source/cache-buster.html.erb +0 -3
- data/fixtures/cache-buster-app/source/images/blank.gif +0 -0
- data/fixtures/cache-buster-app/source/stylesheets/relative_assets.css.sass +0 -2
- data/fixtures/cache-buster-app/source/stylesheets/site.css.sass +0 -3
- data/fixtures/capture-html-app/config.rb +0 -5
- data/fixtures/capture-html-app/source/capture_html_erb.html.erb +0 -5
- data/fixtures/capture-html-app/source/capture_html_haml.html.haml +0 -4
- data/fixtures/capture-html-app/source/capture_html_slim.html.slim +0 -4
- data/fixtures/capture-html-app/source/layouts/capture_html.erb +0 -4
- data/fixtures/chained-app/config.rb +0 -0
- data/fixtures/chained-app/data/article.yml +0 -2
- data/fixtures/chained-app/source/index.html.str.erb +0 -8
- data/fixtures/chained-app/source/test.erb.combobreaker.str.erb +0 -8
- data/fixtures/clean-app/config-complications.rb +0 -9
- data/fixtures/clean-app/config-empty.rb +0 -0
- data/fixtures/clean-app/config-hidden-dir-after.rb +0 -5
- data/fixtures/clean-app/config-hidden-dir-before.rb +0 -1
- data/fixtures/clean-app/config.rb +0 -9
- data/fixtures/clean-app/source/index.html.erb +0 -1
- data/fixtures/clean-app/source/layout.erb +0 -9
- data/fixtures/clean-app/source/layouts/custom.erb +0 -8
- data/fixtures/clean-app/source/real/index.html.erb +0 -5
- data/fixtures/clean-app/source/real.html +0 -1
- data/fixtures/clean-app/source/should_be_ignored.html +0 -1
- data/fixtures/clean-app/source/should_be_ignored2.html +0 -1
- data/fixtures/clean-app/source/should_be_ignored3.html +0 -1
- data/fixtures/clean-app/source/static.html +0 -1
- data/fixtures/clean-dir-app/config.rb +0 -2
- data/fixtures/clean-dir-app/source/about.html +0 -1
- data/fixtures/clean-nested-app/config.rb +0 -1
- data/fixtures/clean-nested-app/source/about.html +0 -1
- data/fixtures/clean-nested-app/source/nested/nested.html +0 -1
- data/fixtures/coffeescript-app/config.rb +0 -0
- data/fixtures/coffeescript-app/source/inline-coffeescript.html.haml +0 -3
- data/fixtures/coffeescript-app/source/javascripts/broken-coffee.js.coffee +0 -3
- data/fixtures/coffeescript-app/source/javascripts/coffee_test.js.coffee +0 -3
- data/fixtures/collections-app/source/blog1/2011-01-01-new-article.html.markdown +0 -7
- data/fixtures/collections-app/source/blog1/2011-01-02-another-article.html.markdown +0 -9
- data/fixtures/collections-app/source/blog2/2011-01-01-new-article.html.markdown +0 -9
- data/fixtures/collections-app/source/blog2/2011-01-02-another-article.html.markdown +0 -8
- data/fixtures/content-for-app/config.rb +0 -5
- data/fixtures/content-for-app/source/content_for_erb.html.erb +0 -5
- data/fixtures/content-for-app/source/content_for_haml.html.haml +0 -4
- data/fixtures/content-for-app/source/content_for_slim.html.slim +0 -5
- data/fixtures/content-for-app/source/layouts/content_for.erb +0 -4
- data/fixtures/content-type-app/config.rb +0 -1
- data/fixtures/content-type-app/source/.htaccess +0 -1
- data/fixtures/content-type-app/source/README +0 -1
- data/fixtures/content-type-app/source/images/blank.gif +0 -0
- data/fixtures/content-type-app/source/index.html +0 -1
- data/fixtures/content-type-app/source/index.php +0 -1
- data/fixtures/content-type-app/source/javascripts/app.js +0 -1
- data/fixtures/content-type-app/source/override.html +0 -5
- data/fixtures/content-type-app/source/stylesheets/site.css +0 -1
- data/fixtures/csspie/config.rb +0 -0
- data/fixtures/csspie/source/stylesheets/PIE.htc +0 -96
- data/fixtures/custom-layout-app/config.rb +0 -1
- data/fixtures/custom-layout-app/source/index.html.erb +0 -1
- data/fixtures/custom-layout-app/source/layout.str +0 -9
- data/fixtures/custom-layout-app2/config.rb +0 -0
- data/fixtures/custom-layout-app2/source/custom-layout-dir/index.html.erb +0 -1
- data/fixtures/custom-layout-app2/source/custom-layout.html.erb +0 -1
- data/fixtures/custom-layout-app2/source/layouts/custom.erb +0 -8
- data/fixtures/custom-src-app/config.rb +0 -1
- data/fixtures/custom-src-app/src/index.html +0 -0
- data/fixtures/custom-src-app/src/layouts/layout.html.erb +0 -1
- data/fixtures/data-app/config.rb +0 -3
- data/fixtures/data-app/data/pages.yml +0 -6
- data/fixtures/data-app/source/index.html.erb +0 -1
- data/fixtures/data-app/source/layout.erb +0 -5
- data/fixtures/default-alt-tags-app/config.rb +0 -0
- data/fixtures/default-alt-tags-app/source/empty-alt-tag.html.erb +0 -1
- data/fixtures/default-alt-tags-app/source/images/blank.gif +0 -0
- data/fixtures/default-alt-tags-app/source/meaningful-alt-tag.html.erb +0 -1
- data/fixtures/different-engine-layout/config.rb +0 -0
- data/fixtures/different-engine-layout/source/index.haml +0 -1
- data/fixtures/different-engine-layout/source/index.html.str +0 -1
- data/fixtures/different-engine-layout/source/layout.erb +0 -9
- data/fixtures/different-engine-partial/config.rb +0 -0
- data/fixtures/different-engine-partial/source/index.html.erb +0 -1
- data/fixtures/different-engine-partial/source/layouts/layout.erb +0 -7
- data/fixtures/different-engine-partial/source/shared/_footer.str +0 -1
- data/fixtures/different-engine-partial/source/shared/_header.erb +0 -1
- data/fixtures/dynamic-pages-app/config.rb +0 -34
- data/fixtures/dynamic-pages-app/source/real/index.html.erb +0 -9
- data/fixtures/dynamic-pages-app/source/real.html +0 -1
- data/fixtures/dynamic-pages-app/source/should_be_ignored.html +0 -1
- data/fixtures/dynamic-pages-app/source/should_be_ignored2.html +0 -1
- data/fixtures/dynamic-pages-app/source/should_be_ignored3.html +0 -1
- data/fixtures/dynamic-pages-app/source/should_be_ignored4.html +0 -1
- data/fixtures/dynamic-pages-app/source/should_be_ignored5.html +0 -1
- data/fixtures/dynamic-pages-app/source/should_be_ignored6.html +0 -1
- data/fixtures/dynamic-pages-app/source/should_be_ignored7.html +0 -1
- data/fixtures/dynamic-pages-app/source/should_be_ignored8.html +0 -1
- data/fixtures/dynamic-pages-app/source/should_be_ignored9.html +0 -1
- data/fixtures/ember-cli-app/config.rb +0 -5
- data/fixtures/ember-cli-app/source/javascripts/file.js +0 -0
- data/fixtures/ember-cli-app/test-app/.bowerrc +0 -3
- data/fixtures/ember-cli-app/test-app/.gitignore +0 -17
- data/fixtures/ember-cli-app/test-app/.jshintrc +0 -32
- data/fixtures/ember-cli-app/test-app/Brocfile.js +0 -20
- data/fixtures/ember-cli-app/test-app/README.md +0 -25
- data/fixtures/ember-cli-app/test-app/app/app.js +0 -14
- data/fixtures/ember-cli-app/test-app/app/components/.gitkeep +0 -0
- data/fixtures/ember-cli-app/test-app/app/controllers/.gitkeep +0 -0
- data/fixtures/ember-cli-app/test-app/app/helpers/.gitkeep +0 -0
- data/fixtures/ember-cli-app/test-app/app/index.html +0 -26
- data/fixtures/ember-cli-app/test-app/app/models/.gitkeep +0 -0
- data/fixtures/ember-cli-app/test-app/app/router.js +0 -10
- data/fixtures/ember-cli-app/test-app/app/routes/.gitkeep +0 -0
- data/fixtures/ember-cli-app/test-app/app/styles/.gitkeep +0 -0
- data/fixtures/ember-cli-app/test-app/app/styles/app.css +0 -3
- data/fixtures/ember-cli-app/test-app/app/templates/.gitkeep +0 -0
- data/fixtures/ember-cli-app/test-app/app/templates/application.hbs +0 -3
- data/fixtures/ember-cli-app/test-app/app/templates/components/.gitkeep +0 -0
- data/fixtures/ember-cli-app/test-app/app/views/.gitkeep +0 -0
- data/fixtures/ember-cli-app/test-app/bower.json +0 -16
- data/fixtures/ember-cli-app/test-app/config/environment.js +0 -38
- data/fixtures/ember-cli-app/test-app/package.json +0 -31
- data/fixtures/ember-cli-app/test-app/public/.gitkeep +0 -0
- data/fixtures/ember-cli-app/test-app/testem.json +0 -6
- data/fixtures/ember-cli-app/test-app/tests/.jshintrc +0 -73
- data/fixtures/ember-cli-app/test-app/tests/helpers/resolver.js +0 -9
- data/fixtures/ember-cli-app/test-app/tests/helpers/start-app.js +0 -30
- data/fixtures/ember-cli-app/test-app/tests/index.html +0 -50
- data/fixtures/ember-cli-app/test-app/tests/test-helper.js +0 -6
- data/fixtures/ember-cli-app/test-app/tests/unit/.gitkeep +0 -0
- data/fixtures/empty-app/not-config.rb +0 -0
- data/fixtures/engine-matching-layout/config.rb +0 -0
- data/fixtures/engine-matching-layout/source/index.html.erb +0 -1
- data/fixtures/engine-matching-layout/source/layout.erb +0 -9
- data/fixtures/env-app/config.rb +0 -0
- data/fixtures/env-app/environments/development.rb +0 -1
- data/fixtures/env-app/environments/production.rb +0 -2
- data/fixtures/env-app/source/index.html.erb +0 -3
- data/fixtures/env-app/source/stylesheets/site.css.scss +0 -3
- data/fixtures/extension-api-deprecations-app/config.rb +0 -11
- data/fixtures/extension-api-deprecations-app/source/index.html.erb +0 -1
- data/fixtures/extension-api-deprecations-app/source/layouts/layout.erb +0 -3
- data/fixtures/extension-hooks-app/config.rb +0 -39
- data/fixtures/extension-hooks-app/source/index.html.erb +0 -9
- data/fixtures/extensionless-text-files-app/config.rb +0 -0
- data/fixtures/extensionless-text-files-app/source/CNAME +0 -1
- data/fixtures/extensionless-text-files-app/source/LICENSE +0 -1
- data/fixtures/extensionless-text-files-app/source/README +0 -1
- data/fixtures/extensionless-text-files-app/source/index.html +0 -1
- data/fixtures/external-helpers/config.rb +0 -4
- data/fixtures/external-helpers/helpers/derp.rb +0 -3
- data/fixtures/external-helpers/helpers/four_helpers.rb +0 -3
- data/fixtures/external-helpers/helpers/one_helper.rb +0 -3
- data/fixtures/external-helpers/helpers/yet_another_thingy.rb +0 -3
- data/fixtures/external-helpers/lib/hello_helper.rb +0 -5
- data/fixtures/external-helpers/source/automatic.html.erb +0 -1
- data/fixtures/external-helpers/source/index.html.erb +0 -1
- data/fixtures/external-pipeline-error/config.rb +0 -5
- data/fixtures/external-pipeline-error/source/javascripts/file.js +0 -0
- data/fixtures/feature-params-app/config.rb +0 -16
- data/fixtures/feature-params-app/source/index.html.erb +0 -2
- data/fixtures/fonts-app/config.rb +0 -0
- data/fixtures/fonts-app/source/fonts/StMarie-Thin.otf +0 -0
- data/fixtures/fonts-app/source/fonts/blank/blank.otf +0 -0
- data/fixtures/fonts-app/source/stylesheets/fonts.css.scss +0 -6
- data/fixtures/frontmatter-app/config.rb +0 -1
- data/fixtures/frontmatter-app/source/front-matter-2.php.erb +0 -7
- data/fixtures/frontmatter-app/source/front-matter-change.html.erb +0 -5
- data/fixtures/frontmatter-app/source/front-matter-encoding.html.erb +0 -7
- data/fixtures/frontmatter-app/source/front-matter-haml.html.haml +0 -6
- data/fixtures/frontmatter-app/source/front-matter-line-2.html.erb +0 -10
- data/fixtures/frontmatter-app/source/front-matter-pandoc.html.md.erb +0 -13
- data/fixtures/frontmatter-app/source/raw-front-matter-toml.html +0 -6
- data/fixtures/frontmatter-app/source/raw-front-matter.html +0 -6
- data/fixtures/frontmatter-app/source/raw-front-matter.php +0 -6
- data/fixtures/frontmatter-neighbor-app/config.rb +0 -30
- data/fixtures/frontmatter-neighbor-app/source/front-matter-2.php.erb +0 -2
- data/fixtures/frontmatter-neighbor-app/source/front-matter-2.php.erb.frontmatter +0 -4
- data/fixtures/frontmatter-neighbor-app/source/front-matter-change.html.erb +0 -1
- data/fixtures/frontmatter-neighbor-app/source/front-matter-change.html.erb.frontmatter +0 -4
- data/fixtures/frontmatter-neighbor-app/source/front-matter-encoding.html.erb +0 -1
- data/fixtures/frontmatter-neighbor-app/source/front-matter-encoding.html.erb.frontmatter +0 -5
- data/fixtures/frontmatter-neighbor-app/source/raw-front-matter-toml.html +0 -1
- data/fixtures/frontmatter-neighbor-app/source/raw-front-matter-toml.html.frontmatter +0 -4
- data/fixtures/frontmatter-neighbor-app/source/raw-front-matter.html +0 -1
- data/fixtures/frontmatter-neighbor-app/source/raw-front-matter.html.frontmatter +0 -4
- data/fixtures/frontmatter-neighbor-app/source/raw-front-matter.php +0 -1
- data/fixtures/frontmatter-neighbor-app/source/raw-front-matter.php.frontmatter +0 -4
- data/fixtures/frontmatter-settings-app/config.rb +0 -4
- data/fixtures/frontmatter-settings-app/source/alternate_layout.html.erb +0 -5
- data/fixtures/frontmatter-settings-app/source/ignored.html.erb +0 -5
- data/fixtures/frontmatter-settings-app/source/layouts/alternate.erb +0 -3
- data/fixtures/frontmatter-settings-app/source/layouts/override.erb +0 -1
- data/fixtures/frontmatter-settings-app/source/override_layout.html.erb +0 -4
- data/fixtures/frontmatter-settings-app/source/page_mentioned.html.erb +0 -4
- data/fixtures/frontmatter-settings-neighbor-app/config.rb +0 -40
- data/fixtures/frontmatter-settings-neighbor-app/source/alternate_layout.html.erb +0 -1
- data/fixtures/frontmatter-settings-neighbor-app/source/alternate_layout.html.erb.frontmatter +0 -3
- data/fixtures/frontmatter-settings-neighbor-app/source/ignored.html.erb +0 -1
- data/fixtures/frontmatter-settings-neighbor-app/source/ignored.html.erb.frontmatter +0 -3
- data/fixtures/frontmatter-settings-neighbor-app/source/layouts/alternate.erb +0 -3
- data/fixtures/frontmatter-settings-neighbor-app/source/layouts/override.erb +0 -1
- data/fixtures/frontmatter-settings-neighbor-app/source/override_layout.html.erb +0 -1
- data/fixtures/frontmatter-settings-neighbor-app/source/override_layout.html.erb.frontmatter +0 -3
- data/fixtures/frontmatter-settings-neighbor-app/source/page_mentioned.html.erb +0 -1
- data/fixtures/frontmatter-settings-neighbor-app/source/page_mentioned.html.erb.frontmatter +0 -3
- data/fixtures/generator-test/config.rb +0 -70
- data/fixtures/generator-test/source/index.html.erb +0 -10
- data/fixtures/glob-app/config.rb +0 -1
- data/fixtures/glob-app/source/index.html.erb +0 -4
- data/fixtures/glob-app/source/stylesheets/site.css.str +0 -3
- data/fixtures/gzip-app/config.rb +0 -1
- data/fixtures/gzip-app/source/index.html +0 -0
- data/fixtures/gzip-app/source/javascripts/test.js +0 -1
- data/fixtures/gzip-app/source/stylesheets/test.css +0 -1
- data/fixtures/i-8859-1-app/config.rb +0 -1
- data/fixtures/i-8859-1-app/source/index.html.erb +0 -1
- data/fixtures/i18n-alt-root-app/locales/en.yml +0 -4
- data/fixtures/i18n-alt-root-app/locales/es.yml +0 -7
- data/fixtures/i18n-alt-root-app/source/lang_data/hello.html.erb +0 -1
- data/fixtures/i18n-alt-root-app/source/lang_data/index.html.erb +0 -1
- data/fixtures/i18n-alt-root-app/source/layout.erb +0 -1
- data/fixtures/i18n-default-app/locales/en.yml +0 -4
- data/fixtures/i18n-default-app/locales/es.yml +0 -8
- data/fixtures/i18n-default-app/source/localizable/index.html.erb +0 -5
- data/fixtures/i18n-force-locale/config.rb +0 -11
- data/fixtures/i18n-force-locale/locales/en.yml +0 -3
- data/fixtures/i18n-force-locale/locales/es.yml +0 -3
- data/fixtures/i18n-force-locale/locales/fr.yml +0 -3
- data/fixtures/i18n-force-locale/source/index.html.haml +0 -2
- data/fixtures/i18n-mixed-sources/config.rb +0 -1
- data/fixtures/i18n-mixed-sources/locales/en.yml +0 -4
- data/fixtures/i18n-mixed-sources/locales/es.yml +0 -4
- data/fixtures/i18n-mixed-sources/source/a/sub.html.erb +0 -9
- data/fixtures/i18n-mixed-sources/source/b/index.html.erb +0 -9
- data/fixtures/i18n-mixed-sources/source/index.html.erb +0 -9
- data/fixtures/i18n-mixed-sources/source/localizable/a/index.html.erb +0 -9
- data/fixtures/i18n-mixed-sources/source/localizable/b/sub.html.erb +0 -9
- data/fixtures/i18n-mixed-sources/source/localizable/index.html.erb +0 -9
- data/fixtures/i18n-nested-app/locales/en/more.yml +0 -3
- data/fixtures/i18n-nested-app/locales/en.yml +0 -4
- data/fixtures/i18n-nested-app/locales/es/mucho.yml +0 -3
- data/fixtures/i18n-nested-app/locales/es.yml +0 -4
- data/fixtures/i18n-nested-app/source/localizable/index.html.erb +0 -3
- data/fixtures/i18n-test-app/data/defaults_en.yml +0 -0
- data/fixtures/i18n-test-app/data/defaults_es.yml +0 -0
- data/fixtures/i18n-test-app/data/en_defaults.yml +0 -0
- data/fixtures/i18n-test-app/locales/en.yml +0 -4
- data/fixtures/i18n-test-app/locales/es.yml +0 -9
- data/fixtures/i18n-test-app/source/CNAME +0 -1
- data/fixtures/i18n-test-app/source/_country.en.erb +0 -1
- data/fixtures/i18n-test-app/source/_country.es.erb +0 -1
- data/fixtures/i18n-test-app/source/_site.erb +0 -1
- data/fixtures/i18n-test-app/source/images/president.en.svg +0 -1
- data/fixtures/i18n-test-app/source/images/president.es.svg +0 -1
- data/fixtures/i18n-test-app/source/layouts/layout.erb +0 -8
- data/fixtures/i18n-test-app/source/localizable/_state.en.erb +0 -1
- data/fixtures/i18n-test-app/source/localizable/_state.es.erb +0 -1
- data/fixtures/i18n-test-app/source/localizable/hello.html.erb +0 -1
- data/fixtures/i18n-test-app/source/localizable/images/flag.en.svg +0 -1
- data/fixtures/i18n-test-app/source/localizable/images/flag.es.svg +0 -1
- data/fixtures/i18n-test-app/source/localizable/index.html.erb +0 -1
- data/fixtures/i18n-test-app/source/localizable/morning.en.html.erb +0 -1
- data/fixtures/i18n-test-app/source/localizable/morning.es.html.erb +0 -1
- data/fixtures/i18n-test-app/source/localizable/one.en.html.md +0 -1
- data/fixtures/i18n-test-app/source/localizable/one.es.html.md +0 -1
- data/fixtures/i18n-test-app/source/localizable/partials/_greeting.en.erb +0 -1
- data/fixtures/i18n-test-app/source/localizable/partials/_greeting.es.erb +0 -1
- data/fixtures/i18n-test-app/source/localizable/partials/index.html.erb +0 -8
- data/fixtures/i18n-test-app/source/password.txt +0 -1
- data/fixtures/i18n-test-app/source/stylesheets/site.css +0 -3
- data/fixtures/ignore-app/source/about.html.erb +0 -1
- data/fixtures/ignore-app/source/images/icon/messages.png +0 -0
- data/fixtures/ignore-app/source/images/pic.png +0 -0
- data/fixtures/ignore-app/source/images/portrait.jpg +0 -0
- data/fixtures/ignore-app/source/index.html.erb +0 -0
- data/fixtures/ignore-app/source/plain.html +0 -1
- data/fixtures/ignore-app/source/reports/another.html +0 -0
- data/fixtures/ignore-app/source/reports/index.html +0 -0
- data/fixtures/image-srcset-paths-app/image-srcset-paths.html.erb +0 -1
- data/fixtures/image-srcset-paths-app/images/blank.gif +0 -0
- data/fixtures/import-app/bower.json +0 -21
- data/fixtures/import-app/bower_components/jquery/.bower.json +0 -39
- data/fixtures/import-app/bower_components/jquery/MIT-LICENSE.txt +0 -21
- data/fixtures/import-app/bower_components/jquery/bower.json +0 -28
- data/fixtures/import-app/bower_components/jquery/dist/jquery.js +0 -9210
- data/fixtures/import-app/bower_components/jquery/dist/jquery.min.js +0 -5
- data/fixtures/import-app/bower_components/jquery/dist/jquery.min.map +0 -1
- data/fixtures/import-app/bower_components/jquery/src/ajax/jsonp.js +0 -89
- data/fixtures/import-app/bower_components/jquery/src/ajax/load.js +0 -75
- data/fixtures/import-app/bower_components/jquery/src/ajax/parseJSON.js +0 -13
- data/fixtures/import-app/bower_components/jquery/src/ajax/parseXML.js +0 -28
- data/fixtures/import-app/bower_components/jquery/src/ajax/script.js +0 -64
- data/fixtures/import-app/bower_components/jquery/src/ajax/var/nonce.js +0 -5
- data/fixtures/import-app/bower_components/jquery/src/ajax/var/rquery.js +0 -3
- data/fixtures/import-app/bower_components/jquery/src/ajax/xhr.js +0 -136
- data/fixtures/import-app/bower_components/jquery/src/ajax.js +0 -786
- data/fixtures/import-app/bower_components/jquery/src/attributes/attr.js +0 -141
- data/fixtures/import-app/bower_components/jquery/src/attributes/classes.js +0 -158
- data/fixtures/import-app/bower_components/jquery/src/attributes/prop.js +0 -94
- data/fixtures/import-app/bower_components/jquery/src/attributes/support.js +0 -35
- data/fixtures/import-app/bower_components/jquery/src/attributes/val.js +0 -161
- data/fixtures/import-app/bower_components/jquery/src/attributes.js +0 -11
- data/fixtures/import-app/bower_components/jquery/src/callbacks.js +0 -205
- data/fixtures/import-app/bower_components/jquery/src/core/access.js +0 -60
- data/fixtures/import-app/bower_components/jquery/src/core/init.js +0 -123
- data/fixtures/import-app/bower_components/jquery/src/core/parseHTML.js +0 -39
- data/fixtures/import-app/bower_components/jquery/src/core/ready.js +0 -97
- data/fixtures/import-app/bower_components/jquery/src/core/var/rsingleTag.js +0 -4
- data/fixtures/import-app/bower_components/jquery/src/core.js +0 -502
- data/fixtures/import-app/bower_components/jquery/src/css/addGetHookIf.js +0 -22
- data/fixtures/import-app/bower_components/jquery/src/css/curCSS.js +0 -57
- data/fixtures/import-app/bower_components/jquery/src/css/defaultDisplay.js +0 -70
- data/fixtures/import-app/bower_components/jquery/src/css/hiddenVisibleSelectors.js +0 -15
- data/fixtures/import-app/bower_components/jquery/src/css/support.js +0 -96
- data/fixtures/import-app/bower_components/jquery/src/css/swap.js +0 -28
- data/fixtures/import-app/bower_components/jquery/src/css/var/cssExpand.js +0 -3
- data/fixtures/import-app/bower_components/jquery/src/css/var/getStyles.js +0 -12
- data/fixtures/import-app/bower_components/jquery/src/css/var/isHidden.js +0 -13
- data/fixtures/import-app/bower_components/jquery/src/css/var/rmargin.js +0 -3
- data/fixtures/import-app/bower_components/jquery/src/css/var/rnumnonpx.js +0 -5
- data/fixtures/import-app/bower_components/jquery/src/css.js +0 -450
- data/fixtures/import-app/bower_components/jquery/src/data/Data.js +0 -181
- data/fixtures/import-app/bower_components/jquery/src/data/accepts.js +0 -20
- data/fixtures/import-app/bower_components/jquery/src/data/var/data_priv.js +0 -5
- data/fixtures/import-app/bower_components/jquery/src/data/var/data_user.js +0 -5
- data/fixtures/import-app/bower_components/jquery/src/data.js +0 -178
- data/fixtures/import-app/bower_components/jquery/src/deferred.js +0 -149
- data/fixtures/import-app/bower_components/jquery/src/deprecated.js +0 -13
- data/fixtures/import-app/bower_components/jquery/src/dimensions.js +0 -50
- data/fixtures/import-app/bower_components/jquery/src/effects/Tween.js +0 -114
- data/fixtures/import-app/bower_components/jquery/src/effects/animatedSelector.js +0 -13
- data/fixtures/import-app/bower_components/jquery/src/effects.js +0 -648
- data/fixtures/import-app/bower_components/jquery/src/event/ajax.js +0 -13
- data/fixtures/import-app/bower_components/jquery/src/event/alias.js +0 -39
- data/fixtures/import-app/bower_components/jquery/src/event/support.js +0 -9
- data/fixtures/import-app/bower_components/jquery/src/event.js +0 -868
- data/fixtures/import-app/bower_components/jquery/src/exports/amd.js +0 -24
- data/fixtures/import-app/bower_components/jquery/src/exports/global.js +0 -32
- data/fixtures/import-app/bower_components/jquery/src/intro.js +0 -44
- data/fixtures/import-app/bower_components/jquery/src/jquery.js +0 -37
- data/fixtures/import-app/bower_components/jquery/src/manipulation/_evalUrl.js +0 -18
- data/fixtures/import-app/bower_components/jquery/src/manipulation/support.js +0 -32
- data/fixtures/import-app/bower_components/jquery/src/manipulation/var/rcheckableType.js +0 -3
- data/fixtures/import-app/bower_components/jquery/src/manipulation.js +0 -580
- data/fixtures/import-app/bower_components/jquery/src/offset.js +0 -207
- data/fixtures/import-app/bower_components/jquery/src/outro.js +0 -1
- data/fixtures/import-app/bower_components/jquery/src/queue/delay.js +0 -22
- data/fixtures/import-app/bower_components/jquery/src/queue.js +0 -142
- data/fixtures/import-app/bower_components/jquery/src/selector-native.js +0 -172
- data/fixtures/import-app/bower_components/jquery/src/selector-sizzle.js +0 -14
- data/fixtures/import-app/bower_components/jquery/src/selector.js +0 -1
- data/fixtures/import-app/bower_components/jquery/src/serialize.js +0 -111
- data/fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.js +0 -2067
- data/fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.min.js +0 -3
- data/fixtures/import-app/bower_components/jquery/src/sizzle/dist/sizzle.min.map +0 -1
- data/fixtures/import-app/bower_components/jquery/src/traversing/findFilter.js +0 -100
- data/fixtures/import-app/bower_components/jquery/src/traversing/var/rneedsContext.js +0 -6
- data/fixtures/import-app/bower_components/jquery/src/traversing.js +0 -199
- data/fixtures/import-app/bower_components/jquery/src/var/arr.js +0 -3
- data/fixtures/import-app/bower_components/jquery/src/var/class2type.js +0 -4
- data/fixtures/import-app/bower_components/jquery/src/var/concat.js +0 -5
- data/fixtures/import-app/bower_components/jquery/src/var/hasOwn.js +0 -5
- data/fixtures/import-app/bower_components/jquery/src/var/indexOf.js +0 -5
- data/fixtures/import-app/bower_components/jquery/src/var/pnum.js +0 -3
- data/fixtures/import-app/bower_components/jquery/src/var/push.js +0 -5
- data/fixtures/import-app/bower_components/jquery/src/var/rnotwhite.js +0 -3
- data/fixtures/import-app/bower_components/jquery/src/var/slice.js +0 -5
- data/fixtures/import-app/bower_components/jquery/src/var/strundefined.js +0 -3
- data/fixtures/import-app/bower_components/jquery/src/var/support.js +0 -4
- data/fixtures/import-app/bower_components/jquery/src/var/toString.js +0 -5
- data/fixtures/import-app/bower_components/jquery/src/wrap.js +0 -79
- data/fixtures/import-app/config.rb +0 -7
- data/fixtures/import-app/source/test.html +0 -0
- data/fixtures/import-app/static.html +0 -1
- data/fixtures/indexable-app/config.rb +0 -5
- data/fixtures/indexable-app/source/.htaccess +0 -1
- data/fixtures/indexable-app/source/.htpasswd +0 -1
- data/fixtures/indexable-app/source/.nojekyll +0 -0
- data/fixtures/indexable-app/source/a_folder/needs_index.html +0 -1
- data/fixtures/indexable-app/source/evil spaces.html +0 -1
- data/fixtures/indexable-app/source/leave_me_alone.html +0 -1
- data/fixtures/indexable-app/source/needs_index.html +0 -1
- data/fixtures/indexable-app/source/regex_leave_me_alone2.html +0 -1
- data/fixtures/indexable-app/source/regular/index.html +0 -1
- data/fixtures/indexable-app/source/wildcard_leave_me_alone.html +0 -1
- data/fixtures/javascript-app/config.rb +0 -0
- data/fixtures/javascript-app/source/index.html +0 -17
- data/fixtures/large-build-app/config.rb +0 -3
- data/fixtures/large-build-app/source/.htaccess +0 -1
- data/fixtures/large-build-app/source/.htpasswd +0 -1
- data/fixtures/large-build-app/source/_partial.erb +0 -1
- data/fixtures/large-build-app/source/feed.xml.builder +0 -4
- data/fixtures/large-build-app/source/images/Child folder/regular_file(example).txt +0 -1
- data/fixtures/large-build-app/source/images/Read me (example).txt +0 -1
- data/fixtures/large-build-app/source/images/blank.gif +0 -0
- data/fixtures/large-build-app/source/index.html.erb +0 -1
- data/fixtures/large-build-app/source/layout.erb +0 -9
- data/fixtures/large-build-app/source/layouts/content_for.erb +0 -4
- data/fixtures/large-build-app/source/layouts/custom.erb +0 -8
- data/fixtures/large-build-app/source/link_test.html.erb +0 -5
- data/fixtures/large-build-app/source/other_layout.erb +0 -1
- data/fixtures/large-build-app/source/services/index.html.erb +0 -1
- data/fixtures/large-build-app/source/spaces in file.html.erb +0 -1
- data/fixtures/large-build-app/source/static.html +0 -1
- data/fixtures/large-build-app/source/stylesheets/static.css +0 -2
- data/fixtures/layouts-dir-app/source/ambiguous.html.erb +0 -5
- data/fixtures/layouts-dir-app/source/index.html.erb +0 -2
- data/fixtures/layouts-dir-app/source/layouts/layout.erb +0 -3
- data/fixtures/layouts-dir-app/source/layouts/other.erb +0 -3
- data/fixtures/layouts-dir-app/source/layouts2/layout.erb +0 -3
- data/fixtures/layouts-dir-app/source/nested/layouts2/layout.erb +0 -3
- data/fixtures/layouts-dir-app/source/other.erb +0 -3
- data/fixtures/link-to-app/config.rb +0 -0
- data/fixtures/link-to-app/source/link_to_erb.html.erb +0 -3
- data/fixtures/link-to-app/source/link_to_haml.html.haml +0 -2
- data/fixtures/link-to-app/source/link_to_slim.html.slim +0 -2
- data/fixtures/liquid-app/config.rb +0 -0
- data/fixtures/liquid-app/data/test.yml +0 -4
- data/fixtures/liquid-app/data/test2.json +0 -4
- data/fixtures/liquid-app/source/_liquid_partial.liquid +0 -1
- data/fixtures/liquid-app/source/data2.html.liquid +0 -2
- data/fixtures/liquid-app/source/liquid_master.html.liquid +0 -1
- data/fixtures/lorem-app/config.rb +0 -1
- data/fixtures/lorem-app/source/lorem.html.erb +0 -13
- data/fixtures/manual-layout/config.rb +0 -1
- data/fixtures/manual-layout/source/index.html.erb +0 -1
- data/fixtures/manual-layout/source/layouts/custom.erb +0 -9
- data/fixtures/manual-layout-missing/config.rb +0 -1
- data/fixtures/manual-layout-missing/source/index.html.erb +0 -1
- data/fixtures/manual-layout-override/config.rb +0 -3
- data/fixtures/manual-layout-override/source/index.html.erb +0 -1
- data/fixtures/manual-layout-override/source/layouts/another.erb +0 -9
- data/fixtures/manual-layout-override/source/layouts/custom.erb +0 -9
- data/fixtures/markdown-app/config.rb +0 -1
- data/fixtures/markdown-app/source/autolink.html.markdown +0 -5
- data/fixtures/markdown-app/source/fenced_code_blocks.html.markdown +0 -7
- data/fixtures/markdown-app/source/filter_html.html.markdown +0 -1
- data/fixtures/markdown-app/source/footnote.html.markdown +0 -3
- data/fixtures/markdown-app/source/hard_wrap.html.markdown +0 -2
- data/fixtures/markdown-app/source/highlighted.html.markdown +0 -1
- data/fixtures/markdown-app/source/images/blank.gif +0 -0
- data/fixtures/markdown-app/source/img.html.markdown +0 -1
- data/fixtures/markdown-app/source/indented_code_blocks.html.markdown +0 -5
- data/fixtures/markdown-app/source/index.html.markdown +0 -4
- data/fixtures/markdown-app/source/lax_spacing.html.markdown +0 -3
- data/fixtures/markdown-app/source/link.html.markdown +0 -1
- data/fixtures/markdown-app/source/mailto.html.markdown +0 -1
- data/fixtures/markdown-app/source/no_intra_emphasis.html.markdown +0 -5
- data/fixtures/markdown-app/source/prettify.html.markdown +0 -3
- data/fixtures/markdown-app/source/quote.html.markdown +0 -1
- data/fixtures/markdown-app/source/safe_links.html.markdown +0 -1
- data/fixtures/markdown-app/source/smarty_pants.html.markdown +0 -5
- data/fixtures/markdown-app/source/space_after_headers.html.markdown +0 -5
- data/fixtures/markdown-app/source/strikethrough.html.markdown +0 -5
- data/fixtures/markdown-app/source/superscript.html.markdown +0 -5
- data/fixtures/markdown-app/source/tables.html.markdown +0 -8
- data/fixtures/markdown-app/source/underline.html.markdown +0 -1
- data/fixtures/markdown-app/source/with_toc_data.html.markdown +0 -3
- data/fixtures/markdown-frontmatter-options-app/config.rb +0 -1
- data/fixtures/markdown-frontmatter-options-app/source/smarty_pants-default.html.markdown +0 -5
- data/fixtures/markdown-frontmatter-options-app/source/smarty_pants-off.html.markdown +0 -7
- data/fixtures/markdown-frontmatter-options-app/source/smarty_pants-on.html.markdown +0 -7
- data/fixtures/markdown-frontmatter-options-app/source/tables-default.html.markdown +0 -8
- data/fixtures/markdown-frontmatter-options-app/source/tables-off.html.markdown +0 -10
- data/fixtures/markdown-frontmatter-options-app/source/tables-on.html.markdown +0 -10
- data/fixtures/markdown-in-haml-app/config.rb +0 -0
- data/fixtures/markdown-in-haml-app/source/images/blank.gif +0 -0
- data/fixtures/markdown-in-haml-app/source/link_target.html.markdown +0 -4
- data/fixtures/markdown-in-slim-app/config.rb +0 -0
- data/fixtures/markdown-in-slim-app/source/images/blank.gif +0 -0
- data/fixtures/markdown-in-slim-app/source/link_target.html.markdown +0 -4
- data/fixtures/minify-css-app/source/inline-css.html.haml +0 -5
- data/fixtures/minify-css-app/source/inline-css.php +0 -8
- data/fixtures/minify-css-app/source/more-css/site.css +0 -3
- data/fixtures/minify-css-app/source/stylesheets/base/_base.scss +0 -15
- data/fixtures/minify-css-app/source/stylesheets/base/_buttons.scss +0 -35
- data/fixtures/minify-css-app/source/stylesheets/base/_forms.scss +0 -90
- data/fixtures/minify-css-app/source/stylesheets/base/_grid-settings.scss +0 -14
- data/fixtures/minify-css-app/source/stylesheets/base/_lists.scss +0 -31
- data/fixtures/minify-css-app/source/stylesheets/base/_tables.scss +0 -25
- data/fixtures/minify-css-app/source/stylesheets/base/_typography.scss +0 -49
- data/fixtures/minify-css-app/source/stylesheets/base/_variables.scss +0 -42
- data/fixtures/minify-css-app/source/stylesheets/bourbon/_bourbon-deprecated-upcoming.scss +0 -411
- data/fixtures/minify-css-app/source/stylesheets/bourbon/_bourbon.scss +0 -87
- data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-color.scss +0 -26
- data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-radius.scss +0 -48
- data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-style.scss +0 -25
- data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_border-width.scss +0 -25
- data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_buttons.scss +0 -64
- data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_clearfix.scss +0 -25
- data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_ellipsis.scss +0 -30
- data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_font-stacks.scss +0 -31
- data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_hide-text.scss +0 -27
- data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_margin.scss +0 -26
- data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_padding.scss +0 -26
- data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_position.scss +0 -48
- data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_prefixer.scss +0 -66
- data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_retina-image.scss +0 -25
- data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_size.scss +0 -51
- data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_text-inputs.scss +0 -113
- data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_timing-functions.scss +0 -34
- data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_triangle.scss +0 -63
- data/fixtures/minify-css-app/source/stylesheets/bourbon/addons/_word-wrap.scss +0 -29
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_animation.scss +0 -43
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_appearance.scss +0 -3
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_backface-visibility.scss +0 -3
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_background-image.scss +0 -42
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_background.scss +0 -55
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_border-image.scss +0 -59
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_calc.scss +0 -4
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_columns.scss +0 -47
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_filter.scss +0 -4
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_flex-box.scss +0 -287
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_font-face.scss +0 -24
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_font-feature-settings.scss +0 -4
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_hidpi-media-query.scss +0 -10
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_hyphens.scss +0 -4
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_image-rendering.scss +0 -14
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_keyframes.scss +0 -36
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_linear-gradient.scss +0 -38
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_perspective.scss +0 -8
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_placeholder.scss +0 -8
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_radial-gradient.scss +0 -39
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_selection.scss +0 -42
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_text-decoration.scss +0 -19
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_transform.scss +0 -15
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_transition.scss +0 -71
- data/fixtures/minify-css-app/source/stylesheets/bourbon/css3/_user-select.scss +0 -3
- data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_assign-inputs.scss +0 -11
- data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_contains-falsy.scss +0 -20
- data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_contains.scss +0 -26
- data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-length.scss +0 -11
- data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-light.scss +0 -21
- data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-number.scss +0 -11
- data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_is-size.scss +0 -13
- data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_modular-scale.scss +0 -69
- data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_px-to-em.scss +0 -13
- data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_px-to-rem.scss +0 -15
- data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_shade.scss +0 -24
- data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_strip-units.scss +0 -17
- data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_tint.scss +0 -24
- data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_transition-property-name.scss +0 -22
- data/fixtures/minify-css-app/source/stylesheets/bourbon/functions/_unpack.scss +0 -27
- data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_convert-units.scss +0 -21
- data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_directional-values.scss +0 -96
- data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_font-source-declaration.scss +0 -43
- data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_gradient-positions-parser.scss +0 -13
- data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-angle-parser.scss +0 -25
- data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-gradient-parser.scss +0 -41
- data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-positions-parser.scss +0 -61
- data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_linear-side-corner-parser.scss +0 -31
- data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-arg-parser.scss +0 -69
- data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-gradient-parser.scss +0 -50
- data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_radial-positions-parser.scss +0 -18
- data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_render-gradients.scss +0 -26
- data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_shape-size-stripper.scss +0 -10
- data/fixtures/minify-css-app/source/stylesheets/bourbon/helpers/_str-to-num.scss +0 -50
- data/fixtures/minify-css-app/source/stylesheets/bourbon/settings/_asset-pipeline.scss +0 -7
- data/fixtures/minify-css-app/source/stylesheets/bourbon/settings/_prefixer.scss +0 -9
- data/fixtures/minify-css-app/source/stylesheets/bourbon/settings/_px-to-em.scss +0 -1
- data/fixtures/minify-css-app/source/stylesheets/report.css +0 -1
- data/fixtures/minify-css-app/source/stylesheets/site.css.sass +0 -7
- data/fixtures/minify-css-app/source/stylesheets/site.xcss.sass +0 -6
- data/fixtures/minify-js-app/config.rb +0 -0
- data/fixtures/minify-js-app/source/inline-coffeescript.html.haml +0 -3
- data/fixtures/minify-js-app/source/inline-js.html.haml +0 -28
- data/fixtures/minify-js-app/source/inline-js.php +0 -22
- data/fixtures/minify-js-app/source/javascripts/coffee_test.js.coffee +0 -3
- data/fixtures/minify-js-app/source/javascripts/js_test.js +0 -8
- data/fixtures/minify-js-app/source/javascripts/js_test.xjs +0 -8
- data/fixtures/minify-js-app/source/more-js/other.js +0 -8
- data/fixtures/missing-tilt-library-app/config.rb +0 -2
- data/fixtures/missing-tilt-library-app/source/danger-zone/more-wiki.html.wiki +0 -1
- data/fixtures/missing-tilt-library-app/source/safe-zone/my-wiki.html.wiki +0 -1
- data/fixtures/missing-tilt-library-app/source/textile-source.html.textile +0 -1
- data/fixtures/missing-tilt-library-app/source/wiki-source.html.wiki +0 -1
- data/fixtures/more-extensionless-text-files-app/config.rb +0 -1
- data/fixtures/more-extensionless-text-files-app/source/CNAME +0 -1
- data/fixtures/more-extensionless-text-files-app/source/LICENSE +0 -1
- data/fixtures/more-extensionless-text-files-app/source/README +0 -1
- data/fixtures/more-extensionless-text-files-app/source/index.html +0 -1
- data/fixtures/more-frontmatter-settings-app/config.rb +0 -4
- data/fixtures/more-frontmatter-settings-app/source/alternate_layout.html.erb +0 -5
- data/fixtures/more-frontmatter-settings-app/source/ignored.html.erb +0 -5
- data/fixtures/more-frontmatter-settings-app/source/layouts/alternate.erb +0 -3
- data/fixtures/more-frontmatter-settings-app/source/no_index.html.erb +0 -5
- data/fixtures/more-ignore-app/source/about.html.erb +0 -1
- data/fixtures/more-ignore-app/source/images/icon/messages.png +0 -0
- data/fixtures/more-ignore-app/source/images/pic.png +0 -0
- data/fixtures/more-ignore-app/source/images/portrait.jpg +0 -0
- data/fixtures/more-ignore-app/source/index.html.erb +0 -0
- data/fixtures/more-ignore-app/source/plain.html +0 -1
- data/fixtures/more-ignore-app/source/reports/another.html +0 -0
- data/fixtures/more-ignore-app/source/reports/index.html +0 -0
- data/fixtures/more-markdown-app/source/layouts/layout.erb +0 -13
- data/fixtures/more-markdown-app/source/with_layout.html.markdown +0 -4
- data/fixtures/more-markdown-app/source/with_layout_erb.html.markdown.erb +0 -4
- data/fixtures/more-preview-app/config.rb +0 -0
- data/fixtures/more-preview-app/source/content.html.erb +0 -1
- data/fixtures/more-preview-app/source/layout.erb +0 -1
- data/fixtures/more-preview-app/source/stylesheets/_partial.sass +0 -2
- data/fixtures/more-preview-app/source/stylesheets/_partial2.css.sass +0 -2
- data/fixtures/more-preview-app/source/stylesheets/main.css.sass +0 -4
- data/fixtures/more-preview-app/source/stylesheets/main2.css.sass +0 -4
- data/fixtures/more-preview-app/source/stylesheets/plain.css.sass +0 -2
- data/fixtures/more-traversal-app/config.rb +0 -7
- data/fixtures/more-traversal-app/source/directory-indexed/sibling.html.erb +0 -3
- data/fixtures/more-traversal-app/source/directory-indexed/sibling2.html.erb +0 -3
- data/fixtures/more-traversal-app/source/directory-indexed/sub2/index.html.erb +0 -0
- data/fixtures/more-traversal-app/source/directory-indexed/sub3/deep.html.erb +0 -0
- data/fixtures/more-traversal-app/source/directory-indexed.html.erb +0 -0
- data/fixtures/more-traversal-app/source/index.html.erb +0 -0
- data/fixtures/more-traversal-app/source/layout.erb +0 -21
- data/fixtures/more-traversal-app/source/proxied.html.erb +0 -0
- data/fixtures/more-traversal-app/source/root.html.erb +0 -0
- data/fixtures/more-traversal-app/source/sub/index.html.erb +0 -0
- data/fixtures/more-traversal-app/source/sub/sibling.html.erb +0 -0
- data/fixtures/more-traversal-app/source/sub/sibling2.html.erb +0 -0
- data/fixtures/more-traversal-app/source/sub/sub2/index.html.erb +0 -0
- data/fixtures/more-traversal-app/source/sub/sub3/deep.html.erb +0 -0
- data/fixtures/multiple-data-sources-app/config.rb +0 -3
- data/fixtures/multiple-data-sources-app/data/data.yml +0 -1
- data/fixtures/multiple-data-sources-app/data/two.yml +0 -1
- data/fixtures/multiple-data-sources-app/data0/one.yml +0 -1
- data/fixtures/multiple-data-sources-app/data1/data1.yml +0 -1
- data/fixtures/multiple-data-sources-app/data1/one.yml +0 -1
- data/fixtures/multiple-data-sources-app/data2/data2.yml +0 -1
- data/fixtures/multiple-data-sources-app/data2/two.yml +0 -1
- data/fixtures/multiple-data-sources-app/source/index.html.erb +0 -5
- data/fixtures/multiple-layouts/config.rb +0 -0
- data/fixtures/multiple-layouts/source/index.html.erb +0 -1
- data/fixtures/multiple-layouts/source/layout.erb +0 -9
- data/fixtures/multiple-layouts/source/layout.str +0 -9
- data/fixtures/multiple-sources-app/config.rb +0 -3
- data/fixtures/multiple-sources-app/source/index.html.erb +0 -1
- data/fixtures/multiple-sources-app/source/override-in-two.html.erb +0 -1
- data/fixtures/multiple-sources-app/source0/override-in-one.html.erb +0 -1
- data/fixtures/multiple-sources-app/source1/index1.html.erb +0 -1
- data/fixtures/multiple-sources-app/source1/override-in-one.html.erb +0 -1
- data/fixtures/multiple-sources-app/source2/index2.html.erb +0 -1
- data/fixtures/multiple-sources-app/source2/override-in-two.html.erb +0 -1
- data/fixtures/multiple-sources-with-duplicate-file-names-app/config.rb +0 -2
- data/fixtures/multiple-sources-with-duplicate-file-names-app/source/index.html.erb +0 -1
- data/fixtures/multiple-sources-with-duplicate-file-names-app/source2/index.html.erb +0 -1
- data/fixtures/nested-data-app/config.rb +0 -1
- data/fixtures/nested-data-app/data/examples/deeper/stuff.yml +0 -1
- data/fixtures/nested-data-app/data/examples/more.yml +0 -1
- data/fixtures/nested-data-app/data/examples/test.yml +0 -1
- data/fixtures/nested-data-app/data/examples/withcontent.yaml +0 -11
- data/fixtures/nested-data-app/source/extracontent.html.haml.erb +0 -4
- data/fixtures/nested-data-app/source/test.html.erb +0 -3
- data/fixtures/nested-layout-app/config.rb +0 -1
- data/fixtures/nested-layout-app/source/another.html.markdown +0 -7
- data/fixtures/nested-layout-app/source/data-one.html.erb +0 -5
- data/fixtures/nested-layout-app/source/data-two.html.erb +0 -5
- data/fixtures/nested-layout-app/source/haml-test.html.markdown +0 -7
- data/fixtures/nested-layout-app/source/index.html.erb +0 -6
- data/fixtures/nested-layout-app/source/layouts/inner.erb +0 -7
- data/fixtures/nested-layout-app/source/layouts/inner_haml.haml +0 -7
- data/fixtures/nested-layout-app/source/layouts/inner_slim.slim +0 -7
- data/fixtures/nested-layout-app/source/layouts/master.erb +0 -9
- data/fixtures/nested-layout-app/source/layouts/master_haml.haml +0 -7
- data/fixtures/nested-layout-app/source/layouts/master_slim.slim +0 -7
- data/fixtures/nested-layout-app/source/layouts/outer.erb +0 -8
- data/fixtures/nested-layout-app/source/layouts/outer_haml.haml +0 -7
- data/fixtures/nested-layout-app/source/layouts/outer_slim.slim +0 -7
- data/fixtures/nested-layout-app/source/slim-test.html.markdown +0 -7
- data/fixtures/no-layout/config.rb +0 -0
- data/fixtures/no-layout/source/index.html.erb +0 -1
- data/fixtures/padrino-helpers-app/config.rb +0 -7
- data/fixtures/padrino-helpers-app/source/former_padrino_test.html.erb +0 -6
- data/fixtures/page-classes-app/config.rb +0 -2
- data/fixtures/page-classes-app/source/1-folder/1-inside-with-numeric.html.erb +0 -1
- data/fixtures/page-classes-app/source/1-starts-with-numeric.html.erb +0 -1
- data/fixtures/page-classes-app/source/2-starts-with-numeric-custom.html.erb +0 -1
- data/fixtures/page-classes-app/source/page-classes.html.erb +0 -1
- data/fixtures/page-classes-app/source/sub1/page-classes.html.erb +0 -1
- data/fixtures/page-classes-app/source/sub1/sub2/page-classes.html.erb +0 -1
- data/fixtures/page-helper-layout-block-app/config.rb +0 -6
- data/fixtures/page-helper-layout-block-app/source/index.html.erb +0 -1
- data/fixtures/page-helper-layout-block-app/source/layouts/alt.erb +0 -3
- data/fixtures/page-helper-layout-block-app/source/layouts/layout.erb +0 -3
- data/fixtures/page-helper-layout-block-app/source/path/child.html.erb +0 -1
- data/fixtures/page-helper-layout-block-app/source/path/index.html.erb +0 -1
- data/fixtures/page-id-app/config-proc.rb +0 -7
- data/fixtures/page-id-app/config.rb +0 -5
- data/fixtures/page-id-app/source/feed.xml.erb +0 -1
- data/fixtures/page-id-app/source/fm.html.erb +0 -5
- data/fixtures/page-id-app/source/folder/foldern.html.erb +0 -1
- data/fixtures/page-id-app/source/fourty-two.html.erb +0 -5
- data/fixtures/page-id-app/source/implicit.html.erb +0 -1
- data/fixtures/page-id-app/source/index.html.erb +0 -15
- data/fixtures/page-id-app/source/overwrites/from-default.html.erb +0 -1
- data/fixtures/page-id-app/source/overwrites/from-frontmatter.html.erb +0 -5
- data/fixtures/paginate-app/config.rb +0 -0
- data/fixtures/paginate-app/source/archive/2011/index.html.erb +0 -20
- data/fixtures/paginate-app/source/blog/2011-01-01-test-article.html.markdown +0 -6
- data/fixtures/paginate-app/source/blog/2011-01-02-test-article.html.markdown +0 -6
- data/fixtures/paginate-app/source/blog/2011-01-03-test-article.html.markdown +0 -6
- data/fixtures/paginate-app/source/blog/2011-01-04-test-article.html.markdown +0 -6
- data/fixtures/paginate-app/source/blog/2011-01-05-test-article.html.markdown +0 -6
- data/fixtures/paginate-app/source/blog/2011-02-01-test-article.html.markdown +0 -6
- data/fixtures/paginate-app/source/blog/2011-02-02-test-article.html.markdown +0 -6
- data/fixtures/paginate-app/source/index.html.erb +0 -15
- data/fixtures/paginate-app/source/tag.html.erb +0 -23
- data/fixtures/partial-chained_templates-app/config.rb +0 -0
- data/fixtures/partials-app/config.rb +0 -0
- data/fixtures/partials-app/source/_block.erb +0 -3
- data/fixtures/partials-app/source/_code_snippet.html +0 -1
- data/fixtures/partials-app/source/_locals.erb +0 -1
- data/fixtures/partials-app/source/_main.erb +0 -1
- data/fixtures/partials-app/source/_main.str +0 -1
- data/fixtures/partials-app/source/block.html.erb +0 -3
- data/fixtures/partials-app/source/images/tiger.svg +0 -725
- data/fixtures/partials-app/source/index.html.erb +0 -3
- data/fixtures/partials-app/source/index_missing.html.erb +0 -3
- data/fixtures/partials-app/source/locals.html.erb +0 -1
- data/fixtures/partials-app/source/second.html.str +0 -3
- data/fixtures/partials-app/source/shared/_footer.erb +0 -1
- data/fixtures/partials-app/source/shared/_header.erb +0 -1
- data/fixtures/partials-app/source/shared/_snippet.html.erb +0 -1
- data/fixtures/partials-app/source/static_underscore.html.erb +0 -1
- data/fixtures/partials-app/source/sub/_local.erb +0 -1
- data/fixtures/partials-app/source/sub/index.html.erb +0 -3
- data/fixtures/partials-app/source/svg.html.erb +0 -1
- data/fixtures/partials-app/source/using_snippet.html.erb +0 -1
- data/fixtures/passthrough-app/source/.htaccess +0 -1
- data/fixtures/passthrough-app/source/inline-coffeescript.html.haml +0 -3
- data/fixtures/passthrough-app/source/inline-css.html.haml +0 -4
- data/fixtures/passthrough-app/source/inline-js.html.haml +0 -28
- data/fixtures/passthrough-app/source/javascripts/coffee_test.js.coffee +0 -3
- data/fixtures/passthrough-app/source/javascripts/js_test.js +0 -8
- data/fixtures/passthrough-app/source/stylesheets/site.css.sass +0 -5
- data/fixtures/preview-app/config.rb +0 -0
- data/fixtures/preview-app/source/content.html.erb +0 -1
- data/fixtures/preview-app/source/layout.erb +0 -1
- data/fixtures/proxy-pages-app/config.rb +0 -18
- data/fixtures/proxy-pages-app/source/real/index.html.erb +0 -5
- data/fixtures/proxy-pages-app/source/real.html +0 -1
- data/fixtures/proxy-pages-app/source/should_be_ignored3.html +0 -1
- data/fixtures/proxy-pages-app/source/should_be_ignored6.html +0 -1
- data/fixtures/proxy-pages-app/source/should_be_ignored7.html +0 -1
- data/fixtures/proxy-pages-app/source/should_be_ignored8.html +0 -1
- data/fixtures/related-files-app/config.rb +0 -0
- data/fixtures/related-files-app/source/index.html.erb +0 -0
- data/fixtures/related-files-app/source/partials/_test.erb +0 -0
- data/fixtures/related-files-app/source/partials/_test2.haml +0 -0
- data/fixtures/related-files-app/source/stylesheets/_include3.sass +0 -0
- data/fixtures/related-files-app/source/stylesheets/_include4.scss +0 -0
- data/fixtures/related-files-app/source/stylesheets/include1.css +0 -0
- data/fixtures/related-files-app/source/stylesheets/include2.css.scss +0 -0
- data/fixtures/related-files-app/source/stylesheets/site.css.scss +0 -0
- data/fixtures/relative-app/config.rb +0 -0
- data/fixtures/relative-app/source/images/blank.gif +0 -0
- data/fixtures/relative-app/source/stylesheets/relative_assets.css.sass +0 -2
- data/fixtures/relative-assets-app/config.rb +0 -5
- data/fixtures/relative-assets-app/source/absolute_image_relative_css.html.erb +0 -9
- data/fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.eot +0 -0
- data/fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.svg +0 -0
- data/fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.ttf +0 -0
- data/fixtures/relative-assets-app/source/fonts/roboto/roboto-regular-webfont.woff +0 -0
- data/fixtures/relative-assets-app/source/images/blank.gif +0 -0
- data/fixtures/relative-assets-app/source/images/blank2.gif +0 -0
- data/fixtures/relative-assets-app/source/img/blank.gif +0 -0
- data/fixtures/relative-assets-app/source/javascripts/app.js +0 -3
- data/fixtures/relative-assets-app/source/javascripts/application.js +0 -8
- data/fixtures/relative-assets-app/source/relative_image.html.erb +0 -9
- data/fixtures/relative-assets-app/source/relative_image_absolute_css.html.erb +0 -9
- data/fixtures/relative-assets-app/source/stylesheets/fonts.css +0 -10
- data/fixtures/relative-assets-app/source/stylesheets/fonts2.css.scss +0 -10
- data/fixtures/relative-assets-app/source/stylesheets/relative_assets.css.sass +0 -2
- data/fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset-sass.sass +0 -1
- data/fixtures/sass-assets-path-app/assets/stylesheets/_shared-asset.scss +0 -1
- data/fixtures/sass-assets-path-app/config.rb +0 -4
- data/fixtures/sass-assets-path-app/my-vendor/stylesheets/_partial.sass +0 -2
- data/fixtures/sass-assets-path-app/source/stylesheets/plain.css.sass +0 -16
- data/fixtures/sass-in-slim-app/config.rb +0 -0
- data/fixtures/scss-app/config.rb +0 -0
- data/fixtures/scss-app/source/stylesheets/error.css.sass +0 -1
- data/fixtures/scss-app/source/stylesheets/layout.css.sass +0 -2
- data/fixtures/scss-app/source/stylesheets/site_scss.css.scss +0 -3
- data/fixtures/sinatra-app/config.rb +0 -14
- data/fixtures/sinatra-app/source/index.html.erb +0 -5
- data/fixtures/slim-content-for-app/config.rb +0 -0
- data/fixtures/slim-content-for-app/source/index.html.slim +0 -7
- data/fixtures/slim-content-for-app/source/layouts/layout.slim +0 -15
- data/fixtures/strip-url-app/config.rb +0 -0
- data/fixtures/strip-url-app/source/index.html.erb +0 -1
- data/fixtures/strip-url-app/source/other.html.erb +0 -1
- data/fixtures/strip-url-app/source/subdir/index.html.erb +0 -1
- data/fixtures/stylus-preview-app/config.rb +0 -0
- data/fixtures/stylus-preview-app/source/content.html.erb +0 -5
- data/fixtures/stylus-preview-app/source/stylesheets/_partial.styl +0 -2
- data/fixtures/stylus-preview-app/source/stylesheets/_partial2.css.styl +0 -2
- data/fixtures/stylus-preview-app/source/stylesheets/main.css.styl +0 -4
- data/fixtures/stylus-preview-app/source/stylesheets/main2.css.styl +0 -4
- data/fixtures/stylus-preview-app/source/stylesheets/plain.css.styl +0 -2
- data/fixtures/traversal-app/config.rb +0 -5
- data/fixtures/traversal-app/source/.htaccess +0 -0
- data/fixtures/traversal-app/source/directory-indexed/sibling.html.erb +0 -3
- data/fixtures/traversal-app/source/directory-indexed/sibling2.html.erb +0 -3
- data/fixtures/traversal-app/source/directory-indexed/sub2/index.html.erb +0 -0
- data/fixtures/traversal-app/source/directory-indexed/sub3/deep.html.erb +0 -0
- data/fixtures/traversal-app/source/directory-indexed.html.erb +0 -0
- data/fixtures/traversal-app/source/index.html.erb +0 -0
- data/fixtures/traversal-app/source/layout.erb +0 -21
- data/fixtures/traversal-app/source/proxied.html.erb +0 -0
- data/fixtures/traversal-app/source/root.html.erb +0 -0
- data/fixtures/traversal-app/source/sub/index.html.erb +0 -0
- data/fixtures/traversal-app/source/sub/sibling.html.erb +0 -0
- data/fixtures/traversal-app/source/sub/sibling2.html.erb +0 -0
- data/fixtures/traversal-app/source/sub/sub2/index.html.erb +0 -0
- data/fixtures/traversal-app/source/sub/sub3/deep.html.erb +0 -0
- data/fixtures/v4-extension-callbacks/config.rb +0 -42
- data/fixtures/v4-extension-callbacks/source/index.html.erb +0 -2
- data/fixtures/wildcard-app/config.rb +0 -1
- data/fixtures/wildcard-app/source/admin/index.html.erb +0 -1
- data/fixtures/wildcard-app/source/admin/page.html.erb +0 -1
- data/fixtures/wildcard-app/source/index.html.erb +0 -1
- data/fixtures/wildcard-app/source/layouts/admin.erb +0 -2
- data/fixtures/wildcard-app/source/layouts/layout.erb +0 -2
- data/fixtures/wildcard-directory-index-app/config.rb +0 -2
- data/fixtures/wildcard-directory-index-app/source/admin/index.html.erb +0 -1
- data/fixtures/wildcard-directory-index-app/source/admin/page.html.erb +0 -1
- data/fixtures/wildcard-directory-index-app/source/index.html.erb +0 -1
- data/fixtures/wildcard-directory-index-app/source/layouts/admin.erb +0 -2
- data/fixtures/wildcard-directory-index-app/source/layouts/layout.erb +0 -2
- data/lib/middleman-core/core_extensions/inline_url_rewriter.rb +0 -140
- data/spec/middleman-core/binary_spec/middleman +0 -0
- data/spec/middleman-core/binary_spec/middleman.png +0 -0
- data/spec/middleman-core/binary_spec/plain.txt +0 -1
- data/spec/middleman-core/binary_spec/stars.svgz +0 -0
- data/spec/middleman-core/binary_spec/unicode +0 -1
- data/spec/middleman-core/binary_spec/unicode.txt +0 -1
- data/spec/middleman-core/callbacks_spec.rb +0 -132
- data/spec/middleman-core/core_extensions/data_spec.rb +0 -147
- data/spec/middleman-core/dns_resolver_spec.rb +0 -102
- data/spec/middleman-core/preview_server/server_hostname_spec.rb +0 -39
- data/spec/middleman-core/preview_server/server_ip_address_spec.rb +0 -43
- data/spec/middleman-core/util_spec.rb +0 -230
- data/spec/spec_helper.rb +0 -31
- data/spec/support/given.rb +0 -42
@@ -1,786 +0,0 @@
|
|
1
|
-
define([
|
2
|
-
"./core",
|
3
|
-
"./var/rnotwhite",
|
4
|
-
"./ajax/var/nonce",
|
5
|
-
"./ajax/var/rquery",
|
6
|
-
"./core/init",
|
7
|
-
"./ajax/parseJSON",
|
8
|
-
"./ajax/parseXML",
|
9
|
-
"./deferred"
|
10
|
-
], function( jQuery, rnotwhite, nonce, rquery ) {
|
11
|
-
|
12
|
-
var
|
13
|
-
rhash = /#.*$/,
|
14
|
-
rts = /([?&])_=[^&]*/,
|
15
|
-
rheaders = /^(.*?):[ \t]*([^\r\n]*)$/mg,
|
16
|
-
// #7653, #8125, #8152: local protocol detection
|
17
|
-
rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,
|
18
|
-
rnoContent = /^(?:GET|HEAD)$/,
|
19
|
-
rprotocol = /^\/\//,
|
20
|
-
rurl = /^([\w.+-]+:)(?:\/\/(?:[^\/?#]*@|)([^\/?#:]*)(?::(\d+)|)|)/,
|
21
|
-
|
22
|
-
/* Prefilters
|
23
|
-
* 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)
|
24
|
-
* 2) These are called:
|
25
|
-
* - BEFORE asking for a transport
|
26
|
-
* - AFTER param serialization (s.data is a string if s.processData is true)
|
27
|
-
* 3) key is the dataType
|
28
|
-
* 4) the catchall symbol "*" can be used
|
29
|
-
* 5) execution will start with transport dataType and THEN continue down to "*" if needed
|
30
|
-
*/
|
31
|
-
prefilters = {},
|
32
|
-
|
33
|
-
/* Transports bindings
|
34
|
-
* 1) key is the dataType
|
35
|
-
* 2) the catchall symbol "*" can be used
|
36
|
-
* 3) selection will start with transport dataType and THEN go to "*" if needed
|
37
|
-
*/
|
38
|
-
transports = {},
|
39
|
-
|
40
|
-
// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression
|
41
|
-
allTypes = "*/".concat( "*" ),
|
42
|
-
|
43
|
-
// Document location
|
44
|
-
ajaxLocation = window.location.href,
|
45
|
-
|
46
|
-
// Segment location into parts
|
47
|
-
ajaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || [];
|
48
|
-
|
49
|
-
// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport
|
50
|
-
function addToPrefiltersOrTransports( structure ) {
|
51
|
-
|
52
|
-
// dataTypeExpression is optional and defaults to "*"
|
53
|
-
return function( dataTypeExpression, func ) {
|
54
|
-
|
55
|
-
if ( typeof dataTypeExpression !== "string" ) {
|
56
|
-
func = dataTypeExpression;
|
57
|
-
dataTypeExpression = "*";
|
58
|
-
}
|
59
|
-
|
60
|
-
var dataType,
|
61
|
-
i = 0,
|
62
|
-
dataTypes = dataTypeExpression.toLowerCase().match( rnotwhite ) || [];
|
63
|
-
|
64
|
-
if ( jQuery.isFunction( func ) ) {
|
65
|
-
// For each dataType in the dataTypeExpression
|
66
|
-
while ( (dataType = dataTypes[i++]) ) {
|
67
|
-
// Prepend if requested
|
68
|
-
if ( dataType[0] === "+" ) {
|
69
|
-
dataType = dataType.slice( 1 ) || "*";
|
70
|
-
(structure[ dataType ] = structure[ dataType ] || []).unshift( func );
|
71
|
-
|
72
|
-
// Otherwise append
|
73
|
-
} else {
|
74
|
-
(structure[ dataType ] = structure[ dataType ] || []).push( func );
|
75
|
-
}
|
76
|
-
}
|
77
|
-
}
|
78
|
-
};
|
79
|
-
}
|
80
|
-
|
81
|
-
// Base inspection function for prefilters and transports
|
82
|
-
function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {
|
83
|
-
|
84
|
-
var inspected = {},
|
85
|
-
seekingTransport = ( structure === transports );
|
86
|
-
|
87
|
-
function inspect( dataType ) {
|
88
|
-
var selected;
|
89
|
-
inspected[ dataType ] = true;
|
90
|
-
jQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {
|
91
|
-
var dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );
|
92
|
-
if ( typeof dataTypeOrTransport === "string" && !seekingTransport && !inspected[ dataTypeOrTransport ] ) {
|
93
|
-
options.dataTypes.unshift( dataTypeOrTransport );
|
94
|
-
inspect( dataTypeOrTransport );
|
95
|
-
return false;
|
96
|
-
} else if ( seekingTransport ) {
|
97
|
-
return !( selected = dataTypeOrTransport );
|
98
|
-
}
|
99
|
-
});
|
100
|
-
return selected;
|
101
|
-
}
|
102
|
-
|
103
|
-
return inspect( options.dataTypes[ 0 ] ) || !inspected[ "*" ] && inspect( "*" );
|
104
|
-
}
|
105
|
-
|
106
|
-
// A special extend for ajax options
|
107
|
-
// that takes "flat" options (not to be deep extended)
|
108
|
-
// Fixes #9887
|
109
|
-
function ajaxExtend( target, src ) {
|
110
|
-
var key, deep,
|
111
|
-
flatOptions = jQuery.ajaxSettings.flatOptions || {};
|
112
|
-
|
113
|
-
for ( key in src ) {
|
114
|
-
if ( src[ key ] !== undefined ) {
|
115
|
-
( flatOptions[ key ] ? target : ( deep || (deep = {}) ) )[ key ] = src[ key ];
|
116
|
-
}
|
117
|
-
}
|
118
|
-
if ( deep ) {
|
119
|
-
jQuery.extend( true, target, deep );
|
120
|
-
}
|
121
|
-
|
122
|
-
return target;
|
123
|
-
}
|
124
|
-
|
125
|
-
/* Handles responses to an ajax request:
|
126
|
-
* - finds the right dataType (mediates between content-type and expected dataType)
|
127
|
-
* - returns the corresponding response
|
128
|
-
*/
|
129
|
-
function ajaxHandleResponses( s, jqXHR, responses ) {
|
130
|
-
|
131
|
-
var ct, type, finalDataType, firstDataType,
|
132
|
-
contents = s.contents,
|
133
|
-
dataTypes = s.dataTypes;
|
134
|
-
|
135
|
-
// Remove auto dataType and get content-type in the process
|
136
|
-
while ( dataTypes[ 0 ] === "*" ) {
|
137
|
-
dataTypes.shift();
|
138
|
-
if ( ct === undefined ) {
|
139
|
-
ct = s.mimeType || jqXHR.getResponseHeader("Content-Type");
|
140
|
-
}
|
141
|
-
}
|
142
|
-
|
143
|
-
// Check if we're dealing with a known content-type
|
144
|
-
if ( ct ) {
|
145
|
-
for ( type in contents ) {
|
146
|
-
if ( contents[ type ] && contents[ type ].test( ct ) ) {
|
147
|
-
dataTypes.unshift( type );
|
148
|
-
break;
|
149
|
-
}
|
150
|
-
}
|
151
|
-
}
|
152
|
-
|
153
|
-
// Check to see if we have a response for the expected dataType
|
154
|
-
if ( dataTypes[ 0 ] in responses ) {
|
155
|
-
finalDataType = dataTypes[ 0 ];
|
156
|
-
} else {
|
157
|
-
// Try convertible dataTypes
|
158
|
-
for ( type in responses ) {
|
159
|
-
if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[0] ] ) {
|
160
|
-
finalDataType = type;
|
161
|
-
break;
|
162
|
-
}
|
163
|
-
if ( !firstDataType ) {
|
164
|
-
firstDataType = type;
|
165
|
-
}
|
166
|
-
}
|
167
|
-
// Or just use first one
|
168
|
-
finalDataType = finalDataType || firstDataType;
|
169
|
-
}
|
170
|
-
|
171
|
-
// If we found a dataType
|
172
|
-
// We add the dataType to the list if needed
|
173
|
-
// and return the corresponding response
|
174
|
-
if ( finalDataType ) {
|
175
|
-
if ( finalDataType !== dataTypes[ 0 ] ) {
|
176
|
-
dataTypes.unshift( finalDataType );
|
177
|
-
}
|
178
|
-
return responses[ finalDataType ];
|
179
|
-
}
|
180
|
-
}
|
181
|
-
|
182
|
-
/* Chain conversions given the request and the original response
|
183
|
-
* Also sets the responseXXX fields on the jqXHR instance
|
184
|
-
*/
|
185
|
-
function ajaxConvert( s, response, jqXHR, isSuccess ) {
|
186
|
-
var conv2, current, conv, tmp, prev,
|
187
|
-
converters = {},
|
188
|
-
// Work with a copy of dataTypes in case we need to modify it for conversion
|
189
|
-
dataTypes = s.dataTypes.slice();
|
190
|
-
|
191
|
-
// Create converters map with lowercased keys
|
192
|
-
if ( dataTypes[ 1 ] ) {
|
193
|
-
for ( conv in s.converters ) {
|
194
|
-
converters[ conv.toLowerCase() ] = s.converters[ conv ];
|
195
|
-
}
|
196
|
-
}
|
197
|
-
|
198
|
-
current = dataTypes.shift();
|
199
|
-
|
200
|
-
// Convert to each sequential dataType
|
201
|
-
while ( current ) {
|
202
|
-
|
203
|
-
if ( s.responseFields[ current ] ) {
|
204
|
-
jqXHR[ s.responseFields[ current ] ] = response;
|
205
|
-
}
|
206
|
-
|
207
|
-
// Apply the dataFilter if provided
|
208
|
-
if ( !prev && isSuccess && s.dataFilter ) {
|
209
|
-
response = s.dataFilter( response, s.dataType );
|
210
|
-
}
|
211
|
-
|
212
|
-
prev = current;
|
213
|
-
current = dataTypes.shift();
|
214
|
-
|
215
|
-
if ( current ) {
|
216
|
-
|
217
|
-
// There's only work to do if current dataType is non-auto
|
218
|
-
if ( current === "*" ) {
|
219
|
-
|
220
|
-
current = prev;
|
221
|
-
|
222
|
-
// Convert response if prev dataType is non-auto and differs from current
|
223
|
-
} else if ( prev !== "*" && prev !== current ) {
|
224
|
-
|
225
|
-
// Seek a direct converter
|
226
|
-
conv = converters[ prev + " " + current ] || converters[ "* " + current ];
|
227
|
-
|
228
|
-
// If none found, seek a pair
|
229
|
-
if ( !conv ) {
|
230
|
-
for ( conv2 in converters ) {
|
231
|
-
|
232
|
-
// If conv2 outputs current
|
233
|
-
tmp = conv2.split( " " );
|
234
|
-
if ( tmp[ 1 ] === current ) {
|
235
|
-
|
236
|
-
// If prev can be converted to accepted input
|
237
|
-
conv = converters[ prev + " " + tmp[ 0 ] ] ||
|
238
|
-
converters[ "* " + tmp[ 0 ] ];
|
239
|
-
if ( conv ) {
|
240
|
-
// Condense equivalence converters
|
241
|
-
if ( conv === true ) {
|
242
|
-
conv = converters[ conv2 ];
|
243
|
-
|
244
|
-
// Otherwise, insert the intermediate dataType
|
245
|
-
} else if ( converters[ conv2 ] !== true ) {
|
246
|
-
current = tmp[ 0 ];
|
247
|
-
dataTypes.unshift( tmp[ 1 ] );
|
248
|
-
}
|
249
|
-
break;
|
250
|
-
}
|
251
|
-
}
|
252
|
-
}
|
253
|
-
}
|
254
|
-
|
255
|
-
// Apply converter (if not an equivalence)
|
256
|
-
if ( conv !== true ) {
|
257
|
-
|
258
|
-
// Unless errors are allowed to bubble, catch and return them
|
259
|
-
if ( conv && s[ "throws" ] ) {
|
260
|
-
response = conv( response );
|
261
|
-
} else {
|
262
|
-
try {
|
263
|
-
response = conv( response );
|
264
|
-
} catch ( e ) {
|
265
|
-
return { state: "parsererror", error: conv ? e : "No conversion from " + prev + " to " + current };
|
266
|
-
}
|
267
|
-
}
|
268
|
-
}
|
269
|
-
}
|
270
|
-
}
|
271
|
-
}
|
272
|
-
|
273
|
-
return { state: "success", data: response };
|
274
|
-
}
|
275
|
-
|
276
|
-
jQuery.extend({
|
277
|
-
|
278
|
-
// Counter for holding the number of active queries
|
279
|
-
active: 0,
|
280
|
-
|
281
|
-
// Last-Modified header cache for next request
|
282
|
-
lastModified: {},
|
283
|
-
etag: {},
|
284
|
-
|
285
|
-
ajaxSettings: {
|
286
|
-
url: ajaxLocation,
|
287
|
-
type: "GET",
|
288
|
-
isLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ),
|
289
|
-
global: true,
|
290
|
-
processData: true,
|
291
|
-
async: true,
|
292
|
-
contentType: "application/x-www-form-urlencoded; charset=UTF-8",
|
293
|
-
/*
|
294
|
-
timeout: 0,
|
295
|
-
data: null,
|
296
|
-
dataType: null,
|
297
|
-
username: null,
|
298
|
-
password: null,
|
299
|
-
cache: null,
|
300
|
-
throws: false,
|
301
|
-
traditional: false,
|
302
|
-
headers: {},
|
303
|
-
*/
|
304
|
-
|
305
|
-
accepts: {
|
306
|
-
"*": allTypes,
|
307
|
-
text: "text/plain",
|
308
|
-
html: "text/html",
|
309
|
-
xml: "application/xml, text/xml",
|
310
|
-
json: "application/json, text/javascript"
|
311
|
-
},
|
312
|
-
|
313
|
-
contents: {
|
314
|
-
xml: /xml/,
|
315
|
-
html: /html/,
|
316
|
-
json: /json/
|
317
|
-
},
|
318
|
-
|
319
|
-
responseFields: {
|
320
|
-
xml: "responseXML",
|
321
|
-
text: "responseText",
|
322
|
-
json: "responseJSON"
|
323
|
-
},
|
324
|
-
|
325
|
-
// Data converters
|
326
|
-
// Keys separate source (or catchall "*") and destination types with a single space
|
327
|
-
converters: {
|
328
|
-
|
329
|
-
// Convert anything to text
|
330
|
-
"* text": String,
|
331
|
-
|
332
|
-
// Text to html (true = no transformation)
|
333
|
-
"text html": true,
|
334
|
-
|
335
|
-
// Evaluate text as a json expression
|
336
|
-
"text json": jQuery.parseJSON,
|
337
|
-
|
338
|
-
// Parse text as xml
|
339
|
-
"text xml": jQuery.parseXML
|
340
|
-
},
|
341
|
-
|
342
|
-
// For options that shouldn't be deep extended:
|
343
|
-
// you can add your own custom options here if
|
344
|
-
// and when you create one that shouldn't be
|
345
|
-
// deep extended (see ajaxExtend)
|
346
|
-
flatOptions: {
|
347
|
-
url: true,
|
348
|
-
context: true
|
349
|
-
}
|
350
|
-
},
|
351
|
-
|
352
|
-
// Creates a full fledged settings object into target
|
353
|
-
// with both ajaxSettings and settings fields.
|
354
|
-
// If target is omitted, writes into ajaxSettings.
|
355
|
-
ajaxSetup: function( target, settings ) {
|
356
|
-
return settings ?
|
357
|
-
|
358
|
-
// Building a settings object
|
359
|
-
ajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :
|
360
|
-
|
361
|
-
// Extending ajaxSettings
|
362
|
-
ajaxExtend( jQuery.ajaxSettings, target );
|
363
|
-
},
|
364
|
-
|
365
|
-
ajaxPrefilter: addToPrefiltersOrTransports( prefilters ),
|
366
|
-
ajaxTransport: addToPrefiltersOrTransports( transports ),
|
367
|
-
|
368
|
-
// Main method
|
369
|
-
ajax: function( url, options ) {
|
370
|
-
|
371
|
-
// If url is an object, simulate pre-1.5 signature
|
372
|
-
if ( typeof url === "object" ) {
|
373
|
-
options = url;
|
374
|
-
url = undefined;
|
375
|
-
}
|
376
|
-
|
377
|
-
// Force options to be an object
|
378
|
-
options = options || {};
|
379
|
-
|
380
|
-
var transport,
|
381
|
-
// URL without anti-cache param
|
382
|
-
cacheURL,
|
383
|
-
// Response headers
|
384
|
-
responseHeadersString,
|
385
|
-
responseHeaders,
|
386
|
-
// timeout handle
|
387
|
-
timeoutTimer,
|
388
|
-
// Cross-domain detection vars
|
389
|
-
parts,
|
390
|
-
// To know if global events are to be dispatched
|
391
|
-
fireGlobals,
|
392
|
-
// Loop variable
|
393
|
-
i,
|
394
|
-
// Create the final options object
|
395
|
-
s = jQuery.ajaxSetup( {}, options ),
|
396
|
-
// Callbacks context
|
397
|
-
callbackContext = s.context || s,
|
398
|
-
// Context for global events is callbackContext if it is a DOM node or jQuery collection
|
399
|
-
globalEventContext = s.context && ( callbackContext.nodeType || callbackContext.jquery ) ?
|
400
|
-
jQuery( callbackContext ) :
|
401
|
-
jQuery.event,
|
402
|
-
// Deferreds
|
403
|
-
deferred = jQuery.Deferred(),
|
404
|
-
completeDeferred = jQuery.Callbacks("once memory"),
|
405
|
-
// Status-dependent callbacks
|
406
|
-
statusCode = s.statusCode || {},
|
407
|
-
// Headers (they are sent all at once)
|
408
|
-
requestHeaders = {},
|
409
|
-
requestHeadersNames = {},
|
410
|
-
// The jqXHR state
|
411
|
-
state = 0,
|
412
|
-
// Default abort message
|
413
|
-
strAbort = "canceled",
|
414
|
-
// Fake xhr
|
415
|
-
jqXHR = {
|
416
|
-
readyState: 0,
|
417
|
-
|
418
|
-
// Builds headers hashtable if needed
|
419
|
-
getResponseHeader: function( key ) {
|
420
|
-
var match;
|
421
|
-
if ( state === 2 ) {
|
422
|
-
if ( !responseHeaders ) {
|
423
|
-
responseHeaders = {};
|
424
|
-
while ( (match = rheaders.exec( responseHeadersString )) ) {
|
425
|
-
responseHeaders[ match[1].toLowerCase() ] = match[ 2 ];
|
426
|
-
}
|
427
|
-
}
|
428
|
-
match = responseHeaders[ key.toLowerCase() ];
|
429
|
-
}
|
430
|
-
return match == null ? null : match;
|
431
|
-
},
|
432
|
-
|
433
|
-
// Raw string
|
434
|
-
getAllResponseHeaders: function() {
|
435
|
-
return state === 2 ? responseHeadersString : null;
|
436
|
-
},
|
437
|
-
|
438
|
-
// Caches the header
|
439
|
-
setRequestHeader: function( name, value ) {
|
440
|
-
var lname = name.toLowerCase();
|
441
|
-
if ( !state ) {
|
442
|
-
name = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name;
|
443
|
-
requestHeaders[ name ] = value;
|
444
|
-
}
|
445
|
-
return this;
|
446
|
-
},
|
447
|
-
|
448
|
-
// Overrides response content-type header
|
449
|
-
overrideMimeType: function( type ) {
|
450
|
-
if ( !state ) {
|
451
|
-
s.mimeType = type;
|
452
|
-
}
|
453
|
-
return this;
|
454
|
-
},
|
455
|
-
|
456
|
-
// Status-dependent callbacks
|
457
|
-
statusCode: function( map ) {
|
458
|
-
var code;
|
459
|
-
if ( map ) {
|
460
|
-
if ( state < 2 ) {
|
461
|
-
for ( code in map ) {
|
462
|
-
// Lazy-add the new callback in a way that preserves old ones
|
463
|
-
statusCode[ code ] = [ statusCode[ code ], map[ code ] ];
|
464
|
-
}
|
465
|
-
} else {
|
466
|
-
// Execute the appropriate callbacks
|
467
|
-
jqXHR.always( map[ jqXHR.status ] );
|
468
|
-
}
|
469
|
-
}
|
470
|
-
return this;
|
471
|
-
},
|
472
|
-
|
473
|
-
// Cancel the request
|
474
|
-
abort: function( statusText ) {
|
475
|
-
var finalText = statusText || strAbort;
|
476
|
-
if ( transport ) {
|
477
|
-
transport.abort( finalText );
|
478
|
-
}
|
479
|
-
done( 0, finalText );
|
480
|
-
return this;
|
481
|
-
}
|
482
|
-
};
|
483
|
-
|
484
|
-
// Attach deferreds
|
485
|
-
deferred.promise( jqXHR ).complete = completeDeferred.add;
|
486
|
-
jqXHR.success = jqXHR.done;
|
487
|
-
jqXHR.error = jqXHR.fail;
|
488
|
-
|
489
|
-
// Remove hash character (#7531: and string promotion)
|
490
|
-
// Add protocol if not provided (prefilters might expect it)
|
491
|
-
// Handle falsy url in the settings object (#10093: consistency with old signature)
|
492
|
-
// We also use the url parameter if available
|
493
|
-
s.url = ( ( url || s.url || ajaxLocation ) + "" ).replace( rhash, "" )
|
494
|
-
.replace( rprotocol, ajaxLocParts[ 1 ] + "//" );
|
495
|
-
|
496
|
-
// Alias method option to type as per ticket #12004
|
497
|
-
s.type = options.method || options.type || s.method || s.type;
|
498
|
-
|
499
|
-
// Extract dataTypes list
|
500
|
-
s.dataTypes = jQuery.trim( s.dataType || "*" ).toLowerCase().match( rnotwhite ) || [ "" ];
|
501
|
-
|
502
|
-
// A cross-domain request is in order when we have a protocol:host:port mismatch
|
503
|
-
if ( s.crossDomain == null ) {
|
504
|
-
parts = rurl.exec( s.url.toLowerCase() );
|
505
|
-
s.crossDomain = !!( parts &&
|
506
|
-
( parts[ 1 ] !== ajaxLocParts[ 1 ] || parts[ 2 ] !== ajaxLocParts[ 2 ] ||
|
507
|
-
( parts[ 3 ] || ( parts[ 1 ] === "http:" ? "80" : "443" ) ) !==
|
508
|
-
( ajaxLocParts[ 3 ] || ( ajaxLocParts[ 1 ] === "http:" ? "80" : "443" ) ) )
|
509
|
-
);
|
510
|
-
}
|
511
|
-
|
512
|
-
// Convert data if not already a string
|
513
|
-
if ( s.data && s.processData && typeof s.data !== "string" ) {
|
514
|
-
s.data = jQuery.param( s.data, s.traditional );
|
515
|
-
}
|
516
|
-
|
517
|
-
// Apply prefilters
|
518
|
-
inspectPrefiltersOrTransports( prefilters, s, options, jqXHR );
|
519
|
-
|
520
|
-
// If request was aborted inside a prefilter, stop there
|
521
|
-
if ( state === 2 ) {
|
522
|
-
return jqXHR;
|
523
|
-
}
|
524
|
-
|
525
|
-
// We can fire global events as of now if asked to
|
526
|
-
// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)
|
527
|
-
fireGlobals = jQuery.event && s.global;
|
528
|
-
|
529
|
-
// Watch for a new set of requests
|
530
|
-
if ( fireGlobals && jQuery.active++ === 0 ) {
|
531
|
-
jQuery.event.trigger("ajaxStart");
|
532
|
-
}
|
533
|
-
|
534
|
-
// Uppercase the type
|
535
|
-
s.type = s.type.toUpperCase();
|
536
|
-
|
537
|
-
// Determine if request has content
|
538
|
-
s.hasContent = !rnoContent.test( s.type );
|
539
|
-
|
540
|
-
// Save the URL in case we're toying with the If-Modified-Since
|
541
|
-
// and/or If-None-Match header later on
|
542
|
-
cacheURL = s.url;
|
543
|
-
|
544
|
-
// More options handling for requests with no content
|
545
|
-
if ( !s.hasContent ) {
|
546
|
-
|
547
|
-
// If data is available, append data to url
|
548
|
-
if ( s.data ) {
|
549
|
-
cacheURL = ( s.url += ( rquery.test( cacheURL ) ? "&" : "?" ) + s.data );
|
550
|
-
// #9682: remove data so that it's not used in an eventual retry
|
551
|
-
delete s.data;
|
552
|
-
}
|
553
|
-
|
554
|
-
// Add anti-cache in url if needed
|
555
|
-
if ( s.cache === false ) {
|
556
|
-
s.url = rts.test( cacheURL ) ?
|
557
|
-
|
558
|
-
// If there is already a '_' parameter, set its value
|
559
|
-
cacheURL.replace( rts, "$1_=" + nonce++ ) :
|
560
|
-
|
561
|
-
// Otherwise add one to the end
|
562
|
-
cacheURL + ( rquery.test( cacheURL ) ? "&" : "?" ) + "_=" + nonce++;
|
563
|
-
}
|
564
|
-
}
|
565
|
-
|
566
|
-
// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
|
567
|
-
if ( s.ifModified ) {
|
568
|
-
if ( jQuery.lastModified[ cacheURL ] ) {
|
569
|
-
jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ cacheURL ] );
|
570
|
-
}
|
571
|
-
if ( jQuery.etag[ cacheURL ] ) {
|
572
|
-
jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ cacheURL ] );
|
573
|
-
}
|
574
|
-
}
|
575
|
-
|
576
|
-
// Set the correct header, if data is being sent
|
577
|
-
if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {
|
578
|
-
jqXHR.setRequestHeader( "Content-Type", s.contentType );
|
579
|
-
}
|
580
|
-
|
581
|
-
// Set the Accepts header for the server, depending on the dataType
|
582
|
-
jqXHR.setRequestHeader(
|
583
|
-
"Accept",
|
584
|
-
s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[0] ] ?
|
585
|
-
s.accepts[ s.dataTypes[0] ] + ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) :
|
586
|
-
s.accepts[ "*" ]
|
587
|
-
);
|
588
|
-
|
589
|
-
// Check for headers option
|
590
|
-
for ( i in s.headers ) {
|
591
|
-
jqXHR.setRequestHeader( i, s.headers[ i ] );
|
592
|
-
}
|
593
|
-
|
594
|
-
// Allow custom headers/mimetypes and early abort
|
595
|
-
if ( s.beforeSend && ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) {
|
596
|
-
// Abort if not done already and return
|
597
|
-
return jqXHR.abort();
|
598
|
-
}
|
599
|
-
|
600
|
-
// Aborting is no longer a cancellation
|
601
|
-
strAbort = "abort";
|
602
|
-
|
603
|
-
// Install callbacks on deferreds
|
604
|
-
for ( i in { success: 1, error: 1, complete: 1 } ) {
|
605
|
-
jqXHR[ i ]( s[ i ] );
|
606
|
-
}
|
607
|
-
|
608
|
-
// Get transport
|
609
|
-
transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );
|
610
|
-
|
611
|
-
// If no transport, we auto-abort
|
612
|
-
if ( !transport ) {
|
613
|
-
done( -1, "No Transport" );
|
614
|
-
} else {
|
615
|
-
jqXHR.readyState = 1;
|
616
|
-
|
617
|
-
// Send global event
|
618
|
-
if ( fireGlobals ) {
|
619
|
-
globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] );
|
620
|
-
}
|
621
|
-
// Timeout
|
622
|
-
if ( s.async && s.timeout > 0 ) {
|
623
|
-
timeoutTimer = setTimeout(function() {
|
624
|
-
jqXHR.abort("timeout");
|
625
|
-
}, s.timeout );
|
626
|
-
}
|
627
|
-
|
628
|
-
try {
|
629
|
-
state = 1;
|
630
|
-
transport.send( requestHeaders, done );
|
631
|
-
} catch ( e ) {
|
632
|
-
// Propagate exception as error if not done
|
633
|
-
if ( state < 2 ) {
|
634
|
-
done( -1, e );
|
635
|
-
// Simply rethrow otherwise
|
636
|
-
} else {
|
637
|
-
throw e;
|
638
|
-
}
|
639
|
-
}
|
640
|
-
}
|
641
|
-
|
642
|
-
// Callback for when everything is done
|
643
|
-
function done( status, nativeStatusText, responses, headers ) {
|
644
|
-
var isSuccess, success, error, response, modified,
|
645
|
-
statusText = nativeStatusText;
|
646
|
-
|
647
|
-
// Called once
|
648
|
-
if ( state === 2 ) {
|
649
|
-
return;
|
650
|
-
}
|
651
|
-
|
652
|
-
// State is "done" now
|
653
|
-
state = 2;
|
654
|
-
|
655
|
-
// Clear timeout if it exists
|
656
|
-
if ( timeoutTimer ) {
|
657
|
-
clearTimeout( timeoutTimer );
|
658
|
-
}
|
659
|
-
|
660
|
-
// Dereference transport for early garbage collection
|
661
|
-
// (no matter how long the jqXHR object will be used)
|
662
|
-
transport = undefined;
|
663
|
-
|
664
|
-
// Cache response headers
|
665
|
-
responseHeadersString = headers || "";
|
666
|
-
|
667
|
-
// Set readyState
|
668
|
-
jqXHR.readyState = status > 0 ? 4 : 0;
|
669
|
-
|
670
|
-
// Determine if successful
|
671
|
-
isSuccess = status >= 200 && status < 300 || status === 304;
|
672
|
-
|
673
|
-
// Get response data
|
674
|
-
if ( responses ) {
|
675
|
-
response = ajaxHandleResponses( s, jqXHR, responses );
|
676
|
-
}
|
677
|
-
|
678
|
-
// Convert no matter what (that way responseXXX fields are always set)
|
679
|
-
response = ajaxConvert( s, response, jqXHR, isSuccess );
|
680
|
-
|
681
|
-
// If successful, handle type chaining
|
682
|
-
if ( isSuccess ) {
|
683
|
-
|
684
|
-
// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.
|
685
|
-
if ( s.ifModified ) {
|
686
|
-
modified = jqXHR.getResponseHeader("Last-Modified");
|
687
|
-
if ( modified ) {
|
688
|
-
jQuery.lastModified[ cacheURL ] = modified;
|
689
|
-
}
|
690
|
-
modified = jqXHR.getResponseHeader("etag");
|
691
|
-
if ( modified ) {
|
692
|
-
jQuery.etag[ cacheURL ] = modified;
|
693
|
-
}
|
694
|
-
}
|
695
|
-
|
696
|
-
// if no content
|
697
|
-
if ( status === 204 || s.type === "HEAD" ) {
|
698
|
-
statusText = "nocontent";
|
699
|
-
|
700
|
-
// if not modified
|
701
|
-
} else if ( status === 304 ) {
|
702
|
-
statusText = "notmodified";
|
703
|
-
|
704
|
-
// If we have data, let's convert it
|
705
|
-
} else {
|
706
|
-
statusText = response.state;
|
707
|
-
success = response.data;
|
708
|
-
error = response.error;
|
709
|
-
isSuccess = !error;
|
710
|
-
}
|
711
|
-
} else {
|
712
|
-
// Extract error from statusText and normalize for non-aborts
|
713
|
-
error = statusText;
|
714
|
-
if ( status || !statusText ) {
|
715
|
-
statusText = "error";
|
716
|
-
if ( status < 0 ) {
|
717
|
-
status = 0;
|
718
|
-
}
|
719
|
-
}
|
720
|
-
}
|
721
|
-
|
722
|
-
// Set data for the fake xhr object
|
723
|
-
jqXHR.status = status;
|
724
|
-
jqXHR.statusText = ( nativeStatusText || statusText ) + "";
|
725
|
-
|
726
|
-
// Success/Error
|
727
|
-
if ( isSuccess ) {
|
728
|
-
deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );
|
729
|
-
} else {
|
730
|
-
deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );
|
731
|
-
}
|
732
|
-
|
733
|
-
// Status-dependent callbacks
|
734
|
-
jqXHR.statusCode( statusCode );
|
735
|
-
statusCode = undefined;
|
736
|
-
|
737
|
-
if ( fireGlobals ) {
|
738
|
-
globalEventContext.trigger( isSuccess ? "ajaxSuccess" : "ajaxError",
|
739
|
-
[ jqXHR, s, isSuccess ? success : error ] );
|
740
|
-
}
|
741
|
-
|
742
|
-
// Complete
|
743
|
-
completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );
|
744
|
-
|
745
|
-
if ( fireGlobals ) {
|
746
|
-
globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] );
|
747
|
-
// Handle the global AJAX counter
|
748
|
-
if ( !( --jQuery.active ) ) {
|
749
|
-
jQuery.event.trigger("ajaxStop");
|
750
|
-
}
|
751
|
-
}
|
752
|
-
}
|
753
|
-
|
754
|
-
return jqXHR;
|
755
|
-
},
|
756
|
-
|
757
|
-
getJSON: function( url, data, callback ) {
|
758
|
-
return jQuery.get( url, data, callback, "json" );
|
759
|
-
},
|
760
|
-
|
761
|
-
getScript: function( url, callback ) {
|
762
|
-
return jQuery.get( url, undefined, callback, "script" );
|
763
|
-
}
|
764
|
-
});
|
765
|
-
|
766
|
-
jQuery.each( [ "get", "post" ], function( i, method ) {
|
767
|
-
jQuery[ method ] = function( url, data, callback, type ) {
|
768
|
-
// Shift arguments if data argument was omitted
|
769
|
-
if ( jQuery.isFunction( data ) ) {
|
770
|
-
type = type || callback;
|
771
|
-
callback = data;
|
772
|
-
data = undefined;
|
773
|
-
}
|
774
|
-
|
775
|
-
return jQuery.ajax({
|
776
|
-
url: url,
|
777
|
-
type: method,
|
778
|
-
dataType: type,
|
779
|
-
data: data,
|
780
|
-
success: callback
|
781
|
-
});
|
782
|
-
};
|
783
|
-
});
|
784
|
-
|
785
|
-
return jQuery;
|
786
|
-
});
|