fortitude 0.0.1

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