radiantcms-couchrest_model 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1438) hide show
  1. data/CHANGELOG +390 -271
  2. data/CONTRIBUTORS +0 -27
  3. data/INSTALL +5 -0
  4. data/README +0 -21
  5. data/app/controllers/admin/layouts_controller.rb +8 -3
  6. data/app/controllers/admin/pages_controller.rb +19 -0
  7. data/app/controllers/admin/preferences_controller.rb +7 -7
  8. data/app/controllers/admin/references_controller.rb +1 -1
  9. data/app/controllers/admin/resource_controller.rb +17 -72
  10. data/app/controllers/admin/snippets_controller.rb +6 -6
  11. data/app/controllers/admin/users_controller.rb +1 -16
  12. data/app/controllers/admin/welcome_controller.rb +5 -5
  13. data/app/controllers/application_controller.rb +2 -17
  14. data/app/controllers/site_controller.rb +5 -21
  15. data/app/helpers/admin/layouts_helper.rb +0 -19
  16. data/app/helpers/admin/node_helper.rb +10 -10
  17. data/app/helpers/admin/pages_helper.rb +22 -82
  18. data/app/helpers/admin/references_helper.rb +3 -6
  19. data/app/helpers/admin/snippets_helper.rb +0 -39
  20. data/app/helpers/admin/users_helper.rb +2 -2
  21. data/app/helpers/application_helper.rb +27 -112
  22. data/app/models/layout.rb +4 -3
  23. data/app/models/page.rb +20 -35
  24. data/app/models/page_part.rb +4 -4
  25. data/app/models/radiant/config.rb +7 -11
  26. data/app/models/snippet.rb +5 -5
  27. data/app/models/standard_tags.rb +21 -311
  28. data/app/models/status.rb +1 -3
  29. data/app/models/user.rb +35 -39
  30. data/app/views/admin/extensions/index.html.haml +25 -26
  31. data/app/views/admin/layouts/_form.html.haml +25 -28
  32. data/app/views/admin/layouts/edit.html.haml +3 -5
  33. data/app/views/admin/layouts/index.html.haml +32 -31
  34. data/app/views/admin/layouts/new.html.haml +2 -4
  35. data/app/views/admin/layouts/remove.html.haml +9 -9
  36. data/app/views/admin/page_parts/_page_part.html.haml +11 -12
  37. data/app/views/admin/pages/_edit_styles.html.haml +15 -0
  38. data/app/views/admin/pages/_fields.html.haml +50 -44
  39. data/app/views/admin/pages/_meta_row.html.haml +4 -2
  40. data/app/views/admin/pages/_node.html.haml +5 -5
  41. data/app/views/admin/pages/_popups.html.haml +29 -12
  42. data/app/views/admin/pages/edit.html.haml +3 -6
  43. data/app/views/admin/pages/index.html.haml +24 -22
  44. data/app/views/admin/pages/new.html.haml +3 -4
  45. data/app/views/admin/pages/remove.html.haml +17 -14
  46. data/app/views/admin/preferences/edit.html.haml +30 -38
  47. data/app/views/admin/references/_tag_reference.haml +2 -2
  48. data/app/views/admin/references/filters.js.erb +5 -0
  49. data/app/views/admin/references/tags.js.erb +5 -0
  50. data/app/views/admin/snippets/_form.html.haml +20 -24
  51. data/app/views/admin/snippets/edit.html.haml +2 -6
  52. data/app/views/admin/snippets/index.html.haml +29 -29
  53. data/app/views/admin/snippets/new.html.haml +2 -4
  54. data/app/views/admin/snippets/remove.html.haml +11 -9
  55. data/app/views/admin/users/_form.html.haml +69 -48
  56. data/app/views/admin/users/edit.html.haml +1 -5
  57. data/app/views/admin/users/index.html.haml +30 -34
  58. data/app/views/admin/users/new.html.haml +1 -2
  59. data/app/views/admin/users/remove.html.haml +10 -8
  60. data/app/views/admin/welcome/login.html.haml +58 -19
  61. data/app/views/layouts/application.html.haml +29 -30
  62. data/config/boot.rb +1 -1
  63. data/config/database.db2.yml +1 -4
  64. data/config/database.mysql.yml +2 -5
  65. data/config/database.postgresql.yml +2 -5
  66. data/config/database.sqlite.yml +1 -4
  67. data/config/database.sqlserver.yml +2 -5
  68. data/config/environment.rb +3 -15
  69. data/config/environments/production.rb +1 -6
  70. data/config/environments/test.rb +3 -6
  71. data/config/routes.rb +2 -2
  72. data/db/migrate/20081203140407_add_indexes.rb +10 -10
  73. data/db/schema.rb +2 -3
  74. data/features/admin/content_negotiation.feature +4 -4
  75. data/features/admin/layouts_management.feature +2 -2
  76. data/features/admin/pages_management.feature +17 -31
  77. data/features/admin/snippets_management.feature +17 -19
  78. data/features/admin/user_permissions.feature +41 -49
  79. data/features/admin/user_preferences.feature +5 -22
  80. data/features/admin/users_management.feature +9 -8
  81. data/features/page_serving.feature +8 -8
  82. data/features/step_definitions/admin/admin_steps.rb +2 -8
  83. data/features/step_definitions/admin/content_negotiation_steps.rb +5 -14
  84. data/features/step_definitions/admin/pages_management_steps.rb +1 -1
  85. data/features/step_definitions/admin/users_management_steps.rb +0 -3
  86. data/features/step_definitions/page_serving_steps.rb +19 -0
  87. data/features/step_definitions/webrat_steps.rb +117 -0
  88. data/features/support/env.rb +14 -48
  89. data/features/support/paths.rb +12 -57
  90. data/lib/generators/extension/extension_generator.rb +1 -29
  91. data/lib/generators/extension/templates/RSpecRakefile +1 -14
  92. data/lib/generators/extension/templates/Rakefile +0 -17
  93. data/lib/generators/extension/templates/extension.rb +10 -10
  94. data/lib/generators/extension/templates/tasks.rake +0 -27
  95. data/lib/generators/extension/templates/test_helper.rb +1 -1
  96. data/lib/generators/instance/instance_generator.rb +2 -3
  97. data/lib/generators/instance/templates/databases/sqlserver.yml +1 -2
  98. data/lib/generators/instance/templates/instance_boot.rb +1 -1
  99. data/lib/generators/instance/templates/instance_environment.rb +2 -9
  100. data/lib/login_system.rb +17 -14
  101. data/lib/plugins/active_record_extensions/lib/active_record_extensions.rb +29 -0
  102. data/lib/radiant.rb +3 -4
  103. data/lib/radiant/admin_ui.rb +58 -114
  104. data/lib/radiant/cache.rb +0 -12
  105. data/lib/radiant/extension.rb +3 -29
  106. data/lib/radiant/extension/script.rb +17 -63
  107. data/lib/radiant/extension_loader.rb +8 -22
  108. data/lib/radiant/initializer.rb +23 -29
  109. data/lib/radiant/setup.rb +0 -1
  110. data/lib/radiant/taggable.rb +1 -2
  111. data/lib/task_support.rb +1 -26
  112. data/lib/tasks/cucumber.rake +13 -39
  113. data/lib/tasks/extensions.rake +1 -12
  114. data/lib/tasks/framework.rake +8 -43
  115. data/lib/tasks/release.rake +4 -14
  116. data/lib/tasks/rspec.rake +8 -8
  117. data/lib/tasks/undefine.rake +0 -4
  118. data/public/images/admin/add-child.png +0 -0
  119. data/public/images/admin/{brown_bottom_line.gif → brown-bottom-line.gif} +0 -0
  120. data/public/images/admin/clear-page-cache.png +0 -0
  121. data/public/images/admin/collapse.png +0 -0
  122. data/public/images/admin/expand.png +0 -0
  123. data/public/images/admin/layout.png +0 -0
  124. data/public/images/admin/{new_homepage.png → new-homepage.png} +0 -0
  125. data/public/images/admin/{new_layout.png → new-layout.png} +0 -0
  126. data/public/images/admin/{new_snippet.png → new-snippet.png} +0 -0
  127. data/public/images/admin/{new_user.png → new-user.png} +0 -0
  128. data/public/images/admin/page.png +0 -0
  129. data/public/images/admin/remove-disabled.png +0 -0
  130. data/public/images/admin/remove.png +0 -0
  131. data/public/images/admin/snippet.png +0 -0
  132. data/public/images/admin/view-site.gif +0 -0
  133. data/public/images/admin/virtual-page.png +0 -0
  134. data/public/javascripts/admin/admin.js +149 -0
  135. data/public/javascripts/admin/ruledtable.js +5 -5
  136. data/public/javascripts/admin/sitemap.js +20 -37
  137. data/public/javascripts/admin/tabcontrol.js +100 -88
  138. data/public/javascripts/application.js +2 -0
  139. data/public/javascripts/{admin/controls.js → controls.js} +76 -78
  140. data/public/javascripts/{admin/dragdrop.js → dragdrop.js} +166 -167
  141. data/public/javascripts/{admin/effects.js → effects.js} +174 -168
  142. data/public/javascripts/pngfix.js +39 -0
  143. data/public/javascripts/{admin/prototype.js → prototype.js} +1022 -1576
  144. data/public/javascripts/string.js +17 -0
  145. data/public/stylesheets/admin/main.css +588 -1161
  146. data/radiantcms-couchrest_model.gemspec +246 -970
  147. data/script/cucumber +7 -9
  148. data/spec/controllers/admin/export_controller_spec.rb +1 -1
  149. data/spec/controllers/admin/layouts_controller_spec.rb +5 -5
  150. data/spec/controllers/admin/pages_controller_spec.rb +7 -26
  151. data/spec/controllers/admin/preferences_controller_spec.rb +6 -19
  152. data/spec/controllers/admin/references_controller_spec.rb +1 -1
  153. data/spec/controllers/admin/snippets_controller_spec.rb +6 -6
  154. data/spec/controllers/admin/users_controller_spec.rb +1 -10
  155. data/spec/controllers/admin/welcome_controller_spec.rb +3 -3
  156. data/spec/controllers/application_controller_spec.rb +1 -5
  157. data/spec/controllers/site_controller_spec.rb +1 -57
  158. data/spec/datasets/pages_dataset.rb +1 -5
  159. data/spec/datasets/users_dataset.rb +10 -23
  160. data/spec/generators/extension_controller_generator_spec.rb +6 -16
  161. data/spec/generators/extension_generator_spec.rb +18 -49
  162. data/spec/generators/extension_generators_spec_helper.rb +26 -53
  163. data/spec/generators/extension_mailer_generator_spec.rb +3 -3
  164. data/spec/helpers/admin/node_helper_spec.rb +8 -8
  165. data/spec/helpers/admin/references_helper_spec.rb +4 -4
  166. data/spec/helpers/admin/users_helper_spec.rb +2 -2
  167. data/spec/helpers/application_helper_spec.rb +32 -106
  168. data/spec/lib/login_system_spec.rb +1 -1
  169. data/spec/lib/radiant/admin_ui_spec.rb +131 -30
  170. data/spec/lib/radiant/extension/script_spec.rb +12 -29
  171. data/spec/lib/radiant/extension_loader_spec.rb +7 -37
  172. data/spec/lib/radiant/extension_spec.rb +1 -32
  173. data/spec/lib/radiant/initializer_spec.rb +2 -39
  174. data/spec/lib/radiant/taggable_spec.rb +8 -10
  175. data/spec/lib/radiant_spec.rb +1 -5
  176. data/spec/lib/task_support_spec.rb +0 -45
  177. data/spec/matchers/generator_matchers.rb +147 -145
  178. data/spec/matchers/render_form_errors_matcher.rb +1 -1
  179. data/spec/matchers/render_matcher.rb +1 -14
  180. data/spec/models/layout_spec.rb +3 -3
  181. data/spec/models/page_part_spec.rb +3 -3
  182. data/spec/models/page_spec.rb +6 -41
  183. data/spec/models/radiant/config_spec.rb +2 -2
  184. data/spec/models/snippet_spec.rb +3 -3
  185. data/spec/models/standard_tags_spec.rb +26 -190
  186. data/spec/models/user_spec.rb +19 -43
  187. data/test/fixtures/extensions/{basic → 01_basic}/app/controllers/basic_extension_controller.rb +0 -0
  188. data/test/fixtures/extensions/{basic → 01_basic}/app/metal/basic_metal.rb +0 -0
  189. data/test/fixtures/extensions/{basic → 01_basic}/app/models/basic_extension_mailer.rb +0 -0
  190. data/test/fixtures/extensions/{basic → 01_basic}/app/models/basic_extension_model.rb +0 -0
  191. data/test/fixtures/extensions/{basic → 01_basic}/app/views/basic_extension/index.html.erb +0 -0
  192. data/test/fixtures/extensions/{basic → 01_basic}/app/views/basic_extension/override.html.erb +0 -0
  193. data/test/fixtures/extensions/{basic → 01_basic}/app/views/basic_extension_mailer/message.text.html.erb +0 -0
  194. data/test/fixtures/extensions/{basic → 01_basic}/basic_extension.rb +4 -3
  195. data/test/fixtures/extensions/{basic → 01_basic}/db/migrate/200812131420_create_initial_schema.rb +0 -0
  196. data/test/fixtures/extensions/{basic → 01_basic}/db/migrate/200812131421_modify_initial_schema.rb +0 -0
  197. data/test/fixtures/extensions/{basic → 01_basic}/lib/new_module.rb +0 -0
  198. data/test/fixtures/extensions/{basic → 01_basic}/vendor/plugins/multiple/init.rb +0 -0
  199. data/test/fixtures/extensions/{basic → 01_basic}/vendor/plugins/multiple/lib/multiple.rb +0 -0
  200. data/test/fixtures/extensions/{basic → 01_basic}/vendor/plugins/plugin_normal/init.rb +0 -0
  201. data/test/fixtures/extensions/{basic → 01_basic}/vendor/plugins/plugin_normal/lib/normal_plugin.rb +0 -0
  202. data/test/fixtures/extensions/{overriding → 02_overriding}/app/metal/basic_metal.rb +0 -0
  203. data/test/fixtures/extensions/{overriding → 02_overriding}/app/views/basic_extension/override.html.erb +0 -0
  204. data/test/fixtures/extensions/{overriding → 02_overriding}/overriding_extension.rb +3 -0
  205. data/test/fixtures/extensions/{overriding → 02_overriding}/vendor/plugins/multiple/init.rb +0 -0
  206. data/test/fixtures/extensions/{overriding → 02_overriding}/vendor/plugins/multiple/lib/multiple.rb +0 -0
  207. data/test/fixtures/extensions/{upgrading → 03_upgrading}/db/migrate/01_first.rb +0 -0
  208. data/test/fixtures/extensions/{upgrading → 03_upgrading}/db/migrate/02_second.rb +0 -0
  209. data/test/fixtures/extensions/{upgrading → 03_upgrading}/db/migrate/03_pending.rb +0 -0
  210. data/test/fixtures/extensions/{upgrading → 03_upgrading}/db/migrate/04_dont_run.rb +0 -0
  211. data/test/fixtures/extensions/{upgrading → 03_upgrading}/upgrading_extension.rb +0 -0
  212. data/test/fixtures/extensions/load_order_blue/load_order_blue_extension.rb +3 -0
  213. data/test/fixtures/extensions/load_order_green/load_order_green_extension.rb +3 -0
  214. data/test/fixtures/extensions/load_order_red/load_order_red_extension.rb +3 -0
  215. data/test/test_helper.rb +1 -1
  216. data/vendor/extensions/archive/app/models/archive_finder.rb +0 -5
  217. data/vendor/extensions/archive/archive_extension.rb +1 -1
  218. data/vendor/extensions/markdown_filter/README +1 -1
  219. data/vendor/extensions/markdown_filter/lib/markdown_filter.rb +1 -5
  220. data/vendor/extensions/markdown_filter/lib/markdown_tags.rb +17 -2
  221. data/vendor/extensions/{smarty_pants_filter → markdown_filter}/lib/smarty_pants_filter.rb +0 -0
  222. data/vendor/extensions/markdown_filter/lib/tasks/textile_filter_extension_tasks.rake +0 -0
  223. data/vendor/extensions/markdown_filter/markdown.html +122 -122
  224. data/vendor/extensions/markdown_filter/markdown_filter_extension.rb +12 -3
  225. data/vendor/extensions/{smarty_pants_filter → markdown_filter}/smartypants.html +47 -47
  226. data/vendor/extensions/markdown_filter/spec/models/markdown_filter_spec.rb +1 -1
  227. data/vendor/extensions/{smarty_pants_filter → markdown_filter}/spec/models/smarty_pants_filter_spec.rb +0 -0
  228. data/vendor/extensions/{smarty_pants_filter → markdown_filter}/test/unit/smarty_pants_filter_test.rb +0 -0
  229. data/vendor/extensions/markdown_filter/vendor/bluecloth/CHANGES +366 -0
  230. data/vendor/extensions/markdown_filter/vendor/bluecloth/LICENSE +340 -0
  231. data/vendor/extensions/markdown_filter/vendor/bluecloth/README +99 -0
  232. data/vendor/extensions/markdown_filter/vendor/bluecloth/bin/bluecloth +83 -0
  233. data/vendor/extensions/markdown_filter/vendor/bluecloth/install.rb +150 -0
  234. data/vendor/extensions/markdown_filter/vendor/bluecloth/lib/bluecloth.rb +1144 -0
  235. data/vendor/extensions/markdown_filter/vendor/bluecloth/test.rb +117 -0
  236. data/vendor/extensions/markdown_filter/vendor/bluecloth/tests/00_Class.tests.rb +71 -0
  237. data/vendor/extensions/markdown_filter/vendor/bluecloth/tests/05_Markdown.tests.rb +1527 -0
  238. data/vendor/extensions/markdown_filter/vendor/bluecloth/tests/10_Bug.tests.rb +57 -0
  239. data/vendor/extensions/markdown_filter/vendor/bluecloth/tests/15_Contrib.tests.rb +132 -0
  240. data/vendor/extensions/markdown_filter/vendor/bluecloth/tests/bctestcase.rb +274 -0
  241. data/vendor/extensions/markdown_filter/vendor/bluecloth/tests/data/antsugar.txt +34 -0
  242. data/vendor/extensions/markdown_filter/vendor/bluecloth/tests/data/ml-announce.txt +17 -0
  243. data/vendor/extensions/markdown_filter/vendor/bluecloth/tests/data/re-overflow.txt +67 -0
  244. data/vendor/extensions/markdown_filter/vendor/bluecloth/tests/data/re-overflow2.txt +281 -0
  245. data/vendor/extensions/markdown_filter/vendor/bluecloth/utils.rb +553 -0
  246. data/vendor/extensions/{smarty_pants_filter → markdown_filter}/vendor/rubypants/README +0 -0
  247. data/vendor/extensions/{smarty_pants_filter → markdown_filter}/vendor/rubypants/Rakefile +0 -0
  248. data/vendor/extensions/{smarty_pants_filter → markdown_filter}/vendor/rubypants/install.rb +0 -0
  249. data/vendor/extensions/{smarty_pants_filter → markdown_filter}/vendor/rubypants/rubypants.rb +0 -0
  250. data/vendor/extensions/{smarty_pants_filter → markdown_filter}/vendor/rubypants/test_rubypants.rb +0 -0
  251. data/vendor/extensions/textile_filter/textile.html +114 -114
  252. data/vendor/plugins/dataset/lib/dataset/extensions/cucumber.rb +4 -5
  253. data/vendor/plugins/dataset/lib/dataset/load.rb +10 -0
  254. data/vendor/plugins/dataset/lib/dataset/session.rb +20 -4
  255. data/vendor/plugins/dataset/lib/dataset/session_binding.rb +15 -5
  256. data/vendor/plugins/haml/FAQ +138 -0
  257. data/vendor/plugins/haml/MIT-LICENSE +1 -1
  258. data/vendor/plugins/haml/README.rdoc +319 -0
  259. data/vendor/plugins/haml/REVISION +1 -0
  260. data/vendor/plugins/haml/Rakefile +47 -286
  261. data/vendor/plugins/haml/VERSION +1 -1
  262. data/vendor/plugins/haml/extra/haml-mode.el +97 -517
  263. data/vendor/plugins/haml/extra/sass-mode.el +38 -155
  264. data/vendor/plugins/haml/init.rb +3 -13
  265. data/vendor/plugins/haml/lib/haml.rb +993 -16
  266. data/vendor/plugins/haml/lib/haml/buffer.rb +85 -147
  267. data/vendor/plugins/haml/lib/haml/engine.rb +103 -137
  268. data/vendor/plugins/haml/lib/haml/error.rb +7 -7
  269. data/vendor/plugins/haml/lib/haml/exec.rb +45 -141
  270. data/vendor/plugins/haml/lib/haml/filters.rb +44 -121
  271. data/vendor/plugins/haml/lib/haml/helpers.rb +177 -296
  272. data/vendor/plugins/haml/lib/haml/helpers/action_view_extensions.rb +39 -51
  273. data/vendor/plugins/haml/lib/haml/helpers/action_view_mods.rb +107 -144
  274. data/vendor/plugins/haml/lib/haml/html.rb +100 -146
  275. data/vendor/plugins/haml/lib/haml/precompiler.rb +279 -531
  276. data/vendor/plugins/haml/lib/haml/template.rb +15 -60
  277. data/vendor/plugins/haml/lib/haml/template/patch.rb +2 -2
  278. data/vendor/plugins/haml/lib/haml/template/plugin.rb +6 -44
  279. data/vendor/plugins/haml/lib/haml/util.rb +6 -353
  280. data/vendor/plugins/haml/lib/haml/version.rb +24 -56
  281. data/vendor/plugins/haml/lib/sass.rb +856 -7
  282. data/vendor/plugins/haml/lib/sass/constant.rb +216 -0
  283. data/vendor/plugins/haml/lib/sass/constant/color.rb +101 -0
  284. data/vendor/plugins/haml/lib/sass/constant/literal.rb +54 -0
  285. data/vendor/plugins/haml/lib/sass/constant/nil.rb +9 -0
  286. data/vendor/plugins/haml/lib/sass/constant/number.rb +87 -0
  287. data/vendor/plugins/haml/lib/sass/constant/operation.rb +30 -0
  288. data/vendor/plugins/haml/lib/sass/constant/string.rb +22 -0
  289. data/vendor/plugins/haml/lib/sass/css.rb +161 -171
  290. data/vendor/plugins/haml/lib/sass/engine.rb +316 -365
  291. data/vendor/plugins/haml/lib/sass/error.rb +11 -33
  292. data/vendor/plugins/haml/lib/sass/plugin.rb +120 -179
  293. data/vendor/plugins/haml/lib/sass/plugin/merb.rb +16 -9
  294. data/vendor/plugins/haml/lib/sass/plugin/rails.rb +15 -16
  295. data/vendor/plugins/haml/lib/sass/tree/attr_node.rb +57 -0
  296. data/vendor/plugins/haml/lib/sass/tree/comment_node.rb +10 -74
  297. data/vendor/plugins/haml/lib/sass/tree/directive_node.rb +17 -39
  298. data/vendor/plugins/haml/lib/sass/tree/node.rb +11 -216
  299. data/vendor/plugins/haml/lib/sass/tree/rule_node.rb +51 -190
  300. data/vendor/plugins/haml/lib/sass/tree/value_node.rb +20 -0
  301. data/vendor/plugins/haml/test/haml/engine_test.rb +45 -682
  302. data/vendor/plugins/haml/test/haml/helper_test.rb +11 -120
  303. data/vendor/plugins/haml/test/haml/html2haml_test.rb +0 -60
  304. data/vendor/plugins/haml/test/haml/results/content_for_layout.xhtml +3 -0
  305. data/vendor/plugins/haml/test/haml/results/filters.xhtml +0 -2
  306. data/vendor/plugins/haml/test/haml/results/just_stuff.xhtml +3 -3
  307. data/vendor/plugins/haml/test/haml/results/list.xhtml +1 -1
  308. data/vendor/plugins/haml/test/haml/results/standard.xhtml +0 -120
  309. data/vendor/plugins/haml/test/haml/rhtml/standard.rhtml +2 -2
  310. data/vendor/plugins/haml/test/haml/template_test.rb +13 -196
  311. data/vendor/plugins/haml/test/haml/templates/content_for_layout.haml +2 -0
  312. data/vendor/plugins/haml/test/haml/templates/helpers.haml +0 -26
  313. data/vendor/plugins/haml/test/haml/templates/list.haml +1 -1
  314. data/vendor/plugins/haml/test/haml/templates/partial_layout.haml +2 -6
  315. data/vendor/plugins/haml/test/haml/templates/standard.haml +2 -2
  316. data/vendor/plugins/haml/test/haml/templates/standard_ugly.haml +2 -2
  317. data/vendor/plugins/haml/test/linked_rails.rb +2 -11
  318. data/vendor/plugins/haml/test/sass/css2sass_test.rb +24 -83
  319. data/vendor/plugins/haml/test/sass/engine_test.rb +68 -749
  320. data/vendor/plugins/haml/test/sass/plugin_test.rb +48 -130
  321. data/vendor/plugins/haml/test/sass/results/{script.css → constants.css} +4 -4
  322. data/vendor/plugins/haml/test/sass/results/subdir/subdir.css +0 -2
  323. data/vendor/plugins/haml/test/sass/templates/complex.sass +3 -0
  324. data/vendor/plugins/haml/test/sass/templates/{script.sass → constants.sass} +10 -11
  325. data/vendor/plugins/haml/test/sass/templates/import.sass +2 -2
  326. data/vendor/plugins/haml/test/sass/templates/importee.sass +2 -7
  327. data/vendor/plugins/haml/test/sass/templates/subdir/subdir.sass +2 -2
  328. data/vendor/plugins/haml/test/test_helper.rb +4 -41
  329. data/vendor/rack-cache/CHANGES +128 -0
  330. data/vendor/rack-cache/COPYING +18 -0
  331. data/vendor/rack-cache/README +110 -0
  332. data/vendor/rack-cache/Rakefile +137 -0
  333. data/vendor/rack-cache/TODO +31 -0
  334. data/vendor/rack-cache/doc/configuration.markdown +86 -0
  335. data/vendor/rack-cache/doc/faq.markdown +141 -0
  336. data/vendor/rack-cache/doc/index.markdown +118 -0
  337. data/vendor/rack-cache/doc/layout.html.erb +34 -0
  338. data/vendor/rack-cache/doc/license.markdown +24 -0
  339. data/vendor/rack-cache/doc/rack-cache.css +362 -0
  340. data/vendor/rack-cache/doc/server.ru +34 -0
  341. data/vendor/rack-cache/doc/storage.markdown +162 -0
  342. data/vendor/rack-cache/example/sinatra/app.rb +25 -0
  343. data/vendor/rack-cache/example/sinatra/views/index.erb +44 -0
  344. data/vendor/rack-cache/lib/rack/cache.rb +45 -0
  345. data/vendor/rack-cache/lib/rack/cache/cachecontrol.rb +193 -0
  346. data/vendor/rack-cache/lib/rack/cache/context.rb +233 -0
  347. data/vendor/rack-cache/lib/rack/cache/entitystore.rb +253 -0
  348. data/vendor/rack-cache/lib/rack/cache/key.rb +52 -0
  349. data/vendor/rack-cache/lib/rack/cache/metastore.rb +328 -0
  350. data/vendor/rack-cache/lib/rack/cache/options.rb +150 -0
  351. data/vendor/rack-cache/lib/rack/cache/request.rb +33 -0
  352. data/vendor/rack-cache/lib/rack/cache/response.rb +267 -0
  353. data/vendor/rack-cache/lib/rack/cache/storage.rb +49 -0
  354. data/vendor/rack-cache/rack-cache.gemspec +69 -0
  355. data/vendor/rack-cache/test/cache_test.rb +38 -0
  356. data/vendor/rack-cache/test/cachecontrol_test.rb +139 -0
  357. data/vendor/rack-cache/test/context_test.rb +727 -0
  358. data/vendor/rack-cache/test/entitystore_test.rb +189 -0
  359. data/vendor/rack-cache/test/key_test.rb +50 -0
  360. data/vendor/rack-cache/test/metastore_test.rb +263 -0
  361. data/vendor/rack-cache/test/options_test.rb +78 -0
  362. data/vendor/rack-cache/test/pony.jpg +0 -0
  363. data/vendor/rack-cache/test/request_test.rb +19 -0
  364. data/vendor/rack-cache/test/response_test.rb +178 -0
  365. data/vendor/rack-cache/test/spec_setup.rb +202 -0
  366. data/vendor/rack-cache/test/storage_test.rb +94 -0
  367. data/vendor/radius/CHANGELOG +0 -8
  368. data/vendor/radius/{QUICKSTART.rdoc → QUICKSTART} +19 -18
  369. data/vendor/radius/README +97 -0
  370. data/vendor/radius/ROADMAP +12 -0
  371. data/vendor/radius/Rakefile +86 -8
  372. data/vendor/radius/lib/radius.rb +502 -10
  373. data/vendor/radius/test/{parser_test.rb → radius_test.rb} +82 -50
  374. data/vendor/rails/actionmailer/CHANGELOG +0 -22
  375. data/vendor/rails/actionmailer/MIT-LICENSE +1 -1
  376. data/vendor/rails/actionmailer/Rakefile +1 -1
  377. data/vendor/rails/actionmailer/lib/action_mailer.rb +1 -1
  378. data/vendor/rails/actionmailer/lib/action_mailer/base.rb +2 -2
  379. data/vendor/rails/actionmailer/lib/action_mailer/quoting.rb +0 -1
  380. data/vendor/rails/actionmailer/lib/action_mailer/vendor/{tmail-1.2.7 → tmail-1.2.3}/tmail.rb +0 -1
  381. data/vendor/rails/actionmailer/lib/action_mailer/vendor/{tmail-1.2.7 → tmail-1.2.3}/tmail/address.rb +38 -4
  382. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/attachments.rb +46 -0
  383. data/vendor/rails/actionmailer/lib/action_mailer/vendor/{tmail-1.2.7 → tmail-1.2.3}/tmail/base64.rb +0 -0
  384. data/vendor/rails/actionmailer/lib/action_mailer/vendor/{tmail-1.2.7 → tmail-1.2.3}/tmail/compat.rb +0 -0
  385. data/vendor/rails/actionmailer/lib/action_mailer/vendor/{tmail-1.2.7 → tmail-1.2.3}/tmail/config.rb +0 -0
  386. data/vendor/rails/actionmailer/lib/action_mailer/vendor/{tmail-1.2.7 → tmail-1.2.3}/tmail/core_extensions.rb +0 -0
  387. data/vendor/rails/actionmailer/lib/action_mailer/vendor/{tmail-1.2.7 → tmail-1.2.3}/tmail/encode.rb +0 -9
  388. data/vendor/rails/actionmailer/lib/action_mailer/vendor/{tmail-1.2.7 → tmail-1.2.3}/tmail/header.rb +2 -4
  389. data/vendor/rails/actionmailer/lib/action_mailer/vendor/{tmail-1.2.7 → tmail-1.2.3}/tmail/index.rb +0 -0
  390. data/vendor/rails/actionmailer/lib/action_mailer/vendor/{tmail-1.2.7 → tmail-1.2.3}/tmail/interface.rb +1 -33
  391. data/vendor/rails/actionmailer/lib/action_mailer/vendor/{tmail-1.2.7 → tmail-1.2.3}/tmail/loader.rb +0 -0
  392. data/vendor/rails/actionmailer/lib/action_mailer/vendor/{tmail-1.2.7 → tmail-1.2.3}/tmail/mail.rb +1 -1
  393. data/vendor/rails/actionmailer/lib/action_mailer/vendor/{tmail-1.2.7 → tmail-1.2.3}/tmail/mailbox.rb +2 -3
  394. data/vendor/rails/actionmailer/lib/action_mailer/vendor/{tmail-1.2.7 → tmail-1.2.3}/tmail/main.rb +0 -0
  395. data/vendor/rails/actionmailer/lib/action_mailer/vendor/{tmail-1.2.7 → tmail-1.2.3}/tmail/mbox.rb +0 -0
  396. data/vendor/rails/actionmailer/lib/action_mailer/vendor/{tmail-1.2.7 → tmail-1.2.3}/tmail/net.rb +1 -3
  397. data/vendor/rails/actionmailer/lib/action_mailer/vendor/{tmail-1.2.7 → tmail-1.2.3}/tmail/obsolete.rb +0 -0
  398. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/parser.rb +1476 -0
  399. data/vendor/rails/actionmailer/lib/action_mailer/vendor/{tmail-1.2.7 → tmail-1.2.3}/tmail/port.rb +0 -0
  400. data/vendor/rails/actionmailer/lib/action_mailer/vendor/{tmail-1.2.7 → tmail-1.2.3}/tmail/quoting.rb +1 -47
  401. data/vendor/rails/actionmailer/lib/action_mailer/vendor/{tmail-1.2.7 → tmail-1.2.3}/tmail/require_arch.rb +0 -0
  402. data/vendor/rails/actionmailer/lib/action_mailer/vendor/{tmail-1.2.7 → tmail-1.2.3}/tmail/scanner.rb +0 -0
  403. data/vendor/rails/actionmailer/lib/action_mailer/vendor/{tmail-1.2.7 → tmail-1.2.3}/tmail/scanner_r.rb +1 -2
  404. data/vendor/rails/actionmailer/lib/action_mailer/vendor/{tmail-1.2.7 → tmail-1.2.3}/tmail/stringio.rb +0 -0
  405. data/vendor/rails/actionmailer/lib/action_mailer/vendor/{tmail-1.2.7 → tmail-1.2.3}/tmail/utils.rb +25 -50
  406. data/vendor/rails/actionmailer/lib/action_mailer/vendor/{tmail-1.2.7 → tmail-1.2.3}/tmail/version.rb +1 -1
  407. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail.rb +2 -2
  408. data/vendor/rails/actionmailer/lib/action_mailer/version.rb +1 -1
  409. data/vendor/rails/actionmailer/lib/actionmailer.rb +0 -1
  410. data/vendor/rails/actionmailer/pkg/actionmailer-3.0.pre.gem +0 -0
  411. data/vendor/rails/actionmailer/test/abstract_unit.rb +4 -4
  412. data/vendor/rails/actionmailer/test/fixtures/helpers/example_helper.rb +1 -1
  413. data/vendor/rails/actionmailer/test/mail_service_test.rb +3 -69
  414. data/vendor/rails/actionmailer/test/quoting_test.rb +4 -10
  415. data/vendor/rails/actionpack/CHANGELOG +0 -67
  416. data/vendor/rails/actionpack/MIT-LICENSE +1 -1
  417. data/vendor/rails/actionpack/README +7 -7
  418. data/vendor/rails/actionpack/Rakefile +2 -2
  419. data/vendor/rails/actionpack/lib/action_controller.rb +2 -4
  420. data/vendor/rails/actionpack/lib/action_controller/assertions/dom_assertions.rb +3 -19
  421. data/vendor/rails/actionpack/lib/action_controller/assertions/response_assertions.rb +9 -18
  422. data/vendor/rails/actionpack/lib/action_controller/assertions/selector_assertions.rb +10 -16
  423. data/vendor/rails/actionpack/lib/action_controller/base.rb +15 -15
  424. data/vendor/rails/actionpack/lib/action_controller/caching.rb +0 -1
  425. data/vendor/rails/actionpack/lib/action_controller/caching/fragments.rb +6 -6
  426. data/vendor/rails/actionpack/lib/action_controller/cookies.rb +1 -98
  427. data/vendor/rails/actionpack/lib/action_controller/failsafe.rb +0 -1
  428. data/vendor/rails/actionpack/lib/action_controller/flash.rb +0 -42
  429. data/vendor/rails/actionpack/lib/action_controller/http_authentication.rb +2 -3
  430. data/vendor/rails/actionpack/lib/action_controller/integration.rb +4 -20
  431. data/vendor/rails/actionpack/lib/action_controller/layout.rb +1 -6
  432. data/vendor/rails/actionpack/lib/action_controller/middlewares.rb +0 -2
  433. data/vendor/rails/actionpack/lib/action_controller/polymorphic_routes.rb +22 -7
  434. data/vendor/rails/actionpack/lib/action_controller/request_forgery_protection.rb +2 -6
  435. data/vendor/rails/actionpack/lib/action_controller/rescue.rb +2 -2
  436. data/vendor/rails/actionpack/lib/action_controller/response.rb +8 -6
  437. data/vendor/rails/actionpack/lib/action_controller/routing/route_set.rb +0 -1
  438. data/vendor/rails/actionpack/lib/action_controller/session/abstract_store.rb +0 -6
  439. data/vendor/rails/actionpack/lib/action_controller/session/cookie_store.rb +0 -6
  440. data/vendor/rails/actionpack/lib/action_controller/templates/rescues/_trace.erb +2 -2
  441. data/vendor/rails/actionpack/lib/action_controller/test_case.rb +1 -6
  442. data/vendor/rails/actionpack/lib/action_controller/test_process.rb +1 -1
  443. data/vendor/rails/actionpack/lib/action_controller/translation.rb +2 -2
  444. data/vendor/rails/actionpack/lib/action_controller/uploaded_file.rb +2 -2
  445. data/vendor/rails/actionpack/lib/action_controller/url_rewriter.rb +1 -4
  446. data/vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/node.rb +1 -1
  447. data/vendor/rails/actionpack/lib/action_pack.rb +1 -1
  448. data/vendor/rails/actionpack/lib/action_pack/version.rb +1 -1
  449. data/vendor/rails/actionpack/lib/action_view.rb +4 -4
  450. data/vendor/rails/actionpack/lib/action_view/base.rb +1 -6
  451. data/vendor/rails/{activesupport/lib/active_support/core_ext/string/output_safety.rb → actionpack/lib/action_view/erb/util.rb} +1 -75
  452. data/vendor/rails/actionpack/lib/action_view/helpers.rb +0 -2
  453. data/vendor/rails/actionpack/lib/action_view/helpers/active_record_helper.rb +11 -11
  454. data/vendor/rails/actionpack/lib/action_view/helpers/asset_tag_helper.rb +2 -2
  455. data/vendor/rails/actionpack/lib/action_view/helpers/capture_helper.rb +1 -1
  456. data/vendor/rails/actionpack/lib/action_view/helpers/date_helper.rb +23 -36
  457. data/vendor/rails/actionpack/lib/action_view/helpers/debug_helper.rb +2 -2
  458. data/vendor/rails/actionpack/lib/action_view/helpers/form_helper.rb +21 -79
  459. data/vendor/rails/actionpack/lib/action_view/helpers/form_options_helper.rb +4 -3
  460. data/vendor/rails/actionpack/lib/action_view/helpers/form_tag_helper.rb +4 -7
  461. data/vendor/rails/actionpack/lib/action_view/helpers/javascript_helper.rb +1 -1
  462. data/vendor/rails/actionpack/lib/action_view/helpers/number_helper.rb +2 -7
  463. data/vendor/rails/actionpack/lib/action_view/helpers/prototype_helper.rb +2 -2
  464. data/vendor/rails/actionpack/lib/action_view/helpers/sanitize_helper.rb +2 -2
  465. data/vendor/rails/actionpack/lib/action_view/helpers/tag_helper.rb +5 -6
  466. data/vendor/rails/actionpack/lib/action_view/helpers/text_helper.rb +5 -5
  467. data/vendor/rails/actionpack/lib/action_view/helpers/translation_helper.rb +10 -38
  468. data/vendor/rails/actionpack/lib/action_view/helpers/url_helper.rb +10 -8
  469. data/vendor/rails/actionpack/lib/action_view/locale/en.yml +0 -3
  470. data/vendor/rails/actionpack/lib/action_view/partials.rb +1 -2
  471. data/vendor/rails/actionpack/lib/action_view/paths.rb +0 -8
  472. data/vendor/rails/actionpack/lib/action_view/renderable.rb +2 -16
  473. data/vendor/rails/actionpack/lib/action_view/template.rb +2 -8
  474. data/vendor/rails/actionpack/lib/action_view/template_handlers/erb.rb +4 -7
  475. data/vendor/rails/actionpack/lib/action_view/test_case.rb +26 -101
  476. data/vendor/rails/actionpack/lib/actionpack.rb +0 -1
  477. data/vendor/rails/actionpack/pkg/actionpack-3.0.pre.gem +0 -0
  478. data/vendor/rails/actionpack/test/abstract_unit.rb +8 -8
  479. data/vendor/rails/actionpack/test/active_record_unit.rb +1 -1
  480. data/vendor/rails/actionpack/test/controller/action_pack_assertions_test.rb +1 -3
  481. data/vendor/rails/actionpack/test/controller/assert_select_test.rb +5 -6
  482. data/vendor/rails/actionpack/test/controller/caching_test.rb +2 -16
  483. data/vendor/rails/actionpack/test/controller/capture_test.rb +1 -1
  484. data/vendor/rails/actionpack/test/controller/cookie_test.rb +1 -44
  485. data/vendor/rails/actionpack/test/controller/filter_params_test.rb +0 -1
  486. data/vendor/rails/actionpack/test/controller/flash_test.rb +1 -28
  487. data/vendor/rails/actionpack/test/controller/helper_test.rb +1 -1
  488. data/vendor/rails/actionpack/test/controller/html-scanner/sanitizer_test.rb +0 -1
  489. data/vendor/rails/actionpack/test/controller/http_digest_authentication_test.rb +0 -22
  490. data/vendor/rails/actionpack/test/controller/integration_test.rb +1 -38
  491. data/vendor/rails/actionpack/test/controller/layout_test.rb +0 -11
  492. data/vendor/rails/actionpack/test/controller/polymorphic_routes_test.rb +0 -4
  493. data/vendor/rails/actionpack/test/controller/rack_test.rb +4 -1
  494. data/vendor/rails/actionpack/test/controller/render_test.rb +2 -11
  495. data/vendor/rails/actionpack/test/controller/request_forgery_protection_test.rb +1 -19
  496. data/vendor/rails/actionpack/test/controller/rescue_test.rb +2 -8
  497. data/vendor/rails/actionpack/test/controller/routing_test.rb +15 -24
  498. data/vendor/rails/actionpack/test/controller/send_file_test.rb +1 -1
  499. data/vendor/rails/actionpack/test/controller/session/cookie_store_test.rb +2 -2
  500. data/vendor/rails/actionpack/test/controller/session/test_session_test.rb +2 -2
  501. data/vendor/rails/actionpack/test/controller/url_rewriter_test.rb +6 -10
  502. data/vendor/rails/actionpack/test/fixtures/test/capturing.erb +2 -2
  503. data/vendor/rails/actionpack/test/fixtures/test/utf8.html.erb +2 -4
  504. data/vendor/rails/actionpack/test/template/active_record_helper_i18n_test.rb +2 -9
  505. data/vendor/rails/actionpack/test/template/active_record_helper_test.rb +1 -1
  506. data/vendor/rails/actionpack/test/template/asset_tag_helper_test.rb +1 -12
  507. data/vendor/rails/actionpack/test/template/benchmark_helper_test.rb +6 -6
  508. data/vendor/rails/actionpack/test/template/compiled_templates_test.rb +1 -2
  509. data/vendor/rails/actionpack/test/template/date_helper_i18n_test.rb +9 -10
  510. data/vendor/rails/actionpack/test/template/date_helper_test.rb +13 -147
  511. data/vendor/rails/actionpack/test/template/erb_util_test.rb +0 -12
  512. data/vendor/rails/actionpack/test/template/form_helper_test.rb +12 -146
  513. data/vendor/rails/actionpack/test/template/form_tag_helper_test.rb +9 -21
  514. data/vendor/rails/actionpack/test/template/number_helper_test.rb +0 -4
  515. data/vendor/rails/actionpack/test/template/render_test.rb +8 -47
  516. data/vendor/rails/actionpack/test/template/sanitize_helper_test.rb +1 -10
  517. data/vendor/rails/actionpack/test/template/tag_helper_test.rb +0 -1
  518. data/vendor/rails/actionpack/test/template/text_helper_test.rb +1 -26
  519. data/vendor/rails/actionpack/test/template/translation_helper_test.rb +9 -72
  520. data/vendor/rails/actionpack/test/template/url_helper_test.rb +1 -20
  521. data/vendor/rails/actionpack/test/view/test_case_test.rb +4 -172
  522. data/vendor/rails/activemodel/pkg/activemodel-3.0.pre.gem +0 -0
  523. data/vendor/rails/activerecord/CHANGELOG +0 -51
  524. data/vendor/rails/activerecord/Rakefile +1 -1
  525. data/vendor/rails/activerecord/lib/active_record.rb +2 -1
  526. data/vendor/rails/activerecord/lib/active_record/association_preload.rb +2 -9
  527. data/vendor/rails/activerecord/lib/active_record/associations.rb +44 -57
  528. data/vendor/rails/activerecord/lib/active_record/associations/association_collection.rb +11 -15
  529. data/vendor/rails/activerecord/lib/active_record/associations/association_proxy.rb +9 -18
  530. data/vendor/rails/activerecord/lib/active_record/associations/belongs_to_association.rb +1 -11
  531. data/vendor/rails/activerecord/lib/active_record/associations/belongs_to_polymorphic_association.rb +10 -34
  532. data/vendor/rails/activerecord/lib/active_record/associations/has_and_belongs_to_many_association.rb +2 -2
  533. data/vendor/rails/activerecord/lib/active_record/associations/has_many_association.rb +0 -5
  534. data/vendor/rails/activerecord/lib/active_record/associations/has_many_through_association.rb +5 -5
  535. data/vendor/rails/activerecord/lib/active_record/associations/has_one_association.rb +1 -19
  536. data/vendor/rails/activerecord/lib/active_record/attribute_methods.rb +1 -5
  537. data/vendor/rails/activerecord/lib/active_record/autosave_association.rb +48 -88
  538. data/vendor/rails/activerecord/lib/active_record/base.rb +36 -84
  539. data/vendor/rails/activerecord/lib/active_record/batches.rb +9 -13
  540. data/vendor/rails/activerecord/lib/active_record/calculations.rb +3 -6
  541. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/connection_specification.rb +3 -3
  542. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/query_cache.rb +1 -1
  543. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/quoting.rb +7 -3
  544. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/schema_definitions.rb +1 -1
  545. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/schema_statements.rb +10 -64
  546. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract_adapter.rb +0 -2
  547. data/vendor/rails/activerecord/lib/active_record/connection_adapters/mysql_adapter.rb +3 -37
  548. data/vendor/rails/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb +66 -31
  549. data/vendor/rails/activerecord/lib/active_record/connection_adapters/sqlite_adapter.rb +5 -5
  550. data/vendor/rails/activerecord/lib/active_record/dirty.rb +2 -2
  551. data/vendor/rails/activerecord/lib/active_record/fixtures.rb +1 -2
  552. data/vendor/rails/activerecord/lib/active_record/i18n_interpolation_deprecation.rb +26 -0
  553. data/vendor/rails/activerecord/lib/active_record/locking/optimistic.rb +18 -18
  554. data/vendor/rails/activerecord/lib/active_record/locking/pessimistic.rb +22 -0
  555. data/vendor/rails/activerecord/lib/active_record/migration.rb +0 -5
  556. data/vendor/rails/activerecord/lib/active_record/nested_attributes.rb +60 -135
  557. data/vendor/rails/activerecord/lib/active_record/reflection.rb +1 -66
  558. data/vendor/rails/activerecord/lib/active_record/schema.rb +1 -5
  559. data/vendor/rails/activerecord/lib/active_record/schema_dumper.rb +0 -3
  560. data/vendor/rails/activerecord/lib/active_record/serializers/json_serializer.rb +1 -1
  561. data/vendor/rails/activerecord/lib/active_record/validations.rb +36 -48
  562. data/vendor/rails/activerecord/lib/active_record/version.rb +1 -1
  563. data/vendor/rails/activerecord/lib/activerecord.rb +0 -1
  564. data/vendor/rails/activerecord/pkg/activerecord-3.0.pre.gem +0 -0
  565. data/vendor/rails/activerecord/test/cases/active_schema_test_mysql.rb +0 -22
  566. data/vendor/rails/activerecord/test/cases/associations/belongs_to_associations_test.rb +0 -13
  567. data/vendor/rails/activerecord/test/cases/associations/eager_load_nested_include_test.rb +7 -8
  568. data/vendor/rails/activerecord/test/cases/associations/eager_test.rb +1 -7
  569. data/vendor/rails/activerecord/test/cases/associations/has_many_associations_test.rb +0 -38
  570. data/vendor/rails/activerecord/test/cases/associations/has_many_through_associations_test.rb +0 -22
  571. data/vendor/rails/activerecord/test/cases/associations/has_one_associations_test.rb +0 -21
  572. data/vendor/rails/activerecord/test/cases/associations_test.rb +0 -10
  573. data/vendor/rails/activerecord/test/cases/autosave_association_test.rb +21 -316
  574. data/vendor/rails/activerecord/test/cases/base_test.rb +0 -31
  575. data/vendor/rails/activerecord/test/cases/batches_test.rb +0 -20
  576. data/vendor/rails/activerecord/test/cases/calculations_test.rb +3 -2
  577. data/vendor/rails/activerecord/test/cases/connection_test_mysql.rb +0 -8
  578. data/vendor/rails/activerecord/test/cases/finder_test.rb +3 -19
  579. data/vendor/rails/activerecord/test/cases/fixtures_test.rb +2 -7
  580. data/vendor/rails/activerecord/test/cases/json_serialization_test.rb +0 -14
  581. data/vendor/rails/activerecord/test/cases/locking_test.rb +3 -30
  582. data/vendor/rails/activerecord/test/cases/migration_test.rb +0 -115
  583. data/vendor/rails/activerecord/test/cases/modules_test.rb +0 -28
  584. data/vendor/rails/activerecord/test/cases/named_scope_test.rb +1 -1
  585. data/vendor/rails/activerecord/test/cases/nested_attributes_test.rb +38 -342
  586. data/vendor/rails/activerecord/test/cases/query_cache_test.rb +1 -7
  587. data/vendor/rails/activerecord/test/cases/reflection_test.rb +10 -50
  588. data/vendor/rails/activerecord/test/cases/schema_test_postgresql.rb +2 -2
  589. data/vendor/rails/activerecord/test/cases/validations_i18n_test.rb +36 -14
  590. data/vendor/rails/activerecord/test/cases/validations_test.rb +10 -70
  591. data/vendor/rails/activerecord/test/fixtures/accounts.yml +0 -1
  592. data/vendor/rails/activerecord/test/fixtures/fixture_database.sqlite +0 -0
  593. data/vendor/rails/activerecord/test/fixtures/fixture_database.sqlite3 +0 -0
  594. data/vendor/rails/activerecord/test/fixtures/fixture_database_2.sqlite +0 -0
  595. data/vendor/rails/activerecord/test/fixtures/fixture_database_2.sqlite3 +0 -0
  596. data/vendor/rails/activerecord/test/models/author.rb +0 -3
  597. data/vendor/rails/activerecord/test/models/bird.rb +0 -6
  598. data/vendor/rails/activerecord/test/models/company.rb +0 -10
  599. data/vendor/rails/activerecord/test/models/company_in_module.rb +0 -17
  600. data/vendor/rails/activerecord/test/models/parrot.rb +0 -6
  601. data/vendor/rails/activerecord/test/models/pirate.rb +2 -19
  602. data/vendor/rails/activerecord/test/models/ship.rb +1 -10
  603. data/vendor/rails/activerecord/test/models/ship_part.rb +1 -3
  604. data/vendor/rails/activerecord/test/models/treasure.rb +0 -2
  605. data/vendor/rails/activerecord/test/schema/mysql_specific_schema.rb +0 -12
  606. data/vendor/rails/activerecord/test/schema/schema.rb +0 -42
  607. data/vendor/rails/activeresource/CHANGELOG +0 -24
  608. data/vendor/rails/activeresource/Rakefile +1 -1
  609. data/vendor/rails/activeresource/lib/active_resource/base.rb +2 -11
  610. data/vendor/rails/activeresource/lib/active_resource/http_mock.rb +2 -2
  611. data/vendor/rails/activeresource/lib/active_resource/validations.rb +3 -3
  612. data/vendor/rails/activeresource/lib/active_resource/version.rb +1 -1
  613. data/vendor/rails/activeresource/lib/activeresource.rb +0 -1
  614. data/vendor/rails/activeresource/pkg/activeresource-3.0.pre.gem +0 -0
  615. data/vendor/rails/activeresource/test/abstract_unit.rb +2 -2
  616. data/vendor/rails/activeresource/test/base_errors_test.rb +2 -15
  617. data/vendor/rails/activeresource/test/base_test.rb +0 -49
  618. data/vendor/rails/activeresource/test/debug.log +2939 -75315
  619. data/vendor/rails/activesupport/CHANGELOG +0 -45
  620. data/vendor/rails/activesupport/lib/active_support.rb +0 -1
  621. data/vendor/rails/activesupport/lib/active_support/buffered_logger.rb +1 -1
  622. data/vendor/rails/activesupport/lib/active_support/cache.rb +0 -7
  623. data/vendor/rails/activesupport/lib/active_support/cache/mem_cache_store.rb +0 -5
  624. data/vendor/rails/activesupport/lib/active_support/cache/memory_store.rb +1 -7
  625. data/vendor/rails/activesupport/lib/active_support/cache/strategy/local_cache.rb +6 -6
  626. data/vendor/rails/activesupport/lib/active_support/core_ext.rb +3 -7
  627. data/vendor/rails/activesupport/lib/active_support/core_ext/array/conversions.rb +1 -1
  628. data/vendor/rails/activesupport/lib/active_support/core_ext/array/random_access.rb +1 -11
  629. data/vendor/rails/activesupport/lib/active_support/core_ext/blank.rb +58 -2
  630. data/vendor/rails/activesupport/lib/active_support/core_ext/class/attribute_accessors.rb +28 -35
  631. data/vendor/rails/activesupport/lib/active_support/core_ext/date/calculations.rb +4 -14
  632. data/vendor/rails/activesupport/lib/active_support/core_ext/date_time/conversions.rb +3 -14
  633. data/vendor/rails/activesupport/lib/active_support/core_ext/enumerable.rb +0 -6
  634. data/vendor/rails/activesupport/lib/active_support/core_ext/file/atomic.rb +1 -2
  635. data/vendor/rails/activesupport/lib/active_support/core_ext/kernel/debugger.rb +0 -1
  636. data/vendor/rails/activesupport/lib/active_support/core_ext/kernel/reporting.rb +1 -1
  637. data/vendor/rails/activesupport/lib/active_support/core_ext/module/aliasing.rb +1 -1
  638. data/vendor/rails/activesupport/lib/active_support/core_ext/module/attr_accessor_with_default.rb +1 -1
  639. data/vendor/rails/activesupport/lib/active_support/core_ext/module/attribute_accessors.rb +26 -33
  640. data/vendor/rails/activesupport/lib/active_support/core_ext/module/synchronization.rb +1 -1
  641. data/vendor/rails/activesupport/lib/active_support/core_ext/name_error.rb +1 -3
  642. data/vendor/rails/activesupport/lib/active_support/core_ext/numeric/conversions.rb +2 -2
  643. data/vendor/rails/activesupport/lib/active_support/core_ext/object.rb +0 -2
  644. data/vendor/rails/activesupport/lib/active_support/core_ext/object/metaclass.rb +5 -6
  645. data/vendor/rails/activesupport/lib/active_support/core_ext/string.rb +0 -1
  646. data/vendor/rails/activesupport/lib/active_support/core_ext/string/starts_ends_with.rb +4 -2
  647. data/vendor/rails/activesupport/lib/active_support/core_ext/time.rb +4 -8
  648. data/vendor/rails/activesupport/lib/active_support/core_ext/time/calculations.rb +4 -14
  649. data/vendor/rails/activesupport/lib/active_support/deprecation.rb +3 -4
  650. data/vendor/rails/activesupport/lib/active_support/inflections.rb +1 -1
  651. data/vendor/rails/activesupport/lib/active_support/inflector.rb +2 -5
  652. data/vendor/rails/activesupport/lib/active_support/json/backends/jsongem.rb +3 -2
  653. data/vendor/rails/activesupport/lib/active_support/json/backends/yaml.rb +12 -11
  654. data/vendor/rails/activesupport/lib/active_support/json/decoding.rb +1 -18
  655. data/vendor/rails/activesupport/lib/active_support/json/encoding.rb +2 -11
  656. data/vendor/rails/activesupport/lib/active_support/memoizable.rb +1 -1
  657. data/vendor/rails/activesupport/lib/active_support/message_verifier.rb +10 -30
  658. data/vendor/rails/activesupport/lib/active_support/multibyte/chars.rb +1 -1
  659. data/vendor/rails/activesupport/lib/active_support/multibyte/unicode_database.rb +2 -2
  660. data/vendor/rails/activesupport/lib/active_support/multibyte/utils.rb +9 -8
  661. data/vendor/rails/activesupport/lib/active_support/ordered_hash.rb +11 -35
  662. data/vendor/rails/activesupport/lib/active_support/testing/assertions.rb +0 -14
  663. data/vendor/rails/activesupport/lib/active_support/values/time_zone.rb +76 -84
  664. data/vendor/rails/activesupport/lib/active_support/vendor.rb +3 -11
  665. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/MIT-LICENSE +20 -0
  666. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/README.textile +20 -0
  667. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/Rakefile +5 -0
  668. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/i18n.gemspec +27 -0
  669. data/vendor/rails/activesupport/lib/active_support/vendor/{i18n-0.3.7 → i18n-0.1.3/lib}/i18n.rb +39 -175
  670. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/lib/i18n/backend/simple.rb +214 -0
  671. data/vendor/rails/activesupport/lib/active_support/vendor/{i18n-0.3.7 → i18n-0.1.3/lib}/i18n/exceptions.rb +7 -15
  672. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/all.rb +5 -0
  673. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/i18n_exceptions_test.rb +99 -0
  674. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/i18n_test.rb +124 -0
  675. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/locale/en.rb +1 -0
  676. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/locale/en.yml +3 -0
  677. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/test/simple_backend_test.rb +567 -0
  678. data/vendor/rails/activesupport/lib/active_support/version.rb +1 -1
  679. data/vendor/rails/activesupport/lib/active_support/whiny_nil.rb +2 -8
  680. data/vendor/rails/activesupport/lib/active_support/xml_mini/libxml.rb +83 -23
  681. data/vendor/rails/activesupport/lib/active_support/xml_mini/nokogiri.rb +29 -24
  682. data/vendor/rails/activesupport/lib/activesupport.rb +0 -1
  683. data/vendor/rails/activesupport/pkg/activesupport-3.0.pre.gem +0 -0
  684. data/vendor/rails/pkg/rails-3.0.pre.gem +0 -0
  685. data/vendor/rails/railties/CHANGELOG +0 -22
  686. data/vendor/rails/railties/MIT-LICENSE +1 -1
  687. data/vendor/rails/railties/Rakefile +6 -6
  688. data/vendor/rails/railties/bin/rails +5 -6
  689. data/vendor/rails/railties/builtin/rails_info/rails/info.rb +1 -1
  690. data/vendor/rails/railties/guides/source/getting_started.textile +2 -2
  691. data/vendor/rails/railties/lib/commands/dbconsole.rb +1 -1
  692. data/vendor/rails/railties/lib/commands/plugin.rb +1 -1
  693. data/vendor/rails/railties/lib/commands/runner.rb +1 -1
  694. data/vendor/rails/railties/lib/dispatcher.rb +1 -1
  695. data/vendor/rails/railties/lib/rails/gem_dependency.rb +4 -11
  696. data/vendor/rails/railties/lib/rails/rack/debugger.rb +0 -2
  697. data/vendor/rails/railties/lib/rails/vendor_gem_source_index.rb +1 -1
  698. data/vendor/rails/railties/lib/rails/version.rb +1 -1
  699. data/vendor/rails/railties/lib/rails_generator.rb +2 -5
  700. data/vendor/rails/railties/lib/rails_generator/generated_attribute.rb +6 -7
  701. data/vendor/rails/railties/lib/rails_generator/generators/applications/app/app_generator.rb +0 -3
  702. data/vendor/rails/railties/lib/rails_generator/generators/components/model/templates/fixtures.yml +5 -9
  703. data/vendor/rails/railties/lib/rails_generator/generators/components/plugin/plugin_generator.rb +2 -2
  704. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/controller.rb +4 -2
  705. data/vendor/rails/railties/lib/rails_generator/generators/components/scaffold/templates/layout.html.erb +1 -1
  706. data/vendor/rails/railties/lib/rails_generator/options.rb +7 -7
  707. data/vendor/rails/railties/lib/tasks/databases.rake +14 -14
  708. data/vendor/rails/railties/lib/tasks/framework.rake +1 -4
  709. data/vendor/rails/railties/lib/tasks/rails.rb +1 -7
  710. data/vendor/rails/railties/pkg/railties-3.0.pre.gem +0 -0
  711. metadata +183 -804
  712. data/app/views/admin/references/filters.haml +0 -6
  713. data/app/views/admin/references/tags.haml +0 -30
  714. data/app/views/admin/users/_avatar.html.haml +0 -3
  715. data/app/views/admin/users/_password_fields.html.haml +0 -18
  716. data/config/cucumber.yml +0 -7
  717. data/config/environments/cucumber.rb +0 -29
  718. data/config/initializers/haml.rb +0 -2
  719. data/config/locales/en.yml +0 -190
  720. data/config/locales/en_available_tags.yml +0 -533
  721. data/db/migrate/20090226140109_add_user_language.rb +0 -9
  722. data/db/migrate/20090929164633_rename_developer_role_to_designer.rb +0 -9
  723. data/db/migrate/20091003095744_change_user_language_to_locale.rb +0 -9
  724. data/features/admin/resource_pagination.feature +0 -27
  725. data/features/step_definitions/admin/pagination_steps.rb +0 -46
  726. data/features/step_definitions/web_steps.rb +0 -273
  727. data/features/support/dataset.rb +0 -9
  728. data/files +0 -7283
  729. data/lib/generators/extension/templates/en.yml +0 -3
  730. data/lib/generators/extension/templates/routes.rb +0 -5
  731. data/lib/generators/language_extension/USAGE +0 -27
  732. data/lib/generators/language_extension/language_extension_generator.rb +0 -49
  733. data/lib/generators/language_extension/templates/README +0 -3
  734. data/lib/generators/language_extension/templates/RSpecRakefile +0 -123
  735. data/lib/generators/language_extension/templates/Rakefile +0 -25
  736. data/lib/generators/language_extension/templates/available_tags.yml +0 -553
  737. data/lib/generators/language_extension/templates/cucumber.yml +0 -1
  738. data/lib/generators/language_extension/templates/cucumber_env.rb +0 -16
  739. data/lib/generators/language_extension/templates/cucumber_paths.rb +0 -14
  740. data/lib/generators/language_extension/templates/extension.rb +0 -8
  741. data/lib/generators/language_extension/templates/functional_test.rb +0 -15
  742. data/lib/generators/language_extension/templates/lang.yml +0 -181
  743. data/lib/generators/language_extension/templates/spec.opts +0 -6
  744. data/lib/generators/language_extension/templates/spec_helper.rb +0 -36
  745. data/lib/generators/language_extension/templates/tasks.rake +0 -28
  746. data/lib/generators/language_extension/templates/test_helper.rb +0 -26
  747. data/lib/radiant/available_locales.rb +0 -31
  748. data/lib/radiant/pagination/controller.rb +0 -34
  749. data/lib/radiant/pagination/link_renderer.rb +0 -34
  750. data/lib/tasks/ci.rake +0 -17
  751. data/lib/tasks/prototype.rake +0 -34
  752. data/lib/tasks/translate.rake +0 -59
  753. data/lib/translation_support.rb +0 -54
  754. data/public/images/admin/add_tab.png +0 -0
  755. data/public/images/admin/avatar_32x32.png +0 -0
  756. data/public/images/admin/avatar_96x96.png +0 -0
  757. data/public/images/admin/buttons_background.png +0 -0
  758. data/public/images/admin/calendar_down.gif +0 -0
  759. data/public/images/admin/draft_page.png +0 -0
  760. data/public/images/admin/login_shadow.png +0 -0
  761. data/public/images/admin/metadata_toggle.png +0 -0
  762. data/public/images/admin/minus_disabled.png +0 -0
  763. data/public/images/admin/minus_grey.png +0 -0
  764. data/public/images/admin/navigation_background.gif +0 -0
  765. data/public/images/admin/navigation_secondary_background.png +0 -0
  766. data/public/images/admin/navigation_secondary_separator.gif +0 -0
  767. data/public/images/admin/navigation_shadow.png +0 -0
  768. data/public/images/admin/navigation_tabs.png +0 -0
  769. data/public/images/admin/plus_grey.png +0 -0
  770. data/public/images/admin/popup_border_background.png +0 -0
  771. data/public/images/admin/popup_border_bottom_left.png +0 -0
  772. data/public/images/admin/popup_border_bottom_right.png +0 -0
  773. data/public/images/admin/popup_border_top_left.png +0 -0
  774. data/public/images/admin/popup_border_top_right.png +0 -0
  775. data/public/images/admin/shadow.png +0 -0
  776. data/public/images/admin/shadow_grey.png +0 -0
  777. data/public/images/admin/single_form_shadow.png +0 -0
  778. data/public/images/admin/spacer.gif +0 -0
  779. data/public/images/admin/status_background.png +0 -0
  780. data/public/images/admin/status_bottom_left.png +0 -0
  781. data/public/images/admin/status_bottom_right.png +0 -0
  782. data/public/images/admin/status_spinner.gif +0 -0
  783. data/public/images/admin/status_top_left.png +0 -0
  784. data/public/images/admin/status_top_right.png +0 -0
  785. data/public/images/admin/tab_close.png +0 -0
  786. data/public/images/admin/vertical_tan_gradient.png +0 -0
  787. data/public/images/admin/view_site.png +0 -0
  788. data/public/images/admin/virtual_page.png +0 -0
  789. data/public/images/radiant-badge-color.png +0 -0
  790. data/public/javascripts/admin/application.js +0 -85
  791. data/public/javascripts/admin/codearea.js +0 -165
  792. data/public/javascripts/admin/cookie.js +0 -80
  793. data/public/javascripts/admin/dateinput.js +0 -402
  794. data/public/javascripts/admin/lowpro.js +0 -340
  795. data/public/javascripts/admin/overrides.js +0 -1
  796. data/public/javascripts/admin/pagestatus.js +0 -17
  797. data/public/javascripts/admin/popup.js +0 -216
  798. data/public/javascripts/admin/shortcuts.js +0 -27
  799. data/public/javascripts/admin/status.js +0 -233
  800. data/public/javascripts/admin/toggle.js +0 -430
  801. data/public/javascripts/admin/utility.js +0 -52
  802. data/public/javascripts/admin/validationerror.js +0 -18
  803. data/public/stylesheets/admin/overrides.css +0 -1
  804. data/public/stylesheets/sass/admin/main.sass +0 -27
  805. data/public/stylesheets/sass/admin/modules/_grid.sass +0 -56
  806. data/public/stylesheets/sass/admin/modules/_links.sass +0 -15
  807. data/public/stylesheets/sass/admin/modules/_opacity.sass +0 -7
  808. data/public/stylesheets/sass/admin/modules/_rounded.sass +0 -41
  809. data/public/stylesheets/sass/admin/modules/_shadow.sass +0 -9
  810. data/public/stylesheets/sass/admin/overrides.sass +0 -2
  811. data/public/stylesheets/sass/admin/partials/_actions.sass +0 -83
  812. data/public/stylesheets/sass/admin/partials/_avatars.sass +0 -10
  813. data/public/stylesheets/sass/admin/partials/_base.sass +0 -59
  814. data/public/stylesheets/sass/admin/partials/_content.sass +0 -199
  815. data/public/stylesheets/sass/admin/partials/_dateinput.sass +0 -62
  816. data/public/stylesheets/sass/admin/partials/_deprecated.sass +0 -26
  817. data/public/stylesheets/sass/admin/partials/_footer.sass +0 -12
  818. data/public/stylesheets/sass/admin/partials/_forms.sass +0 -309
  819. data/public/stylesheets/sass/admin/partials/_header.sass +0 -112
  820. data/public/stylesheets/sass/admin/partials/_layout.sass +0 -10
  821. data/public/stylesheets/sass/admin/partials/_messages.sass +0 -10
  822. data/public/stylesheets/sass/admin/partials/_popup.sass +0 -117
  823. data/public/stylesheets/sass/admin/partials/_reset.sass +0 -36
  824. data/public/stylesheets/sass/admin/partials/_tabcontrol.sass +0 -70
  825. data/public/stylesheets/sass/admin/partials/_toolbar.sass +0 -31
  826. data/public/stylesheets/sass/admin/partials/_validations.sass +0 -21
  827. data/rerun.txt +0 -1
  828. data/spec/controllers/admin/paginated_controller_spec.rb +0 -26
  829. data/spec/generators/instance_generator_spec.rb +0 -152
  830. data/spec/lib/radiant/admin_ui/nav_tabs_spec.rb +0 -139
  831. data/spec/lib/radiant/available_locales_spec.rb +0 -13
  832. data/spec/lib/translation_support_spec.rb +0 -16
  833. data/test/fixtures/extensions/locale/config/locales/en-uk.yml +0 -3
  834. data/test/fixtures/extensions/locale/config/locales/en.yml +0 -3
  835. data/test/fixtures/extensions/locale/locale_extension.rb +0 -5
  836. data/test/fixtures/extensions/routed/config/routes.rb +0 -1
  837. data/test/fixtures/extensions/routed/routed_extension.rb +0 -2
  838. data/test/fixtures/gems/misnamed_ext-0.0.0/misnamed_ext_extension.rb +0 -2
  839. data/test/fixtures/gems/radiant-gem_ext-extension-0.0.0/gem_ext_extension.rb +0 -2
  840. data/test/fixtures/gems/radiant-gem_ext-extension-0.0.0/lib/gem_ext.rb +0 -3
  841. data/vendor/extensions/dutch_language_pack/README +0 -3
  842. data/vendor/extensions/dutch_language_pack/Rakefile +0 -123
  843. data/vendor/extensions/dutch_language_pack/config/locales/nl.yml +0 -187
  844. data/vendor/extensions/dutch_language_pack/config/locales/nl_available_tags.yml +0 -553
  845. data/vendor/extensions/dutch_language_pack/dutch_language_pack_extension.rb +0 -9
  846. data/vendor/extensions/dutch_language_pack/lib/tasks/i18n_nl_extension_tasks.rake +0 -28
  847. data/vendor/extensions/french_language_pack/README +0 -3
  848. data/vendor/extensions/french_language_pack/Rakefile +0 -123
  849. data/vendor/extensions/french_language_pack/config/locales/fr.yml +0 -190
  850. data/vendor/extensions/french_language_pack/config/locales/fr_available_tags.yml +0 -553
  851. data/vendor/extensions/french_language_pack/french_language_pack_extension.rb +0 -9
  852. data/vendor/extensions/french_language_pack/lib/tasks/i18n_fr_extension_tasks.rake +0 -28
  853. data/vendor/extensions/german_language_pack/README +0 -4
  854. data/vendor/extensions/german_language_pack/Rakefile +0 -123
  855. data/vendor/extensions/german_language_pack/config/locales/de.yml +0 -186
  856. data/vendor/extensions/german_language_pack/config/locales/de_available_tags.yml +0 -624
  857. data/vendor/extensions/german_language_pack/german_language_pack_extension.rb +0 -9
  858. data/vendor/extensions/german_language_pack/lib/tasks/i18n_de_extension_tasks.rake +0 -28
  859. data/vendor/extensions/italian_language_pack/README +0 -3
  860. data/vendor/extensions/italian_language_pack/Rakefile +0 -123
  861. data/vendor/extensions/italian_language_pack/config/locales/it.yml +0 -184
  862. data/vendor/extensions/italian_language_pack/config/locales/it_available_tags.yml +0 -553
  863. data/vendor/extensions/italian_language_pack/italian_language_pack_extension.rb +0 -8
  864. data/vendor/extensions/italian_language_pack/lib/tasks/i18n_it_extension_tasks.rake +0 -28
  865. data/vendor/extensions/japanese_language_pack/README +0 -3
  866. data/vendor/extensions/japanese_language_pack/Rakefile +0 -123
  867. data/vendor/extensions/japanese_language_pack/config/locales/ja.yml +0 -184
  868. data/vendor/extensions/japanese_language_pack/config/locales/ja_available_tags.yml +0 -553
  869. data/vendor/extensions/japanese_language_pack/japanese_language_pack_extension.rb +0 -9
  870. data/vendor/extensions/japanese_language_pack/lib/tasks/i18n_ja_extension_tasks.rake +0 -28
  871. data/vendor/extensions/markdown_filter/vendor/kramdown/AUTHORS +0 -1
  872. data/vendor/extensions/markdown_filter/vendor/kramdown/CONTRIBUTERS +0 -4
  873. data/vendor/extensions/markdown_filter/vendor/kramdown/COPYING +0 -24
  874. data/vendor/extensions/markdown_filter/vendor/kramdown/ChangeLog +0 -3956
  875. data/vendor/extensions/markdown_filter/vendor/kramdown/GPL +0 -674
  876. data/vendor/extensions/markdown_filter/vendor/kramdown/README +0 -30
  877. data/vendor/extensions/markdown_filter/vendor/kramdown/Rakefile +0 -342
  878. data/vendor/extensions/markdown_filter/vendor/kramdown/VERSION +0 -1
  879. data/vendor/extensions/markdown_filter/vendor/kramdown/benchmark/benchmark.rb +0 -34
  880. data/vendor/extensions/markdown_filter/vendor/kramdown/benchmark/generate_data.rb +0 -112
  881. data/vendor/extensions/markdown_filter/vendor/kramdown/benchmark/historic-jruby-1.4.0.dat +0 -7
  882. data/vendor/extensions/markdown_filter/vendor/kramdown/benchmark/historic-ruby-1.8.6.dat +0 -7
  883. data/vendor/extensions/markdown_filter/vendor/kramdown/benchmark/historic-ruby-1.8.7.dat +0 -7
  884. data/vendor/extensions/markdown_filter/vendor/kramdown/benchmark/historic-ruby-1.9.1p243.dat +0 -7
  885. data/vendor/extensions/markdown_filter/vendor/kramdown/benchmark/historic-ruby-1.9.2dev.dat +0 -7
  886. data/vendor/extensions/markdown_filter/vendor/kramdown/benchmark/mdbasics.text +0 -306
  887. data/vendor/extensions/markdown_filter/vendor/kramdown/benchmark/mdsyntax.text +0 -888
  888. data/vendor/extensions/markdown_filter/vendor/kramdown/benchmark/static-jruby-1.4.0.dat +0 -7
  889. data/vendor/extensions/markdown_filter/vendor/kramdown/benchmark/static-ruby-1.8.6.dat +0 -7
  890. data/vendor/extensions/markdown_filter/vendor/kramdown/benchmark/static-ruby-1.8.7.dat +0 -7
  891. data/vendor/extensions/markdown_filter/vendor/kramdown/benchmark/static-ruby-1.9.1p243.dat +0 -7
  892. data/vendor/extensions/markdown_filter/vendor/kramdown/benchmark/static-ruby-1.9.2dev.dat +0 -7
  893. data/vendor/extensions/markdown_filter/vendor/kramdown/benchmark/testing.sh +0 -9
  894. data/vendor/extensions/markdown_filter/vendor/kramdown/benchmark/timing.sh +0 -10
  895. data/vendor/extensions/markdown_filter/vendor/kramdown/bin/kramdown +0 -78
  896. data/vendor/extensions/markdown_filter/vendor/kramdown/data/kramdown/document.html +0 -9
  897. data/vendor/extensions/markdown_filter/vendor/kramdown/data/kramdown/document.latex +0 -43
  898. data/vendor/extensions/markdown_filter/vendor/kramdown/doc/default.less.css +0 -510
  899. data/vendor/extensions/markdown_filter/vendor/kramdown/doc/default.template +0 -71
  900. data/vendor/extensions/markdown_filter/vendor/kramdown/doc/documentation.page +0 -72
  901. data/vendor/extensions/markdown_filter/vendor/kramdown/doc/index.page +0 -63
  902. data/vendor/extensions/markdown_filter/vendor/kramdown/doc/installation.page +0 -90
  903. data/vendor/extensions/markdown_filter/vendor/kramdown/doc/links.markdown +0 -6
  904. data/vendor/extensions/markdown_filter/vendor/kramdown/doc/news.feed +0 -10
  905. data/vendor/extensions/markdown_filter/vendor/kramdown/doc/news.page +0 -28
  906. data/vendor/extensions/markdown_filter/vendor/kramdown/doc/quickref.page +0 -564
  907. data/vendor/extensions/markdown_filter/vendor/kramdown/doc/syntax.page +0 -1521
  908. data/vendor/extensions/markdown_filter/vendor/kramdown/doc/tests.page +0 -51
  909. data/vendor/extensions/markdown_filter/vendor/kramdown/doc/virtual +0 -2
  910. data/vendor/extensions/markdown_filter/vendor/kramdown/lib/kramdown.rb +0 -23
  911. data/vendor/extensions/markdown_filter/vendor/kramdown/lib/kramdown/compatibility.rb +0 -34
  912. data/vendor/extensions/markdown_filter/vendor/kramdown/lib/kramdown/converter.rb +0 -41
  913. data/vendor/extensions/markdown_filter/vendor/kramdown/lib/kramdown/converter/base.rb +0 -111
  914. data/vendor/extensions/markdown_filter/vendor/kramdown/lib/kramdown/converter/html.rb +0 -397
  915. data/vendor/extensions/markdown_filter/vendor/kramdown/lib/kramdown/converter/latex.rb +0 -555
  916. data/vendor/extensions/markdown_filter/vendor/kramdown/lib/kramdown/document.rb +0 -164
  917. data/vendor/extensions/markdown_filter/vendor/kramdown/lib/kramdown/error.rb +0 -27
  918. data/vendor/extensions/markdown_filter/vendor/kramdown/lib/kramdown/options.rb +0 -282
  919. data/vendor/extensions/markdown_filter/vendor/kramdown/lib/kramdown/parser.rb +0 -39
  920. data/vendor/extensions/markdown_filter/vendor/kramdown/lib/kramdown/parser/base.rb +0 -95
  921. data/vendor/extensions/markdown_filter/vendor/kramdown/lib/kramdown/parser/html.rb +0 -387
  922. data/vendor/extensions/markdown_filter/vendor/kramdown/lib/kramdown/parser/kramdown.rb +0 -301
  923. data/vendor/extensions/markdown_filter/vendor/kramdown/lib/kramdown/parser/kramdown/abbreviation.rb +0 -65
  924. data/vendor/extensions/markdown_filter/vendor/kramdown/lib/kramdown/parser/kramdown/attribute_list.rb +0 -103
  925. data/vendor/extensions/markdown_filter/vendor/kramdown/lib/kramdown/parser/kramdown/autolink.rb +0 -47
  926. data/vendor/extensions/markdown_filter/vendor/kramdown/lib/kramdown/parser/kramdown/blank_line.rb +0 -43
  927. data/vendor/extensions/markdown_filter/vendor/kramdown/lib/kramdown/parser/kramdown/blockquote.rb +0 -42
  928. data/vendor/extensions/markdown_filter/vendor/kramdown/lib/kramdown/parser/kramdown/codeblock.rb +0 -58
  929. data/vendor/extensions/markdown_filter/vendor/kramdown/lib/kramdown/parser/kramdown/codespan.rb +0 -57
  930. data/vendor/extensions/markdown_filter/vendor/kramdown/lib/kramdown/parser/kramdown/emphasis.rb +0 -70
  931. data/vendor/extensions/markdown_filter/vendor/kramdown/lib/kramdown/parser/kramdown/eob.rb +0 -39
  932. data/vendor/extensions/markdown_filter/vendor/kramdown/lib/kramdown/parser/kramdown/escaped_chars.rb +0 -38
  933. data/vendor/extensions/markdown_filter/vendor/kramdown/lib/kramdown/parser/kramdown/extension.rb +0 -101
  934. data/vendor/extensions/markdown_filter/vendor/kramdown/lib/kramdown/parser/kramdown/footnote.rb +0 -73
  935. data/vendor/extensions/markdown_filter/vendor/kramdown/lib/kramdown/parser/kramdown/header.rb +0 -66
  936. data/vendor/extensions/markdown_filter/vendor/kramdown/lib/kramdown/parser/kramdown/horizontal_rule.rb +0 -39
  937. data/vendor/extensions/markdown_filter/vendor/kramdown/lib/kramdown/parser/kramdown/html.rb +0 -173
  938. data/vendor/extensions/markdown_filter/vendor/kramdown/lib/kramdown/parser/kramdown/html_entity.rb +0 -38
  939. data/vendor/extensions/markdown_filter/vendor/kramdown/lib/kramdown/parser/kramdown/line_break.rb +0 -38
  940. data/vendor/extensions/markdown_filter/vendor/kramdown/lib/kramdown/parser/kramdown/link.rb +0 -153
  941. data/vendor/extensions/markdown_filter/vendor/kramdown/lib/kramdown/parser/kramdown/list.rb +0 -228
  942. data/vendor/extensions/markdown_filter/vendor/kramdown/lib/kramdown/parser/kramdown/math.rb +0 -53
  943. data/vendor/extensions/markdown_filter/vendor/kramdown/lib/kramdown/parser/kramdown/paragraph.rb +0 -44
  944. data/vendor/extensions/markdown_filter/vendor/kramdown/lib/kramdown/parser/kramdown/smart_quotes.rb +0 -214
  945. data/vendor/extensions/markdown_filter/vendor/kramdown/lib/kramdown/parser/kramdown/table.rb +0 -126
  946. data/vendor/extensions/markdown_filter/vendor/kramdown/lib/kramdown/parser/kramdown/typographic_symbol.rb +0 -52
  947. data/vendor/extensions/markdown_filter/vendor/kramdown/lib/kramdown/version.rb +0 -28
  948. data/vendor/extensions/markdown_filter/vendor/kramdown/man/man1/kramdown.1 +0 -222
  949. data/vendor/extensions/markdown_filter/vendor/kramdown/setup.rb +0 -1585
  950. data/vendor/extensions/markdown_filter/vendor/kramdown/test/run_tests.rb +0 -59
  951. data/vendor/extensions/markdown_filter/vendor/kramdown/test/test_files.rb +0 -100
  952. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/01_blank_line/spaces.html +0 -1
  953. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/01_blank_line/spaces.text +0 -3
  954. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/01_blank_line/tabs.html +0 -1
  955. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/01_blank_line/tabs.text +0 -6
  956. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/02_eob/beginning.html +0 -1
  957. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/02_eob/beginning.text +0 -3
  958. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/02_eob/end.html +0 -1
  959. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/02_eob/end.text +0 -3
  960. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/02_eob/middle.html +0 -2
  961. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/02_eob/middle.text +0 -5
  962. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/03_paragraph/indented.html +0 -18
  963. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/03_paragraph/indented.text +0 -19
  964. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/03_paragraph/no_newline_at_end.html +0 -5
  965. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/03_paragraph/no_newline_at_end.text +0 -5
  966. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/03_paragraph/one_para.html +0 -1
  967. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/03_paragraph/one_para.text +0 -1
  968. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/03_paragraph/two_para.html +0 -4
  969. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/03_paragraph/two_para.text +0 -4
  970. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/04_header/atx_header.html +0 -34
  971. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/04_header/atx_header.text +0 -32
  972. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/04_header/atx_header_no_newline_at_end.html +0 -1
  973. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/04_header/atx_header_no_newline_at_end.text +0 -1
  974. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/04_header/setext_header.html +0 -31
  975. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/04_header/setext_header.text +0 -36
  976. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/04_header/setext_header_no_newline_at_end.html +0 -1
  977. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/04_header/setext_header_no_newline_at_end.text +0 -2
  978. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/04_header/with_auto_id_prefix.html +0 -3
  979. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/04_header/with_auto_id_prefix.options +0 -2
  980. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/04_header/with_auto_id_prefix.text +0 -3
  981. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/04_header/with_auto_ids.html +0 -17
  982. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/04_header/with_auto_ids.options +0 -1
  983. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/04_header/with_auto_ids.text +0 -19
  984. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/05_blockquote/indented.html +0 -25
  985. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/05_blockquote/indented.text +0 -14
  986. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/05_blockquote/nested.html +0 -9
  987. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/05_blockquote/nested.text +0 -5
  988. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/05_blockquote/no_newline_at_end.html +0 -4
  989. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/05_blockquote/no_newline_at_end.text +0 -2
  990. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/05_blockquote/only_first_quoted.html +0 -8
  991. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/05_blockquote/only_first_quoted.text +0 -4
  992. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/05_blockquote/with_code_blocks.html +0 -15
  993. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/05_blockquote/with_code_blocks.text +0 -11
  994. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/06_codeblock/error.html +0 -4
  995. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/06_codeblock/error.text +0 -4
  996. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/06_codeblock/no_newline_at_end.html +0 -2
  997. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/06_codeblock/no_newline_at_end.text +0 -1
  998. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/06_codeblock/normal.html +0 -13
  999. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/06_codeblock/normal.text +0 -10
  1000. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/06_codeblock/tilde_syntax.html +0 -7
  1001. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/06_codeblock/tilde_syntax.text +0 -9
  1002. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/06_codeblock/whitespace.html +0 -3
  1003. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/06_codeblock/whitespace.text +0 -3
  1004. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/06_codeblock/with_blank_line.html +0 -13
  1005. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/06_codeblock/with_blank_line.text +0 -12
  1006. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/06_codeblock/with_eob_marker.html +0 -6
  1007. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/06_codeblock/with_eob_marker.text +0 -5
  1008. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/07_horizontal_rule/error.html +0 -7
  1009. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/07_horizontal_rule/error.text +0 -7
  1010. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/07_horizontal_rule/normal.html +0 -19
  1011. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/07_horizontal_rule/normal.text +0 -19
  1012. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/07_horizontal_rule/sepspaces.html +0 -3
  1013. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/07_horizontal_rule/sepspaces.text +0 -3
  1014. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/07_horizontal_rule/septabs.html +0 -3
  1015. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/07_horizontal_rule/septabs.text +0 -3
  1016. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/08_list/escaping.html +0 -17
  1017. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/08_list/escaping.text +0 -17
  1018. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/08_list/item_ial.html +0 -9
  1019. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/08_list/item_ial.text +0 -5
  1020. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/08_list/list_and_hr.html +0 -9
  1021. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/08_list/list_and_hr.text +0 -5
  1022. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/08_list/list_and_others.html +0 -38
  1023. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/08_list/list_and_others.text +0 -25
  1024. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/08_list/mixed.html +0 -117
  1025. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/08_list/mixed.text +0 -66
  1026. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/08_list/nested.html +0 -17
  1027. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/08_list/nested.text +0 -7
  1028. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/08_list/other_first_element.html +0 -39
  1029. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/08_list/other_first_element.text +0 -18
  1030. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/08_list/simple_ol.html +0 -19
  1031. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/08_list/simple_ol.text +0 -13
  1032. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/08_list/simple_ul.html +0 -61
  1033. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/08_list/simple_ul.text +0 -43
  1034. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/08_list/single_item.html +0 -3
  1035. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/08_list/single_item.text +0 -1
  1036. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/08_list/special_cases.html +0 -78
  1037. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/08_list/special_cases.text +0 -48
  1038. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/comment.html +0 -18
  1039. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/comment.text +0 -15
  1040. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/content_model/deflists.html +0 -6
  1041. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/content_model/deflists.options +0 -1
  1042. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/content_model/deflists.text +0 -6
  1043. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/content_model/tables.html +0 -14
  1044. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/content_model/tables.options +0 -1
  1045. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/content_model/tables.text +0 -14
  1046. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/filtered_html.html +0 -1
  1047. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/filtered_html.options +0 -1
  1048. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/filtered_html.text +0 -1
  1049. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/html_and_codeblocks.html +0 -15
  1050. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/html_and_codeblocks.options +0 -1
  1051. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/html_and_codeblocks.text +0 -13
  1052. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/html_to_native/code.html +0 -10
  1053. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/html_to_native/code.text +0 -9
  1054. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/html_to_native/comment.html +0 -7
  1055. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/html_to_native/comment.text +0 -8
  1056. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/html_to_native/emphasis.html +0 -1
  1057. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/html_to_native/emphasis.text +0 -1
  1058. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/html_to_native/entity.html +0 -1
  1059. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/html_to_native/entity.text +0 -1
  1060. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/html_to_native/header.html +0 -6
  1061. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/html_to_native/header.options +0 -2
  1062. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/html_to_native/header.text +0 -6
  1063. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/html_to_native/list_dl.html +0 -8
  1064. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/html_to_native/list_dl.text +0 -8
  1065. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/html_to_native/list_ol.html +0 -15
  1066. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/html_to_native/list_ol.text +0 -17
  1067. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/html_to_native/list_ul.html +0 -19
  1068. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/html_to_native/list_ul.text +0 -22
  1069. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/html_to_native/options +0 -1
  1070. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/html_to_native/paragraph.html +0 -3
  1071. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/html_to_native/paragraph.text +0 -4
  1072. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/html_to_native/table_normal.html +0 -13
  1073. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/html_to_native/table_normal.text +0 -12
  1074. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/html_to_native/table_simple.html +0 -10
  1075. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/html_to_native/table_simple.text +0 -14
  1076. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/html_to_native/typography.html +0 -1
  1077. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/html_to_native/typography.text +0 -1
  1078. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/invalid_html_1.html +0 -3
  1079. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/invalid_html_1.text +0 -5
  1080. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/invalid_html_2.html +0 -5
  1081. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/invalid_html_2.text +0 -5
  1082. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/markdown_attr.html +0 -38
  1083. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/markdown_attr.text +0 -38
  1084. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/not_parsed.html +0 -24
  1085. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/not_parsed.text +0 -24
  1086. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/parse_as_raw.html +0 -30
  1087. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/parse_as_raw.options +0 -1
  1088. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/parse_as_raw.text +0 -29
  1089. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/parse_as_span.html +0 -12
  1090. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/parse_as_span.options +0 -1
  1091. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/parse_as_span.text +0 -9
  1092. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/parse_block_html.html +0 -21
  1093. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/parse_block_html.options +0 -1
  1094. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/parse_block_html.text +0 -17
  1095. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/processing_instruction.html +0 -13
  1096. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/processing_instruction.text +0 -12
  1097. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/simple.html +0 -62
  1098. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/simple.options +0 -1
  1099. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/09_html/simple.text +0 -57
  1100. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/10_ald/simple.html +0 -2
  1101. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/10_ald/simple.text +0 -8
  1102. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/11_ial/auto_id_and_ial.html +0 -1
  1103. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/11_ial/auto_id_and_ial.options +0 -1
  1104. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/11_ial/auto_id_and_ial.text +0 -2
  1105. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/11_ial/simple.html +0 -25
  1106. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/11_ial/simple.text +0 -34
  1107. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/12_extension/comment.html +0 -5
  1108. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/12_extension/comment.text +0 -11
  1109. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/12_extension/ignored.html +0 -4
  1110. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/12_extension/ignored.text +0 -8
  1111. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/12_extension/nomarkdown.html +0 -6
  1112. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/12_extension/nomarkdown.text +0 -11
  1113. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/12_extension/options.html +0 -24
  1114. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/12_extension/options.text +0 -27
  1115. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/12_extension/options2.html +0 -10
  1116. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/12_extension/options2.text +0 -5
  1117. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/12_extension/options3.html +0 -7
  1118. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/12_extension/options3.text +0 -7
  1119. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/13_definition_list/definition_at_beginning.html +0 -1
  1120. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/13_definition_list/definition_at_beginning.text +0 -1
  1121. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/13_definition_list/multiple_terms.html +0 -13
  1122. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/13_definition_list/multiple_terms.text +0 -10
  1123. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/13_definition_list/no_def_list.html +0 -2
  1124. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/13_definition_list/no_def_list.text +0 -2
  1125. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/13_definition_list/para_wrapping.html +0 -10
  1126. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/13_definition_list/para_wrapping.text +0 -6
  1127. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/13_definition_list/separated_by_eob.html +0 -8
  1128. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/13_definition_list/separated_by_eob.text +0 -5
  1129. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/13_definition_list/simple.html +0 -8
  1130. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/13_definition_list/simple.text +0 -7
  1131. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/13_definition_list/styled_terms.html +0 -4
  1132. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/13_definition_list/styled_terms.text +0 -2
  1133. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/13_definition_list/too_much_space.html +0 -3
  1134. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/13_definition_list/too_much_space.text +0 -4
  1135. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/13_definition_list/with_blocks.html +0 -38
  1136. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/13_definition_list/with_blocks.text +0 -24
  1137. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/14_table/errors.html +0 -3
  1138. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/14_table/errors.text +0 -3
  1139. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/14_table/footer.html +0 -65
  1140. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/14_table/footer.text +0 -25
  1141. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/14_table/header.html +0 -103
  1142. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/14_table/header.text +0 -32
  1143. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/14_table/no_table.html +0 -3
  1144. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/14_table/no_table.text +0 -3
  1145. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/14_table/simple.html +0 -61
  1146. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/14_table/simple.text +0 -16
  1147. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/15_math/normal.html +0 -19
  1148. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/block/15_math/normal.text +0 -18
  1149. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/encoding.html +0 -46
  1150. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/encoding.text +0 -28
  1151. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/01_link/empty.html +0 -3
  1152. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/01_link/empty.text +0 -3
  1153. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/01_link/image_in_a.html +0 -5
  1154. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/01_link/image_in_a.text +0 -5
  1155. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/01_link/imagelinks.html +0 -12
  1156. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/01_link/imagelinks.text +0 -14
  1157. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/01_link/inline.html +0 -40
  1158. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/01_link/inline.text +0 -42
  1159. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/01_link/link_defs.html +0 -8
  1160. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/01_link/link_defs.text +0 -22
  1161. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/01_link/links_with_angle_brackets.html +0 -3
  1162. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/01_link/links_with_angle_brackets.text +0 -3
  1163. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/01_link/reference.html +0 -32
  1164. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/01_link/reference.text +0 -42
  1165. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/02_emphasis/empty.html +0 -3
  1166. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/02_emphasis/empty.text +0 -3
  1167. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/02_emphasis/errors.html +0 -9
  1168. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/02_emphasis/errors.text +0 -9
  1169. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/02_emphasis/nesting.html +0 -38
  1170. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/02_emphasis/nesting.text +0 -33
  1171. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/02_emphasis/normal.html +0 -46
  1172. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/02_emphasis/normal.text +0 -46
  1173. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/03_codespan/empty.html +0 -5
  1174. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/03_codespan/empty.text +0 -5
  1175. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/03_codespan/errors.html +0 -1
  1176. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/03_codespan/errors.text +0 -1
  1177. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/03_codespan/normal.html +0 -16
  1178. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/03_codespan/normal.text +0 -16
  1179. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/04_footnote/definitions.html +0 -14
  1180. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/04_footnote/definitions.latex +0 -18
  1181. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/04_footnote/definitions.text +0 -18
  1182. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/04_footnote/footnote_nr.html +0 -12
  1183. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/04_footnote/footnote_nr.latex +0 -6
  1184. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/04_footnote/footnote_nr.options +0 -1
  1185. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/04_footnote/footnote_nr.text +0 -4
  1186. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/04_footnote/markers.html +0 -46
  1187. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/04_footnote/markers.latex +0 -32
  1188. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/04_footnote/markers.text +0 -26
  1189. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/05_html/across_lines.html +0 -1
  1190. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/05_html/across_lines.text +0 -2
  1191. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/05_html/invalid.html +0 -1
  1192. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/05_html/invalid.text +0 -1
  1193. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/05_html/link_with_mailto.html +0 -1
  1194. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/05_html/link_with_mailto.text +0 -1
  1195. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/05_html/markdown_attr.html +0 -6
  1196. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/05_html/markdown_attr.text +0 -6
  1197. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/05_html/normal.html +0 -28
  1198. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/05_html/normal.text +0 -28
  1199. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/abbreviations/abbrev.html +0 -8
  1200. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/abbreviations/abbrev.text +0 -15
  1201. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/abbreviations/abbrev_defs.html +0 -2
  1202. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/abbreviations/abbrev_defs.text +0 -5
  1203. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/autolinks/url_links.html +0 -12
  1204. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/autolinks/url_links.text +0 -12
  1205. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/escaped_chars/normal.html +0 -41
  1206. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/escaped_chars/normal.text +0 -41
  1207. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/extension/comment.html +0 -6
  1208. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/extension/comment.text +0 -6
  1209. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/extension/ignored.html +0 -1
  1210. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/extension/ignored.text +0 -1
  1211. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/extension/nomarkdown.html +0 -1
  1212. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/extension/nomarkdown.text +0 -1
  1213. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/extension/options.html +0 -1
  1214. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/extension/options.text +0 -1
  1215. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/ial/simple.html +0 -6
  1216. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/ial/simple.text +0 -6
  1217. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/line_breaks/normal.html +0 -11
  1218. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/line_breaks/normal.text +0 -11
  1219. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/math/normal.html +0 -5
  1220. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/math/normal.text +0 -5
  1221. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/text_substitutions/entities.html +0 -4
  1222. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/text_substitutions/entities.text +0 -4
  1223. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/text_substitutions/greaterthan.html +0 -1
  1224. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/text_substitutions/greaterthan.text +0 -1
  1225. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/text_substitutions/lowerthan.html +0 -1
  1226. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/text_substitutions/lowerthan.text +0 -1
  1227. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/text_substitutions/typography.html +0 -18
  1228. data/vendor/extensions/markdown_filter/vendor/kramdown/test/testcases/span/text_substitutions/typography.text +0 -18
  1229. data/vendor/extensions/russian_language_pack/README +0 -3
  1230. data/vendor/extensions/russian_language_pack/Rakefile +0 -123
  1231. data/vendor/extensions/russian_language_pack/config/locales/ru.yml +0 -180
  1232. data/vendor/extensions/russian_language_pack/config/locales/ru_available_tags.yml +0 -553
  1233. data/vendor/extensions/russian_language_pack/lib/tasks/i18n_ru_extension_tasks.rake +0 -28
  1234. data/vendor/extensions/russian_language_pack/russian_language_pack_extension.rb +0 -9
  1235. data/vendor/extensions/smarty_pants_filter/README +0 -1
  1236. data/vendor/extensions/smarty_pants_filter/Rakefile +0 -136
  1237. data/vendor/extensions/smarty_pants_filter/lib/smarty_pants_tags.rb +0 -18
  1238. data/vendor/extensions/smarty_pants_filter/lib/tasks/smarty_pants_filter_extension_tasks.rake +0 -28
  1239. data/vendor/extensions/smarty_pants_filter/smarty_pants_filter_extension.rb +0 -18
  1240. data/vendor/extensions/smarty_pants_filter/spec/spec.opts +0 -6
  1241. data/vendor/extensions/smarty_pants_filter/spec/spec_helper.rb +0 -36
  1242. data/vendor/extensions/smarty_pants_filter/test/test_helper.rb +0 -19
  1243. data/vendor/plugins/haml/CONTRIBUTING +0 -4
  1244. data/vendor/plugins/haml/README.md +0 -357
  1245. data/vendor/plugins/haml/TODO +0 -47
  1246. data/vendor/plugins/haml/VERSION_NAME +0 -1
  1247. data/vendor/plugins/haml/doc-src/FAQ.md +0 -175
  1248. data/vendor/plugins/haml/doc-src/HAML_CHANGELOG.md +0 -556
  1249. data/vendor/plugins/haml/doc-src/HAML_REFERENCE.md +0 -1184
  1250. data/vendor/plugins/haml/doc-src/SASS_CHANGELOG.md +0 -755
  1251. data/vendor/plugins/haml/doc-src/SASS_REFERENCE.md +0 -1150
  1252. data/vendor/plugins/haml/extra/update_watch.rb +0 -13
  1253. data/vendor/plugins/haml/haml.gemspec +0 -60
  1254. data/vendor/plugins/haml/lib/haml/helpers/xss_mods.rb +0 -154
  1255. data/vendor/plugins/haml/lib/haml/railtie.rb +0 -18
  1256. data/vendor/plugins/haml/lib/haml/shared.rb +0 -78
  1257. data/vendor/plugins/haml/lib/sass/environment.rb +0 -79
  1258. data/vendor/plugins/haml/lib/sass/files.rb +0 -155
  1259. data/vendor/plugins/haml/lib/sass/plugin/rack.rb +0 -65
  1260. data/vendor/plugins/haml/lib/sass/repl.rb +0 -58
  1261. data/vendor/plugins/haml/lib/sass/script.rb +0 -62
  1262. data/vendor/plugins/haml/lib/sass/script/bool.rb +0 -17
  1263. data/vendor/plugins/haml/lib/sass/script/color.rb +0 -222
  1264. data/vendor/plugins/haml/lib/sass/script/funcall.rb +0 -50
  1265. data/vendor/plugins/haml/lib/sass/script/functions.rb +0 -257
  1266. data/vendor/plugins/haml/lib/sass/script/lexer.rb +0 -194
  1267. data/vendor/plugins/haml/lib/sass/script/literal.rb +0 -177
  1268. data/vendor/plugins/haml/lib/sass/script/node.rb +0 -14
  1269. data/vendor/plugins/haml/lib/sass/script/number.rb +0 -383
  1270. data/vendor/plugins/haml/lib/sass/script/operation.rb +0 -45
  1271. data/vendor/plugins/haml/lib/sass/script/parser.rb +0 -222
  1272. data/vendor/plugins/haml/lib/sass/script/string.rb +0 -12
  1273. data/vendor/plugins/haml/lib/sass/script/unary_operation.rb +0 -34
  1274. data/vendor/plugins/haml/lib/sass/script/variable.rb +0 -31
  1275. data/vendor/plugins/haml/lib/sass/tree/debug_node.rb +0 -30
  1276. data/vendor/plugins/haml/lib/sass/tree/for_node.rb +0 -48
  1277. data/vendor/plugins/haml/lib/sass/tree/if_node.rb +0 -55
  1278. data/vendor/plugins/haml/lib/sass/tree/import_node.rb +0 -65
  1279. data/vendor/plugins/haml/lib/sass/tree/mixin_def_node.rb +0 -29
  1280. data/vendor/plugins/haml/lib/sass/tree/mixin_node.rb +0 -48
  1281. data/vendor/plugins/haml/lib/sass/tree/prop_node.rb +0 -121
  1282. data/vendor/plugins/haml/lib/sass/tree/variable_node.rb +0 -34
  1283. data/vendor/plugins/haml/lib/sass/tree/while_node.rb +0 -31
  1284. data/vendor/plugins/haml/test/haml/util_test.rb +0 -107
  1285. data/vendor/plugins/haml/test/sass/functions_test.rb +0 -174
  1286. data/vendor/plugins/haml/test/sass/more_results/more1.css +0 -9
  1287. data/vendor/plugins/haml/test/sass/more_results/more1_with_line_comments.css +0 -26
  1288. data/vendor/plugins/haml/test/sass/more_results/more_import.css +0 -29
  1289. data/vendor/plugins/haml/test/sass/more_templates/_more_partial.sass +0 -2
  1290. data/vendor/plugins/haml/test/sass/more_templates/more1.sass +0 -23
  1291. data/vendor/plugins/haml/test/sass/more_templates/more_import.sass +0 -11
  1292. data/vendor/plugins/haml/test/sass/results/line_numbers.css +0 -49
  1293. data/vendor/plugins/haml/test/sass/results/units.css +0 -11
  1294. data/vendor/plugins/haml/test/sass/script_test.rb +0 -267
  1295. data/vendor/plugins/haml/test/sass/templates/line_numbers.sass +0 -13
  1296. data/vendor/plugins/haml/test/sass/templates/subdir/nested_subdir/_nested_partial.sass +0 -2
  1297. data/vendor/plugins/haml/test/sass/templates/units.sass +0 -11
  1298. data/vendor/plugins/haml/yard/default/fulldoc/html/css/common.sass +0 -22
  1299. data/vendor/plugins/haml/yard/default/layout/html/footer.erb +0 -12
  1300. data/vendor/plugins/haml/yard/inherited_hash.rb +0 -41
  1301. data/vendor/radius/LICENSE +0 -19
  1302. data/vendor/radius/README.rdoc +0 -102
  1303. data/vendor/radius/VERSION +0 -1
  1304. data/vendor/radius/lib/radius/context.rb +0 -139
  1305. data/vendor/radius/lib/radius/delegating_open_struct.rb +0 -31
  1306. data/vendor/radius/lib/radius/error.rb +0 -43
  1307. data/vendor/radius/lib/radius/parse_tag.rb +0 -24
  1308. data/vendor/radius/lib/radius/parser.rb +0 -65
  1309. data/vendor/radius/lib/radius/parser/scan.rb +0 -678
  1310. data/vendor/radius/lib/radius/parser/scan.rl +0 -124
  1311. data/vendor/radius/lib/radius/tag_binding.rb +0 -71
  1312. data/vendor/radius/lib/radius/tag_definitions.rb +0 -78
  1313. data/vendor/radius/lib/radius/utility.rb +0 -30
  1314. data/vendor/radius/lib/radius/version.rb +0 -8
  1315. data/vendor/radius/radius.gemspec +0 -71
  1316. data/vendor/radius/tasks/jeweler.rake +0 -21
  1317. data/vendor/radius/tasks/rdoc.rake +0 -13
  1318. data/vendor/radius/tasks/scan.rake +0 -27
  1319. data/vendor/radius/tasks/test.rake +0 -7
  1320. data/vendor/radius/test/context_test.rb +0 -61
  1321. data/vendor/radius/test/quickstart_test.rb +0 -153
  1322. data/vendor/radius/test/test_helper.rb +0 -29
  1323. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/Makefile +0 -18
  1324. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/attachments.rb +0 -65
  1325. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/parser.rb +0 -1060
  1326. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/parser.y +0 -416
  1327. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/COPYING +0 -504
  1328. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/README +0 -12
  1329. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet.rb +0 -67
  1330. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/big5freq.rb +0 -927
  1331. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/big5prober.rb +0 -42
  1332. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/chardistribution.rb +0 -238
  1333. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/charsetgroupprober.rb +0 -112
  1334. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/charsetprober.rb +0 -75
  1335. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/codingstatemachine.rb +0 -64
  1336. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/constants.rb +0 -42
  1337. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/escprober.rb +0 -89
  1338. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/escsm.rb +0 -244
  1339. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/eucjpprober.rb +0 -88
  1340. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/euckrfreq.rb +0 -596
  1341. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/euckrprober.rb +0 -42
  1342. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/euctwfreq.rb +0 -430
  1343. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/euctwprober.rb +0 -42
  1344. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/gb2312freq.rb +0 -474
  1345. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/gb2312prober.rb +0 -42
  1346. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/hebrewprober.rb +0 -289
  1347. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/jisfreq.rb +0 -570
  1348. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/jpcntx.rb +0 -229
  1349. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/langbulgarianmodel.rb +0 -229
  1350. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/langcyrillicmodel.rb +0 -330
  1351. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/langgreekmodel.rb +0 -227
  1352. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/langhebrewmodel.rb +0 -202
  1353. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/langhungarianmodel.rb +0 -226
  1354. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/langthaimodel.rb +0 -201
  1355. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/latin1prober.rb +0 -147
  1356. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/mbcharsetprober.rb +0 -89
  1357. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/mbcsgroupprober.rb +0 -45
  1358. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/mbcssm.rb +0 -542
  1359. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/sbcharsetprober.rb +0 -124
  1360. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/sbcsgroupprober.rb +0 -56
  1361. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/sjisprober.rb +0 -88
  1362. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/universaldetector.rb +0 -168
  1363. data/vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.2.7/tmail/vendor/rchardet-1.3/lib/rchardet/utf8prober.rb +0 -87
  1364. data/vendor/rails/actionpack/lib/action_controller/rack_lint_patch.rb +0 -36
  1365. data/vendor/rails/actionpack/lib/action_controller/string_coercion.rb +0 -29
  1366. data/vendor/rails/actionpack/lib/action_view/helpers/raw_output_helper.rb +0 -9
  1367. data/vendor/rails/actionpack/test/controller/dom_assertions_test.rb +0 -53
  1368. data/vendor/rails/actionpack/test/controller/localized_templates_test.rb +0 -24
  1369. data/vendor/rails/actionpack/test/controller/output_escaping_test.rb +0 -19
  1370. data/vendor/rails/actionpack/test/fixtures/layout_tests/abs_path_layout.rhtml +0 -1
  1371. data/vendor/rails/actionpack/test/fixtures/localized/hello_world.de.html +0 -1
  1372. data/vendor/rails/actionpack/test/fixtures/localized/hello_world.en.html +0 -1
  1373. data/vendor/rails/actionpack/test/fixtures/test/_customer_counter_with_as.erb +0 -1
  1374. data/vendor/rails/actionpack/test/fixtures/test/_from_helper.erb +0 -1
  1375. data/vendor/rails/actionpack/test/fixtures/test/_utf8_partial.html.erb +0 -1
  1376. data/vendor/rails/actionpack/test/fixtures/test/_utf8_partial_magic.html.erb +0 -2
  1377. data/vendor/rails/actionpack/test/fixtures/test/array_translation.erb +0 -1
  1378. data/vendor/rails/actionpack/test/fixtures/test/scoped_array_translation.erb +0 -1
  1379. data/vendor/rails/actionpack/test/fixtures/test/translation.erb +0 -1
  1380. data/vendor/rails/actionpack/test/fixtures/test/utf8_magic.html.erb +0 -5
  1381. data/vendor/rails/actionpack/test/fixtures/test/utf8_magic_with_bare_partial.html.erb +0 -5
  1382. data/vendor/rails/actionpack/test/template/raw_output_helper_test.rb +0 -21
  1383. data/vendor/rails/activerecord/examples/performance.sql +0 -85
  1384. data/vendor/rails/activerecord/lib/active_record/connection_adapters/abstract/database_limits.rb +0 -57
  1385. data/vendor/rails/activerecord/test/cases/associations/inverse_associations_test.rb +0 -566
  1386. data/vendor/rails/activerecord/test/cases/encoding_test.rb +0 -6
  1387. data/vendor/rails/activerecord/test/cases/yaml_serialization_test.rb +0 -11
  1388. data/vendor/rails/activerecord/test/fixtures/faces.yml +0 -11
  1389. data/vendor/rails/activerecord/test/fixtures/interests.yml +0 -33
  1390. data/vendor/rails/activerecord/test/fixtures/men.yml +0 -5
  1391. data/vendor/rails/activerecord/test/fixtures/zines.yml +0 -5
  1392. data/vendor/rails/activerecord/test/models/event_author.rb +0 -5
  1393. data/vendor/rails/activerecord/test/models/face.rb +0 -7
  1394. data/vendor/rails/activerecord/test/models/interest.rb +0 -5
  1395. data/vendor/rails/activerecord/test/models/invoice.rb +0 -4
  1396. data/vendor/rails/activerecord/test/models/line_item.rb +0 -3
  1397. data/vendor/rails/activerecord/test/models/man.rb +0 -9
  1398. data/vendor/rails/activerecord/test/models/zine.rb +0 -3
  1399. data/vendor/rails/activesupport/lib/active_support/core_ext/object/blank.rb +0 -76
  1400. data/vendor/rails/activesupport/lib/active_support/core_ext/object/singleton_class.rb +0 -13
  1401. data/vendor/rails/activesupport/lib/active_support/json/backends/yajl.rb +0 -40
  1402. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/backend.rb +0 -19
  1403. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/backend/active_record.rb +0 -66
  1404. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/backend/active_record/missing.rb +0 -67
  1405. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/backend/active_record/store_procs.rb +0 -38
  1406. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/backend/active_record/translation.rb +0 -88
  1407. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/backend/base.rb +0 -266
  1408. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/backend/cache.rb +0 -76
  1409. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/backend/cascade.rb +0 -58
  1410. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/backend/chain.rb +0 -75
  1411. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/backend/cldr.rb +0 -100
  1412. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/backend/fallbacks.rb +0 -69
  1413. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/backend/fast.rb +0 -69
  1414. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/backend/gettext.rb +0 -75
  1415. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/backend/helpers.rb +0 -68
  1416. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/backend/interpolation_compiler.rb +0 -119
  1417. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/backend/links.rb +0 -34
  1418. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/backend/metadata.rb +0 -73
  1419. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/backend/pluralization.rb +0 -57
  1420. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/backend/simple.rb +0 -22
  1421. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/core_ext/hash/except.rb +0 -8
  1422. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/core_ext/hash/slice.rb +0 -8
  1423. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/core_ext/object/meta_class.rb +0 -5
  1424. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/core_ext/string/interpolate.rb +0 -99
  1425. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/gettext.rb +0 -25
  1426. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/gettext/po_parser.rb +0 -329
  1427. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/helpers.rb +0 -5
  1428. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/helpers/gettext.rb +0 -65
  1429. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/locale.rb +0 -6
  1430. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/locale/fallbacks.rb +0 -98
  1431. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/locale/tag.rb +0 -28
  1432. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/locale/tag/parents.rb +0 -24
  1433. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/locale/tag/rfc4646.rb +0 -76
  1434. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/locale/tag/simple.rb +0 -41
  1435. data/vendor/rails/activesupport/lib/active_support/vendor/i18n-0.3.7/i18n/version.rb +0 -3
  1436. data/vendor/rails/activesupport/lib/active_support/xml_mini/libxmlsax.rb +0 -74
  1437. data/vendor/rails/activesupport/lib/active_support/xml_mini/nokogirisax.rb +0 -73
  1438. data/vendor/rails/railties/configs/initializers/cookie_verification_secret.rb +0 -7
