fortitude 0.0.4-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +20 -0
- data/.rspec-local +4 -0
- data/.travis.yml +50 -0
- data/CHANGES.md +62 -0
- data/CONTRIBUTORS.md +6 -0
- data/Gemfile +5 -0
- data/LICENSE.txt +22 -0
- data/README-erector.md +246 -0
- data/README.md +15 -0
- data/Rakefile +67 -0
- data/ext/FortitudeJrubyNativeExtService.java +11 -0
- data/ext/com/fortituderuby/ext/fortitude/FortitudeNativeLibrary.java +223 -0
- data/ext/fortitude_native_ext/extconf.rb +4 -0
- data/ext/fortitude_native_ext/fortitude_native_ext.c +333 -0
- data/fortitude.gemspec +42 -0
- data/lib/fortitude.rb +7 -0
- data/lib/fortitude/doctypes.rb +48 -0
- data/lib/fortitude/doctypes/base.rb +42 -0
- data/lib/fortitude/doctypes/html4.rb +21 -0
- data/lib/fortitude/doctypes/html4_frameset.rb +20 -0
- data/lib/fortitude/doctypes/html4_strict.rb +18 -0
- data/lib/fortitude/doctypes/html4_tags_frameset.rb +53 -0
- data/lib/fortitude/doctypes/html4_tags_strict.rb +274 -0
- data/lib/fortitude/doctypes/html4_tags_transitional.rb +115 -0
- data/lib/fortitude/doctypes/html4_transitional.rb +19 -0
- data/lib/fortitude/doctypes/html5.rb +373 -0
- data/lib/fortitude/doctypes/unknown_doctype.rb +20 -0
- data/lib/fortitude/doctypes/xhtml10.rb +20 -0
- data/lib/fortitude/doctypes/xhtml10_frameset.rb +18 -0
- data/lib/fortitude/doctypes/xhtml10_strict.rb +18 -0
- data/lib/fortitude/doctypes/xhtml10_transitional.rb +18 -0
- data/lib/fortitude/doctypes/xhtml11.rb +30 -0
- data/lib/fortitude/errors.rb +153 -0
- data/lib/fortitude/extensions/fortitude_ruby_ext.rb +76 -0
- data/lib/fortitude/extensions/native_extensions.rb +33 -0
- data/lib/fortitude/method_templates/assign_locals_from_template.rb.smpl +22 -0
- data/lib/fortitude/method_templates/need_assignment_template.rb.smpl +16 -0
- data/lib/fortitude/method_templates/need_method_template.rb.smpl +4 -0
- data/lib/fortitude/method_templates/simple_template.rb +50 -0
- data/lib/fortitude/method_templates/tag_method_template.rb.smpl +68 -0
- data/lib/fortitude/method_templates/text_method_template.rb.smpl +17 -0
- data/lib/fortitude/rails.rb +26 -0
- data/lib/fortitude/rails/helpers.rb +153 -0
- data/lib/fortitude/rails/railtie.rb +256 -0
- data/lib/fortitude/rails/renderer.rb +43 -0
- data/lib/fortitude/rails/template_handler.rb +23 -0
- data/lib/fortitude/rails/widget_methods.rb +13 -0
- data/lib/fortitude/rails/yielded_object_outputter.rb +31 -0
- data/lib/fortitude/rendering_context.rb +205 -0
- data/lib/fortitude/support/assigns_proxy.rb +77 -0
- data/lib/fortitude/support/class_inheritable_attributes.rb +98 -0
- data/lib/fortitude/support/instance_variable_set.rb +76 -0
- data/lib/fortitude/support/staticized_method.rb +87 -0
- data/lib/fortitude/tags/partial_tag_placeholder.rb +19 -0
- data/lib/fortitude/tags/tag.rb +189 -0
- data/lib/fortitude/tags/tag_return_value.rb +13 -0
- data/lib/fortitude/tags/tag_store.rb +53 -0
- data/lib/fortitude/tags/tag_support.rb +51 -0
- data/lib/fortitude/tags/tags_module.rb +16 -0
- data/lib/fortitude/tilt.rb +17 -0
- data/lib/fortitude/tilt/fortitude_template.rb +169 -0
- data/lib/fortitude/version.rb +3 -0
- data/lib/fortitude/widget.rb +54 -0
- data/lib/fortitude/widget/around_content.rb +53 -0
- data/lib/fortitude/widget/capturing.rb +37 -0
- data/lib/fortitude/widget/content.rb +61 -0
- data/lib/fortitude/widget/doctypes.rb +53 -0
- data/lib/fortitude/widget/helpers.rb +62 -0
- data/lib/fortitude/widget/integration.rb +76 -0
- data/lib/fortitude/widget/localization.rb +63 -0
- data/lib/fortitude/widget/modules_and_subclasses.rb +58 -0
- data/lib/fortitude/widget/needs.rb +164 -0
- data/lib/fortitude/widget/non_rails_widget_methods.rb +13 -0
- data/lib/fortitude/widget/rendering.rb +98 -0
- data/lib/fortitude/widget/start_and_end_comments.rb +69 -0
- data/lib/fortitude/widget/staticization.rb +50 -0
- data/lib/fortitude/widget/tag_like_methods.rb +102 -0
- data/lib/fortitude/widget/tags.rb +55 -0
- data/lib/fortitude/widget/temporary_overrides.rb +28 -0
- data/lib/fortitude/widget/widget_class_inheritable_attributes.rb +35 -0
- data/lib/fortitude/widgets.rb +12 -0
- data/lib/fortitude/widgets/html4_frameset.rb +9 -0
- data/lib/fortitude/widgets/html4_strict.rb +9 -0
- data/lib/fortitude/widgets/html4_transitional.rb +9 -0
- data/lib/fortitude/widgets/html5.rb +9 -0
- data/lib/fortitude/widgets/xhtml10_frameset.rb +9 -0
- data/lib/fortitude/widgets/xhtml10_strict.rb +9 -0
- data/lib/fortitude/widgets/xhtml10_transitional.rb +9 -0
- data/lib/fortitude/widgets/xhtml11.rb +9 -0
- data/lib/fortitude_jruby_native_ext.jar +0 -0
- data/spec/helpers/global_helper.rb +8 -0
- data/spec/helpers/rails_helpers.rb +85 -0
- data/spec/helpers/rails_server.rb +386 -0
- data/spec/helpers/system_helpers.rb +117 -0
- data/spec/rails/basic_rails_system_spec.rb +7 -0
- data/spec/rails/capture_system_spec.rb +75 -0
- data/spec/rails/class_loading_system_spec.rb +63 -0
- data/spec/rails/complex_helpers_system_spec.rb +33 -0
- data/spec/rails/data_passing_system_spec.rb +96 -0
- data/spec/rails/default_layout_system_spec.rb +15 -0
- data/spec/rails/development_mode_system_spec.rb +67 -0
- data/spec/rails/erb_integration_system_spec.rb +23 -0
- data/spec/rails/helpers_include_all_off_system_spec.rb +7 -0
- data/spec/rails/helpers_system_spec.rb +79 -0
- data/spec/rails/helpers_unrefined_system_spec.rb +7 -0
- data/spec/rails/layouts_system_spec.rb +60 -0
- data/spec/rails/localization_system_spec.rb +38 -0
- data/spec/rails/production_mode_system_spec.rb +13 -0
- data/spec/rails/rendering_context_system_spec.rb +64 -0
- data/spec/rails/rendering_system_spec.rb +158 -0
- data/spec/rails/rules_system_spec.rb +23 -0
- data/spec/rails/static_method_system_spec.rb +12 -0
- data/spec/rails/templates/base/app/controllers/application_controller.rb +15 -0
- data/spec/rails/templates/base/app/controllers/working_controller.rb +5 -0
- data/spec/rails/templates/base/app/views/layouts/application.html.erb +11 -0
- data/spec/rails/templates/base/config/routes.rb +4 -0
- data/spec/rails/templates/base/config/secrets.yml +22 -0
- data/spec/rails/templates/basic_rails_system_spec/app/controllers/basic_rails_system_spec_controller.rb +8 -0
- data/spec/rails/templates/basic_rails_system_spec/app/views/basic_rails_system_spec/trivial_widget.rb +5 -0
- data/spec/rails/templates/capture_system_spec/app/controllers/capture_system_spec_controller.rb +37 -0
- data/spec/rails/templates/capture_system_spec/app/views/capture_system_spec/_some_erb_partial.html.erb +1 -0
- data/spec/rails/templates/capture_system_spec/app/views/capture_system_spec/another_widget.rb +7 -0
- data/spec/rails/templates/capture_system_spec/app/views/capture_system_spec/capture_erb_from_widget.rb +11 -0
- data/spec/rails/templates/capture_system_spec/app/views/capture_system_spec/capture_widget_from_erb.html.erb +9 -0
- data/spec/rails/templates/capture_system_spec/app/views/capture_system_spec/capture_widget_from_widget.rb +17 -0
- data/spec/rails/templates/capture_system_spec/app/views/capture_system_spec/some_widget.rb +5 -0
- data/spec/rails/templates/capture_system_spec/app/views/capture_system_spec/widget_content_for.rb +19 -0
- data/spec/rails/templates/capture_system_spec/app/views/capture_system_spec/widget_layout_needing_content_yield_with_erb.html.erb +13 -0
- data/spec/rails/templates/capture_system_spec/app/views/capture_system_spec/widget_provide.rb +13 -0
- data/spec/rails/templates/capture_system_spec/app/views/layouts/erb_layout_needing_content.html.erb +15 -0
- data/spec/rails/templates/capture_system_spec/app/views/layouts/widget_layout_needing_content_content_for.rb +23 -0
- data/spec/rails/templates/capture_system_spec/app/views/layouts/widget_layout_needing_content_yield.rb +23 -0
- data/spec/rails/templates/class_loading_system_spec/app/controllers/class_loading_system_spec_controller.rb +74 -0
- data/spec/rails/templates/class_loading_system_spec/app/models/views/app_models_helper.rb +5 -0
- data/spec/rails/templates/class_loading_system_spec/app/models/views/models_widget.rb +5 -0
- data/spec/rails/templates/class_loading_system_spec/app/views/autoload_namespace/autoload_widget.rb +11 -0
- data/spec/rails/templates/class_loading_system_spec/app/views/class_loading_system_spec/_loaded_underscore_widget.rb +11 -0
- data/spec/rails/templates/class_loading_system_spec/app/views/class_loading_system_spec/_underscore_view.rb +5 -0
- data/spec/rails/templates/class_loading_system_spec/app/views/class_loading_system_spec/_underscore_widget.rb +11 -0
- data/spec/rails/templates/class_loading_system_spec/app/views/class_loading_system_spec/app_models.rb +6 -0
- data/spec/rails/templates/class_loading_system_spec/app/views/class_loading_system_spec/autoload_one_widget_from_another.rb +7 -0
- data/spec/rails/templates/class_loading_system_spec/app/views/class_loading_system_spec/class_should_not_load.rb +9 -0
- data/spec/rails/templates/class_loading_system_spec/app/views/class_loading_system_spec/lib_views.rb +8 -0
- data/spec/rails/templates/class_loading_system_spec/app/views/class_loading_system_spec/use_lib_widget_from_view_widget.rb +9 -0
- data/spec/rails/templates/class_loading_system_spec/app/views/class_loading_system_spec/use_models_widget_from_view_widget.rb +7 -0
- data/spec/rails/templates/class_loading_system_spec/app/views/some_namespace/some_other_namespace/.git_keep +0 -0
- data/spec/rails/templates/class_loading_system_spec/app/views/sub_widget.rb +5 -0
- data/spec/rails/templates/class_loading_system_spec/lib/arbitrary_name/some_widget.rb +7 -0
- data/spec/rails/templates/class_loading_system_spec/lib/views/class_loading_system_spec/lib_views_helper.rb +5 -0
- data/spec/rails/templates/class_loading_system_spec/lib/views/class_loading_system_spec/widget_defined_outside_app_views.rb +5 -0
- data/spec/rails/templates/class_loading_system_spec/lib/views/lib_widget.rb +5 -0
- data/spec/rails/templates/complex_helpers_system_spec/app/controllers/complex_helpers_system_spec_controller.rb +14 -0
- data/spec/rails/templates/complex_helpers_system_spec/app/views/complex_helpers_system_spec/cache_test.rb +12 -0
- data/spec/rails/templates/complex_helpers_system_spec/app/views/complex_helpers_system_spec/fields_for_test.rb +14 -0
- data/spec/rails/templates/complex_helpers_system_spec/app/views/complex_helpers_system_spec/form_for_test.rb +14 -0
- data/spec/rails/templates/complex_helpers_system_spec/config/environments/development.rb +31 -0
- data/spec/rails/templates/data_passing_system_spec/app/controllers/data_passing_system_spec_controller.rb +101 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/_erb_to_parallel_widget_handoff_erb.html.erb +3 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/_implicit_erb_to_widget_handoff_erb.html.erb +3 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/_implicit_variable_write_erb.html.erb +1 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/_widget_to_parallel_erb_handoff_erb.html.erb +1 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/erb_copied_variables.html.erb +1 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/erb_to_parallel_widget_handoff.html.erb +2 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/erb_to_parallel_widget_handoff_widget.rb +5 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/explicit_controller_variable_read.rb +6 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/extra_variables.rb +23 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/extra_variables_requested.rb +24 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_erb_to_widget_handoff.html.erb +2 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_erb_to_widget_handoff_widget.rb +7 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_shared_variable_access.rb +5 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_shared_variable_access_inheritance.rb +6 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_shared_variable_access_inheritance_child_one.rb +7 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_shared_variable_access_inheritance_child_two.rb +5 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_shared_variable_access_inheritance_parent.rb +3 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_shared_variable_access_inner.rb +8 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_variable_read.rb +5 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_variable_read_inner.rb +7 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_variable_write.html.erb +2 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/implicit_variable_write_widget.rb +7 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/parent_to_child_passing.rb +7 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/parent_to_child_passing_child.rb +7 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/parent_to_child_passing_partial.rb +7 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/parent_to_child_passing_partial_child.rb +7 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/passing_data_widget.rb +8 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/passing_locals_and_controller_variables_widget.rb +9 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/passing_locals_widget.rb +8 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/variables_to_layout.rb +7 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/widget_copied_variables.rb +9 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/widget_to_parallel_erb_handoff.html.erb +2 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/data_passing_system_spec/widget_to_parallel_erb_handoff_widget.rb +5 -0
- data/spec/rails/templates/data_passing_system_spec/app/views/layouts/data_layout.rb +14 -0
- data/spec/rails/templates/default_layout_system_spec/app/controllers/default_layout_system_spec_controller.rb +9 -0
- data/spec/rails/templates/default_layout_system_spec/app/views/default_layout_system_spec/erb_with_widget_default_layout.html.erb +1 -0
- data/spec/rails/templates/default_layout_system_spec/app/views/default_layout_system_spec/widget_with_widget_default_layout.rb +5 -0
- data/spec/rails/templates/default_layout_system_spec/app/views/layouts/application.rb +12 -0
- data/spec/rails/templates/development_mode_system_spec/app/controllers/development_mode_system_spec_controller.rb +9 -0
- data/spec/rails/templates/development_mode_system_spec/app/views/development_mode_system_spec/reload_widget.rb +7 -0
- data/spec/rails/templates/development_mode_system_spec/app/views/development_mode_system_spec/sample_output.rb +9 -0
- data/spec/rails/templates/erb_integration_system_spec/app/controllers/erb_integration_system_spec_controller.rb +10 -0
- data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/_erb_partial_from_widget_partial.html.erb +1 -0
- data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/_fortitude_partial_with_underscore_partial.rb +5 -0
- data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/_prefers_erb_partial_partial.html.erb +1 -0
- data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_partial_from_widget.rb +7 -0
- data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_to_widget_with_render_partial.html.erb +3 -0
- data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/erb_to_widget_with_render_partial_widget.rb +5 -0
- data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/fortitude_partial_with_underscore.html.erb +3 -0
- data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/prefers_erb_partial.html.erb +3 -0
- data/spec/rails/templates/erb_integration_system_spec/app/views/erb_integration_system_spec/prefers_erb_partial_partial.rb +5 -0
- data/spec/rails/templates/helpers_include_all_off_system_spec/app/controllers/helpers_include_all_off_system_spec_controller.rb +13 -0
- data/spec/rails/templates/helpers_include_all_off_system_spec/app/helpers/application_helper.rb +5 -0
- data/spec/rails/templates/helpers_include_all_off_system_spec/app/helpers/some_helper.rb +5 -0
- data/spec/rails/templates/helpers_include_all_off_system_spec/app/views/helpers_include_all_off_system_spec/include_all_off.rb +23 -0
- data/spec/rails/templates/helpers_include_all_off_system_spec/config/application.rb +28 -0
- data/spec/rails/templates/helpers_system_spec/app/controllers/helpers_system_spec_controller.rb +86 -0
- data/spec/rails/templates/helpers_system_spec/app/helpers/some_helper.rb +21 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_disabled.rb +37 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_inheritance.rb +6 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_inheritance_child_one.rb +34 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_inheritance_child_two.rb +36 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/automatic_helpers_inheritance_parent.rb +4 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/basic_helpers.rb +13 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/block_helpers.rb +7 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/built_in_outputting_helpers.rb +13 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/built_in_outputting_to_returning.rb +8 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/built_in_returning_to_outputting.rb +10 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/controller_helper_method.rb +5 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/controller_helper_module.rb +5 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/custom_helper_outputs.rb +6 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/custom_helpers_basic.rb +5 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/custom_helpers_with_a_block.rb +6 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/custom_outputting_to_returning.rb +7 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/custom_returning_to_outputting.rb +10 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/helper_settings_inheritance.rb +10 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/helper_settings_inheritance_parent.rb +4 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/helpers_that_output_when_refined.rb +9 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/private_helper_erb.html.erb +1 -0
- data/spec/rails/templates/helpers_system_spec/app/views/helpers_system_spec/private_helper_fortitude.rb +5 -0
- data/spec/rails/templates/helpers_system_spec/lib/some_stuff.rb +5 -0
- data/spec/rails/templates/helpers_unrefined_system_spec/app/controllers/helpers_unrefined_system_spec_controller.rb +7 -0
- data/spec/rails/templates/helpers_unrefined_system_spec/app/views/helpers_unrefined_system_spec/helpers_that_output_when_refined.rb +9 -0
- data/spec/rails/templates/helpers_unrefined_system_spec/config/environments/production.rb +31 -0
- data/spec/rails/templates/layouts_system_spec/app/controllers/layouts_system_spec_controller.rb +31 -0
- data/spec/rails/templates/layouts_system_spec/app/views/layouts/alternate.html.erb +11 -0
- data/spec/rails/templates/layouts_system_spec/app/views/layouts/application.html.erb +26 -0
- data/spec/rails/templates/layouts_system_spec/app/views/layouts/explicit_yield.rb +12 -0
- data/spec/rails/templates/layouts_system_spec/app/views/layouts/widget_layout.rb +22 -0
- data/spec/rails/templates/layouts_system_spec/app/views/layouts_system_spec/erb_inside_widget_layout.html.erb +8 -0
- data/spec/rails/templates/layouts_system_spec/app/views/layouts_system_spec/the_render_widget.rb +5 -0
- data/spec/rails/templates/layouts_system_spec/app/views/layouts_system_spec/widget_inside_erb_layout.rb +8 -0
- data/spec/rails/templates/layouts_system_spec/app/views/layouts_system_spec/widget_inside_widget_layout.rb +8 -0
- data/spec/rails/templates/layouts_system_spec/app/views/layouts_system_spec/yield_from_widget_explicitly.rb +5 -0
- data/spec/rails/templates/localization_system_spec/app/controllers/localization_system_spec_controller.rb +31 -0
- data/spec/rails/templates/localization_system_spec/app/views/localization_system_spec/content_method.rb +13 -0
- data/spec/rails/templates/localization_system_spec/app/views/localization_system_spec/dot_notation.rb +5 -0
- data/spec/rails/templates/localization_system_spec/app/views/localization_system_spec/explicit_html.rb +13 -0
- data/spec/rails/templates/localization_system_spec/app/views/localization_system_spec/i18n_t.rb +5 -0
- data/spec/rails/templates/localization_system_spec/app/views/localization_system_spec/native_support.rb +7 -0
- data/spec/rails/templates/localization_system_spec/app/views/localization_system_spec/readjust_base.rb +7 -0
- data/spec/rails/templates/localization_system_spec/app/views/localization_system_spec/t.rb +5 -0
- data/spec/rails/templates/localization_system_spec/config/locales/en.yml +21 -0
- data/spec/rails/templates/localization_system_spec/config/locales/fr.yml +14 -0
- data/spec/rails/templates/localization_system_spec/config/locales/pt.yml +2 -0
- data/spec/rails/templates/production_mode_system_spec/app/controllers/production_mode_system_spec_controller.rb +5 -0
- data/spec/rails/templates/production_mode_system_spec/app/views/production_mode_system_spec/sample_output.rb +9 -0
- data/spec/rails/templates/rendering_context_system_spec/app/controllers/rendering_context_system_spec_controller.rb +72 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/_start_end_widget_through_partials_partial.html.erb +1 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/_uses_direct_context_for_all_widgets_partial.html.erb +1 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/_uses_specified_context_through_nesting_partial.html.erb +2 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/render_widget.rb +5 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/start_end_widget_basic.rb +12 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/start_end_widget_basic_inner.rb +7 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/start_end_widget_through_partials.rb +16 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/start_end_widget_through_partials_partial_widget.rb +7 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/uses_direct_context_for_all_widgets.rb +7 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/uses_direct_context_for_all_widgets_widget.rb +5 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/uses_direct_context_in_view.rb +5 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/uses_specified_context_in_partials.html.erb +3 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/uses_specified_context_in_partials_partial.rb +5 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/uses_specified_context_in_view.rb +5 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/uses_specified_context_through_nesting.rb +6 -0
- data/spec/rails/templates/rendering_context_system_spec/app/views/rendering_context_system_spec/uses_specified_context_through_nesting_inner_partial.rb +5 -0
- data/spec/rails/templates/rendering_context_system_spec/lib/simple_rc.rb +17 -0
- data/spec/rails/templates/rendering_system_spec/app/controllers/rendering_system_spec_controller.rb +111 -0
- data/spec/rails/templates/rendering_system_spec/app/views/layouts/application.html.erb +19 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/_layout_for_partial.html.erb +3 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/_the_partial.html.erb +1 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/partial_with_layout.rb +5 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_collection.html.erb +3 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_collection_as.html.erb +3 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_file_from_widget.rb +7 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_html_safe_strings.rb +16 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_inline_from_widget.rb +11 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_object.html.erb +3 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_partial_from_widget.rb +7 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_partial_with_layout.html.erb +3 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_partial_with_widget_layout.html.erb +3 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_template_from_widget.rb +7 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_text_from_widget.rb +7 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/stream_widget.rb +13 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/trivial_widget.rb +5 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/widget_layout_for_partial.rb +7 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/widget_with_name.rb +7 -0
- data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/word.rb +7 -0
- data/spec/rails/templates/rendering_system_spec/app/views/widget_to_render.rb +7 -0
- data/spec/rails/templates/rules_system_spec/app/controllers/rules_system_spec_controller.rb +22 -0
- data/spec/rails/templates/rules_system_spec/app/views/layouts/fortitude_layout_with_p.rb +19 -0
- data/spec/rails/templates/rules_system_spec/app/views/rules_system_spec/_intervening_partial_erb_partial.html.erb +1 -0
- data/spec/rails/templates/rules_system_spec/app/views/rules_system_spec/intervening_partial.rb +9 -0
- data/spec/rails/templates/rules_system_spec/app/views/rules_system_spec/intervening_partial_fortitude_partial.rb +9 -0
- data/spec/rails/templates/rules_system_spec/app/views/rules_system_spec/invalid_start_tag_in_partial.html.erb +3 -0
- data/spec/rails/templates/rules_system_spec/app/views/rules_system_spec/invalid_start_tag_in_partial_partial.rb +9 -0
- data/spec/rails/templates/rules_system_spec/app/views/rules_system_spec/invalid_start_tag_in_view.rb +9 -0
- data/spec/rails/templates/rules_system_spec/app/views/rules_system_spec/invalidly_nested_tag.rb +11 -0
- data/spec/rails/templates/rules_system_spec/app/views/rules_system_spec/invalidly_nested_tag_in_partial.html.erb +3 -0
- data/spec/rails/templates/rules_system_spec/app/views/rules_system_spec/invalidly_nested_tag_in_partial_partial.rb +11 -0
- data/spec/rails/templates/static_method_system_spec/app/controllers/static_method_system_spec_controller.rb +15 -0
- data/spec/rails/templates/static_method_system_spec/app/helpers/some_helper.rb +10 -0
- data/spec/rails/templates/static_method_system_spec/app/views/static_method_system_spec/allows_helper_access.rb +8 -0
- data/spec/rails/templates/static_method_system_spec/app/views/static_method_system_spec/localization.rb +7 -0
- data/spec/rails/templates/static_method_system_spec/config/locales/en.yml +4 -0
- data/spec/rails/templates/static_method_system_spec/config/locales/fr.yml +4 -0
- data/spec/system/around_content_system_spec.rb +399 -0
- data/spec/system/assigns_system_spec.rb +316 -0
- data/spec/system/attribute_rules_system_spec.rb +227 -0
- data/spec/system/basic_system_spec.rb +9 -0
- data/spec/system/content_inheritance_system_spec.rb +13 -0
- data/spec/system/convenience_methods_system_spec.rb +30 -0
- data/spec/system/doctypes_system_spec.rb +228 -0
- data/spec/system/erector_compatibility_system_spec.rb +84 -0
- data/spec/system/escaping_system_spec.rb +43 -0
- data/spec/system/formatting_system_spec.rb +63 -0
- data/spec/system/helpers_system_spec.rb +235 -0
- data/spec/system/id_uniqueness_system_spec.rb +205 -0
- data/spec/system/inline_system_spec.rb +58 -0
- data/spec/system/localization_system_spec.rb +94 -0
- data/spec/system/method_precedence_system_spec.rb +48 -0
- data/spec/system/needs_system_spec.rb +381 -0
- data/spec/system/other_outputters_system_spec.rb +117 -0
- data/spec/system/rails_not_available_spec.rb +11 -0
- data/spec/system/rebuild_notifications_system_spec.rb +208 -0
- data/spec/system/rendering_context_system_spec.rb +83 -0
- data/spec/system/setting_inheritance_system_spec.rb +585 -0
- data/spec/system/shared_variable_system_spec.rb +120 -0
- data/spec/system/start_end_comments_system_spec.rb +363 -0
- data/spec/system/static_method_system_spec.rb +348 -0
- data/spec/system/tag_rendering_system_spec.rb +260 -0
- data/spec/system/tag_return_value_system_spec.rb +41 -0
- data/spec/system/tag_rules_system_spec.rb +196 -0
- data/spec/system/tag_updating_system_spec.rb +171 -0
- data/spec/system/tilt_system_spec.rb +382 -0
- data/spec/system/unparsed_data_system_spec.rb +16 -0
- data/spec/system/void_tags_system_spec.rb +90 -0
- data/spec/system/widget_return_values_system_spec.rb +107 -0
- metadata +759 -0
@@ -0,0 +1,115 @@
|
|
1
|
+
require 'fortitude/doctypes'
|
2
|
+
require 'fortitude/tags/tag_store'
|
3
|
+
require 'fortitude/doctypes/html4_tags_strict'
|
4
|
+
|
5
|
+
module Fortitude
|
6
|
+
module Doctypes
|
7
|
+
module Html4TagsTransitional
|
8
|
+
extend Fortitude::Tags::TagStore
|
9
|
+
|
10
|
+
class << self
|
11
|
+
def delegate_tag_stores
|
12
|
+
[ Fortitude::Doctypes::Html4TagsStrict ]
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
TRANSITIONAL_BLOCK_CONTENT = %w{dir menu center isindex}
|
17
|
+
TRANSITIONAL_INLINE_CONTENT = %w{u s strike applet font basefont iframe}
|
18
|
+
TRANSITIONAL_FLOW_CONTENT = %w{dir menu center isindex u s strike applet font basefont iframe}
|
19
|
+
|
20
|
+
%w{ATTRS_ATTRIBUTES FLOW_CONTENT INLINE_CONTENT CORE_ATTRIBUTES I18N_ATTRIBUTES}.each do |constant_name|
|
21
|
+
const_set(constant_name, Fortitude::Doctypes::Html4TagsStrict.const_get(constant_name))
|
22
|
+
end
|
23
|
+
|
24
|
+
tag :dir, :newline_before => true, :valid_attributes => ATTRS_ATTRIBUTES + %w{compact},
|
25
|
+
:can_enclose => %w{li},
|
26
|
+
:spec => 'http://www.w3.org/TR/html401/sgml/loosedtd.html#dir'
|
27
|
+
tag :menu, :newline_before => true, :valid_attributes => ATTRS_ATTRIBUTES + %w{menu},
|
28
|
+
:can_enclose => %w{li},
|
29
|
+
:spec => 'http://www.w3.org/TR/html401/sgml/loosedtd.html#dir'
|
30
|
+
|
31
|
+
tag :center, :valid_attributes => ATTRS_ATTRIBUTES, :can_enclose => FLOW_CONTENT
|
32
|
+
|
33
|
+
# HTML4.01 spec, section 13.4
|
34
|
+
tag :applet, :newline_before => true, :can_enclose => %w{param} + FLOW_CONTENT,
|
35
|
+
:valid_attributes => CORE_ATTRIBUTES + %w{codebase archive code object alt name width height align hspace vspace},
|
36
|
+
:spec => 'http://www.w3.org/TR/html401/struct/objects.html#h-13.4'
|
37
|
+
|
38
|
+
tag :strike, :can_enclose => INLINE_CONTENT, :valid_attributes => ATTRS_ATTRIBUTES,
|
39
|
+
:spec => 'http://www.w3.org/TR/html401/present/graphics.html#h-15.2.1'
|
40
|
+
tag :s, :can_enclose => INLINE_CONTENT, :valid_attributes => ATTRS_ATTRIBUTES,
|
41
|
+
:spec => 'http://www.w3.org/TR/html401/present/graphics.html#h-15.2.1'
|
42
|
+
tag :u, :can_enclose => INLINE_CONTENT, :valid_attributes => ATTRS_ATTRIBUTES,
|
43
|
+
:spec => 'http://www.w3.org/TR/html401/present/graphics.html#h-15.2.1'
|
44
|
+
tag :font, :can_enclose => INLINE_CONTENT,
|
45
|
+
:valid_attributes => CORE_ATTRIBUTES + I18N_ATTRIBUTES + %w{size color face},
|
46
|
+
:spec => 'http://www.w3.org/TR/html401/sgml/loosedtd.html#basefont'
|
47
|
+
tag :basefont, :content_allowed => false, :valid_attributes => %w{id size color face},
|
48
|
+
:spec => 'http://www.w3.org/TR/html401/sgml/loosedtd.html#basefont'
|
49
|
+
|
50
|
+
tag :isindex, :newline_before => true, :content_allowed => false,
|
51
|
+
:valid_attributes => CORE_ATTRIBUTES + I18N_ATTRIBUTES + %w{prompt},
|
52
|
+
:spec => 'http://www.w3.org/TR/html401/sgml/loosedtd.html#isindex'
|
53
|
+
|
54
|
+
|
55
|
+
|
56
|
+
%w{body blockquote map form noscript}.each do |block_content_tag_name|
|
57
|
+
modify_tag(block_content_tag_name) { |t| t.can_enclose += TRANSITIONAL_BLOCK_CONTENT }
|
58
|
+
end
|
59
|
+
|
60
|
+
%w{span h1 h2 h3 h4 h5 h6 address em strong dfn code samp kbd var cite abbr acronym q sub sup p pre dt caption} +
|
61
|
+
%w{a tt i b big small label legend strike s u font}.each do |inline_content_tag_name|
|
62
|
+
modify_tag(inline_content_tag_name) { |t| t.can_enclose += TRANSITIONAL_INLINE_CONTENT }
|
63
|
+
end
|
64
|
+
|
65
|
+
%w{div ins del li dd th td object button fieldset center applet}.each do |flow_content_tag_name|
|
66
|
+
modify_tag(flow_content_tag_name) { |t| t.can_enclose += TRANSITIONAL_FLOW_CONTENT }
|
67
|
+
end
|
68
|
+
|
69
|
+
|
70
|
+
BGCOLORS_ATTRIBUTES = %w{bgcolor text link vlink alink}
|
71
|
+
|
72
|
+
modify_tag(:html) { |t| t.valid_attributes += %w{version} }
|
73
|
+
|
74
|
+
modify_tag(:body) { |t| t.valid_attributes += %w{background} + BGCOLORS_ATTRIBUTES }
|
75
|
+
modify_tag(:div) { |t| t.valid_attributes += %w{align} }
|
76
|
+
modify_tag(:h1) { |t| t.valid_attributes += %w{align} }
|
77
|
+
modify_tag(:h2) { |t| t.valid_attributes += %w{align} }
|
78
|
+
modify_tag(:h3) { |t| t.valid_attributes += %w{align} }
|
79
|
+
modify_tag(:h4) { |t| t.valid_attributes += %w{align} }
|
80
|
+
modify_tag(:h5) { |t| t.valid_attributes += %w{align} }
|
81
|
+
modify_tag(:h6) { |t| t.valid_attributes += %w{align} }
|
82
|
+
|
83
|
+
modify_tag(:p) { |t| t.valid_attributes += %w{align} }
|
84
|
+
modify_tag(:br) { |t| t.valid_attributes += %w{clear} }
|
85
|
+
modify_tag(:pre) { |t| t.valid_attributes += %w{width} }
|
86
|
+
|
87
|
+
modify_tag(:ul) { |t| t.valid_attributes += %w{type compact} }
|
88
|
+
modify_tag(:ol) { |t| t.valid_attributes += %w{type compact start} }
|
89
|
+
modify_tag(:li) { |t| t.valid_attributes += %w{type value} }
|
90
|
+
modify_tag(:dl) { |t| t.valid_attributes += %w{compact} }
|
91
|
+
|
92
|
+
modify_tag(:table) { |t| t.valid_attributes += %w{align bgcolor} }
|
93
|
+
modify_tag(:caption) { |t| t.valid_attributes += %w{align} }
|
94
|
+
modify_tag(:tr) { |t| t.valid_attributes += %w{bgcolor} }
|
95
|
+
modify_tag(:th) { |t| t.valid_attributes += %w{nowrap bgcolor width height} }
|
96
|
+
|
97
|
+
modify_tag(:a) { |t| t.valid_attributes += %w{target} }
|
98
|
+
modify_tag(:link) { |t| t.valid_attributes += %w{target} }
|
99
|
+
modify_tag(:base) { |t| t.valid_attributes += %w{target} }
|
100
|
+
|
101
|
+
modify_tag(:img) { |t| t.valid_attributes += %w{align border hspace vspace} }
|
102
|
+
modify_tag(:object) { |t| t.valid_attributes += %w{align border hspace vspace} }
|
103
|
+
|
104
|
+
modify_tag(:area) { |t| t.valid_attributes += %w{target} }
|
105
|
+
|
106
|
+
modify_tag(:hr) { |t| t.valid_attributes += %w{align noshade size width} }
|
107
|
+
|
108
|
+
modify_tag(:form) { |t| t.valid_attributes += %w{target} }
|
109
|
+
modify_tag(:input) { |t| t.valid_attributes += %w{align} }
|
110
|
+
|
111
|
+
modify_tag(:legend) { |t| t.valid_attributes += %w{align} }
|
112
|
+
modify_tag(:script) { |t| t.valid_attributes += %w{language} }
|
113
|
+
end
|
114
|
+
end
|
115
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
require 'fortitude/doctypes'
|
2
|
+
require 'fortitude/doctypes/html4'
|
3
|
+
require 'fortitude/doctypes/html4_tags_transitional'
|
4
|
+
|
5
|
+
module Fortitude
|
6
|
+
module Doctypes
|
7
|
+
class Html4Transitional < Html4
|
8
|
+
def initialize(name = nil, dtd = nil)
|
9
|
+
super(name || :html4_transitional, dtd || 'HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"')
|
10
|
+
end
|
11
|
+
|
12
|
+
class << self
|
13
|
+
def delegate_tag_stores
|
14
|
+
[ Fortitude::Doctypes::Html4TagsTransitional ]
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,373 @@
|
|
1
|
+
require 'fortitude/doctypes'
|
2
|
+
require 'fortitude/doctypes/base'
|
3
|
+
|
4
|
+
module Fortitude
|
5
|
+
module Doctypes
|
6
|
+
class Html5 < Base
|
7
|
+
def initialize
|
8
|
+
super(:html5, "html")
|
9
|
+
end
|
10
|
+
|
11
|
+
def default_javascript_tag_attributes
|
12
|
+
{ }
|
13
|
+
end
|
14
|
+
|
15
|
+
def needs_cdata_in_javascript_tag?
|
16
|
+
false
|
17
|
+
end
|
18
|
+
|
19
|
+
def close_void_tags_must_be
|
20
|
+
nil
|
21
|
+
end
|
22
|
+
|
23
|
+
# HTML5 spec, section 3.2.5
|
24
|
+
GLOBAL_ATTRIBUTES = %w{accesskey class contenteditable dir draggable dropzone hidden id lang spellcheck style} +
|
25
|
+
%w{tabindex title translate}
|
26
|
+
|
27
|
+
# HTML5 spec, section 3.2.7
|
28
|
+
ARIA_ATTRIBUTES = %w{role}
|
29
|
+
|
30
|
+
# HTML5 spec, section 3.2.5
|
31
|
+
EVENT_HANDLER_GLOBAL_ATTRIBUTES = %w{onabort onblur oncancel oncanplay oncanplaythrough onchange onclick} +
|
32
|
+
%w{onclose oncuechange ondblclick ondrag ondragend ondragenter ondragexit ondragleave ondragover ondragstart} +
|
33
|
+
%w{ondrop ondurationchange onemptied onended onerror onfocus oninput oninvalid onkeydown onkeypress onkeyup} +
|
34
|
+
%w{onload onloadeddata onloadedmetadata onloadstart onmousedown onmouseenter onmouseleave onmousemove} +
|
35
|
+
%w{onmouseout onmouseover onmouseup onmousewheel onpause onplay onplaying onprogress onratechange onreset} +
|
36
|
+
%w{onresize onscroll onseeked onseeking onselect onshow onstalled onsubmit onsuspend ontimeupdate ontoggle} +
|
37
|
+
%w{onvolumechange onwaiting}
|
38
|
+
|
39
|
+
ALL_ELEMENTS_ATTRIBUTES = GLOBAL_ATTRIBUTES | ARIA_ATTRIBUTES | EVENT_HANDLER_GLOBAL_ATTRIBUTES
|
40
|
+
|
41
|
+
class << self
|
42
|
+
def html5_tag(name, options = { })
|
43
|
+
options[:valid_attributes] = (options[:valid_attributes] || [ ]).map { |x| x.to_s.strip.downcase }
|
44
|
+
options[:valid_attributes] |= ALL_ELEMENTS_ATTRIBUTES
|
45
|
+
|
46
|
+
tag(name, options)
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
# HTML5 spec, section 3.2.4.1.1
|
51
|
+
METADATA_CONTENT = %w{base link meta noscript script style template title}
|
52
|
+
|
53
|
+
# HTML5 spec, section 3.2.4.1.2
|
54
|
+
FLOW_CONTENT = %w{a abbr address area article aside audio b bdi bdo blockquote br button canvas cite code data} +
|
55
|
+
%w{datalist del details dfn dialog div dl em embed fieldset figure footer form h1 h2 h3 h4 h5 h6 header hr i} +
|
56
|
+
%w{iframe img input ins kbd keygen label main map mark math meter nav noscript object ol output p pre} +
|
57
|
+
%w{progress q ruby s samp script section select small span strong style sub sup svg table template textarea} +
|
58
|
+
%w{time u ul var video wbr _text}
|
59
|
+
|
60
|
+
# HTML5 spec, section 3.2.4.1.3
|
61
|
+
SECTIONING_CONTENT = %w{article aside nav section}
|
62
|
+
|
63
|
+
# HTML5 spec, section 3.2.4.1.4
|
64
|
+
HEADING_CONTENT = %w{h1 h2 h3 h4 h5 h6}
|
65
|
+
|
66
|
+
# HTML5 spec, section 3.2.4.1.5
|
67
|
+
PHRASING_CONTENT = %w{a abbr area audio b bdi bdo br button canvas cite code data datalist del dfn em embed i} +
|
68
|
+
%w{iframe img input ins kbd keygen label map mark math meter noscript object output progress q ruby s samp} +
|
69
|
+
%w{script select small span strong sub sup svg template textarea time u var video wbr _text}
|
70
|
+
|
71
|
+
# HTML5 spec, section 3.2.4.1.6
|
72
|
+
EMBEDDED_CONTENT = %w{audio canvas embed iframe img math object svg video}
|
73
|
+
|
74
|
+
# HTML5 spec, section 3.2.4.1.7
|
75
|
+
INTERACTIVE_CONTENT = %w{a audio button details embed iframe img input keygen label object select textarea video}
|
76
|
+
|
77
|
+
# HTML5 spec, section 3.2.4.1.8
|
78
|
+
PALPABLE_CONTENT = %w{a abbr address article aside audio b bdi bdo blockquote button canvas cite code data} +
|
79
|
+
%w{details dfn div dl em embed fieldset figure footer form h1 h2 h3 h4 h5 h6 header i iframe img input} +
|
80
|
+
%w{ins kbd keygen label main map mark math meter nav object ol output p pre progress q ruby s samp section} +
|
81
|
+
%w{select small span strong sub sup svg table textarea time u ul var video _text}
|
82
|
+
|
83
|
+
# HTML5 spec, section 3.2.4.1.9
|
84
|
+
SCRIPT_SUPPORTING_ELEMENTS = %w{script template}
|
85
|
+
|
86
|
+
|
87
|
+
# ELEMENTS
|
88
|
+
# ===============================================================================================================
|
89
|
+
|
90
|
+
# HTML5 spec, section 4.1.1
|
91
|
+
html5_tag :html, :newline_before => true, :can_enclose => %w{head body}, :valid_attributes => %w{manifest},
|
92
|
+
:spec => 'http://www.w3.org/TR/html5/semantics.html#the-html-element'
|
93
|
+
|
94
|
+
# HTML5 spec, section 4.2
|
95
|
+
html5_tag :head, :newline_before => true, :can_enclose => METADATA_CONTENT,
|
96
|
+
:spec => 'http://www.w3.org/TR/html5/document-metadata.html#the-head-element'
|
97
|
+
html5_tag :title, :newline_before => true, :can_enclose => %w{_text},
|
98
|
+
:spec => 'http://www.w3.org/TR/html5/document-metadata.html#the-title-element'
|
99
|
+
html5_tag :base, :newline_before => true, :content_allowed => false, :valid_attributes => %w{href target},
|
100
|
+
:spec => 'http://www.w3.org/TR/html5/document-metadata.html#the-base-element'
|
101
|
+
html5_tag :link, :newline_before => true, :content_allowed => false,
|
102
|
+
:valid_attributes => %w{href crossorigin rel media hreflang type sizes},
|
103
|
+
:spec => 'http://www.w3.org/TR/html5/document-metadata.html#the-link-element'
|
104
|
+
html5_tag :meta, :newline_before => true, :content_allowed => false,
|
105
|
+
:valid_attributes => %w{name http-equiv content charset},
|
106
|
+
:spec => 'http://www.w3.org/TR/html5/document-metadata.html#the-meta-element'
|
107
|
+
html5_tag :style, :newline_before => true, :valid_attributes => %w{media type scoped},
|
108
|
+
:escape_direct_content => false,
|
109
|
+
:spec => 'http://www.w3.org/TR/html5/document-metadata.html#the-style-element'
|
110
|
+
|
111
|
+
# HTML5 spec, section 4.3
|
112
|
+
html5_tag :body, :newline_before => true, :can_enclose => FLOW_CONTENT,
|
113
|
+
:valid_attributes => %w{onafterprint onbeforeprint onbeforeunload onhashchange} +
|
114
|
+
%w{onmessage onoffline ononline onpagehide onpageshow onpopstate} +
|
115
|
+
%w{onstorage onunload},
|
116
|
+
:spec => 'http://www.w3.org/TR/html5/sections.html#the-body-element'
|
117
|
+
html5_tag :article, :newline_before => true, :can_enclose => FLOW_CONTENT,
|
118
|
+
:spec => 'http://www.w3.org/TR/html5/sections.html#the-article-element'
|
119
|
+
html5_tag :section, :newline_before => true, :can_enclose => FLOW_CONTENT,
|
120
|
+
:spec => 'http://www.w3.org/TR/html5/sections.html#the-section-element'
|
121
|
+
html5_tag :nav, :newline_before => true, :can_enclose => FLOW_CONTENT - %w{main},
|
122
|
+
:spec => 'http://www.w3.org/TR/html5/sections.html#the-nav-element'
|
123
|
+
html5_tag :aside, :newline_before => true, :can_enclose => FLOW_CONTENT - %w{main},
|
124
|
+
:spec => 'http://www.w3.org/TR/html5/sections.html#the-aside-element'
|
125
|
+
html5_tag :h1, :newline_before => true, :can_enclose => PHRASING_CONTENT,
|
126
|
+
:spec => 'http://www.w3.org/TR/html5/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements'
|
127
|
+
html5_tag :h2, :newline_before => true, :can_enclose => PHRASING_CONTENT,
|
128
|
+
:spec => 'http://www.w3.org/TR/html5/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements'
|
129
|
+
html5_tag :h3, :newline_before => true, :can_enclose => PHRASING_CONTENT,
|
130
|
+
:spec => 'http://www.w3.org/TR/html5/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements'
|
131
|
+
html5_tag :h4, :newline_before => true, :can_enclose => PHRASING_CONTENT,
|
132
|
+
:spec => 'http://www.w3.org/TR/html5/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements'
|
133
|
+
html5_tag :h5, :newline_before => true, :can_enclose => PHRASING_CONTENT,
|
134
|
+
:spec => 'http://www.w3.org/TR/html5/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements'
|
135
|
+
html5_tag :h6, :newline_before => true, :can_enclose => PHRASING_CONTENT,
|
136
|
+
:spec => 'http://www.w3.org/TR/html5/sections.html#the-h1,-h2,-h3,-h4,-h5,-and-h6-elements'
|
137
|
+
html5_tag :header, :newline_before => true, :can_enclose => FLOW_CONTENT - %w{header footer main},
|
138
|
+
:spec => 'http://www.w3.org/TR/html5/sections.html#the-header-element'
|
139
|
+
html5_tag :footer, :newline_before => true, :can_enclose => FLOW_CONTENT - %w{header footer main},
|
140
|
+
:spec => 'http://www.w3.org/TR/html5/sections.html#the-footer-element'
|
141
|
+
html5_tag :address, :newline_before => true,
|
142
|
+
:can_enclose => FLOW_CONTENT - HEADING_CONTENT - SECTIONING_CONTENT - %w{header footer address},
|
143
|
+
:spec => 'http://www.w3.org/TR/html5/sections.html#the-address-element'
|
144
|
+
|
145
|
+
# HTML5 spec, section 4.4
|
146
|
+
html5_tag :p, :newline_before => true, :can_enclose => PHRASING_CONTENT,
|
147
|
+
:spec => 'http://www.w3.org/TR/html5/grouping-content.html#the-p-element'
|
148
|
+
html5_tag :hr, :newline_before => true, :content_allowed => false,
|
149
|
+
:spec => 'http://www.w3.org/TR/html5/grouping-content.html#the-hr-element'
|
150
|
+
html5_tag :pre, :newline_before => true, :can_enclose => PHRASING_CONTENT,
|
151
|
+
:spec => 'http://www.w3.org/TR/html5/grouping-content.html#the-pre-element'
|
152
|
+
html5_tag :blockquote, :newline_before => true, :can_enclose => FLOW_CONTENT, :valid_attributes => %w{cite},
|
153
|
+
:spec => 'http://www.w3.org/TR/html5/grouping-content.html#the-blockquote-element'
|
154
|
+
html5_tag :ol, :newline_before => true, :can_enclose => %w{li} + SCRIPT_SUPPORTING_ELEMENTS,
|
155
|
+
:valid_attributes => %w{reversed start type},
|
156
|
+
:spec => 'http://www.w3.org/TR/html5/grouping-content.html#the-ol-element'
|
157
|
+
html5_tag :ul, :newline_before => true, :can_enclose => %w{li} + SCRIPT_SUPPORTING_ELEMENTS,
|
158
|
+
:spec => 'http://www.w3.org/TR/html5/grouping-content.html#the-ul-element'
|
159
|
+
html5_tag :li, :newline_before => true, :can_enclose => FLOW_CONTENT, :valid_attributes => %w{value},
|
160
|
+
:spec => 'http://www.w3.org/TR/html5/grouping-content.html#the-li-element'
|
161
|
+
html5_tag :dl, :newline_before => true, :can_enclose => %w{dt dd} + SCRIPT_SUPPORTING_ELEMENTS,
|
162
|
+
:spec => 'http://www.w3.org/TR/html5/grouping-content.html#the-dl-element'
|
163
|
+
html5_tag :dt, :newline_before => true,
|
164
|
+
:can_enclose => FLOW_CONTENT - %w{header footer} - SECTIONING_CONTENT - HEADING_CONTENT,
|
165
|
+
:spec => 'http://www.w3.org/TR/html5/grouping-content.html#the-dt-element'
|
166
|
+
html5_tag :dd, :newline_before => true, :can_enclose => FLOW_CONTENT,
|
167
|
+
:spec => 'http://www.w3.org/TR/html5/grouping-content.html#the-dd-element'
|
168
|
+
html5_tag :figure, :newline_before => true, :can_enclose => %w{figcaption} + FLOW_CONTENT,
|
169
|
+
:spec => 'http://www.w3.org/TR/html5/grouping-content.html#the-figure-element'
|
170
|
+
html5_tag :figcaption, :newline_before => true, :can_enclose => FLOW_CONTENT,
|
171
|
+
:spec => 'http://www.w3.org/TR/html5/grouping-content.html#the-figcaption-element'
|
172
|
+
html5_tag :div, :newline_before => true, :can_enclose => FLOW_CONTENT,
|
173
|
+
:spec => 'http://www.w3.org/TR/html5/grouping-content.html#the-div-element'
|
174
|
+
html5_tag :main, :newline_before => true, :can_enclose => FLOW_CONTENT,
|
175
|
+
:spec => 'http://www.w3.org/TR/html5/grouping-content.html#the-main-element'
|
176
|
+
|
177
|
+
# HTML5 spec, section 4.5
|
178
|
+
html5_tag :a, :valid_attributes => %w{href target download rel hreflang type},
|
179
|
+
:spec => 'http://www.w3.org/TR/html5/text-level-semantics.html#the-a-element'
|
180
|
+
html5_tag :em, :can_enclose => PHRASING_CONTENT,
|
181
|
+
:spec => 'http://www.w3.org/TR/html5/text-level-semantics.html#the-em-element'
|
182
|
+
html5_tag :strong, :can_enclose => PHRASING_CONTENT,
|
183
|
+
:spec => 'http://www.w3.org/TR/html5/text-level-semantics.html#the-strong-element'
|
184
|
+
html5_tag :small, :can_enclose => PHRASING_CONTENT,
|
185
|
+
:spec => 'http://www.w3.org/TR/html5/text-level-semantics.html#the-small-element'
|
186
|
+
html5_tag :s, :can_enclose => PHRASING_CONTENT,
|
187
|
+
:spec => 'http://www.w3.org/TR/html5/text-level-semantics.html#the-s-element'
|
188
|
+
html5_tag :cite, :can_enclose => PHRASING_CONTENT,
|
189
|
+
:spec => 'http://www.w3.org/TR/html5/text-level-semantics.html#the-cite-element'
|
190
|
+
html5_tag :q, :can_enclose => PHRASING_CONTENT, :valid_attributes => %w{cite},
|
191
|
+
:spec => 'http://www.w3.org/TR/html5/text-level-semantics.html#the-q-element'
|
192
|
+
html5_tag :dfn, :can_enclose => PHRASING_CONTENT - %w{dfn},
|
193
|
+
:spec => 'http://www.w3.org/TR/html5/text-level-semantics.html#the-dfn-element'
|
194
|
+
html5_tag :abbr, :can_enclose => PHRASING_CONTENT,
|
195
|
+
:spec => 'http://www.w3.org/TR/html5/text-level-semantics.html#the-abbr-element'
|
196
|
+
html5_tag :data, :can_enclose => PHRASING_CONTENT, :valid_attributes => %w{value},
|
197
|
+
:spec => 'http://www.w3.org/TR/html5/text-level-semantics.html#the-data-element'
|
198
|
+
html5_tag :time, :can_enclose => PHRASING_CONTENT, :valid_attributes => %w{datetime},
|
199
|
+
:spec => 'http://www.w3.org/TR/html5/text-level-semantics.html#the-time-element'
|
200
|
+
html5_tag :code, :can_enclose => PHRASING_CONTENT,
|
201
|
+
:spec => 'http://www.w3.org/TR/html5/text-level-semantics.html#the-code-element'
|
202
|
+
html5_tag :var, :can_enclose => PHRASING_CONTENT,
|
203
|
+
:spec => 'http://www.w3.org/TR/html5/text-level-semantics.html#the-var-element'
|
204
|
+
html5_tag :samp, :can_enclose => PHRASING_CONTENT,
|
205
|
+
:spec => 'http://www.w3.org/TR/html5/text-level-semantics.html#the-samp-element'
|
206
|
+
html5_tag :kbd, :can_enclose => PHRASING_CONTENT,
|
207
|
+
:spec => 'http://www.w3.org/TR/html5/text-level-semantics.html#the-kbd-element'
|
208
|
+
html5_tag :sub, :can_enclose => PHRASING_CONTENT,
|
209
|
+
:spec => 'http://www.w3.org/TR/html5/text-level-semantics.html#the-sub-and-sup-elements'
|
210
|
+
html5_tag :sup, :can_enclose => PHRASING_CONTENT,
|
211
|
+
:spec => 'http://www.w3.org/TR/html5/text-level-semantics.html#the-sub-and-sup-elements'
|
212
|
+
html5_tag :i, :can_enclose => PHRASING_CONTENT,
|
213
|
+
:spec => 'http://www.w3.org/TR/html5/text-level-semantics.html#the-i-element'
|
214
|
+
html5_tag :b, :can_enclose => PHRASING_CONTENT,
|
215
|
+
:spec => 'http://www.w3.org/TR/html5/text-level-semantics.html#the-b-element'
|
216
|
+
html5_tag :u, :can_enclose => PHRASING_CONTENT,
|
217
|
+
:spec => 'http://www.w3.org/TR/html5/text-level-semantics.html#the-b-element'
|
218
|
+
html5_tag :mark, :can_enclose => PHRASING_CONTENT,
|
219
|
+
:spec => 'http://www.w3.org/TR/html5/text-level-semantics.html#the-mark-element'
|
220
|
+
html5_tag :ruby, :can_enclose => PHRASING_CONTENT + %w{rb rt rtc rp},
|
221
|
+
:spec => 'http://www.w3.org/TR/html5/text-level-semantics.html#the-ruby-element'
|
222
|
+
html5_tag :rb, :can_enclose => PHRASING_CONTENT,
|
223
|
+
:spec => 'http://www.w3.org/TR/html5/text-level-semantics.html#the-rb-element'
|
224
|
+
html5_tag :rt, :can_enclose => PHRASING_CONTENT,
|
225
|
+
:spec => 'http://www.w3.org/TR/html5/text-level-semantics.html#the-rt-element'
|
226
|
+
html5_tag :rtc, :can_enclose => PHRASING_CONTENT,
|
227
|
+
:spec => 'http://www.w3.org/TR/html5/text-level-semantics.html#the-rtc-element'
|
228
|
+
html5_tag :rp, :can_enclose => PHRASING_CONTENT,
|
229
|
+
:spec => 'http://www.w3.org/TR/html5/text-level-semantics.html#the-rp-element'
|
230
|
+
html5_tag :bdi, :can_enclose => PHRASING_CONTENT,
|
231
|
+
:spec => 'http://www.w3.org/TR/html5/text-level-semantics.html#the-bdi-element'
|
232
|
+
html5_tag :bdo, :can_enclose => PHRASING_CONTENT,
|
233
|
+
:spec => 'http://www.w3.org/TR/html5/text-level-semantics.html#the-bdo-element'
|
234
|
+
html5_tag :span, :can_enclose => PHRASING_CONTENT,
|
235
|
+
:spec => 'http://www.w3.org/TR/html5/text-level-semantics.html#the-span-element'
|
236
|
+
html5_tag :br, :newline_before => true, :content_allowed => false,
|
237
|
+
:spec => 'http://www.w3.org/TR/html5/text-level-semantics.html#the-br-element'
|
238
|
+
html5_tag :wbr, :content_allowed => false,
|
239
|
+
:spec => 'http://www.w3.org/TR/html5/text-level-semantics.html#the-wbr-element'
|
240
|
+
|
241
|
+
# HTML5 spec, section 4.6
|
242
|
+
html5_tag :ins, :valid_attributes => %w{cite datetime}, :spec => 'http://www.w3.org/TR/html5/edits.html#the-ins-element'
|
243
|
+
html5_tag :del, :valid_attributes => %w{cite datetime}, :spec => 'http://www.w3.org/TR/html5/edits.html#the-del-element'
|
244
|
+
|
245
|
+
# HTML5 spec, section 4.7
|
246
|
+
html5_tag :img, :valid_attributes => %w{alt src crossorigin usemap ismap width height},
|
247
|
+
:content_allowed => false,
|
248
|
+
:spec => 'http://www.w3.org/TR/html5/embedded-content-0.html#the-img-element'
|
249
|
+
html5_tag :iframe, :newline_before => true, :valid_attributes => %w{src srcdoc name sandbox seamless width height},
|
250
|
+
:spec => 'http://www.w3.org/TR/html5/embedded-content-0.html#the-iframe-element'
|
251
|
+
html5_tag :embed, :newline_before => true, :valid_attributes => %w{src type width height}, :content_allowed => false,
|
252
|
+
:spec => 'http://www.w3.org/TR/html5/embedded-content-0.html#the-embed-element'
|
253
|
+
html5_tag :object, :newline_before => true,
|
254
|
+
:valid_attributes => %w{data type typemustmatch name usemap form width height},
|
255
|
+
:spec => 'http://www.w3.org/TR/html5/embedded-content-0.html#the-object-element'
|
256
|
+
html5_tag :param, :newline_before => true, :valid_attributes => %w{name value}, :content_allowed => false,
|
257
|
+
:spec => 'http://www.w3.org/TR/html5/embedded-content-0.html#the-param-element'
|
258
|
+
html5_tag :video, :newline_before => true,
|
259
|
+
:valid_attributes => %w{src crossorigin poster preload autoplay mediagroup loop muted controls width height},
|
260
|
+
:spec => 'http://www.w3.org/TR/html5/embedded-content-0.html#the-video-element'
|
261
|
+
html5_tag :audio, :newline_before => true,
|
262
|
+
:valid_attributes => %w{src crossorigin preload autoplay mediagroup loop muted controls},
|
263
|
+
:spec => 'http://www.w3.org/TR/html5/embedded-content-0.html#the-audio-element'
|
264
|
+
html5_tag :source, :newline_before => true, :valid_attributes => %w{src type media}, :content_allowed => false,
|
265
|
+
:spec => 'http://www.w3.org/TR/html5/embedded-content-0.html#the-source-element'
|
266
|
+
html5_tag :track, :newline_before => true, :valid_attributes => %w{kind src srclang label default},
|
267
|
+
:content_allowed => false,
|
268
|
+
:spec => 'http://www.w3.org/TR/html5/embedded-content-0.html#the-track-element'
|
269
|
+
html5_tag :map, :newline_before => true, :valid_attributes => %w{name},
|
270
|
+
:spec => 'http://www.w3.org/TR/html5/embedded-content-0.html#the-map-element'
|
271
|
+
html5_tag :area, :newline_before => true,
|
272
|
+
:valid_attributes => %w{alt coords shape href target download rel hreflang type}, :content_allowed => false,
|
273
|
+
:spec => 'http://www.w3.org/TR/html5/embedded-content-0.html#the-area-element'
|
274
|
+
|
275
|
+
# HTML5 spec, section 4.9
|
276
|
+
html5_tag :table, :newline_before => true,
|
277
|
+
:can_enclose => %w{caption colgroup thead tfoot tbody tr} + SCRIPT_SUPPORTING_ELEMENTS,
|
278
|
+
:spec => 'http://www.w3.org/TR/html5/tabular-data.html#the-table-element'
|
279
|
+
html5_tag :caption, :newline_before => true, :can_enclose => FLOW_CONTENT - %w{table},
|
280
|
+
:spec => 'http://www.w3.org/TR/html5/tabular-data.html#the-caption-element'
|
281
|
+
html5_tag :colgroup, :newline_before => true, :valid_attributes => %w{span}, :can_enclose => %w{col template},
|
282
|
+
:spec => 'http://www.w3.org/TR/html5/tabular-data.html#the-colgroup-element'
|
283
|
+
html5_tag :col, :newline_before => true, :valid_attributes => %w{span}, :content_allowed => false,
|
284
|
+
:spec => 'http://www.w3.org/TR/html5/tabular-data.html#the-col-element'
|
285
|
+
html5_tag :tbody, :newline_before => true, :can_enclose => %w{tr} + SCRIPT_SUPPORTING_ELEMENTS,
|
286
|
+
:spec => 'http://www.w3.org/TR/html5/tabular-data.html#the-tbody-element'
|
287
|
+
html5_tag :thead, :newline_before => true, :can_enclose => %w{tr} + SCRIPT_SUPPORTING_ELEMENTS,
|
288
|
+
:spec => 'http://www.w3.org/TR/html5/tabular-data.html#the-thead-element'
|
289
|
+
html5_tag :tfoot, :newline_before => true, :can_enclose => %w{tr} + SCRIPT_SUPPORTING_ELEMENTS,
|
290
|
+
:spec => 'http://www.w3.org/TR/html5/tabular-data.html#the-tfoot-element'
|
291
|
+
html5_tag :tr, :newline_before => true, :can_enclose => %w{td th} + SCRIPT_SUPPORTING_ELEMENTS,
|
292
|
+
:spec => 'http://www.w3.org/TR/html5/tabular-data.html#the-tr-element'
|
293
|
+
html5_tag :td, :newline_before => true, :can_enclose => FLOW_CONTENT,
|
294
|
+
:valid_attributes => %w{colspan rowspan headers},
|
295
|
+
:spec => 'http://www.w3.org/TR/html5/tabular-data.html#the-td-element'
|
296
|
+
html5_tag :th, :newline_before => true,
|
297
|
+
:can_enclose => FLOW_CONTENT - %w{header footer} - SECTIONING_CONTENT - HEADING_CONTENT,
|
298
|
+
:valid_attributes => %w{colspan rowspan headers scope abbr},
|
299
|
+
:spec => 'http://www.w3.org/TR/html5/tabular-data.html#the-th-element'
|
300
|
+
|
301
|
+
# HTML5 spec, section 4.10
|
302
|
+
html5_tag :form, :newline_before => true, :can_enclose => FLOW_CONTENT - %w{form},
|
303
|
+
:valid_attributes => %w{accept-charset action autocomplete enctype method name novalidate target},
|
304
|
+
:spec => 'http://www.w3.org/TR/html5/forms.html#the-form-element'
|
305
|
+
html5_tag :label, :newline_before => true,
|
306
|
+
:can_enclose => PHRASING_CONTENT - %w{button keygen meter output progress select textarea} - %w{label},
|
307
|
+
:valid_attributes => %w{form for},
|
308
|
+
:spec => 'http://www.w3.org/TR/html5/forms.html#the-label-element'
|
309
|
+
html5_tag :input, :newline_before => true, :content_allowed => false,
|
310
|
+
:valid_attributes => %w{accept alt autocomplete autofocus checked dirname disabled form formaction} +
|
311
|
+
%w{formenctype formmethod formnovalidate formtarget height list max maxlength} +
|
312
|
+
%w{min minlength multiple name pattern placeholder readonly required size src} +
|
313
|
+
%w{step type value width},
|
314
|
+
:spec => 'http://www.w3.org/TR/html5/forms.html#the-input-element'
|
315
|
+
html5_tag :button, :newline_before => true, :can_enclose => PHRASING_CONTENT - INTERACTIVE_CONTENT,
|
316
|
+
:valid_attributes => %w{autofocus disabled form formaction formenctype formmethod formnovalidate} +
|
317
|
+
%w{formtarget name type value},
|
318
|
+
:spec => 'http://www.w3.org/TR/html5/forms.html#the-button-element'
|
319
|
+
html5_tag :select, :newline_before => true, :can_enclose => %w{option optgroup} + SCRIPT_SUPPORTING_ELEMENTS,
|
320
|
+
:valid_attributes => %w{autofocus disabled form multiple name required size},
|
321
|
+
:spec => 'http://www.w3.org/TR/html5/forms.html#the-select-element'
|
322
|
+
html5_tag :datalist, :newline_before => true, :can_enclose => PHRASING_CONTENT + %w{option},
|
323
|
+
:spec => 'http://www.w3.org/TR/html5/forms.html#the-datalist-element'
|
324
|
+
html5_tag :optgroup, :newline_before => true, :can_enclose => %w{option} + SCRIPT_SUPPORTING_ELEMENTS,
|
325
|
+
:valid_attributes => %w{disabled label},
|
326
|
+
:spec => 'http://www.w3.org/TR/html5/forms.html#the-optgroup-element'
|
327
|
+
html5_tag :option, :newline_before => true, :can_enclose => %w{_text},
|
328
|
+
:valid_attributes => %w{disabled label selected value},
|
329
|
+
:spec => 'http://www.w3.org/TR/html5/forms.html#the-option-element'
|
330
|
+
html5_tag :textarea, :newline_before => true, :can_enclose => %w{_text},
|
331
|
+
:valid_attributes => %w{autocomplete autofocus cols dirname disabled form maxlength minlength name} +
|
332
|
+
%w{placeholder readonly required rows wrap},
|
333
|
+
:spec => 'http://www.w3.org/TR/html5/forms.html#the-textarea-element'
|
334
|
+
html5_tag :keygen, :newline_before => true, :content_allowed => false,
|
335
|
+
:valid_attributes => %w{autofocus challenge disabled form keytype name},
|
336
|
+
:spec => 'http://www.w3.org/TR/html5/forms.html#the-keygen-element'
|
337
|
+
html5_tag :output, :newline_before => true, :can_enclose => PHRASING_CONTENT,
|
338
|
+
:valid_attributes => %w{for form name},
|
339
|
+
:spec => 'http://www.w3.org/TR/html5/forms.html#the-output-element'
|
340
|
+
html5_tag :progress, :newline_before => true, :can_enclose => PHRASING_CONTENT - %w{progress},
|
341
|
+
:valid_attributes => %w{value max},
|
342
|
+
:spec => 'http://www.w3.org/TR/html5/forms.html#the-progress-element'
|
343
|
+
html5_tag :meter, :newline_before => true, :can_enclose => PHRASING_CONTENT - %w{meter},
|
344
|
+
:valid_attributes => %w{value min max low high optimum},
|
345
|
+
:spec => 'http://www.w3.org/TR/html5/forms.html#the-meter-element'
|
346
|
+
html5_tag :fieldset, :newline_before => true, :can_enclose => FLOW_CONTENT + %w{legend},
|
347
|
+
:valid_attributes => %w{disabled form name},
|
348
|
+
:spec => 'http://www.w3.org/TR/html5/forms.html#the-fieldset-element'
|
349
|
+
html5_tag :legend, :newline_before => true, :can_enclose => PHRASING_CONTENT,
|
350
|
+
:spec => 'http://www.w3.org/TR/html5/forms.html#the-legend-element'
|
351
|
+
|
352
|
+
# HTML5 spec, section 4.11
|
353
|
+
html5_tag :details, :newline_before => true, :can_enclose => %w{summary} + FLOW_CONTENT,
|
354
|
+
:valid_attributes => %w{open},
|
355
|
+
:spec => 'http://www.w3.org/TR/html5/interactive-elements.html#the-details-element'
|
356
|
+
html5_tag :summary, :newline_before => true, :can_enclose => PHRASING_CONTENT,
|
357
|
+
:spec => 'http://www.w3.org/TR/html5/interactive-elements.html#the-summary-element'
|
358
|
+
html5_tag :dialog, :newline_before => true, :can_enclose => FLOW_CONTENT, :valid_attributes => %w{open},
|
359
|
+
:spec => 'http://www.w3.org/TR/html5/interactive-elements.html#the-dialog-element'
|
360
|
+
|
361
|
+
# HTML5 spec, section 4.12
|
362
|
+
html5_tag :script, :newline_before => true, :can_enclose => %w{_text},
|
363
|
+
:valid_attributes => %w{src type charset async defer crossorigin}, :escape_direct_content => false,
|
364
|
+
:spec => 'http://www.w3.org/TR/html5/scripting-1.html#the-script-element'
|
365
|
+
html5_tag :noscript, :newline_before => true,
|
366
|
+
:spec => 'http://www.w3.org/TR/html5/scripting-1.html#the-noscript-element'
|
367
|
+
html5_tag :template, :newline_before => true,
|
368
|
+
:spec => 'http://www.w3.org/TR/html5/scripting-1.html#the-template-element'
|
369
|
+
html5_tag :canvas, :newline_before => true, :valid_attributes => %w{width height},
|
370
|
+
:spec => 'http://www.w3.org/TR/html5/scripting-1.html#the-canvas-element'
|
371
|
+
end
|
372
|
+
end
|
373
|
+
end
|