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
data/fortitude.gemspec
ADDED
@@ -0,0 +1,42 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'fortitude/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = "fortitude"
|
8
|
+
s.version = Fortitude::VERSION
|
9
|
+
s.authors = ["Andrew Geweke"]
|
10
|
+
s.email = ["andrew@geweke.org"]
|
11
|
+
s.summary = %q{Views Are Code: use all the power of Ruby to build views in your own language.}
|
12
|
+
s.description = %q{Views Are Code: use all the power of Ruby to build views in your own language.}
|
13
|
+
s.homepage = "https://github.com/ageweke/fortitude"
|
14
|
+
s.license = "MIT"
|
15
|
+
|
16
|
+
s.files = `git ls-files`.split($/)
|
17
|
+
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
s.test_files = s.files.grep(%r{^(test|spec|features)/})
|
19
|
+
s.require_paths = ["lib"]
|
20
|
+
|
21
|
+
if RUBY_PLATFORM =~ /java/
|
22
|
+
s.platform = 'java'
|
23
|
+
else
|
24
|
+
s.platform = Gem::Platform::RUBY
|
25
|
+
s.extensions << "ext/fortitude_native_ext/extconf.rb"
|
26
|
+
end
|
27
|
+
|
28
|
+
activesupport_spec = if RUBY_VERSION =~ /^1\.8\./
|
29
|
+
[ ">= 3.0", "< 4.0" ]
|
30
|
+
else
|
31
|
+
[ ">= 3.0" ]
|
32
|
+
end
|
33
|
+
|
34
|
+
s.add_dependency "activesupport", *activesupport_spec
|
35
|
+
|
36
|
+
s.add_development_dependency "bundler", "~> 1.5"
|
37
|
+
s.add_development_dependency "rake"
|
38
|
+
s.add_development_dependency "rspec", "~> 2.99"
|
39
|
+
s.add_development_dependency "rake-compiler"
|
40
|
+
s.add_development_dependency "json"
|
41
|
+
s.add_development_dependency "tilt", "~> 2.0"
|
42
|
+
end
|
data/lib/fortitude.rb
ADDED
@@ -0,0 +1,48 @@
|
|
1
|
+
require 'fortitude/doctypes/base'
|
2
|
+
require 'fortitude/doctypes/html4'
|
3
|
+
require 'fortitude/doctypes/html4_frameset'
|
4
|
+
require 'fortitude/doctypes/html4_strict'
|
5
|
+
require 'fortitude/doctypes/html4_transitional'
|
6
|
+
require 'fortitude/doctypes/html5'
|
7
|
+
require 'fortitude/doctypes/xhtml10'
|
8
|
+
require 'fortitude/doctypes/xhtml10_frameset'
|
9
|
+
require 'fortitude/doctypes/xhtml10_strict'
|
10
|
+
require 'fortitude/doctypes/xhtml10_transitional'
|
11
|
+
require 'fortitude/doctypes/xhtml11'
|
12
|
+
|
13
|
+
module Fortitude
|
14
|
+
module Doctypes
|
15
|
+
KNOWN_DOCTYPES = begin
|
16
|
+
out = { }
|
17
|
+
|
18
|
+
[
|
19
|
+
Html5,
|
20
|
+
|
21
|
+
Html4Strict,
|
22
|
+
Html4Transitional,
|
23
|
+
Html4Frameset,
|
24
|
+
|
25
|
+
Xhtml10Strict,
|
26
|
+
Xhtml10Transitional,
|
27
|
+
Xhtml10Frameset,
|
28
|
+
|
29
|
+
Xhtml11
|
30
|
+
].each do |doctype_class|
|
31
|
+
doctype = doctype_class.new
|
32
|
+
out[doctype.name] = doctype
|
33
|
+
end
|
34
|
+
|
35
|
+
out
|
36
|
+
end
|
37
|
+
|
38
|
+
class << self
|
39
|
+
def standard_doctype(type)
|
40
|
+
out = KNOWN_DOCTYPES[type]
|
41
|
+
unless out
|
42
|
+
raise ArgumentError, "Unknown standard doctype #{type.inspect}; I know about: #{KNOWN_DOCTYPES.keys.inspect}"
|
43
|
+
end
|
44
|
+
out
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
@@ -0,0 +1,42 @@
|
|
1
|
+
require 'fortitude/tags/tag_store'
|
2
|
+
|
3
|
+
module Fortitude
|
4
|
+
module Doctypes
|
5
|
+
class Base
|
6
|
+
extend Fortitude::Tags::TagStore
|
7
|
+
|
8
|
+
class << self
|
9
|
+
def delegate_tag_stores
|
10
|
+
if superclass.respond_to?(:tags)
|
11
|
+
[ superclass ]
|
12
|
+
else
|
13
|
+
[ ]
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
attr_reader :name
|
19
|
+
|
20
|
+
def initialize(name, doctype_line)
|
21
|
+
@name = name
|
22
|
+
@doctype_line = doctype_line
|
23
|
+
end
|
24
|
+
|
25
|
+
def tags
|
26
|
+
self.class.tags
|
27
|
+
end
|
28
|
+
|
29
|
+
def declare!(w)
|
30
|
+
w.doctype(@doctype_line)
|
31
|
+
end
|
32
|
+
|
33
|
+
def close_void_tags_must_be
|
34
|
+
nil
|
35
|
+
end
|
36
|
+
|
37
|
+
def to_s
|
38
|
+
"<Doctype #{name.inspect}>"
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
require 'fortitude/doctypes'
|
2
|
+
require 'fortitude/doctypes/base'
|
3
|
+
require 'fortitude/doctypes/html4_tags_strict'
|
4
|
+
|
5
|
+
module Fortitude
|
6
|
+
module Doctypes
|
7
|
+
class Html4 < Base
|
8
|
+
def default_javascript_tag_attributes
|
9
|
+
{ :type => 'text/javascript'.freeze }.freeze
|
10
|
+
end
|
11
|
+
|
12
|
+
def needs_cdata_in_javascript_tag?
|
13
|
+
false
|
14
|
+
end
|
15
|
+
|
16
|
+
def close_void_tags_must_be
|
17
|
+
false
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
require 'fortitude/doctypes'
|
2
|
+
require 'fortitude/doctypes/html4'
|
3
|
+
require 'fortitude/doctypes/html4_tags_frameset'
|
4
|
+
require 'fortitude/doctypes/html4_transitional'
|
5
|
+
|
6
|
+
module Fortitude
|
7
|
+
module Doctypes
|
8
|
+
class Html4Frameset < Html4Transitional
|
9
|
+
def initialize
|
10
|
+
super(:html4_frameset, 'HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"')
|
11
|
+
end
|
12
|
+
|
13
|
+
class << self
|
14
|
+
def delegate_tag_stores
|
15
|
+
[ Fortitude::Doctypes::Html4TagsFrameset ]
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
require 'fortitude/doctypes'
|
2
|
+
require 'fortitude/doctypes/html4'
|
3
|
+
|
4
|
+
module Fortitude
|
5
|
+
module Doctypes
|
6
|
+
class Html4Strict < Html4
|
7
|
+
def initialize
|
8
|
+
super(:html4_strict, 'HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"')
|
9
|
+
end
|
10
|
+
|
11
|
+
class << self
|
12
|
+
def delegate_tag_stores
|
13
|
+
[ Fortitude::Doctypes::Html4TagsStrict ]
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
require 'fortitude/doctypes'
|
2
|
+
require 'fortitude/tags/tag_store'
|
3
|
+
require 'fortitude/doctypes/html4_tags_transitional'
|
4
|
+
|
5
|
+
module Fortitude
|
6
|
+
module Doctypes
|
7
|
+
module Html4TagsFrameset
|
8
|
+
extend Fortitude::Tags::TagStore
|
9
|
+
|
10
|
+
class << self
|
11
|
+
def delegate_tag_stores
|
12
|
+
[ Fortitude::Doctypes::Html4TagsTransitional ]
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
FRAMESET_BLOCK_CONTENT = %w{noframes}
|
17
|
+
FRAMESET_FLOW_CONTENT = %w{noframes}
|
18
|
+
|
19
|
+
%w{CORE_ATTRIBUTES FLOW_CONTENT ATTRS_ATTRIBUTES}.each do |constant_name|
|
20
|
+
const_set(constant_name, Fortitude::Doctypes::Html4TagsTransitional.const_get(constant_name))
|
21
|
+
end
|
22
|
+
|
23
|
+
# HTML4.01 spec, section 16.2
|
24
|
+
tag :frameset, :newline_before => true, :can_enclose => %w{frameset frame noframes},
|
25
|
+
:valid_attributes => CORE_ATTRIBUTES + %w{rows cols onload onunload},
|
26
|
+
:spec => 'http://www.w3.org/TR/html401/present/frames.html#h-16.2.1'
|
27
|
+
tag :frame, :newline_before => true, :content_allowed => false,
|
28
|
+
:valid_attributes => CORE_ATTRIBUTES + %w{longdesc name src frameborder marginwidth marginheight noresize scrolling},
|
29
|
+
:spec => 'http://www.w3.org/TR/html401/present/frames.html#h-16.2.2'
|
30
|
+
tag :noframes, :newline_before => true, :can_enclose => FLOW_CONTENT,
|
31
|
+
:valid_attributes => ATTRS_ATTRIBUTES,
|
32
|
+
:spec => 'http://www.w3.org/TR/html401/present/frames.html#h-16.4.1'
|
33
|
+
|
34
|
+
# HTML4.01 spec, section 16.5
|
35
|
+
tag :iframe, :newline_before => true, :can_enclose => FLOW_CONTENT,
|
36
|
+
:valid_attributes => CORE_ATTRIBUTES + %w{longdesc name src frameborder marginwidth marginheight scrolling} +
|
37
|
+
%w{align height width},
|
38
|
+
:spec => 'http://www.w3.org/TR/html401/present/frames.html#h-16.5'
|
39
|
+
|
40
|
+
|
41
|
+
%w{body blockquote map form noscript}.each do |block_content_tag_name|
|
42
|
+
modify_tag(block_content_tag_name) { |t| t.can_enclose += FRAMESET_BLOCK_CONTENT }
|
43
|
+
end
|
44
|
+
|
45
|
+
%w{div ins del li dd th td object button fieldset center applet noframes iframe}.each do |flow_content_tag_name|
|
46
|
+
modify_tag(flow_content_tag_name) { |t| t.can_enclose += FRAMESET_FLOW_CONTENT }
|
47
|
+
end
|
48
|
+
|
49
|
+
|
50
|
+
modify_tag(:html) { |t| t.can_enclose += %w{frameset} }
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
@@ -0,0 +1,274 @@
|
|
1
|
+
require 'fortitude/doctypes'
|
2
|
+
require 'fortitude/tags/tag_store'
|
3
|
+
|
4
|
+
module Fortitude
|
5
|
+
module Doctypes
|
6
|
+
module Html4TagsStrict
|
7
|
+
extend Fortitude::Tags::TagStore
|
8
|
+
|
9
|
+
# HTML4.01 DTD
|
10
|
+
I18N_ATTRIBUTES = %w{lang dir}
|
11
|
+
CORE_ATTRIBUTES = %w{id class style title}
|
12
|
+
EVENTS_ATTRIBUTES = %w{onclick ondblclick onmousedown onmouseup onmouseover onmousemove onmouseout onkeypress onkeydown onkeyup}
|
13
|
+
ATTRS_ATTRIBUTES = CORE_ATTRIBUTES + I18N_ATTRIBUTES + EVENTS_ATTRIBUTES
|
14
|
+
|
15
|
+
CELLHALIGN_ATTRIBUTES = %w{align char charoff}
|
16
|
+
CELLVALIGN_ATTRIBUTES = %w{valign}
|
17
|
+
|
18
|
+
HEADING_CONTENT = %w{h1 h2 h3 h4 h5 h6}
|
19
|
+
# TRANSITIONAL: + %w{dir menu}
|
20
|
+
LIST_CONTENT = %w{ul ol}
|
21
|
+
PREFORMATTED_CONTENT = %w{pre}
|
22
|
+
# TRANSITIONAL: + %w{center noframes isindex}
|
23
|
+
BLOCK_CONTENT = %w{p} + HEADING_CONTENT + LIST_CONTENT + PREFORMATTED_CONTENT + %w{dl div noscript} +
|
24
|
+
%w{blockquote form hr table fieldset address}
|
25
|
+
# TRANSITIONAL: + %w{u s strike}
|
26
|
+
FONTSTYLE_CONTENT = %w{tt i b big small}
|
27
|
+
PHRASE_CONTENT = %w{em strong dfn code samp kbd var cite abbr acronym}
|
28
|
+
# TRANSITIONAL: + %w{applet font basefont iframe}
|
29
|
+
SPECIAL_CONTENT = %w{a img object br script map q sub sup span bdo}
|
30
|
+
FORMCTRL_CONTENT = %w{input select textarea label button}
|
31
|
+
INLINE_CONTENT = %w{_text} + FONTSTYLE_CONTENT + PHRASE_CONTENT + SPECIAL_CONTENT + FORMCTRL_CONTENT
|
32
|
+
FLOW_CONTENT = BLOCK_CONTENT + INLINE_CONTENT
|
33
|
+
|
34
|
+
# HTML4.01 spec, section 7.3
|
35
|
+
tag :html, :newline_before => true, :valid_attributes => I18N_ATTRIBUTES + %w{version},
|
36
|
+
:can_enclose => %w{head body},
|
37
|
+
:spec => 'http://www.w3.org/TR/html401/struct/global.html#h-7.3'
|
38
|
+
|
39
|
+
# HTML4.01 spec, section 7.4
|
40
|
+
tag :head, :newline_before => true, :valid_attributes => I18N_ATTRIBUTES + %w{profile},
|
41
|
+
:can_enclose => %w{script style meta link object title base},
|
42
|
+
:spec => 'http://www.w3.org/TR/html401/struct/global.html#h-7.4.1'
|
43
|
+
tag :title, :newline_before => true, :valid_attributes => I18N_ATTRIBUTES,
|
44
|
+
:spec => 'http://www.w3.org/TR/html401/struct/global.html#h-7.4.2'
|
45
|
+
tag :meta, :newline_before => true, :valid_attributes => I18N_ATTRIBUTES + %w{http-equiv name content scheme},
|
46
|
+
:content_allowed => false,
|
47
|
+
:spec => 'http://www.w3.org/TR/html401/struct/global.html#h-7.4.4.2'
|
48
|
+
|
49
|
+
# HTML4.01 spec, section 7.5
|
50
|
+
tag :body, :newline_before => true, :valid_attributes => ATTRS_ATTRIBUTES + %w{onload onunload},
|
51
|
+
:can_enclose => BLOCK_CONTENT + %w{script ins del},
|
52
|
+
:spec => 'http://www.w3.org/TR/html401/struct/global.html#h-7.5.1'
|
53
|
+
tag :div, :newline_before => true, :valid_attributes => ATTRS_ATTRIBUTES, :can_enclose => FLOW_CONTENT,
|
54
|
+
:spec => 'http://www.w3.org/TR/html401/struct/global.html#h-7.5.4'
|
55
|
+
tag :span, :valid_attributes => ATTRS_ATTRIBUTES, :can_enclose => INLINE_CONTENT,
|
56
|
+
:spec => 'http://www.w3.org/TR/html401/struct/global.html#h-7.5.4'
|
57
|
+
tag :h1, :newline_before => true, :valid_attributes => ATTRS_ATTRIBUTES, :can_enclose => INLINE_CONTENT,
|
58
|
+
:spec => 'http://www.w3.org/TR/html401/struct/global.html#h-7.5.5'
|
59
|
+
tag :h2, :newline_before => true, :valid_attributes => ATTRS_ATTRIBUTES, :can_enclose => INLINE_CONTENT,
|
60
|
+
:spec => 'http://www.w3.org/TR/html401/struct/global.html#h-7.5.5'
|
61
|
+
tag :h3, :newline_before => true, :valid_attributes => ATTRS_ATTRIBUTES, :can_enclose => INLINE_CONTENT,
|
62
|
+
:spec => 'http://www.w3.org/TR/html401/struct/global.html#h-7.5.5'
|
63
|
+
tag :h4, :newline_before => true, :valid_attributes => ATTRS_ATTRIBUTES, :can_enclose => INLINE_CONTENT,
|
64
|
+
:spec => 'http://www.w3.org/TR/html401/struct/global.html#h-7.5.5'
|
65
|
+
tag :h5, :newline_before => true, :valid_attributes => ATTRS_ATTRIBUTES, :can_enclose => INLINE_CONTENT,
|
66
|
+
:spec => 'http://www.w3.org/TR/html401/struct/global.html#h-7.5.5'
|
67
|
+
tag :h6, :newline_before => true, :valid_attributes => ATTRS_ATTRIBUTES, :can_enclose => INLINE_CONTENT,
|
68
|
+
:spec => 'http://www.w3.org/TR/html401/struct/global.html#h-7.5.5'
|
69
|
+
tag :address, :newline_before => true, :valid_attributes => ATTRS_ATTRIBUTES, :can_enclose => INLINE_CONTENT,
|
70
|
+
:spec => 'http://www.w3.org/TR/html401/struct/global.html#h-7.5.6'
|
71
|
+
|
72
|
+
# HTML4.01 spec, section 9.2
|
73
|
+
tag :em, :valid_attributes => ATTRS_ATTRIBUTES, :can_enclose => INLINE_CONTENT,
|
74
|
+
:spec => 'http://www.w3.org/TR/html401/struct/text.html#h-9.2.1'
|
75
|
+
tag :strong, :valid_attributes => ATTRS_ATTRIBUTES, :can_enclose => INLINE_CONTENT,
|
76
|
+
:spec => 'http://www.w3.org/TR/html401/struct/text.html#h-9.2.1'
|
77
|
+
tag :dfn, :valid_attributes => ATTRS_ATTRIBUTES, :can_enclose => INLINE_CONTENT,
|
78
|
+
:spec => 'http://www.w3.org/TR/html401/struct/text.html#h-9.2.1'
|
79
|
+
tag :code, :valid_attributes => ATTRS_ATTRIBUTES, :can_enclose => INLINE_CONTENT,
|
80
|
+
:spec => 'http://www.w3.org/TR/html401/struct/text.html#h-9.2.1'
|
81
|
+
tag :samp, :valid_attributes => ATTRS_ATTRIBUTES, :can_enclose => INLINE_CONTENT,
|
82
|
+
:spec => 'http://www.w3.org/TR/html401/struct/text.html#h-9.2.1'
|
83
|
+
tag :kbd, :valid_attributes => ATTRS_ATTRIBUTES, :can_enclose => INLINE_CONTENT,
|
84
|
+
:spec => 'http://www.w3.org/TR/html401/struct/text.html#h-9.2.1'
|
85
|
+
tag :var, :valid_attributes => ATTRS_ATTRIBUTES, :can_enclose => INLINE_CONTENT,
|
86
|
+
:spec => 'http://www.w3.org/TR/html401/struct/text.html#h-9.2.1'
|
87
|
+
tag :cite, :valid_attributes => ATTRS_ATTRIBUTES, :can_enclose => INLINE_CONTENT,
|
88
|
+
:spec => 'http://www.w3.org/TR/html401/struct/text.html#h-9.2.1'
|
89
|
+
tag :abbr, :valid_attributes => ATTRS_ATTRIBUTES, :can_enclose => INLINE_CONTENT,
|
90
|
+
:spec => 'http://www.w3.org/TR/html401/struct/text.html#h-9.2.1'
|
91
|
+
tag :acronym, :valid_attributes => ATTRS_ATTRIBUTES, :can_enclose => INLINE_CONTENT,
|
92
|
+
:spec => 'http://www.w3.org/TR/html401/struct/text.html#h-9.2.1'
|
93
|
+
tag :blockquote, :newline_before => true, :valid_attributes => ATTRS_ATTRIBUTES + %w{cite},
|
94
|
+
:can_enclose => BLOCK_CONTENT + %w{script},
|
95
|
+
:spec => 'http://www.w3.org/TR/html401/struct/text.html#h-9.2.2'
|
96
|
+
tag :q, :valid_attributes => ATTRS_ATTRIBUTES + %w{cite}, :can_enclose => INLINE_CONTENT,
|
97
|
+
:spec => 'http://www.w3.org/TR/html401/struct/text.html#h-9.2.2'
|
98
|
+
tag :sub, :valid_attributes => ATTRS_ATTRIBUTES, :can_enclose => INLINE_CONTENT,
|
99
|
+
:spec => 'http://www.w3.org/TR/html401/struct/text.html#h-9.2.3'
|
100
|
+
tag :sup, :valid_attributes => ATTRS_ATTRIBUTES, :can_enclose => INLINE_CONTENT,
|
101
|
+
:spec => 'http://www.w3.org/TR/html401/struct/text.html#h-9.2.3'
|
102
|
+
|
103
|
+
# HTML4.01 spec, section 9.3
|
104
|
+
tag :p, :newline_before => true, :valid_attributes => ATTRS_ATTRIBUTES, :can_enclose => INLINE_CONTENT,
|
105
|
+
:spec => 'http://www.w3.org/TR/html401/struct/text.html#h-9.3.1'
|
106
|
+
tag :br, :newline_before => true, :valid_attributes => CORE_ATTRIBUTES, :content_allowed => false,
|
107
|
+
:spec => 'http://www.w3.org/TR/html401/struct/text.html#h-9.3.2.1'
|
108
|
+
tag :pre, :newline_before => true, :valid_attributes => ATTRS_ATTRIBUTES,
|
109
|
+
:can_enclose => INLINE_CONTENT - %w{img object big small sub sup},
|
110
|
+
:spec => 'http://www.w3.org/TR/html401/struct/text.html#h-9.3.4'
|
111
|
+
tag :ins, :valid_attributes => ATTRS_ATTRIBUTES + %w{cite datetime}, :can_enclose => FLOW_CONTENT,
|
112
|
+
:spec => 'http://www.w3.org/TR/html401/struct/text.html#h-9.4'
|
113
|
+
tag :del, :valid_attributes => ATTRS_ATTRIBUTES + %w{cite datetime}, :can_enclose => FLOW_CONTENT,
|
114
|
+
:spec => 'http://www.w3.org/TR/html401/struct/text.html#h-9.4'
|
115
|
+
|
116
|
+
# HTML4.01 spec, section 10.2
|
117
|
+
tag :ul, :newline_before => true, :valid_attributes => ATTRS_ATTRIBUTES, :can_enclose => %w{li},
|
118
|
+
:spec => 'http://www.w3.org/TR/html401/struct/lists.html#h-10.2'
|
119
|
+
tag :ol, :newline_before => true, :valid_attributes => ATTRS_ATTRIBUTES, :can_enclose => %w{li},
|
120
|
+
:spec => 'http://www.w3.org/TR/html401/struct/lists.html#h-10.2'
|
121
|
+
tag :li, :newline_before => true, :valid_attributes => ATTRS_ATTRIBUTES, :can_enclose => FLOW_CONTENT,
|
122
|
+
:spec => 'http://www.w3.org/TR/html401/struct/lists.html#h-10.2'
|
123
|
+
tag :dl, :newline_before => true, :valid_attributes => ATTRS_ATTRIBUTES, :can_enclose => %w{dt dd},
|
124
|
+
:spec => 'http://www.w3.org/TR/html401/struct/lists.html#h-10.3'
|
125
|
+
tag :dt, :newline_before => true, :valid_attributes => ATTRS_ATTRIBUTES, :can_enclose => INLINE_CONTENT,
|
126
|
+
:spec => 'http://www.w3.org/TR/html401/struct/lists.html#h-10.3'
|
127
|
+
tag :dd, :newline_before => true, :valid_attributes => ATTRS_ATTRIBUTES, :can_enclose => FLOW_CONTENT,
|
128
|
+
:spec => 'http://www.w3.org/TR/html401/struct/lists.html#h-10.3'
|
129
|
+
|
130
|
+
# HTML4.01 spec, section 11.2
|
131
|
+
tag :table, :newline_before => true, :can_enclose => %w{caption col colgroup thead tfoot tbody tr},
|
132
|
+
:valid_attributes => ATTRS_ATTRIBUTES + %w{summary width border frame rules cellspacing cellpadding},
|
133
|
+
:spec => 'http://www.w3.org/TR/html401/struct/tables.html#h-11.2.1'
|
134
|
+
tag :caption, :newline_before => true, :can_enclose => INLINE_CONTENT, :valid_attributes => ATTRS_ATTRIBUTES,
|
135
|
+
:spec => 'http://www.w3.org/TR/html401/struct/tables.html#h-11.2.2'
|
136
|
+
tag :thead, :newline_before => true, :can_enclose => %w{tr},
|
137
|
+
:valid_attributes => ATTRS_ATTRIBUTES + CELLVALIGN_ATTRIBUTES + CELLVALIGN_ATTRIBUTES,
|
138
|
+
:spec => 'http://www.w3.org/TR/html401/struct/tables.html#h-11.2.3'
|
139
|
+
tag :tfoot, :newline_before => true, :can_enclose => %w{tr},
|
140
|
+
:valid_attributes => ATTRS_ATTRIBUTES + CELLVALIGN_ATTRIBUTES + CELLVALIGN_ATTRIBUTES,
|
141
|
+
:spec => 'http://www.w3.org/TR/html401/struct/tables.html#h-11.2.3'
|
142
|
+
tag :tbody, :newline_before => true, :can_enclose => %w{tr},
|
143
|
+
:valid_attributes => ATTRS_ATTRIBUTES + CELLVALIGN_ATTRIBUTES + CELLVALIGN_ATTRIBUTES,
|
144
|
+
:spec => 'http://www.w3.org/TR/html401/struct/tables.html#h-11.2.3'
|
145
|
+
tag :colgroup, :newline_before => true, :can_enclose => %w{col},
|
146
|
+
:valid_attributes => ATTRS_ATTRIBUTES + %w{span width} + CELLHALIGN_ATTRIBUTES + CELLVALIGN_ATTRIBUTES,
|
147
|
+
:spec => 'http://www.w3.org/TR/html401/struct/tables.html#h-11.2.4.1'
|
148
|
+
tag :col, :newline_before => true, :content_allowed => false,
|
149
|
+
:valid_attributes => ATTRS_ATTRIBUTES + %w{span width} + CELLHALIGN_ATTRIBUTES + CELLVALIGN_ATTRIBUTES,
|
150
|
+
:spec => 'http://www.w3.org/TR/html401/struct/tables.html#h-11.2.4.2'
|
151
|
+
tag :tr, :newline_before => true, :can_enclose => %w{th td},
|
152
|
+
:valid_attributes => ATTRS_ATTRIBUTES + CELLHALIGN_ATTRIBUTES + CELLVALIGN_ATTRIBUTES,
|
153
|
+
:spec => 'http://www.w3.org/TR/html401/struct/tables.html#h-11.2.5'
|
154
|
+
tag :th, :newline_before => true, :can_enclose => FLOW_CONTENT,
|
155
|
+
:valid_attributes => ATTRS_ATTRIBUTES + %w{abbr axis headers scope rowspan colspan} + CELLHALIGN_ATTRIBUTES + CELLVALIGN_ATTRIBUTES,
|
156
|
+
:spec => 'http://www.w3.org/TR/html401/struct/tables.html#h-11.2.6'
|
157
|
+
tag :td, :newline_before => true, :can_enclose => FLOW_CONTENT,
|
158
|
+
:valid_attributes => ATTRS_ATTRIBUTES + %w{abbr axis headers scope rowspan colspan} + CELLHALIGN_ATTRIBUTES + CELLVALIGN_ATTRIBUTES,
|
159
|
+
:spec => 'http://www.w3.org/TR/html401/struct/tables.html#h-11.2.6'
|
160
|
+
|
161
|
+
# HTML4.01 spec, section 12.2
|
162
|
+
tag :a, :can_enclose => INLINE_CONTENT,
|
163
|
+
:valid_attributes => ATTRS_ATTRIBUTES + %w{charset type name href hreflang rel rev accesskey shape coords tabindex onfocus onblur},
|
164
|
+
:spec => 'http://www.w3.org/TR/html401/struct/links.html#h-12.2'
|
165
|
+
|
166
|
+
# HTML4.01 spec, section 12.3
|
167
|
+
tag :link, :newline_before => true, :content_allowed => false,
|
168
|
+
:valid_attributes => ATTRS_ATTRIBUTES + %w{charset href hreflang type rel rev media},
|
169
|
+
:spec => 'http://www.w3.org/TR/html401/struct/links.html#h-12.3'
|
170
|
+
|
171
|
+
# HTML4.01 spec, section 12.4
|
172
|
+
tag :base, :newline_before => true, :content_allowed => false, :valid_attributes => %w{href},
|
173
|
+
:spec => 'http://www.w3.org/TR/html401/struct/links.html#h-12.4'
|
174
|
+
|
175
|
+
# HTML4.01 spec, section 13.2
|
176
|
+
tag :img, :content_allowed => false,
|
177
|
+
:valid_attributes => ATTRS_ATTRIBUTES + %w{src alt longdesc name height width usemap ismap},
|
178
|
+
:spec => 'http://www.w3.org/TR/html401/struct/objects.html#h-13.2'
|
179
|
+
|
180
|
+
# HTML4.01 spec, section 13.3
|
181
|
+
tag :object, :newline_before => true, :can_enclose => FLOW_CONTENT + %w{param},
|
182
|
+
:valid_attributes => ATTRS_ATTRIBUTES + %w{declare classid codebase data type codetype archive standby height} +
|
183
|
+
%w{width usemap name tabindex},
|
184
|
+
:spec => 'http://www.w3.org/TR/html401/struct/objects.html#h-13.3'
|
185
|
+
tag :param, :newline_before => true, :content_allowed => false,
|
186
|
+
:valid_attributes => %w{id name value valuetype type},
|
187
|
+
:spec => 'http://www.w3.org/TR/html401/struct/objects.html#h-13.3.2'
|
188
|
+
|
189
|
+
# HTML4.01 spec, section 13.6
|
190
|
+
tag :map, :newline_before => true, :can_enclose => BLOCK_CONTENT + %w{area},
|
191
|
+
:valid_attributes => ATTRS_ATTRIBUTES + %w{name},
|
192
|
+
:spec => 'http://www.w3.org/TR/html401/struct/objects.html#h-13.6.1'
|
193
|
+
tag :area, :newline_before => true, :content_allowed => false,
|
194
|
+
:valid_attributes => ATTRS_ATTRIBUTES + %w{shape coords href nohref alt tabindex accesskey onfocus onblur},
|
195
|
+
:spec => 'http://www.w3.org/TR/html401/struct/objects.html#h-13.6.1'
|
196
|
+
|
197
|
+
# HTML4.01 spec, section 14.2
|
198
|
+
tag :style, :newline_before => true, :valid_attributes => I18N_ATTRIBUTES + %w{type media title},
|
199
|
+
:escape_direct_content => false,
|
200
|
+
:spec => 'http://www.w3.org/TR/html401/present/styles.html#h-14.2.3'
|
201
|
+
|
202
|
+
# HTML4.01 spec, section 15.2
|
203
|
+
tag :tt, :can_enclose => INLINE_CONTENT, :valid_attributes => ATTRS_ATTRIBUTES,
|
204
|
+
:spec => 'http://www.w3.org/TR/html401/present/graphics.html#h-15.2.1'
|
205
|
+
tag :i, :can_enclose => INLINE_CONTENT, :valid_attributes => ATTRS_ATTRIBUTES,
|
206
|
+
:spec => 'http://www.w3.org/TR/html401/present/graphics.html#h-15.2.1'
|
207
|
+
tag :b, :can_enclose => INLINE_CONTENT, :valid_attributes => ATTRS_ATTRIBUTES,
|
208
|
+
:spec => 'http://www.w3.org/TR/html401/present/graphics.html#h-15.2.1'
|
209
|
+
tag :big, :can_enclose => INLINE_CONTENT, :valid_attributes => ATTRS_ATTRIBUTES,
|
210
|
+
:spec => 'http://www.w3.org/TR/html401/present/graphics.html#h-15.2.1'
|
211
|
+
tag :small, :can_enclose => INLINE_CONTENT, :valid_attributes => ATTRS_ATTRIBUTES,
|
212
|
+
:spec => 'http://www.w3.org/TR/html401/present/graphics.html#h-15.2.1'
|
213
|
+
|
214
|
+
# HTML4.01 spec, section 15.3
|
215
|
+
tag :hr, :newline_before => true, :content_allowed => false, :valid_attributes => ATTRS_ATTRIBUTES,
|
216
|
+
:spec => 'http://www.w3.org/TR/html401/present/graphics.html#h-15.3'
|
217
|
+
|
218
|
+
# HTML4.01 spec, section 17.3
|
219
|
+
tag :form, :newline_before => true, :can_enclose => BLOCK_CONTENT + %w{script} - %w{form},
|
220
|
+
:valid_attributes => ATTRS_ATTRIBUTES + %w{action method enctype accept name onsubmit onreset accept-charset},
|
221
|
+
:spec => 'http://www.w3.org/TR/html401/interact/forms.html#h-17.3'
|
222
|
+
|
223
|
+
# HTML4.01 spec, section 17.4
|
224
|
+
tag :input, :newline_before => true, :content_allowed => false,
|
225
|
+
:valid_attributes => ATTRS_ATTRIBUTES + %w{type name value checked disabled readonly size maxlength src alt} +
|
226
|
+
%w{usemap ismap tabindex accesskey onfocus onblur onselect onchange accept},
|
227
|
+
:spec => 'http://www.w3.org/TR/html401/interact/forms.html#h-17.4'
|
228
|
+
|
229
|
+
# HTML4.01 spec, section 17.5
|
230
|
+
tag :button, :newline_before => true, :can_enclose => FLOW_CONTENT - FORMCTRL_CONTENT - %w{a form fieldset},
|
231
|
+
:valid_attributes => ATTRS_ATTRIBUTES + %w{name value type disabled tabindex accesskey onfocus onblur},
|
232
|
+
:spec => 'http://www.w3.org/TR/html401/interact/forms.html#h-17.5'
|
233
|
+
|
234
|
+
# HTML4.01 spec, section 17.6
|
235
|
+
tag :select, :newline_before => true, :can_enclose => %w{optgroup option},
|
236
|
+
:valid_attributes => ATTRS_ATTRIBUTES + %w{name size multiple disabled tabindex onfocus onblur onchange},
|
237
|
+
:spec => 'http://www.w3.org/TR/html401/interact/forms.html#h-17.6'
|
238
|
+
tag :optgroup, :newline_before => true, :can_enclose => %w{option},
|
239
|
+
:valid_attributes => ATTRS_ATTRIBUTES + %w{disabled label},
|
240
|
+
:spec => 'http://www.w3.org/TR/html401/interact/forms.html#h-17.6'
|
241
|
+
tag :option, :newline_before => true, :can_enclose => %w{_text},
|
242
|
+
:valid_attributes => ATTRS_ATTRIBUTES + %w{selected disabled label value},
|
243
|
+
:spec => 'http://www.w3.org/TR/html401/interact/forms.html#h-17.6'
|
244
|
+
|
245
|
+
# HTML4.01 spec, section 17.7
|
246
|
+
tag :textarea, :newline_before => true, :can_enclose => %w{_text},
|
247
|
+
:valid_attributes => ATTRS_ATTRIBUTES + %w{name rows cols disabled readonly tabindex accesskey} +
|
248
|
+
%w{onfocus onblur onselect onchange},
|
249
|
+
:spec => 'http://www.w3.org/TR/html401/interact/forms.html#h-17.7'
|
250
|
+
|
251
|
+
# HTML4.01 spec, section 17.9
|
252
|
+
tag :label, :newline_before => true, :can_enclose => INLINE_CONTENT,
|
253
|
+
:valid_attributes => ATTRS_ATTRIBUTES + %w{for accesskey onfocus onblur},
|
254
|
+
:spec => 'http://www.w3.org/TR/html401/interact/forms.html#h-17.9.1'
|
255
|
+
|
256
|
+
# HTML4.01 spec, section 17.10
|
257
|
+
tag :fieldset, :newline_before => true, :can_enclose => %w{_text legend} + FLOW_CONTENT,
|
258
|
+
:valid_attributes => ATTRS_ATTRIBUTES,
|
259
|
+
:spec => 'http://www.w3.org/TR/html401/interact/forms.html#h-17.10'
|
260
|
+
tag :legend, :newline_before => true, :can_enclose => INLINE_CONTENT,
|
261
|
+
:valid_attributes => ATTRS_ATTRIBUTES + %w{accesskey},
|
262
|
+
:spec => 'http://www.w3.org/TR/html401/interact/forms.html#h-17.10'
|
263
|
+
|
264
|
+
# HTML4.01 spec, section 18.2
|
265
|
+
tag :script, :newline_before => true, :can_enclose => %w{_text},
|
266
|
+
:valid_attributes => %w{charset type src defer}, :escape_direct_content => false,
|
267
|
+
:spec => 'http://www.w3.org/TR/html401/interact/scripts.html#h-18.2.1'
|
268
|
+
# HTML4.01 spec, section 18.3
|
269
|
+
tag :noscript, :newline_before => true, :can_enclose => BLOCK_CONTENT,
|
270
|
+
:valid_attributes => ATTRS_ATTRIBUTES,
|
271
|
+
:spec => 'http://www.w3.org/TR/html401/interact/scripts.html#h-18.3.1'
|
272
|
+
end
|
273
|
+
end
|
274
|
+
end
|