@@ -1,9 +0,0 @@
1
- class JapaneseLanguagePackExtension < Radiant::Extension
2
- version "1.0"
3
- description "Provides Japanese translation for the Radiant admin interface"
4
- url "http://yourwebsite.com/ja"
5
-
6
- def activate
7
-
8
- end
9
- end
@@ -1,28 +0,0 @@
1
- namespace :radiant do
2
- namespace :extensions do
3
- namespace :ja do
4
-
5
- desc "Runs the migration of the I18n Ja extension"
6
- task :migrate => :environment do
7
- require 'radiant/extension_migrator'
8
- if ENV["VERSION"]
9
- I18nJaExtension.migrator.migrate(ENV["VERSION"].to_i)
10
- else
11
- I18nJaExtension.migrator.migrate
12
- end
13
- end
14
-
15
- desc "Copies public assets of the I18n Ja to the instance public/ directory."
16
- task :update => :environment do
17
- is_svn_or_dir = proc {|path| path =~ /\.svn/ || File.directory?(path) }
18
- puts "Copying assets from I18nJaExtension"
19
- Dir[I18nJaExtension.root + "/public/**/*"].reject(&is_svn_or_dir).each do |file|
20
- path = file.sub(I18nJaExtension.root, '')
21
- directory = File.dirname(path)
22
- mkdir_p RAILS_ROOT + directory, :verbose => false
23
- cp file, RAILS_ROOT + path, :verbose => false
24
- end
25
- end
26
- end
27
- end
28
- end
@@ -1 +0,0 @@
1
- The author of kramdown is Thomas Leitner <t_leitner@gmx.at>.
@@ -1,4 +0,0 @@
1
- Count Name
2
- ======= ====
3
- 297 Thomas Leitner <t_leitner@gmx.at>
4
- 3 Ben Armston <ben.armston@googlemail.com>
@@ -1,24 +0,0 @@
1
- kramdown - fast, pure-Ruby Markdown-superset converter
2
- Copyright (C) 2009 Thomas Leitner <t_leitner@gmx.at>
3
-
4
- kramdown is free software: you can redistribute it and/or modify
5
- it under the terms of the GNU General Public License as published by
6
- the Free Software Foundation, either version 3 of the License, or
7
- (at your option) any later version.
8
-
9
- This program is distributed in the hope that it will be useful,
10
- but WITHOUT ANY WARRANTY; without even the implied warranty of
11
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
- GNU General Public License for more details.
13
-
14
- You should have received a copy of the GNU General Public License
15
- along with this program. If not, see <http://www.gnu.org/licenses/>.
16
-
17
-
18
- Some test cases and the benchmark files are based on test cases from
19
- the MDTest test suite:
20
-
21
- MDTest
22
- Copyright (c) 2007 Michel Fortin
23
- <http://www.michelf.com/>
24
-
@@ -1,3956 +0,0 @@
1
- commit 824d854f2aa176664528d51e7ec98d91d7944b39
2
- Author: Thomas Leitner <t_leitner@gmx.at>
3
- Date: Tue Jun 8 15:45:02 2010 +0200
4
-
5
- Fixed type in Rakefile
6
-
7
- Rakefile
8
-
9
- commit 54d5a8ebf100d4a810d48445f76f409fe6755831
10
- Author: Thomas Leitner <t_leitner@gmx.at>
11
- Date: Tue Jun 8 15:42:09 2010 +0200
12
-
13
- Fixed Kernel.warn output in document.latex template
14
-
15
- data/kramdown/document.latex
16
-
17
- commit b69e946ad3bbd4e4b010968cb6a42eb49d06f337
18
- Author: Thomas Leitner <t_leitner@gmx.at>
19
- Date: Tue Jun 8 15:37:08 2010 +0200
20
-
21
- Fixed LaTeX conversion test to always have an assert statement
22
-
23
- test/test_files.rb
24
-
25
- commit d2f817b24c50c7f9cb9c941a9b8c154cb291e4fa
26
- Author: Thomas Leitner <t_leitner@gmx.at>
27
- Date: Tue Jun 8 15:30:16 2010 +0200
28
-
29
- Updated documentation
30
-
31
- doc/documentation.page
32
- doc/index.page
33
- doc/links.markdown
34
- doc/news/release_0_8_0.page
35
- doc/parser/html.page
36
- doc/parser/kramdown.page
37
- doc/tests.page
38
-
39
- commit ec1c9ad74873e06f786837708ef5361d7714328f
40
- Author: Thomas Leitner <t_leitner@gmx.at>
41
- Date: Tue Jun 8 11:55:43 2010 +0200
42
-
43
- Deprecated filter_html option
44
-
45
- There exists better facilities for performinig this kind of task.
46
-
47
- doc/news/release_0_8_0.page
48
- lib/kramdown/converter/html.rb
49
- lib/kramdown/options.rb
50
-
51
- commit d7dda4bd0aec08414feb24ce9983f0ccff34dde1
52
- Author: Thomas Leitner <t_leitner@gmx.at>
53
- Date: Tue Jun 8 11:13:27 2010 +0200
54
-
55
- Converting <i> and <b> html elements in LaTeX converter
56
-
57
- lib/kramdown/converter/latex.rb
58
-
59
- commit 1d48a55b26040a777d2ac29cf906e17ac92ce0ed
60
- Author: Thomas Leitner <t_leitner@gmx.at>
61
- Date: Tue Jun 8 10:35:47 2010 +0200
62
-
63
- Fixed problem with image links in LaTeX converter
64
-
65
- Not outputting image links with empty source URL anymore
66
-
67
- lib/kramdown/converter/latex.rb
68
-
69
- commit 6bbff48b73abdbfa27d08c0b269850edaaccedcf
70
- Author: Thomas Leitner <t_leitner@gmx.at>
71
- Date: Mon Jun 7 19:07:24 2010 +0200
72
-
73
- Merged element :text and :raw_text element types
74
-
75
- The element type :raw_text may not appear in the element tree after
76
- parsing is done, only :text elements are supported by the converters.
77
- The kramdown parser still uses :raw_text elements internally - these
78
- elements are the ones that get parsed with the span level parser.
79
-
80
- lib/kramdown/converter/html.rb
81
- lib/kramdown/converter/latex.rb
82
- lib/kramdown/parser/html.rb
83
- lib/kramdown/parser/kramdown.rb
84
- lib/kramdown/parser/kramdown/html.rb
85
- lib/kramdown/parser/kramdown/list.rb
86
- lib/kramdown/parser/kramdown/table.rb
87
-
88
- commit cb51bf3f60e492f7c6467eaced4520e35bb33489
89
- Author: Thomas Leitner <t_leitner@gmx.at>
90
- Date: Mon Jun 7 15:20:59 2010 +0200
91
-
92
- Updated README with information regarding kramdown development
93
-
94
- README
95
-
96
- commit 99ba359b97924b0a2527b8a255fb68d9ae049218
97
- Author: Thomas Leitner <t_leitner@gmx.at>
98
- Date: Mon Jun 7 08:28:20 2010 +0200
99
-
100
- Added latex compilation tests
101
-
102
- Each .text testcase is now additionally converted to LaTeX with the
103
- default template and then processed by the latex executable to find
104
- compilation errors.
105
-
106
- test/test_files.rb
107
-
108
- commit 7ec5a1ce19a6de7732e2666836b81c8d452a725a
109
- Author: Thomas Leitner <t_leitner@gmx.at>
110
- Date: Mon Jun 7 08:27:03 2010 +0200
111
-
112
- Fixed copy-paste error in LaTeX converter
113
-
114
- lib/kramdown/converter/latex.rb
115
-
116
- commit 22fcb3a34f831c1366022ade40e805a59dd905e3
117
- Author: Thomas Leitner <t_leitner@gmx.at>
118
- Date: Mon Jun 7 08:26:30 2010 +0200
119
-
120
- Changed binding when evaluating template after conversion
121
-
122
- Now creating a new object that is used as binding object. This avoids
123
- cluttering the global namespace. Now one needs to use instance variables
124
- instead of locals, i.e. @doc/@body instead of doc/body.
125
-
126
- data/kramdown/document.html
127
- data/kramdown/document.latex
128
- lib/kramdown/converter/base.rb
129
-
130
- commit 15a692c6db428c1c48ced1eb460ce0fc3c8428f2
131
- Author: Thomas Leitner <t_leitner@gmx.at>
132
- Date: Fri Jun 4 20:32:40 2010 +0200
133
-
134
- Fixed HTML converter problem
135
-
136
- lib/kramdown/converter/html.rb
137
-
138
- commit b1ccf1616053ceeb00ede70ff81014ac1e6c054b
139
- Author: Thomas Leitner <t_leitner@gmx.at>
140
- Date: Fri Jun 4 20:29:29 2010 +0200
141
-
142
- Fixed bug in html-to-native processing of xml comments/PIs and html doctypes
143
-
144
- lib/kramdown/parser/html.rb
145
-
146
- commit eb5e1cf55486470ebbf3ac61148ecf1f52332eba
147
- Author: Thomas Leitner <t_leitner@gmx.at>
148
- Date: Fri Jun 4 20:27:10 2010 +0200
149
-
150
- Added html-to-html conversion tests
151
-
152
- test/test_files.rb
153
-
154
- commit 6b55fd5b2cdd4a6e7a9159f9cb8677bbdafd6306
155
- Author: Thomas Leitner <t_leitner@gmx.at>
156
- Date: Fri Jun 4 19:34:28 2010 +0200
157
-
158
- Fixed parsing of HTML script tags
159
-
160
- lib/kramdown/parser/html.rb
161
- test/testcases/block/09_html/parse_as_raw.html
162
- test/testcases/block/09_html/parse_as_raw.text
163
-
164
- commit 6e91ba34c2aae401b08efa2e5d63a85fb1bf3451
165
- Author: Thomas Leitner <t_leitner@gmx.at>
166
- Date: Fri Jun 4 18:10:31 2010 +0200
167
-
168
- Fixed a warning on Ruby 1.8.7
169
-
170
- lib/kramdown/parser/html.rb
171
-
172
- commit 13f3bf1986f9b125dc2b821c351a4324f72eb976
173
- Author: Thomas Leitner <t_leitner@gmx.at>
174
- Date: Fri Jun 4 11:18:44 2010 +0200
175
-
176
- Fixed HTML-to-native conversion of not-simple tables
177
-
178
- lib/kramdown/parser/html.rb
179
- test/testcases/block/09_html/html_to_native/table.html
180
- test/testcases/block/09_html/html_to_native/table.text
181
- test/testcases/block/09_html/html_to_native/table_normal.html
182
- test/testcases/block/09_html/html_to_native/table_normal.text
183
- test/testcases/block/09_html/html_to_native/table_simple.html
184
- test/testcases/block/09_html/html_to_native/table_simple.text
185
-
186
- commit 4e314534abcaf11816c10a03b607ce0d2c1300f3
187
- Author: Thomas Leitner <t_leitner@gmx.at>
188
- Date: Fri Jun 4 10:43:44 2010 +0200
189
-
190
- Added conversion of xml comments to LaTeX comments
191
-
192
- lib/kramdown/converter/latex.rb
193
-
194
- commit 3a9041f03862be83c78aa6ac8eacbb096760df7e
195
- Author: Thomas Leitner <t_leitner@gmx.at>
196
- Date: Fri Jun 4 10:28:16 2010 +0200
197
-
198
- Many HTML parsing related changes
199
-
200
- * Created standalone HTML parser, using the implementation of the
201
- kramdown HTML parser. The kramdown HTML parser is now based on the
202
- standalone version
203
- * Added support for parsing an HTML doctype and for converting it
204
- * HTML-to-native support is now encapsulated in own class and enhanced
205
- to work better/across more HTML tags
206
-
207
- lib/kramdown/converter/html.rb
208
- lib/kramdown/converter/latex.rb
209
- lib/kramdown/parser.rb
210
- lib/kramdown/parser/html.rb
211
- lib/kramdown/parser/kramdown/html.rb
212
- lib/kramdown/parser/kramdown/html_entity.rb
213
- test/testcases/block/09_html/html_to_native/comment.html
214
- test/testcases/block/09_html/html_to_native/paragraph.html
215
- test/testcases/block/09_html/html_to_native/paragraph.text
216
-
217
- commit 5ce9de5b0d3ab0438375895463d6341374185c81
218
- Author: Thomas Leitner <t_leitner@gmx.at>
219
- Date: Fri Jun 4 10:20:43 2010 +0200
220
-
221
- Fixed standalone test runner to load directory options file
222
-
223
- test/run_tests.rb
224
-
225
- commit e094110f79c52f5950e855bb85b3624b8df315fd
226
- Author: Thomas Leitner <t_leitner@gmx.at>
227
- Date: Fri Jun 4 10:20:05 2010 +0200
228
-
229
- Added base class for parsers
230
-
231
- lib/kramdown/parser.rb
232
- lib/kramdown/parser/base.rb
233
- lib/kramdown/parser/kramdown.rb
234
- lib/kramdown/parser/kramdown/link.rb
235
-
236
- commit e1be06b37b680248bd276407ae4c2dcbad702b1b
237
- Author: Thomas Leitner <t_leitner@gmx.at>
238
- Date: Fri Jun 4 10:17:52 2010 +0200
239
-
240
- Fixed spelling error
241
-
242
- lib/kramdown/converter/base.rb
243
-
244
- commit 47eef4efb25f8f0f046d3b39aadd5f661b9797ee
245
- Author: Thomas Leitner <t_leitner@gmx.at>
246
- Date: Fri Jun 4 09:27:45 2010 +0200
247
-
248
- Changed content model of th from block to span (in conformance to HTML5 spec)
249
-
250
- doc/syntax.page
251
- test/testcases/block/09_html/content_model/tables.html
252
-
253
- commit 482de59507d569dc7668e9334a3a82ab44f439e0
254
- Author: Thomas Leitner <t_leitner@gmx.at>
255
- Date: Tue Jun 1 20:43:47 2010 +0200
256
-
257
- Completed list of HTML elements that have no body
258
-
259
- lib/kramdown/parser/kramdown/html.rb
260
-
261
- commit 2330fe56b311ce0fa607897461d95cf12d6ca54e
262
- Author: Thomas Leitner <t_leitner@gmx.at>
263
- Date: Mon May 31 16:43:27 2010 +0200
264
-
265
- Better whitespace handling when using html_to_native
266
-
267
- * :raw_text elements containing only whitespace and appearing between
268
- block elements are converted to :blank elements
269
- * one or more whitespace characters are compressed to a single space
270
- * leading/trailing whitespace in block HTML elements is removed
271
-
272
- lib/kramdown/parser/kramdown/html.rb
273
- test/testcases/block/09_html/html_to_native/list_ul.html
274
- test/testcases/block/09_html/html_to_native/paragraph.html
275
- test/testcases/block/09_html/html_to_native/paragraph.text
276
- test/testcases/block/09_html/html_to_native/table.html
277
-
278
- commit 9d65fb05c9dca26c131047bf502a95fd4bcb9a3c
279
- Author: Thomas Leitner <t_leitner@gmx.at>
280
- Date: Mon May 31 16:20:22 2010 +0200
281
-
282
- Fixed problem with test runner
283
-
284
- Test assertion files with a file extension that refer to an unknown converter are ignored
285
-
286
- test/test_files.rb
287
-
288
- commit 7b0a882e99be1dc986a2c7e15e01b4ddf706726f
289
- Author: Thomas Leitner <t_leitner@gmx.at>
290
- Date: Mon May 31 07:41:54 2010 +0200
291
-
292
- Fixed problems with xml comment/pi parsing
293
-
294
- * Parsing is now done even if inside a raw HTML tag
295
- * HTML converter was modified to handle the above case
296
-
297
- lib/kramdown/converter/html.rb
298
- lib/kramdown/parser/kramdown/html.rb
299
- test/testcases/block/09_html/comment.html
300
- test/testcases/block/09_html/comment.text
301
- test/testcases/block/09_html/html_to_native/comment.html
302
- test/testcases/block/09_html/html_to_native/comment.text
303
-
304
- commit 109ef4e24d9d87c71f02f33dbe3054ff34bb0b1c
305
- Author: Thomas Leitner <t_leitner@gmx.at>
306
- Date: Sat May 29 17:24:27 2010 +0200
307
-
308
- Converted lambdas used for html-to-native functionality to real methods and fixed pre/code conversion
309
-
310
- lib/kramdown/parser/kramdown/html.rb
311
- test/testcases/block/09_html/html_to_native/code.html
312
- test/testcases/block/09_html/html_to_native/code.text
313
-
314
- commit 858ea7053ac81993a787688e444a71655dd9b989
315
- Author: Thomas Leitner <t_leitner@gmx.at>
316
- Date: Fri May 28 15:37:24 2010 +0200
317
-
318
- Using the fancyvrb package to support code blocks in footnotes when using the LaTeX converter
319
-
320
- data/kramdown/document.latex
321
- doc/converter/latex.page
322
- lib/kramdown/converter/latex.rb
323
-
324
- commit 9b4f8fd4eac03885bbdfbe1008321e5c33a7045a
325
- Author: Thomas Leitner <t_leitner@gmx.at>
326
- Date: Thu May 27 21:26:39 2010 +0200
327
-
328
- Added rake task for generating CONTRIBUTERS file from git history
329
-
330
- Rakefile
331
-
332
- commit 939c1a8790d2cb8b5043c667e4f9f78d9ada07d1
333
- Author: Ben Armston <ben.armston@googlemail.com>
334
- Date: Tue May 25 22:25:09 2010 +0100
335
-
336
- Fix generation of latex footnotes
337
-
338
- - Passing `opts` removed an `ArgumentError: wrong number of arguments (1
339
- for 2)`.
340
- - Adding `[:content]` removed a `NoMethodError: undefined method
341
- `children' for #<Hash:...>`
342
-
343
- lib/kramdown/converter/latex.rb
344
- test/testcases/span/04_footnote/definitions.latex
345
- test/testcases/span/04_footnote/footnote_nr.latex
346
- test/testcases/span/04_footnote/markers.latex
347
-
348
- commit 6ccd690dbf80fc4644c0d060d05008afc82423f7
349
- Author: Thomas Leitner <t_leitner@gmx.at>
350
- Date: Thu May 27 21:00:11 2010 +0200
351
-
352
- Updated test runner to be able to run tests on any conversion format
353
-
354
- test/test_files.rb
355
-
356
- commit 5a1eb15335d1d6179a7f7041786f52837686e588
357
- Author: Ben Armston <ben.armston@googlemail.com>
358
- Date: Tue May 25 22:20:53 2010 +0100
359
-
360
- Run latex tests if they exist
361
-
362
- test/test_files.rb
363
-
364
- commit 720c2b0aa6a47d9ee12689909aa6b22cf5a32538
365
- Author: Thomas Leitner <t_leitner@gmx.at>
366
- Date: Thu May 27 20:41:22 2010 +0200
367
-
368
- Updated the Rakefile to prohibit releases if not all development deps are installed
369
-
370
- Rakefile
371
-
372
- commit a0ddab1e1be5e6fc05112e318e48f328add40d5c
373
- Author: Ben Armston <ben.armston@googlemail.com>
374
- Date: Tue May 25 22:10:39 2010 +0100
375
-
376
- Only define rdoc task if rdoc is installed
377
-
378
- Rakefile
379
-
380
- commit a156853b721be10a85f6de661bf05c410613a853
381
- Author: Thomas Leitner <t_leitner@gmx.at>
382
- Date: Thu May 27 15:25:46 2010 +0200
383
-
384
- Better html-to-native processing for li and dd tags
385
-
386
- doc/parser/kramdown.page
387
- lib/kramdown/parser/kramdown/html.rb
388
- test/testcases/block/09_html/html_to_native/list_ol.html
389
- test/testcases/block/09_html/html_to_native/list_ul.html
390
-
391
- commit 2b8c1b4e6001bd9bacc2f24941e832eeec846c49
392
- Author: Thomas Leitner <t_leitner@gmx.at>
393
- Date: Thu May 27 15:23:48 2010 +0200
394
-
395
- Added gitignore file
396
-
397
- .gitignore
398
-
399
- commit 903f22ee1d367c5771325ea6ef77d975398d1f76
400
- Author: Thomas Leitner <t_leitner@gmx.at>
401
- Date: Thu May 27 07:46:28 2010 +0200
402
-
403
- Modified list handling to use :category key instead of special :first_is_block key
404
-
405
- lib/kramdown/converter/html.rb
406
- lib/kramdown/parser/kramdown/list.rb
407
-
408
- commit 6e9c777e15bd55494281b30a81eb472de75fcd4b
409
- Author: Thomas Leitner <t_leitner@gmx.at>
410
- Date: Thu May 27 07:43:08 2010 +0200
411
-
412
- Formalized how to set the category of an element
413
-
414
- The category of element (:block or :span) can now be set via the special
415
- options key :category.
416
-
417
- lib/kramdown/converter/html.rb
418
- lib/kramdown/converter/latex.rb
419
- lib/kramdown/document.rb
420
- lib/kramdown/parser/kramdown.rb
421
- lib/kramdown/parser/kramdown/extension.rb
422
- lib/kramdown/parser/kramdown/html.rb
423
- lib/kramdown/parser/kramdown/math.rb
424
-
425
- commit ef6c7683312966b16e7c9b1921e73fa3424797bd
426
- Author: Thomas Leitner <t_leitner@gmx.at>
427
- Date: Wed May 26 16:44:07 2010 +0200
428
-
429
- Better html-to-native processing for ul, ol and dl tags
430
-
431
- doc/parser/kramdown.page
432
- lib/kramdown/parser/kramdown/html.rb
433
- test/testcases/block/09_html/html_to_native/list_dl.html
434
- test/testcases/block/09_html/html_to_native/list_dl.text
435
- test/testcases/block/09_html/html_to_native/list_ol.html
436
- test/testcases/block/09_html/html_to_native/list_ol.text
437
- test/testcases/block/09_html/html_to_native/list_ul.html
438
- test/testcases/block/09_html/html_to_native/list_ul.text
439
-
440
- commit 16c3cd2fd2028fc14bcd3cdba6cf25d84a359941
441
- Author: Thomas Leitner <t_leitner@gmx.at>
442
- Date: Wed May 26 16:42:31 2010 +0200
443
-
444
- Fixed problem with accumulating raw text in HTML parser
445
-
446
- Needed to add :codeblock and :codespan elements to the list of elements
447
- from which the raw text may be extracted because they may have been
448
- processed already.
449
-
450
- lib/kramdown/parser/kramdown/html.rb
451
- test/testcases/block/09_html/html_to_native/code.html
452
- test/testcases/block/09_html/html_to_native/code.text
453
-
454
- commit dfa48c97a2b7964fedc400299c1d7b18c16939a3
455
- Author: Thomas Leitner <t_leitner@gmx.at>
456
- Date: Sun May 23 06:15:30 2010 +0200
457
-
458
- Added the ability to convert HTML tags to native elements
459
-
460
- This is directly implemented in the HTML parser and controlled with the
461
- new html_to_native option.
462
-
463
- doc/news/release_0_8_0.page
464
- doc/parser/kramdown.page
465
- lib/kramdown/converter/html.rb
466
- lib/kramdown/converter/latex.rb
467
- lib/kramdown/options.rb
468
- lib/kramdown/parser/kramdown/html.rb
469
- test/testcases/block/09_html/html_to_native/code.html
470
- test/testcases/block/09_html/html_to_native/code.text
471
- test/testcases/block/09_html/html_to_native/emphasis.html
472
- test/testcases/block/09_html/html_to_native/emphasis.text
473
- test/testcases/block/09_html/html_to_native/entity.html
474
- test/testcases/block/09_html/html_to_native/entity.text
475
- test/testcases/block/09_html/html_to_native/header.html
476
- test/testcases/block/09_html/html_to_native/header.options
477
- test/testcases/block/09_html/html_to_native/header.text
478
- test/testcases/block/09_html/html_to_native/options
479
- test/testcases/block/09_html/html_to_native/paragraph.html
480
- test/testcases/block/09_html/html_to_native/paragraph.text
481
- test/testcases/block/09_html/html_to_native/table.html
482
- test/testcases/block/09_html/html_to_native/table.text
483
- test/testcases/block/09_html/html_to_native/typography.html
484
- test/testcases/block/09_html/html_to_native/typography.text
485
-
486
- commit 14233a850d51edb543abd85157a2016bf79dacfe
487
- Author: Thomas Leitner <t_leitner@gmx.at>
488
- Date: Sun May 23 06:16:12 2010 +0200
489
-
490
- Test file now supports loading a common directory options file
491
-
492
- test/test_files.rb
493
-
494
- commit 0a7ebd0623e21eddd1a4a83bcc845dd7107c50ec
495
- Author: Thomas Leitner <t_leitner@gmx.at>
496
- Date: Sat May 22 08:43:32 2010 +0200
497
-
498
- HTML tags inside raw HTML span tags are now parsed as raw HTML tags
499
-
500
- doc/news/release_0_8_0.page
501
- lib/kramdown/parser/kramdown/html.rb
502
-
503
- commit 27bef199e798d26b29d42864bbbbd278f241a168
504
- Author: Thomas Leitner <t_leitner@gmx.at>
505
- Date: Sat May 22 08:41:35 2010 +0200
506
-
507
- HTML code and pre tags are now parsed as raw HTML tags
508
-
509
- doc/news/release_0_8_0.page
510
- lib/kramdown/parser/kramdown/html.rb
511
-
512
- commit 595a29f4fa8a0e943c15f0029267b02ef49a4054
513
- Author: Thomas Leitner <t_leitner@gmx.at>
514
- Date: Sat May 22 08:32:47 2010 +0200
515
-
516
- Fixed problem with HTML span parsing
517
-
518
- Some text was not added to the correct element when the end tag was not
519
- found.
520
-
521
- doc/news/release_0_8_0.page
522
- lib/kramdown/parser/kramdown/html.rb
523
- test/testcases/span/05_html/invalid.html
524
- test/testcases/span/05_html/invalid.text
525
-
526
- commit 936564a194e81469fb0d95607b4ecbe1c0dc9cd7
527
- Author: Thomas Leitner <t_leitner@gmx.at>
528
- Date: Sat May 22 08:22:21 2010 +0200
529
-
530
- Renamed element type :html_text to :raw_text
531
-
532
- This type of text element is basically the same as the :text element
533
- but it is not parsed with the span level parser.
534
-
535
- lib/kramdown/converter/html.rb
536
- lib/kramdown/converter/latex.rb
537
- lib/kramdown/parser/kramdown/html.rb
538
-
539
- commit c4b87346c193065282a7c3aec4d5f12baf0f18ef
540
- Author: Thomas Leitner <t_leitner@gmx.at>
541
- Date: Sat May 22 07:37:35 2010 +0200
542
-
543
- Two fixes in typographic sym parser
544
-
545
- * Entities were added as string and not as entity elements which is now
546
- corrected.
547
- * Renamed :ellipsis to :hellip
548
-
549
- doc/news/release_0_8_0.page
550
- lib/kramdown/converter/html.rb
551
- lib/kramdown/converter/latex.rb
552
- lib/kramdown/parser/kramdown/typographic_symbol.rb
553
-
554
- commit f9041fc4b7e5284d6a30b389519b9ebf562d6431
555
- Author: Thomas Leitner <t_leitner@gmx.at>
556
- Date: Fri May 21 18:49:53 2010 +0200
557
-
558
- Table header cells are now represented by their own element type
559
-
560
- doc/news/release_0_8_0.page
561
- lib/kramdown/converter/html.rb
562
- lib/kramdown/converter/latex.rb
563
- lib/kramdown/parser/kramdown/table.rb
564
-
565
- commit bc060c1db0badbcf6c19797c338c945f45f4b94e
566
- Author: Thomas Leitner <t_leitner@gmx.at>
567
- Date: Thu May 20 17:46:16 2010 +0200
568
-
569
- Bumped version number and added release notes file
570
-
571
- doc/news/release_0_8_0.page
572
- lib/kramdown/version.rb
573
-
574
- commit 3975435056216bbe0c19fbbad4b9985e04f78d68
575
- Author: Thomas Leitner <t_leitner@gmx.at>
576
- Date: Thu May 20 17:42:11 2010 +0200
577
-
578
- Removed support for old extension syntax and custom extensions
579
-
580
- lib/kramdown/options.rb
581
- lib/kramdown/parser/kramdown.rb
582
- lib/kramdown/parser/kramdown/extension.rb
583
-
584
- commit 4e2e24907f0e16f2e6f7755fa3cc4f8c3615e62d
585
- Author: Thomas Leitner <t_leitner@gmx.at>
586
- Date: Thu May 20 08:35:03 2010 +0200
587
-
588
- Updated API documentation
589
-
590
- lib/kramdown/converter.rb
591
- lib/kramdown/converter/base.rb
592
- lib/kramdown/document.rb
593
- lib/kramdown/options.rb
594
- lib/kramdown/parser.rb
595
-
596
- commit 50d4b0607abfbe26f590096129471ff149da6593
597
- Author: Thomas Leitner <t_leitner@gmx.at>
598
- Date: Thu May 20 08:14:49 2010 +0200
599
-
600
- Small fix for determining the converter class to use when using the doc.to_ shortcut
601
-
602
- lib/kramdown/document.rb
603
-
604
- commit 03e15d86ca11ca327d22b6a8b43e8d77337fd34c
605
- Author: Thomas Leitner <t_leitner@gmx.at>
606
- Date: Thu May 20 07:32:46 2010 +0200
607
-
608
- Attributes assigned to TOC list are now applied to generated TOC list
609
-
610
- doc/converter/html.page
611
- lib/kramdown/converter/html.rb
612
-
613
- commit be2d2abef64a8d10ad0ad13f7fbee3fb485cd115
614
- Author: Thomas Leitner <t_leitner@gmx.at>
615
- Date: Wed May 19 07:50:03 2010 +0200
616
-
617
- Updated copyright notice task and copyright notices
618
-
619
- Rakefile
620
- lib/kramdown.rb
621
- lib/kramdown/compatibility.rb
622
- lib/kramdown/converter.rb
623
- lib/kramdown/converter/base.rb
624
- lib/kramdown/converter/html.rb
625
- lib/kramdown/converter/latex.rb
626
- lib/kramdown/document.rb
627
- lib/kramdown/error.rb
628
- lib/kramdown/options.rb
629
- lib/kramdown/parser.rb
630
- lib/kramdown/parser/kramdown.rb
631
- lib/kramdown/parser/kramdown/attribute_list.rb
632
- lib/kramdown/parser/kramdown/autolink.rb
633
- lib/kramdown/parser/kramdown/blank_line.rb
634
- lib/kramdown/parser/kramdown/blockquote.rb
635
- lib/kramdown/parser/kramdown/codeblock.rb
636
- lib/kramdown/parser/kramdown/codespan.rb
637
- lib/kramdown/parser/kramdown/emphasis.rb
638
- lib/kramdown/parser/kramdown/eob.rb
639
- lib/kramdown/parser/kramdown/escaped_chars.rb
640
- lib/kramdown/parser/kramdown/extension.rb
641
- lib/kramdown/parser/kramdown/footnote.rb
642
- lib/kramdown/parser/kramdown/header.rb
643
- lib/kramdown/parser/kramdown/horizontal_rule.rb
644
- lib/kramdown/parser/kramdown/html.rb
645
- lib/kramdown/parser/kramdown/html_entity.rb
646
- lib/kramdown/parser/kramdown/line_break.rb
647
- lib/kramdown/parser/kramdown/link.rb
648
- lib/kramdown/parser/kramdown/list.rb
649
- lib/kramdown/parser/kramdown/math.rb
650
- lib/kramdown/parser/kramdown/paragraph.rb
651
- lib/kramdown/parser/kramdown/smart_quotes.rb
652
- lib/kramdown/parser/kramdown/table.rb
653
- lib/kramdown/parser/kramdown/typographic_symbol.rb
654
- lib/kramdown/version.rb
655
-
656
- commit 3590129a6ad01161ee8f03a25f4d93d14fd6f4b1
657
- Author: Thomas Leitner <t_leitner@gmx.at>
658
- Date: Wed May 19 07:20:20 2010 +0200
659
-
660
- Updated documentation content and structure
661
-
662
- Rakefile
663
- doc/default.less.css
664
- doc/default.template
665
- doc/documentation.page
666
- doc/index.page
667
- doc/installation.page
668
- doc/parser/kramdown.page
669
- doc/quickref.page
670
- doc/syntax.page
671
-
672
- commit 0e73d548e89a77b0318efa151aa1c6279d7f1c00
673
- Author: Thomas Leitner <t_leitner@gmx.at>
674
- Date: Fri May 7 12:17:58 2010 +0200
675
-
676
- Last changes before release
677
-
678
- doc/index.page
679
- doc/news/release_0_7_0.page
680
-
681
- commit c83af0ac96ea60aeb5d90afdfe31746106e0de9f
682
- Author: Thomas Leitner <t_leitner@gmx.at>
683
- Date: Thu May 6 20:20:20 2010 +0200
684
-
685
- Fixed small problem with :input document option
686
-
687
- lib/kramdown/document.rb
688
-
689
- commit 4c6261dad0dc80235a76866a54ed5a9bf55d6174
690
- Author: Thomas Leitner <t_leitner@gmx.at>
691
- Date: Thu May 6 20:19:30 2010 +0200
692
-
693
- Made kramdown parser class better subclass-able and added example subclass
694
-
695
- lib/kramdown/parser/kramdown.rb
696
-
697
- commit 1cb4d538ff62cfb78c88fdf858283c1902b8cd7d
698
- Author: Thomas Leitner <t_leitner@gmx.at>
699
- Date: Thu May 6 16:53:11 2010 +0200
700
-
701
- Modified block IAL syntax so that placing an IAL before an element is possible
702
-
703
- doc/news/release_0_7_0.page
704
- doc/syntax.page
705
- lib/kramdown/parser/kramdown.rb
706
- lib/kramdown/parser/kramdown/attribute_list.rb
707
- lib/kramdown/parser/kramdown/blank_line.rb
708
- lib/kramdown/parser/kramdown/blockquote.rb
709
- lib/kramdown/parser/kramdown/codeblock.rb
710
- lib/kramdown/parser/kramdown/eob.rb
711
- lib/kramdown/parser/kramdown/header.rb
712
- lib/kramdown/parser/kramdown/horizontal_rule.rb
713
- lib/kramdown/parser/kramdown/list.rb
714
- lib/kramdown/parser/kramdown/math.rb
715
- lib/kramdown/parser/kramdown/paragraph.rb
716
- lib/kramdown/parser/kramdown/table.rb
717
- test/testcases/block/11_ial/simple.html
718
- test/testcases/block/11_ial/simple.text
719
-
720
- commit d63445c83d7ccb545e649763454e0a5a2619295d
721
- Author: Thomas Leitner <t_leitner@gmx.at>
722
- Date: Thu May 6 08:01:21 2010 +0200
723
-
724
- Fixed problem with invalid IDs on news page
725
-
726
- doc/news.page
727
-
728
- commit eb9d114114f0a2333d149e4554805063689dac5a
729
- Author: Thomas Leitner <t_leitner@gmx.at>
730
- Date: Thu May 6 08:00:24 2010 +0200
731
-
732
- Updated HTML ToC generation to either create ordered or unordered lists
733
-
734
- doc/converter/html.page
735
- lib/kramdown/converter/html.rb
736
-
737
- commit 6fe31bd9900390ae389e884edc85f9f4bdd3070e
738
- Author: Thomas Leitner <t_leitner@gmx.at>
739
- Date: Wed May 5 08:27:50 2010 +0200
740
-
741
- Added option for prefixing auto_ids with a string
742
-
743
- doc/news/release_0_7_0.page
744
- lib/kramdown/converter/base.rb
745
- lib/kramdown/options.rb
746
- test/testcases/block/04_header/with_auto_id_prefix.html
747
- test/testcases/block/04_header/with_auto_id_prefix.options
748
- test/testcases/block/04_header/with_auto_id_prefix.text
749
-
750
- commit e39be57de665f72d83c38c05ac243cb13f316516
751
- Author: Thomas Leitner <t_leitner@gmx.at>
752
- Date: Wed May 5 08:08:52 2010 +0200
753
-
754
- Implemented support for applying an IAL to a list item
755
-
756
- doc/news/release_0_7_0.page
757
- doc/syntax.page
758
- lib/kramdown/parser/kramdown/list.rb
759
- test/testcases/block/08_list/item_ial.html
760
- test/testcases/block/08_list/item_ial.text
761
-
762
- commit 598478881b809a6f76121ce5741d1105483e3276
763
- Author: Thomas Leitner <t_leitner@gmx.at>
764
- Date: Wed May 5 08:03:32 2010 +0200
765
-
766
- Fixed unnecessary recursions when replacing abbreviations
767
-
768
- lib/kramdown/parser/kramdown.rb
769
-
770
- commit 1994f6f62e2317d1a302668b7e237e8554eff47e
771
- Author: Thomas Leitner <t_leitner@gmx.at>
772
- Date: Wed May 5 07:56:30 2010 +0200
773
-
774
- Invalid span IALs are now removed from the output
775
-
776
- doc/news/release_0_7_0.page
777
- doc/syntax.page
778
- lib/kramdown/parser/kramdown/attribute_list.rb
779
- test/testcases/span/ial/simple.html
780
- test/testcases/span/ial/simple.text
781
-
782
- commit c5a7ce9ca428258f275a9ad82277e8c430f0fd55
783
- Author: Thomas Leitner <t_leitner@gmx.at>
784
- Date: Wed May 5 07:29:07 2010 +0200
785
-
786
- Fixed problem with invalid error message
787
-
788
- lib/kramdown/document.rb
789
-
790
- commit 7da28a8abd9fa16dd5c8fc165b02d49af57e6cb8
791
- Author: Thomas Leitner <t_leitner@gmx.at>
792
- Date: Tue May 4 20:12:55 2010 +0200
793
-
794
- Added support for automatic generation of ToC
795
-
796
- doc/converter/html.page
797
- doc/converter/latex.page
798
- doc/news/release_0_7_0.page
799
- lib/kramdown/converter/html.rb
800
- lib/kramdown/converter/latex.rb
801
-
802
- commit 9c3272eaf95e11d655b3f49fe4c097e5b245c949
803
- Author: Thomas Leitner <t_leitner@gmx.at>
804
- Date: Mon May 3 16:22:38 2010 +0200
805
-
806
- Updated testing script to use all available rvm ruby versions
807
-
808
- benchmark/testing.sh
809
-
810
- commit 6776bfccbc1dd82a8dd54109d7dc61b5f6eba1b5
811
- Author: Thomas Leitner <t_leitner@gmx.at>
812
- Date: Mon May 3 16:21:58 2010 +0200
813
-
814
- Removed leading colon from option names
815
-
816
- doc/news/release_0_2_0.page
817
- doc/news/release_0_7_0.page
818
-
819
- commit 4c32df245a179a338b4295e1f84e8b7fb0b09c59
820
- Author: Thomas Leitner <t_leitner@gmx.at>
821
- Date: Mon May 3 16:20:41 2010 +0200
822
-
823
- Fixed ambiguity problem of new extension syntax
824
-
825
- The sequence {:comment} could mean an IAL with a reference to the comment ALD
826
- or the beginning of the extension named comment. To resolve this problem,
827
- extensions now have to begin with two colons
828
-
829
- doc/syntax.page
830
- lib/kramdown/parser/kramdown/extension.rb
831
- test/testcases/block/12_extension/comment.text
832
- test/testcases/block/12_extension/ignored.text
833
- test/testcases/block/12_extension/nomarkdown.text
834
- test/testcases/block/12_extension/options.text
835
- test/testcases/block/12_extension/options2.text
836
- test/testcases/block/12_extension/options3.text
837
- test/testcases/span/extension/comment.text
838
- test/testcases/span/extension/ignored.text
839
- test/testcases/span/extension/nomarkdown.text
840
- test/testcases/span/extension/options.text
841
-
842
- commit b48f6ede0237db9bf30cf79a4abd6841a1d70f49
843
- Author: Thomas Leitner <t_leitner@gmx.at>
844
- Date: Thu Apr 22 20:52:15 2010 +0200
845
-
846
- Restructured syntax documentation
847
-
848
- doc/syntax.page
849
-
850
- commit 2c0d469ee9365a19b0a79752532e727310cfbe79
851
- Author: Thomas Leitner <t_leitner@gmx.at>
852
- Date: Thu Apr 22 07:41:26 2010 +0200
853
-
854
- Updated documentation
855
-
856
- * Option names are now always used without the leading colon
857
- * All converter specific options are now described on their respective
858
- documentation page and not on the kramdown syntax page anymore
859
-
860
- Rakefile
861
- doc/converter/html.page
862
- doc/converter/latex.page
863
- doc/links.markdown
864
- doc/news/release_0_4_0.page
865
- doc/parser/kramdown.page
866
- doc/syntax.page
867
-
868
- commit c61f553f181f6bda2bcdb3e5e01a3716513e38db
869
- Author: Thomas Leitner <t_leitner@gmx.at>
870
- Date: Wed Apr 21 19:34:38 2010 +0200
871
-
872
- Re-implemented custom extensions for docu as webgen tags
873
-
874
- Rakefile
875
- doc/quickref.page
876
-
877
- commit 210d61a1ddf5cceb89f5f29b7df4dd57d871cb76
878
- Author: Thomas Leitner <t_leitner@gmx.at>
879
- Date: Wed Apr 21 19:01:13 2010 +0200
880
-
881
- Updated block extension code to use new syntax
882
-
883
- The old code is still available and will be removed in a future
884
- version of kramdown.
885
-
886
- doc/news/release_0_7_0.page
887
- lib/kramdown/parser/kramdown.rb
888
- lib/kramdown/parser/kramdown/extension.rb
889
- test/testcases/block/12_extension/comment.text
890
- test/testcases/block/12_extension/ignored.html
891
- test/testcases/block/12_extension/ignored.text
892
- test/testcases/block/12_extension/nomarkdown.text
893
- test/testcases/block/12_extension/options.text
894
- test/testcases/block/12_extension/options2.text
895
- test/testcases/block/12_extension/options3.text
896
-
897
- commit 2f7b852c80a185f63f8ea77bf56833c345669264
898
- Author: Thomas Leitner <t_leitner@gmx.at>
899
- Date: Wed Apr 21 08:44:00 2010 +0200
900
-
901
- Implemented support for span extension using the new syntax
902
-
903
- doc/news/release_0_7_0.page
904
- doc/quickref.page
905
- doc/syntax.page
906
- lib/kramdown/parser/kramdown.rb
907
- lib/kramdown/parser/kramdown/extension.rb
908
- test/testcases/span/extension/comment.html
909
- test/testcases/span/extension/comment.text
910
- test/testcases/span/extension/ignored.html
911
- test/testcases/span/extension/ignored.text
912
- test/testcases/span/extension/nomarkdown.html
913
- test/testcases/span/extension/nomarkdown.text
914
- test/testcases/span/extension/options.html
915
- test/testcases/span/extension/options.text
916
-
917
- commit 4bc26bba49b53259c5bea118459298aaf0eca663
918
- Author: Thomas Leitner <t_leitner@gmx.at>
919
- Date: Tue Apr 20 17:44:45 2010 +0200
920
-
921
- Added deprecation warning for old extension parser
922
-
923
- doc/news/release_0_7_0.page
924
- lib/kramdown/parser/kramdown/extension.rb
925
-
926
- commit 6ffc5f341f26637391c669c9f47b59cffde88adc
927
- Author: Thomas Leitner <t_leitner@gmx.at>
928
- Date: Sun Apr 18 08:33:34 2010 +0200
929
-
930
- Fixed check-in of invalid file
931
-
932
- test/testcases/span/abbreviations/.abbrev.html.swp
933
-
934
- commit f0d4f182db8b04d631da27fe2ec1fb8347f6b50b
935
- Author: Thomas Leitner <t_leitner@gmx.at>
936
- Date: Sun Apr 18 08:32:59 2010 +0200
937
-
938
- Moved option :auto_ids from parser to converters
939
-
940
- doc/news/release_0_7_0.page
941
- doc/quickref.page
942
- lib/kramdown/converter/base.rb
943
- lib/kramdown/converter/html.rb
944
- lib/kramdown/converter/latex.rb
945
- lib/kramdown/options.rb
946
- lib/kramdown/parser/kramdown/header.rb
947
- test/testcases/block/11_ial/auto_id_and_ial.html
948
- test/testcases/block/11_ial/auto_id_and_ial.text
949
- test/testcases/block/12_extension/options.html
950
- test/testcases/block/12_extension/options.text
951
-
952
- commit e846fd69fe278880c1bb2559f0378c31e64b1cfe
953
- Author: Thomas Leitner <t_leitner@gmx.at>
954
- Date: Fri Apr 16 11:58:12 2010 +0200
955
-
956
- Added syntax support for abbreviations
957
-
958
- doc/news/release_0_7_0.page
959
- doc/quickref.page
960
- doc/syntax.page
961
- lib/kramdown/converter/html.rb
962
- lib/kramdown/converter/latex.rb
963
- lib/kramdown/parser/kramdown.rb
964
- lib/kramdown/parser/kramdown/abbreviation.rb
965
- test/testcases/span/abbreviations/.abbrev.html.swp
966
- test/testcases/span/abbreviations/abbrev.html
967
- test/testcases/span/abbreviations/abbrev.text
968
- test/testcases/span/abbreviations/abbrev_defs.html
969
- test/testcases/span/abbreviations/abbrev_defs.text
970
-
971
- commit 719f35ee0046328f661581915d10899ba21cd39b
972
- Author: Thomas Leitner <t_leitner@gmx.at>
973
- Date: Fri Apr 9 10:26:04 2010 +0200
974
-
975
- Fixed special case of smart quotes parsing
976
-
977
- doc/news/release_0_7_0.page
978
- lib/kramdown/parser/kramdown/smart_quotes.rb
979
- test/testcases/span/text_substitutions/typography.html
980
- test/testcases/span/text_substitutions/typography.text
981
-
982
- commit 6e9dd27242cb193900c975822d534a20a5754144
983
- Author: Thomas Leitner <t_leitner@gmx.at>
984
- Date: Fri Apr 9 10:25:29 2010 +0200
985
-
986
- Fixed dependency problem in Rakefile
987
-
988
- Rakefile should always load fine even if webgen is not installed.
989
-
990
- Rakefile
991
-
992
- commit d6c22539b6c8513f059f27e5560831dc49a5b578
993
- Author: Thomas Leitner <t_leitner@gmx.at>
994
- Date: Fri Apr 9 10:18:57 2010 +0200
995
-
996
- Fixed problem with invalid error reporting
997
-
998
- lib/kramdown/document.rb
999
-
1000
- commit 6a957f7a635b26677e80efb68538238eaba07fd6
1001
- Author: Thomas Leitner <t_leitner@gmx.at>
1002
- Date: Wed Apr 7 17:39:44 2010 +0200
1003
-
1004
- Removed deprecated CLI option -f
1005
-
1006
- bin/kramdown
1007
- doc/news/release_0_7_0.page
1008
-
1009
- commit 7a20c25cf1490f84a4ddca12431d4df282326d6f
1010
- Author: Thomas Leitner <t_leitner@gmx.at>
1011
- Date: Wed Apr 7 09:44:49 2010 +0200
1012
-
1013
- Bumped version number and added news file
1014
-
1015
- doc/news/release_0_7_0.page
1016
- lib/kramdown/version.rb
1017
-
1018
- commit 01986057b7e458aaf352f7d8fddb587ae2fcc16e
1019
- Author: Thomas Leitner <t_leitner@gmx.at>
1020
- Date: Tue Apr 6 12:13:36 2010 +0200
1021
-
1022
- Added benchmark data for 0.6.0 release and updated graphs
1023
-
1024
- benchmark/historic-jruby-1.4.0.dat
1025
- benchmark/historic-ruby-1.8.6.dat
1026
- benchmark/historic-ruby-1.8.7.dat
1027
- benchmark/historic-ruby-1.9.1p243.dat
1028
- benchmark/historic-ruby-1.9.2dev.dat
1029
- doc/img/graph-jruby-1.4.0.png
1030
- doc/img/graph-ruby-1.8.6.png
1031
- doc/img/graph-ruby-1.8.7.png
1032
- doc/img/graph-ruby-1.9.1p243.png
1033
- doc/img/graph-ruby-1.9.2dev.png
1034
- doc/tests.page
1035
-
1036
- commit 712aed9b546e75458e030606c6f5c60cbee45629
1037
- Author: Thomas Leitner <t_leitner@gmx.at>
1038
- Date: Tue Apr 6 12:12:50 2010 +0200
1039
-
1040
- Now only showing kramdown performance in graphs
1041
-
1042
- benchmark/generate_data.rb
1043
-
1044
- commit d3f3426ce66aeaf2ca317efc59ecc42a78a1d3ad
1045
- Author: Thomas Leitner <t_leitner@gmx.at>
1046
- Date: Tue Apr 6 11:41:19 2010 +0200
1047
-
1048
- Removed old benchmark data
1049
-
1050
- benchmark/historic-jruby-1.4.0.dat
1051
- benchmark/historic-ruby-1.8.6.dat
1052
- benchmark/historic-ruby-1.8.7.dat
1053
- benchmark/historic-ruby-1.9.1p243.dat
1054
- benchmark/historic-ruby-1.9.2dev.dat
1055
-
1056
- commit acde8528e26f40af2192b25dc939b62ff20b27fb
1057
- Author: Thomas Leitner <t_leitner@gmx.at>
1058
- Date: Tue Apr 6 11:27:09 2010 +0200
1059
-
1060
- Small credit fix
1061
-
1062
- doc/default.template
1063
-
1064
- commit 7152ad65def87001ec8b2b61955d38c8ded064cb
1065
- Author: Thomas Leitner <t_leitner@gmx.at>
1066
- Date: Thu Mar 18 20:44:57 2010 +0100
1067
-
1068
- Updated release date and front matter
1069
-
1070
- doc/index.page
1071
- doc/news/release_0_6_0.page
1072
-
1073
- commit 8b99bc030f7c97ddb78f6d8b9b5a161bf5cd4aa2
1074
- Author: Thomas Leitner <t_leitner@gmx.at>
1075
- Date: Thu Mar 18 20:43:37 2010 +0100
1076
-
1077
- Fixed some style issues
1078
-
1079
- doc/default.less.css
1080
- doc/news.page
1081
-
1082
- commit a82a70715298bee2659e387ea4622b4e87285b2f
1083
- Author: Thomas Leitner <t_leitner@gmx.at>
1084
- Date: Thu Mar 18 20:42:46 2010 +0100
1085
-
1086
- Updated release notes
1087
-
1088
- doc/news/release_0_6_0.page
1089
-
1090
- commit dc64a5fa47202f01eb829d5fc5f389f35014ea69
1091
- Author: Thomas Leitner <t_leitner@gmx.at>
1092
- Date: Wed Mar 17 18:27:59 2010 +0100
1093
-
1094
- Updated documentation
1095
-
1096
- Moved HTML/LaTeX specific parts of the syntax document to the converter
1097
- documents.
1098
-
1099
- doc/converter/html.page
1100
- doc/converter/latex.page
1101
- doc/syntax.page
1102
-
1103
- commit 397dafe8664affaa7ca0e3895b683bc32f73d637
1104
- Author: Thomas Leitner <t_leitner@gmx.at>
1105
- Date: Wed Mar 17 18:27:11 2010 +0100
1106
-
1107
- Updated styling of homepage
1108
-
1109
- doc/default.css
1110
- doc/default.less.css
1111
- doc/default.template
1112
- doc/index.page
1113
-
1114
- commit ad6b4a2c203a2728c8564312ede3b3b6aef9cf07
1115
- Author: Thomas Leitner <t_leitner@gmx.at>
1116
- Date: Tue Mar 16 14:18:16 2010 +0100
1117
-
1118
- Small syntax change for the last list item
1119
-
1120
- It is now also wrapped in a paragraph if all other list items are
1121
- also wrapped in a paragraph.
1122
-
1123
- doc/news/release_0_6_0.page
1124
- doc/syntax.page
1125
- lib/kramdown/parser/kramdown/list.rb
1126
- test/testcases/block/08_list/mixed.html
1127
- test/testcases/block/08_list/special_cases.html
1128
- test/testcases/block/08_list/special_cases.text
1129
-
1130
- commit 52441c4c0eea53f8f8af699c799bf4459a2baff2
1131
- Author: Thomas Leitner <t_leitner@gmx.at>
1132
- Date: Sun Mar 14 19:42:22 2010 +0100
1133
-
1134
- Fixed typo in manual page
1135
-
1136
- man/man1/kramdown.1.erb
1137
-
1138
- commit 5b5bf7f100cb99ee2f8f95ad30201220f22607b1
1139
- Author: Thomas Leitner <t_leitner@gmx.at>
1140
- Date: Fri Mar 12 13:10:40 2010 +0100
1141
-
1142
- Fixed problem with missing data files
1143
-
1144
- Rakefile
1145
- doc/news/release_0_6_0.page
1146
-
1147
- commit 7e579fdcb40f68aaf0219e6fe3d2f34192900d87
1148
- Author: Thomas Leitner <t_leitner@gmx.at>
1149
- Date: Tue Mar 2 14:45:49 2010 +0100
1150
-
1151
- Fixed performance problem with emphasis parsing
1152
-
1153
- Backtracking in the emphasis parser lead to poor performance. Nesting
1154
- em or strong emphasis is now forbidden to prevent this.
1155
-
1156
- doc/news/release_0_6_0.page
1157
- doc/syntax.page
1158
- lib/kramdown/parser/kramdown.rb
1159
- lib/kramdown/parser/kramdown/emphasis.rb
1160
- test/testcases/span/02_emphasis/errors.html
1161
- test/testcases/span/02_emphasis/nesting.html
1162
- test/testcases/span/02_emphasis/nesting.text
1163
-
1164
- commit 07b1bd5156d7c6c1f627bdf3d94bad886bc5ac5f
1165
- Author: Thomas Leitner <t_leitner@gmx.at>
1166
- Date: Tue Feb 23 16:30:04 2010 +0100
1167
-
1168
- Added a new CLI option -i and changed -f to -o with deprecation
1169
-
1170
- The option -i can be used to select the input format. The Document class has
1171
- been adjusted to take care of the special key :input.
1172
-
1173
- bin/kramdown
1174
- doc/news/release_0_6_0.page
1175
- lib/kramdown/document.rb
1176
-
1177
- commit 74754c6cc3032aed6583ae77d6b68aac4296eb6e
1178
- Author: Thomas Leitner <t_leitner@gmx.at>
1179
- Date: Sat Feb 20 21:39:33 2010 +0100
1180
-
1181
- Small fix for LaTeX converter
1182
-
1183
- lib/kramdown/converter/latex.rb
1184
-
1185
- commit 51d2021527d6ac6be6c4e9ec19b3522546fb8e7b
1186
- Author: Thomas Leitner <t_leitner@gmx.at>
1187
- Date: Sat Feb 20 21:38:40 2010 +0100
1188
-
1189
- Added documentation on available parsers and converters
1190
-
1191
- Rakefile
1192
- doc/converter/html.page
1193
- doc/converter/latex.page
1194
- doc/index.page
1195
- doc/parser/kramdown.page
1196
-
1197
- commit 39e8750b0a1b36dfc390815c55b591da77f08783
1198
- Author: Thomas Leitner <t_leitner@gmx.at>
1199
- Date: Sat Feb 20 09:33:36 2010 +0100
1200
-
1201
- Added man page for kramdown binary
1202
-
1203
- Rakefile
1204
- doc/news/release_0_6_0.page
1205
- man/man1/kramdown.1.erb
1206
-
1207
- commit a77e52be4d08c46dbb152cc1a9480c13de9b6da6
1208
- Author: Thomas Leitner <t_leitner@gmx.at>
1209
- Date: Fri Feb 19 12:12:39 2010 +0100
1210
-
1211
- Added jsMath package to documentation
1212
-
1213
- doc/default.template
1214
- doc/js/jsMath/COPYING.txt
1215
- doc/js/jsMath/blank.gif
1216
- doc/js/jsMath/easy/load.js
1217
- doc/js/jsMath/extensions/AMSmath.js
1218
- doc/js/jsMath/extensions/AMSsymbols.js
1219
- doc/js/jsMath/extensions/HTML.js
1220
- doc/js/jsMath/extensions/autobold.js
1221
- doc/js/jsMath/extensions/bbox.js
1222
- doc/js/jsMath/extensions/boldsymbol.js
1223
- doc/js/jsMath/extensions/double-click.js
1224
- doc/js/jsMath/extensions/eqn-number.js
1225
- doc/js/jsMath/extensions/fbox.js
1226
- doc/js/jsMath/extensions/font.js
1227
- doc/js/jsMath/extensions/leaders.js
1228
- doc/js/jsMath/extensions/mathchoice.js
1229
- doc/js/jsMath/extensions/mimeTeX.js
1230
- doc/js/jsMath/extensions/moreArrows.js
1231
- doc/js/jsMath/extensions/newcommand.js
1232
- doc/js/jsMath/extensions/underset-overset.js
1233
- doc/js/jsMath/extensions/verb.js
1234
- doc/js/jsMath/jsMath-BaKoMa-fonts.js
1235
- doc/js/jsMath/jsMath-autoload.html
1236
- doc/js/jsMath/jsMath-controls.html
1237
- doc/js/jsMath/jsMath-easy-load.js
1238
- doc/js/jsMath/jsMath-fallback-mac-mozilla.js
1239
- doc/js/jsMath/jsMath-fallback-mac-msie.js
1240
- doc/js/jsMath/jsMath-fallback-mac.js
1241
- doc/js/jsMath/jsMath-fallback-pc.js
1242
- doc/js/jsMath/jsMath-fallback-symbols.js
1243
- doc/js/jsMath/jsMath-fallback-unix.js
1244
- doc/js/jsMath/jsMath-global-controls.html
1245
- doc/js/jsMath/jsMath-global.html
1246
- doc/js/jsMath/jsMath-loader-omniweb4.js
1247
- doc/js/jsMath/jsMath-loader-post.html
1248
- doc/js/jsMath/jsMath-loader.html
1249
- doc/js/jsMath/jsMath-msie-mac.js
1250
- doc/js/jsMath/jsMath-old-browsers.js
1251
- doc/js/jsMath/jsMath.js
1252
- doc/js/jsMath/local/macros.js
1253
- doc/js/jsMath/plugins/CHMmode.js
1254
- doc/js/jsMath/plugins/autoload.js
1255
- doc/js/jsMath/plugins/global.js
1256
- doc/js/jsMath/plugins/mimeTeX.js
1257
- doc/js/jsMath/plugins/noCache.js
1258
- doc/js/jsMath/plugins/noGlobal.js
1259
- doc/js/jsMath/plugins/noImageFonts.js
1260
- doc/js/jsMath/plugins/smallFonts.js
1261
- doc/js/jsMath/plugins/spriteImageFonts.js
1262
- doc/js/jsMath/plugins/tex2math.js
1263
- doc/js/jsMath/test/index-images.html
1264
- doc/js/jsMath/test/index.html
1265
- doc/js/jsMath/test/jsMath40.jpg
1266
- doc/js/jsMath/test/sample.html
1267
-
1268
- commit 3c8e605c3f64bee57067ecc923b273f95f12ae02
1269
- Author: Thomas Leitner <t_leitner@gmx.at>
1270
- Date: Fri Feb 19 12:11:15 2010 +0100
1271
-
1272
- Added syntax support for block/inline LaTeX math
1273
-
1274
- doc/syntax.page
1275
- lib/kramdown/converter/html.rb
1276
- lib/kramdown/converter/latex.rb
1277
- lib/kramdown/parser/kramdown.rb
1278
- lib/kramdown/parser/kramdown/escaped_chars.rb
1279
- lib/kramdown/parser/kramdown/math.rb
1280
- test/testcases/block/15_math/normal.html
1281
- test/testcases/block/15_math/normal.text
1282
- test/testcases/span/math/normal.html
1283
- test/testcases/span/math/normal.text
1284
-
1285
- commit c0da60ad7b3331100056e6c3d01d1e5ec99f0a27
1286
- Author: Thomas Leitner <t_leitner@gmx.at>
1287
- Date: Thu Feb 18 08:08:16 2010 +0100
1288
-
1289
- Fixed bug regarding the inclusion of the same LaTeX packages multiple times
1290
-
1291
- data/kramdown/document.latex
1292
- lib/kramdown/converter/latex.rb
1293
-
1294
- commit 846c0a5c9d42da5bb22a83b3a46cd20c9eafca44
1295
- Author: Thomas Leitner <t_leitner@gmx.at>
1296
- Date: Thu Feb 18 07:17:07 2010 +0100
1297
-
1298
- Added documentation for autolinks
1299
-
1300
- doc/news/release_0_6_0.page
1301
- doc/syntax.page
1302
-
1303
- commit 21c81f6e98b871caac569ef8d76a7024a35141e6
1304
- Author: Thomas Leitner <t_leitner@gmx.at>
1305
- Date: Wed Feb 17 15:45:31 2010 +0100
1306
-
1307
- Bumped version number and added release notes file
1308
-
1309
- doc/news/release_0_6_0.page
1310
- lib/kramdown/version.rb
1311
-
1312
- commit 339345a78869bb483a7eb70007d868e53eb6e9b9
1313
- Author: Thomas Leitner <t_leitner@gmx.at>
1314
- Date: Wed Feb 17 15:43:43 2010 +0100
1315
-
1316
- Fixed problem with email autolinks
1317
-
1318
- The used regexps were too relaxed and matched invalid email adresses.
1319
-
1320
- lib/kramdown/converter/html.rb
1321
- lib/kramdown/parser/kramdown/autolink.rb
1322
- test/testcases/span/autolinks/url_links.html
1323
- test/testcases/span/autolinks/url_links.text
1324
-
1325
- commit abac8ea1b2aebc98a4b46f27d57b366d2f20be86
1326
- Author: Thomas Leitner <t_leitner@gmx.at>
1327
- Date: Mon Feb 15 10:46:56 2010 +0100
1328
-
1329
- Added pushing gems to gemcutter
1330
-
1331
- Rakefile
1332
-
1333
- commit 53449309c569f774d7d3cd68bcc71d48509a4c7e
1334
- Author: Thomas Leitner <t_leitner@gmx.at>
1335
- Date: Mon Feb 15 10:16:18 2010 +0100
1336
-
1337
- Updated benchmark data and graphs
1338
-
1339
- benchmark/historic-jruby-1.4.0.dat
1340
- benchmark/historic-ruby-1.8.6.dat
1341
- benchmark/historic-ruby-1.8.7.dat
1342
- benchmark/historic-ruby-1.9.1p243.dat
1343
- benchmark/historic-ruby-1.9.2dev.dat
1344
- doc/img/graph-jruby-1.4.0.png
1345
- doc/img/graph-ruby-1.8.6.png
1346
- doc/img/graph-ruby-1.8.7.png
1347
- doc/img/graph-ruby-1.9.1p243.png
1348
- doc/img/graph-ruby-1.9.2dev.png
1349
-
1350
- commit 7422bb09e3df6c98b8d57335e50701bcde2c5f77
1351
- Author: Thomas Leitner <t_leitner@gmx.at>
1352
- Date: Mon Feb 15 10:12:22 2010 +0100
1353
-
1354
- Updated release notes
1355
-
1356
- doc/index.page
1357
- doc/news/release_0_5_0.page
1358
-
1359
- commit 127f5205559a2beac7aae87b6b2ebf203830f68e
1360
- Author: Thomas Leitner <t_leitner@gmx.at>
1361
- Date: Mon Feb 15 10:04:08 2010 +0100
1362
-
1363
- Updated kramdown binary so that option descriptions are displayed better
1364
-
1365
- bin/kramdown
1366
-
1367
- commit d5cdc600c1e559deeac6c333fc8719aed748b1b4
1368
- Author: Thomas Leitner <t_leitner@gmx.at>
1369
- Date: Mon Feb 15 10:03:31 2010 +0100
1370
-
1371
- Fixed small problem with parsing of Symbol options
1372
-
1373
- lib/kramdown/options.rb
1374
-
1375
- commit 366dec49d98245e392a8c472ca62438763b4e36c
1376
- Author: Thomas Leitner <t_leitner@gmx.at>
1377
- Date: Mon Feb 15 10:03:15 2010 +0100
1378
-
1379
- Added better option descriptions
1380
-
1381
- lib/kramdown/options.rb
1382
-
1383
- commit 9dab841f7f75be1b126ff55eedd4b3a8d851b2f8
1384
- Author: Thomas Leitner <t_leitner@gmx.at>
1385
- Date: Sat Feb 13 09:18:19 2010 +0100
1386
-
1387
- Added warning output to $stderr for kramdown binary
1388
-
1389
- bin/kramdown
1390
-
1391
- commit 3f576659ec18548c3ca24923565fbbcf285dadbc
1392
- Author: Thomas Leitner <t_leitner@gmx.at>
1393
- Date: Sat Feb 13 09:18:00 2010 +0100
1394
-
1395
- Fixed last remaining issues with LaTeX converter
1396
-
1397
- * Local images are now included in the output
1398
- * Entities are correctly converted to their LaTeX equivalent
1399
- * Warnings have been added where approriate
1400
-
1401
- data/kramdown/document.latex
1402
- lib/kramdown/converter/base.rb
1403
- lib/kramdown/converter/latex.rb
1404
- lib/kramdown/document.rb
1405
-
1406
- commit 5a14647e4f5da8595b61f03c2f80af0fc6d93d5c
1407
- Author: Thomas Leitner <t_leitner@gmx.at>
1408
- Date: Sat Feb 13 09:15:55 2010 +0100
1409
-
1410
- Better internal support for HTML entities
1411
-
1412
- lib/kramdown/converter/html.rb
1413
- lib/kramdown/parser/kramdown/html_entity.rb
1414
- test/testcases/span/text_substitutions/entities.html
1415
-
1416
- commit b94ff3c15d67419f50ea3f4097a44c47f618c7f3
1417
- Author: Thomas Leitner <t_leitner@gmx.at>
1418
- Date: Fri Feb 12 14:05:19 2010 +0100
1419
-
1420
- Implemented syntax parsing and conversion support for smart quotes
1421
-
1422
- This additional syntax support causes a small performance penalty
1423
- on Ruby 1.8 which is, however, acceptable.
1424
-
1425
- doc/syntax.page
1426
- lib/kramdown/converter/html.rb
1427
- lib/kramdown/converter/latex.rb
1428
- lib/kramdown/parser/kramdown.rb
1429
- lib/kramdown/parser/kramdown/escaped_chars.rb
1430
- lib/kramdown/parser/kramdown/smart_quotes.rb
1431
- test/testcases/span/01_link/inline.html
1432
- test/testcases/span/01_link/reference.html
1433
- test/testcases/span/escaped_chars/normal.html
1434
- test/testcases/span/escaped_chars/normal.text
1435
- test/testcases/span/text_substitutions/typography.html
1436
- test/testcases/span/text_substitutions/typography.text
1437
-
1438
- commit a7db5ce9d37771b2fcd8ec0ab5e3848e4d6410c4
1439
- Author: Thomas Leitner <t_leitner@gmx.at>
1440
- Date: Fri Feb 12 14:02:38 2010 +0100
1441
-
1442
- Fixed bug in benchmark.rb: false date was shown
1443
-
1444
- benchmark/benchmark.rb
1445
-
1446
- commit 7e91476e1562495daea1d87c90e8195d6f58e59a
1447
- Author: Thomas Leitner <t_leitner@gmx.at>
1448
- Date: Fri Feb 12 12:20:47 2010 +0100
1449
-
1450
- Performance optimization in span parser
1451
-
1452
- The span parser now uses a much smaller regexp for locating possible span
1453
- elements which leads to better performance.
1454
-
1455
- lib/kramdown/parser/kramdown.rb
1456
- lib/kramdown/parser/kramdown/attribute_list.rb
1457
- lib/kramdown/parser/kramdown/autolink.rb
1458
- lib/kramdown/parser/kramdown/codespan.rb
1459
- lib/kramdown/parser/kramdown/emphasis.rb
1460
- lib/kramdown/parser/kramdown/escaped_chars.rb
1461
- lib/kramdown/parser/kramdown/footnote.rb
1462
- lib/kramdown/parser/kramdown/html.rb
1463
- lib/kramdown/parser/kramdown/html_entity.rb
1464
- lib/kramdown/parser/kramdown/line_break.rb
1465
- lib/kramdown/parser/kramdown/link.rb
1466
- lib/kramdown/parser/kramdown/typographic_symbol.rb
1467
-
1468
- commit d8d372e894cdf2239d34a58517f918fc983952b3
1469
- Author: Thomas Leitner <t_leitner@gmx.at>
1470
- Date: Thu Feb 11 17:10:21 2010 +0100
1471
-
1472
- Fixed Rakefile
1473
-
1474
- Rakefile
1475
-
1476
- commit f6e878cebd3590a253e1b177610e354e2ab37d28
1477
- Author: Thomas Leitner <t_leitner@gmx.at>
1478
- Date: Wed Feb 10 18:33:04 2010 +0100
1479
-
1480
- Added basic support for converting a kramdown document to LaTeX
1481
-
1482
- bin/kramdown
1483
- data/kramdown/document.latex
1484
- lib/kramdown/converter.rb
1485
- lib/kramdown/converter/latex.rb
1486
-
1487
- commit bb35de9db070ad5e227c0197d71fcda636b76821
1488
- Author: Thomas Leitner <t_leitner@gmx.at>
1489
- Date: Wed Feb 10 18:22:47 2010 +0100
1490
-
1491
- Updated converter
1492
-
1493
- * Added a base class with common functionality
1494
- * Added support for wrapping the output of a converter in a given ERB template
1495
-
1496
- data/kramdown/document.html
1497
- doc/news/release_0_5_0.page
1498
- lib/kramdown/converter.rb
1499
- lib/kramdown/converter/base.rb
1500
- lib/kramdown/converter/html.rb
1501
- lib/kramdown/document.rb
1502
- lib/kramdown/options.rb
1503
-
1504
- commit 889bcc99ddae386a4cf6d81f79eb5a46be0e604d
1505
- Author: Thomas Leitner <t_leitner@gmx.at>
1506
- Date: Wed Feb 10 15:31:13 2010 +0100
1507
-
1508
- Fixed syntax error
1509
-
1510
- doc/syntax.page
1511
-
1512
- commit e5ab07d5dbfedb71255c74495643bca5da7cc7d5
1513
- Author: Thomas Leitner <t_leitner@gmx.at>
1514
- Date: Wed Feb 10 15:30:50 2010 +0100
1515
-
1516
- Fixed potential future problem with escape regexp in HTML converter
1517
-
1518
- lib/kramdown/converter/html.rb
1519
-
1520
- commit ab862baa4612736c64b153b9426720ce1c56205a
1521
- Author: Thomas Leitner <t_leitner@gmx.at>
1522
- Date: Mon Feb 8 17:15:11 2010 +0100
1523
-
1524
- Enhanced the kramdown binary
1525
-
1526
- bin/kramdown
1527
- doc/news/release_0_5_0.page
1528
- lib/kramdown/options.rb
1529
-
1530
- commit 38e6052580225bbb42c32499c4c699dac5e0762a
1531
- Author: Thomas Leitner <t_leitner@gmx.at>
1532
- Date: Mon Feb 8 16:56:37 2010 +0100
1533
-
1534
- Small API doc update
1535
-
1536
- lib/kramdown/converter/html.rb
1537
-
1538
- commit 6acf84b84a4eed2706888dd31364dbc5e0ed65be
1539
- Author: Thomas Leitner <t_leitner@gmx.at>
1540
- Date: Mon Feb 8 16:51:24 2010 +0100
1541
-
1542
- Implemented better options mechanism
1543
-
1544
- Parser/converter options can now be defined easily
1545
-
1546
- lib/kramdown/converter/html.rb
1547
- lib/kramdown/document.rb
1548
- lib/kramdown/options.rb
1549
- lib/kramdown/parser/kramdown.rb
1550
- lib/kramdown/parser/kramdown/extension.rb
1551
- lib/kramdown/parser/kramdown/header.rb
1552
- lib/kramdown/parser/kramdown/html.rb
1553
-
1554
- commit d2cb1882a9c4e0dd3d094a393c8c37a0631910ac
1555
- Author: Thomas Leitner <t_leitner@gmx.at>
1556
- Date: Fri Feb 5 18:41:09 2010 +0100
1557
-
1558
- The quotation mark " is not converted to &quot; in normal text anymore
1559
-
1560
- doc/news/release_0_5_0.page
1561
- lib/kramdown/converter/html.rb
1562
- test/testcases/span/01_link/reference.html
1563
-
1564
- commit c2e7145bd8fa1723bb97803840f04937c092fd1f
1565
- Author: Thomas Leitner <t_leitner@gmx.at>
1566
- Date: Thu Feb 4 10:03:16 2010 +0100
1567
-
1568
- Bumped version number
1569
-
1570
- doc/news/release_0_5_0.page
1571
- lib/kramdown/version.rb
1572
-
1573
- commit 400283889466d95724eed6169a306d411940bbc8
1574
- Author: Thomas Leitner <t_leitner@gmx.at>
1575
- Date: Thu Feb 4 09:56:54 2010 +0100
1576
-
1577
- Code restructurations
1578
-
1579
- * Moved default options away from Document into parser and converter classes
1580
- * Moved definition of Extension class to where it belongs, the kramdown parser
1581
- * Moved HTML converter class into lib/kramdown/converter/html.rb
1582
-
1583
- lib/kramdown/converter.rb
1584
- lib/kramdown/converter/html.rb
1585
- lib/kramdown/document.rb
1586
- lib/kramdown/extension.rb
1587
- lib/kramdown/parser/kramdown.rb
1588
- lib/kramdown/parser/kramdown/extension.rb
1589
- lib/kramdown/parser/kramdown/header.rb
1590
- lib/kramdown/parser/kramdown/html.rb
1591
-
1592
- commit 0ea859157e8f30d488a8e1f78407466c369cc717
1593
- Author: Thomas Leitner <t_leitner@gmx.at>
1594
- Date: Thu Feb 4 09:10:32 2010 +0100
1595
-
1596
- Fixed problems with multibyte encodings in Ruby 1.9
1597
-
1598
- The StringScanner class returns positions based on bytes and not based on
1599
- characters. Therefore a workaround was needed sothat multibyte encoded
1600
- documents are parsed correctly
1601
-
1602
- lib/kramdown/parser/kramdown.rb
1603
- lib/kramdown/parser/kramdown/emphasis.rb
1604
- lib/kramdown/parser/kramdown/html.rb
1605
- lib/kramdown/parser/kramdown/link.rb
1606
- test/testcases/encoding.html
1607
- test/testcases/encoding.text
1608
-
1609
- commit fa3d9d59c3e912a011a26f10a74ee0858cafe4dd
1610
- Author: Thomas Leitner <t_leitner@gmx.at>
1611
- Date: Fri Jan 22 17:41:32 2010 +0100
1612
-
1613
- Small fix for testing script
1614
-
1615
- benchmark/testing.sh
1616
-
1617
- commit 8c765d5783b460a46fdd8b547eeca91e7f48f0da
1618
- Author: Thomas Leitner <t_leitner@gmx.at>
1619
- Date: Fri Jan 22 17:38:10 2010 +0100
1620
-
1621
- Updated release file and homepage
1622
-
1623
- doc/index.page
1624
- doc/news/release_0_4_0.page
1625
-
1626
- commit c6f7bcea913b19cc8c255f9a0358188db54cead4
1627
- Author: Thomas Leitner <t_leitner@gmx.at>
1628
- Date: Fri Jan 22 17:37:53 2010 +0100
1629
-
1630
- Updated benchmark data
1631
-
1632
- benchmark/historic-jruby-1.4.0.dat
1633
- benchmark/historic-ruby-1.8.6.dat
1634
- benchmark/historic-ruby-1.8.7.dat
1635
- benchmark/historic-ruby-1.9.1p243.dat
1636
- benchmark/historic-ruby-1.9.2dev.dat
1637
- doc/img/graph-jruby-1.4.0.png
1638
- doc/img/graph-ruby-1.8.6.png
1639
- doc/img/graph-ruby-1.8.7.png
1640
- doc/img/graph-ruby-1.9.1p243.png
1641
- doc/img/graph-ruby-1.9.2dev.png
1642
-
1643
- commit 2d531e0984e9db1656e1d7dbde0dbc3c96383d05
1644
- Author: Thomas Leitner <t_leitner@gmx.at>
1645
- Date: Fri Jan 22 16:55:48 2010 +0100
1646
-
1647
- Small fix for syntax highlighting test
1648
-
1649
- test/testcases/block/12_extension/options3.html
1650
-
1651
- commit e3f053d87d85ba0c36befe489fe777b954f04079
1652
- Author: Thomas Leitner <t_leitner@gmx.at>
1653
- Date: Wed Jan 20 18:39:25 2010 +0100
1654
-
1655
- Implemented syntax highlighting of codeblocks via CodeRay library
1656
-
1657
- doc/index.page
1658
- doc/news/release_0_4_0.page
1659
- doc/syntax.page
1660
- lib/kramdown/converter.rb
1661
- lib/kramdown/document.rb
1662
- lib/kramdown/extension.rb
1663
- lib/kramdown/parser/kramdown/attribute_list.rb
1664
- test/testcases/block/12_extension/options3.html
1665
- test/testcases/block/12_extension/options3.text
1666
-
1667
- commit 9753aa172982fe6b9766b032017a747d00b1a1b3
1668
- Author: Thomas Leitner <t_leitner@gmx.at>
1669
- Date: Wed Jan 20 18:37:09 2010 +0100
1670
-
1671
- Various small fixes
1672
-
1673
- Rakefile
1674
- doc/news/release_0_1_0.page
1675
- doc/quickref.page
1676
- doc/syntax.page
1677
-
1678
- commit 5c6215f4b8bf26801f6f4af81591ce5714e4abfc
1679
- Author: Thomas Leitner <t_leitner@gmx.at>
1680
- Date: Wed Jan 20 17:51:21 2010 +0100
1681
-
1682
- Updated codeblock parser implementation
1683
-
1684
- Codeblock lines separated by blank lines are not parsed separately anymore
1685
-
1686
- lib/kramdown/parser/kramdown/codeblock.rb
1687
- lib/kramdown/parser/kramdown/footnote.rb
1688
- test/testcases/block/06_codeblock/with_blank_line.text
1689
- test/testcases/block/11_ial/simple.html
1690
- test/testcases/block/11_ial/simple.text
1691
-
1692
- commit b9de73dd48590e47a5753f272478f88378ada709
1693
- Author: Thomas Leitner <t_leitner@gmx.at>
1694
- Date: Wed Jan 20 15:46:43 2010 +0100
1695
-
1696
- Clarified how options set through the options extension are used
1697
-
1698
- doc/syntax.page
1699
-
1700
- commit e371bd8ecbbfe1df200240ccd13562dcb8927940
1701
- Author: Thomas Leitner <t_leitner@gmx.at>
1702
- Date: Tue Jan 19 14:58:32 2010 +0100
1703
-
1704
- Fixed problem with too many alignment definitions on header sep line
1705
-
1706
- lib/kramdown/parser/kramdown/table.rb
1707
- test/testcases/block/14_table/header.html
1708
- test/testcases/block/14_table/header.text
1709
-
1710
- commit 8360bed28e436ee621848f60b7db7c2f29ffb573
1711
- Author: Thomas Leitner <t_leitner@gmx.at>
1712
- Date: Tue Jan 19 14:49:19 2010 +0100
1713
-
1714
- Updated table spec and implementation sothat header sep lines are a subset of sep lines
1715
-
1716
- doc/syntax.page
1717
- lib/kramdown/parser/kramdown/table.rb
1718
- test/testcases/block/14_table/header.html
1719
- test/testcases/block/14_table/header.text
1720
-
1721
- commit 59cf34d9a9efd70a69b324097148199bf70b8189
1722
- Author: Thomas Leitner <t_leitner@gmx.at>
1723
- Date: Sat Jan 16 08:13:18 2010 +0100
1724
-
1725
- Small fix in table separator line regexps
1726
-
1727
- lib/kramdown/parser/kramdown/table.rb
1728
-
1729
- commit 6e77f79a5bc37e94267da8b4a42be6da036e6f81
1730
- Author: Thomas Leitner <t_leitner@gmx.at>
1731
- Date: Fri Jan 15 12:14:42 2010 +0100
1732
-
1733
- Fixed problem with escaped characters
1734
-
1735
- * Added colon to the list of escaped characters in the syntax document
1736
- * Added test cases for escaped colons and pipes
1737
- * Fixed bug in regexp for escaped characters
1738
-
1739
- doc/news/release_0_4_0.page
1740
- doc/syntax.page
1741
- lib/kramdown/parser/kramdown/escaped_chars.rb
1742
- test/testcases/block/13_definition_list/no_def_list.html
1743
- test/testcases/block/13_definition_list/no_def_list.text
1744
- test/testcases/block/14_table/no_table.html
1745
- test/testcases/block/14_table/no_table.text
1746
- test/testcases/span/escaped_chars/normal.html
1747
- test/testcases/span/escaped_chars/normal.text
1748
-
1749
- commit df5ac74abffb0d78ac3ed05c155c36a83e4af273
1750
- Author: Thomas Leitner <t_leitner@gmx.at>
1751
- Date: Thu Jan 14 12:09:55 2010 +0100
1752
-
1753
- Two small doc fixes
1754
-
1755
- doc/syntax.page
1756
-
1757
- commit a1f6c3c755c1b18502403c1ac6236a5dbcd47dd8
1758
- Author: Thomas Leitner <t_leitner@gmx.at>
1759
- Date: Thu Jan 14 08:45:04 2010 +0100
1760
-
1761
- Fixed test case for table headers
1762
-
1763
- test/testcases/block/14_table/header.html
1764
-
1765
- commit b79822c8a78729be53a1d9a9db3f783c3b22a0ae
1766
- Author: Thomas Leitner <t_leitner@gmx.at>
1767
- Date: Thu Jan 14 08:44:17 2010 +0100
1768
-
1769
- Reimplemented HTML converter to use post- instead of pre-order iteration
1770
-
1771
- This is needed to ease the implementation of the td/th conversion.
1772
- It is also a little bit faster than the old version.
1773
-
1774
- lib/kramdown/converter.rb
1775
-
1776
- commit 17caef2da4cbe065e0509ca59e04daee8baca425
1777
- Author: Thomas Leitner <t_leitner@gmx.at>
1778
- Date: Wed Jan 13 15:36:34 2010 +0100
1779
-
1780
- Changed CSS class name kramdown-footnotes to footnotes
1781
-
1782
- doc/news/release_0_4_0.page
1783
- lib/kramdown/converter.rb
1784
- test/testcases/block/12_extension/options.html
1785
- test/testcases/block/12_extension/options2.html
1786
- test/testcases/span/04_footnote/footnote_nr.html
1787
- test/testcases/span/04_footnote/markers.html
1788
-
1789
- commit d446c6ee421e983bd4cd5a13d3f3341523a3d594
1790
- Author: Thomas Leitner <t_leitner@gmx.at>
1791
- Date: Wed Jan 13 15:25:46 2010 +0100
1792
-
1793
- Bumped version number and added release notes file
1794
-
1795
- doc/news/release_0_4_0.page
1796
- lib/kramdown/version.rb
1797
-
1798
- commit 0473b0c40d6a20749772042b64472c5f6514ec0b
1799
- Author: Thomas Leitner <t_leitner@gmx.at>
1800
- Date: Wed Jan 13 15:10:57 2010 +0100
1801
-
1802
- Updated table syntax and implemented it
1803
-
1804
- doc/quickref.page
1805
- doc/syntax.page
1806
- lib/kramdown/converter.rb
1807
- lib/kramdown/parser/kramdown.rb
1808
- lib/kramdown/parser/kramdown/table.rb
1809
- test/testcases/block/14_table/errors.html
1810
- test/testcases/block/14_table/errors.text
1811
- test/testcases/block/14_table/footer.html
1812
- test/testcases/block/14_table/footer.text
1813
- test/testcases/block/14_table/header.html
1814
- test/testcases/block/14_table/header.text
1815
- test/testcases/block/14_table/simple.html
1816
- test/testcases/block/14_table/simple.text
1817
-
1818
- commit d8d032bcb399593d77a15d8269ada8884ba14fa0
1819
- Author: Thomas Leitner <t_leitner@gmx.at>
1820
- Date: Wed Jan 13 10:04:57 2010 +0100
1821
-
1822
- Clarified one point regarding HTML span parsing
1823
-
1824
- doc/syntax.page
1825
- test/testcases/block/09_html/parse_as_span.html
1826
- test/testcases/block/09_html/parse_as_span.text
1827
-
1828
- commit 423ec50ba84518d1b734c396000492da217f5b99
1829
- Author: Thomas Leitner <t_leitner@gmx.at>
1830
- Date: Mon Jan 4 21:52:15 2010 +0100
1831
-
1832
- Third table syntax proposal
1833
-
1834
- doc/syntax.page
1835
-
1836
- commit 66427040dea52007c24ea4df0dd6484b53b11f30
1837
- Author: Thomas Leitner <t_leitner@gmx.at>
1838
- Date: Thu Dec 31 09:26:17 2009 +0100
1839
-
1840
- Second table syntax proposal
1841
-
1842
- doc/syntax.page
1843
-
1844
- commit 4b2d39389cee746ee384e35bdfa60bf5c7313eb4
1845
- Author: Thomas Leitner <t_leitner@gmx.at>
1846
- Date: Wed Dec 30 08:53:15 2009 +0100
1847
-
1848
- First table syntax proposal
1849
-
1850
- doc/syntax.page
1851
-
1852
- commit fff933c46a6345aca7ee2333b6c71d9466b0e297
1853
- Author: Thomas Leitner <t_leitner@gmx.at>
1854
- Date: Sun Dec 20 16:20:10 2009 +0100
1855
-
1856
- Small doc update before release
1857
-
1858
- doc/index.page
1859
- doc/installation.page
1860
-
1861
- commit e1e97bcfeea51c1e3fe5afa787132e24d59fd968
1862
- Author: Thomas Leitner <t_leitner@gmx.at>
1863
- Date: Sun Dec 20 16:18:54 2009 +0100
1864
-
1865
- Small display fix
1866
-
1867
- benchmark/generate_data.rb
1868
-
1869
- commit d80c3782881777c246e971db4f86c7ff16241c7f
1870
- Author: Thomas Leitner <t_leitner@gmx.at>
1871
- Date: Sun Dec 20 16:18:47 2009 +0100
1872
-
1873
- Added kramdown 0.3.0 data to benchmark and graphs
1874
-
1875
- benchmark/historic-jruby-1.4.0.dat
1876
- benchmark/historic-ruby-1.8.6.dat
1877
- benchmark/historic-ruby-1.8.7.dat
1878
- benchmark/historic-ruby-1.9.1p243.dat
1879
- benchmark/historic-ruby-1.9.2dev.dat
1880
- doc/img/graph-jruby-1.4.0.png
1881
- doc/img/graph-ruby-1.8.6.png
1882
- doc/img/graph-ruby-1.8.7.png
1883
- doc/img/graph-ruby-1.9.1p243.png
1884
- doc/img/graph-ruby-1.9.2dev.png
1885
-
1886
- commit 064f97f9bace384a54373f4dca168911dbccf19f
1887
- Author: Thomas Leitner <t_leitner@gmx.at>
1888
- Date: Sun Dec 20 15:59:11 2009 +0100
1889
-
1890
- Updated release notes
1891
-
1892
- doc/news/release_0_3_0.page
1893
-
1894
- commit 9041790eb12fedc914d6a9511640e41deeadfcd4
1895
- Author: Thomas Leitner <t_leitner@gmx.at>
1896
- Date: Tue Dec 15 08:02:55 2009 +0100
1897
-
1898
- Updated release notes
1899
-
1900
- doc/news/release_0_3_0.page
1901
-
1902
- commit e737974d5cdd9efcf381f3cd1d47809f6a5fbeb2
1903
- Author: Thomas Leitner <t_leitner@gmx.at>
1904
- Date: Tue Dec 15 07:59:44 2009 +0100
1905
-
1906
- Span HTML parser now uses the same semantics for invalid end tags and unclosed tags as block HTML parser
1907
-
1908
- doc/syntax.page
1909
- lib/kramdown/parser/kramdown.rb
1910
- lib/kramdown/parser/kramdown/html.rb
1911
- test/testcases/span/05_html/normal.html
1912
- test/testcases/span/05_html/normal.text
1913
-
1914
- commit cf9330e6f27f21e9a93251d78da61cb8be549671
1915
- Author: Thomas Leitner <t_leitner@gmx.at>
1916
- Date: Tue Dec 15 07:35:41 2009 +0100
1917
-
1918
- Updated release notes
1919
-
1920
- doc/news/release_0_3_0.page
1921
-
1922
- commit cd36641782835ddb7f32a0d83131db6193404f5e
1923
- Author: Thomas Leitner <t_leitner@gmx.at>
1924
- Date: Tue Dec 15 07:31:11 2009 +0100
1925
-
1926
- Fixed bug in emphasis parser
1927
-
1928
- Emphasis started with an underscore at the beginning of a new line inside
1929
- a paragraph was not recognized.
1930
-
1931
- lib/kramdown/parser/kramdown/emphasis.rb
1932
- test/testcases/span/02_emphasis/normal.html
1933
- test/testcases/span/02_emphasis/normal.text
1934
-
1935
- commit 59d9be0976970cb33248c81c81d0500c2cfbb4ce
1936
- Author: Thomas Leitner <t_leitner@gmx.at>
1937
- Date: Tue Dec 15 07:22:39 2009 +0100
1938
-
1939
- Small update to the HTML syntax documentation
1940
-
1941
- doc/syntax.page
1942
-
1943
- commit ba0d7e1dc9deb8837c95e2f1f9e0f59cdfa93d33
1944
- Author: Thomas Leitner <t_leitner@gmx.at>
1945
- Date: Mon Dec 14 10:56:57 2009 +0100
1946
-
1947
- Fixed some flaws in the HTML parser
1948
-
1949
- * raw HTML parsing did not work as specified in the syntax documentation
1950
- * XML comments/PIs now have their own element type
1951
- * fixed a small problem with autolinks in raw HTML blocks
1952
- * adjusted parsing of unclosed raw HTML blocks to adhere to syntax documentation
1953
-
1954
- lib/kramdown/converter.rb
1955
- lib/kramdown/parser/kramdown.rb
1956
- lib/kramdown/parser/kramdown/footnote.rb
1957
- lib/kramdown/parser/kramdown/html.rb
1958
- test/testcases/block/09_html/not_parsed.html
1959
- test/testcases/block/09_html/not_parsed.text
1960
- test/testcases/block/09_html/parse_as_raw.html
1961
- test/testcases/block/09_html/parse_as_raw.text
1962
- test/testcases/span/05_html/markdown_attr.html
1963
- test/testcases/span/05_html/markdown_attr.text
1964
-
1965
- commit b85972868dd907fd102b665421d51c9bb86c3d86
1966
- Author: Thomas Leitner <t_leitner@gmx.at>
1967
- Date: Sun Dec 13 19:42:45 2009 +0100
1968
-
1969
- Fixed Maruku version number display
1970
-
1971
- benchmark/benchmark.rb
1972
-
1973
- commit 94e89b51cf33bae5cee929fa8ce97703f2fee6fc
1974
- Author: Thomas Leitner <t_leitner@gmx.at>
1975
- Date: Sun Dec 13 19:42:28 2009 +0100
1976
-
1977
- Fixed warning on Ruby 1.9
1978
-
1979
- lib/kramdown/parser/kramdown/list.rb
1980
-
1981
- commit d3df238aeb533302bafbcc3fe8246dedd74b42f7
1982
- Author: Thomas Leitner <t_leitner@gmx.at>
1983
- Date: Sun Dec 13 19:42:04 2009 +0100
1984
-
1985
- Implemented a new HTML block parser
1986
-
1987
- The new parser is a little bit more restrictive but the surprise factor
1988
- for most HTML input should be less than before.
1989
-
1990
- doc/syntax.page
1991
- lib/kramdown/converter.rb
1992
- lib/kramdown/parser/kramdown.rb
1993
- lib/kramdown/parser/kramdown/html.rb
1994
- test/testcases/block/09_html/comment.html
1995
- test/testcases/block/09_html/comment.text
1996
- test/testcases/block/09_html/content_model/tables.text
1997
- test/testcases/block/09_html/not_parsed.html
1998
- test/testcases/block/09_html/not_parsed.text
1999
- test/testcases/block/09_html/parse_as_raw.html
2000
- test/testcases/block/09_html/parse_block_html.html
2001
- test/testcases/block/09_html/parse_block_html.text
2002
- test/testcases/block/09_html/processing_instruction.html
2003
- test/testcases/block/09_html/processing_instruction.text
2004
- test/testcases/block/09_html/simple.html
2005
- test/testcases/block/09_html/simple.text
2006
-
2007
- commit cb8333118e7d70719bd25a6ef44c38e98af1d44f
2008
- Author: Thomas Leitner <t_leitner@gmx.at>
2009
- Date: Wed Dec 9 14:51:24 2009 +0100
2010
-
2011
- Added benchmark data and graphs from this data to the tests page
2012
-
2013
- benchmark/generate_data.rb
2014
- benchmark/historic-jruby-1.4.0.dat
2015
- benchmark/historic-ruby-1.8.6.dat
2016
- benchmark/historic-ruby-1.8.7.dat
2017
- benchmark/historic-ruby-1.9.1p243.dat
2018
- benchmark/historic-ruby-1.9.2dev.dat
2019
- benchmark/static-jruby-1.4.0.dat
2020
- benchmark/static-ruby-1.8.6.dat
2021
- benchmark/static-ruby-1.8.7.dat
2022
- benchmark/static-ruby-1.9.1p243.dat
2023
- benchmark/static-ruby-1.9.2dev.dat
2024
- doc/img/graph-jruby-1.4.0.png
2025
- doc/img/graph-ruby-1.8.6.png
2026
- doc/img/graph-ruby-1.8.7.png
2027
- doc/img/graph-ruby-1.9.1p243.png
2028
- doc/img/graph-ruby-1.9.2dev.png
2029
- doc/tests.page
2030
-
2031
- commit 78d9311ef919d9467502f053f416238937fb2746
2032
- Author: Thomas Leitner <t_leitner@gmx.at>
2033
- Date: Tue Dec 8 09:45:56 2009 +0100
2034
-
2035
- Source code restructuration
2036
-
2037
- * email obfuscation is part of conversion now since it makes more sense there
2038
- * block parsers can now be enabled/disabled by the parser methods
2039
- * parsers methods put into various files
2040
-
2041
- lib/kramdown/converter.rb
2042
- lib/kramdown/parser.rb
2043
- lib/kramdown/parser/kramdown.rb
2044
- lib/kramdown/parser/kramdown/attribute_list.rb
2045
- lib/kramdown/parser/kramdown/autolink.rb
2046
- lib/kramdown/parser/kramdown/blank_line.rb
2047
- lib/kramdown/parser/kramdown/blockquote.rb
2048
- lib/kramdown/parser/kramdown/codeblock.rb
2049
- lib/kramdown/parser/kramdown/codespan.rb
2050
- lib/kramdown/parser/kramdown/emphasis.rb
2051
- lib/kramdown/parser/kramdown/eob.rb
2052
- lib/kramdown/parser/kramdown/escaped_chars.rb
2053
- lib/kramdown/parser/kramdown/extension.rb
2054
- lib/kramdown/parser/kramdown/footnote.rb
2055
- lib/kramdown/parser/kramdown/header.rb
2056
- lib/kramdown/parser/kramdown/horizontal_rule.rb
2057
- lib/kramdown/parser/kramdown/html.rb
2058
- lib/kramdown/parser/kramdown/html_entity.rb
2059
- lib/kramdown/parser/kramdown/line_break.rb
2060
- lib/kramdown/parser/kramdown/link.rb
2061
- lib/kramdown/parser/kramdown/list.rb
2062
- lib/kramdown/parser/kramdown/paragraph.rb
2063
- lib/kramdown/parser/kramdown/typographic_symbol.rb
2064
- lib/kramdown/parser/registry.rb
2065
-
2066
- commit 13c1b5037d5ada5f661dc09ef3f1f18b437ed0f1
2067
- Author: Thomas Leitner <t_leitner@gmx.at>
2068
- Date: Tue Dec 8 08:35:32 2009 +0100
2069
-
2070
- Added note about spelling of kramdown
2071
-
2072
- doc/index.page
2073
-
2074
- commit f8f9e65ea3e980286086b7bc25ce6126ea5a2332
2075
- Author: Thomas Leitner <t_leitner@gmx.at>
2076
- Date: Fri Dec 4 23:03:15 2009 +0100
2077
-
2078
- Updated tested platforms and ruby versions
2079
-
2080
- doc/installation.page
2081
-
2082
- commit 06d1ff82de3a02c612b912e6384b89feb00a6e0a
2083
- Author: Thomas Leitner <t_leitner@gmx.at>
2084
- Date: Fri Dec 4 21:02:03 2009 +0100
2085
-
2086
- Removed deprecated methods
2087
-
2088
- lib/kramdown/deprecated.rb
2089
- lib/kramdown/document.rb
2090
-
2091
- commit 1591c98a983398b8867c9aaf5151dc3021e2eedf
2092
- Author: Thomas Leitner <t_leitner@gmx.at>
2093
- Date: Fri Dec 4 21:00:29 2009 +0100
2094
-
2095
- Bumped version number and added release notes file
2096
-
2097
- doc/news/release_0_3_0.page
2098
- lib/kramdown/version.rb
2099
-
2100
- commit b93f953c14e8c6c23951e5f78541f5ab69dc2b93
2101
- Author: Thomas Leitner <t_leitner@gmx.at>
2102
- Date: Fri Dec 4 20:56:29 2009 +0100
2103
-
2104
- Added a compatibility fix so that kramdown works under Ruby 1.8.5
2105
-
2106
- benchmark/testing.sh
2107
- lib/kramdown/compatibility.rb
2108
- lib/kramdown/document.rb
2109
-
2110
- commit 84bbbdd91686ada39b99af5b5cdd61d212065c9a
2111
- Author: Thomas Leitner <t_leitner@gmx.at>
2112
- Date: Fri Dec 4 08:13:15 2009 +0100
2113
-
2114
- Fixed typos in the documentation
2115
-
2116
- doc/quickref.page
2117
- doc/syntax.page
2118
-
2119
- commit 034525fb53f178da9498e0f653c382a17549ca3a
2120
- Author: Thomas Leitner <t_leitner@gmx.at>
2121
- Date: Thu Dec 3 20:25:17 2009 +0100
2122
-
2123
- Updated release notes
2124
-
2125
- doc/index.page
2126
- doc/news/release_0_2_0.page
2127
-
2128
- commit 89fc586b5f70ccfc8facfae48aa0a0ce31df1d73
2129
- Author: Thomas Leitner <t_leitner@gmx.at>
2130
- Date: Thu Dec 3 14:25:46 2009 +0100
2131
-
2132
- Documentation updates
2133
-
2134
- * Added definition list examples to quick reference
2135
- * Added more head lines for quicker access to syntax documentation
2136
-
2137
- doc/quickref.page
2138
- doc/syntax.page
2139
-
2140
- commit 4272568be7c735411faf456e98066d5b51989634
2141
- Author: Thomas Leitner <t_leitner@gmx.at>
2142
- Date: Thu Dec 3 08:43:46 2009 +0100
2143
-
2144
- Implemented definition list syntax
2145
-
2146
- doc/syntax.page
2147
- lib/kramdown/converter.rb
2148
- lib/kramdown/parser.rb
2149
- test/testcases/block/02_eob/middle.html
2150
- test/testcases/block/13_definition_list/definition_at_beginning.html
2151
- test/testcases/block/13_definition_list/definition_at_beginning.text
2152
- test/testcases/block/13_definition_list/multiple_terms.html
2153
- test/testcases/block/13_definition_list/multiple_terms.text
2154
- test/testcases/block/13_definition_list/para_wrapping.html
2155
- test/testcases/block/13_definition_list/para_wrapping.text
2156
- test/testcases/block/13_definition_list/separated_by_eob.html
2157
- test/testcases/block/13_definition_list/separated_by_eob.text
2158
- test/testcases/block/13_definition_list/simple.html
2159
- test/testcases/block/13_definition_list/simple.text
2160
- test/testcases/block/13_definition_list/styled_terms.html
2161
- test/testcases/block/13_definition_list/styled_terms.text
2162
- test/testcases/block/13_definition_list/too_much_space.html
2163
- test/testcases/block/13_definition_list/too_much_space.text
2164
- test/testcases/block/13_definition_list/with_blocks.html
2165
- test/testcases/block/13_definition_list/with_blocks.text
2166
-
2167
- commit f7cdd0fa6c647b91be82184a9c4e755f8feed749
2168
- Author: Thomas Leitner <t_leitner@gmx.at>
2169
- Date: Thu Dec 3 08:29:30 2009 +0100
2170
-
2171
- Another major update to the HTML parser
2172
-
2173
- * script tags in spans are not parsed anymore
2174
- * trying to fix broken HTML, for example, auto-closing br and hr tags
2175
- * HTML block tags in spans are now escaped
2176
- * updated syntax documentation regarding HTML blocks and spans
2177
-
2178
- doc/syntax.page
2179
- lib/kramdown/parser.rb
2180
- test/testcases/block/09_html/invalid_html_2.html
2181
- test/testcases/block/09_html/parse_as_raw.html
2182
- test/testcases/span/05_html/normal.html
2183
- test/testcases/span/05_html/normal.text
2184
-
2185
- commit 70982a61b7c38d34ef7aa420cf0bb05d3b1c1e85
2186
- Author: Thomas Leitner <t_leitner@gmx.at>
2187
- Date: Wed Dec 2 15:02:41 2009 +0100
2188
-
2189
- Fixed a problem with parsing HTML
2190
-
2191
- When opening and closing an HTML span tag on the same line as an HTML
2192
- block tag, the closing tag of the span tag was omitted.
2193
-
2194
- lib/kramdown/parser.rb
2195
- test/testcases/block/09_html/not_parsed.html
2196
- test/testcases/block/09_html/not_parsed.text
2197
-
2198
- commit ae805cfcace68d089135d20c6636f8cc74088930
2199
- Author: Thomas Leitner <t_leitner@gmx.at>
2200
- Date: Tue Dec 1 15:49:10 2009 +0100
2201
-
2202
- Major update to the HTML block parser
2203
-
2204
- Parsing of raw HTML block tags should work much better now since HTML block
2205
- lines are now processed even inside raw HTML blocks
2206
-
2207
- doc/news/release_0_2_0.page
2208
- doc/syntax.page
2209
- lib/kramdown/converter.rb
2210
- lib/kramdown/parser.rb
2211
- test/testcases/block/09_html/markdown_attr.html
2212
- test/testcases/block/09_html/markdown_attr.text
2213
- test/testcases/block/09_html/not_parsed.html
2214
- test/testcases/block/09_html/not_parsed.text
2215
- test/testcases/block/09_html/parse_as_raw.html
2216
- test/testcases/block/09_html/parse_as_raw.text
2217
- test/testcases/block/09_html/simple.html
2218
-
2219
- commit 7058ee02758f5e66f5a4030ee987685ab0dd5f87
2220
- Author: Thomas Leitner <t_leitner@gmx.at>
2221
- Date: Tue Dec 1 08:06:28 2009 +0100
2222
-
2223
- Fixed typo
2224
-
2225
- doc/syntax.page
2226
-
2227
- commit 6af053543fa37132b2b099792fafae364ef0aa21
2228
- Author: Thomas Leitner <t_leitner@gmx.at>
2229
- Date: Mon Nov 30 16:54:17 2009 +0100
2230
-
2231
- Added support for setting header IDs via the syntax available in PHP Markdown Extra and Maruku
2232
-
2233
- doc/news/release_0_2_0.page
2234
- doc/syntax.page
2235
- lib/kramdown/parser.rb
2236
- test/testcases/block/04_header/atx_header.html
2237
- test/testcases/block/04_header/atx_header.text
2238
- test/testcases/block/04_header/setext_header.html
2239
- test/testcases/block/04_header/setext_header.text
2240
-
2241
- commit 54ee8f5d1b1f598ed7aa915b4274589652c75019
2242
- Author: Thomas Leitner <t_leitner@gmx.at>
2243
- Date: Mon Nov 30 16:18:23 2009 +0100
2244
-
2245
- Small documentation fix
2246
-
2247
- doc/syntax.page
2248
-
2249
- commit 2e221b46b14a50d2832f3ab7817f668fd0a58dee
2250
- Author: Thomas Leitner <t_leitner@gmx.at>
2251
- Date: Mon Nov 30 16:13:43 2009 +0100
2252
-
2253
- Four small updates
2254
-
2255
- * entities have now their own Element type :entity
2256
- * typographic symbols have now their own Element type :typographic_sym
2257
- * removed unnecessary parsing of special HTML chars
2258
- * small fix for parsing HTML spans
2259
-
2260
- lib/kramdown/converter.rb
2261
- lib/kramdown/parser.rb
2262
-
2263
- commit 915bba0082cb90efa74bb16814dda7ef1bdf0afa
2264
- Author: Thomas Leitner <t_leitner@gmx.at>
2265
- Date: Mon Nov 30 07:40:39 2009 +0100
2266
-
2267
- Renamed processing option :first_as_block to :first_is_block
2268
-
2269
- lib/kramdown/converter.rb
2270
- lib/kramdown/parser.rb
2271
-
2272
- commit 03b00f2587f4a69292bce7d0ee3d7996966a5b24
2273
- Author: Thomas Leitner <t_leitner@gmx.at>
2274
- Date: Mon Nov 30 07:37:03 2009 +0100
2275
-
2276
- Bug fix: horizontal rules may now also contain tabs as separator
2277
-
2278
- doc/news/release_0_2_0.page
2279
- doc/syntax.page
2280
- lib/kramdown/parser.rb
2281
- test/testcases/block/07_horizontal_rule/sepspaces.html
2282
- test/testcases/block/07_horizontal_rule/sepspaces.text
2283
- test/testcases/block/07_horizontal_rule/septabs.html
2284
- test/testcases/block/07_horizontal_rule/septabs.text
2285
-
2286
- commit 3a99d93b0f677bd8fa9ea3be25b65b48fa24b67a
2287
- Author: Thomas Leitner <t_leitner@gmx.at>
2288
- Date: Sat Nov 28 10:45:00 2009 +0100
2289
-
2290
- Clarified a point regarding text on HTML block lines
2291
-
2292
- doc/syntax.page
2293
-
2294
- commit ddbab79d82e7fad5ddfc0841ab4f1ca765b5bc7c
2295
- Author: Thomas Leitner <t_leitner@gmx.at>
2296
- Date: Sat Nov 28 10:39:47 2009 +0100
2297
-
2298
- Added the correct content model for parsing th and td tags
2299
-
2300
- lib/kramdown/parser.rb
2301
- test/testcases/block/09_html/content_model/tables.html
2302
- test/testcases/block/09_html/content_model/tables.options
2303
- test/testcases/block/09_html/content_model/tables.text
2304
- test/testcases/block/09_html/tables.html
2305
- test/testcases/block/09_html/tables.options
2306
- test/testcases/block/09_html/tables.text
2307
-
2308
- commit 4b076ad0280fa6f91e6e617ae98f82900df73fdf
2309
- Author: Thomas Leitner <t_leitner@gmx.at>
2310
- Date: Sat Nov 28 10:35:00 2009 +0100
2311
-
2312
- Added the correct content model for parsing dd tags
2313
-
2314
- lib/kramdown/parser.rb
2315
- test/testcases/block/09_html/content_model/deflists.html
2316
- test/testcases/block/09_html/content_model/deflists.options
2317
- test/testcases/block/09_html/content_model/deflists.text
2318
-
2319
- commit 6a6f47910fc2283d0a6c83aeb311f1b4e587b300
2320
- Author: Thomas Leitner <t_leitner@gmx.at>
2321
- Date: Sat Nov 28 10:22:52 2009 +0100
2322
-
2323
- Small bug fix
2324
-
2325
- Rakefile
2326
-
2327
- commit b4a6faa1c087d5240ac2c5a62d8931aa9f36b830
2328
- Author: Thomas Leitner <t_leitner@gmx.at>
2329
- Date: Sat Nov 28 10:22:40 2009 +0100
2330
-
2331
- Made it clearer that kramdown is a Markdown-superset converter
2332
-
2333
- COPYING
2334
- Rakefile
2335
- doc/default.template
2336
- doc/index.page
2337
- doc/news.feed
2338
- doc/quickref.page
2339
- doc/tests.page
2340
-
2341
- commit 7329d179c7a4ff44e99c39dc19a8532d0f203315
2342
- Author: Thomas Leitner <t_leitner@gmx.at>
2343
- Date: Sat Nov 28 08:59:45 2009 +0100
2344
-
2345
- Renamed extensions kdoptions to options and nokramdown to nomarkdown
2346
-
2347
- doc/news/release_0_2_0.page
2348
- doc/quickref.page
2349
- doc/syntax.page
2350
- doc/tests.page
2351
- lib/kramdown/deprecated.rb
2352
- lib/kramdown/document.rb
2353
- lib/kramdown/extension.rb
2354
- test/testcases/block/09_html/parse_as_raw.text
2355
- test/testcases/block/12_extension/kdoptions.html
2356
- test/testcases/block/12_extension/kdoptions.text
2357
- test/testcases/block/12_extension/kdoptions2.html
2358
- test/testcases/block/12_extension/kdoptions2.text
2359
- test/testcases/block/12_extension/nokramdown.html
2360
- test/testcases/block/12_extension/nokramdown.text
2361
- test/testcases/block/12_extension/nomarkdown.html
2362
- test/testcases/block/12_extension/nomarkdown.text
2363
- test/testcases/block/12_extension/options.html
2364
- test/testcases/block/12_extension/options.text
2365
- test/testcases/block/12_extension/options2.html
2366
- test/testcases/block/12_extension/options2.text
2367
-
2368
- commit 10188ec8d9ec197214004014e476b8ae541f30dd
2369
- Author: Thomas Leitner <t_leitner@gmx.at>
2370
- Date: Fri Nov 27 16:53:21 2009 +0100
2371
-
2372
- Now defaulting to parsing HTML spans since this is what standard Markdown does
2373
-
2374
- doc/news/release_0_2_0.page
2375
- doc/syntax.page
2376
- lib/kramdown/document.rb
2377
- test/testcases/span/05_html/markdown_attr.html
2378
-
2379
- commit 3966cac694de1a58f8472f5366da0a1eb1b60475
2380
- Author: Thomas Leitner <t_leitner@gmx.at>
2381
- Date: Fri Nov 27 10:15:35 2009 +0100
2382
-
2383
- Updated release notes
2384
-
2385
- doc/news/release_0_2_0.page
2386
-
2387
- commit eac4769a09f226a56a731518fdfe9d0592ee17e5
2388
- Author: Thomas Leitner <t_leitner@gmx.at>
2389
- Date: Fri Nov 27 09:59:50 2009 +0100
2390
-
2391
- Made parsing of HTML elements configurable
2392
-
2393
- * added a configuration for enabling/disabling parsing of block and/or span HTML elements
2394
- * parsing of block and span HTML elements is now disabled by default
2395
- * added support for the markdown attribute
2396
-
2397
- doc/quickref.page
2398
- doc/syntax.page
2399
- lib/kramdown/document.rb
2400
- lib/kramdown/extension.rb
2401
- lib/kramdown/parser.rb
2402
- test/testcases/block/09_html/auto_parse_block_html.html
2403
- test/testcases/block/09_html/auto_parse_block_html.options
2404
- test/testcases/block/09_html/auto_parse_block_html.text
2405
- test/testcases/block/09_html/html_and_codeblocks.options
2406
- test/testcases/block/09_html/markdown_attr.html
2407
- test/testcases/block/09_html/markdown_attr.text
2408
- test/testcases/block/09_html/not_parsed.html
2409
- test/testcases/block/09_html/not_parsed.text
2410
- test/testcases/block/09_html/parse_as_raw.options
2411
- test/testcases/block/09_html/parse_as_raw.text
2412
- test/testcases/block/09_html/parse_as_span.options
2413
- test/testcases/block/09_html/parse_block_html.html
2414
- test/testcases/block/09_html/parse_block_html.options
2415
- test/testcases/block/09_html/parse_block_html.text
2416
- test/testcases/block/09_html/simple.options
2417
- test/testcases/block/09_html/tables.html
2418
- test/testcases/block/09_html/tables.options
2419
- test/testcases/block/09_html/tables.text
2420
- test/testcases/block/12_extension/kdoptions.html
2421
- test/testcases/block/12_extension/kdoptions.text
2422
- test/testcases/span/05_html/markdown_attr.html
2423
- test/testcases/span/05_html/markdown_attr.text
2424
-
2425
- commit 0f63228e21f931929de590d9c7cfc4b9e03b9cef
2426
- Author: Thomas Leitner <t_leitner@gmx.at>
2427
- Date: Fri Nov 27 08:31:08 2009 +0100
2428
-
2429
- Added version number to quickref and syntax doc
2430
-
2431
- doc/quickref.page
2432
- doc/syntax.page
2433
-
2434
- commit e1ffeee1f23a027d307b41a385ccfbcde077b858
2435
- Author: Thomas Leitner <t_leitner@gmx.at>
2436
- Date: Thu Nov 26 20:49:16 2009 +0100
2437
-
2438
- Updated HTML block and span parser
2439
-
2440
- * span level HTML tags may now be broken across lines
2441
- * better parsing of block level HTML tags
2442
- * clarified some points regarding HTML parsing in the syntax spec
2443
-
2444
- doc/syntax.page
2445
- lib/kramdown/converter.rb
2446
- lib/kramdown/parser.rb
2447
- test/testcases/block/09_html/invalid_html_1.html
2448
- test/testcases/block/09_html/parse_as_raw.html
2449
- test/testcases/block/09_html/parse_as_raw.text
2450
- test/testcases/block/09_html/parse_as_span.html
2451
- test/testcases/block/09_html/simple.html
2452
- test/testcases/block/09_html/simple.text
2453
- test/testcases/block/12_extension/kdoptions.html
2454
- test/testcases/span/05_html/across_lines.html
2455
- test/testcases/span/05_html/across_lines.text
2456
- test/testcases/span/05_html/normal.html
2457
- test/testcases/span/05_html/normal.text
2458
-
2459
- commit d7bbb7efcf367b5eebbcbed80307f3c42b6ffbb3
2460
- Author: Thomas Leitner <t_leitner@gmx.at>
2461
- Date: Wed Nov 25 15:40:25 2009 +0100
2462
-
2463
- Updated release notes
2464
-
2465
- doc/news/release_0_2_0.page
2466
-
2467
- commit caf2275e87e1de4cea7f9bf10834e052e777dfd3
2468
- Author: Thomas Leitner <t_leitner@gmx.at>
2469
- Date: Wed Nov 25 15:38:43 2009 +0100
2470
-
2471
- Fixed bug in parsing of autolinks
2472
-
2473
- lib/kramdown/parser.rb
2474
- test/testcases/span/05_html/link_with_mailto.html
2475
- test/testcases/span/05_html/link_with_mailto.text
2476
-
2477
- commit fc8f8bebf47aad093a382885cb6fd8e92c93409c
2478
- Author: Thomas Leitner <t_leitner@gmx.at>
2479
- Date: Tue Nov 24 08:02:39 2009 +0100
2480
-
2481
- Updated parsing of HTML/XML elements
2482
-
2483
- * HTML tables should now be parsed correctly
2484
- * Slight modification of output for HTML elements that appear entirely on one line
2485
- * Unknown XML/HTML elements are not parsed at all now
2486
-
2487
- doc/syntax.page
2488
- lib/kramdown/converter.rb
2489
- lib/kramdown/parser.rb
2490
- test/testcases/block/09_html/parse_as_raw.html
2491
- test/testcases/block/09_html/parse_as_span.html
2492
- test/testcases/block/09_html/simple.html
2493
- test/testcases/block/09_html/tables.html
2494
- test/testcases/block/09_html/tables.text
2495
-
2496
- commit 19bd62ff33410bfe0d4b8674b7ed20191729d013
2497
- Author: Thomas Leitner <t_leitner@gmx.at>
2498
- Date: Tue Nov 24 07:28:41 2009 +0100
2499
-
2500
- Option :auto_ids now defaults to true
2501
-
2502
- Rakefile
2503
- doc/quickref.page
2504
- doc/syntax.page
2505
- lib/kramdown/document.rb
2506
- test/run_tests.rb
2507
- test/test_files.rb
2508
-
2509
- commit 8516e5b56008d601aa7301a9cde5d89190802be3
2510
- Author: Thomas Leitner <t_leitner@gmx.at>
2511
- Date: Tue Nov 24 07:25:06 2009 +0100
2512
-
2513
- Bumped version number, moved VERSION const to own file and added release notes file
2514
-
2515
- doc/news/release_0_2_0.page
2516
- lib/kramdown/document.rb
2517
- lib/kramdown/version.rb
2518
-
2519
- commit 8adb0b65681dc7c2f24bc01edeba488ac10beecd
2520
- Author: Thomas Leitner <t_leitner@gmx.at>
2521
- Date: Tue Nov 24 07:18:43 2009 +0100
2522
-
2523
- Fixed bug with header IDs
2524
-
2525
- When using :auto_ids=true and an IAL to assign an ID to a header,
2526
- two id attributes were falsely created.
2527
-
2528
- lib/kramdown/parser.rb
2529
- test/testcases/block/11_ial/auto_id_and_ial.html
2530
- test/testcases/block/11_ial/auto_id_and_ial.options
2531
- test/testcases/block/11_ial/auto_id_and_ial.text
2532
-
2533
- commit 6cc1874480b565da30fbf8699df938b7d52637fe
2534
- Author: Thomas Leitner <t_leitner@gmx.at>
2535
- Date: Sat Nov 21 08:44:47 2009 +0100
2536
-
2537
- Fixed copy-paste issue
2538
-
2539
- doc/default.template
2540
-
2541
- commit a790a15c11924f08acd39c7f198c6c71cadc80d3
2542
- Author: Thomas Leitner <t_leitner@gmx.at>
2543
- Date: Sat Nov 21 08:31:07 2009 +0100
2544
-
2545
- Small fix
2546
-
2547
- Rakefile
2548
-
2549
- commit b41caafafc80ad1beb44b80b925232edd8f6372f
2550
- Author: Thomas Leitner <t_leitner@gmx.at>
2551
- Date: Sat Nov 21 08:28:14 2009 +0100
2552
-
2553
- Added benchmark directory files to distribution files
2554
-
2555
- Rakefile
2556
-
2557
- commit dd90da66717ffc8a64d4b80ce259c301853876b1
2558
- Author: Thomas Leitner <t_leitner@gmx.at>
2559
- Date: Sat Nov 21 08:27:40 2009 +0100
2560
-
2561
- Added two utility files
2562
-
2563
- benchmark/testing.sh
2564
- benchmark/timing.sh
2565
-
2566
- commit 97ed0a61e78af3474a3a75ca491ae1ecf9e59343
2567
- Author: Thomas Leitner <t_leitner@gmx.at>
2568
- Date: Sat Nov 21 08:24:52 2009 +0100
2569
-
2570
- Some small fixes
2571
-
2572
- doc/img/image.jpg
2573
- doc/installation.page
2574
- doc/quickref.page
2575
-
2576
- commit 06c8546d1ecf8b0f61b86b5d2cc3eaec7f5cc49e
2577
- Author: Thomas Leitner <t_leitner@gmx.at>
2578
- Date: Sat Nov 21 08:11:01 2009 +0100
2579
-
2580
- Updated Rakefile
2581
-
2582
- * added new task for inserting copyright notices in files
2583
- * fixed the kramdown extension methods
2584
- * added README and AUTHORS files to the distribution files
2585
-
2586
- Rakefile
2587
-
2588
- commit 24290bdb38e87690e7e80e7bc7cac4b7a207638c
2589
- Author: Thomas Leitner <t_leitner@gmx.at>
2590
- Date: Sat Nov 21 08:09:55 2009 +0100
2591
-
2592
- Some small update to the documentation
2593
-
2594
- doc/index.page
2595
- doc/installation.page
2596
- doc/news/release_0_1_0.page
2597
- doc/syntax.page
2598
-
2599
- commit 9ae16c8c44c6332c1bc107d90bda1c1ae9b12cb9
2600
- Author: Thomas Leitner <t_leitner@gmx.at>
2601
- Date: Sat Nov 21 08:09:17 2009 +0100
2602
-
2603
- Added AUTHORS and README files
2604
-
2605
- AUTHORS
2606
- README
2607
-
2608
- commit 9343fb993576f58ad93bfb4fc730547399aee9f9
2609
- Author: Thomas Leitner <t_leitner@gmx.at>
2610
- Date: Sat Nov 21 08:08:46 2009 +0100
2611
-
2612
- Added copyright notices to files
2613
-
2614
- bin/kramdown
2615
- lib/kramdown.rb
2616
- lib/kramdown/converter.rb
2617
- lib/kramdown/document.rb
2618
- lib/kramdown/error.rb
2619
- lib/kramdown/extension.rb
2620
- lib/kramdown/parser.rb
2621
- lib/kramdown/parser/registry.rb
2622
- test/run_tests.rb
2623
- test/test_files.rb
2624
-
2625
- commit 87f1516a4f982a7009a14861b1c42f2dd611aa5b
2626
- Author: Thomas Leitner <t_leitner@gmx.at>
2627
- Date: Fri Nov 20 10:45:58 2009 +0100
2628
-
2629
- Some small refactorings
2630
-
2631
- * emphasis parsing redone in a not-hackish way
2632
- * warnings for unclosed HTML tags are now in the correct order
2633
- * image links can now be nested inside normal links
2634
- * removed whitspace checking hack in conversion of codeblocks
2635
- * refactored parsing of extension blocks
2636
-
2637
- lib/kramdown/converter.rb
2638
- lib/kramdown/parser.rb
2639
- test/testcases/span/01_link/image_in_a.html
2640
- test/testcases/span/01_link/image_in_a.text
2641
-
2642
- commit 416a225e9933ce6621b821a765b6e862c4e4df87
2643
- Author: Thomas Leitner <t_leitner@gmx.at>
2644
- Date: Tue Nov 17 16:19:30 2009 +0100
2645
-
2646
- Added custom error class and update error/warning messages
2647
-
2648
- lib/kramdown/document.rb
2649
- lib/kramdown/error.rb
2650
- lib/kramdown/parser.rb
2651
-
2652
- commit 866ed38853fc1fbed10d01655d6576daf38f47a4
2653
- Author: Thomas Leitner <t_leitner@gmx.at>
2654
- Date: Tue Nov 17 08:17:34 2009 +0100
2655
-
2656
- Small fix for HTML element output
2657
-
2658
- lib/kramdown/converter.rb
2659
-
2660
- commit 884b957151b7c5b37f4a8e1d9c51effd5c5648c0
2661
- Author: Thomas Leitner <t_leitner@gmx.at>
2662
- Date: Tue Nov 17 08:17:17 2009 +0100
2663
-
2664
- Updated extension mechanism
2665
-
2666
- * Needed first parameter of an extension method is now parser instance, not current tree
2667
- * Document instance need not be set on Extension#initialize anymore
2668
- * kdoptions extension updated to cover all options
2669
-
2670
- lib/kramdown/document.rb
2671
- lib/kramdown/extension.rb
2672
- lib/kramdown/parser.rb
2673
- test/testcases/block/12_extension/kdoptions.html
2674
- test/testcases/block/12_extension/kdoptions.text
2675
- test/testcases/block/12_extension/kdoptions2.html
2676
- test/testcases/block/12_extension/kdoptions2.text
2677
-
2678
- commit 4f3d904090b48de5525e43e6b2e4b3edd3d0c681
2679
- Author: Thomas Leitner <t_leitner@gmx.at>
2680
- Date: Tue Nov 17 07:44:12 2009 +0100
2681
-
2682
- Fixed problem with footnote numbering: option :footnote_nr now works
2683
-
2684
- lib/kramdown/converter.rb
2685
- test/testcases/span/04_footnote/footnote_nr.html
2686
- test/testcases/span/04_footnote/footnote_nr.options
2687
- test/testcases/span/04_footnote/footnote_nr.text
2688
-
2689
- commit 2596823c820e433adae373d650da89ef596034e9
2690
- Author: Thomas Leitner <t_leitner@gmx.at>
2691
- Date: Tue Nov 17 07:19:05 2009 +0100
2692
-
2693
- Small update to test runners
2694
-
2695
- test/run_tests.rb
2696
- test/test_files.rb
2697
-
2698
- commit 47a03717a8b9d23bc34232ed4877e943272013d3
2699
- Author: Thomas Leitner <t_leitner@gmx.at>
2700
- Date: Mon Nov 16 20:55:22 2009 +0100
2701
-
2702
- Fixed problem with HTML tags that must have a closing tag
2703
-
2704
- lib/kramdown/converter.rb
2705
- test/testcases/block/09_html/simple.html
2706
- test/testcases/block/09_html/simple.text
2707
-
2708
- commit 186f4adf9a0341516e3d69e87619c5c4f9fbeb28
2709
- Author: Thomas Leitner <t_leitner@gmx.at>
2710
- Date: Mon Nov 16 16:51:32 2009 +0100
2711
-
2712
- Updated parser and converter classes to need only min. number of necessary arguments
2713
-
2714
- lib/kramdown/converter.rb
2715
- lib/kramdown/document.rb
2716
- lib/kramdown/parser.rb
2717
-
2718
- commit 937f94b677b72e960f7694fb805985f215f36f79
2719
- Author: Thomas Leitner <t_leitner@gmx.at>
2720
- Date: Mon Nov 16 16:44:58 2009 +0100
2721
-
2722
- Updated API documentation
2723
-
2724
- lib/kramdown/converter.rb
2725
- lib/kramdown/document.rb
2726
- lib/kramdown/extension.rb
2727
- lib/kramdown/parser.rb
2728
- lib/kramdown/parser/registry.rb
2729
-
2730
- commit a6713a5d2a796907dbbe431cae5759308665cd8e
2731
- Author: Thomas Leitner <t_leitner@gmx.at>
2732
- Date: Mon Nov 16 08:05:59 2009 +0100
2733
-
2734
- Removed old rdoc options
2735
-
2736
- Rakefile
2737
-
2738
- commit cb8be4c9ec9ab2d4ee0e9b632b7d26dae081fc86
2739
- Author: Thomas Leitner <t_leitner@gmx.at>
2740
- Date: Sun Nov 15 10:15:25 2009 +0100
2741
-
2742
- Finished first version of quick reference page
2743
-
2744
- Rakefile
2745
- doc/quickref.page
2746
-
2747
- commit c302e96de735e2f473f96e3b09b6f4e2665cd4c3
2748
- Author: Thomas Leitner <t_leitner@gmx.at>
2749
- Date: Sun Nov 15 09:40:29 2009 +0100
2750
-
2751
- Removed sections spec from syntax document
2752
-
2753
- doc/syntax.page
2754
-
2755
- commit 592a2875f24713af89fde985c600f88c7bfc4d2c
2756
- Author: Thomas Leitner <t_leitner@gmx.at>
2757
- Date: Sun Nov 15 09:39:49 2009 +0100
2758
-
2759
- Fixed a problem with footnotes: parse tree was unintentionally modified
2760
-
2761
- lib/kramdown/converter.rb
2762
-
2763
- commit 892cf7893604df0d04e180564569cfd957cb70bd
2764
- Author: Thomas Leitner <t_leitner@gmx.at>
2765
- Date: Sat Nov 14 18:39:13 2009 +0100
2766
-
2767
- Added kdoptions extension
2768
-
2769
- doc/syntax.page
2770
- lib/kramdown/document.rb
2771
- lib/kramdown/extension.rb
2772
- test/testcases/block/12_extension/kdoptions.html
2773
- test/testcases/block/12_extension/kdoptions.text
2774
-
2775
- commit d0d13da1232c01ef2511ba87a741db16c59462ca
2776
- Author: Thomas Leitner <t_leitner@gmx.at>
2777
- Date: Sat Nov 14 15:01:21 2009 +0100
2778
-
2779
- Added some content to quick reference
2780
-
2781
- Rakefile
2782
- doc/default.css
2783
- doc/quickref.page
2784
-
2785
- commit 9e1899e811385bd3a9994bcd42b0c80fe993a5dc
2786
- Author: Thomas Leitner <t_leitner@gmx.at>
2787
- Date: Sat Nov 14 14:07:38 2009 +0100
2788
-
2789
- Fix for empty div tag: must have explicit closing tag
2790
-
2791
- lib/kramdown/converter.rb
2792
-
2793
- commit 16416ca4e610b2caab1d03c47e52904a8326816c
2794
- Author: Thomas Leitner <t_leitner@gmx.at>
2795
- Date: Sat Nov 14 11:09:15 2009 +0100
2796
-
2797
- Using string interpolation instead of concatenation bc its faster
2798
-
2799
- lib/kramdown/converter.rb
2800
-
2801
- commit 3111c48c2bfddcd4b89da25ee999242da803b866
2802
- Author: Thomas Leitner <t_leitner@gmx.at>
2803
- Date: Sat Nov 14 10:24:39 2009 +0100
2804
-
2805
- Moved handling of IALs from converter to parser
2806
-
2807
- doc/syntax.page
2808
- lib/kramdown/converter.rb
2809
- lib/kramdown/parser.rb
2810
- test/testcases/block/11_ial/simple.html
2811
- test/testcases/block/11_ial/simple.text
2812
-
2813
- commit 121f36cb599e985f0c9a1616c5087fc92467c709
2814
- Author: Thomas Leitner <t_leitner@gmx.at>
2815
- Date: Sat Nov 14 07:51:29 2009 +0100
2816
-
2817
- Implemented optional display of whitespace in code blocks
2818
-
2819
- doc/syntax.page
2820
- lib/kramdown/converter.rb
2821
- test/testcases/block/06_codeblock/whitespace.html
2822
- test/testcases/block/06_codeblock/whitespace.text
2823
-
2824
- commit c4fe93fc3eff24c970e22f2971c5c56f606c0eb3
2825
- Author: Thomas Leitner <t_leitner@gmx.at>
2826
- Date: Fri Nov 13 12:21:41 2009 +0100
2827
-
2828
- Added correct statcounter tracking code
2829
-
2830
- doc/default.template
2831
-
2832
- commit 380ab04699bb11096527e039435b17de794b15af
2833
- Author: Thomas Leitner <t_leitner@gmx.at>
2834
- Date: Fri Nov 13 10:46:22 2009 +0100
2835
-
2836
- Added transformation of ---, --, ..., << and >> into their entity counterparts
2837
-
2838
- doc/syntax.page
2839
- lib/kramdown/parser.rb
2840
- test/testcases/block/07_horizontal_rule/error.html
2841
- test/testcases/span/escaped_chars/normal.html
2842
- test/testcases/span/escaped_chars/normal.text
2843
- test/testcases/span/text_substitutions/typography.html
2844
- test/testcases/span/text_substitutions/typography.text
2845
-
2846
- commit 716ffc11058736318467fb036b0f9d40cbfe1f42
2847
- Author: Thomas Leitner <t_leitner@gmx.at>
2848
- Date: Thu Nov 12 20:18:52 2009 +0100
2849
-
2850
- Updated code and test cases to get better code coverage
2851
-
2852
- lib/kramdown/extension.rb
2853
- test/testcases/block/04_header/atx_header.html
2854
- test/testcases/block/04_header/atx_header.text
2855
- test/testcases/block/12_extension/nokramdown.html
2856
- test/testcases/block/12_extension/nokramdown.text
2857
-
2858
- commit b08d9e5d17d8ef3f04b95281827f5c73f5d22067
2859
- Author: Thomas Leitner <t_leitner@gmx.at>
2860
- Date: Thu Nov 12 09:00:01 2009 +0100
2861
-
2862
- Small fix for link ids: multiple spaces are converted to one
2863
-
2864
- doc/syntax.page
2865
- lib/kramdown/parser.rb
2866
- test/testcases/span/01_link/reference.html
2867
- test/testcases/span/01_link/reference.text
2868
-
2869
- commit d6f246053de97e1ced8abbeeca73cfda004393a2
2870
- Author: Thomas Leitner <t_leitner@gmx.at>
2871
- Date: Thu Nov 12 08:46:31 2009 +0100
2872
-
2873
- Now allowing link URLs to be enclosed in angle brackets
2874
-
2875
- doc/syntax.page
2876
- lib/kramdown/parser.rb
2877
- test/testcases/span/01_link/link_defs.text
2878
- test/testcases/span/01_link/links_with_angle_brackets.html
2879
- test/testcases/span/01_link/links_with_angle_brackets.text
2880
-
2881
- commit 5b5ec9ccf3b64540a96f8e82d50cd9ff4a3e7dce
2882
- Author: Thomas Leitner <t_leitner@gmx.at>
2883
- Date: Thu Nov 12 08:16:09 2009 +0100
2884
-
2885
- Now showing warnings in run_tests.rb when in verbose mode
2886
-
2887
- test/run_tests.rb
2888
-
2889
- commit 20d061f2ed6c60d6a931f8301a4c4857e3c2fd79
2890
- Author: Thomas Leitner <t_leitner@gmx.at>
2891
- Date: Thu Nov 12 08:15:39 2009 +0100
2892
-
2893
- Some small clarifications and fixes
2894
-
2895
- doc/syntax.page
2896
-
2897
- commit c59f2a75f04a0ce0ce0a6ce78d3b371ffd1542f4
2898
- Author: Thomas Leitner <t_leitner@gmx.at>
2899
- Date: Thu Nov 12 08:15:22 2009 +0100
2900
-
2901
- Further refactoring, footnotes work again
2902
-
2903
- lib/kramdown/converter.rb
2904
- lib/kramdown/parser.rb
2905
-
2906
- commit d672b45029488f43819cb341aed3c2eb5f0c7a25
2907
- Author: Thomas Leitner <t_leitner@gmx.at>
2908
- Date: Wed Nov 11 07:13:18 2009 +0100
2909
-
2910
- Refactored code and updated test cases
2911
-
2912
- lib/kramdown/converter.rb
2913
- lib/kramdown/parser.rb
2914
- test/testcases/block/08_list/mixed.html
2915
- test/testcases/block/08_list/mixed.text
2916
- test/testcases/block/08_list/nested.html
2917
- test/testcases/block/08_list/nested.text
2918
- test/testcases/block/09_html/parse_as_raw.html
2919
- test/testcases/block/09_html/parse_as_raw.text
2920
- test/testcases/block/09_html/raw_html.html
2921
- test/testcases/block/09_html/raw_html.text
2922
- test/testcases/block/09_html/simple.html
2923
- test/testcases/block/09_html/simple.text
2924
- test/testcases/block/12_extension/ignored.html
2925
- test/testcases/block/12_extension/ignored.text
2926
- test/testcases/span/01_link/link_defs.text
2927
- test/testcases/span/04_footnote/definitions.text
2928
- test/testcases/span/04_footnote/markers.html
2929
- test/testcases/span/04_footnote/markers.text
2930
- test/testcases/span/ial/simple.html
2931
- test/testcases/span/ial/simple.text
2932
-
2933
- commit 6c3d5a4ff4dd8d49fc4732c78dd265394d6db47c
2934
- Author: Thomas Leitner <t_leitner@gmx.at>
2935
- Date: Mon Nov 9 08:16:46 2009 +0100
2936
-
2937
- Removed some comments
2938
-
2939
- lib/kramdown/parser.rb
2940
-
2941
- commit 8b877bbd216da87ef7ac316ad23ddddc758c0762
2942
- Author: Thomas Leitner <t_leitner@gmx.at>
2943
- Date: Mon Nov 9 07:37:42 2009 +0100
2944
-
2945
- Added test cases for empty span level elements
2946
-
2947
- test/testcases/span/01_link/empty.html
2948
- test/testcases/span/01_link/empty.text
2949
- test/testcases/span/02_emphasis/empty.html
2950
- test/testcases/span/02_emphasis/empty.text
2951
- test/testcases/span/03_codespan/empty.html
2952
- test/testcases/span/03_codespan/empty.text
2953
-
2954
- commit 59e453a4db903b8a79bf30e7a651dc24a93f96bb
2955
- Author: Thomas Leitner <t_leitner@gmx.at>
2956
- Date: Sun Nov 8 18:31:26 2009 +0100
2957
-
2958
- Fixed warning on Ruby 1.9.2
2959
-
2960
- lib/kramdown/parser/registry.rb
2961
-
2962
- commit aa38018f78edcc06916aa8a81d5dae734295bb72
2963
- Author: Thomas Leitner <t_leitner@gmx.at>
2964
- Date: Sun Nov 8 18:20:06 2009 +0100
2965
-
2966
- Updated Rakefile tasks
2967
-
2968
- Rakefile
2969
-
2970
- commit 83a77a129c02a29faba980b6f557b77bd771f28a
2971
- Author: Thomas Leitner <t_leitner@gmx.at>
2972
- Date: Sun Nov 8 18:19:57 2009 +0100
2973
-
2974
- Corrected spelling of kramdown
2975
-
2976
- benchmark/benchmark.rb
2977
-
2978
- commit 241903b2cc74c6be037e5c247d0ea61638f92964
2979
- Author: Thomas Leitner <t_leitner@gmx.at>
2980
- Date: Sun Nov 8 18:19:12 2009 +0100
2981
-
2982
- Updated website for first release
2983
-
2984
- doc/default.css
2985
- doc/default.template
2986
- doc/documentation.page
2987
- doc/img/bg.jpg
2988
- doc/img/image.jpg
2989
- doc/img/line.jpg
2990
- doc/img/shadow.jpg
2991
- doc/index.page
2992
- doc/installation.page
2993
- doc/news.feed
2994
- doc/news.page
2995
- doc/news/release_0_1_0.page
2996
- doc/syntax.page
2997
- doc/tests.page
2998
- doc/virtual
2999
- misc/default.css
3000
- misc/default.template
3001
- misc/htmldoc.metainfo
3002
- misc/htmldoc.virtual
3003
- misc/images/arrow.gif
3004
- misc/images/error.gif
3005
- misc/images/exclamation.gif
3006
- misc/images/headerbg.jpg
3007
- misc/images/information.gif
3008
- misc/images/quote.gif
3009
- website/src/default.template
3010
- website/src/images/feed.gif
3011
- website/src/index.page
3012
- website/src/metainfo
3013
- website/src/news/default.template
3014
- website/src/news/index.page
3015
- website/src/news/news.feed
3016
- website/src/news/release_0_1_0.page
3017
- website/src/virtual
3018
-
3019
- commit ef6dde9d6506f9434d0f5fbccb00fb99d2d65aea
3020
- Author: Thomas Leitner <t_leitner@gmx.at>
3021
- Date: Sat Nov 7 10:50:57 2009 +0100
3022
-
3023
- Small update to benchmark suite
3024
-
3025
- benchmark/benchmark.rb
3026
-
3027
- commit efa364c09d33d466dc53d5b0c25e960e90c18170
3028
- Author: Thomas Leitner <t_leitner@gmx.at>
3029
- Date: Sat Nov 7 08:43:24 2009 +0100
3030
-
3031
- Added the nokramdown extension
3032
-
3033
- doc/syntax.page
3034
- lib/kramdown/extension.rb
3035
-
3036
- commit 5199da2955a5125f502ca5ca12381221d48286e9
3037
- Author: Thomas Leitner <t_leitner@gmx.at>
3038
- Date: Sat Nov 7 07:48:01 2009 +0100
3039
-
3040
- Fixed problem with horizontal rule regexp parsing lines with mixed chars
3041
-
3042
- lib/kramdown/parser.rb
3043
- test/testcases/block/07_horizontal_rule/error.html
3044
- test/testcases/block/07_horizontal_rule/error.text
3045
- test/testcases/block/07_horizontal_rule/normal.html
3046
- test/testcases/block/07_horizontal_rule/normal.text
3047
-
3048
- commit 37201f920274b163a356888f24d4d19fbd162ef1
3049
- Author: Thomas Leitner <t_leitner@gmx.at>
3050
- Date: Fri Nov 6 16:14:25 2009 +0100
3051
-
3052
- Updated COPYING file
3053
-
3054
- COPYING
3055
-
3056
- commit 23eadb16a12ee071415edd1877d06248d8b1f12a
3057
- Author: Thomas Leitner <t_leitner@gmx.at>
3058
- Date: Fri Nov 6 16:13:47 2009 +0100
3059
-
3060
- Added benchmark
3061
-
3062
- benchmark/benchmark.rb
3063
- benchmark/mdbasics.text
3064
- benchmark/mdsyntax.text
3065
-
3066
- commit 22dcddc2026ddab3d3c386f1a8f21353d4f626b2
3067
- Author: Thomas Leitner <t_leitner@gmx.at>
3068
- Date: Fri Nov 6 15:06:26 2009 +0100
3069
-
3070
- Added test case for escaped chars
3071
-
3072
- doc/syntax.page
3073
- test/testcases/span/escaped_chars/normal.html
3074
- test/testcases/span/escaped_chars/normal.text
3075
-
3076
- commit 3e51f4c41feff8fa5912b4ad93c4054183d3d5e5
3077
- Author: Thomas Leitner <t_leitner@gmx.at>
3078
- Date: Fri Nov 6 15:01:50 2009 +0100
3079
-
3080
- Clarified what punctuation characters are
3081
-
3082
- doc/syntax.page
3083
- lib/kramdown/parser.rb
3084
- test/testcases/span/01_link/link_defs.html
3085
- test/testcases/span/01_link/link_defs.text
3086
-
3087
- commit 200550d3851b57b0d3b3acd90a592881dae3c447
3088
- Author: Thomas Leitner <t_leitner@gmx.at>
3089
- Date: Thu Nov 5 20:53:20 2009 +0100
3090
-
3091
- Removed old HTML parsing library
3092
-
3093
- lib/kramdown/parser/html.rb
3094
-
3095
- commit 4305ef80f68fac62092747a88a95f39b12cd0a9b
3096
- Author: Thomas Leitner <t_leitner@gmx.at>
3097
- Date: Thu Nov 5 20:51:39 2009 +0100
3098
-
3099
- Now using GPL v3 as license
3100
-
3101
- COPYING
3102
- GPL
3103
-
3104
- commit a5cb7ce5ff9c513be673f0c80db6138c25616f14
3105
- Author: Thomas Leitner <t_leitner@gmx.at>
3106
- Date: Thu Nov 5 20:49:45 2009 +0100
3107
-
3108
- Removed dcov from Rakefile and updated tag line
3109
-
3110
- Rakefile
3111
-
3112
- commit 8d755f9fee0daf5d04b479ece5dce6a9d2d5e463
3113
- Author: Thomas Leitner <t_leitner@gmx.at>
3114
- Date: Thu Nov 5 09:34:30 2009 +0100
3115
-
3116
- Small update to extension block spec
3117
-
3118
- doc/syntax.page
3119
-
3120
- commit 9b0888387b1e36c4243c2695b0d53b6258cd3382
3121
- Author: Thomas Leitner <t_leitner@gmx.at>
3122
- Date: Thu Nov 5 09:34:08 2009 +0100
3123
-
3124
- Updated extension block test cases
3125
-
3126
- test/testcases/block/12_extension/comment.html
3127
- test/testcases/block/12_extension/comment.text
3128
-
3129
- commit 08b805329452d270575e97f78239b1f0bc77b40e
3130
- Author: Thomas Leitner <t_leitner@gmx.at>
3131
- Date: Thu Nov 5 09:33:49 2009 +0100
3132
-
3133
- Implemented extension blocks
3134
-
3135
- lib/kramdown/document.rb
3136
- lib/kramdown/extension.rb
3137
- lib/kramdown/parser.rb
3138
-
3139
- commit bd02049efb2ae2b270b22cb6ac1ebb6027c14f32
3140
- Author: Thomas Leitner <t_leitner@gmx.at>
3141
- Date: Thu Nov 5 08:41:15 2009 +0100
3142
-
3143
- Fixed a problem with running kramdown on 1.8.7
3144
-
3145
- lib/kramdown/parser.rb
3146
-
3147
- commit 10fafc53b0cb291499ad4fd30ce313732a63c608
3148
- Author: Thomas Leitner <t_leitner@gmx.at>
3149
- Date: Wed Nov 4 17:01:28 2009 +0100
3150
-
3151
- Added main file for require
3152
-
3153
- lib/kramdown.rb
3154
-
3155
- commit 7bec875aa813e10ef35ba7473a7447031d6b2020
3156
- Author: Thomas Leitner <t_leitner@gmx.at>
3157
- Date: Wed Nov 4 17:00:39 2009 +0100
3158
-
3159
- Updated parser and converter to adhere to spec
3160
-
3161
- lib/kramdown/converter.rb
3162
- lib/kramdown/document.rb
3163
- lib/kramdown/parser.rb
3164
- lib/kramdown/parser/registry.rb
3165
-
3166
- commit 2c180f53e87683622f6a8d1a76ead51e851540cb
3167
- Author: Thomas Leitner <t_leitner@gmx.at>
3168
- Date: Wed Nov 4 16:53:13 2009 +0100
3169
-
3170
- Small update to run_tests script
3171
-
3172
- test/run_tests.rb
3173
-
3174
- commit 5d85e994fad10f8111091a5281305612f4fc8566
3175
- Author: Thomas Leitner <t_leitner@gmx.at>
3176
- Date: Wed Nov 4 16:45:52 2009 +0100
3177
-
3178
- Small fix for link test case
3179
-
3180
- test/testcases/span/01_link/imagelinks.html
3181
-
3182
- commit ce32e8ad9863f44ddaeb90f3ad1bad58b6cdd0dc
3183
- Author: Thomas Leitner <t_leitner@gmx.at>
3184
- Date: Wed Nov 4 09:14:43 2009 +0100
3185
-
3186
- Another bunch of updates to the syntax spec
3187
-
3188
- doc/syntax.page
3189
-
3190
- commit 484b49e6bb88ef85d7184b3672e17dcf532526d9
3191
- Author: Thomas Leitner <t_leitner@gmx.at>
3192
- Date: Wed Nov 4 09:12:34 2009 +0100
3193
-
3194
- Updated various block test cases
3195
-
3196
- test/testcases/block/06_codeblock/with_blank_line.html
3197
- test/testcases/block/06_codeblock/with_blank_line.text
3198
- test/testcases/block/08_list/escaping.html
3199
- test/testcases/block/08_list/escaping.text
3200
- test/testcases/block/08_list/list_and_others.html
3201
- test/testcases/block/08_list/list_and_others.text
3202
- test/testcases/block/11_ial/simple.html
3203
- test/testcases/block/11_ial/simple.text
3204
-
3205
- commit 2711570e47ceb56017eec3b1e668b6647c6a9cfc
3206
- Author: Thomas Leitner <t_leitner@gmx.at>
3207
- Date: Wed Nov 4 09:11:34 2009 +0100
3208
-
3209
- Updated HTML block test cases to adhere to spec
3210
-
3211
- test/testcases/block/09_html/auto_parse_block_html.html
3212
- test/testcases/block/09_html/comment.html
3213
- test/testcases/block/09_html/comment.text
3214
- test/testcases/block/09_html/html_and_codeblocks.html
3215
- test/testcases/block/09_html/invalid_html_1.html
3216
- test/testcases/block/09_html/invalid_html_2.html
3217
- test/testcases/block/09_html/parse_as_span.html
3218
- test/testcases/block/09_html/parse_as_span.text
3219
- test/testcases/block/09_html/processing_instruction.html
3220
- test/testcases/block/09_html/processing_instruction.text
3221
- test/testcases/block/09_html/raw_html.html
3222
- test/testcases/block/09_html/raw_html.text
3223
- test/testcases/block/09_html/simple.html
3224
- test/testcases/block/09_html/simple.options
3225
- test/testcases/block/09_html/simple.text
3226
-
3227
- commit 858df82af083e4b9a45bf4a61990d2aebabf7072
3228
- Author: Thomas Leitner <t_leitner@gmx.at>
3229
- Date: Wed Nov 4 09:09:39 2009 +0100
3230
-
3231
- Updated and rearranged span test cases
3232
-
3233
- test/testcases/attribute_lists/ial_span.html
3234
- test/testcases/attribute_lists/ial_span.text
3235
- test/testcases/autolinks/url_links.html
3236
- test/testcases/autolinks/url_links.text
3237
- test/testcases/line_breaks/normal.html
3238
- test/testcases/line_breaks/normal.text
3239
- test/testcases/span/02_emphasis/errors.html
3240
- test/testcases/span/02_emphasis/errors.text
3241
- test/testcases/span/02_emphasis/nesting.html
3242
- test/testcases/span/02_emphasis/nesting.text
3243
- test/testcases/span/02_emphasis/normal.html
3244
- test/testcases/span/02_emphasis/normal.text
3245
- test/testcases/span/03_codespan/normal.html
3246
- test/testcases/span/03_codespan/normal.text
3247
- test/testcases/span/04_footnote/markers.html
3248
- test/testcases/span/05_html/normal.html
3249
- test/testcases/span/05_html/normal.text
3250
- test/testcases/span/autolinks/url_links.html
3251
- test/testcases/span/autolinks/url_links.text
3252
- test/testcases/span/ial/simple.html
3253
- test/testcases/span/ial/simple.text
3254
- test/testcases/span/line_breaks/normal.html
3255
- test/testcases/span/line_breaks/normal.text
3256
- test/testcases/span/text_substitutions/entities.html
3257
- test/testcases/span/text_substitutions/entities.text
3258
- test/testcases/span/text_substitutions/greaterthan.html
3259
- test/testcases/span/text_substitutions/greaterthan.text
3260
- test/testcases/span/text_substitutions/lowerthan.html
3261
- test/testcases/span/text_substitutions/lowerthan.text
3262
- test/testcases/text_substitutions/ampersands.html
3263
- test/testcases/text_substitutions/ampersands.text
3264
- test/testcases/text_substitutions/greaterthan.html
3265
- test/testcases/text_substitutions/greaterthan.text
3266
- test/testcases/text_substitutions/lowerthan.html
3267
- test/testcases/text_substitutions/lowerthan.text
3268
-
3269
- commit 5a8286a877a3b9e2a868c06e78a0db57483a0e42
3270
- Author: Thomas Leitner <t_leitner@gmx.at>
3271
- Date: Sat Oct 24 22:24:39 2009 +0200
3272
-
3273
- Small fix in footnote definition test case
3274
-
3275
- test/testcases/span/04_footnote/definitions.html
3276
-
3277
- commit a14d9a1062e8516a0a34db1ed69aa33a3a8c876e
3278
- Author: Thomas Leitner <t_leitner@gmx.at>
3279
- Date: Sat Oct 24 17:57:16 2009 +0200
3280
-
3281
- Updated list test cases to adhere to spec
3282
-
3283
- test/testcases/block/08_list/list_and_others.html
3284
- test/testcases/block/08_list/list_and_others.text
3285
- test/testcases/block/08_list/mixed.text
3286
- test/testcases/block/08_list/nested.text
3287
- test/testcases/block/08_list/simple_ul.html
3288
- test/testcases/block/08_list/simple_ul.text
3289
- test/testcases/block/08_list/special_cases.html
3290
- test/testcases/block/08_list/special_cases.text
3291
-
3292
- commit 0b80a72a1757faa6314b415751a738ff1cc78d8d
3293
- Author: Thomas Leitner <t_leitner@gmx.at>
3294
- Date: Sat Oct 24 17:56:25 2009 +0200
3295
-
3296
- Clarified use of tabs and updated list spec
3297
-
3298
- doc/syntax.page
3299
-
3300
- commit 6c33865ed46b7d5aa7ce229c39b64a5bcb6bb0e3
3301
- Author: Thomas Leitner <t_leitner@gmx.at>
3302
- Date: Fri Oct 23 16:24:47 2009 +0200
3303
-
3304
- Adjusted block test cases to conform to spec
3305
-
3306
- test/testcases/block/01_blank_line/spaces.html
3307
- test/testcases/block/01_blank_line/tabs.html
3308
- test/testcases/block/02_eob/beginning.html
3309
- test/testcases/block/02_eob/end.html
3310
- test/testcases/block/02_eob/middle.html
3311
- test/testcases/block/03_paragraph/indented.html
3312
- test/testcases/block/03_paragraph/indented.text
3313
- test/testcases/block/04_header/atx_header.html
3314
- test/testcases/block/04_header/setext_header.html
3315
- test/testcases/block/05_blockquote/nested.html
3316
- test/testcases/block/06_codeblock/error.html
3317
- test/testcases/block/06_codeblock/error.text
3318
- test/testcases/block/10_ald/simple.html
3319
- test/testcases/block/11_ial/simple.html
3320
-
3321
- commit ba929f2b0274b527390b2eead0568527c0aa4316
3322
- Author: Thomas Leitner <t_leitner@gmx.at>
3323
- Date: Thu Oct 22 20:56:31 2009 +0200
3324
-
3325
- Updated syntax doc - code blocks may be preceded directly by paragraphs
3326
-
3327
- doc/syntax.page
3328
-
3329
- commit 0d8965a57963b3e6b83bc7076d9f09b93d47fe3a
3330
- Author: Thomas Leitner <t_leitner@gmx.at>
3331
- Date: Thu Oct 22 20:54:58 2009 +0200
3332
-
3333
- Deleted test cases for setting options via email like headers
3334
-
3335
- test/testcases/email_header/normal_header.html
3336
- test/testcases/email_header/normal_header.text
3337
-
3338
- commit 9a6dbf97e04e048f7e0c56fa1893bbdd0d6610f5
3339
- Author: Thomas Leitner <t_leitner@gmx.at>
3340
- Date: Thu Oct 22 20:54:29 2009 +0200
3341
-
3342
- Moved Document class to lib/kramdown/document.rb file
3343
-
3344
- lib/kramdown.rb
3345
- lib/kramdown/document.rb
3346
-
3347
- commit 35b62cdd076fb89c7f9ef78af53ec8229ff536b5
3348
- Author: Thomas Leitner <t_leitner@gmx.at>
3349
- Date: Wed Oct 21 15:28:06 2009 +0200
3350
-
3351
- Small updated to syntax spec
3352
-
3353
- doc/syntax.page
3354
-
3355
- commit 2da8d4841b43e8ba5633e1dee47d3da2ae28b0b0
3356
- Author: Thomas Leitner <t_leitner@gmx.at>
3357
- Date: Wed Oct 21 08:21:58 2009 +0200
3358
-
3359
- Updated span level element testcases
3360
-
3361
- test/testcases/codespans/errors.html
3362
- test/testcases/codespans/errors.text
3363
- test/testcases/codespans/normal.html
3364
- test/testcases/codespans/normal.text
3365
- test/testcases/emphases/errors.html
3366
- test/testcases/emphases/errors.text
3367
- test/testcases/emphases/normal.html
3368
- test/testcases/emphases/normal.text
3369
- test/testcases/footnotes/definitions.html
3370
- test/testcases/footnotes/definitions.text
3371
- test/testcases/footnotes/markers.html
3372
- test/testcases/footnotes/markers.text
3373
- test/testcases/html_inline/normal.html
3374
- test/testcases/html_inline/normal.text
3375
- test/testcases/links/imagelinks.html
3376
- test/testcases/links/imagelinks.text
3377
- test/testcases/links/inline.html
3378
- test/testcases/links/inline.text
3379
- test/testcases/links/link_defs.html
3380
- test/testcases/links/link_defs.text
3381
- test/testcases/links/reference.html
3382
- test/testcases/links/reference.text
3383
- test/testcases/span/01_link/imagelinks.html
3384
- test/testcases/span/01_link/imagelinks.text
3385
- test/testcases/span/01_link/inline.html
3386
- test/testcases/span/01_link/inline.text
3387
- test/testcases/span/01_link/link_defs.html
3388
- test/testcases/span/01_link/link_defs.text
3389
- test/testcases/span/01_link/reference.html
3390
- test/testcases/span/01_link/reference.text
3391
- test/testcases/span/02_emphasis/errors.html
3392
- test/testcases/span/02_emphasis/errors.text
3393
- test/testcases/span/02_emphasis/normal.html
3394
- test/testcases/span/02_emphasis/normal.text
3395
- test/testcases/span/03_codespan/errors.html
3396
- test/testcases/span/03_codespan/errors.text
3397
- test/testcases/span/03_codespan/normal.html
3398
- test/testcases/span/03_codespan/normal.text
3399
- test/testcases/span/04_footnote/definitions.html
3400
- test/testcases/span/04_footnote/definitions.text
3401
- test/testcases/span/04_footnote/markers.html
3402
- test/testcases/span/04_footnote/markers.text
3403
- test/testcases/span/05_html/normal.html
3404
- test/testcases/span/05_html/normal.text
3405
-
3406
- commit 94f5780edc4baa0e2ae7ec0924a9012675b8a1e5
3407
- Author: Thomas Leitner <t_leitner@gmx.at>
3408
- Date: Wed Oct 21 07:55:43 2009 +0200
3409
-
3410
- Updated ALD, block IAL testcases and added simple extension block test case
3411
-
3412
- test/testcases/attribute_lists/ald.html
3413
- test/testcases/attribute_lists/ald.text
3414
- test/testcases/attribute_lists/ial_block.html
3415
- test/testcases/attribute_lists/ial_block.text
3416
- test/testcases/block/10_ald/simple.html
3417
- test/testcases/block/10_ald/simple.text
3418
- test/testcases/block/11_ial/simple.html
3419
- test/testcases/block/11_ial/simple.text
3420
- test/testcases/block/12_extension/comment.html
3421
- test/testcases/block/12_extension/comment.text
3422
-
3423
- commit 774cefd0bc6ad28a7f1ea6c675e7e1ee5fbc2279
3424
- Author: Thomas Leitner <t_leitner@gmx.at>
3425
- Date: Wed Oct 21 07:41:48 2009 +0200
3426
-
3427
- Some more updates to syntax spec
3428
-
3429
- * Reviewed the span level elements and slightly updated their spec
3430
- * Add block level element for defining extension blocks
3431
-
3432
- doc/syntax.page
3433
-
3434
- commit 2e4c49c63883dec300beaa85c5346551a398cd78
3435
- Author: Thomas Leitner <t_leitner@gmx.at>
3436
- Date: Mon Oct 19 18:22:19 2009 +0200
3437
-
3438
- Updated paragraph test cases
3439
-
3440
- test/testcases/block/03_paragraph/indented.html
3441
- test/testcases/block/03_paragraph/indented.text
3442
-
3443
- commit 77be09026314e7441cb9517f0d7f529532cbda4f
3444
- Author: Thomas Leitner <t_leitner@gmx.at>
3445
- Date: Mon Oct 19 18:21:30 2009 +0200
3446
-
3447
- Updated block html test cases
3448
-
3449
- test/testcases/block/09_html/auto_parse_block_html.html
3450
- test/testcases/block/09_html/auto_parse_block_html.options
3451
- test/testcases/block/09_html/auto_parse_block_html.text
3452
- test/testcases/block/09_html/comment.html
3453
- test/testcases/block/09_html/comment.text
3454
- test/testcases/block/09_html/filtered_html.html
3455
- test/testcases/block/09_html/filtered_html.options
3456
- test/testcases/block/09_html/filtered_html.text
3457
- test/testcases/block/09_html/html_and_codeblocks.html
3458
- test/testcases/block/09_html/html_and_codeblocks.options
3459
- test/testcases/block/09_html/html_and_codeblocks.text
3460
- test/testcases/block/09_html/invalid_html_1.html
3461
- test/testcases/block/09_html/invalid_html_1.text
3462
- test/testcases/block/09_html/invalid_html_2.html
3463
- test/testcases/block/09_html/invalid_html_2.text
3464
- test/testcases/block/09_html/processing_instruction.html
3465
- test/testcases/block/09_html/processing_instruction.text
3466
- test/testcases/block/09_html/simple.html
3467
- test/testcases/block/09_html/simple.options
3468
- test/testcases/block/09_html/simple.text
3469
- test/testcases/html_blocks/auto_parse_block_html.html
3470
- test/testcases/html_blocks/auto_parse_block_html.options
3471
- test/testcases/html_blocks/auto_parse_block_html.text
3472
- test/testcases/html_blocks/comment.html
3473
- test/testcases/html_blocks/comment.text
3474
- test/testcases/html_blocks/filtered_html.html
3475
- test/testcases/html_blocks/filtered_html.options
3476
- test/testcases/html_blocks/filtered_html.text
3477
- test/testcases/html_blocks/html_and_codeblocks.html
3478
- test/testcases/html_blocks/html_and_codeblocks.options
3479
- test/testcases/html_blocks/html_and_codeblocks.text
3480
- test/testcases/html_blocks/invalid_html_1.html
3481
- test/testcases/html_blocks/invalid_html_1.text
3482
- test/testcases/html_blocks/invalid_html_2.html
3483
- test/testcases/html_blocks/invalid_html_2.text
3484
- test/testcases/html_blocks/processing_instruction.html
3485
- test/testcases/html_blocks/processing_instruction.text
3486
- test/testcases/html_blocks/simple.html
3487
- test/testcases/html_blocks/simple.options
3488
- test/testcases/html_blocks/simple.text
3489
-
3490
- commit 621c4d49878b3ab7d5756b8d3eb1e1b8a1032bec
3491
- Author: Thomas Leitner <t_leitner@gmx.at>
3492
- Date: Mon Oct 19 18:23:15 2009 +0200
3493
-
3494
- Modifications regarding paragraphs and HTML blocks
3495
-
3496
- * Code blocks cannot directly follow paragraphs anymore, there needs
3497
- to be a blank line between them
3498
- * HTML blocks are now better defined
3499
-
3500
- doc/syntax.page
3501
-
3502
- commit 5dfab8e7da0c4d6d5027277b5c7a5741ff558529
3503
- Author: Thomas Leitner <t_leitner@gmx.at>
3504
- Date: Fri Oct 16 21:20:21 2009 +0200
3505
-
3506
- Updated test cases
3507
-
3508
- * Moved block test cases into block/ sub directory
3509
- * Added test cases for blank lines and EOB marker
3510
- * Adjusted test cases to comply to specification
3511
-
3512
- test/testcases/block/01_blank_line/spaces.html
3513
- test/testcases/block/01_blank_line/spaces.text
3514
- test/testcases/block/01_blank_line/tabs.html
3515
- test/testcases/block/01_blank_line/tabs.text
3516
- test/testcases/block/02_eob/beginning.html
3517
- test/testcases/block/02_eob/beginning.text
3518
- test/testcases/block/02_eob/end.html
3519
- test/testcases/block/02_eob/end.text
3520
- test/testcases/block/02_eob/middle.html
3521
- test/testcases/block/02_eob/middle.text
3522
- test/testcases/block/03_paragraph/indented.html
3523
- test/testcases/block/03_paragraph/indented.text
3524
- test/testcases/block/03_paragraph/no_newline_at_end.html
3525
- test/testcases/block/03_paragraph/no_newline_at_end.text
3526
- test/testcases/block/03_paragraph/one_para.html
3527
- test/testcases/block/03_paragraph/one_para.text
3528
- test/testcases/block/03_paragraph/two_para.html
3529
- test/testcases/block/03_paragraph/two_para.text
3530
- test/testcases/block/04_header/atx_header.html
3531
- test/testcases/block/04_header/atx_header.text
3532
- test/testcases/block/04_header/atx_header_no_newline_at_end.html
3533
- test/testcases/block/04_header/atx_header_no_newline_at_end.text
3534
- test/testcases/block/04_header/setext_header.html
3535
- test/testcases/block/04_header/setext_header.text
3536
- test/testcases/block/04_header/setext_header_no_newline_at_end.html
3537
- test/testcases/block/04_header/setext_header_no_newline_at_end.text
3538
- test/testcases/block/04_header/with_auto_ids.html
3539
- test/testcases/block/04_header/with_auto_ids.options
3540
- test/testcases/block/04_header/with_auto_ids.text
3541
- test/testcases/block/05_blockquote/indented.html
3542
- test/testcases/block/05_blockquote/indented.text
3543
- test/testcases/block/05_blockquote/nested.html
3544
- test/testcases/block/05_blockquote/nested.text
3545
- test/testcases/block/05_blockquote/no_newline_at_end.html
3546
- test/testcases/block/05_blockquote/no_newline_at_end.text
3547
- test/testcases/block/05_blockquote/only_first_quoted.html
3548
- test/testcases/block/05_blockquote/only_first_quoted.text
3549
- test/testcases/block/05_blockquote/with_code_blocks.html
3550
- test/testcases/block/05_blockquote/with_code_blocks.text
3551
- test/testcases/block/06_codeblock/no_newline_at_end.html
3552
- test/testcases/block/06_codeblock/no_newline_at_end.text
3553
- test/testcases/block/06_codeblock/normal.html
3554
- test/testcases/block/06_codeblock/normal.text
3555
- test/testcases/block/06_codeblock/tilde_syntax.html
3556
- test/testcases/block/06_codeblock/tilde_syntax.text
3557
- test/testcases/block/06_codeblock/with_blank_line.html
3558
- test/testcases/block/06_codeblock/with_blank_line.text
3559
- test/testcases/block/06_codeblock/with_eob_marker.html
3560
- test/testcases/block/06_codeblock/with_eob_marker.text
3561
- test/testcases/block/07_horizontal_rule/normal.html
3562
- test/testcases/block/07_horizontal_rule/normal.text
3563
- test/testcases/block/08_list/escaping.html
3564
- test/testcases/block/08_list/escaping.text
3565
- test/testcases/block/08_list/list_and_hr.html
3566
- test/testcases/block/08_list/list_and_hr.text
3567
- test/testcases/block/08_list/list_and_others.html
3568
- test/testcases/block/08_list/list_and_others.text
3569
- test/testcases/block/08_list/mixed.html
3570
- test/testcases/block/08_list/mixed.text
3571
- test/testcases/block/08_list/nested.html
3572
- test/testcases/block/08_list/nested.text
3573
- test/testcases/block/08_list/other_first_element.html
3574
- test/testcases/block/08_list/other_first_element.text
3575
- test/testcases/block/08_list/simple_ol.html
3576
- test/testcases/block/08_list/simple_ol.text
3577
- test/testcases/block/08_list/simple_ul.html
3578
- test/testcases/block/08_list/simple_ul.text
3579
- test/testcases/block/08_list/single_item.html
3580
- test/testcases/block/08_list/single_item.text
3581
- test/testcases/block/08_list/special_cases.html
3582
- test/testcases/block/08_list/special_cases.text
3583
- test/testcases/blockquotes/indented.html
3584
- test/testcases/blockquotes/indented.text
3585
- test/testcases/blockquotes/nested.html
3586
- test/testcases/blockquotes/nested.text
3587
- test/testcases/blockquotes/no_newline_at_end.html
3588
- test/testcases/blockquotes/no_newline_at_end.text
3589
- test/testcases/blockquotes/only_first_quoted.html
3590
- test/testcases/blockquotes/only_first_quoted.text
3591
- test/testcases/blockquotes/with_code_blocks.html
3592
- test/testcases/blockquotes/with_code_blocks.text
3593
- test/testcases/codeblocks/no_newline_at_end.html
3594
- test/testcases/codeblocks/no_newline_at_end.text
3595
- test/testcases/codeblocks/normal.html
3596
- test/testcases/codeblocks/normal.text
3597
- test/testcases/codeblocks/tilde_syntax.html
3598
- test/testcases/codeblocks/tilde_syntax.text
3599
- test/testcases/codeblocks/with_blank_line.html
3600
- test/testcases/codeblocks/with_blank_line.text
3601
- test/testcases/codeblocks/with_eob_marker.html
3602
- test/testcases/codeblocks/with_eob_marker.text
3603
- test/testcases/headers/atx_header.html
3604
- test/testcases/headers/atx_header.text
3605
- test/testcases/headers/setext_header.html
3606
- test/testcases/headers/setext_header.text
3607
- test/testcases/headers/with_auto_ids.html
3608
- test/testcases/headers/with_auto_ids.options
3609
- test/testcases/headers/with_auto_ids.text
3610
- test/testcases/horizontal_rules/normal.html
3611
- test/testcases/horizontal_rules/normal.text
3612
- test/testcases/lists/escaping.html
3613
- test/testcases/lists/escaping.text
3614
- test/testcases/lists/list_and_hr.html
3615
- test/testcases/lists/list_and_hr.text
3616
- test/testcases/lists/list_and_others.html
3617
- test/testcases/lists/list_and_others.text
3618
- test/testcases/lists/mixed.html
3619
- test/testcases/lists/mixed.text
3620
- test/testcases/lists/nested.html
3621
- test/testcases/lists/nested.text
3622
- test/testcases/lists/other_first_element.html
3623
- test/testcases/lists/other_first_element.text
3624
- test/testcases/lists/simple_ol.html
3625
- test/testcases/lists/simple_ol.text
3626
- test/testcases/lists/simple_ul.html
3627
- test/testcases/lists/simple_ul.text
3628
- test/testcases/lists/single_item.html
3629
- test/testcases/lists/single_item.text
3630
- test/testcases/lists/special_cases.html
3631
- test/testcases/lists/special_cases.text
3632
- test/testcases/paragraphs/indented.html
3633
- test/testcases/paragraphs/indented.text
3634
- test/testcases/paragraphs/no_newline_at_end.html
3635
- test/testcases/paragraphs/no_newline_at_end.text
3636
- test/testcases/paragraphs/one_para.html
3637
- test/testcases/paragraphs/one_para.text
3638
- test/testcases/paragraphs/two_para.html
3639
- test/testcases/paragraphs/two_para.text
3640
-
3641
- commit 8145fadea1fb30db0ff9841770fea24617882172
3642
- Author: Thomas Leitner <t_leitner@gmx.at>
3643
- Date: Fri Oct 16 21:10:19 2009 +0200
3644
-
3645
- Updated syntax page
3646
-
3647
- doc/syntax.page
3648
-
3649
- commit 8c036139cdb1af146b2d60ddcf3c02c80999545c
3650
- Author: Thomas Leitner <t_leitner@gmx.at>
3651
- Date: Tue Mar 3 16:25:47 2009 +0100
3652
-
3653
- Restructured internals to allow adding of arbitrary block/span parsers
3654
-
3655
- lib/kramdown.rb
3656
- lib/kramdown/parser.rb
3657
- lib/kramdown/parser/html.rb
3658
- lib/kramdown/parser/registry.rb
3659
-
3660
- commit 14cabf088d0543e978b81ff009a7d6d8121348b9
3661
- Author: Thomas Leitner <t_leitner@gmx.at>
3662
- Date: Mon Feb 23 17:33:54 2009 +0100
3663
-
3664
- First version of better HTML parser
3665
-
3666
- - HTML parser now supports basic markdown in HTML block
3667
- - Ruby 1.9 compatible
3668
-
3669
- lib/kramdown.rb
3670
- lib/kramdown/converter.rb
3671
- lib/kramdown/parser.rb
3672
- lib/kramdown/parser/html.rb
3673
- test/run_tests.rb
3674
- test/testcases/autolinks/url_links.html
3675
- test/testcases/html_blocks/auto_parse_block_html.html
3676
- test/testcases/html_blocks/auto_parse_block_html.options
3677
- test/testcases/html_blocks/auto_parse_block_html.text
3678
- test/testcases/html_blocks/filtered_html.html
3679
- test/testcases/html_blocks/filtered_html.options
3680
- test/testcases/html_blocks/filtered_html.text
3681
- test/testcases/html_blocks/html_and_codeblocks.options
3682
- test/testcases/html_blocks/processing_instruction.html
3683
- test/testcases/html_blocks/processing_instruction.text
3684
- test/testcases/html_blocks/simple.html
3685
- test/testcases/html_blocks/simple.options
3686
- test/testcases/html_blocks/simple.text
3687
- test/testcases/html_inline/normal.html
3688
-
3689
- commit 3d679e402274028fa79083521ea2fa6b44236306
3690
- Author: Thomas Leitner <t_leitner@gmx.at>
3691
- Date: Wed Jan 14 06:25:01 2009 +0100
3692
-
3693
- Small adjustment in the handling of line breaks
3694
-
3695
- doc/syntax.page
3696
- lib/kramdown/parser.rb
3697
- test/testcases/line_breaks/normal.html
3698
- test/testcases/line_breaks/normal.text
3699
-
3700
- commit 022038a02a37a602835e6d41a106c4390038593d
3701
- Author: Thomas Leitner <t_leitner@gmx.at>
3702
- Date: Fri Dec 26 10:50:59 2008 +0100
3703
-
3704
- Fixed problem with auto header ids and adjusted their format
3705
-
3706
- Adjusted format of auto header ids to be more similar to those of Pandoc.
3707
-
3708
- Fixed problem with empty IDs and with duplicate IDs.
3709
-
3710
- doc/syntax.page
3711
- lib/kramdown/parser.rb
3712
- test/testcases/headers/with_auto_ids.html
3713
- test/testcases/headers/with_auto_ids.text
3714
-
3715
- commit b9c0f9ebf46dda10ba36e2a7e1ac2df7be30037d
3716
- Author: Thomas Leitner <t_leitner@gmx.at>
3717
- Date: Fri Dec 26 10:13:19 2008 +0100
3718
-
3719
- Implemented support for footnotes
3720
-
3721
- doc/syntax.page
3722
- lib/kramdown.rb
3723
- lib/kramdown/converter.rb
3724
- lib/kramdown/parser.rb
3725
- misc/default.css
3726
- test/testcases/footnotes/definitions.html
3727
- test/testcases/footnotes/definitions.text
3728
- test/testcases/footnotes/markers.html
3729
- test/testcases/footnotes/markers.text
3730
-
3731
- commit 196ed6c9709315c976d7174d6d9fb662a082c135
3732
- Author: Thomas Leitner <t_leitner@gmx.at>
3733
- Date: Sun Dec 21 09:21:53 2008 +0100
3734
-
3735
- Fixed small bug in list conversion
3736
-
3737
- lib/kramdown/converter.rb
3738
- test/testcases/lists/simple_ul.html
3739
- test/testcases/lists/simple_ul.text
3740
-
3741
- commit ee6695d662ac923d8a1cd83470d23a329829c5a6
3742
- Author: Thomas Leitner <t_leitner@gmx.at>
3743
- Date: Fri Dec 19 19:47:33 2008 +0100
3744
-
3745
- Implemented attribute list definitions and inline attribute lists
3746
-
3747
- Rakefile
3748
- doc/syntax.page
3749
- lib/kramdown.rb
3750
- lib/kramdown/converter.rb
3751
- lib/kramdown/parser.rb
3752
- test/testcases/attribute_lists/ald.html
3753
- test/testcases/attribute_lists/ald.text
3754
- test/testcases/attribute_lists/ial_block.html
3755
- test/testcases/attribute_lists/ial_block.text
3756
- test/testcases/attribute_lists/ial_span.html
3757
- test/testcases/attribute_lists/ial_span.text
3758
-
3759
- commit b5e5c5b1112d87d78c5e701e42a1ebdcc139b23f
3760
- Author: Thomas Leitner <t_leitner@gmx.at>
3761
- Date: Fri Dec 19 19:25:22 2008 +0100
3762
-
3763
- Small update to the test cases for horizontal lines
3764
-
3765
- test/testcases/horizontal_rules/normal.html
3766
- test/testcases/horizontal_rules/normal.text
3767
-
3768
- commit a4bbf3ab8cfc5bcf462782f9d63a0d70aa57fe3c
3769
- Author: Thomas Leitner <t_leitner@gmx.at>
3770
- Date: Wed Dec 17 07:20:17 2008 +0100
3771
-
3772
- Small optimization
3773
-
3774
- Removed not needed regexp, now using result of #check instead
3775
- of second #scan
3776
-
3777
- lib/kramdown/parser.rb
3778
-
3779
- commit 439c3ad4be3bccd155cc1ca61cfc868924a026fe
3780
- Author: Thomas Leitner <t_leitner@gmx.at>
3781
- Date: Mon Dec 15 09:17:56 2008 +0100
3782
-
3783
- Implement automatic header ID generation
3784
-
3785
- doc/syntax.page
3786
- lib/kramdown/parser.rb
3787
- test/test_files.rb
3788
- test/testcases/headers/with_auto_ids.html
3789
- test/testcases/headers/with_auto_ids.options
3790
- test/testcases/headers/with_auto_ids.text
3791
-
3792
- commit 9b7b33d3a2a961fc07aee968af42798b110e460e
3793
- Author: Thomas Leitner <t_leitner@gmx.at>
3794
- Date: Sat Dec 13 09:47:40 2008 +0100
3795
-
3796
- Small optimization
3797
-
3798
- lib/kramdown/parser.rb
3799
-
3800
- commit ee0449065558e02affacfe27ff94c8a00d6e9a62
3801
- Author: Thomas Leitner <t_leitner@gmx.at>
3802
- Date: Sat Dec 13 08:54:34 2008 +0100
3803
-
3804
- Removed rdiscount from benchmark since it will always be faster
3805
-
3806
- Rakefile
3807
-
3808
- commit ff919700c1377407fe1651a1c7152a227c54da15
3809
- Author: Thomas Leitner <t_leitner@gmx.at>
3810
- Date: Fri Dec 12 09:15:01 2008 +0100
3811
-
3812
- Small refactoring and API documentation update
3813
-
3814
- Rakefile
3815
- lib/kramdown.rb
3816
- lib/kramdown/converter.rb
3817
- lib/kramdown/parser.rb
3818
- test/testcases/codespans/normal.html
3819
- test/testcases/codespans/normal.text
3820
- test/testcases/links/inline.html
3821
- test/testcases/links/inline.text
3822
-
3823
- commit f498f888af8f10dccfffd6621ce46068aab980f2
3824
- Author: Thomas Leitner <t_leitner@gmx.at>
3825
- Date: Tue Dec 9 07:24:55 2008 +0100
3826
-
3827
- Initial import
3828
-
3829
- COPYING
3830
- GPL
3831
- Rakefile
3832
- bin/kramdown
3833
- doc/documentation.page
3834
- doc/syntax.page
3835
- doc/tests.page
3836
- lib/kramdown.rb
3837
- lib/kramdown/converter.rb
3838
- lib/kramdown/parser.rb
3839
- misc/default.css
3840
- misc/default.template
3841
- misc/htmldoc.metainfo
3842
- misc/htmldoc.virtual
3843
- misc/images/arrow.gif
3844
- misc/images/error.gif
3845
- misc/images/exclamation.gif
3846
- misc/images/headerbg.jpg
3847
- misc/images/information.gif
3848
- misc/images/quote.gif
3849
- setup.rb
3850
- test/run_tests.rb
3851
- test/test_files.rb
3852
- test/testcases/autolinks/url_links.html
3853
- test/testcases/autolinks/url_links.text
3854
- test/testcases/blockquotes/indented.html
3855
- test/testcases/blockquotes/indented.text
3856
- test/testcases/blockquotes/nested.html
3857
- test/testcases/blockquotes/nested.text
3858
- test/testcases/blockquotes/no_newline_at_end.html
3859
- test/testcases/blockquotes/no_newline_at_end.text
3860
- test/testcases/blockquotes/only_first_quoted.html
3861
- test/testcases/blockquotes/only_first_quoted.text
3862
- test/testcases/blockquotes/with_code_blocks.html
3863
- test/testcases/blockquotes/with_code_blocks.text
3864
- test/testcases/codeblocks/no_newline_at_end.html
3865
- test/testcases/codeblocks/no_newline_at_end.text
3866
- test/testcases/codeblocks/normal.html
3867
- test/testcases/codeblocks/normal.text
3868
- test/testcases/codeblocks/tilde_syntax.html
3869
- test/testcases/codeblocks/tilde_syntax.text
3870
- test/testcases/codeblocks/with_blank_line.html
3871
- test/testcases/codeblocks/with_blank_line.text
3872
- test/testcases/codeblocks/with_eob_marker.html
3873
- test/testcases/codeblocks/with_eob_marker.text
3874
- test/testcases/codespans/errors.html
3875
- test/testcases/codespans/errors.text
3876
- test/testcases/codespans/normal.html
3877
- test/testcases/codespans/normal.text
3878
- test/testcases/email_header/normal_header.html
3879
- test/testcases/email_header/normal_header.text
3880
- test/testcases/emphases/errors.html
3881
- test/testcases/emphases/errors.text
3882
- test/testcases/emphases/normal.html
3883
- test/testcases/emphases/normal.text
3884
- test/testcases/headers/atx_header.html
3885
- test/testcases/headers/atx_header.text
3886
- test/testcases/headers/setext_header.html
3887
- test/testcases/headers/setext_header.text
3888
- test/testcases/horizontal_rules/normal.html
3889
- test/testcases/horizontal_rules/normal.text
3890
- test/testcases/html_blocks/comment.html
3891
- test/testcases/html_blocks/comment.text
3892
- test/testcases/html_blocks/html_and_codeblocks.html
3893
- test/testcases/html_blocks/html_and_codeblocks.text
3894
- test/testcases/html_blocks/invalid_html_1.html
3895
- test/testcases/html_blocks/invalid_html_1.text
3896
- test/testcases/html_blocks/invalid_html_2.html
3897
- test/testcases/html_blocks/invalid_html_2.text
3898
- test/testcases/html_blocks/processing_instruction.html
3899
- test/testcases/html_blocks/processing_instruction.text
3900
- test/testcases/html_blocks/simple.html
3901
- test/testcases/html_blocks/simple.text
3902
- test/testcases/html_inline/normal.html
3903
- test/testcases/html_inline/normal.text
3904
- test/testcases/line_breaks/normal.html
3905
- test/testcases/line_breaks/normal.text
3906
- test/testcases/links/imagelinks.html
3907
- test/testcases/links/imagelinks.text
3908
- test/testcases/links/inline.html
3909
- test/testcases/links/inline.text
3910
- test/testcases/links/link_defs.html
3911
- test/testcases/links/link_defs.text
3912
- test/testcases/links/reference.html
3913
- test/testcases/links/reference.text
3914
- test/testcases/lists/escaping.html
3915
- test/testcases/lists/escaping.text
3916
- test/testcases/lists/list_and_hr.html
3917
- test/testcases/lists/list_and_hr.text
3918
- test/testcases/lists/list_and_others.html
3919
- test/testcases/lists/list_and_others.text
3920
- test/testcases/lists/mixed.html
3921
- test/testcases/lists/mixed.text
3922
- test/testcases/lists/nested.html
3923
- test/testcases/lists/nested.text
3924
- test/testcases/lists/other_first_element.html
3925
- test/testcases/lists/other_first_element.text
3926
- test/testcases/lists/simple_ol.html
3927
- test/testcases/lists/simple_ol.text
3928
- test/testcases/lists/simple_ul.html
3929
- test/testcases/lists/simple_ul.text
3930
- test/testcases/lists/single_item.html
3931
- test/testcases/lists/single_item.text
3932
- test/testcases/lists/special_cases.html
3933
- test/testcases/lists/special_cases.text
3934
- test/testcases/paragraphs/indented.html
3935
- test/testcases/paragraphs/indented.text
3936
- test/testcases/paragraphs/no_newline_at_end.html
3937
- test/testcases/paragraphs/no_newline_at_end.text
3938
- test/testcases/paragraphs/one_para.html
3939
- test/testcases/paragraphs/one_para.text
3940
- test/testcases/paragraphs/two_para.html
3941
- test/testcases/paragraphs/two_para.text
3942
- test/testcases/text_substitutions/ampersands.html
3943
- test/testcases/text_substitutions/ampersands.text
3944
- test/testcases/text_substitutions/greaterthan.html
3945
- test/testcases/text_substitutions/greaterthan.text
3946
- test/testcases/text_substitutions/lowerthan.html
3947
- test/testcases/text_substitutions/lowerthan.text
3948
- website/src/default.template
3949
- website/src/images/feed.gif
3950
- website/src/index.page
3951
- website/src/metainfo
3952
- website/src/news/default.template
3953
- website/src/news/index.page
3954
- website/src/news/news.feed
3955
- website/src/news/release_0_1_0.page
3956
- website/src/virtual