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,76 @@
|
|
1
|
+
module Fortitude
|
2
|
+
module Support
|
3
|
+
class InstanceVariableSet
|
4
|
+
def initialize(target_object)
|
5
|
+
@target_object = target_object
|
6
|
+
end
|
7
|
+
|
8
|
+
def [](name)
|
9
|
+
target_object.instance_variable_get("@#{name}")
|
10
|
+
end
|
11
|
+
|
12
|
+
def []=(name, value)
|
13
|
+
target_object.instance_variable_set("@#{name}", value)
|
14
|
+
end
|
15
|
+
|
16
|
+
def keys
|
17
|
+
target_object.instance_variables.map do |instance_variable_name|
|
18
|
+
$1.to_sym if instance_variable_name.to_s =~ /^@(.*)$/
|
19
|
+
end.compact
|
20
|
+
end
|
21
|
+
|
22
|
+
def each
|
23
|
+
keys.each { |k| yield k, self[k] }
|
24
|
+
end
|
25
|
+
|
26
|
+
def with_instance_variable_copying(widget)
|
27
|
+
before_copy = widget.instance_variables
|
28
|
+
skip_copy = before_copy - target_object.instance_variables
|
29
|
+
|
30
|
+
copy_to_widget(widget)
|
31
|
+
begin
|
32
|
+
yield
|
33
|
+
ensure
|
34
|
+
copy_from_widget(widget, skip_copy)
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
private
|
39
|
+
def copy_to_widget(widget)
|
40
|
+
needs = widget.needs_as_hash
|
41
|
+
extras = widget.widget_extra_assigns
|
42
|
+
|
43
|
+
target_object.instance_variables.each do |instance_variable_name|
|
44
|
+
if instance_variable_name =~ /^@(.*)$/
|
45
|
+
without_at = $1.to_sym
|
46
|
+
next if needs.has_key?(without_at)
|
47
|
+
next if extras.has_key?(without_at)
|
48
|
+
|
49
|
+
value = target_object.instance_variable_get(instance_variable_name)
|
50
|
+
widget.instance_variable_set(instance_variable_name, value)
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
55
|
+
def copy_from_widget(widget, exclude_variables = [ ])
|
56
|
+
needs = widget.needs_as_hash
|
57
|
+
extras = widget.widget_extra_assigns
|
58
|
+
|
59
|
+
(widget.instance_variables - exclude_variables).each do |instance_variable_name|
|
60
|
+
next if instance_variable_name =~ /^@_fortitude_/
|
61
|
+
|
62
|
+
if instance_variable_name =~ /^@(.*)$/i
|
63
|
+
without_at = $1.to_sym
|
64
|
+
next if needs.has_key?(without_at)
|
65
|
+
next if extras.has_key?(without_at)
|
66
|
+
|
67
|
+
value = widget.instance_variable_get(instance_variable_name)
|
68
|
+
target_object.instance_variable_set(instance_variable_name, value)
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
73
|
+
attr_reader :target_object
|
74
|
+
end
|
75
|
+
end
|
76
|
+
end
|
@@ -0,0 +1,87 @@
|
|
1
|
+
module Fortitude
|
2
|
+
module Support
|
3
|
+
class StaticizedMethod
|
4
|
+
def initialize(widget_class, method_name, options = { })
|
5
|
+
@widget_class = widget_class
|
6
|
+
@method_name = method_name
|
7
|
+
|
8
|
+
@output_by_locale = { }
|
9
|
+
@has_yield = false
|
10
|
+
|
11
|
+
@options = options
|
12
|
+
@options.assert_valid_keys(:locale_support)
|
13
|
+
|
14
|
+
set_constant!
|
15
|
+
end
|
16
|
+
|
17
|
+
def run!(widget)
|
18
|
+
locale = locale_support? ? widget.widget_locale : nil
|
19
|
+
output = (@output_by_locale[locale] ||= generate_content!(widget))
|
20
|
+
|
21
|
+
if output.kind_of?(Array)
|
22
|
+
widget.rawtext(output[0])
|
23
|
+
yield
|
24
|
+
widget.rawtext(output[1])
|
25
|
+
else
|
26
|
+
widget.rawtext(output)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
def create_method!
|
31
|
+
unless widget_class.instance_methods.map(&:to_s).include?(dynamic_method_name.to_s)
|
32
|
+
widget_class.send(:alias_method, dynamic_method_name, method_name)
|
33
|
+
end
|
34
|
+
|
35
|
+
widget_class.class_eval <<-EOS
|
36
|
+
def #{method_name}
|
37
|
+
#{constant_name}.run!(self) { yield }
|
38
|
+
end
|
39
|
+
EOS
|
40
|
+
end
|
41
|
+
|
42
|
+
private
|
43
|
+
attr_reader :widget_class, :method_name, :output_by_locale, :has_yield, :options
|
44
|
+
|
45
|
+
def locale_support?
|
46
|
+
! (options.has_key?(:locale_support) && (! options[:locale_support]))
|
47
|
+
end
|
48
|
+
|
49
|
+
def generate_content!(widget)
|
50
|
+
yielded = false
|
51
|
+
pre_yield = nil
|
52
|
+
|
53
|
+
result = widget.capture do
|
54
|
+
widget.with_staticness_enforced(method_name) do
|
55
|
+
widget.send(dynamic_method_name) do
|
56
|
+
raise "This method yields more than once; you can't make it static" if yielded
|
57
|
+
pre_yield = widget.output_buffer.dup
|
58
|
+
yielded = true
|
59
|
+
widget.output_buffer.replace('')
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
@has_yield = yielded
|
65
|
+
|
66
|
+
if yielded
|
67
|
+
[ pre_yield, result ]
|
68
|
+
else
|
69
|
+
result
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
73
|
+
def set_constant!
|
74
|
+
widget_class.send(:remove_const, constant_name) if widget_class.const_defined?(constant_name)
|
75
|
+
widget_class.const_set(constant_name, self)
|
76
|
+
end
|
77
|
+
|
78
|
+
def constant_name
|
79
|
+
"FORTITUDE_STATICIZED_METHOD_#{method_name.to_s.upcase}"
|
80
|
+
end
|
81
|
+
|
82
|
+
def dynamic_method_name
|
83
|
+
"_#{method_name}_dynamic".to_sym
|
84
|
+
end
|
85
|
+
end
|
86
|
+
end
|
87
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
module Fortitude
|
2
|
+
module Tags
|
3
|
+
class PartialTagPlaceholder
|
4
|
+
class << self
|
5
|
+
def instance
|
6
|
+
@instance ||= new
|
7
|
+
end
|
8
|
+
end
|
9
|
+
|
10
|
+
def name
|
11
|
+
:_fortitude_partial_placeholder
|
12
|
+
end
|
13
|
+
|
14
|
+
def validate_can_enclose!(widget, tag_object)
|
15
|
+
# nothing here, always OK
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,189 @@
|
|
1
|
+
require 'fortitude/tags/tag_support'
|
2
|
+
require 'fortitude/method_templates/simple_template'
|
3
|
+
|
4
|
+
# Note on handling tags that have no content inside them:
|
5
|
+
#
|
6
|
+
# - If the tag cannot ever have content inside it -- a "void tag" as denoted by HTML, specified here by
|
7
|
+
# :content_allowed => false -- then we can either render it as "<tag>" (if :close_void_tags is set to false,
|
8
|
+
# the default, on the widget class), or "<tag/>" (if :close_void_tags is set to true on the widget class).
|
9
|
+
# - If the tag can have content inside it, but this instance of it does not, then we always render it as
|
10
|
+
# <tag></tag> (or <tag attr="value"...></tag>).
|
11
|
+
#
|
12
|
+
# Further, doctypes restrict the values you can set close_void_tags to on a widget: HTML5 allows either, HTML4
|
13
|
+
# requires it to be false, and XHTML requires it to be true.
|
14
|
+
#
|
15
|
+
# This is all per the information at:
|
16
|
+
#
|
17
|
+
# http://stackoverflow.com/questions/3558119/are-self-closing-tags-valid-in-html5
|
18
|
+
# http://www.w3.org/TR/xhtml-media-types/#C_2
|
19
|
+
# http://www.colorglare.com/2014/02/03/to-close-or-not-to-close.html
|
20
|
+
module Fortitude
|
21
|
+
module Tags
|
22
|
+
class Tag
|
23
|
+
attr_reader :name, :spec
|
24
|
+
attr_accessor :newline_before, :content_allowed, :allow_data_attributes, :allow_aria_attributes, :escape_direct_content
|
25
|
+
|
26
|
+
class << self
|
27
|
+
def normalize_tag_name(name)
|
28
|
+
name.to_s.strip.downcase.to_sym
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
def initialize(name, options = { })
|
33
|
+
options.assert_valid_keys(:valid_attributes, :newline_before, :content_allowed, :can_enclose,
|
34
|
+
:allow_data_attributes, :allow_aria_attributes, :spec, :escape_direct_content)
|
35
|
+
|
36
|
+
@name = self.class.normalize_tag_name(name)
|
37
|
+
|
38
|
+
self.valid_attributes = options[:valid_attributes]
|
39
|
+
self.can_enclose = options[:can_enclose]
|
40
|
+
@newline_before = !! options[:newline_before]
|
41
|
+
@content_allowed = true unless options.has_key?(:content_allowed) && (! options[:content_allowed])
|
42
|
+
@allow_data_attributes = true unless options.has_key?(:allow_data_attributes) && (! options[:allow_data_attributes])
|
43
|
+
@allow_aria_attributes = true unless options.has_key?(:allow_aria_attributes) && (! options[:allow_aria_attributes])
|
44
|
+
@escape_direct_content = true unless options.has_key?(:escape_direct_content) && (! options[:escape_direct_content])
|
45
|
+
@spec = options[:spec]
|
46
|
+
end
|
47
|
+
|
48
|
+
def valid_attributes
|
49
|
+
@allowable_attributes.keys if @allowable_attributes
|
50
|
+
end
|
51
|
+
|
52
|
+
def valid_attributes=(attributes)
|
53
|
+
@allowable_attributes = to_symbol_hash(attributes)
|
54
|
+
end
|
55
|
+
|
56
|
+
def can_enclose
|
57
|
+
@allowable_enclosed_elements.keys if @allowable_enclosed_elements
|
58
|
+
end
|
59
|
+
|
60
|
+
def can_enclose=(tags)
|
61
|
+
@allowable_enclosed_elements = to_symbol_hash(tags)
|
62
|
+
@allowable_enclosed_elements[:_fortitude_partial_placeholder] = true if @allowable_enclosed_elements
|
63
|
+
end
|
64
|
+
|
65
|
+
def dup
|
66
|
+
self.class.new(name, {
|
67
|
+
:valid_attributes => valid_attributes,
|
68
|
+
:can_enclose => can_enclose,
|
69
|
+
:content_allowed => content_allowed,
|
70
|
+
:allow_data_attributes => allow_data_attributes,
|
71
|
+
:allow_aria_attributes => allow_aria_attributes,
|
72
|
+
:escape_direct_content => escape_direct_content,
|
73
|
+
:spec => spec
|
74
|
+
})
|
75
|
+
end
|
76
|
+
|
77
|
+
CONCAT_METHOD = "original_concat"
|
78
|
+
|
79
|
+
def validate_can_enclose!(widget, tag_object)
|
80
|
+
return unless @allowable_enclosed_elements
|
81
|
+
unless @allowable_enclosed_elements[tag_object.name]
|
82
|
+
raise Fortitude::Errors::InvalidElementNesting.new(widget, self, tag_object)
|
83
|
+
end
|
84
|
+
end
|
85
|
+
|
86
|
+
def validate_attributes(widget, attributes_hash)
|
87
|
+
return unless @allowable_attributes
|
88
|
+
disabled_sym = attributes_hash.delete(:_fortitude_skip_attribute_rule_enforcement)
|
89
|
+
disabled_string = attributes_hash.delete('_fortitude_skip_attribute_rule_enforcement')
|
90
|
+
return if disabled_sym || disabled_string
|
91
|
+
return if widget.rendering_context.attribute_validation_disabled?
|
92
|
+
bad = { }
|
93
|
+
attributes_hash.each do |k, v|
|
94
|
+
bad[k] = v unless is_valid_attribute?(k, v)
|
95
|
+
end
|
96
|
+
raise Fortitude::Errors::InvalidElementAttributes.new(widget, self, bad, @allowable_attributes.keys) if bad.size > 0
|
97
|
+
end
|
98
|
+
|
99
|
+
def is_valid_attribute?(k, v)
|
100
|
+
return true if @allowable_attributes.include?(k.to_sym)
|
101
|
+
|
102
|
+
if @allow_data_attributes
|
103
|
+
return true if k.to_s =~ /^data-\S/i || (k.to_s =~ /^data$/i && v.kind_of?(Hash))
|
104
|
+
end
|
105
|
+
|
106
|
+
if @allow_aria_attributes
|
107
|
+
return true if k.to_s =~ /^aria-\S/i || (k.to_s =~ /^aria$/i && v.kind_of?(Hash))
|
108
|
+
end
|
109
|
+
|
110
|
+
return false
|
111
|
+
end
|
112
|
+
|
113
|
+
def validate_id_uniqueness(widget, attributes_hash)
|
114
|
+
id = attributes_hash[:id] || attributes_hash['id']
|
115
|
+
widget.rendering_context.validate_id_uniqueness(widget, name, id) if id
|
116
|
+
end
|
117
|
+
|
118
|
+
def define_method_on!(mod, options = {})
|
119
|
+
options.assert_valid_keys(:enforce_element_nesting_rules, :enforce_attribute_rules, :enable_formatting, :enforce_id_uniqueness, :close_void_tags)
|
120
|
+
|
121
|
+
unless mod.respond_to?(:fortitude_tag_support_included?) && mod.fortitude_tag_support_included?
|
122
|
+
mod.send(:include, ::Fortitude::Tags::TagSupport)
|
123
|
+
end
|
124
|
+
|
125
|
+
if @content_allowed
|
126
|
+
alone_tag = "<#{name}></#{name}>"
|
127
|
+
partial_open_alone_end = "></#{name}>"
|
128
|
+
elsif options[:close_void_tags]
|
129
|
+
alone_tag = "<#{name}/>"
|
130
|
+
partial_open_alone_end = "/>"
|
131
|
+
else
|
132
|
+
alone_tag = "<#{name}>"
|
133
|
+
partial_open_alone_end = ">"
|
134
|
+
end
|
135
|
+
|
136
|
+
ensure_constants(mod, :ALONE => alone_tag, :OPEN => "<#{name}>", :CLOSE => "</#{name}>",
|
137
|
+
:PARTIAL_OPEN => "<#{name}", :TAG_OBJECT => self, :PARTIAL_OPEN_ALONE_END => partial_open_alone_end)
|
138
|
+
|
139
|
+
needs_formatting = !! options[:enable_formatting]
|
140
|
+
|
141
|
+
if needs_formatting && @newline_before
|
142
|
+
yield_call = "_fortitude_formatted_output_tag_yield(:#{name}) { yield }"
|
143
|
+
elsif needs_formatting
|
144
|
+
yield_call = "yield; rc.about_to_output_non_whitespace!"
|
145
|
+
else
|
146
|
+
yield_call = "yield"
|
147
|
+
end
|
148
|
+
|
149
|
+
text = Fortitude::MethodTemplates::SimpleTemplate.template('tag_method_template').result(
|
150
|
+
:name => name.to_s, :method_name => "tag_#{name}".to_s, :yield_call => yield_call, :concat_method => CONCAT_METHOD,
|
151
|
+
:needs_element_rules => !! options[:enforce_element_nesting_rules],
|
152
|
+
:needs_attribute_rules => !! options[:enforce_attribute_rules],
|
153
|
+
:needs_id_uniqueness => !! options[:enforce_id_uniqueness],
|
154
|
+
:needs_formatting => needs_formatting, :content_allowed => @content_allowed,
|
155
|
+
:newline_before => @newline_before,
|
156
|
+
:escape_direct_content => @escape_direct_content,
|
157
|
+
:alone_const => tag_constant_name(:ALONE), :open_const => tag_constant_name(:OPEN),
|
158
|
+
:close_const => tag_constant_name(:CLOSE), :partial_open_const => tag_constant_name(:PARTIAL_OPEN),
|
159
|
+
:tag_object_const => tag_constant_name(:TAG_OBJECT), :partial_open_end_const => :FORTITUDE_TAG_PARTIAL_OPEN_END,
|
160
|
+
:partial_open_alone_end_const => tag_constant_name(:PARTIAL_OPEN_ALONE_END))
|
161
|
+
|
162
|
+
mod.module_eval(text)
|
163
|
+
mod.alias_method(name, "tag_#{name}")
|
164
|
+
end
|
165
|
+
|
166
|
+
private
|
167
|
+
def tag_constant_name(key)
|
168
|
+
"FORTITUDE_TAG_#{name.to_s.upcase}_#{key}".to_sym
|
169
|
+
end
|
170
|
+
|
171
|
+
def ensure_constants(target, map)
|
172
|
+
map.each { |name, value| ensure_constant(target, tag_constant_name(name), value.freeze) }
|
173
|
+
end
|
174
|
+
|
175
|
+
def ensure_constant(target, const_name, const_value)
|
176
|
+
target.send(:remove_const, const_name) if target.const_defined?(const_name)
|
177
|
+
target.const_set(const_name, const_value.freeze)
|
178
|
+
end
|
179
|
+
|
180
|
+
def to_symbol_hash(array)
|
181
|
+
if array
|
182
|
+
out = { }
|
183
|
+
array.each { |a| out[a.to_s.strip.to_sym] = true }
|
184
|
+
out
|
185
|
+
end
|
186
|
+
end
|
187
|
+
end
|
188
|
+
end
|
189
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
require 'fortitude/errors'
|
2
|
+
|
3
|
+
module Fortitude
|
4
|
+
module Tags
|
5
|
+
TAG_RETURN_VALUE_SUPERCLASS = if defined?(::BasicObject) then ::BasicObject else ::Object end
|
6
|
+
|
7
|
+
class TagReturnValue < TAG_RETURN_VALUE_SUPERCLASS
|
8
|
+
def method_missing(name, *args)
|
9
|
+
::Kernel.raise ::Fortitude::Errors::NoReturnValueFromTag.new(name)
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
require 'fortitude/tags/tag'
|
2
|
+
require 'fortitude/errors'
|
3
|
+
|
4
|
+
module Fortitude
|
5
|
+
module Tags
|
6
|
+
module TagStore
|
7
|
+
def tag(name, options = nil)
|
8
|
+
@_tags_by_name ||= { }
|
9
|
+
|
10
|
+
name = Fortitude::Tags::Tag.normalize_tag_name(name)
|
11
|
+
tag_object = Fortitude::Tags::Tag.new(name, options || { })
|
12
|
+
@_tags_by_name[name] = tag_object
|
13
|
+
|
14
|
+
tags_added!([ tag_object ])
|
15
|
+
end
|
16
|
+
|
17
|
+
def modify_tag(name)
|
18
|
+
name = Fortitude::Tags::Tag.normalize_tag_name(name)
|
19
|
+
existing_tag = tags[name]
|
20
|
+
|
21
|
+
unless existing_tag
|
22
|
+
raise Fortitude::Errors::TagNotFound.new(self, name)
|
23
|
+
end
|
24
|
+
|
25
|
+
new_tag = existing_tag.dup
|
26
|
+
yield new_tag
|
27
|
+
@_tags_by_name ||= { }
|
28
|
+
@_tags_by_name[name] = new_tag
|
29
|
+
|
30
|
+
tags_changed!([ new_tag ])
|
31
|
+
end
|
32
|
+
|
33
|
+
def tags
|
34
|
+
out = { }
|
35
|
+
(delegate_tag_stores || [ ]).each { |d| out.merge!(d.tags) }
|
36
|
+
out.merge!(@_tags_by_name || { })
|
37
|
+
out
|
38
|
+
end
|
39
|
+
|
40
|
+
def tags_added!(tags)
|
41
|
+
tags_changed!(tags)
|
42
|
+
end
|
43
|
+
|
44
|
+
def tags_changed!(tags)
|
45
|
+
# nothing here
|
46
|
+
end
|
47
|
+
|
48
|
+
def delegate_tag_stores
|
49
|
+
[ ]
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
@@ -0,0 +1,51 @@
|
|
1
|
+
require 'active_support'
|
2
|
+
require 'active_support/concern'
|
3
|
+
|
4
|
+
require 'fortitude/tags/tag_return_value'
|
5
|
+
|
6
|
+
module Fortitude
|
7
|
+
module Tags
|
8
|
+
module TagSupport
|
9
|
+
extend ActiveSupport::Concern
|
10
|
+
|
11
|
+
class TextPseudotag
|
12
|
+
def name
|
13
|
+
:_text
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
17
|
+
FORTITUDE_TEXT_PSEUDOTAG = TextPseudotag.new
|
18
|
+
|
19
|
+
FORTITUDE_TAG_PARTIAL_OPEN_END = ">".freeze
|
20
|
+
|
21
|
+
def _fortitude_formatted_output_tag_yield(tag_name)
|
22
|
+
rc = @_fortitude_rendering_context
|
23
|
+
if rc.format_output?
|
24
|
+
rc.needs_newline!
|
25
|
+
rc.increase_indent!
|
26
|
+
begin
|
27
|
+
yield
|
28
|
+
ensure
|
29
|
+
rc.decrease_indent!
|
30
|
+
rc.needs_newline!
|
31
|
+
rc.about_to_output_non_whitespace!
|
32
|
+
end
|
33
|
+
else
|
34
|
+
yield
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
def _fortitude_raise_no_content_allowed_error(tag_name)
|
39
|
+
raise Fortitude::Errors::NoContentAllowed.new(self, tag_name)
|
40
|
+
end
|
41
|
+
|
42
|
+
FORTITUDE_NO_RETURN_VALUE_FROM_TAGS = Fortitude::Tags::TagReturnValue.new
|
43
|
+
|
44
|
+
module ClassMethods
|
45
|
+
def fortitude_tag_support_included?
|
46
|
+
true
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|