webgen 0.5.17 → 1.0.0.beta1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (408) hide show
  1. data/API.rdoc +143 -0
  2. data/AUTHORS +0 -1
  3. data/COPYING +17 -8
  4. data/ChangeLog +4456 -0
  5. data/GPL +623 -289
  6. data/README.md +71 -0
  7. data/Rakefile +87 -99
  8. data/VERSION +1 -1
  9. data/bin/webgen +1 -7
  10. data/data/webgen/basic_website_template/ext/init.rb +15 -0
  11. data/data/webgen/basic_website_template/webgen.config +18 -0
  12. data/data/webgen/bundle_template_files/README.md.erb +24 -0
  13. data/data/webgen/bundle_template_files/Rakefile.erb +36 -0
  14. data/data/webgen/bundle_template_files/info.yaml.erb +16 -0
  15. data/data/webgen/bundle_template_files/init.rb.erb +1 -0
  16. data/data/webgen/passive_sources/default.metainfo +32 -0
  17. data/data/webgen/passive_sources/stylesheets/coderay-default.css +109 -118
  18. data/data/webgen/passive_sources/templates/feed.template +62 -0
  19. data/data/webgen/passive_sources/templates/sitemap.template +3 -6
  20. data/data/webgen/passive_sources/templates/tag.template +42 -0
  21. data/data/webgen/website_bundles/default/README +2 -2
  22. data/lib/webgen/blackboard.rb +15 -51
  23. data/lib/webgen/bundle/built-in-show-changes/init.rb +54 -0
  24. data/lib/webgen/bundle/built-in/init.rb +366 -0
  25. data/lib/webgen/bundle_loader.rb +126 -0
  26. data/lib/webgen/cache.rb +9 -18
  27. data/lib/webgen/cli.rb +131 -58
  28. data/lib/webgen/cli/bundle_command.rb +30 -0
  29. data/lib/webgen/cli/create_bundle_command.rb +46 -0
  30. data/lib/webgen/cli/create_command.rb +48 -60
  31. data/lib/webgen/cli/generate_command.rb +25 -0
  32. data/lib/webgen/cli/install_bundle_command.rb +34 -0
  33. data/lib/webgen/cli/list_bundle_command.rb +108 -0
  34. data/lib/webgen/cli/logger.rb +45 -0
  35. data/lib/webgen/cli/show_command.rb +30 -0
  36. data/lib/webgen/cli/show_config_command.rb +63 -0
  37. data/lib/webgen/cli/show_dependencies_command.rb +103 -0
  38. data/lib/webgen/cli/show_extensions_command.rb +74 -0
  39. data/lib/webgen/cli/utils.rb +68 -95
  40. data/lib/webgen/configuration.rb +143 -105
  41. data/lib/webgen/content_processor.rb +160 -0
  42. data/lib/webgen/content_processor/blocks.rb +96 -0
  43. data/lib/webgen/content_processor/builder.rb +25 -0
  44. data/lib/webgen/content_processor/erb.rb +25 -0
  45. data/lib/webgen/content_processor/erubis.rb +31 -0
  46. data/lib/webgen/content_processor/fragments.rb +82 -0
  47. data/lib/webgen/content_processor/haml.rb +25 -0
  48. data/lib/webgen/content_processor/html_head.rb +157 -0
  49. data/lib/webgen/content_processor/kramdown.rb +49 -0
  50. data/lib/webgen/content_processor/maruku.rb +39 -0
  51. data/lib/webgen/content_processor/r_discount.rb +21 -0
  52. data/lib/webgen/content_processor/rdoc.rb +22 -0
  53. data/lib/webgen/content_processor/redcloth.rb +23 -0
  54. data/lib/webgen/content_processor/ruby.rb +20 -0
  55. data/lib/webgen/content_processor/sass.rb +145 -0
  56. data/lib/webgen/content_processor/scss.rb +23 -0
  57. data/lib/webgen/content_processor/tags.rb +30 -0
  58. data/lib/webgen/content_processor/tidy.rb +32 -0
  59. data/lib/webgen/content_processor/tikz.rb +116 -0
  60. data/lib/webgen/content_processor/xmllint.rb +31 -0
  61. data/lib/webgen/context.rb +57 -29
  62. data/lib/webgen/context/html_head.rb +60 -0
  63. data/lib/webgen/context/nodes.rb +32 -27
  64. data/lib/webgen/context/rendering.rb +39 -0
  65. data/lib/webgen/context/webgen_tags.rb +25 -0
  66. data/lib/webgen/core_ext.rb +25 -0
  67. data/lib/webgen/destination.rb +151 -0
  68. data/lib/webgen/destination/file_system.rb +62 -0
  69. data/lib/webgen/error.rb +59 -49
  70. data/lib/webgen/extension_manager.rb +121 -0
  71. data/lib/webgen/item_tracker.rb +237 -0
  72. data/lib/webgen/item_tracker/file.rb +39 -0
  73. data/lib/webgen/item_tracker/missing_node.rb +61 -0
  74. data/lib/webgen/item_tracker/node_content.rb +40 -0
  75. data/lib/webgen/item_tracker/node_meta_info.rb +53 -0
  76. data/lib/webgen/item_tracker/nodes.rb +92 -0
  77. data/lib/webgen/logger.rb +26 -82
  78. data/lib/webgen/node.rb +122 -367
  79. data/lib/webgen/node_finder.rb +336 -0
  80. data/lib/webgen/page.rb +48 -85
  81. data/lib/webgen/path.rb +218 -156
  82. data/lib/webgen/path_handler.rb +400 -0
  83. data/lib/webgen/path_handler/base.rb +220 -0
  84. data/lib/webgen/path_handler/copy.rb +78 -0
  85. data/lib/webgen/path_handler/directory.rb +21 -0
  86. data/lib/webgen/path_handler/feed.rb +82 -0
  87. data/lib/webgen/path_handler/meta_info.rb +84 -0
  88. data/lib/webgen/path_handler/page.rb +38 -0
  89. data/lib/webgen/path_handler/page_utils.rb +79 -0
  90. data/lib/webgen/path_handler/sitemap.rb +52 -0
  91. data/lib/webgen/path_handler/template.rb +96 -0
  92. data/lib/webgen/path_handler/virtual.rb +85 -0
  93. data/lib/webgen/{webgentask.rb → rake_task.rb} +31 -27
  94. data/lib/webgen/source.rb +106 -24
  95. data/lib/webgen/source/file_system.rb +41 -0
  96. data/lib/webgen/source/stacked.rb +49 -53
  97. data/lib/webgen/source/tar_archive.rb +59 -0
  98. data/lib/webgen/tag.rb +250 -19
  99. data/lib/webgen/tag/breadcrumb_trail.rb +65 -0
  100. data/lib/webgen/tag/coderay.rb +32 -35
  101. data/lib/webgen/tag/date.rb +9 -9
  102. data/lib/webgen/tag/execute_command.rb +31 -0
  103. data/lib/webgen/tag/include_file.rb +32 -0
  104. data/lib/webgen/tag/langbar.rb +31 -47
  105. data/lib/webgen/tag/link.rb +17 -18
  106. data/lib/webgen/tag/menu.rb +27 -189
  107. data/lib/webgen/tag/meta_info.rb +31 -0
  108. data/lib/webgen/tag/relocatable.rb +48 -39
  109. data/lib/webgen/tag/tikz.rb +24 -100
  110. data/lib/webgen/task.rb +99 -0
  111. data/lib/webgen/task/create_bundle.rb +73 -0
  112. data/lib/webgen/task/create_website.rb +94 -0
  113. data/lib/webgen/task/generate_website.rb +47 -0
  114. data/lib/webgen/test_helper.rb +183 -0
  115. data/lib/webgen/tree.rb +95 -46
  116. data/lib/webgen/utils.rb +39 -0
  117. data/lib/webgen/utils/external_command.rb +27 -0
  118. data/lib/webgen/utils/tag_parser.rb +124 -0
  119. data/lib/webgen/version.rb +1 -1
  120. data/lib/webgen/website.rb +134 -296
  121. data/setup.rb +1 -1
  122. data/test/test_documentation.rb +43 -0
  123. data/test/webgen/cli/test_logger.rb +41 -0
  124. data/test/{test_contentprocessor_blocks.rb → webgen/content_processor/test_blocks.rb} +30 -28
  125. data/test/webgen/content_processor/test_builder.rb +25 -0
  126. data/test/webgen/content_processor/test_erb.rb +21 -0
  127. data/test/webgen/content_processor/test_erubis.rb +33 -0
  128. data/test/webgen/content_processor/test_fragments.rb +96 -0
  129. data/test/webgen/content_processor/test_haml.rb +24 -0
  130. data/test/webgen/content_processor/test_html_head.rb +78 -0
  131. data/test/webgen/content_processor/test_kramdown.rb +49 -0
  132. data/test/webgen/content_processor/test_maruku.rb +30 -0
  133. data/test/webgen/content_processor/test_r_discount.rb +18 -0
  134. data/test/webgen/content_processor/test_rdoc.rb +18 -0
  135. data/test/webgen/content_processor/test_redcloth.rb +23 -0
  136. data/test/webgen/content_processor/test_ruby.rb +24 -0
  137. data/test/webgen/content_processor/test_sass.rb +44 -0
  138. data/test/webgen/content_processor/test_scss.rb +23 -0
  139. data/test/webgen/content_processor/test_tags.rb +44 -0
  140. data/test/webgen/content_processor/test_tidy.rb +31 -0
  141. data/test/webgen/content_processor/test_tikz.rb +33 -0
  142. data/test/webgen/content_processor/test_xmllint.rb +32 -0
  143. data/test/webgen/destination/test_file_system.rb +54 -0
  144. data/test/webgen/item_tracker/test_file.rb +31 -0
  145. data/test/webgen/item_tracker/test_missing_node.rb +70 -0
  146. data/test/webgen/item_tracker/test_node_content.rb +42 -0
  147. data/test/webgen/item_tracker/test_node_meta_info.rb +44 -0
  148. data/test/webgen/item_tracker/test_nodes.rb +61 -0
  149. data/test/webgen/path_handler/test_base.rb +153 -0
  150. data/test/webgen/path_handler/test_copy.rb +56 -0
  151. data/test/webgen/path_handler/test_feed.rb +85 -0
  152. data/test/webgen/path_handler/test_meta_info.rb +98 -0
  153. data/test/webgen/path_handler/test_page.rb +25 -0
  154. data/test/webgen/path_handler/test_page_utils.rb +59 -0
  155. data/test/webgen/path_handler/test_sitemap.rb +95 -0
  156. data/test/webgen/path_handler/test_template.rb +64 -0
  157. data/test/webgen/path_handler/test_virtual.rb +87 -0
  158. data/test/webgen/source/test_file_system.rb +51 -0
  159. data/test/webgen/source/test_stacked.rb +35 -0
  160. data/test/{test_source_tararchive.rb → webgen/source/test_tar_archive.rb} +10 -25
  161. data/test/webgen/tag/test_breadcrumb_trail.rb +66 -0
  162. data/test/webgen/tag/test_coderay.rb +34 -0
  163. data/test/webgen/tag/test_date.rb +18 -0
  164. data/test/webgen/tag/test_execute_command.rb +36 -0
  165. data/test/webgen/tag/test_include_file.rb +35 -0
  166. data/test/webgen/tag/test_langbar.rb +50 -0
  167. data/test/webgen/tag/test_link.rb +40 -0
  168. data/test/webgen/tag/test_menu.rb +61 -0
  169. data/test/webgen/tag/test_meta_info.rb +25 -0
  170. data/test/webgen/tag/test_relocatable.rb +50 -0
  171. data/test/webgen/tag/test_tikz.rb +41 -0
  172. data/test/webgen/task/test_create_website.rb +46 -0
  173. data/test/webgen/test_blackboard.rb +31 -0
  174. data/test/webgen/test_bundle_loader.rb +55 -0
  175. data/test/{test_cache.rb → webgen/test_cache.rb} +3 -15
  176. data/test/webgen/test_cli.rb +41 -0
  177. data/test/webgen/test_configuration.rb +131 -0
  178. data/test/webgen/test_content_processor.rb +86 -0
  179. data/test/webgen/test_context.rb +73 -0
  180. data/test/webgen/test_core_ext.rb +20 -0
  181. data/test/webgen/test_destination.rb +48 -0
  182. data/test/webgen/test_error.rb +121 -0
  183. data/test/webgen/test_extension_manager.rb +70 -0
  184. data/test/webgen/test_item_tracker.rb +106 -0
  185. data/test/{test_languages.rb → webgen/test_languages.rb} +4 -4
  186. data/test/webgen/test_logger.rb +46 -0
  187. data/test/webgen/test_node.rb +178 -0
  188. data/test/webgen/test_node_finder.rb +127 -0
  189. data/test/{test_page.rb → webgen/test_page.rb} +44 -48
  190. data/test/webgen/test_path.rb +271 -0
  191. data/test/{test_webgentask.rb → webgen/test_rake_task.rb} +4 -4
  192. data/test/webgen/test_source.rb +59 -0
  193. data/test/webgen/test_tag.rb +137 -0
  194. data/test/webgen/test_task.rb +40 -0
  195. data/test/webgen/test_tree.rb +147 -0
  196. data/test/webgen/test_utils.rb +16 -0
  197. data/test/webgen/test_website.rb +45 -0
  198. data/test/webgen/utils/test_tag_parser.rb +99 -0
  199. metadata +292 -344
  200. data/data/webgen/passive_sources/templates/atom_feed.template +0 -39
  201. data/data/webgen/passive_sources/templates/rss_feed.template +0 -28
  202. data/data/webgen/resources.yaml +0 -4
  203. data/data/webgen/webgui/app.rb +0 -11
  204. data/data/webgen/webgui/controller/main.rb +0 -135
  205. data/data/webgen/webgui/layout/default.xhtml +0 -40
  206. data/data/webgen/webgui/overrides/win32console.rb +0 -0
  207. data/data/webgen/webgui/public/css/jquery.autocomplete.css +0 -50
  208. data/data/webgen/webgui/public/css/ramaze_error.css +0 -90
  209. data/data/webgen/webgui/public/css/style.css +0 -55
  210. data/data/webgen/webgui/public/img/headerbg.jpg +0 -0
  211. data/data/webgen/webgui/public/img/webgen_logo.png +0 -0
  212. data/data/webgen/webgui/public/js/jquery.autocomplete.js +0 -15
  213. data/data/webgen/webgui/public/js/jquery.js +0 -32
  214. data/data/webgen/webgui/start.rb +0 -9
  215. data/data/webgen/webgui/view/create_website.xhtml +0 -14
  216. data/data/webgen/webgui/view/error.xhtml +0 -64
  217. data/data/webgen/webgui/view/index.xhtml +0 -22
  218. data/data/webgen/webgui/view/manage_website.xhtml +0 -18
  219. data/data/webgen/website_skeleton/README +0 -10
  220. data/data/webgen/website_skeleton/Rakefile +0 -69
  221. data/data/webgen/website_skeleton/config.yaml +0 -35
  222. data/data/webgen/website_skeleton/ext/init.rb +0 -10
  223. data/doc/contentprocessor.template +0 -11
  224. data/doc/contentprocessor/blocks.page +0 -129
  225. data/doc/contentprocessor/builder.page +0 -79
  226. data/doc/contentprocessor/erb.page +0 -60
  227. data/doc/contentprocessor/erubis.page +0 -46
  228. data/doc/contentprocessor/fragments.page +0 -26
  229. data/doc/contentprocessor/haml.page +0 -46
  230. data/doc/contentprocessor/head.page +0 -31
  231. data/doc/contentprocessor/kramdown.page +0 -49
  232. data/doc/contentprocessor/less.page +0 -34
  233. data/doc/contentprocessor/maruku.page +0 -44
  234. data/doc/contentprocessor/rdiscount.page +0 -37
  235. data/doc/contentprocessor/rdoc.page +0 -36
  236. data/doc/contentprocessor/redcloth.page +0 -41
  237. data/doc/contentprocessor/sass.page +0 -31
  238. data/doc/contentprocessor/scss.page +0 -39
  239. data/doc/contentprocessor/tags.page +0 -73
  240. data/doc/contentprocessor/tidy.page +0 -14
  241. data/doc/contentprocessor/xmllint.page +0 -14
  242. data/doc/extensions.metainfo +0 -29
  243. data/doc/extensions.page +0 -15
  244. data/doc/extensions.template +0 -17
  245. data/doc/faq.page +0 -222
  246. data/doc/getting_started.page +0 -135
  247. data/doc/index.page +0 -71
  248. data/doc/manual.page +0 -727
  249. data/doc/reference_configuration.page +0 -1254
  250. data/doc/reference_metainfo.page +0 -265
  251. data/doc/reference_website_styles.page +0 -32
  252. data/doc/source/filesystem.page +0 -41
  253. data/doc/source/tararchive.page +0 -40
  254. data/doc/sourcehandler.template +0 -23
  255. data/doc/sourcehandler/copy.page +0 -19
  256. data/doc/sourcehandler/directory.page +0 -27
  257. data/doc/sourcehandler/feed.page +0 -102
  258. data/doc/sourcehandler/metainfo.page +0 -48
  259. data/doc/sourcehandler/page.page +0 -14
  260. data/doc/sourcehandler/sitemap.page +0 -46
  261. data/doc/sourcehandler/template.page +0 -45
  262. data/doc/sourcehandler/virtual.page +0 -49
  263. data/doc/tag.template +0 -25
  264. data/doc/tag/breadcrumbtrail.page +0 -40
  265. data/doc/tag/coderay.page +0 -53
  266. data/doc/tag/date.page +0 -31
  267. data/doc/tag/executecommand.page +0 -26
  268. data/doc/tag/includefile.page +0 -32
  269. data/doc/tag/langbar.page +0 -47
  270. data/doc/tag/link.page +0 -44
  271. data/doc/tag/menu.page +0 -109
  272. data/doc/tag/metainfo.page +0 -29
  273. data/doc/tag/relocatable.page +0 -38
  274. data/doc/tag/sitemap.page +0 -31
  275. data/doc/tag/tikz.page +0 -159
  276. data/doc/upgrading.page +0 -138
  277. data/doc/webgen_page_format.page +0 -129
  278. data/doc/website_styles.metainfo +0 -8
  279. data/lib/webgen/cli/apply_command.rb +0 -66
  280. data/lib/webgen/cli/run_command.rb +0 -22
  281. data/lib/webgen/cli/webgui_command.rb +0 -68
  282. data/lib/webgen/common.rb +0 -27
  283. data/lib/webgen/common/sitemap.rb +0 -83
  284. data/lib/webgen/contentprocessor.rb +0 -117
  285. data/lib/webgen/contentprocessor/blocks.rb +0 -92
  286. data/lib/webgen/contentprocessor/builder.rb +0 -29
  287. data/lib/webgen/contentprocessor/erb.rb +0 -26
  288. data/lib/webgen/contentprocessor/erubis.rb +0 -39
  289. data/lib/webgen/contentprocessor/fragments.rb +0 -25
  290. data/lib/webgen/contentprocessor/haml.rb +0 -34
  291. data/lib/webgen/contentprocessor/head.rb +0 -128
  292. data/lib/webgen/contentprocessor/kramdown.rb +0 -27
  293. data/lib/webgen/contentprocessor/kramdown/html.rb +0 -36
  294. data/lib/webgen/contentprocessor/less.rb +0 -35
  295. data/lib/webgen/contentprocessor/maruku.rb +0 -36
  296. data/lib/webgen/contentprocessor/rdiscount.rb +0 -19
  297. data/lib/webgen/contentprocessor/rdoc.rb +0 -20
  298. data/lib/webgen/contentprocessor/redcloth.rb +0 -21
  299. data/lib/webgen/contentprocessor/sass.rb +0 -22
  300. data/lib/webgen/contentprocessor/scss.rb +0 -22
  301. data/lib/webgen/contentprocessor/tags.rb +0 -170
  302. data/lib/webgen/contentprocessor/tidy.rb +0 -38
  303. data/lib/webgen/contentprocessor/xmllint.rb +0 -37
  304. data/lib/webgen/context/render.rb +0 -32
  305. data/lib/webgen/context/tags.rb +0 -20
  306. data/lib/webgen/coreext.rb +0 -13
  307. data/lib/webgen/default_config.rb +0 -240
  308. data/lib/webgen/loggable.rb +0 -25
  309. data/lib/webgen/output.rb +0 -86
  310. data/lib/webgen/output/filesystem.rb +0 -69
  311. data/lib/webgen/source/filesystem.rb +0 -61
  312. data/lib/webgen/source/resource.rb +0 -45
  313. data/lib/webgen/source/tararchive.rb +0 -78
  314. data/lib/webgen/sourcehandler.rb +0 -275
  315. data/lib/webgen/sourcehandler/base.rb +0 -281
  316. data/lib/webgen/sourcehandler/copy.rb +0 -44
  317. data/lib/webgen/sourcehandler/directory.rb +0 -30
  318. data/lib/webgen/sourcehandler/feed.rb +0 -92
  319. data/lib/webgen/sourcehandler/fragment.rb +0 -70
  320. data/lib/webgen/sourcehandler/memory.rb +0 -42
  321. data/lib/webgen/sourcehandler/metainfo.rb +0 -128
  322. data/lib/webgen/sourcehandler/page.rb +0 -64
  323. data/lib/webgen/sourcehandler/sitemap.rb +0 -60
  324. data/lib/webgen/sourcehandler/template.rb +0 -66
  325. data/lib/webgen/sourcehandler/virtual.rb +0 -117
  326. data/lib/webgen/tag/base.rb +0 -170
  327. data/lib/webgen/tag/breadcrumbtrail.rb +0 -70
  328. data/lib/webgen/tag/executecommand.rb +0 -31
  329. data/lib/webgen/tag/includefile.rb +0 -42
  330. data/lib/webgen/tag/metainfo.rb +0 -27
  331. data/lib/webgen/tag/sitemap.rb +0 -41
  332. data/lib/webgen/websiteaccess.rb +0 -31
  333. data/lib/webgen/websitemanager.rb +0 -125
  334. data/misc/default.css +0 -403
  335. data/misc/default.template +0 -76
  336. data/misc/htmldoc.metainfo +0 -26
  337. data/misc/htmldoc.virtual +0 -17
  338. data/misc/images/arrow.gif +0 -0
  339. data/misc/images/error.png +0 -0
  340. data/misc/images/headerbg.jpg +0 -0
  341. data/misc/images/important.png +0 -0
  342. data/misc/images/information.png +0 -0
  343. data/misc/images/quote.gif +0 -0
  344. data/misc/images/warning.png +0 -0
  345. data/misc/logo.svg +0 -313
  346. data/misc/style.page +0 -33
  347. data/test/helper.rb +0 -61
  348. data/test/test_blackboard.rb +0 -60
  349. data/test/test_cli.rb +0 -119
  350. data/test/test_common_sitemap.rb +0 -58
  351. data/test/test_configuration.rb +0 -68
  352. data/test/test_contentprocessor.rb +0 -39
  353. data/test/test_contentprocessor_builder.rb +0 -41
  354. data/test/test_contentprocessor_erb.rb +0 -33
  355. data/test/test_contentprocessor_erubis.rb +0 -62
  356. data/test/test_contentprocessor_fragments.rb +0 -43
  357. data/test/test_contentprocessor_haml.rb +0 -39
  358. data/test/test_contentprocessor_head.rb +0 -96
  359. data/test/test_contentprocessor_kramdown.rb +0 -56
  360. data/test/test_contentprocessor_less.rb +0 -40
  361. data/test/test_contentprocessor_maruku.rb +0 -33
  362. data/test/test_contentprocessor_rdiscount.rb +0 -21
  363. data/test/test_contentprocessor_rdoc.rb +0 -22
  364. data/test/test_contentprocessor_redcloth.rb +0 -26
  365. data/test/test_contentprocessor_sass.rb +0 -28
  366. data/test/test_contentprocessor_scss.rb +0 -28
  367. data/test/test_contentprocessor_tags.rb +0 -122
  368. data/test/test_contentprocessor_tidy.rb +0 -34
  369. data/test/test_contentprocessor_xmllint.rb +0 -38
  370. data/test/test_context.rb +0 -81
  371. data/test/test_error.rb +0 -93
  372. data/test/test_loggable.rb +0 -32
  373. data/test/test_logger.rb +0 -94
  374. data/test/test_node.rb +0 -469
  375. data/test/test_output_filesystem.rb +0 -60
  376. data/test/test_path.rb +0 -241
  377. data/test/test_source_filesystem.rb +0 -76
  378. data/test/test_source_resource.rb +0 -28
  379. data/test/test_source_stacked.rb +0 -49
  380. data/test/test_sourcehandler_base.rb +0 -136
  381. data/test/test_sourcehandler_copy.rb +0 -47
  382. data/test/test_sourcehandler_directory.rb +0 -38
  383. data/test/test_sourcehandler_feed.rb +0 -88
  384. data/test/test_sourcehandler_fragment.rb +0 -70
  385. data/test/test_sourcehandler_main.rb +0 -39
  386. data/test/test_sourcehandler_memory.rb +0 -44
  387. data/test/test_sourcehandler_metainfo.rb +0 -127
  388. data/test/test_sourcehandler_page.rb +0 -73
  389. data/test/test_sourcehandler_sitemap.rb +0 -68
  390. data/test/test_sourcehandler_template.rb +0 -68
  391. data/test/test_sourcehandler_virtual.rb +0 -106
  392. data/test/test_tag_base.rb +0 -62
  393. data/test/test_tag_breadcrumbtrail.rb +0 -91
  394. data/test/test_tag_coderay.rb +0 -45
  395. data/test/test_tag_date.rb +0 -18
  396. data/test/test_tag_executecommand.rb +0 -41
  397. data/test/test_tag_includefile.rb +0 -50
  398. data/test/test_tag_langbar.rb +0 -71
  399. data/test/test_tag_link.rb +0 -70
  400. data/test/test_tag_menu.rb +0 -207
  401. data/test/test_tag_metainfo.rb +0 -26
  402. data/test/test_tag_relocatable.rb +0 -60
  403. data/test/test_tag_sitemap.rb +0 -47
  404. data/test/test_tag_tikz.rb +0 -69
  405. data/test/test_tree.rb +0 -70
  406. data/test/test_website.rb +0 -130
  407. data/test/test_websiteaccess.rb +0 -25
  408. data/test/test_websitemanager.rb +0 -65
data/API.rdoc ADDED
@@ -0,0 +1,143 @@
1
+ = webgen API documentation
2
+
3
+ == About webgen
4
+
5
+ webgen is a command line application for generating a web site from templates and content
6
+ files. Despite this fact, the implementation also provides adequate support for using webgen as a
7
+ library and *full* *support* for extending it.
8
+
9
+ == General information
10
+
11
+ The Webgen namespace houses all classes/modules used by webgen. The class Webgen::Website is the
12
+ main class, you might want to have a look at its documentation.
13
+
14
+ webgen can be extended very easily. Any file called +init.rb+ put into the +ext+ directory of the
15
+ website or into one of its sub-directories is automatically loaded when a Webgen::Website object
16
+ is created (by using a Webgen::BundleLoader).
17
+
18
+ You can extend webgen in several ways. However, no magic or special knowledge is needed since
19
+ webgen relies on the power of Ruby itself. So, for example, an extension is just a normal Ruby
20
+ class.
21
+
22
+ Following are links and descriptions on how to develop specific types of extensions:
23
+
24
+ [Webgen::Task]
25
+
26
+ Information on how to implement functionality that operates on a website in a standard manner.
27
+
28
+ [Webgen::Source]
29
+
30
+ Information on how to implement a class that provides source paths for webgen. For example, one
31
+ could implement a source class that uses a database as backend.
32
+
33
+ [Webgen::Destination]
34
+
35
+ Information on how to implement a class that writes content to a destination location. The
36
+ default destination class just writes to the file system. One could, for example, implement a
37
+ destination class that writes the generated files to multiple locations or to a remote server.
38
+
39
+ [Webgen::ContentProcessor]
40
+
41
+ Information on how to develop an extension that processes the content. For example,
42
+ markup-to-HTML converters are implemented as content processors in webgen.
43
+
44
+ [Webgen::PathHandler]
45
+
46
+ Information on how to implement a class that handles objects of type Path and creates Node
47
+ instances. For example, Webgen::PathHandler::Page handles the conversion of '*.page' files to
48
+ '*.html' files.
49
+
50
+ [Webgen::Tag]
51
+
52
+ Information on how to implement a webgen tag. webgen tags are used to provide an easy way for
53
+ users to include dynamic content such as automatically generated menus.
54
+
55
+ [Webgen::ItemTracker]
56
+
57
+ Information on how to implement a class that tracks certain items that can be used to determine
58
+ wheter a given node object has changed.
59
+
60
+ == Other places to look at
61
+
62
+ Here is a list of modules/classes that are used throughout webgen and provide useful methods for
63
+ developing extensions:
64
+
65
+ * Webgen::Node
66
+ * Webgen::Tree
67
+ * Webgen::Path
68
+ * Webgen::Page
69
+ * Webgen::Cache
70
+ * Webgen::Utils
71
+
72
+ == List of all blackboard messages
73
+
74
+ The Blackboard (accessible via Webgen::Website#blackboard) provides an easy-to-use facility to be
75
+ notified of certain messages. All registered listeners for a message are notified when the message
76
+ gets dispatched.
77
+
78
+ Following is the list of all messages that are dispatched by the webgen core classes and built-in
79
+ extensions:
80
+
81
+ [:website_initialized]
82
+
83
+ This message is dispatched once a Webgen::Website object is fully initialized, ie. after all
84
+ extensions have been loaded, the configuration applied and frozen and the cache restored
85
+ (which is also immediately before Webgen::Website.new returns).
86
+
87
+ No parameters are given.
88
+
89
+ [:before_node_created]
90
+
91
+ This message is dispatched after the meta information from the configuration option
92
+ 'path_handler.default_meta_info' is applied to a path but before anything else happens to the
93
+ path (like updating the meta information has with meta information found in the content of the
94
+ path).
95
+
96
+ The path in question is given as parameter.
97
+
98
+ [:after_node_created]
99
+
100
+ As the name says this message is dispatched after a node has been created.
101
+
102
+ The node is given as parameter.
103
+
104
+ [:after_tree_populated]
105
+
106
+ This message is dispatched after all initial nodes have been created and the tree has been
107
+ populated. Note that further :after_node_created messages may be dispatched because nodes can
108
+ additionally be created during the rendering phase.
109
+
110
+ No parameters are given.
111
+
112
+ [:after_node_written]
113
+
114
+ This message is dispatched after a node has been written to its destination. Note that if the
115
+ node in question has the meta information 'no_output' set but the Webgen::ItemTracker has
116
+ determined that it has changed nonetheless, this message is still dispatched because the node
117
+ would have been written.
118
+
119
+ Also note that this message be may dispatched multiple times for the same node if, after all
120
+ nodes have been written, it is determined that it has changed again.
121
+
122
+ The node is given as parameter.
123
+
124
+ [:after_all_nodes_written]
125
+
126
+ This message is dispatched after all nodes have been written. Note that this message is
127
+ dispatched multiple times if needed (if nodes have changed again).
128
+
129
+ No parameters are given.
130
+
131
+ [:node_resolution_failed]
132
+
133
+ This message is dispatched when webgen tries to resolve a node by using an alcn/acn/absolute
134
+ path, the node could not be found and it is deemed that this resolution failure is critical.
135
+
136
+ The path in question as well as the requested language are given as parameter.
137
+
138
+ [:before_node_deleted]
139
+
140
+ This message is dispatched before a node is deleted from the Webgen::Tree. When this message
141
+ is dispatched, all child nodes have already been deleted.
142
+
143
+ The node is given as parameter.
data/AUTHORS CHANGED
@@ -4,5 +4,4 @@ The following persons have contributed to this version of webgen:
4
4
 
5
5
  * Arnaud Cornet <arnaud.cornet@gmail.com>
6
6
  * Jeremy Hinegardner <jeremy@hinegardner.org>
7
- * Massimiliano Filacchioni <m.filacchioni@caspur.it>
8
7
  * Paul van Tilburg <paulvt@debian.org>
data/COPYING CHANGED
@@ -1,13 +1,22 @@
1
- webgen is copyrighted free software by Thomas Leitner <t_leitner@gmx.at>.
2
- You can redistribute it and/or modify it under the terms of the GPL
3
- version 2 (see the file GPL).
1
+ webgen - static website generation made easy
2
+ Copyright (C) 2003-2012 Thomas Leitner <t_leitner@gmx.at>
4
3
 
5
- However, the webgen distribution contains some data files that have a
6
- different license. These files/directories are listed here:
4
+ webgen 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.
7
8
 
8
- data/webgen/website_style/*:
9
- The copyright information for each included website styles can be
10
- found in the README file of the website style.
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
+ The webgen distribution contains some data files that have a different
19
+ license. These files/directories are listed here:
11
20
 
12
21
  data/webgen/passive_sources/stylesheets/coderay-default.css:
13
22
  This file has been generated with the coderay_stylesheet binary and
data/ChangeLog CHANGED
@@ -1,3 +1,4459 @@
1
+ commit e1db7d82f175692dc5a2210f9df20bd077118526
2
+ Author: Thomas Leitner <t_leitner@gmx.at>
3
+ Date: Sun Nov 11 09:24:16 2012 +0100
4
+
5
+ Updated version number
6
+
7
+ lib/webgen/version.rb
8
+
9
+ commit 6b06012ffad9e5296471468a6177b346cff34807
10
+ Author: Thomas Leitner <t_leitner@gmx.at>
11
+ Date: Sun Nov 11 09:21:47 2012 +0100
12
+
13
+ Fixed RDiscount test case name
14
+
15
+ test/webgen/content_processor/test_r_discount.rb
16
+ test/webgen/content_processor/test_rdiscount.rb
17
+
18
+ commit 62a59a34bcbf1e7b6e38a48e4de4c9a2f9e794cf
19
+ Author: Thomas Leitner <t_leitner@gmx.at>
20
+ Date: Sun Nov 11 09:16:52 2012 +0100
21
+
22
+ Fixed content processor sass to work with sass 3.2.2
23
+
24
+ lib/webgen/content_processor/sass.rb
25
+
26
+ commit 04bceae8e787b515eeded5e0098d794183f73e7e
27
+ Author: Thomas Leitner <t_leitner@gmx.at>
28
+ Date: Sat Nov 10 22:51:47 2012 +0100
29
+
30
+ Content processor tikz now uses the website temp dir for temp file
31
+
32
+ lib/webgen/content_processor/tikz.rb
33
+
34
+ commit ef34f2205abfc1b6be02f21151076c615c788c51
35
+ Author: Thomas Leitner <t_leitner@gmx.at>
36
+ Date: Sat Nov 10 21:04:11 2012 +0100
37
+
38
+ Fixed result of website.tmpdir in TestHelper#setup_website
39
+
40
+ lib/webgen/test_helper.rb
41
+
42
+ commit 6d5f701bd799b9d3fef4f7894210b32db1fba8c6
43
+ Author: Thomas Leitner <t_leitner@gmx.at>
44
+ Date: Sat Nov 10 20:35:03 2012 +0100
45
+
46
+ Added CLI option for specifying any configuration option
47
+
48
+ The option value is parsed with YAML to allow rich argument types.
49
+
50
+ lib/webgen/cli.rb
51
+
52
+ commit 5564f7633c012e6891dbce61882fc152c3854c25
53
+ Author: Thomas Leitner <t_leitner@gmx.at>
54
+ Date: Sat Nov 10 10:12:44 2012 +0100
55
+
56
+ Added bundle for showing changes to destination paths
57
+
58
+ lib/webgen/bundle/built-in-show-changes/info.yaml
59
+ lib/webgen/bundle/built-in-show-changes/init.rb
60
+ lib/webgen/bundle/built-in/init.rb
61
+
62
+ commit c0c206247865d81562aac9ce22b251ee292f01f6
63
+ Author: Thomas Leitner <t_leitner@gmx.at>
64
+ Date: Sat Nov 10 10:09:05 2012 +0100
65
+
66
+ Modified PathHandler so that the content of the written node is passed in after_node_written
67
+
68
+ lib/webgen/path_handler.rb
69
+
70
+ commit c36149a989319d8c2754ea2bf8659f82f44c1f59
71
+ Author: Thomas Leitner <t_leitner@gmx.at>
72
+ Date: Fri Nov 9 18:42:14 2012 +0100
73
+
74
+ Webgen::Configuration is now dumpable
75
+
76
+ Note that the validation proc can not be dumped and therefore not
77
+ restored.
78
+
79
+ lib/webgen/configuration.rb
80
+
81
+ commit 294ec4c4cef5063344c31ad92d5acfc30d674ba8
82
+ Author: Thomas Leitner <t_leitner@gmx.at>
83
+ Date: Fri Nov 9 17:33:22 2012 +0100
84
+
85
+ Webgen::Configuration is now comparable
86
+
87
+ lib/webgen/configuration.rb
88
+ test/webgen/test_configuration.rb
89
+
90
+ commit 0e5830b39ad5da9a4c76af8567e741f4d3967403
91
+ Author: Thomas Leitner <t_leitner@gmx.at>
92
+ Date: Tue Nov 6 21:38:44 2012 +0100
93
+
94
+ Added Node#versions for an easy way to get all versions of a node
95
+
96
+ lib/webgen/node.rb
97
+ test/webgen/test_node.rb
98
+
99
+ commit da32af1fb99b30a049c994e99bda7ffc1429f73c
100
+ Author: Thomas Leitner <t_leitner@gmx.at>
101
+ Date: Sun Nov 4 10:40:31 2012 +0100
102
+
103
+ Updated feed handler to be based on path versions
104
+
105
+ Previously one path was used to generate more than one node because
106
+ path versions were not available which are a better fit.
107
+
108
+ data/webgen/passive_sources/default.metainfo
109
+ lib/webgen/path_handler/feed.rb
110
+ test/webgen/path_handler/test_feed.rb
111
+
112
+ commit 4b619e5987821faf4389476e4814a52b7bedb234
113
+ Author: Thomas Leitner <t_leitner@gmx.at>
114
+ Date: Sun Nov 4 10:36:57 2012 +0100
115
+
116
+ Fixed two problems with path handler feed
117
+
118
+ * No more errors when un-render-able feed entries are encountered
119
+ * Feed templates adjusted so that a flat list of entries is used
120
+
121
+ data/webgen/passive_sources/templates/feed.template
122
+ lib/webgen/path_handler/feed.rb
123
+
124
+ commit 14ba4638853dce016932c4e3690368f02c13d69c
125
+ Author: Thomas Leitner <t_leitner@gmx.at>
126
+ Date: Sun Nov 4 10:33:40 2012 +0100
127
+
128
+ Implemented Node#respond_to_missing? to complement #method_missing
129
+
130
+ lib/webgen/node.rb
131
+ test/webgen/test_node.rb
132
+
133
+ commit f0ae84fb2824da37eae6fa39f0de9a63f206ef5c
134
+ Author: Thomas Leitner <t_leitner@gmx.at>
135
+ Date: Sun Nov 4 08:38:32 2012 +0100
136
+
137
+ Using the sort:mi_key option in a node finder option set works now even when the mi_key is not set on a node
138
+
139
+ lib/webgen/node_finder.rb
140
+ test/webgen/test_node_finder.rb
141
+
142
+ commit 70df694568a9d8288724bea5565657a0bfa95054
143
+ Author: Thomas Leitner <t_leitner@gmx.at>
144
+ Date: Sun Nov 4 08:23:12 2012 +0100
145
+
146
+ Re-added option tag.langbar.separator
147
+
148
+ data/webgen/passive_sources/templates/tag.template
149
+ lib/webgen/bundle/built-in/init.rb
150
+ test/webgen/tag/test_langbar.rb
151
+
152
+ commit 0b0b5ba0bfbad91d27ec786ccc0b2a38aa4561d1
153
+ Author: Thomas Leitner <t_leitner@gmx.at>
154
+ Date: Sat Nov 3 08:57:17 2012 +0100
155
+
156
+ Fixed documentation
157
+
158
+ lib/webgen/bundle/built-in/info.yaml
159
+
160
+ commit 58a17bafa6ebc040f67547b5c6d80770c0bffece
161
+ Author: Thomas Leitner <t_leitner@gmx.at>
162
+ Date: Sat Nov 3 08:50:13 2012 +0100
163
+
164
+ Added option for doing a dry-run
165
+
166
+ This allows one to see what webgen would do but without writing
167
+ anything.
168
+
169
+ lib/webgen/bundle/built-in/init.rb
170
+ lib/webgen/cli.rb
171
+ lib/webgen/destination.rb
172
+ lib/webgen/path_handler.rb
173
+ lib/webgen/website.rb
174
+
175
+ commit 4035bb0a75ae59bb685fbe8046b2a2d6f55b0adc
176
+ Author: Thomas Leitner <t_leitner@gmx.at>
177
+ Date: Sat Nov 3 08:10:45 2012 +0100
178
+
179
+ Webgen::CLI::Logger now supports a customizable prefix for logging messages
180
+
181
+ lib/webgen/cli/logger.rb
182
+
183
+ commit 6a2918c52710fbab6b341a099412a6d4f4fe73a9
184
+ Author: Thomas Leitner <t_leitner@gmx.at>
185
+ Date: Fri Nov 2 22:30:31 2012 +0100
186
+
187
+ Dupping a Configuration object now also works if non-dup-able values are set
188
+
189
+ lib/webgen/configuration.rb
190
+
191
+ commit f822a3f0630d89827a10be3ded191840d2bcb883
192
+ Author: Thomas Leitner <t_leitner@gmx.at>
193
+ Date: Fri Nov 2 22:29:38 2012 +0100
194
+
195
+ Item tracker nodes reacts now better to exceptions in node generation methods
196
+
197
+ lib/webgen/item_tracker/nodes.rb
198
+
199
+ commit be383c1288ea6f3467174947e1b0285507d12157
200
+ Author: Thomas Leitner <t_leitner@gmx.at>
201
+ Date: Fri Nov 2 22:26:14 2012 +0100
202
+
203
+ Major refactoring of website generation mechanism
204
+
205
+ * Path handlers are now not only selected by patterns defined by
206
+ the author of a path handler but also by the meta info key
207
+ 'handler'
208
+
209
+ * Meta information files are now processed before anything else to
210
+ allow specifying meta information for any paths, even directories.
211
+
212
+ * Removed config option path_handler.default_meta_info in favor of
213
+ specifying the meta info in a passive meta info file. Which
214
+ paths a handler uses is now also defined via the default passive
215
+ meta info file and the 'handler' mi key instead of path patterns.
216
+
217
+ * Secondary node creation refactored to make better use of the new
218
+ 'handler' mi key and to avoid problems with double node creation
219
+ problems (also needed changes in PathHandler::Base#create_node)
220
+
221
+ * Updated meta_info path handler to allow specifying arrays as keys
222
+ and to avoid creating unneeded nodes for meta information files
223
+
224
+ * Updated virtual and template path handlers and the fragments
225
+ content processor to use changed secondary node creation API
226
+
227
+ data/webgen/passive_sources/default.metainfo
228
+ lib/webgen/bundle/built-in/init.rb
229
+ lib/webgen/content_processor/fragments.rb
230
+ lib/webgen/path_handler.rb
231
+ lib/webgen/path_handler/base.rb
232
+ lib/webgen/path_handler/meta_info.rb
233
+ lib/webgen/path_handler/template.rb
234
+ lib/webgen/path_handler/virtual.rb
235
+ test/webgen/content_processor/test_fragments.rb
236
+ test/webgen/path_handler/test_base.rb
237
+ test/webgen/path_handler/test_copy.rb
238
+ test/webgen/path_handler/test_meta_info.rb
239
+ test/webgen/path_handler/test_virtual.rb
240
+
241
+ commit 972425f9d1a6f936dbc8304a7ec038f9a7ffa6ce
242
+ Author: Thomas Leitner <t_leitner@gmx.at>
243
+ Date: Fri Nov 2 21:55:14 2012 +0100
244
+
245
+ Fixed Ruby warning
246
+
247
+ lib/webgen/cli/show_dependencies_command.rb
248
+
249
+ commit 507d0262c6265e2c100b6a4d6d8905694a976382
250
+ Author: Thomas Leitner <t_leitner@gmx.at>
251
+ Date: Sat Oct 27 21:07:22 2012 +0200
252
+
253
+ Source#paths now returns an Array instead of a Hash
254
+
255
+ lib/webgen/path_handler.rb
256
+ lib/webgen/source.rb
257
+ test/webgen/test_source.rb
258
+
259
+ commit 3d9efbbde691a4337a6de15856f4bd8bf4208bb3
260
+ Author: Thomas Leitner <t_leitner@gmx.at>
261
+ Date: Sat Oct 27 13:08:22 2012 +0200
262
+
263
+ Performance optimization: Using constant for internal base URI
264
+
265
+ lib/webgen/path.rb
266
+
267
+ commit ce1914f67cba6f8851794bfbb98b734f471c9243
268
+ Author: Thomas Leitner <t_leitner@gmx.at>
269
+ Date: Mon Oct 22 22:07:24 2012 +0200
270
+
271
+ Meta information 'cn' can now be used to customize node cn generation
272
+
273
+ As with dest_path, this needs to be set before the node is created.
274
+
275
+ lib/webgen/path.rb
276
+ test/webgen/test_path.rb
277
+
278
+ commit e5595b9bc77422fc7ff2b31c16c69b8bca3d51c8
279
+ Author: Thomas Leitner <t_leitner@gmx.at>
280
+ Date: Mon Oct 22 20:42:06 2012 +0200
281
+
282
+ Fixed problem with nil object
283
+
284
+ lib/webgen/path_handler.rb
285
+
286
+ commit ad285b3a270713577d9c94a21d6259cc87bb4bdd
287
+ Author: Thomas Leitner <t_leitner@gmx.at>
288
+ Date: Mon Oct 22 20:40:05 2012 +0200
289
+
290
+ Simplified Webgen::Page class and updated PathHandler::PageUtils
291
+
292
+ * Passing a meta information hash to Page.from_data is not
293
+ possible anymore.
294
+
295
+ * The PageUtils module now handles the 'defaults' key of the
296
+ 'blocks' meta information if no special information for the
297
+ block is available.
298
+
299
+ lib/webgen/bundle/built-in/init.rb
300
+ lib/webgen/page.rb
301
+ lib/webgen/path_handler/page_utils.rb
302
+ test/webgen/test_page.rb
303
+
304
+ commit 2e89cf9b136669e081a11dc6148bea55bd83d0e7
305
+ Author: Thomas Leitner <t_leitner@gmx.at>
306
+ Date: Mon Oct 22 20:09:41 2012 +0200
307
+
308
+ Fixed problems with various tests because of the last commits
309
+
310
+ lib/webgen/test_helper.rb
311
+ test/webgen/content_processor/test_rdiscount.rb
312
+ test/webgen/test_item_tracker.rb
313
+
314
+ commit 2d8158b8d3403e7eec4b05e16ce31f074d866117
315
+ Author: Thomas Leitner <t_leitner@gmx.at>
316
+ Date: Mon Oct 22 20:01:05 2012 +0200
317
+
318
+ Making sure the temporary directory always exists
319
+
320
+ lib/webgen/website.rb
321
+
322
+ commit 7ec4e699c7289bacdaeb958d423984250a797f6e
323
+ Author: Thomas Leitner <t_leitner@gmx.at>
324
+ Date: Sun Oct 14 20:18:15 2012 +0200
325
+
326
+ NodeFinder#find results are now cached using the volatile cache
327
+
328
+ lib/webgen/node_finder.rb
329
+
330
+ commit 7c29e20cdf4cb78cbb9061931dc667e6269ce0c9
331
+ Author: Thomas Leitner <t_leitner@gmx.at>
332
+ Date: Sun Oct 14 20:16:23 2012 +0200
333
+
334
+ Refactored ItemTracker blackboard hooks to use :before_all_nodes_written
335
+
336
+ lib/webgen/item_tracker.rb
337
+
338
+ commit 96953ebcd7185175f7f6ef6b5440c7bc5b4021b3
339
+ Author: Thomas Leitner <t_leitner@gmx.at>
340
+ Date: Sun Oct 14 20:15:11 2012 +0200
341
+
342
+ Added blackboard message :before_all_nodes_written
343
+
344
+ lib/webgen/path_handler.rb
345
+
346
+ commit c9b2318107f0c844707fff51aff1561cb3dc143b
347
+ Author: Thomas Leitner <t_leitner@gmx.at>
348
+ Date: Sun Oct 14 20:14:37 2012 +0200
349
+
350
+ Passive nodes are now only considered for writing if meta info 'no_output' is false
351
+
352
+ lib/webgen/path_handler.rb
353
+
354
+ commit dce39d0f044c2812ccfd013bd281a2ceac7e94ee
355
+ Author: Thomas Leitner <t_leitner@gmx.at>
356
+ Date: Sun Oct 14 20:12:35 2012 +0200
357
+
358
+ Display of rendering time of a node now in verbose instead of debug mode
359
+
360
+ lib/webgen/path_handler.rb
361
+
362
+ commit 7d7a7810b16f33935db9c87f7f50a22589ffe80e
363
+ Author: Thomas Leitner <t_leitner@gmx.at>
364
+ Date: Sun Oct 14 20:11:45 2012 +0200
365
+
366
+ Displaying time needed for populating the initial node tree in verbose mode
367
+
368
+ lib/webgen/path_handler.rb
369
+
370
+ commit 2c68b791157e8feef320abec87c2e316ad427f4f
371
+ Author: Thomas Leitner <t_leitner@gmx.at>
372
+ Date: Sun Oct 14 20:10:32 2012 +0200
373
+
374
+ Fixed problem with nil object
375
+
376
+ lib/webgen/path_handler.rb
377
+
378
+ commit bec1ed4c628ec59f6138d6dc9af5ec3b6bc76c4a
379
+ Author: Thomas Leitner <t_leitner@gmx.at>
380
+ Date: Sun Oct 14 20:04:52 2012 +0200
381
+
382
+ Better description for the volatile cache
383
+
384
+ lib/webgen/cache.rb
385
+
386
+ commit 1b5df6881467ff6080b75078ad73a75fec2516c6
387
+ Author: Thomas Leitner <t_leitner@gmx.at>
388
+ Date: Sun Oct 14 10:13:36 2012 +0200
389
+
390
+ Fixed naming of RDiscount content processor source file
391
+
392
+ lib/webgen/content_processor/r_discount.rb
393
+ lib/webgen/content_processor/rdiscount.rb
394
+
395
+ commit a20b612e4c7dc4ce599c6eeb92fe24cd2f69f78f
396
+ Author: Thomas Leitner <t_leitner@gmx.at>
397
+ Date: Sun Oct 14 10:10:49 2012 +0200
398
+
399
+ Only retrieving item data in ItemTracker if it has not been retrieved before
400
+
401
+ lib/webgen/item_tracker.rb
402
+
403
+ commit 108dbfcc05592e3cf9bec2fbcd73568e7b0e0fcf
404
+ Author: Thomas Leitner <t_leitner@gmx.at>
405
+ Date: Sun Oct 14 10:08:57 2012 +0200
406
+
407
+ Caching changed status of items in ItemTracker
408
+
409
+ lib/webgen/item_tracker.rb
410
+
411
+ commit 980b569a9c5328138195aaa59dfb7b755c9630b4
412
+ Author: Thomas Leitner <t_leitner@gmx.at>
413
+ Date: Sun Oct 14 10:05:27 2012 +0200
414
+
415
+ Optimized ItemTracker#node_referenced? by using cached data
416
+
417
+ lib/webgen/item_tracker.rb
418
+ lib/webgen/item_tracker/file.rb
419
+ lib/webgen/item_tracker/missing_node.rb
420
+ lib/webgen/item_tracker/node_content.rb
421
+ lib/webgen/item_tracker/node_meta_info.rb
422
+ lib/webgen/item_tracker/nodes.rb
423
+ test/webgen/item_tracker/test_file.rb
424
+ test/webgen/item_tracker/test_missing_node.rb
425
+ test/webgen/item_tracker/test_node_content.rb
426
+ test/webgen/item_tracker/test_node_meta_info.rb
427
+ test/webgen/item_tracker/test_nodes.rb
428
+ test/webgen/test_item_tracker.rb
429
+
430
+ commit 7b9b31d50ba9a9a7eb8486ef10630158447b2992
431
+ Author: Thomas Leitner <t_leitner@gmx.at>
432
+ Date: Sun Oct 14 08:01:46 2012 +0200
433
+
434
+ Node meta info item tracker does not use 'modified_at' anymore
435
+
436
+ The meta info 'modified_at' changes each time the node content is
437
+ changed and therefore should not be used for checking if the meta
438
+ information has changed.
439
+
440
+ lib/webgen/bundle/built-in/init.rb
441
+ lib/webgen/item_tracker/node_meta_info.rb
442
+
443
+ commit a3313c72ffe528921d2c1a435b9cd4f9f488143f
444
+ Author: Thomas Leitner <t_leitner@gmx.at>
445
+ Date: Sat Oct 13 08:47:22 2012 +0200
446
+
447
+ Output of CLI command 'show dep' is now filtered by an optional argument
448
+
449
+ lib/webgen/cli/show_dependencies_command.rb
450
+
451
+ commit 996ff0788c83dbe645feff2589d042028067e26f
452
+ Author: Thomas Leitner <t_leitner@gmx.at>
453
+ Date: Sat Oct 13 08:31:18 2012 +0200
454
+
455
+ First line of configuration file now may contain the word ruby anywhere
456
+
457
+ lib/webgen/website.rb
458
+ test/webgen/test_website.rb
459
+
460
+ commit 25449af89a10f3ec32ca4f267457f660e1b6626a
461
+ Author: Thomas Leitner <t_leitner@gmx.at>
462
+ Date: Fri Oct 12 22:11:07 2012 +0200
463
+
464
+ Implemented NodeFinder filter not
465
+
466
+ lib/webgen/node_finder.rb
467
+ test/webgen/test_node_finder.rb
468
+
469
+ commit eab8ebbbf743a7ef479ceb6b9c8959dceffab8eb
470
+ Author: Thomas Leitner <t_leitner@gmx.at>
471
+ Date: Mon Sep 24 20:48:24 2012 +0200
472
+
473
+ Fixed API doc of TestHelper#setup_default_nodes
474
+
475
+ lib/webgen/test_helper.rb
476
+
477
+ commit c0825ac97e814038df2655a4b7fc6d5370bed7f9
478
+ Author: Thomas Leitner <t_leitner@gmx.at>
479
+ Date: Mon Sep 24 20:48:01 2012 +0200
480
+
481
+ Implemented NodeFinder filter siblings
482
+
483
+ lib/webgen/node_finder.rb
484
+ test/webgen/test_node_finder.rb
485
+
486
+ commit 519f84a79b977d79310d9fb4f99b66ca05b8260c
487
+ Author: Thomas Leitner <t_leitner@gmx.at>
488
+ Date: Mon Sep 24 20:35:28 2012 +0200
489
+
490
+ Correct index_path → proxy_path
491
+
492
+ lib/webgen/bundle/built-in/init.rb
493
+
494
+ commit 470dd7360bb8da127de78cd732d95ed8d729d181
495
+ Author: Thomas Leitner <t_leitner@gmx.at>
496
+ Date: Mon Sep 24 20:35:11 2012 +0200
497
+
498
+ Removed superfluous setting of hreflang attribute
499
+
500
+ data/webgen/passive_sources/templates/tag.template
501
+
502
+ commit 4385d5ffe2ca16028f64ab88eec8a1c52b74b862
503
+ Author: Thomas Leitner <t_leitner@gmx.at>
504
+ Date: Mon Sep 24 20:33:33 2012 +0200
505
+
506
+ Added tag.breadcrumb_trail.separator option
507
+
508
+ data/webgen/passive_sources/templates/tag.template
509
+ lib/webgen/bundle/built-in/init.rb
510
+ test/webgen/tag/test_breadcrumb_trail.rb
511
+
512
+ commit 80fe712676e881a0d6b307abb1ab675fbe208cd5
513
+ Author: Thomas Leitner <t_leitner@gmx.at>
514
+ Date: Sun Sep 23 20:01:53 2012 +0200
515
+
516
+ Removed recommendation of JS-Kit
517
+
518
+ doc/faq.page
519
+
520
+ commit ec9adaaf2608eac32ae7695d2cf03afba5ba05f8
521
+ Author: Thomas Leitner <t_leitner@gmx.at>
522
+ Date: Sun Sep 23 09:50:34 2012 +0200
523
+
524
+ Fixed handling of secondary nodes
525
+
526
+ The algorithm for creating and deleting nodes should now work
527
+ more reliably:
528
+
529
+ * If secondary nodes from a path would be created again (ie. if
530
+ all parameters for the creation are the same), the already
531
+ created nodes are returned.
532
+
533
+ If all the created nodes have been deleted in the meantime,
534
+ they are recreated; the deletion of only a part of the nodes
535
+ leads to an error.
536
+
537
+ * Already created secondary nodes are only deleted if they would
538
+ not have been created again (eg. if a fragment node is not
539
+ created anymore because the heading has been deleted).
540
+
541
+ lib/webgen/path_handler.rb
542
+
543
+ commit d7eefd1ddcaf97fd3ab8b632c4412f17ff5f2b61
544
+ Author: Thomas Leitner <t_leitner@gmx.at>
545
+ Date: Sun Sep 23 09:39:08 2012 +0200
546
+
547
+ ItemTracker now works in case a secondary node gets deleted
548
+
549
+ lib/webgen/item_tracker.rb
550
+
551
+ commit 3a32cd4adb921c3f61c8e9189e6e47da3312c027
552
+ Author: Thomas Leitner <t_leitner@gmx.at>
553
+ Date: Sun Sep 23 09:37:04 2012 +0200
554
+
555
+ Making sure that all node finder option keys are Symbols
556
+
557
+ lib/webgen/node_finder.rb
558
+
559
+ commit c3d7d6a2667d2ab32b7f9cf56a40de525b90496d
560
+ Author: Thomas Leitner <t_leitner@gmx.at>
561
+ Date: Sun Sep 23 09:36:18 2012 +0200
562
+
563
+ NodeFinder has an explicit meta information filter now
564
+
565
+ lib/webgen/node_finder.rb
566
+ test/webgen/test_node_finder.rb
567
+
568
+ commit 59f14d3c06d4386e2895d828dcdb9daa79a81979
569
+ Author: Thomas Leitner <t_leitner@gmx.at>
570
+ Date: Sun Sep 23 09:26:20 2012 +0200
571
+
572
+ Source::FileSystem#paths now correctly returns a Set object
573
+
574
+ lib/webgen/source/file_system.rb
575
+
576
+ commit 00afced8313ccac80b4519d4d2a3efe403d505e1
577
+ Author: Thomas Leitner <t_leitner@gmx.at>
578
+ Date: Sun Sep 23 09:12:17 2012 +0200
579
+
580
+ Added Hash#symbolize_keys
581
+
582
+ lib/webgen/core_ext.rb
583
+ test/webgen/test_core_ext.rb
584
+
585
+ commit 6dd7aae6c1027823f9b8f5d5713bc0dae178d399
586
+ Author: Thomas Leitner <t_leitner@gmx.at>
587
+ Date: Sat Sep 22 08:44:31 2012 +0200
588
+
589
+ Automatically setting a sane 'modified_at' meta info on secondary nodes
590
+
591
+ lib/webgen/path_handler.rb
592
+
593
+ commit 9938bf01751e27bbad4336da5ef1dbf639a45278
594
+ Author: Thomas Leitner <t_leitner@gmx.at>
595
+ Date: Sat Sep 22 08:43:49 2012 +0200
596
+
597
+ Added Path#[] for getting a meta information value without triggering analyzation
598
+
599
+ lib/webgen/path.rb
600
+ test/webgen/test_path.rb
601
+
602
+ commit 8e20ca1581a7b166d6ddfdadb678603fb87f0875
603
+ Author: Thomas Leitner <t_leitner@gmx.at>
604
+ Date: Sat Sep 22 07:52:53 2012 +0200
605
+
606
+ Updated AUTHORS, COPYING and GPL (now using version 3)
607
+
608
+ AUTHORS
609
+ COPYING
610
+ GPL
611
+
612
+ commit e0bd9bb42f7e2cb186c0c1b45f504805bf50daea
613
+ Author: Thomas Leitner <t_leitner@gmx.at>
614
+ Date: Sat Sep 22 07:52:01 2012 +0200
615
+
616
+ Removed leading hashes from API.rdoc and fixed problems in README.md
617
+
618
+ API.rdoc
619
+ README.md
620
+
621
+ commit 42f109af4b3b06a098bb8ca73f98de88ed60813c
622
+ Author: Thomas Leitner <t_leitner@gmx.at>
623
+ Date: Fri Sep 21 18:49:42 2012 +0200
624
+
625
+ Small update to NodeFinder API doc
626
+
627
+ lib/webgen/node_finder.rb
628
+
629
+ commit 1ddd189cc4832122062c9f67a35ffeca0258b86f
630
+ Author: Thomas Leitner <t_leitner@gmx.at>
631
+ Date: Fri Sep 21 18:49:27 2012 +0200
632
+
633
+ Updated tag menu
634
+
635
+ data/webgen/passive_sources/templates/tag.template
636
+ lib/webgen/bundle/built-in/info.yaml
637
+ lib/webgen/bundle/built-in/init.rb
638
+ lib/webgen/tag/menu.rb
639
+ test/test_tag_menu.rb
640
+ test/webgen/tag/test_menu.rb
641
+
642
+ commit b07f4e3802f97db69fa1201353f1a78e410c22d3
643
+ Author: Thomas Leitner <t_leitner@gmx.at>
644
+ Date: Fri Sep 21 17:57:25 2012 +0200
645
+
646
+ Implemented Node#is_ancestor_of?
647
+
648
+ lib/webgen/node.rb
649
+ test/webgen/test_node.rb
650
+
651
+ commit 693c444002e0c975a294505f59959a55430ba8ed
652
+ Author: Thomas Leitner <t_leitner@gmx.at>
653
+ Date: Thu Sep 20 19:19:44 2012 +0200
654
+
655
+ Updated all API documentation and README file
656
+
657
+ API.rdoc
658
+ README
659
+ README.md
660
+ Rakefile
661
+ lib/webgen/blackboard.rb
662
+ lib/webgen/bundle_loader.rb
663
+ lib/webgen/cache.rb
664
+ lib/webgen/cli/create_bundle_command.rb
665
+ lib/webgen/cli/create_command.rb
666
+ lib/webgen/cli/generate_command.rb
667
+ lib/webgen/cli/install_bundle_command.rb
668
+ lib/webgen/cli/list_bundle_command.rb
669
+ lib/webgen/cli/show_config_command.rb
670
+ lib/webgen/cli/show_dependencies_command.rb
671
+ lib/webgen/cli/show_extensions_command.rb
672
+ lib/webgen/cli/utils.rb
673
+ lib/webgen/configuration.rb
674
+ lib/webgen/content_processor.rb
675
+ lib/webgen/content_processor/blocks.rb
676
+ lib/webgen/content_processor/fragments.rb
677
+ lib/webgen/content_processor/html_head.rb
678
+ lib/webgen/content_processor/sass.rb
679
+ lib/webgen/content_processor/tags.rb
680
+ lib/webgen/context.rb
681
+ lib/webgen/destination.rb
682
+ lib/webgen/extension_manager.rb
683
+ lib/webgen/item_tracker.rb
684
+ lib/webgen/item_tracker/file.rb
685
+ lib/webgen/item_tracker/missing_node.rb
686
+ lib/webgen/item_tracker/node_content.rb
687
+ lib/webgen/item_tracker/node_meta_info.rb
688
+ lib/webgen/item_tracker/nodes.rb
689
+ lib/webgen/logger.rb
690
+ lib/webgen/node.rb
691
+ lib/webgen/node_finder.rb
692
+ lib/webgen/page.rb
693
+ lib/webgen/path.rb
694
+ lib/webgen/path_handler.rb
695
+ lib/webgen/path_handler/base.rb
696
+ lib/webgen/path_handler/copy.rb
697
+ lib/webgen/path_handler/feed.rb
698
+ lib/webgen/path_handler/meta_info.rb
699
+ lib/webgen/path_handler/page.rb
700
+ lib/webgen/path_handler/page_utils.rb
701
+ lib/webgen/path_handler/template.rb
702
+ lib/webgen/path_handler/virtual.rb
703
+ lib/webgen/rake_task.rb
704
+ lib/webgen/source.rb
705
+ lib/webgen/source/file_system.rb
706
+ lib/webgen/source/stacked.rb
707
+ lib/webgen/tag.rb
708
+ lib/webgen/tag/breadcrumb_trail.rb
709
+ lib/webgen/tag/execute_command.rb
710
+ lib/webgen/tag/meta_info.rb
711
+ lib/webgen/tag/relocatable.rb
712
+ lib/webgen/tag/tikz.rb
713
+ lib/webgen/task.rb
714
+ lib/webgen/task/create_bundle.rb
715
+ lib/webgen/task/create_website.rb
716
+ lib/webgen/task/generate_website.rb
717
+ lib/webgen/tree.rb
718
+ lib/webgen/utils.rb
719
+ lib/webgen/utils/tag_parser.rb
720
+ lib/webgen/website.rb
721
+
722
+ commit 704f4d97bfa14096e8bbb801c97d41d9128e5d63
723
+ Author: Thomas Leitner <t_leitner@gmx.at>
724
+ Date: Sun Sep 16 17:24:44 2012 +0200
725
+
726
+ Removed old apply CLI command
727
+
728
+ lib/webgen/cli/apply_command.rb
729
+
730
+ commit 261d7668d1e270d25d1e61801bf7482054dbe374
731
+ Author: Thomas Leitner <t_leitner@gmx.at>
732
+ Date: Sat Sep 15 16:35:28 2012 +0200
733
+
734
+ BundleLoader#mount_passive now allows to specify a glob pattern
735
+
736
+ lib/webgen/bundle_loader.rb
737
+ test/webgen/test_bundle_loader.rb
738
+
739
+ commit e9f3bfcf33fc1e80b1567732b4cbc5b8f2b5691e
740
+ Author: Thomas Leitner <t_leitner@gmx.at>
741
+ Date: Sat Sep 15 16:03:26 2012 +0200
742
+
743
+ Implemented auto-loading of extension bundles
744
+
745
+ This facility should only be used by extension bundles that
746
+ provide add-ons that do not interfere with the default webgen
747
+ behaviour.
748
+
749
+ A prime example for a bundle that should use auto-loading is
750
+ a bundle that provides website templates.
751
+
752
+ lib/webgen/bundle_loader.rb
753
+ lib/webgen/website.rb
754
+
755
+ commit 548b67f95adc3f7d00ba326a8861db4ad01a3830
756
+ Author: Thomas Leitner <t_leitner@gmx.at>
757
+ Date: Sat Sep 15 08:33:52 2012 +0200
758
+
759
+ Updated webgen's rake task
760
+
761
+ Rakefile
762
+ lib/webgen/rake_task.rb
763
+ lib/webgen/webgentask.rb
764
+ test/test_webgentask.rb
765
+ test/webgen/test_rake_task.rb
766
+
767
+ commit b7f8b963ca8370c7f29c4bec528c574265015245
768
+ Author: Thomas Leitner <t_leitner@gmx.at>
769
+ Date: Sat Sep 15 08:13:30 2012 +0200
770
+
771
+ Added test case for Webgen::Website
772
+
773
+ test/test_website.rb
774
+ test/webgen/test_website.rb
775
+
776
+ commit 6612023955f000b2189814eaba41305610fe6e4b
777
+ Author: Thomas Leitner <t_leitner@gmx.at>
778
+ Date: Sat Sep 15 08:01:09 2012 +0200
779
+
780
+ Removed unneeded/unused code and files
781
+
782
+ data/webgen/website_skeleton/README
783
+ data/webgen/website_skeleton/Rakefile
784
+ data/webgen/website_skeleton/config.yaml
785
+ data/webgen/website_skeleton/ext/init.rb
786
+ data/webgen/website_skeleton/src/.gitignore
787
+ lib/webgen/default_config.rb
788
+ lib/webgen/website.rb
789
+ lib/webgen/websitemanager.rb
790
+ test/test_sourcehandler_main.rb
791
+ test/test_websitemanager.rb
792
+
793
+ commit 184ec5d30145f4eb9207ae63c23f4cfb7418c8b3
794
+ Author: Thomas Leitner <t_leitner@gmx.at>
795
+ Date: Fri Sep 14 18:43:49 2012 +0200
796
+
797
+ Refactored 'bundle create' CLI command
798
+
799
+ * Created a new task based on the implementation of the CLI command
800
+ * The CLI command now just uses this task
801
+
802
+ lib/webgen/bundle/built-in/info.yaml
803
+ lib/webgen/bundle/built-in/init.rb
804
+ lib/webgen/cli/create_bundle_command.rb
805
+ lib/webgen/task/create_bundle.rb
806
+
807
+ commit 3a0b8737c15f0c0933a4832372c23fc95baa07e1
808
+ Author: Thomas Leitner <t_leitner@gmx.at>
809
+ Date: Thu Sep 13 21:11:51 2012 +0200
810
+
811
+ Updated the create website CLI command to use the new CreateWebsite task
812
+
813
+ lib/webgen/cli.rb
814
+ lib/webgen/cli/create_command.rb
815
+
816
+ commit e736c58b4e430726b82edd7fb2fad109c76fa51d
817
+ Author: Thomas Leitner <t_leitner@gmx.at>
818
+ Date: Thu Sep 13 21:10:29 2012 +0200
819
+
820
+ Implemented CreateWebsite task
821
+
822
+ data/webgen/basic_website_template/ext/init.rb
823
+ data/webgen/basic_website_template/src/.gitignore
824
+ data/webgen/basic_website_template/webgen.config
825
+ lib/webgen/bundle/built-in/info.yaml
826
+ lib/webgen/bundle/built-in/init.rb
827
+ lib/webgen/task/create_website.rb
828
+ test/webgen/task/test_create_website.rb
829
+
830
+ commit 4c75ac0535a02667ba625d14359adf58893c37e2
831
+ Author: Thomas Leitner <t_leitner@gmx.at>
832
+ Date: Thu Sep 13 18:49:13 2012 +0200
833
+
834
+ Implemented GenerateWebsite task
835
+
836
+ Combines the implementations already available in PathHandler
837
+ and Website and expands on them.
838
+
839
+ lib/webgen/bundle/built-in/info.yaml
840
+ lib/webgen/bundle/built-in/init.rb
841
+ lib/webgen/cli/generate_command.rb
842
+ lib/webgen/path_handler.rb
843
+ lib/webgen/task/generate_website.rb
844
+ lib/webgen/website.rb
845
+
846
+ commit f211eb250361474c33249651735fbb146fdd7016
847
+ Author: Thomas Leitner <t_leitner@gmx.at>
848
+ Date: Thu Sep 13 18:45:59 2012 +0200
849
+
850
+ Implemented a generic task extension
851
+
852
+ This will be used for providing tasks like generating or
853
+ creating websites.
854
+
855
+ lib/webgen/bundle/built-in/info.yaml
856
+ lib/webgen/bundle/built-in/init.rb
857
+ lib/webgen/task.rb
858
+ lib/webgen/website.rb
859
+ test/webgen/test_task.rb
860
+
861
+ commit 312c9bd5aef17bf127b249879e0718d7e33c2f25
862
+ Author: Thomas Leitner <t_leitner@gmx.at>
863
+ Date: Sun Sep 9 12:49:34 2012 +0200
864
+
865
+ Added node finder filters :ancestors and :descendants
866
+
867
+ lib/webgen/node_finder.rb
868
+ test/webgen/test_node_finder.rb
869
+
870
+ commit 9f78c9fb2b9bee4ccb05c1282c10c1fb5f16a036
871
+ Author: Thomas Leitner <t_leitner@gmx.at>
872
+ Date: Sun Sep 9 09:14:36 2012 +0200
873
+
874
+ Fixed differing behaviour of Configuration#[]
875
+
876
+ Configuration options can now be correctly modified in-place
877
+ whether they have been set before or not.
878
+
879
+ lib/webgen/configuration.rb
880
+ test/webgen/test_configuration.rb
881
+
882
+ commit 84bc939ff2b3f8c4958760b61fa50261a0db96db
883
+ Author: Thomas Leitner <t_leitner@gmx.at>
884
+ Date: Sun Sep 9 08:48:44 2012 +0200
885
+
886
+ Added option for ignoring unknown fragment parts in content processor kramdown
887
+
888
+ This option is only effective if the content processor also handles
889
+ links.
890
+
891
+ lib/webgen/bundle/built-in/init.rb
892
+ lib/webgen/content_processor/kramdown.rb
893
+ test/webgen/content_processor/test_kramdown.rb
894
+
895
+ commit ce831adf92e9cfed7731a30dd17cbaf3acc01f68
896
+ Author: Thomas Leitner <t_leitner@gmx.at>
897
+ Date: Sun Sep 9 08:32:36 2012 +0200
898
+
899
+ Added option for ignoring unknown fragment parts in relocatable tag
900
+
901
+ lib/webgen/bundle/built-in/init.rb
902
+ lib/webgen/tag/relocatable.rb
903
+ test/webgen/tag/test_relocatable.rb
904
+
905
+ commit 4ff805f49d5435596f9f1466c0479d40b18dbbe5
906
+ Author: Thomas Leitner <t_leitner@gmx.at>
907
+ Date: Sat Sep 8 12:34:48 2012 +0200
908
+
909
+ Fixed caching of secondary nodes info
910
+
911
+ Only the path string itself was cached before, now the Path object
912
+ itself is cached.
913
+
914
+ lib/webgen/path_handler.rb
915
+
916
+ commit c36a893f58cb92ff9c71f6406236efbd61f339e9
917
+ Author: Thomas Leitner <t_leitner@gmx.at>
918
+ Date: Sat Sep 8 12:33:58 2012 +0200
919
+
920
+ Only emitting unused paths info if there is at least one
921
+
922
+ lib/webgen/path_handler.rb
923
+
924
+ commit 1ab8f7a7507b8c936e3c82a157332a735af06674
925
+ Author: Thomas Leitner <t_leitner@gmx.at>
926
+ Date: Sat Sep 8 12:16:21 2012 +0200
927
+
928
+ Additional hashing test case for Path
929
+
930
+ test/webgen/test_path.rb
931
+
932
+ commit 154ea860c273aa9f0a9673555070e33409d076fc
933
+ Author: Thomas Leitner <t_leitner@gmx.at>
934
+ Date: Sat Sep 8 12:13:16 2012 +0200
935
+
936
+ Simplified setting an IO block for a Path object
937
+
938
+ lib/webgen/path.rb
939
+ test/webgen/test_path.rb
940
+
941
+ commit c0c86e6bbf54c84c658365c9519f1f720ee85402
942
+ Author: Thomas Leitner <t_leitner@gmx.at>
943
+ Date: Sat Sep 8 12:03:00 2012 +0200
944
+
945
+ Changed tag.relocatable to emit warning instead of raising an error on invalid URI
946
+
947
+ lib/webgen/tag/relocatable.rb
948
+ test/webgen/tag/test_relocatable.rb
949
+
950
+ commit 04422d7ab33ed8b31142054f8b079cb0bd4fdec7
951
+ Author: Thomas Leitner <t_leitner@gmx.at>
952
+ Date: Thu Sep 6 20:17:41 2012 +0200
953
+
954
+ Removed the sitemap tag and its dependencies
955
+
956
+ Not needed anymore because the menu tag will be able to this,
957
+ and much more.
958
+
959
+ doc/tag/sitemap.page
960
+ lib/webgen/common/sitemap.rb
961
+ lib/webgen/tag/sitemap.rb
962
+ test/test_common_sitemap.rb
963
+ test/test_tag_sitemap.rb
964
+
965
+ commit 5989e7aac75fecf22c8cfebd0226c4363364e578
966
+ Author: Thomas Leitner <t_leitner@gmx.at>
967
+ Date: Thu Sep 6 19:43:34 2012 +0200
968
+
969
+ Removed all HTML tags (mostly <tt>) from RDoc documentation
970
+
971
+ These tags were not really needed and may harm some future
972
+ post-processing.
973
+
974
+ lib/webgen/cache.rb
975
+ lib/webgen/cli.rb
976
+ lib/webgen/configuration.rb
977
+ lib/webgen/content_processor.rb
978
+ lib/webgen/content_processor/blocks.rb
979
+ lib/webgen/content_processor/fragments.rb
980
+ lib/webgen/content_processor/html_head.rb
981
+ lib/webgen/context.rb
982
+ lib/webgen/context/nodes.rb
983
+ lib/webgen/context/rendering.rb
984
+ lib/webgen/destination.rb
985
+ lib/webgen/extension_manager.rb
986
+ lib/webgen/item_tracker.rb
987
+ lib/webgen/node.rb
988
+ lib/webgen/node_finder.rb
989
+ lib/webgen/path.rb
990
+ lib/webgen/path_handler.rb
991
+ lib/webgen/path_handler/base.rb
992
+ lib/webgen/path_handler/page_utils.rb
993
+ lib/webgen/source.rb
994
+ lib/webgen/source/stacked.rb
995
+ lib/webgen/tag.rb
996
+ lib/webgen/tree.rb
997
+ lib/webgen/website.rb
998
+
999
+ commit 9c60046794ca9f4ae18e02cdd4f46bd6b6db148f
1000
+ Author: Thomas Leitner <t_leitner@gmx.at>
1001
+ Date: Thu Sep 6 19:08:22 2012 +0200
1002
+
1003
+ Removed option sources.passive in favor of accessor method on Source class
1004
+
1005
+ There is no need for users to add a passive source, only extensions
1006
+ will have the need. A user can always use metainfo paths for marking
1007
+ some paths as passive.
1008
+
1009
+ lib/webgen/bundle/built-in/init.rb
1010
+ lib/webgen/bundle_loader.rb
1011
+ lib/webgen/source.rb
1012
+ test/webgen/test_bundle_loader.rb
1013
+ test/webgen/test_source.rb
1014
+
1015
+ commit 0452cf143a2634908da0bc09c953a0c6f17578ed
1016
+ Author: Thomas Leitner <t_leitner@gmx.at>
1017
+ Date: Mon Sep 3 18:20:49 2012 +0200
1018
+
1019
+ webgen CLI now tries to find the correct webgen website directory
1020
+
1021
+ If the website directory is not specified, webgen now tries to find
1022
+ the correct website directory by searching up the directory hierarchy
1023
+ to find a file named 'webgen.config'. Note that this functionality
1024
+ has to be enabled by using the new --search-dirs | -s switch.
1025
+
1026
+ lib/webgen/cli.rb
1027
+ test/webgen/test_cli.rb
1028
+
1029
+ commit ad2e35167681692b4edb881500948456aec29bd2
1030
+ Author: Thomas Leitner <t_leitner@gmx.at>
1031
+ Date: Mon Sep 3 18:05:16 2012 +0200
1032
+
1033
+ Correctly indented whole error message body, not just the first line
1034
+
1035
+ lib/webgen/error.rb
1036
+
1037
+ commit 208a13c4c21609d44b4d9a037a38c4f0c6be882b
1038
+ Author: Thomas Leitner <t_leitner@gmx.at>
1039
+ Date: Mon Sep 3 18:04:37 2012 +0200
1040
+
1041
+ New filename for webgen config file, optional Ruby syntax
1042
+
1043
+ * Renamed the configuration from config.yaml to webgen.config to
1044
+ be more related to webgen itself.
1045
+ * The configuration file may now optionally be a Ruby file. If
1046
+ the first line of the config file contains '# ruby', it is
1047
+ parsed as a Ruby file (the website object is available using
1048
+ the method #website).
1049
+
1050
+ lib/webgen/website.rb
1051
+
1052
+ commit 0e5fed3bb7e99bcf8b8f5367b7d2cf5de0ff1d1a
1053
+ Author: Thomas Leitner <t_leitner@gmx.at>
1054
+ Date: Sun Sep 2 17:20:03 2012 +0200
1055
+
1056
+ Updated CLI commands
1057
+
1058
+ * Removed --log-level option in favor of separate --quiet
1059
+ and --debug options
1060
+ * Added new --verbose option to enable additional verbose
1061
+ logger output
1062
+ * Removed --verbose options of sub-commands in favor of
1063
+ global --verbose command
1064
+
1065
+ lib/webgen/cli.rb
1066
+ lib/webgen/cli/list_bundle_command.rb
1067
+ lib/webgen/cli/show_config_command.rb
1068
+ lib/webgen/cli/show_dependencies_command.rb
1069
+ lib/webgen/cli/show_extensions_command.rb
1070
+
1071
+ commit 853f7d53e7c7da52a4b7f4a5cd93a56f7d26d6b7
1072
+ Author: Thomas Leitner <t_leitner@gmx.at>
1073
+ Date: Sun Sep 2 15:55:53 2012 +0200
1074
+
1075
+ Added additional information to warning/error log messages
1076
+
1077
+ The additional information provides some help on how to fix the
1078
+ warning/error.
1079
+
1080
+ lib/webgen/bundle/built-in/init.rb
1081
+ lib/webgen/content_processor/kramdown.rb
1082
+ lib/webgen/node_finder.rb
1083
+ lib/webgen/path_handler.rb
1084
+ lib/webgen/path_handler/template.rb
1085
+ lib/webgen/tag.rb
1086
+ lib/webgen/tag/meta_info.rb
1087
+ lib/webgen/website.rb
1088
+
1089
+ commit 3966b3c7deb8a06180f9037df6634b9ac0e58f4d
1090
+ Author: Thomas Leitner <t_leitner@gmx.at>
1091
+ Date: Sun Sep 2 11:23:14 2012 +0200
1092
+
1093
+ Implemented custom Logger based on stdlib Logger
1094
+
1095
+ * Has the ability to log additional, verbose information to a
1096
+ log message
1097
+ * Can conditionally log verbose information
1098
+
1099
+ lib/webgen/cli/logger.rb
1100
+ lib/webgen/logger.rb
1101
+ lib/webgen/test_helper.rb
1102
+ lib/webgen/website.rb
1103
+ test/webgen/test_logger.rb
1104
+
1105
+ commit 148d7f1d5324d50ae3be75baf997fb56934fa7f7
1106
+ Author: Thomas Leitner <t_leitner@gmx.at>
1107
+ Date: Sun Sep 2 09:45:19 2012 +0200
1108
+
1109
+ Better help output for 'show config' command
1110
+
1111
+ lib/webgen/cli/show_config_command.rb
1112
+
1113
+ commit 54d855880588835d840a94466a9b38729e7f13c4
1114
+ Author: Thomas Leitner <t_leitner@gmx.at>
1115
+ Date: Sat Aug 11 13:06:59 2012 +0200
1116
+
1117
+ Updated content processor Fragments
1118
+
1119
+ lib/webgen/content_processor/fragments.rb
1120
+ lib/webgen/sourcehandler/fragment.rb
1121
+ test/test_contentprocessor_fragments.rb
1122
+ test/test_sourcehandler_fragment.rb
1123
+ test/webgen/content_processor/test_fragments.rb
1124
+
1125
+ commit aea52ab8f991f68bc018d16fa6050fc8a76b36fe
1126
+ Author: Thomas Leitner <t_leitner@gmx.at>
1127
+ Date: Sat Aug 11 13:03:52 2012 +0200
1128
+
1129
+ The block name, if applicable, is now available in Context objects
1130
+
1131
+ lib/webgen/path_handler/page_utils.rb
1132
+
1133
+ commit bdd987c09ceb0cd3c20323b388de0142875d7f33
1134
+ Author: Thomas Leitner <t_leitner@gmx.at>
1135
+ Date: Sat Aug 11 13:02:23 2012 +0200
1136
+
1137
+ Provide facility for explicitly specifying the parent node for a path
1138
+
1139
+ One can now specify the parent node under which a node from a path
1140
+ is created by using the parent_alcn meta information key.
1141
+
1142
+ lib/webgen/path_handler/base.rb
1143
+ test/webgen/path_handler/test_base.rb
1144
+
1145
+ commit db34b405d98c064ac0355a6f1132f86c53a4bf1d
1146
+ Author: Thomas Leitner <t_leitner@gmx.at>
1147
+ Date: Sat Aug 11 09:42:52 2012 +0200
1148
+
1149
+ Custom Sass function relocatable can now accept relative paths
1150
+
1151
+ My proposal to how the :filename option is handled in Sass
1152
+ functions was accepted and therefore it is now possible to also
1153
+ specify relative paths in the custom 'relocatable' function.
1154
+
1155
+ Rakefile
1156
+ lib/webgen/content_processor/sass.rb
1157
+ test/webgen/content_processor/test_sass.rb
1158
+
1159
+ commit 67e847513d2be561e368ede7b183379f19ec596d
1160
+ Author: Thomas Leitner <t_leitner@gmx.at>
1161
+ Date: Fri Aug 10 23:24:16 2012 +0200
1162
+
1163
+ Fixed some places which were missed during test refactoring
1164
+
1165
+ test/webgen/content_processor/test_erubis.rb
1166
+ test/webgen/content_processor/test_html_head.rb
1167
+ test/webgen/content_processor/test_redcloth.rb
1168
+ test/webgen/content_processor/test_sass.rb
1169
+ test/webgen/content_processor/test_scss.rb
1170
+ test/webgen/content_processor/test_tidy.rb
1171
+ test/webgen/content_processor/test_tikz.rb
1172
+ test/webgen/content_processor/test_xmllint.rb
1173
+ test/webgen/path_handler/test_base.rb
1174
+
1175
+ commit 8b81e6d060703696528a609c4c5fb7a1a8d7fa88
1176
+ Author: Thomas Leitner <t_leitner@gmx.at>
1177
+ Date: Fri Aug 10 23:15:16 2012 +0200
1178
+
1179
+ Updated content processor Kramdown
1180
+
1181
+ doc/contentprocessor/kramdown.page
1182
+ lib/webgen/content_processor/kramdown.rb
1183
+ lib/webgen/content_processor/kramdown/html.rb
1184
+ test/test_contentprocessor_kramdown.rb
1185
+ test/webgen/content_processor/test_kramdown.rb
1186
+
1187
+ commit e142e25837691c72fb9d3c973f3b6bd3ace97b9e
1188
+ Author: Thomas Leitner <t_leitner@gmx.at>
1189
+ Date: Wed Aug 8 22:35:25 2012 +0200
1190
+
1191
+ Fixed potential problem when sorting nodes
1192
+
1193
+ If one node title is not a string, the spaceship operator may
1194
+ not work correctly.
1195
+
1196
+ lib/webgen/node_finder.rb
1197
+
1198
+ commit 3b8417c33f60b9e649387afd593eab8ae994798e
1199
+ Author: Thomas Leitner <t_leitner@gmx.at>
1200
+ Date: Wed Aug 8 22:29:23 2012 +0200
1201
+
1202
+ Fixed bug where default configuration option value was modified
1203
+
1204
+ lib/webgen/bundle/built-in/init.rb
1205
+
1206
+ commit 7e740d4435593e7f6c0e5aabca23c3e372067d12
1207
+ Author: Thomas Leitner <t_leitner@gmx.at>
1208
+ Date: Wed Aug 8 22:28:41 2012 +0200
1209
+
1210
+ Updated Node#route_to and #link_to to take the language as optional parameter
1211
+
1212
+ Now all Node methods dealing with other nodes have a coherent
1213
+ interface.
1214
+
1215
+ data/webgen/passive_sources/templates/tag.template
1216
+ lib/webgen/content_processor.rb
1217
+ lib/webgen/node.rb
1218
+ lib/webgen/tag/link.rb
1219
+ test/webgen/test_node.rb
1220
+
1221
+ commit 5c3b4c27ce121dcd20ac74654a8f70bcb6772dc8
1222
+ Author: Thomas Leitner <t_leitner@gmx.at>
1223
+ Date: Wed Aug 8 22:21:38 2012 +0200
1224
+
1225
+ New option for "show config" command to only show modified config options
1226
+
1227
+ lib/webgen/cli/show_config_command.rb
1228
+
1229
+ commit fd7d3a55eda7f3d22ff995df237e18d0985ff1fd
1230
+ Author: Thomas Leitner <t_leitner@gmx.at>
1231
+ Date: Mon Aug 6 16:47:12 2012 +0200
1232
+
1233
+ Refactored Node#resolve! method
1234
+
1235
+ Since the Node class should not depend on website internals, the
1236
+ Node#resolve! method was removed and an additional parameter
1237
+ msg_on_failure to Node#resolve added. If this parameter is set
1238
+ to true, the message :node_resolution_failed is dispatched.
1239
+
1240
+ The former functionality of Node#resolve! is now in a listener
1241
+ defined by the ItemTracker::MissingNode extension where it belongs.
1242
+
1243
+ lib/webgen/bundle/built-in/init.rb
1244
+ lib/webgen/content_processor/blocks.rb
1245
+ lib/webgen/content_processor/html_head.rb
1246
+ lib/webgen/content_processor/sass.rb
1247
+ lib/webgen/node.rb
1248
+ lib/webgen/path_handler.rb
1249
+ lib/webgen/path_handler/feed.rb
1250
+ lib/webgen/path_handler/sitemap.rb
1251
+ lib/webgen/path_handler/template.rb
1252
+ lib/webgen/tag.rb
1253
+ lib/webgen/tag/link.rb
1254
+ lib/webgen/tag/relocatable.rb
1255
+ lib/webgen/tree.rb
1256
+ test/webgen/test_tag.rb
1257
+ test/webgen/test_tree.rb
1258
+
1259
+ commit e3a77da682a260d83fad13a2b1ead7f4b760606c
1260
+ Author: Thomas Leitner <t_leitner@gmx.at>
1261
+ Date: Sat Jul 28 10:11:04 2012 +0200
1262
+
1263
+ Updated Rakefile and setup.rb
1264
+
1265
+ Rakefile
1266
+ setup.rb
1267
+
1268
+ commit 4dc92a7caa5d1063774244a928730717a44aab84
1269
+ Author: Thomas Leitner <t_leitner@gmx.at>
1270
+ Date: Sat Jul 28 09:44:41 2012 +0200
1271
+
1272
+ Fixed require statement for external library archive-tar-minitar
1273
+
1274
+ lib/webgen/source/tar_archive.rb
1275
+
1276
+ commit a9c8fdfde2b92a79f61993a31386b38a735df24c
1277
+ Author: Thomas Leitner <t_leitner@gmx.at>
1278
+ Date: Sat Jul 28 09:13:21 2012 +0200
1279
+
1280
+ Removed Common module and moved functionality elsewhere
1281
+
1282
+ * Webgen::Common::ExtensionManager is now Webgen::ExtensionManager
1283
+ * Webgen::Common.* is now Webgen::Utils.*
1284
+ * Webgen.data_dir is now Webgen::Utils.data_dir (don't need to
1285
+ require 'webgen/website' anymore just for getting the data dir)
1286
+
1287
+ lib/webgen/bundle/built-in/init.rb
1288
+ lib/webgen/cache.rb
1289
+ lib/webgen/cli/create_bundle_command.rb
1290
+ lib/webgen/common.rb
1291
+ lib/webgen/common/extension_manager.rb
1292
+ lib/webgen/content_processor.rb
1293
+ lib/webgen/destination.rb
1294
+ lib/webgen/extension_manager.rb
1295
+ lib/webgen/item_tracker.rb
1296
+ lib/webgen/item_tracker/nodes.rb
1297
+ lib/webgen/path_handler.rb
1298
+ lib/webgen/source.rb
1299
+ lib/webgen/tag.rb
1300
+ lib/webgen/test_helper.rb
1301
+ lib/webgen/utils.rb
1302
+ lib/webgen/website.rb
1303
+ test/webgen/common/test_extension_manager.rb
1304
+ test/webgen/path_handler/test_feed.rb
1305
+ test/webgen/path_handler/test_sitemap.rb
1306
+ test/webgen/test_common.rb
1307
+ test/webgen/test_extension_manager.rb
1308
+ test/webgen/test_utils.rb
1309
+
1310
+ commit 3c858ccee17733a5041394ba0fd384e7da2d2b4d
1311
+ Author: Thomas Leitner <t_leitner@gmx.at>
1312
+ Date: Sat Jul 28 08:48:18 2012 +0200
1313
+
1314
+ Extracted test helpers into a Module
1315
+
1316
+ * Moved the existing helpers from the test/ directory to the
1317
+ /lib directory so that this module can also be used by
1318
+ extensions.
1319
+ * Refactored Webgen::TestHelper module and test cases
1320
+
1321
+ lib/webgen/test_helper.rb
1322
+ test/helper.rb
1323
+ test/webgen/content_processor/test_blocks.rb
1324
+ test/webgen/content_processor/test_builder.rb
1325
+ test/webgen/content_processor/test_erb.rb
1326
+ test/webgen/content_processor/test_erubis.rb
1327
+ test/webgen/content_processor/test_haml.rb
1328
+ test/webgen/content_processor/test_html_head.rb
1329
+ test/webgen/content_processor/test_maruku.rb
1330
+ test/webgen/content_processor/test_rdiscount.rb
1331
+ test/webgen/content_processor/test_rdoc.rb
1332
+ test/webgen/content_processor/test_redcloth.rb
1333
+ test/webgen/content_processor/test_ruby.rb
1334
+ test/webgen/content_processor/test_sass.rb
1335
+ test/webgen/content_processor/test_scss.rb
1336
+ test/webgen/content_processor/test_tags.rb
1337
+ test/webgen/content_processor/test_tidy.rb
1338
+ test/webgen/content_processor/test_tikz.rb
1339
+ test/webgen/content_processor/test_xmllint.rb
1340
+ test/webgen/destination/test_file_system.rb
1341
+ test/webgen/item_tracker/test_nodes.rb
1342
+ test/webgen/path_handler/test_base.rb
1343
+ test/webgen/path_handler/test_copy.rb
1344
+ test/webgen/path_handler/test_feed.rb
1345
+ test/webgen/path_handler/test_meta_info.rb
1346
+ test/webgen/path_handler/test_page.rb
1347
+ test/webgen/path_handler/test_page_utils.rb
1348
+ test/webgen/path_handler/test_sitemap.rb
1349
+ test/webgen/path_handler/test_template.rb
1350
+ test/webgen/path_handler/test_virtual.rb
1351
+ test/webgen/source/test_file_system.rb
1352
+ test/webgen/tag/test_breadcrumb_trail.rb
1353
+ test/webgen/tag/test_coderay.rb
1354
+ test/webgen/tag/test_date.rb
1355
+ test/webgen/tag/test_execute_command.rb
1356
+ test/webgen/tag/test_include_file.rb
1357
+ test/webgen/tag/test_langbar.rb
1358
+ test/webgen/tag/test_link.rb
1359
+ test/webgen/tag/test_meta_info.rb
1360
+ test/webgen/tag/test_relocatable.rb
1361
+ test/webgen/tag/test_tikz.rb
1362
+ test/webgen/test_bundle_loader.rb
1363
+ test/webgen/test_cli.rb
1364
+ test/webgen/test_configuration.rb
1365
+ test/webgen/test_context.rb
1366
+ test/webgen/test_languages.rb
1367
+ test/webgen/test_node.rb
1368
+ test/webgen/test_node_finder.rb
1369
+ test/webgen/test_path.rb
1370
+ test/webgen/test_tag.rb
1371
+ test/webgen/test_tree.rb
1372
+ test/webgen/utils/test_tag_parser.rb
1373
+
1374
+ commit 51f2e0dbeda9c5fe9a61acc1979651465b7aa025
1375
+ Author: Thomas Leitner <t_leitner@gmx.at>
1376
+ Date: Wed Jun 27 19:56:25 2012 +0200
1377
+
1378
+ Fixed core extension test
1379
+
1380
+ test/webgen/test_core_ext.rb
1381
+ test/webgen/test_coreext.rb
1382
+
1383
+ commit e9de28fe9d4ee8d19502e98b6dfa66de6f9c9145
1384
+ Author: Thomas Leitner <t_leitner@gmx.at>
1385
+ Date: Tue Jun 26 18:43:44 2012 +0200
1386
+
1387
+ Updated path handler sitemap
1388
+
1389
+ data/webgen/passive_sources/templates/sitemap.template
1390
+ lib/webgen/bundle/built-in/init.rb
1391
+ lib/webgen/path_handler/sitemap.rb
1392
+ lib/webgen/sourcehandler/sitemap.rb
1393
+ test/test_sourcehandler_sitemap.rb
1394
+ test/webgen/path_handler/test_sitemap.rb
1395
+
1396
+ commit 8c11d22787f594ea4c401215b69ad646ed856674
1397
+ Author: Thomas Leitner <t_leitner@gmx.at>
1398
+ Date: Mon Jun 25 21:43:38 2012 +0200
1399
+
1400
+ Fixed executing tests in Rakefile
1401
+
1402
+ Rakefile
1403
+
1404
+ commit 1302fc01feb3df9ba78a5d589aefdc92af0551bb
1405
+ Author: Thomas Leitner <t_leitner@gmx.at>
1406
+ Date: Mon Jun 25 21:43:02 2012 +0200
1407
+
1408
+ Moved assignment of node[:path_handler] to PathHandler::Base#create_node
1409
+
1410
+ lib/webgen/path_handler.rb
1411
+ lib/webgen/path_handler/base.rb
1412
+
1413
+ commit 4370e683d84ea00f371d83501f8a63559c0f4b26
1414
+ Author: Thomas Leitner <t_leitner@gmx.at>
1415
+ Date: Mon Jun 25 21:42:14 2012 +0200
1416
+
1417
+ Updated path handler feed
1418
+
1419
+ data/webgen/passive_sources/templates/atom_feed.template
1420
+ data/webgen/passive_sources/templates/feed.template
1421
+ data/webgen/passive_sources/templates/rss_feed.template
1422
+ lib/webgen/bundle/built-in/init.rb
1423
+ lib/webgen/path_handler/feed.rb
1424
+ lib/webgen/sourcehandler/feed.rb
1425
+ test/test_sourcehandler_feed.rb
1426
+ test/webgen/path_handler/test_feed.rb
1427
+
1428
+ commit b631489fa8cdd05e20bfe668f2c94d8e54536779
1429
+ Author: Thomas Leitner <t_leitner@gmx.at>
1430
+ Date: Sun Jun 24 09:44:10 2012 +0200
1431
+
1432
+ Added CLI command for showing node dependencies
1433
+
1434
+ This will come in very handy when trying to understand why a path
1435
+ gets re-generated.
1436
+
1437
+ lib/webgen/cli/show_command.rb
1438
+ lib/webgen/cli/show_dependencies_command.rb
1439
+
1440
+ commit bac1a4e0905f86fbb422fd1bfae00a5be5185e45
1441
+ Author: Thomas Leitner <t_leitner@gmx.at>
1442
+ Date: Sun Jun 24 09:25:21 2012 +0200
1443
+
1444
+ Added missing second parameter to ItemTracker#node_referenced?
1445
+
1446
+ lib/webgen/item_tracker/file.rb
1447
+ test/webgen/item_tracker/test_file.rb
1448
+
1449
+ commit d575887d588b7616104c5be80283ed638df1d0dd
1450
+ Author: Thomas Leitner <t_leitner@gmx.at>
1451
+ Date: Sun Jun 24 08:09:58 2012 +0200
1452
+
1453
+ Added hreflang attribute to generated links
1454
+
1455
+ data/webgen/passive_sources/templates/tag.template
1456
+ lib/webgen/node.rb
1457
+ test/webgen/tag/test_breadcrumb_trail.rb
1458
+ test/webgen/tag/test_langbar.rb
1459
+ test/webgen/tag/test_link.rb
1460
+ test/webgen/test_node.rb
1461
+
1462
+ commit d3cc4989e41138a6b1bc30e217232f317594d2fe
1463
+ Author: Thomas Leitner <t_leitner@gmx.at>
1464
+ Date: Fri Jun 22 19:25:13 2012 +0200
1465
+
1466
+ Added debug statement for showing unknown configuration options
1467
+
1468
+ lib/webgen/website.rb
1469
+
1470
+ commit a4634c7cd6c8cfc811d97f21d5396f536b3cdd6c
1471
+ Author: Thomas Leitner <t_leitner@gmx.at>
1472
+ Date: Tue Jun 19 20:35:35 2012 +0200
1473
+
1474
+ Added CLI command for creating bundles
1475
+
1476
+ data/webgen/bundle_template_files/README.md.erb
1477
+ data/webgen/bundle_template_files/Rakefile.erb
1478
+ data/webgen/bundle_template_files/info.yaml.erb
1479
+ data/webgen/bundle_template_files/init.rb.erb
1480
+ lib/webgen/cli/bundle_command.rb
1481
+ lib/webgen/cli/create_bundle_command.rb
1482
+
1483
+ commit 5f4c45803fa49ae61abdf2f9acd01955d908b2d3
1484
+ Author: Thomas Leitner <t_leitner@gmx.at>
1485
+ Date: Sun Jun 17 18:05:13 2012 +0200
1486
+
1487
+ Updated CLI and added some commands
1488
+
1489
+ * Added 'bundle', 'bundle install' and 'bundle list' commands
1490
+ * Added 'show', 'show config' and 'show extensions' commands
1491
+
1492
+ lib/webgen/cli.rb
1493
+ lib/webgen/cli/bundle_command.rb
1494
+ lib/webgen/cli/install_bundle_command.rb
1495
+ lib/webgen/cli/list_bundle_command.rb
1496
+ lib/webgen/cli/show_command.rb
1497
+ lib/webgen/cli/show_config_command.rb
1498
+ lib/webgen/cli/show_extensions_command.rb
1499
+ lib/webgen/cli/utils.rb
1500
+
1501
+ commit 9764d28b46b03beb3eb5062dd0042bfcb8d24867
1502
+ Author: Thomas Leitner <t_leitner@gmx.at>
1503
+ Date: Sat Jun 16 18:12:35 2012 +0200
1504
+
1505
+ Fixed Ruby warnings
1506
+
1507
+ lib/webgen/content_processor.rb
1508
+ lib/webgen/path_handler.rb
1509
+
1510
+ commit 45cc40d2b13a9c4a4f6e676921c8d0c2d66f45d1
1511
+ Author: Thomas Leitner <t_leitner@gmx.at>
1512
+ Date: Sat Jun 16 11:18:41 2012 +0200
1513
+
1514
+ Moved extension docu to info.yaml file
1515
+
1516
+ Also added a test to check whether all extensions have basic
1517
+ documentation and if there is superfluous documentation.
1518
+
1519
+ lib/webgen/bundle/built-in/info.yaml
1520
+ lib/webgen/bundle/built-in/init.rb
1521
+ test/test_documentation.rb
1522
+
1523
+ commit 02269affa74f0314dca59829e934b003ab703051
1524
+ Author: Thomas Leitner <t_leitner@gmx.at>
1525
+ Date: Sat Jun 16 08:27:25 2012 +0200
1526
+
1527
+ Resolved conflicting naming conventions for extensions
1528
+
1529
+ Extension referred to two things:
1530
+ * a package containing new features for webgen
1531
+ * a new webgen feature
1532
+
1533
+ Therefore the package is now called extension bundle. And
1534
+ such a bundle contains one or more extensions. One or more
1535
+ bundles may be distributed as a Rubygem.
1536
+
1537
+ lib/webgen/bundle/built-in/init.rb
1538
+ lib/webgen/bundle_loader.rb
1539
+ lib/webgen/extension_loader.rb
1540
+ lib/webgen/extensions/init.rb
1541
+ lib/webgen/website.rb
1542
+ test/webgen/test_bundle_loader.rb
1543
+ test/webgen/test_extension_loader.rb
1544
+
1545
+ commit daa0ccadf61f3564d70a9790434ff0232274ae3b
1546
+ Author: Thomas Leitner <t_leitner@gmx.at>
1547
+ Date: Sat Jun 16 07:45:18 2012 +0200
1548
+
1549
+ Webgen::Tag doesn't use custom TagData struct anymore
1550
+
1551
+ lib/webgen/tag.rb
1552
+ test/webgen/test_tag.rb
1553
+
1554
+ commit b222d25f8053187a63d3d0dbddaa2b419f1abf4f
1555
+ Author: Thomas Leitner <t_leitner@gmx.at>
1556
+ Date: Sun Jun 10 08:09:24 2012 +0200
1557
+
1558
+ Updated the CLI
1559
+
1560
+ * Depends on cmdparse 2.0.5 now
1561
+ * Nicer output of option/command description
1562
+ * Helper methods for easier and uniform formatting
1563
+
1564
+ Rakefile
1565
+ lib/webgen/cli.rb
1566
+ lib/webgen/cli/generate_command.rb
1567
+ lib/webgen/cli/utils.rb
1568
+ test/webgen/cli/test_logger.rb
1569
+ test/webgen/test_cli.rb
1570
+
1571
+ commit 75e8c3c5e989577947603756216fac52d05e7eb5
1572
+ Author: Thomas Leitner <t_leitner@gmx.at>
1573
+ Date: Tue Jun 5 19:35:52 2012 +0200
1574
+
1575
+ Bugfix: Path handler copy would not work correctly with secondary nodes
1576
+
1577
+ There is no need to invoke website.ext.source.paths since the
1578
+ path is already stored in the node itself.
1579
+
1580
+ lib/webgen/path_handler/copy.rb
1581
+
1582
+ commit edf2ff17b7dd6a0545c0b7f029d4024fc4dd9796
1583
+ Author: Thomas Leitner <t_leitner@gmx.at>
1584
+ Date: Tue Jun 5 19:34:07 2012 +0200
1585
+
1586
+ ItemTracker#node_referenced? now really works as intended
1587
+
1588
+ lib/webgen/item_tracker.rb
1589
+ test/webgen/test_item_tracker.rb
1590
+
1591
+ commit 55fda290555fa487d6aff8c6069ae7272e9908c9
1592
+ Author: Thomas Leitner <t_leitner@gmx.at>
1593
+ Date: Tue Jun 5 19:33:23 2012 +0200
1594
+
1595
+ Bugfix: Automatic generation of config_base option for tag extensions now works for CamelCase class names
1596
+
1597
+ lib/webgen/tag.rb
1598
+ test/webgen/test_tag.rb
1599
+
1600
+ commit 2ddf1b340f96f1cc45b6e68bfe063838deace589
1601
+ Author: Thomas Leitner <t_leitner@gmx.at>
1602
+ Date: Sun Jun 3 10:51:25 2012 +0200
1603
+
1604
+ Implemented helper methods #mount_passive and #absolute_path for extension loader
1605
+
1606
+ lib/webgen/extension_loader.rb
1607
+ test/webgen/test_extension_loader.rb
1608
+
1609
+ commit ea4f7ee39e17c718f04ee950724a28a25aa6e59c
1610
+ Author: Thomas Leitner <t_leitner@gmx.at>
1611
+ Date: Fri Jun 1 17:54:22 2012 +0200
1612
+
1613
+ Updated ExtensionLoader to activate gems containing extensions
1614
+
1615
+ lib/webgen/extension_loader.rb
1616
+
1617
+ commit 010ccaa74403a4bbb84fd612e3297dc79aeb77a9
1618
+ Author: Thomas Leitner <t_leitner@gmx.at>
1619
+ Date: Fri Jun 1 17:09:19 2012 +0200
1620
+
1621
+ Removed non-filter options from processing by :and or :or filters
1622
+
1623
+ lib/webgen/node_finder.rb
1624
+
1625
+ commit d8a34ec707f6f52a1c1139d559240b9eb4a878f6
1626
+ Author: Thomas Leitner <t_leitner@gmx.at>
1627
+ Date: Fri Jun 1 17:00:25 2012 +0200
1628
+
1629
+ Fixed API documentation for extension manager classes
1630
+
1631
+ lib/webgen/common/extension_manager.rb
1632
+ lib/webgen/content_processor.rb
1633
+ lib/webgen/destination.rb
1634
+ lib/webgen/item_tracker.rb
1635
+ lib/webgen/path_handler.rb
1636
+ lib/webgen/source.rb
1637
+ lib/webgen/tag.rb
1638
+
1639
+ commit 9528272adf2d034b3ff1801064c4a37958146cbb
1640
+ Author: Thomas Leitner <t_leitner@gmx.at>
1641
+ Date: Tue May 29 20:15:36 2012 +0200
1642
+
1643
+ Better integration of Sass
1644
+
1645
+ * A custom importer is now used which only imports paths found
1646
+ in the node tree.
1647
+ * The sass cache store is also changed to an in-memory store.
1648
+ * A new configuration option for setting sass options is provided.
1649
+
1650
+ lib/webgen/content_processor/sass.rb
1651
+ lib/webgen/content_processor/scss.rb
1652
+ lib/webgen/extensions/init.rb
1653
+ test/webgen/content_processor/test_sass.rb
1654
+ test/webgen/content_processor/test_scss.rb
1655
+
1656
+ commit 412c7442e27aabfd1ace134cf5d8631fd7a3ce74
1657
+ Author: Thomas Leitner <t_leitner@gmx.at>
1658
+ Date: Tue Jun 5 19:31:53 2012 +0200
1659
+
1660
+ The cache file is now taken relative to website.tmpdir
1661
+
1662
+ lib/webgen/extensions/init.rb
1663
+ lib/webgen/website.rb
1664
+
1665
+ commit 52f1d621c576836924729bfc9129cee6c1f4f5d7
1666
+ Author: Thomas Leitner <t_leitner@gmx.at>
1667
+ Date: Tue Jun 5 19:29:24 2012 +0200
1668
+
1669
+ New configuration website.tmpdir for setting a cache/temporary directory
1670
+
1671
+ lib/webgen/extensions/init.rb
1672
+ lib/webgen/website.rb
1673
+
1674
+ commit f2f5eb0e844cb85bd26a0909c14e7f8fd238ef33
1675
+ Author: Thomas Leitner <t_leitner@gmx.at>
1676
+ Date: Tue May 29 20:13:15 2012 +0200
1677
+
1678
+ Incorporated content processor extension mapping into path handler copy
1679
+
1680
+ All pre-processed extension like haml and sass are now specified
1681
+ as patterns for the copy handler. Furthermore, if the last
1682
+ extension part matches a known pre-processed extension like haml,
1683
+ it will automatically be changed to the post-processed extension.
1684
+
1685
+ lib/webgen/path_handler/copy.rb
1686
+ test/webgen/path_handler/test_copy.rb
1687
+
1688
+ commit 95830f3b70199870c397e7bc107e423bc6334fb6
1689
+ Author: Thomas Leitner <t_leitner@gmx.at>
1690
+ Date: Tue May 29 20:10:44 2012 +0200
1691
+
1692
+ Updated content processor to allow specifying used extensions
1693
+
1694
+ When registering a content processor, one can now specify
1695
+ an extension mapping, e.g. haml => html or sass => css.
1696
+
1697
+ lib/webgen/content_processor.rb
1698
+ lib/webgen/extensions/init.rb
1699
+ test/webgen/test_content_processor.rb
1700
+
1701
+ commit c88b9290f143e8162edb11a355509c8a29d944ac
1702
+ Author: Thomas Leitner <t_leitner@gmx.at>
1703
+ Date: Mon May 28 10:18:42 2012 +0200
1704
+
1705
+ Fixed problem with modified meta info hash
1706
+
1707
+ Due to Ruby's shallow duping/cloning hashes stored in the default
1708
+ hashes were undesignedly modified.
1709
+
1710
+ lib/webgen/path_handler.rb
1711
+
1712
+ commit 9bf80dc15101316e551fad7070d1949b80888287
1713
+ Author: Thomas Leitner <t_leitner@gmx.at>
1714
+ Date: Mon May 28 10:14:52 2012 +0200
1715
+
1716
+ Fixed default values of two config options
1717
+
1718
+ lib/webgen/extensions/init.rb
1719
+
1720
+ commit be0a7988763d7c693ea4e24f0c18e7dc4b91f4a1
1721
+ Author: Thomas Leitner <t_leitner@gmx.at>
1722
+ Date: Mon May 28 10:13:37 2012 +0200
1723
+
1724
+ Removed config option website.link_to_current_page
1725
+
1726
+ This option makes Node#link_to output spans which is probably
1727
+ not the expected result. Furthermore, it complicates CSS
1728
+ rules because one needs to write rules for A and SPAN.
1729
+
1730
+ lib/webgen/extensions/init.rb
1731
+ lib/webgen/node.rb
1732
+ test/webgen/tag/test_breadcrumb_trail.rb
1733
+ test/webgen/tag/test_langbar.rb
1734
+ test/webgen/tag/test_link.rb
1735
+ test/webgen/test_node.rb
1736
+
1737
+ commit b9d0b6227ccd8999ad69d8c59791893df2225eb2
1738
+ Author: Thomas Leitner <t_leitner@gmx.at>
1739
+ Date: Mon May 28 08:27:46 2012 +0200
1740
+
1741
+ Refactored missing node handling
1742
+
1743
+ * Introduced a new item tracker MissingNode for handling missing
1744
+ nodes correctly.
1745
+ * Added Node#resolve! which resolves a node via a path and
1746
+ automatically handles the case where no node is found
1747
+ * Updated all places where custom code for dealing with missing
1748
+ nodes was used
1749
+
1750
+ lib/webgen/content_processor/blocks.rb
1751
+ lib/webgen/content_processor/html_head.rb
1752
+ lib/webgen/extensions/init.rb
1753
+ lib/webgen/item_tracker/missing_node.rb
1754
+ lib/webgen/node.rb
1755
+ lib/webgen/path_handler/template.rb
1756
+ lib/webgen/tag.rb
1757
+ lib/webgen/tag/link.rb
1758
+ lib/webgen/tag/relocatable.rb
1759
+ test/webgen/content_processor/test_blocks.rb
1760
+ test/webgen/content_processor/test_html_head.rb
1761
+ test/webgen/item_tracker/test_missing_node.rb
1762
+ test/webgen/path_handler/test_template.rb
1763
+ test/webgen/tag/test_link.rb
1764
+ test/webgen/tag/test_relocatable.rb
1765
+ test/webgen/test_node.rb
1766
+
1767
+ commit 0bc6585a2d695f0ab11b2583727892028979d59a
1768
+ Author: Thomas Leitner <t_leitner@gmx.at>
1769
+ Date: Sun May 27 14:20:09 2012 +0200
1770
+
1771
+ Error handling fixes
1772
+
1773
+ * Tag#call now adds properties to error objects
1774
+ * More robust error handling
1775
+
1776
+ lib/webgen/content_processor.rb
1777
+ lib/webgen/error.rb
1778
+ lib/webgen/path_handler.rb
1779
+ lib/webgen/tag.rb
1780
+ test/webgen/test_content_processor.rb
1781
+ test/webgen/test_error.rb
1782
+ test/webgen/test_tag.rb
1783
+
1784
+ commit 76e9d89ee565f9b530e961fbcb1b6324b9f69b46
1785
+ Author: Thomas Leitner <t_leitner@gmx.at>
1786
+ Date: Sat May 26 08:22:46 2012 +0200
1787
+
1788
+ Removed Webgen::Page::Block class
1789
+
1790
+ This wrapper class is not really needed and just complicates
1791
+ the matter.
1792
+
1793
+ lib/webgen/page.rb
1794
+ lib/webgen/path_handler/meta_info.rb
1795
+ lib/webgen/path_handler/page_utils.rb
1796
+ lib/webgen/path_handler/virtual.rb
1797
+ test/webgen/path_handler/test_page_utils.rb
1798
+ test/webgen/test_page.rb
1799
+
1800
+ commit a8b35f79f31ef209bfd6553eacccd49ba645d68d
1801
+ Author: Thomas Leitner <t_leitner@gmx.at>
1802
+ Date: Sat May 26 08:07:56 2012 +0200
1803
+
1804
+ Refactored tag template rendering
1805
+
1806
+ * Moved tag template rendering to Tag.render_tag_template which
1807
+ replaces Tag.resolve_tag_template
1808
+ * The template chain of the template node is now respected
1809
+ * Tag langbar now also set the key :nodes instead of :langnodes
1810
+ for consistency
1811
+
1812
+ data/webgen/passive_sources/templates/tag.template
1813
+ lib/webgen/tag.rb
1814
+ lib/webgen/tag/breadcrumb_trail.rb
1815
+ lib/webgen/tag/langbar.rb
1816
+ test/helper.rb
1817
+ test/webgen/test_tag.rb
1818
+
1819
+ commit 43954fb9bd37c917f6af547328b993dac71473d0
1820
+ Author: Thomas Leitner <t_leitner@gmx.at>
1821
+ Date: Sat May 26 07:48:11 2012 +0200
1822
+
1823
+ Updated tag breadcrumb_trail
1824
+
1825
+ data/webgen/passive_sources/templates/tag.template
1826
+ lib/webgen/extensions/init.rb
1827
+ lib/webgen/tag/breadcrumb_trail.rb
1828
+ lib/webgen/tag/breadcrumbtrail.rb
1829
+ test/test_tag_breadcrumbtrail.rb
1830
+ test/webgen/tag/test_breadcrumb_trail.rb
1831
+
1832
+ commit 1f70cc48254cd20ac6979b89dcbe5cf659e8e4cd
1833
+ Author: Thomas Leitner <t_leitner@gmx.at>
1834
+ Date: Sat May 26 07:27:06 2012 +0200
1835
+
1836
+ Refactored tag langbar test
1837
+
1838
+ The default tag template node can now be created by just a call
1839
+ to a helper method.
1840
+
1841
+ test/helper.rb
1842
+ test/webgen/tag/test_langbar.rb
1843
+
1844
+ commit 5e17a9f9f811c7ddc78dad585dddbaf71a54f3cc
1845
+ Author: Thomas Leitner <t_leitner@gmx.at>
1846
+ Date: Sat May 26 06:28:38 2012 +0200
1847
+
1848
+ Moved the resolution of tag templates from Tag::Langbar to Tag
1849
+
1850
+ lib/webgen/tag.rb
1851
+ lib/webgen/tag/langbar.rb
1852
+
1853
+ commit 46392f4cbea868d50d004f3bdb36d75cf5d36ced
1854
+ Author: Thomas Leitner <t_leitner@gmx.at>
1855
+ Date: Fri May 25 17:48:31 2012 +0200
1856
+
1857
+ Removed old or now useless files
1858
+
1859
+ data/webgen/resources.yaml
1860
+ lib/webgen/extensions/init.rb
1861
+ lib/webgen/source/resource.rb
1862
+ lib/webgen/sourcehandler/memory.rb
1863
+ test/test_loggable.rb
1864
+ test/test_source_resource.rb
1865
+ test/test_sourcehandler_memory.rb
1866
+ test/test_websiteaccess.rb
1867
+
1868
+ commit f6cfc722050d01474850bc3bfeb5983e2a2112e0
1869
+ Author: Thomas Leitner <t_leitner@gmx.at>
1870
+ Date: Fri May 25 17:38:42 2012 +0200
1871
+
1872
+ Updated tag langbar
1873
+
1874
+ data/webgen/passive_sources/templates/tag.template
1875
+ lib/webgen/extensions/init.rb
1876
+ lib/webgen/tag/langbar.rb
1877
+ test/test_tag_langbar.rb
1878
+ test/webgen/tag/test_langbar.rb
1879
+
1880
+ commit fdb76c5b71260c0633e194e8858e96f059300b76
1881
+ Author: Thomas Leitner <t_leitner@gmx.at>
1882
+ Date: Fri May 25 17:33:44 2012 +0200
1883
+
1884
+ Added content processor Ruby for generating output in pure Ruby
1885
+
1886
+ lib/webgen/content_processor/ruby.rb
1887
+ lib/webgen/extensions/init.rb
1888
+ test/webgen/content_processor/test_ruby.rb
1889
+
1890
+ commit a1a27c1bcc6f4257cfd3b7bef5549697aa64ac10
1891
+ Author: Thomas Leitner <t_leitner@gmx.at>
1892
+ Date: Thu May 24 19:24:00 2012 +0200
1893
+
1894
+ Updated Webgen Page Format to allow trailing dashes when using the complex block options scheme
1895
+
1896
+ lib/webgen/page.rb
1897
+ test/webgen/test_page.rb
1898
+
1899
+ commit 0612c555510bbf4e2300be2c23dae27f5b19be84
1900
+ Author: Thomas Leitner <t_leitner@gmx.at>
1901
+ Date: Thu May 24 19:11:37 2012 +0200
1902
+
1903
+ Fixed tag.tikz name
1904
+
1905
+ lib/webgen/extensions/init.rb
1906
+
1907
+ commit 300df5215b28d200e4f0631a3926b5805d70a882
1908
+ Author: Thomas Leitner <t_leitner@gmx.at>
1909
+ Date: Thu May 24 18:53:13 2012 +0200
1910
+
1911
+ Fixed setting temporary dest_node correctly when rendering blocks
1912
+
1913
+ lib/webgen/content_processor/blocks.rb
1914
+ test/webgen/content_processor/test_blocks.rb
1915
+
1916
+ commit f752298adae66eebf0d8c2203e2829268ca50fba
1917
+ Author: Thomas Leitner <t_leitner@gmx.at>
1918
+ Date: Tue May 22 21:07:42 2012 +0200
1919
+
1920
+ Renamed ItemTracker::NodeFinderOptionSet to ItemTracker::Nodes and added more functionality
1921
+
1922
+ This item tracker can now be used for tracking an arbitrary list of
1923
+ nodes, not just a NodeFinder#find result. For arbitrary node list
1924
+ tracking, one has to specify a class/module method that returns
1925
+ the same list of nodes when invoked with the same parameters.
1926
+
1927
+ lib/webgen/extensions/init.rb
1928
+ lib/webgen/item_tracker/node_finder_option_set.rb
1929
+ lib/webgen/item_tracker/nodes.rb
1930
+ test/webgen/item_tracker/test_node_finder_option_set.rb
1931
+ test/webgen/item_tracker/test_nodes.rb
1932
+
1933
+ commit a0ba10df54a83d8aa710c819363155650e774817
1934
+ Author: Thomas Leitner <t_leitner@gmx.at>
1935
+ Date: Tue May 22 18:31:26 2012 +0200
1936
+
1937
+ Updated tag tikz
1938
+
1939
+ lib/webgen/extensions/init.rb
1940
+ lib/webgen/tag/tikz.rb
1941
+ test/test_tag_tikz.rb
1942
+ test/webgen/tag/test_tikz.rb
1943
+
1944
+ commit c542a3d3e886940c306a152b3515ca769013a424
1945
+ Author: Thomas Leitner <t_leitner@gmx.at>
1946
+ Date: Mon May 21 18:20:55 2012 +0200
1947
+
1948
+ Added README file
1949
+
1950
+ README
1951
+
1952
+ commit 34d65cfdbb6627baa49feecbc5021a60ba1b4a01
1953
+ Author: Thomas Leitner <t_leitner@gmx.at>
1954
+ Date: Sun May 20 10:47:49 2012 +0200
1955
+
1956
+ Added new content processor Tikz
1957
+
1958
+ This allows generating standalone TikZ images when combined with
1959
+ the pipeline feature of the copy path handler. Will also be used
1960
+ for the Tikz tag.
1961
+
1962
+ lib/webgen/content_processor/tikz.rb
1963
+ lib/webgen/extensions/init.rb
1964
+ test/webgen/content_processor/test_tikz.rb
1965
+
1966
+ commit c2b1a2ef6ba85d243ba90a28aa93179c916c2093
1967
+ Author: Thomas Leitner <t_leitner@gmx.at>
1968
+ Date: Thu May 17 11:35:00 2012 +0200
1969
+
1970
+ Added an utils module for external commands
1971
+
1972
+ Now also using systemu gem for external command execution.
1973
+
1974
+ lib/webgen/content_processor/tidy.rb
1975
+ lib/webgen/content_processor/xmllint.rb
1976
+ lib/webgen/utils/external_command.rb
1977
+
1978
+ commit c3fedf82e0260efdddf2e15dc6c6617bd246e996
1979
+ Author: Thomas Leitner <t_leitner@gmx.at>
1980
+ Date: Thu May 17 11:15:36 2012 +0200
1981
+
1982
+ Setting error path in ContentProcessor#call when not set on error already
1983
+
1984
+ lib/webgen/content_processor.rb
1985
+ test/webgen/test_content_processor.rb
1986
+
1987
+ commit 05a1d43fbf1c3d0d57e18fcd4cd27f72e139023a
1988
+ Author: Thomas Leitner <t_leitner@gmx.at>
1989
+ Date: Thu May 17 10:05:38 2012 +0200
1990
+
1991
+ Updated tag coderay
1992
+
1993
+ data/webgen/passive_sources/stylesheets/coderay-default.css
1994
+ lib/webgen/extensions/init.rb
1995
+ lib/webgen/tag/coderay.rb
1996
+ test/test_tag_coderay.rb
1997
+ test/webgen/tag/test_coderay.rb
1998
+
1999
+ commit fdaacf821e15130902e5721bdadf258e5abf895b
2000
+ Author: Thomas Leitner <t_leitner@gmx.at>
2001
+ Date: Thu May 17 01:04:09 2012 +0200
2002
+
2003
+ Updated content processor HtmlHead
2004
+
2005
+ Refactored the code of the content processor a bit. Also added a
2006
+ Context module so that adding data to the context for it is easier.
2007
+
2008
+ lib/webgen/content_processor/head.rb
2009
+ lib/webgen/content_processor/html_head.rb
2010
+ lib/webgen/context.rb
2011
+ lib/webgen/context/html_head.rb
2012
+ lib/webgen/extensions/init.rb
2013
+ test/test_contentprocessor_head.rb
2014
+ test/webgen/content_processor/test_html_head.rb
2015
+
2016
+ commit 1482bd6475295b2ecf4a0485e02f589b4f351b58
2017
+ Author: Thomas Leitner <t_leitner@gmx.at>
2018
+ Date: Sat May 12 09:21:48 2012 +0200
2019
+
2020
+ Updated tag include_file
2021
+
2022
+ lib/webgen/extensions/init.rb
2023
+ lib/webgen/tag/include_file.rb
2024
+ lib/webgen/tag/includefile.rb
2025
+ test/test_tag_includefile.rb
2026
+ test/webgen/tag/test_include_file.rb
2027
+
2028
+ commit e81359e9c07ee203a01409efeef49ef3a03839df
2029
+ Author: Thomas Leitner <t_leitner@gmx.at>
2030
+ Date: Sat May 12 08:54:14 2012 +0200
2031
+
2032
+ Added item tracker for files
2033
+
2034
+ lib/webgen/extensions/init.rb
2035
+ lib/webgen/item_tracker/file.rb
2036
+ test/webgen/item_tracker/test_file.rb
2037
+
2038
+ commit 7a1a6a547c186ada948df885106d55de25a643cb
2039
+ Author: Thomas Leitner <t_leitner@gmx.at>
2040
+ Date: Sat May 12 08:40:07 2012 +0200
2041
+
2042
+ Updated tag execute_cmd
2043
+
2044
+ lib/webgen/extensions/init.rb
2045
+ lib/webgen/tag/execute_command.rb
2046
+ lib/webgen/tag/executecommand.rb
2047
+ test/test_tag_executecommand.rb
2048
+ test/webgen/tag/test_execute_command.rb
2049
+
2050
+ commit 8854ecd1c26cb7e2dbacc476a014f9234c903813
2051
+ Author: Thomas Leitner <t_leitner@gmx.at>
2052
+ Date: Sat May 12 08:18:47 2012 +0200
2053
+
2054
+ Updated tag link
2055
+
2056
+ lib/webgen/extensions/init.rb
2057
+ lib/webgen/tag/link.rb
2058
+ test/test_tag_link.rb
2059
+ test/webgen/tag/test_link.rb
2060
+
2061
+ commit be8bc489d795f76a94475620cee0d948776b910d
2062
+ Author: Thomas Leitner <t_leitner@gmx.at>
2063
+ Date: Sat May 12 07:54:21 2012 +0200
2064
+
2065
+ Updated tag relocatable
2066
+
2067
+ lib/webgen/extensions/init.rb
2068
+ lib/webgen/tag/relocatable.rb
2069
+ test/test_tag_relocatable.rb
2070
+ test/webgen/tag/test_relocatable.rb
2071
+
2072
+ commit c284d0e971d997d279ca27db3d162c321d09aacb
2073
+ Author: Thomas Leitner <t_leitner@gmx.at>
2074
+ Date: Fri May 11 22:27:39 2012 +0200
2075
+
2076
+ Fixed invalid logger call in Node#proxy_node
2077
+
2078
+ lib/webgen/node.rb
2079
+ test/webgen/test_node.rb
2080
+
2081
+ commit 37a17f0a76f1cb8901dfb59691422418b88c3964
2082
+ Author: Thomas Leitner <t_leitner@gmx.at>
2083
+ Date: Fri May 11 17:18:05 2012 +0200
2084
+
2085
+ Updated tag meta_info
2086
+
2087
+ lib/webgen/extensions/init.rb
2088
+ lib/webgen/tag/meta_info.rb
2089
+ lib/webgen/tag/metainfo.rb
2090
+ test/test_tag_metainfo.rb
2091
+ test/webgen/tag/test_meta_info.rb
2092
+
2093
+ commit e506060741c0a6ad63690b19490d69dac0791d64
2094
+ Author: Thomas Leitner <t_leitner@gmx.at>
2095
+ Date: Fri May 11 17:19:00 2012 +0200
2096
+
2097
+ Removed dispatching of message on Node#[] since it is not needed
2098
+
2099
+ lib/webgen/node.rb
2100
+ test/webgen/test_node.rb
2101
+
2102
+ commit 4fd38c915649d9a73af0e8f7db0f5be67527fe77
2103
+ Author: Thomas Leitner <t_leitner@gmx.at>
2104
+ Date: Fri May 11 16:56:50 2012 +0200
2105
+
2106
+ Updated tag date
2107
+
2108
+ lib/webgen/extensions/init.rb
2109
+ lib/webgen/tag/date.rb
2110
+ test/test_tag_date.rb
2111
+ test/webgen/tag/test_date.rb
2112
+
2113
+ commit 2e24be435bcda2f8cecf77c3aa13fc90c7bf2bba
2114
+ Author: Thomas Leitner <t_leitner@gmx.at>
2115
+ Date: Fri May 11 17:20:29 2012 +0200
2116
+
2117
+ Added test helper method for Tag tests
2118
+
2119
+ test/helper.rb
2120
+
2121
+ commit 9714d33599510da1b5402418f06aadb276cfa7e5
2122
+ Author: Thomas Leitner <t_leitner@gmx.at>
2123
+ Date: Fri May 11 16:40:37 2012 +0200
2124
+
2125
+ Fixed test for empty website
2126
+
2127
+ lib/webgen/path_handler.rb
2128
+ lib/webgen/website.rb
2129
+
2130
+ commit 528271051f64f16b70fe80d38cf55e318157b10f
2131
+ Author: Thomas Leitner <t_leitner@gmx.at>
2132
+ Date: Tue May 8 19:41:32 2012 +0200
2133
+
2134
+ Removed mandatory :name option from NodeFinder option sets
2135
+
2136
+ lib/webgen/node_finder.rb
2137
+ test/webgen/test_node_finder.rb
2138
+
2139
+ commit 744f80f134212fce81dbabc25a5bbadfb1382a9f
2140
+ Author: Thomas Leitner <t_leitner@gmx.at>
2141
+ Date: Mon May 7 21:28:15 2012 +0200
2142
+
2143
+ Added item tracker for node finder option sets
2144
+
2145
+ lib/webgen/extensions/init.rb
2146
+ lib/webgen/item_tracker/node_finder_option_set.rb
2147
+ test/webgen/item_tracker/test_node_finder_option_set.rb
2148
+
2149
+ commit aaadbef178342429e65bc6745a91acd2c45037c7
2150
+ Author: Thomas Leitner <t_leitner@gmx.at>
2151
+ Date: Mon May 7 21:12:34 2012 +0200
2152
+
2153
+ ItemTracker#item_changed? now publicly available for use
2154
+
2155
+ lib/webgen/item_tracker.rb
2156
+
2157
+ commit 18f6031ad4c270ff13b278d352a3b95000d15e1b
2158
+ Author: Thomas Leitner <t_leitner@gmx.at>
2159
+ Date: Mon May 7 21:11:33 2012 +0200
2160
+
2161
+ Fixed passing of false parameter in ItemTracker
2162
+
2163
+ lib/webgen/item_tracker.rb
2164
+
2165
+ commit 31c17f02073de7dd1b89d7d5fdfe748a2d3412d7
2166
+ Author: Thomas Leitner <t_leitner@gmx.at>
2167
+ Date: Fri May 4 18:35:39 2012 +0200
2168
+
2169
+ Updated virtual path handler
2170
+
2171
+ lib/webgen/extensions/init.rb
2172
+ lib/webgen/path_handler/virtual.rb
2173
+ lib/webgen/sourcehandler/virtual.rb
2174
+ test/test_sourcehandler_virtual.rb
2175
+ test/webgen/path_handler/test_virtual.rb
2176
+
2177
+ commit 7abe377f8fa85bc3f38ec0abc13a737bf05de78b
2178
+ Author: Thomas Leitner <t_leitner@gmx.at>
2179
+ Date: Fri May 4 18:30:03 2012 +0200
2180
+
2181
+ Nodes with meta info 'no_output' => true may point to an existing destination path
2182
+
2183
+ lib/webgen/tree.rb
2184
+ test/webgen/test_tree.rb
2185
+
2186
+ commit f3c6ce51b388f938c05411626d38267151735ef0
2187
+ Author: Thomas Leitner <t_leitner@gmx.at>
2188
+ Date: Wed May 2 19:08:22 2012 +0200
2189
+
2190
+ Improved change checking of tracked items
2191
+
2192
+ There was a problem when the data of one tracked item was updated
2193
+ in multiple places in the tree population phase. All item data is
2194
+ now updated to the latest version after the tree is populated.
2195
+
2196
+ lib/webgen/item_tracker.rb
2197
+ lib/webgen/path_handler/meta_info.rb
2198
+ test/webgen/path_handler/test_meta_info.rb
2199
+
2200
+ commit 134122389ae1e311dbd7a61eb4921b1746ca8aac
2201
+ Author: Thomas Leitner <t_leitner@gmx.at>
2202
+ Date: Wed May 2 18:57:55 2012 +0200
2203
+
2204
+ Some small changes
2205
+
2206
+ lib/webgen/path_handler.rb
2207
+ lib/webgen/path_handler/base.rb
2208
+ test/webgen/path_handler/test_base.rb
2209
+ test/webgen/path_handler/test_copy.rb
2210
+ test/webgen/path_handler/test_meta_info.rb
2211
+ test/webgen/path_handler/test_page.rb
2212
+
2213
+ commit 38390d5f30c9243d7de0e3ceb0c52946718190cf
2214
+ Author: Thomas Leitner <t_leitner@gmx.at>
2215
+ Date: Wed May 2 18:56:32 2012 +0200
2216
+
2217
+ It's now possible to directly specify a path handler that should be used for creating secondary nodes
2218
+
2219
+ lib/webgen/path_handler.rb
2220
+
2221
+ commit a0491aed0f4106c2c06f77253412358bf1f5ad4f
2222
+ Author: Thomas Leitner <t_leitner@gmx.at>
2223
+ Date: Wed May 2 18:51:00 2012 +0200
2224
+
2225
+ Moved rest of website generation logic from Website to PathHandler
2226
+
2227
+ lib/webgen/path_handler.rb
2228
+ lib/webgen/website.rb
2229
+
2230
+ commit 3232af749ecf71a1f28a1a6b9e39399889b89255
2231
+ Author: Thomas Leitner <t_leitner@gmx.at>
2232
+ Date: Wed May 2 18:49:52 2012 +0200
2233
+
2234
+ Renamed 'render' CLI command to 'generate'
2235
+
2236
+ lib/webgen/cli.rb
2237
+ lib/webgen/cli/generate_command.rb
2238
+ lib/webgen/cli/render_command.rb
2239
+ test/webgen/test_cli.rb
2240
+
2241
+ commit 3d4cec2778a3282c72c7fe22cae7dda969cfe0e9
2242
+ Author: Thomas Leitner <t_leitner@gmx.at>
2243
+ Date: Sat Apr 28 09:06:37 2012 +0200
2244
+
2245
+ Now using correct :default instead of 'default' for default block name
2246
+
2247
+ lib/webgen/extensions/init.rb
2248
+
2249
+ commit 97cd4b35be936e73f193cc58cc6445edccd44011
2250
+ Author: Thomas Leitner <t_leitner@gmx.at>
2251
+ Date: Sat Apr 28 09:06:16 2012 +0200
2252
+
2253
+ Updated meta info path handler
2254
+
2255
+ lib/webgen/extensions/init.rb
2256
+ lib/webgen/path_handler/meta_info.rb
2257
+ lib/webgen/sourcehandler/metainfo.rb
2258
+ test/test_sourcehandler_metainfo.rb
2259
+ test/webgen/path_handler/test_meta_info.rb
2260
+
2261
+ commit 35a05a9a567459f244ef6df503db7a1ec393240d
2262
+ Author: Thomas Leitner <t_leitner@gmx.at>
2263
+ Date: Sat Apr 28 08:54:07 2012 +0200
2264
+
2265
+ Now recognizing mi key handler/versions:handler
2266
+
2267
+ If the mi key handler is specified, a node is only created with the
2268
+ specified handler, even if other path handlers would also use the
2269
+ path.
2270
+
2271
+ lib/webgen/path_handler.rb
2272
+
2273
+ commit 8905f8fd09cf3db0826422d910ea1aedbd36228e
2274
+ Author: Thomas Leitner <t_leitner@gmx.at>
2275
+ Date: Fri Apr 27 18:01:29 2012 +0200
2276
+
2277
+ dest_path generation now uses different syntax, adds version part (also in alcn)
2278
+
2279
+ * now using syntax <VAR> instead of :var to avoid problems when
2280
+ setting dest_path in YAML
2281
+ * meta info version is now also used in dest_path and alcn to
2282
+ avoid problems when generating multiple nodes from one path
2283
+
2284
+ lib/webgen/extensions/init.rb
2285
+ lib/webgen/path.rb
2286
+ lib/webgen/path_handler/base.rb
2287
+ test/webgen/path_handler/test_base.rb
2288
+ test/webgen/path_handler/test_copy.rb
2289
+ test/webgen/path_handler/test_page.rb
2290
+ test/webgen/path_handler/test_template.rb
2291
+ test/webgen/test_path.rb
2292
+
2293
+ commit 00d412a231fd1d14fee8418ec4534ffd96927310
2294
+ Author: Thomas Leitner <t_leitner@gmx.at>
2295
+ Date: Sun Apr 22 18:47:53 2012 +0200
2296
+
2297
+ Fixed API documentation
2298
+
2299
+ lib/webgen/path_handler/page_utils.rb
2300
+
2301
+ commit 65d79310ca280e701e29a9478ab940b2d58c0da9
2302
+ Author: Thomas Leitner <t_leitner@gmx.at>
2303
+ Date: Sun Apr 22 18:47:40 2012 +0200
2304
+
2305
+ Moved complete CLI code from executable to CommandParser class
2306
+
2307
+ bin/webgen
2308
+ lib/webgen/cli.rb
2309
+
2310
+ commit bf2ac54311adfa48a09d3e6742c2c67b21c6304d
2311
+ Author: Thomas Leitner <t_leitner@gmx.at>
2312
+ Date: Sun Apr 22 18:47:11 2012 +0200
2313
+
2314
+ Updated node (block) rendering
2315
+
2316
+ * Added #normalize_pipeline method to ContentProcessor to get
2317
+ DRYer code
2318
+ * Moved adding the :node_content item to PageUtils#render_block
2319
+ from ContentProcessor::Blocks.render_block
2320
+
2321
+ lib/webgen/content_processor.rb
2322
+ lib/webgen/content_processor/blocks.rb
2323
+ lib/webgen/path_handler/copy.rb
2324
+ lib/webgen/path_handler/page_utils.rb
2325
+ test/webgen/path_handler/test_copy.rb
2326
+ test/webgen/path_handler/test_page_utils.rb
2327
+ test/webgen/test_content_processor.rb
2328
+
2329
+ commit 67b812e3e9c31d31d57258c8999abd9f24ca3210
2330
+ Author: Thomas Leitner <t_leitner@gmx.at>
2331
+ Date: Sun Apr 22 18:42:36 2012 +0200
2332
+
2333
+ Fixed recursion problem in item tracker change checking
2334
+
2335
+ lib/webgen/item_tracker.rb
2336
+ test/webgen/test_item_tracker.rb
2337
+
2338
+ commit 8b7b3093d0654f1c8c37c742912cab7bcb02a4ca
2339
+ Author: Thomas Leitner <t_leitner@gmx.at>
2340
+ Date: Fri Apr 20 20:09:23 2012 +0200
2341
+
2342
+ Updated path handler page
2343
+
2344
+ lib/webgen/extensions/init.rb
2345
+ lib/webgen/path_handler/page.rb
2346
+ lib/webgen/sourcehandler/page.rb
2347
+ test/test_sourcehandler_page.rb
2348
+ test/webgen/path_handler/test_page.rb
2349
+
2350
+ commit c40ea15990ae602e4a1f74f38e3290951feb4335
2351
+ Author: Thomas Leitner <t_leitner@gmx.at>
2352
+ Date: Fri Apr 20 20:03:44 2012 +0200
2353
+
2354
+ Node meta information is not frozen anymore
2355
+
2356
+ This allows changing the node meta information during
2357
+ the node creation and rendering phases, needed by the
2358
+ meta info path handler.
2359
+
2360
+ lib/webgen/item_tracker/node_meta_info.rb
2361
+ lib/webgen/node.rb
2362
+ test/webgen/item_tracker/test_node_meta_info.rb
2363
+
2364
+ commit c58c460b3c446b222b1a9ff97d87e47f24b8b2de
2365
+ Author: Thomas Leitner <t_leitner@gmx.at>
2366
+ Date: Fri Apr 20 20:02:18 2012 +0200
2367
+
2368
+ Fixed item tracking when items change after being added
2369
+
2370
+ lib/webgen/item_tracker.rb
2371
+ test/webgen/test_item_tracker.rb
2372
+
2373
+ commit 63b940b88bdc6bb79b0891729fc761cdde466aaa
2374
+ Author: Thomas Leitner <t_leitner@gmx.at>
2375
+ Date: Fri Apr 20 20:00:04 2012 +0200
2376
+
2377
+ Fixed usage of false blackboard message name
2378
+
2379
+ lib/webgen/tag.rb
2380
+ test/webgen/test_tag.rb
2381
+
2382
+ commit ba4fa69926bcad927ca12496d977afb4eabed9e1
2383
+ Author: Thomas Leitner <t_leitner@gmx.at>
2384
+ Date: Tue Apr 17 18:08:40 2012 +0200
2385
+
2386
+ Updated path handler template
2387
+
2388
+ lib/webgen/extensions/init.rb
2389
+ lib/webgen/path_handler/template.rb
2390
+ lib/webgen/sourcehandler/template.rb
2391
+ test/test_sourcehandler_template.rb
2392
+ test/webgen/path_handler/test_template.rb
2393
+
2394
+ commit d8ab2e72de6a3a38bc8b6636a9251745fbe71673
2395
+ Author: Thomas Leitner <t_leitner@gmx.at>
2396
+ Date: Mon Apr 16 20:41:34 2012 +0200
2397
+
2398
+ Added missing require statement
2399
+
2400
+ lib/webgen/path_handler/copy.rb
2401
+
2402
+ commit f6e5f0f5367c42b7ce5d9918c3619aa60f954bbb
2403
+ Author: Thomas Leitner <t_leitner@gmx.at>
2404
+ Date: Mon Apr 16 20:41:16 2012 +0200
2405
+
2406
+ Fixed problems in PathHandler class and with item tracking
2407
+
2408
+ * refactored code from #write_tree and created #write_node
2409
+ * some other small fixes for PathHandler
2410
+ * fixed PathHandler and ItemTracker so that tracking of items
2411
+ works as expected
2412
+
2413
+ lib/webgen/item_tracker.rb
2414
+ lib/webgen/path_handler.rb
2415
+ test/webgen/test_item_tracker.rb
2416
+
2417
+ commit f671b7fba0bcfde02cf836d4cfe3dfc5347ec51d
2418
+ Author: Thomas Leitner <t_leitner@gmx.at>
2419
+ Date: Mon Apr 16 20:38:46 2012 +0200
2420
+
2421
+ Passive sources use meta info passive instead of no_output
2422
+
2423
+ The meta info 'no_output' can't be used for passive nodes because
2424
+ it conflicts with its actual usage. Therefore passive nodes now
2425
+ get the meta information 'passive'.
2426
+
2427
+ lib/webgen/source.rb
2428
+ test/webgen/test_source.rb
2429
+
2430
+ commit 90298cfef9080bfee4b3983301ea764e72cc76d2
2431
+ Author: Thomas Leitner <t_leitner@gmx.at>
2432
+ Date: Mon Apr 16 20:36:08 2012 +0200
2433
+
2434
+ Fixed reporting of wrong class name on errors in ContentProcessor::Blocks
2435
+
2436
+ lib/webgen/content_processor/blocks.rb
2437
+
2438
+ commit 9a768b4bd5f5fc47dab4d535eddbfed11f76859f
2439
+ Author: Thomas Leitner <t_leitner@gmx.at>
2440
+ Date: Sun Apr 15 09:09:43 2012 +0200
2441
+
2442
+ Fixed RF#29161: reading/writing cache file to absolute path now possible
2443
+
2444
+ lib/webgen/website.rb
2445
+
2446
+ commit 54cdd7df464366a63eeb2fd1182af035f3cdfafe
2447
+ Author: Thomas Leitner <t_leitner@gmx.at>
2448
+ Date: Sun Apr 15 07:53:02 2012 +0200
2449
+
2450
+ Added render CLI command
2451
+
2452
+ lib/webgen/cli.rb
2453
+ lib/webgen/cli/render_command.rb
2454
+ lib/webgen/cli/run_command.rb
2455
+
2456
+ commit 3eb28c23c4b211d3a447df36e7ccbb3c49995bb9
2457
+ Author: Thomas Leitner <t_leitner@gmx.at>
2458
+ Date: Sun Apr 15 07:46:34 2012 +0200
2459
+
2460
+ Implemented Website#render method
2461
+
2462
+ lib/webgen/website.rb
2463
+
2464
+ commit 50d6ab2df3e2d360743074e53b3bd752e1374a34
2465
+ Author: Thomas Leitner <t_leitner@gmx.at>
2466
+ Date: Sun Apr 15 07:45:28 2012 +0200
2467
+
2468
+ Added main path handler extension
2469
+
2470
+ lib/webgen/path_handler.rb
2471
+ lib/webgen/sourcehandler.rb
2472
+
2473
+ commit a2fca3710c41dd320c2bebf7f7e983b885c18f33
2474
+ Author: Thomas Leitner <t_leitner@gmx.at>
2475
+ Date: Sun Apr 15 07:21:18 2012 +0200
2476
+
2477
+ Fixed parameter value for :node_content item tracker
2478
+
2479
+ lib/webgen/content_processor/blocks.rb
2480
+
2481
+ commit b49e4e2a57547a6e48272e9df14217e6286efff4
2482
+ Author: Thomas Leitner <t_leitner@gmx.at>
2483
+ Date: Sun Apr 15 07:15:11 2012 +0200
2484
+
2485
+ Added directory path handler
2486
+
2487
+ lib/webgen/path_handler/directory.rb
2488
+ lib/webgen/sourcehandler/directory.rb
2489
+ test/test_sourcehandler_directory.rb
2490
+
2491
+ commit 9dd6f0c2f87a2a1d454691d30caf7e768ca6cd1e
2492
+ Author: Thomas Leitner <t_leitner@gmx.at>
2493
+ Date: Sun Apr 15 07:10:59 2012 +0200
2494
+
2495
+ Updated extension inititalization file
2496
+
2497
+ Added missing code so that a simple webgen run works again.
2498
+
2499
+ lib/webgen/extensions/init.rb
2500
+
2501
+ commit f6a2be723229388512c2b21962317be49baab184
2502
+ Author: Thomas Leitner <t_leitner@gmx.at>
2503
+ Date: Sat Apr 14 17:04:58 2012 +0200
2504
+
2505
+ Meaning of return value of #content of a path handler changed
2506
+
2507
+ The special value nil is not supported anymore. If a path handler
2508
+ creates a node that has no output, the no_output meta info should
2509
+ be used.
2510
+
2511
+ lib/webgen/path_handler/base.rb
2512
+
2513
+ commit 2b56befae2c92fbd5a226797081b94636dbedc64
2514
+ Author: Thomas Leitner <t_leitner@gmx.at>
2515
+ Date: Sat Apr 14 17:03:05 2012 +0200
2516
+
2517
+ Fixed API doc for Node#initialize
2518
+
2519
+ lib/webgen/node.rb
2520
+
2521
+ commit 08e5fd05d043c1dd021267fab25d59938f0d4e04
2522
+ Author: Thomas Leitner <t_leitner@gmx.at>
2523
+ Date: Sat Apr 14 17:02:33 2012 +0200
2524
+
2525
+ Fixed Ruby warning
2526
+
2527
+ lib/webgen/item_tracker.rb
2528
+
2529
+ commit 817b6f06e1d187bbb1dcbcf05fdef798bc3347b6
2530
+ Author: Thomas Leitner <t_leitner@gmx.at>
2531
+ Date: Sat Apr 14 17:01:38 2012 +0200
2532
+
2533
+ Removed type parameter from Destination#write
2534
+
2535
+ Type file or directory can be inferred from the given path.
2536
+
2537
+ lib/webgen/destination.rb
2538
+ lib/webgen/destination/file_system.rb
2539
+ test/webgen/destination/test_file_system.rb
2540
+ test/webgen/test_destination.rb
2541
+
2542
+ commit 0ee501c548a3f5095ef4e68cb0881cd40583663c
2543
+ Author: Thomas Leitner <t_leitner@gmx.at>
2544
+ Date: Sat Apr 14 17:00:01 2012 +0200
2545
+
2546
+ Updated logger output format
2547
+
2548
+ lib/webgen/cli/logger.rb
2549
+ test/webgen/cli/test_logger.rb
2550
+
2551
+ commit ce27c7ea99984b5d0b4cf3046e8cac36cd184efc
2552
+ Author: Thomas Leitner <t_leitner@gmx.at>
2553
+ Date: Wed Mar 28 19:37:41 2012 +0200
2554
+
2555
+ Updated file declaring extensions to builtin Ruby classes
2556
+
2557
+ * Removed Array#to_hash
2558
+ * Renamed file
2559
+
2560
+ lib/webgen/common.rb
2561
+ lib/webgen/content_processor.rb
2562
+ lib/webgen/core_ext.rb
2563
+ lib/webgen/coreext.rb
2564
+ lib/webgen/website.rb
2565
+
2566
+ commit 1ad2f60614c5b6ba9f4025e2790cbfb2086d8616
2567
+ Author: Thomas Leitner <t_leitner@gmx.at>
2568
+ Date: Wed Mar 28 19:29:43 2012 +0200
2569
+
2570
+ Updated the CLI CommandParser class
2571
+
2572
+ lib/webgen/cli.rb
2573
+ test/test_cli.rb
2574
+ test/webgen/test_cli.rb
2575
+
2576
+ commit 8a0375d6f389c5790c8adf7e921bbf30c007b3dc
2577
+ Author: Thomas Leitner <t_leitner@gmx.at>
2578
+ Date: Wed Mar 28 19:28:56 2012 +0200
2579
+
2580
+ Changed CLI error message header
2581
+
2582
+ bin/webgen
2583
+
2584
+ commit d9a94b485faf71cbafafa6ad980f48efe22479ae
2585
+ Author: Thomas Leitner <t_leitner@gmx.at>
2586
+ Date: Wed Mar 28 16:13:22 2012 +0200
2587
+
2588
+ Deleted webgui related files
2589
+
2590
+ data/webgen/webgui/app.rb
2591
+ data/webgen/webgui/controller/main.rb
2592
+ data/webgen/webgui/layout/default.xhtml
2593
+ data/webgen/webgui/overrides/win32console.rb
2594
+ data/webgen/webgui/public/css/jquery.autocomplete.css
2595
+ data/webgen/webgui/public/css/ramaze_error.css
2596
+ data/webgen/webgui/public/css/style.css
2597
+ data/webgen/webgui/public/img/headerbg.jpg
2598
+ data/webgen/webgui/public/img/webgen_logo.png
2599
+ data/webgen/webgui/public/js/jquery.autocomplete.js
2600
+ data/webgen/webgui/public/js/jquery.js
2601
+ data/webgen/webgui/start.rb
2602
+ data/webgen/webgui/view/create_website.xhtml
2603
+ data/webgen/webgui/view/error.xhtml
2604
+ data/webgen/webgui/view/index.xhtml
2605
+ data/webgen/webgui/view/manage_website.xhtml
2606
+ lib/webgen/cli/webgui_command.rb
2607
+
2608
+ commit fb11b9b6826459e822cac069d578ab9efb2128ff
2609
+ Author: Thomas Leitner <t_leitner@gmx.at>
2610
+ Date: Mon Mar 26 16:46:48 2012 +0200
2611
+
2612
+ Updated extensions init file
2613
+
2614
+ * Now using new ExtensionLoader/-Manager features
2615
+ * Fixed path of file due to ExtensionLoader semantics
2616
+
2617
+ lib/webgen/extensions.rb
2618
+ lib/webgen/extensions/init.rb
2619
+
2620
+ commit 5c2aa2f41e84a92ac5e8e7f73e23f54a940cd161
2621
+ Author: Thomas Leitner <t_leitner@gmx.at>
2622
+ Date: Sun Mar 25 08:35:15 2012 +0200
2623
+
2624
+ Fixed API docu to reflect code changes
2625
+
2626
+ lib/webgen/content_processor.rb
2627
+ lib/webgen/destination.rb
2628
+ lib/webgen/item_tracker.rb
2629
+ lib/webgen/source.rb
2630
+ lib/webgen/tag.rb
2631
+
2632
+ commit 32b04e4ea3f5b881d7110798ada25dadc1b389bb
2633
+ Author: Thomas Leitner <t_leitner@gmx.at>
2634
+ Date: Sun Mar 25 08:33:07 2012 +0200
2635
+
2636
+ Fixed Website object
2637
+
2638
+ * Initialization block now also optionally called before website initialization
2639
+ * Extension loading code fixed
2640
+ * Initialization of Tree was not correct
2641
+ * Added a new blackboard message website_initialized
2642
+
2643
+ Updated website object againg
2644
+
2645
+ lib/webgen/website.rb
2646
+
2647
+ commit dd44052ef4e0a955822152747b75ae85c88fb147
2648
+ Author: Thomas Leitner <t_leitner@gmx.at>
2649
+ Date: Sun Mar 25 08:32:02 2012 +0200
2650
+
2651
+ Added better mechanism for loading extension files
2652
+
2653
+ Created an ExtensionLoader class that does all the work and
2654
+ provides a mini DSL for extension authors.
2655
+
2656
+ lib/webgen/extension_loader.rb
2657
+ lib/webgen/website.rb
2658
+ test/webgen/test_extension_loader.rb
2659
+
2660
+ commit be132aad27ab4398209f00e685acb923a61390e6
2661
+ Author: Thomas Leitner <t_leitner@gmx.at>
2662
+ Date: Sat Mar 24 09:26:15 2012 +0100
2663
+
2664
+ Updated ExtensionManger#do_register to allow a Class object as first parameter
2665
+
2666
+ lib/webgen/common/extension_manager.rb
2667
+ test/webgen/common/test_extension_manager.rb
2668
+
2669
+ commit 0fa8fb61c777ee6a8d99f546144107d06abf9d27
2670
+ Author: Thomas Leitner <t_leitner@gmx.at>
2671
+ Date: Fri Mar 23 18:00:57 2012 +0100
2672
+
2673
+ Update ExtensionManager to allow associating arbitrary data with an extension
2674
+
2675
+ This allows one, for example, to add author and summary information
2676
+ for extensions.
2677
+
2678
+ lib/webgen/common/extension_manager.rb
2679
+ lib/webgen/content_processor.rb
2680
+ lib/webgen/destination.rb
2681
+ lib/webgen/item_tracker.rb
2682
+ lib/webgen/source.rb
2683
+ lib/webgen/tag.rb
2684
+ test/webgen/common/test_extension_manager.rb
2685
+ test/webgen/test_tag.rb
2686
+
2687
+ commit 770fc8bfbe3e277ab59c9c551053d0381db8f1f2
2688
+ Author: Thomas Leitner <t_leitner@gmx.at>
2689
+ Date: Fri Mar 23 16:34:30 2012 +0100
2690
+
2691
+ Docu fix
2692
+
2693
+ lib/webgen/item_tracker/node_meta_info.rb
2694
+
2695
+ commit 2ff25f9a5da626622f70f4d1f335404233749ff6
2696
+ Author: Thomas Leitner <t_leitner@gmx.at>
2697
+ Date: Fri Mar 23 16:34:15 2012 +0100
2698
+
2699
+ Updated ItemTracker::NodeContent
2700
+
2701
+ The content of a node has changed if any of its items has changed.
2702
+
2703
+ lib/webgen/item_tracker/node_content.rb
2704
+ test/webgen/item_tracker/test_node_content.rb
2705
+
2706
+ commit 2ff3a540dfb20d5d43a4207b5f75bb9a2ab38f17
2707
+ Author: Thomas Leitner <t_leitner@gmx.at>
2708
+ Date: Fri Mar 23 16:32:34 2012 +0100
2709
+
2710
+ Updated ItemTracker to not require any special item tracker extension
2711
+
2712
+ lib/webgen/item_tracker.rb
2713
+ test/webgen/test_item_tracker.rb
2714
+
2715
+ commit a208b0734282302a0888b583df27ff7f3653389a
2716
+ Author: Thomas Leitner <t_leitner@gmx.at>
2717
+ Date: Sat Feb 25 09:29:08 2012 +0100
2718
+
2719
+ Fixed PathHandler::Copy to pass tests again
2720
+
2721
+ lib/webgen/path_handler/copy.rb
2722
+ test/webgen/path_handler/test_copy.rb
2723
+
2724
+ commit 98fa88d9951ea2617dcc9bd906b5853839f63cb3
2725
+ Author: Thomas Leitner <t_leitner@gmx.at>
2726
+ Date: Fri Feb 24 21:30:51 2012 +0100
2727
+
2728
+ Updated ItemTracker classes
2729
+
2730
+ * Fixed logic regarding node change checking
2731
+ * Added ItemTracker#node_referenced? for checking if a given node
2732
+ is referenced by any item tracker class
2733
+
2734
+ lib/webgen/item_tracker.rb
2735
+ lib/webgen/item_tracker/node_content.rb
2736
+ lib/webgen/item_tracker/node_meta_info.rb
2737
+ test/webgen/item_tracker/test_node_content.rb
2738
+ test/webgen/item_tracker/test_node_meta_info.rb
2739
+ test/webgen/test_item_tracker.rb
2740
+
2741
+ commit e827f1a217e8066a9d09e53ba7a0501e3413fbb6
2742
+ Author: Thomas Leitner <t_leitner@gmx.at>
2743
+ Date: Sat Jan 21 12:50:09 2012 +0100
2744
+
2745
+ Removed the "source path" attribute from Path and fixed #mount_at
2746
+
2747
+ This attribute is not needed anymore because dependency tracking
2748
+ will be done by using Node alcns.
2749
+
2750
+ The IO block is now also correctly set when mounting a path.
2751
+
2752
+ lib/webgen/path.rb
2753
+ lib/webgen/path_handler/base.rb
2754
+ lib/webgen/source.rb
2755
+ test/webgen/path_handler/test_base.rb
2756
+ test/webgen/test_path.rb
2757
+ test/webgen/test_source.rb
2758
+
2759
+ commit 53220459a4c356ca948038269c8ccc3996287c37
2760
+ Author: Thomas Leitner <t_leitner@gmx.at>
2761
+ Date: Sat Jan 21 12:28:48 2012 +0100
2762
+
2763
+ Added possibility to set IO block on Path after creation
2764
+
2765
+ lib/webgen/path.rb
2766
+ test/webgen/test_path.rb
2767
+
2768
+ commit 64422c3d08794884c2aea738cdf4dc33a0147b48
2769
+ Author: Thomas Leitner <t_leitner@gmx.at>
2770
+ Date: Sat Jan 21 12:27:52 2012 +0100
2771
+
2772
+ Re-added formerly deleted Tree#delete_node method
2773
+
2774
+ lib/webgen/tree.rb
2775
+ test/webgen/test_tree.rb
2776
+
2777
+ commit 042f5c9561263a96c67a2881b97fd6e2e618dd42
2778
+ Author: Thomas Leitner <t_leitner@gmx.at>
2779
+ Date: Sat Dec 24 12:21:45 2011 +0100
2780
+
2781
+ Added method #parse_meta_info! to path handler modules
2782
+
2783
+ lib/webgen/path_handler/base.rb
2784
+ lib/webgen/path_handler/page_utils.rb
2785
+
2786
+ commit 5633253afbec711c41eaa723c3f6c9ba8939f884
2787
+ Author: Thomas Leitner <t_leitner@gmx.at>
2788
+ Date: Sat Dec 24 12:12:58 2011 +0100
2789
+
2790
+ Storing the path handler object in the node, not just its name
2791
+
2792
+ Since nodes are not written to the cache anymore, this is a
2793
+ no problem any longer.
2794
+
2795
+ lib/webgen/node.rb
2796
+ test/webgen/test_node.rb
2797
+
2798
+ commit af57ae412ae9b21170c61d36fa42650dcc26bede
2799
+ Author: Thomas Leitner <t_leitner@gmx.at>
2800
+ Date: Tue Dec 13 20:07:59 2011 +0100
2801
+
2802
+ Checked-in missing test helper additions
2803
+
2804
+ test/helper.rb
2805
+
2806
+ commit abf8d237f69020ee7fbbd4397d2990fd6f573411
2807
+ Author: Thomas Leitner <t_leitner@gmx.at>
2808
+ Date: Tue Dec 13 20:07:26 2011 +0100
2809
+
2810
+ Fixed slow test case by removing unneeded mock object verification
2811
+
2812
+ test/webgen/test_node_finder.rb
2813
+
2814
+ commit 7767a8c8290ea2b481952db0b6e6f6b5dd024734
2815
+ Author: Thomas Leitner <t_leitner@gmx.at>
2816
+ Date: Sun Dec 11 11:24:45 2011 +0100
2817
+
2818
+ Updated Destination::FileSystem
2819
+
2820
+ lib/webgen/destination/file_system.rb
2821
+ test/test_output_filesystem.rb
2822
+ test/webgen/destination/test_file_system.rb
2823
+
2824
+ commit 2f46b9e97ce622ae4669da754a841192a7e96a68
2825
+ Author: Thomas Leitner <t_leitner@gmx.at>
2826
+ Date: Sat Dec 10 22:39:04 2011 +0100
2827
+
2828
+ Implemented enhanced version of PathHandler::Copy
2829
+
2830
+ The meta info key pipeline can now be used to specify more than
2831
+ one content processor (as alternative to embedding the content
2832
+ processor name in the source path name).
2833
+
2834
+ lib/webgen/path_handler/copy.rb
2835
+ lib/webgen/sourcehandler/copy.rb
2836
+ test/test_sourcehandler_copy.rb
2837
+ test/webgen/path_handler/test_copy.rb
2838
+
2839
+ commit deb0a76127cc5b40667aa536175d76fc5ee4332b
2840
+ Author: Thomas Leitner <t_leitner@gmx.at>
2841
+ Date: Sat Dec 10 21:44:11 2011 +0100
2842
+
2843
+ API doc update and small test enhancement
2844
+
2845
+ lib/webgen/path.rb
2846
+ test/webgen/test_path.rb
2847
+
2848
+ commit e79e1563076e04f506266af8ea38061baaf452f2
2849
+ Author: Thomas Leitner <t_leitner@gmx.at>
2850
+ Date: Sat Dec 10 11:52:18 2011 +0100
2851
+
2852
+ Updated API documentation of Webgen::Destination
2853
+
2854
+ lib/webgen/destination.rb
2855
+
2856
+ commit 5878ff60d3a007901f020e6f02ac5a9f002f0935
2857
+ Author: Thomas Leitner <t_leitner@gmx.at>
2858
+ Date: Thu Dec 8 09:37:15 2011 +0100
2859
+
2860
+ Using skip to avoid running tests when not possible
2861
+
2862
+ test/webgen/source/test_file_system.rb
2863
+
2864
+ commit b17226b8eaa34cf5239a31eb34a4f23f1e1d8331
2865
+ Author: Thomas Leitner <t_leitner@gmx.at>
2866
+ Date: Thu Dec 8 09:32:17 2011 +0100
2867
+
2868
+ Implemented module Webgen::PathHandler::Base
2869
+
2870
+ This module serves the same purpose as the SourceHandler::Base in
2871
+ the last version of webgen.
2872
+
2873
+ lib/webgen/path_handler/base.rb
2874
+ lib/webgen/sourcehandler/base.rb
2875
+ test/test_sourcehandler_base.rb
2876
+ test/webgen/path_handler/test_base.rb
2877
+
2878
+ commit 3c1bde404af1469707cecaa9aa0121885e682ea2
2879
+ Author: Thomas Leitner <t_leitner@gmx.at>
2880
+ Date: Wed Dec 7 19:25:20 2011 +0100
2881
+
2882
+ Fixed NodeFinder#sort_nodes so that sorting also with a tree of nodes
2883
+
2884
+ lib/webgen/node_finder.rb
2885
+ test/webgen/test_node_finder.rb
2886
+
2887
+ commit bac1faa0dd7a5231ca193c234b07de27cae17c22
2888
+ Author: Thomas Leitner <t_leitner@gmx.at>
2889
+ Date: Mon Dec 5 18:33:20 2011 +0100
2890
+
2891
+ Fixed Path.new: Given meta information hash is now duped
2892
+
2893
+ lib/webgen/path.rb
2894
+ test/webgen/test_path.rb
2895
+
2896
+ commit f72db98c2f6181e2dfd19ba1e9c26dbcc78fe1f7
2897
+ Author: Thomas Leitner <t_leitner@gmx.at>
2898
+ Date: Sun Dec 4 18:52:34 2011 +0100
2899
+
2900
+ Updated API documentation
2901
+
2902
+ lib/webgen/path_handler/page_utils.rb
2903
+
2904
+ commit a323199fa1fb2526cb3e05af3939ca8d8d060406
2905
+ Author: Thomas Leitner <t_leitner@gmx.at>
2906
+ Date: Sun Dec 4 08:23:53 2011 +0100
2907
+
2908
+ Added test case for Path#ext= and fixed warning there
2909
+
2910
+ lib/webgen/path.rb
2911
+ test/webgen/test_path.rb
2912
+
2913
+ commit aaa2c5be236ab532ba643bf718ab7c39468a7db7
2914
+ Author: Thomas Leitner <t_leitner@gmx.at>
2915
+ Date: Sat Dec 3 09:45:54 2011 +0100
2916
+
2917
+ Added missing test case 'invalid argument to NodeFinder#find'
2918
+
2919
+ test/webgen/test_node_finder.rb
2920
+
2921
+ commit 7c39106e06dcc39c43d1ac5cec9b2fe866cb6c0d
2922
+ Author: Thomas Leitner <t_leitner@gmx.at>
2923
+ Date: Sat Dec 3 09:38:27 2011 +0100
2924
+
2925
+ Refactored Tag extension class
2926
+
2927
+ Tag data is now stored in an object instead of an array.
2928
+
2929
+ lib/webgen/tag.rb
2930
+ test/webgen/test_tag.rb
2931
+
2932
+ commit ceccf1aa575fad64745e3e0705769429295a11fb
2933
+ Author: Thomas Leitner <t_leitner@gmx.at>
2934
+ Date: Sat Dec 3 09:16:47 2011 +0100
2935
+
2936
+ Refactored Node and Tree classes and added enhanced node translation support
2937
+
2938
+ * Node translations can now be defined via the meta info key
2939
+ 'translation_key'
2940
+ * Node#in_lang moved to Tree#translate_node
2941
+ * Implementation of Node#resolve moved to Tree#resolve_node
2942
+
2943
+ lib/webgen/node.rb
2944
+ lib/webgen/tree.rb
2945
+ test/webgen/test_node.rb
2946
+ test/webgen/test_tree.rb
2947
+
2948
+ commit c6b1057ce4f66cb428fc1fa5b9b5edb0b35e043d
2949
+ Author: Thomas Leitner <t_leitner@gmx.at>
2950
+ Date: Sun Nov 27 09:20:22 2011 +0100
2951
+
2952
+ Two small updates to Path
2953
+
2954
+ * Implemented #dup in terms of #initialize_copy
2955
+ * Path.matches_pattern? now allows setting the matching options
2956
+
2957
+ lib/webgen/path.rb
2958
+
2959
+ commit 60478368b135916d1d5406ab27b659b151606853
2960
+ Author: Thomas Leitner <t_leitner@gmx.at>
2961
+ Date: Sun Nov 27 09:14:15 2011 +0100
2962
+
2963
+ Updated WebgenPageFormat syntax and Page implementation
2964
+
2965
+ * A new simple block separator line can now be used (similar to the
2966
+ one used by webgen 0.4.x):
2967
+
2968
+ --- blockname -------------
2969
+
2970
+ The dashes at the end are optional.
2971
+
2972
+ * The key for providing default information for all blocks is now
2973
+ :default instead of 'default'.
2974
+
2975
+ * Block options are now stored in the meta information key 'blocks'
2976
+
2977
+ lib/webgen/page.rb
2978
+ test/webgen/path_handler/test_page_utils.rb
2979
+ test/webgen/test_page.rb
2980
+
2981
+ commit edc3ed3f7d9e8be5d960f728d54c79472ed5fc09
2982
+ Author: Thomas Leitner <t_leitner@gmx.at>
2983
+ Date: Sun Nov 27 08:15:34 2011 +0100
2984
+
2985
+ Removed ItemTracker#website= because it is not needed
2986
+
2987
+ lib/webgen/item_tracker.rb
2988
+
2989
+ commit 1bd9da6574bad1d4b874a0401be6c4a81552c45a
2990
+ Author: Thomas Leitner <t_leitner@gmx.at>
2991
+ Date: Sun Nov 27 07:33:34 2011 +0100
2992
+
2993
+ Small API doc fix
2994
+
2995
+ lib/webgen/destination.rb
2996
+
2997
+ commit c196545c670f8d7e25b6a41d8fc008be605b91d8
2998
+ Author: Thomas Leitner <t_leitner@gmx.at>
2999
+ Date: Sun Nov 27 07:33:17 2011 +0100
3000
+
3001
+ Fixed warnings on Ruby 1.9.2
3002
+
3003
+ lib/webgen/content_processor/xmllint.rb
3004
+ lib/webgen/path.rb
3005
+
3006
+ commit 57c0ef35cf087d802f89b0a8fa92cb226a486b22
3007
+ Author: Thomas Leitner <t_leitner@gmx.at>
3008
+ Date: Sun Nov 27 07:32:04 2011 +0100
3009
+
3010
+ Fixed Source::FileSystem test to work on ruby 1.9.3
3011
+
3012
+ test/webgen/source/test_file_system.rb
3013
+
3014
+ commit d75cb0628d0c6e9148acd8b1a6115181dffa3537
3015
+ Author: Thomas Leitner <t_leitner@gmx.at>
3016
+ Date: Sat Nov 26 18:14:10 2011 +0100
3017
+
3018
+ Fixed missing require statements
3019
+
3020
+ lib/webgen/source/file_system.rb
3021
+ lib/webgen/source/tar_archive.rb
3022
+
3023
+ commit cf1ac56e113cf758975e8b39dcb3dfeb4a7b3238
3024
+ Author: Thomas Leitner <t_leitner@gmx.at>
3025
+ Date: Sat Nov 26 18:09:29 2011 +0100
3026
+
3027
+ Fixed problems due to newer minitest mock.rb version of Ruby 1.9.3
3028
+
3029
+ test/webgen/content_processor/test_rdoc.rb
3030
+ test/webgen/content_processor/test_tags.rb
3031
+ test/webgen/item_tracker/test_node_meta_info.rb
3032
+ test/webgen/source/test_stacked.rb
3033
+ test/webgen/test_context.rb
3034
+ test/webgen/test_destination.rb
3035
+ test/webgen/test_node.rb
3036
+ test/webgen/test_source.rb
3037
+
3038
+ commit a391ab2b6af26f642f0265987817409431487fa6
3039
+ Author: Thomas Leitner <t_leitner@gmx.at>
3040
+ Date: Sat Nov 26 17:00:19 2011 +0100
3041
+
3042
+ Catch YAML syntax errors when using Psych, too
3043
+
3044
+ lib/webgen/configuration.rb
3045
+ lib/webgen/page.rb
3046
+ lib/webgen/sourcehandler/metainfo.rb
3047
+ lib/webgen/sourcehandler/virtual.rb
3048
+ lib/webgen/utils/tag_parser.rb
3049
+ lib/webgen/websitemanager.rb
3050
+
3051
+ commit 92c3bb51bc7967e7174faaa3e8f702d892323c2c
3052
+ Author: Thomas Leitner <t_leitner@gmx.at>
3053
+ Date: Sat Nov 26 11:46:43 2011 +0100
3054
+
3055
+ Using RbConfig instead of Config now
3056
+
3057
+ lib/webgen/cli/utils.rb
3058
+ lib/webgen/tag/executecommand.rb
3059
+ lib/webgen/website.rb
3060
+ test/test_cli.rb
3061
+ test/test_tag_executecommand.rb
3062
+ test/test_tag_tikz.rb
3063
+ test/webgen/source/test_file_system.rb
3064
+
3065
+ commit da182a9c479111222b9756d32212589483020f30
3066
+ Author: Thomas Leitner <t_leitner@gmx.at>
3067
+ Date: Mon Nov 21 17:49:27 2011 +0100
3068
+
3069
+ Updated Context::Rendering module to use ContentProcessor::Blocks directly
3070
+
3071
+ lib/webgen/context/rendering.rb
3072
+ test/webgen/test_context.rb
3073
+
3074
+ commit d8a6a0894f5bd9bca1a12f9db69780685214f90d
3075
+ Author: Thomas Leitner <t_leitner@gmx.at>
3076
+ Date: Mon Nov 21 17:41:27 2011 +0100
3077
+
3078
+ Fixed API doc
3079
+
3080
+ lib/webgen/context/webgen_tags.rb
3081
+
3082
+ commit 0fccfafbe7959ed3aae2310f4dc4bd946b59ca32
3083
+ Author: Thomas Leitner <t_leitner@gmx.at>
3084
+ Date: Mon Nov 21 17:39:22 2011 +0100
3085
+
3086
+ Fixed ContentProcessor test
3087
+
3088
+ test/webgen/test_content_processor.rb
3089
+
3090
+ commit 57c3eb93be0fce0997e4f9f90fd8f0cd25586474
3091
+ Author: Thomas Leitner <t_leitner@gmx.at>
3092
+ Date: Mon Nov 21 17:36:27 2011 +0100
3093
+
3094
+ Updated content processor Blocks
3095
+
3096
+ lib/webgen/content_processor/blocks.rb
3097
+ test/test_contentprocessor_blocks.rb
3098
+ test/webgen/content_processor/test_blocks.rb
3099
+
3100
+ commit 82b9ef14044f5d5fcd96002c71f954aa1b07aebf
3101
+ Author: Thomas Leitner <t_leitner@gmx.at>
3102
+ Date: Mon Nov 21 12:44:25 2011 +0100
3103
+
3104
+ Implemented Webgen::PathHandler::PageUtils module
3105
+
3106
+ This module should be included by all path handlers that need to
3107
+ deal with files in Webgen Page Format.
3108
+
3109
+ lib/webgen/path_handler/page_utils.rb
3110
+ test/webgen/path_handler/test_page_utils.rb
3111
+
3112
+ commit 6623c45d1b841ba6c313a87c30df52839ee098c7
3113
+ Author: Thomas Leitner <t_leitner@gmx.at>
3114
+ Date: Sun Nov 20 19:38:32 2011 +0100
3115
+
3116
+ Updated Webgen::Page class
3117
+
3118
+ * Webgen::Page::Error is now a subclass of the general Webgen::Error
3119
+ class
3120
+ * Some small performance optimizations
3121
+
3122
+ lib/webgen/page.rb
3123
+ test/test_page.rb
3124
+ test/webgen/test_page.rb
3125
+
3126
+ commit 660a9892c4325c9805ddbe43a18c80671076bc4b
3127
+ Author: Thomas Leitner <t_leitner@gmx.at>
3128
+ Date: Fri Nov 18 12:35:58 2011 +0100
3129
+
3130
+ Fixed Tag extension to use config.dup instead of config.clone on frozen configuration
3131
+
3132
+ lib/webgen/tag.rb
3133
+
3134
+ commit c4999a86bc58be8d4bb5e48d173b81fa2d440dfe
3135
+ Author: Thomas Leitner <t_leitner@gmx.at>
3136
+ Date: Fri Nov 18 12:32:27 2011 +0100
3137
+
3138
+ Cloned configuration objects are now also correctly frozen if necessary
3139
+
3140
+ lib/webgen/configuration.rb
3141
+ test/webgen/test_configuration.rb
3142
+
3143
+ commit 406ad473fa94b71fab2d567f718bb5cb2282a60b
3144
+ Author: Thomas Leitner <t_leitner@gmx.at>
3145
+ Date: Fri Nov 18 11:31:27 2011 +0100
3146
+
3147
+ Updated content processor Tags
3148
+
3149
+ lib/webgen/content_processor/tags.rb
3150
+ test/test_contentprocessor_tags.rb
3151
+ test/webgen/content_processor/test_tags.rb
3152
+
3153
+ commit 5d78aaa1df71930501c242d44180abd0152f0471
3154
+ Author: Thomas Leitner <t_leitner@gmx.at>
3155
+ Date: Fri Nov 18 11:27:14 2011 +0100
3156
+
3157
+ Updated Tag extension to allow parsing and replacing of tags in a string
3158
+
3159
+ lib/webgen/tag.rb
3160
+ test/webgen/test_tag.rb
3161
+
3162
+ commit 8cd8a4ba0eeacdeb239773c20505c8da9f939502
3163
+ Author: Thomas Leitner <t_leitner@gmx.at>
3164
+ Date: Fri Nov 18 11:23:16 2011 +0100
3165
+
3166
+ Fixed API documentation after interface change
3167
+
3168
+ lib/webgen/content_processor.rb
3169
+
3170
+ commit fb93b6f0f7206e3eb87a56edc942481bf32e8d1c
3171
+ Author: Thomas Leitner <t_leitner@gmx.at>
3172
+ Date: Mon Nov 14 23:34:32 2011 +0100
3173
+
3174
+ Configuration objects can now be cloned and duped correctly
3175
+
3176
+ lib/webgen/configuration.rb
3177
+ test/webgen/test_configuration.rb
3178
+
3179
+ commit 32f3ad71461ce689ea8622c4fc29d4a9384807c8
3180
+ Author: Thomas Leitner <t_leitner@gmx.at>
3181
+ Date: Mon Nov 14 20:35:51 2011 +0100
3182
+
3183
+ Fixed error when getting an unset config option value (i.e. the default value) from a frozen config
3184
+
3185
+ lib/webgen/configuration.rb
3186
+ test/webgen/test_configuration.rb
3187
+
3188
+ commit 6a2242e284ba442899258f4637da5833b5dfd2c3
3189
+ Author: Thomas Leitner <t_leitner@gmx.at>
3190
+ Date: Sun Nov 6 21:16:27 2011 +0100
3191
+
3192
+ Extraced the functionality of tag parsing into a separate class
3193
+
3194
+ lib/webgen/utils/tag_parser.rb
3195
+ test/webgen/utils/test_tag_parser.rb
3196
+
3197
+ commit 68d1dcc7cd03d2f45352a2b715ca4a6f1deef373
3198
+ Author: Thomas Leitner <t_leitner@gmx.at>
3199
+ Date: Sun Oct 30 20:48:04 2011 +0100
3200
+
3201
+ Updated ExtensionManager#do_register to return the name of the extension
3202
+
3203
+ lib/webgen/common/extension_manager.rb
3204
+
3205
+ commit cb88d6c94895b6d907eac7475894bf8a0765e86b
3206
+ Author: Thomas Leitner <t_leitner@gmx.at>
3207
+ Date: Sun Oct 30 20:40:36 2011 +0100
3208
+
3209
+ Error#location and #path are now attr_accessor
3210
+
3211
+ lib/webgen/error.rb
3212
+
3213
+ commit 5feb651bfba7cbceda9ece17e2bbd2921c5b609b
3214
+ Author: Thomas Leitner <t_leitner@gmx.at>
3215
+ Date: Sun Oct 30 20:38:17 2011 +0100
3216
+
3217
+ Documentation fix
3218
+
3219
+ lib/webgen/tag.rb
3220
+
3221
+ commit 19a8bedd5919e39e1f43142698e6759a3bd590be
3222
+ Author: Thomas Leitner <t_leitner@gmx.at>
3223
+ Date: Sun Oct 30 20:38:01 2011 +0100
3224
+
3225
+ Website initialization updated
3226
+
3227
+ lib/webgen/website.rb
3228
+
3229
+ commit f5638d52e1c5fa1eb9061833f09acc1880684347
3230
+ Author: Thomas Leitner <t_leitner@gmx.at>
3231
+ Date: Sun Oct 30 18:45:50 2011 +0100
3232
+
3233
+ Updated content processor RDoc
3234
+
3235
+ lib/webgen/content_processor/rdoc.rb
3236
+ test/test_contentprocessor_rdoc.rb
3237
+ test/webgen/content_processor/test_rdoc.rb
3238
+
3239
+ commit 69d8892695b77c3273401164d2cc175b6e834034
3240
+ Author: Thomas Leitner <t_leitner@gmx.at>
3241
+ Date: Sun Oct 30 11:51:18 2011 +0100
3242
+
3243
+ Updated content processor Xmllint
3244
+
3245
+ doc/contentprocessor/xmllint.page
3246
+ lib/webgen/content_processor/xmllint.rb
3247
+ test/test_contentprocessor_xmllint.rb
3248
+ test/webgen/content_processor/test_xmllint.rb
3249
+
3250
+ commit e2dafbd69ed3047ff329756631f34bc3e37a838a
3251
+ Author: Thomas Leitner <t_leitner@gmx.at>
3252
+ Date: Sun Oct 30 10:15:55 2011 +0100
3253
+
3254
+ Updated content processor Tidy
3255
+
3256
+ doc/contentprocessor/tidy.page
3257
+ lib/webgen/content_processor/tidy.rb
3258
+ test/test_contentprocessor_tidy.rb
3259
+ test/webgen/content_processor/test_tidy.rb
3260
+
3261
+ commit 13686dcb3b058cd40566f3759bfde62fa545faf9
3262
+ Author: Thomas Leitner <t_leitner@gmx.at>
3263
+ Date: Sun Oct 30 09:52:58 2011 +0100
3264
+
3265
+ Updated content processor Scss
3266
+
3267
+ doc/contentprocessor/scss.page
3268
+ lib/webgen/content_processor/scss.rb
3269
+ test/test_contentprocessor_scss.rb
3270
+ test/webgen/content_processor/test_scss.rb
3271
+
3272
+ commit 1e33e8bc70dabf2173c10193dd5f6466215d86f2
3273
+ Author: Thomas Leitner <t_leitner@gmx.at>
3274
+ Date: Sun Oct 30 09:48:48 2011 +0100
3275
+
3276
+ Updated content processor Sass
3277
+
3278
+ doc/contentprocessor/sass.page
3279
+ lib/webgen/content_processor/sass.rb
3280
+ test/test_contentprocessor_sass.rb
3281
+ test/webgen/content_processor/test_sass.rb
3282
+
3283
+ commit ea5134fb9880cc8a8fd6424657896146d694d0b2
3284
+ Author: Thomas Leitner <t_leitner@gmx.at>
3285
+ Date: Sun Oct 30 09:39:35 2011 +0100
3286
+
3287
+ Updated content processor RedCloth
3288
+
3289
+ lib/webgen/content_processor/redcloth.rb
3290
+ test/test_contentprocessor_redcloth.rb
3291
+ test/webgen/content_processor/test_redcloth.rb
3292
+
3293
+ commit 28128e8e26c622a86487a715eb1a87101ba27c99
3294
+ Author: Thomas Leitner <t_leitner@gmx.at>
3295
+ Date: Sun Oct 30 09:39:10 2011 +0100
3296
+
3297
+ Fixed naming of Erubis option names
3298
+
3299
+ lib/webgen/content_processor/erubis.rb
3300
+ test/webgen/content_processor/test_erubis.rb
3301
+
3302
+ commit 2a6f962a0e3a9fec0e41e793db17384fa57f87eb
3303
+ Author: Thomas Leitner <t_leitner@gmx.at>
3304
+ Date: Sun Oct 30 09:30:49 2011 +0100
3305
+
3306
+ Updated content processor RDiscount
3307
+
3308
+ lib/webgen/content_processor/rdiscount.rb
3309
+ test/test_contentprocessor_rdiscount.rb
3310
+ test/webgen/content_processor/test_rdiscount.rb
3311
+
3312
+ commit 2d7c2bc81a7ce2e1d35c0d2d2aed31f73826fa75
3313
+ Author: Thomas Leitner <t_leitner@gmx.at>
3314
+ Date: Sun Oct 30 09:27:59 2011 +0100
3315
+
3316
+ Updated content processor Maruku
3317
+
3318
+ lib/webgen/content_processor/maruku.rb
3319
+ test/test_contentprocessor_maruku.rb
3320
+ test/webgen/content_processor/test_maruku.rb
3321
+
3322
+ commit e53714be51ba6e1560836c1a161416ae2a2c47e8
3323
+ Author: Thomas Leitner <t_leitner@gmx.at>
3324
+ Date: Sun Oct 30 09:13:19 2011 +0100
3325
+
3326
+ Removed content processor less
3327
+
3328
+ doc/contentprocessor/less.page
3329
+ doc/extensions.page
3330
+ lib/webgen/content_processor/less.rb
3331
+ test/test_contentprocessor_less.rb
3332
+
3333
+ commit cb911e5704f17c3b6b2849cee3d854acf6717f10
3334
+ Author: Thomas Leitner <t_leitner@gmx.at>
3335
+ Date: Sun Oct 30 09:01:16 2011 +0100
3336
+
3337
+ Updated content processor Haml
3338
+
3339
+ lib/webgen/content_processor/haml.rb
3340
+ test/test_contentprocessor_haml.rb
3341
+ test/webgen/content_processor/test_haml.rb
3342
+
3343
+ commit cea58cd9e4492504ccf4a347ffa7e14a95e42e34
3344
+ Author: Thomas Leitner <t_leitner@gmx.at>
3345
+ Date: Sun Oct 30 08:55:51 2011 +0100
3346
+
3347
+ Extracted common test initialization code to helper method
3348
+
3349
+ test/helper.rb
3350
+ test/webgen/content_processor/test_builder.rb
3351
+ test/webgen/content_processor/test_erb.rb
3352
+ test/webgen/content_processor/test_erubis.rb
3353
+
3354
+ commit ff5e230b5d60c962872a0a7258fc7922f2aa0b34
3355
+ Author: Thomas Leitner <t_leitner@gmx.at>
3356
+ Date: Sat Oct 29 23:25:46 2011 +0200
3357
+
3358
+ Updated content processor Erubis
3359
+
3360
+ doc/contentprocessor/erubis.page
3361
+ lib/webgen/content_processor/erubis.rb
3362
+ test/test_contentprocessor_erubis.rb
3363
+ test/webgen/content_processor/test_erubis.rb
3364
+
3365
+ commit bab6221eb9fecc8dde513678a145446fe3470664
3366
+ Author: Thomas Leitner <t_leitner@gmx.at>
3367
+ Date: Sat Oct 29 21:06:55 2011 +0200
3368
+
3369
+ Updated content processor Erb
3370
+
3371
+ lib/webgen/content_processor/erb.rb
3372
+ test/test_contentprocessor_erb.rb
3373
+ test/webgen/content_processor/test_erb.rb
3374
+
3375
+ commit 7501f0e054a03e89526d30f53b2adfb13ea7cfdc
3376
+ Author: Thomas Leitner <t_leitner@gmx.at>
3377
+ Date: Sat Oct 29 19:42:41 2011 +0200
3378
+
3379
+ Updated content processor Builder
3380
+
3381
+ lib/webgen/content_processor/builder.rb
3382
+ test/test_contentprocessor_builder.rb
3383
+ test/webgen/content_processor/test_builder.rb
3384
+
3385
+ commit e30dce034050b1a3abed68c77ec48ff3adc5617a
3386
+ Author: Thomas Leitner <t_leitner@gmx.at>
3387
+ Date: Sat Oct 29 19:50:19 2011 +0200
3388
+
3389
+ Updated test helper
3390
+
3391
+ test/helper.rb
3392
+
3393
+ commit 18fd87d83ed4a1852fdd0a81b2ea1b481f17ca34
3394
+ Author: Thomas Leitner <t_leitner@gmx.at>
3395
+ Date: Sat Oct 29 12:36:58 2011 +0200
3396
+
3397
+ Removed Webgen::Common::Callable since it is not needed
3398
+
3399
+ lib/webgen/common.rb
3400
+ lib/webgen/common/extension_manager.rb
3401
+ lib/webgen/content_processor.rb
3402
+
3403
+ commit 1325ce0a53f9c544d10105fb0932d6415397e4cc
3404
+ Author: Thomas Leitner <t_leitner@gmx.at>
3405
+ Date: Mon May 30 21:50:03 2011 +0200
3406
+
3407
+ Removed static configuration object
3408
+
3409
+ lib/webgen/configuration.rb
3410
+ test/webgen/test_configuration.rb
3411
+
3412
+ commit 65a68b7057c813e7d32107bbac5ded89bfaf9d32
3413
+ Author: Thomas Leitner <t_leitner@gmx.at>
3414
+ Date: Wed May 18 20:39:57 2011 +0200
3415
+
3416
+ Removed unnecessary documentation
3417
+
3418
+ lib/webgen/content_processor.rb
3419
+ lib/webgen/destination.rb
3420
+ lib/webgen/item_tracker.rb
3421
+ lib/webgen/source.rb
3422
+ lib/webgen/tag.rb
3423
+
3424
+ commit 3f5ffc540d9c64166b9296e2e154f31d451f6662
3425
+ Author: Thomas Leitner <t_leitner@gmx.at>
3426
+ Date: Sun May 15 22:43:14 2011 +0200
3427
+
3428
+ Updated some parts of the main Website class and added a basic extensions file
3429
+
3430
+ lib/webgen/extensions.rb
3431
+ lib/webgen/website.rb
3432
+
3433
+ commit 0d898a6c214875e9c07064add8ecad627bd117d9
3434
+ Author: Thomas Leitner <t_leitner@gmx.at>
3435
+ Date: Sun May 15 22:06:33 2011 +0200
3436
+
3437
+ Changed method name Configuration::Option#desc to #description
3438
+
3439
+ lib/webgen/configuration.rb
3440
+ test/webgen/test_configuration.rb
3441
+
3442
+ commit c70c9962a01a32278c96c29664eb9e814e41b95a
3443
+ Author: Thomas Leitner <t_leitner@gmx.at>
3444
+ Date: Sun May 15 19:14:13 2011 +0200
3445
+
3446
+ Using File.absolute_path instead of custom solution
3447
+
3448
+ lib/webgen/destination/file_system.rb
3449
+ lib/webgen/source/file_system.rb
3450
+ test/webgen/source/test_file_system.rb
3451
+
3452
+ commit a741657956c59833728446846bc2202c79d3bce2
3453
+ Author: Thomas Leitner <t_leitner@gmx.at>
3454
+ Date: Sun May 15 18:47:41 2011 +0200
3455
+
3456
+ Updated ExtensionManager and associated classes
3457
+
3458
+ * There is no website accessor anymore on the ExtensionManager class. If
3459
+ an extension manager needs the website object, it has to handle it
3460
+ itself.
3461
+
3462
+ * No static extension manager classes anymore. Extensions shipped with
3463
+ webgen will behave exactly the same as all other extensions.
3464
+ Registration of extensions will be done in a special, still to be
3465
+ created file.
3466
+
3467
+ lib/webgen/common/extension_manager.rb
3468
+ lib/webgen/content_processor.rb
3469
+ lib/webgen/destination.rb
3470
+ lib/webgen/item_tracker.rb
3471
+ lib/webgen/node_finder.rb
3472
+ lib/webgen/source.rb
3473
+ lib/webgen/tag.rb
3474
+ test/webgen/common/test_extension_manager.rb
3475
+ test/webgen/test_destination.rb
3476
+ test/webgen/test_item_tracker.rb
3477
+ test/webgen/test_node_finder.rb
3478
+ test/webgen/test_source.rb
3479
+
3480
+ commit d015f04f59ece7b0746688625b4b1ca34f8243d7
3481
+ Author: Thomas Leitner <t_leitner@gmx.at>
3482
+ Date: Sun May 15 18:26:54 2011 +0200
3483
+
3484
+ Moved knowledge of default website directory to CLI
3485
+
3486
+ The Website class should not know about the defaults, it should just
3487
+ accept a website directory. The CLI is the better place to keep this
3488
+ knowledge.
3489
+
3490
+ lib/webgen/cli.rb
3491
+
3492
+ commit f06102dbcc53e09beab490c210d37163e5fab5de
3493
+ Author: Thomas Leitner <t_leitner@gmx.at>
3494
+ Date: Sun May 15 11:50:30 2011 +0200
3495
+
3496
+ Fixed Configuration#load_from_file comment
3497
+
3498
+ lib/webgen/configuration.rb
3499
+
3500
+ commit ebbdcffaf1d51abdd14912d821d54e3b220e0db2
3501
+ Author: Thomas Leitner <t_leitner@gmx.at>
3502
+ Date: Sat May 14 17:17:37 2011 +0200
3503
+
3504
+ Updated Cache class
3505
+
3506
+ lib/webgen/cache.rb
3507
+ test/test_cache.rb
3508
+ test/webgen/test_cache.rb
3509
+
3510
+ commit 8c35dee6be6a84955f98ee6f06a138e57bad402d
3511
+ Author: Thomas Leitner <t_leitner@gmx.at>
3512
+ Date: Sun Mar 6 12:41:25 2011 +0100
3513
+
3514
+ Updated class Source and source classes
3515
+
3516
+ * Source classes now have to take the website object as first argument
3517
+ in the initialize method
3518
+ * Source::FileSystem and Source::TarArchive updated
3519
+ * Removed Source::Passive and moved the functionality directly into the
3520
+ class Source
3521
+
3522
+ lib/webgen/source.rb
3523
+ lib/webgen/source/file_system.rb
3524
+ lib/webgen/source/filesystem.rb
3525
+ lib/webgen/source/passive.rb
3526
+ lib/webgen/source/stacked.rb
3527
+ lib/webgen/source/tar_archive.rb
3528
+ lib/webgen/source/tararchive.rb
3529
+ test/test_source_filesystem.rb
3530
+ test/test_source_tararchive.rb
3531
+ test/webgen/source/test_file_system.rb
3532
+ test/webgen/source/test_passive.rb
3533
+ test/webgen/source/test_stacked.rb
3534
+ test/webgen/source/test_tar_archive.rb
3535
+ test/webgen/test_source.rb
3536
+
3537
+ commit 6619dcb8d49e8c4a8b9aa77fa976853b7a913b63
3538
+ Author: Thomas Leitner <t_leitner@gmx.at>
3539
+ Date: Wed Mar 2 15:32:01 2011 +0100
3540
+
3541
+ Use a high enough constant instead of Float::INFINITY
3542
+
3543
+ lib/webgen/node_finder.rb
3544
+
3545
+ commit 497feca4a1f5e26154d77e41bbeff4fc01b9638d
3546
+ Author: Thomas Leitner <t_leitner@gmx.at>
3547
+ Date: Wed Mar 2 15:31:27 2011 +0100
3548
+
3549
+ Update Source::Passive and associated tests to conform to new Path interface
3550
+
3551
+ lib/webgen/source/passive.rb
3552
+ test/webgen/source/test_passive.rb
3553
+ test/webgen/test_source.rb
3554
+
3555
+ commit 956c6259f2156060ae4628e8cf0327f55e45dc8a
3556
+ Author: Thomas Leitner <t_leitner@gmx.at>
3557
+ Date: Wed Mar 2 15:09:02 2011 +0100
3558
+
3559
+ Updated Path class
3560
+
3561
+ * Some small changes in the interface
3562
+ * Implemented delayed analysation of path string
3563
+ * Moved all common path modification methods to Path from Common
3564
+
3565
+ lib/webgen/common.rb
3566
+ lib/webgen/node.rb
3567
+ lib/webgen/node_finder.rb
3568
+ lib/webgen/path.rb
3569
+ test/test_path.rb
3570
+ test/webgen/test_common.rb
3571
+ test/webgen/test_path.rb
3572
+
3573
+ commit 318e953b89d5bd104d3a0a0848e9b118d5dcfd1b
3574
+ Author: Thomas Leitner <t_leitner@gmx.at>
3575
+ Date: Thu Feb 24 09:46:35 2011 +0100
3576
+
3577
+ Small fix for Node class
3578
+
3579
+ Node#proxy_node didn't use Node#[] for getting meta information.
3580
+
3581
+ lib/webgen/node.rb
3582
+ test/webgen/test_node.rb
3583
+
3584
+ commit a3c9d9eb1aff44428dadcaabe3e74913696329a3
3585
+ Author: Thomas Leitner <t_leitner@gmx.at>
3586
+ Date: Wed Feb 23 21:44:09 2011 +0100
3587
+
3588
+ Finished node finder API for now
3589
+
3590
+ Added missing filters and sorting mechanism
3591
+
3592
+ lib/webgen/node_finder.rb
3593
+ test/webgen/test_node_finder.rb
3594
+
3595
+ commit 177cf3706052cda3a76ed8c646ad0d6a8dedc0c6
3596
+ Author: Thomas Leitner <t_leitner@gmx.at>
3597
+ Date: Fri Feb 4 14:36:03 2011 +0100
3598
+
3599
+ Added node finder API
3600
+
3601
+ Some parts are still missing but the basic framework is now
3602
+ in place.
3603
+
3604
+ lib/webgen/node_finder.rb
3605
+ test/webgen/test_node_finder.rb
3606
+
3607
+ commit 1b04cef6b20dc56b9f7b35bbcbba801a215a35e2
3608
+ Author: Thomas Leitner <t_leitner@gmx.at>
3609
+ Date: Wed Feb 2 08:28:11 2011 +0100
3610
+
3611
+ Extracted common functionality from Node to Common module
3612
+
3613
+ * Node.url is now Common.url
3614
+ * The part of Node#resolve that appended a path to another is now
3615
+ Common.append_path.
3616
+
3617
+ lib/webgen/common.rb
3618
+ lib/webgen/node.rb
3619
+ test/webgen/test_common.rb
3620
+ test/webgen/test_node.rb
3621
+
3622
+ commit 25f12a3311652a55ebc728cf4b378670c62015a1
3623
+ Author: Thomas Leitner <t_leitner@gmx.at>
3624
+ Date: Thu Dec 30 22:10:54 2010 +0100
3625
+
3626
+ Updated Node and Tree classes
3627
+
3628
+ * Node: removed now unneeded dependency tracking code
3629
+ * Node: removed flagging and sorting code
3630
+ * Node#routing_node is now called Node#proxy_node and works for all
3631
+ nodes, not just directories
3632
+ * Node: removed preliminary finder related code
3633
+ * Node#resolve now uses dest_path as last resort
3634
+ * Tree: removed #delete_node since it is not needed anymore
3635
+
3636
+ lib/webgen/node.rb
3637
+ lib/webgen/tree.rb
3638
+ test/test_node.rb
3639
+ test/test_tree.rb
3640
+ test/webgen/test_node.rb
3641
+ test/webgen/test_tree.rb
3642
+
3643
+ commit cab6a9e62bc07b483a3462912980433d2008fe96
3644
+ Author: Thomas Leitner <t_leitner@gmx.at>
3645
+ Date: Thu Dec 30 21:10:14 2010 +0100
3646
+
3647
+ Fixed some spelling errors
3648
+
3649
+ data/webgen/website_bundles/default/README
3650
+ doc/faq.page
3651
+ doc/getting_started.page
3652
+ doc/manual.page
3653
+ lib/webgen/cli/utils.rb
3654
+ lib/webgen/destination.rb
3655
+ lib/webgen/website.rb
3656
+ website/src/features.page
3657
+ website/src/news/release_0_5_7.page
3658
+ website/src/news/release_0_5_8.page
3659
+ website/src/news/release_0_5_9.page
3660
+
3661
+ commit 39d929c2b29a35e28c3813c43a17b1dcb2cd9106
3662
+ Author: Thomas Leitner <t_leitner@gmx.at>
3663
+ Date: Sun Dec 19 11:51:13 2010 +0100
3664
+
3665
+ Implemented the item tracker extension manager
3666
+
3667
+ The ItemTracker extension manager is used to add items as dependencies
3668
+ to a node and to check if a node or one of the items it depends on has
3669
+ changed. Each managed extension is responsible for tracking a certain
3670
+ item.
3671
+
3672
+ Currently, there are two item tracker extensions: one for tracking the
3673
+ content of a node and one for tracking the meta information (either the
3674
+ whole meta info hash or only a specific key) of a node.
3675
+
3676
+ lib/webgen/item_tracker.rb
3677
+ lib/webgen/item_tracker/node_content.rb
3678
+ lib/webgen/item_tracker/node_meta_info.rb
3679
+ test/webgen/item_tracker/test_node_content.rb
3680
+ test/webgen/item_tracker/test_node_meta_info.rb
3681
+ test/webgen/test_item_tracker.rb
3682
+
3683
+ commit 1b49ed4c9206ad03dc77db0a1903555769cbb7a0
3684
+ Author: Thomas Leitner <t_leitner@gmx.at>
3685
+ Date: Fri Dec 17 12:33:38 2010 +0100
3686
+
3687
+ Extension names are now Symbols instead of Strings
3688
+
3689
+ lib/webgen/common/extension_manager.rb
3690
+ lib/webgen/content_processor.rb
3691
+ lib/webgen/tag.rb
3692
+ test/webgen/common/test_extension_manager.rb
3693
+ test/webgen/test_tag.rb
3694
+
3695
+ commit a87b54a97087db72bba059291bab1b2e1aba0c5c
3696
+ Author: Thomas Leitner <t_leitner@gmx.at>
3697
+ Date: Fri Dec 17 12:17:31 2010 +0100
3698
+
3699
+ Fixed bug in API code examples
3700
+
3701
+ lib/webgen/content_processor.rb
3702
+ lib/webgen/destination.rb
3703
+ lib/webgen/source.rb
3704
+ lib/webgen/tag.rb
3705
+
3706
+ commit 23815f2565618ae25616adc3a8307dd3c3ecf571
3707
+ Author: Thomas Leitner <t_leitner@gmx.at>
3708
+ Date: Fri Dec 17 11:51:16 2010 +0100
3709
+
3710
+ Update Blackboard
3711
+
3712
+ Removing a listener is now done via a unique id that can be set
3713
+ on creation. Avoids having to use a method(...) when there is the
3714
+ need to remove a listener.
3715
+
3716
+ lib/webgen/blackboard.rb
3717
+ test/webgen/test_blackboard.rb
3718
+
3719
+ commit 4bd6114d7b565bb6e542aebc20bad360fe14cb97
3720
+ Author: Thomas Leitner <t_leitner@gmx.at>
3721
+ Date: Thu Dec 9 16:50:57 2010 +0100
3722
+
3723
+ Updated Configuration object to be freezable
3724
+
3725
+ lib/webgen/configuration.rb
3726
+ test/webgen/test_configuration.rb
3727
+
3728
+ commit dfeb0a381362e0ab9795d765ec243e7dc900280e
3729
+ Author: Thomas Leitner <t_leitner@gmx.at>
3730
+ Date: Thu Dec 9 16:24:34 2010 +0100
3731
+
3732
+ Renamed option sources.ignore to sources.ignore_paths
3733
+
3734
+ lib/webgen/source.rb
3735
+ test/webgen/test_source.rb
3736
+
3737
+ commit ea3b4cd3272c8b7fb18e8ffa5675ac80943c31f0
3738
+ Author: Thomas Leitner <t_leitner@gmx.at>
3739
+ Date: Fri Dec 3 16:24:41 2010 +0100
3740
+
3741
+ Update Context object to be extendable
3742
+
3743
+ Context objects can now easily be extended by writing a module
3744
+ and adding the module to the website.ext.context_modules array. All
3745
+ list modules are used to automatically extend created context objects.
3746
+
3747
+ lib/webgen/context.rb
3748
+ test/webgen/test_context.rb
3749
+ test/webgen/test_tag.rb
3750
+
3751
+ commit 0ed3a9bcd1b5a8cceb80f8a643919d0c3eae2662
3752
+ Author: Thomas Leitner <t_leitner@gmx.at>
3753
+ Date: Fri Dec 3 11:41:20 2010 +0100
3754
+
3755
+ Moved Common#error_file to Error.error_file and fixed reporting of error path when RenderError is used
3756
+
3757
+ lib/webgen/common.rb
3758
+ lib/webgen/content_processor.rb
3759
+ lib/webgen/content_processor/haml.rb
3760
+ lib/webgen/content_processor/sass.rb
3761
+ lib/webgen/content_processor/scss.rb
3762
+ lib/webgen/error.rb
3763
+ lib/webgen/tag.rb
3764
+ test/webgen/test_error.rb
3765
+
3766
+ commit d4d9c29784839ba290eabc181b5a5701947f8a17
3767
+ Author: Thomas Leitner <t_leitner@gmx.at>
3768
+ Date: Thu Dec 2 16:33:49 2010 +0100
3769
+
3770
+ Removed now unneeded WebsiteAccesss module
3771
+
3772
+ lib/webgen/websiteaccess.rb
3773
+
3774
+ commit 17484481c528636dd7685198a16afcadf82ad1b7
3775
+ Author: Thomas Leitner <t_leitner@gmx.at>
3776
+ Date: Thu Dec 2 16:33:19 2010 +0100
3777
+
3778
+ Updated Webgen::Source
3779
+
3780
+ * Webgen::Source is now a class instead of a module and works like
3781
+ Webgen::ContentProcessor.
3782
+
3783
+ * Added a new Passive source for marking paths as passive
3784
+
3785
+ lib/webgen/source.rb
3786
+ lib/webgen/source/filesystem.rb
3787
+ lib/webgen/source/passive.rb
3788
+ lib/webgen/source/resource.rb
3789
+ lib/webgen/source/stacked.rb
3790
+ lib/webgen/source/tararchive.rb
3791
+ test/test_source_stacked.rb
3792
+ test/webgen/source/test_passive.rb
3793
+ test/webgen/source/test_stacked.rb
3794
+ test/webgen/test_source.rb
3795
+
3796
+ commit 482502241ce77cf98820c1832066632f77a1bd87
3797
+ Author: Thomas Leitner <t_leitner@gmx.at>
3798
+ Date: Thu Dec 2 10:03:01 2010 +0100
3799
+
3800
+ Small API doc fix
3801
+
3802
+ lib/webgen/destination.rb
3803
+ lib/webgen/tag.rb
3804
+
3805
+ commit a2a784e14f3c229a3116e8fe6244a212bbb6fa9a
3806
+ Author: Thomas Leitner <t_leitner@gmx.at>
3807
+ Date: Tue Nov 30 09:20:09 2010 +0100
3808
+
3809
+ Fixed problem with autoloading of extension classes
3810
+
3811
+ lib/webgen/common/extension_manager.rb
3812
+
3813
+ commit 854f1a74f696f4eecfbdcdfb2a85e6d68b612f48
3814
+ Author: Thomas Leitner <t_leitner@gmx.at>
3815
+ Date: Tue Nov 30 08:36:37 2010 +0100
3816
+
3817
+ An error is now raised when trying to access an unknown extension
3818
+
3819
+ lib/webgen/common/extension_manager.rb
3820
+ lib/webgen/content_processor.rb
3821
+ lib/webgen/destination.rb
3822
+ test/webgen/common/test_extension_manager.rb
3823
+
3824
+ commit d033201e8bf6b4c70014a649235121600bfce626
3825
+ Author: Thomas Leitner <t_leitner@gmx.at>
3826
+ Date: Mon Nov 29 09:37:06 2010 +0100
3827
+
3828
+ Updated API documentation
3829
+
3830
+ lib/webgen/content_processor.rb
3831
+ lib/webgen/destination.rb
3832
+ lib/webgen/tag.rb
3833
+
3834
+ commit 78d7f267e101d03fa8bbd94e4300833b2c17e01a
3835
+ Author: Thomas Leitner <t_leitner@gmx.at>
3836
+ Date: Mon Nov 29 09:34:52 2010 +0100
3837
+
3838
+ Extracted common code for #register into ExtensionManager
3839
+
3840
+ lib/webgen/common/extension_manager.rb
3841
+ lib/webgen/content_processor.rb
3842
+ lib/webgen/destination.rb
3843
+ test/webgen/common/test_extension_manager.rb
3844
+
3845
+ commit c02facdd0766f0800bc8de7964b891369d7fb3c7
3846
+ Author: Thomas Leitner <t_leitner@gmx.at>
3847
+ Date: Mon Nov 29 09:06:08 2010 +0100
3848
+
3849
+ Extracted common class constantiation method into ExtensionsManager
3850
+
3851
+ The ContentProcessor, Tag and Destination classes used the same or
3852
+ similar bits of code. This code is now part of the ExtensionManager
3853
+ class for use by all extension managers.
3854
+
3855
+ lib/webgen/common/extension_manager.rb
3856
+ lib/webgen/content_processor.rb
3857
+ lib/webgen/destination.rb
3858
+ lib/webgen/tag.rb
3859
+ test/webgen/common/test_extension_manager.rb
3860
+
3861
+ commit 74cdec5503eb4a2f79d7f963dbf04c37de7aeec0
3862
+ Author: Thomas Leitner <t_leitner@gmx.at>
3863
+ Date: Mon Nov 22 18:40:18 2010 +0100
3864
+
3865
+ Updated destination manager class
3866
+
3867
+ Renamed from output to destination and remodeled like other extension
3868
+ manager classes.
3869
+
3870
+ lib/webgen/destination.rb
3871
+ lib/webgen/destination/file_system.rb
3872
+ lib/webgen/output.rb
3873
+ lib/webgen/output/filesystem.rb
3874
+ test/webgen/test_destination.rb
3875
+
3876
+ commit 8524c54211aa8bf3c1960e5277c11af452d50b56
3877
+ Author: Thomas Leitner <t_leitner@gmx.at>
3878
+ Date: Mon Nov 22 18:37:55 2010 +0100
3879
+
3880
+ Fixed failing tests
3881
+
3882
+ test/webgen/test_content_processor.rb
3883
+ test/webgen/test_tag.rb
3884
+
3885
+ commit 7a542704c8c6f7a1d78f7d4c6c5d5414206e63a4
3886
+ Author: Thomas Leitner <t_leitner@gmx.at>
3887
+ Date: Mon Nov 22 18:29:25 2010 +0100
3888
+
3889
+ Fixed Common.snake_case and added test for it
3890
+
3891
+ lib/webgen/common.rb
3892
+ test/webgen/test_common.rb
3893
+
3894
+ commit 54bfb22b71031bc0040e3cfc7daf331a46fd9404
3895
+ Author: Thomas Leitner <t_leitner@gmx.at>
3896
+ Date: Mon Nov 22 11:13:42 2010 +0100
3897
+
3898
+ Refactored code used in classes that use the ExtensionManager module
3899
+
3900
+ lib/webgen/common.rb
3901
+ lib/webgen/common/extension_manager.rb
3902
+ lib/webgen/content_processor.rb
3903
+ lib/webgen/tag.rb
3904
+ test/webgen/common/test_extension_manager.rb
3905
+
3906
+ commit e0c0f8bad96657df8b2f7fcc640f63e3b2b5bbe3
3907
+ Author: Thomas Leitner <t_leitner@gmx.at>
3908
+ Date: Sun Nov 21 16:05:36 2010 +0100
3909
+
3910
+ Extracted common functionality of ContentProcessor and Tag
3911
+
3912
+ Created a new module Webgen::Common::ExtensionManager that provides
3913
+ common methods for extension manager classes like the Tag or
3914
+ ContentProcessor classes.
3915
+
3916
+ lib/webgen/common.rb
3917
+ lib/webgen/common/extension_manager.rb
3918
+ lib/webgen/content_processor.rb
3919
+ lib/webgen/tag.rb
3920
+ test/webgen/common/test_extension_manager.rb
3921
+ test/webgen/test_content_processor.rb
3922
+ test/webgen/test_tag.rb
3923
+
3924
+ commit 6fde9e75918cd88e1722ef77e6f884a4567ad6f4
3925
+ Author: Thomas Leitner <t_leitner@gmx.at>
3926
+ Date: Fri Nov 19 10:51:48 2010 +0100
3927
+
3928
+ Fixed syntax problems
3929
+
3930
+ lib/webgen/content_processor/tags.rb
3931
+ test/webgen/test_content_processor.rb
3932
+ test/webgen/test_coreext.rb
3933
+
3934
+ commit 59e35d8d58377057ad11c9a85108ac235467eff8
3935
+ Author: Thomas Leitner <t_leitner@gmx.at>
3936
+ Date: Thu Nov 18 20:48:02 2010 +0100
3937
+
3938
+ Remodeled Webgen::Tag in the spirit of Webgen::ContentProcessor
3939
+
3940
+ * Webgen::Tag is now a class instead of a module and provides a static
3941
+ object for webgen's own tags. This static object is cloned for each
3942
+ website and can be adapted to the website's needs.
3943
+
3944
+ * There is no Webgen::Tag::Base module anymore, all its methods have
3945
+ been put into the Webgen::Tag class.
3946
+
3947
+ * Tag options are now handled like all other options. The mandatory
3948
+ options are now specified directly when registering a new tag and
3949
+ not via special meta information when defining the option.
3950
+
3951
+ lib/webgen/tag.rb
3952
+ lib/webgen/tag/base.rb
3953
+ test/test_tag_base.rb
3954
+ test/webgen/test_tag.rb
3955
+
3956
+ commit 3edb743408334cb68bbba74ba5d37c8c630ca6ea
3957
+ Author: Thomas Leitner <t_leitner@gmx.at>
3958
+ Date: Thu Nov 18 20:37:23 2010 +0100
3959
+
3960
+ Updated Webgen::ContentProcessor
3961
+
3962
+ It is now a class instead of a module so that it can be cloned for each
3963
+ website instance and then further adapted to the website's need.
3964
+
3965
+ lib/webgen/common.rb
3966
+ lib/webgen/content_processor.rb
3967
+ lib/webgen/content_processor/blocks.rb
3968
+ lib/webgen/content_processor/builder.rb
3969
+ lib/webgen/content_processor/erb.rb
3970
+ lib/webgen/content_processor/erubis.rb
3971
+ lib/webgen/content_processor/fragments.rb
3972
+ lib/webgen/content_processor/haml.rb
3973
+ lib/webgen/content_processor/head.rb
3974
+ lib/webgen/content_processor/kramdown.rb
3975
+ lib/webgen/content_processor/kramdown/html.rb
3976
+ lib/webgen/content_processor/less.rb
3977
+ lib/webgen/content_processor/maruku.rb
3978
+ lib/webgen/content_processor/rdiscount.rb
3979
+ lib/webgen/content_processor/rdoc.rb
3980
+ lib/webgen/content_processor/redcloth.rb
3981
+ lib/webgen/content_processor/sass.rb
3982
+ lib/webgen/content_processor/scss.rb
3983
+ lib/webgen/content_processor/tags.rb
3984
+ lib/webgen/content_processor/tidy.rb
3985
+ lib/webgen/content_processor/xmllint.rb
3986
+ test/webgen/test_content_processor.rb
3987
+
3988
+ commit cb52cad16cf2365ee01512e080d0f1380d131346
3989
+ Author: Thomas Leitner <t_leitner@gmx.at>
3990
+ Date: Thu Nov 18 20:33:54 2010 +0100
3991
+
3992
+ Updated Webgen::Configuration
3993
+
3994
+ * added method for checking if a given option exists
3995
+ * cloning of configuration object now works correctly
3996
+
3997
+ lib/webgen/configuration.rb
3998
+ test/webgen/test_configuration.rb
3999
+
4000
+ commit ba240be1946135dd8503ae82d40abe1589d95fda
4001
+ Author: Thomas Leitner <t_leitner@gmx.at>
4002
+ Date: Thu Nov 18 20:32:47 2010 +0100
4003
+
4004
+ Updated Webgen::Context
4005
+
4006
+ * Renamed files to comply with file naming rules
4007
+ * website object must now be provided on initialization
4008
+
4009
+ lib/webgen/context.rb
4010
+ lib/webgen/context/nodes.rb
4011
+ lib/webgen/context/render.rb
4012
+ lib/webgen/context/rendering.rb
4013
+ lib/webgen/context/tags.rb
4014
+ lib/webgen/context/webgen_tags.rb
4015
+ test/test_context.rb
4016
+ test/webgen/test_context.rb
4017
+
4018
+ commit 7986d5d0d79b60fc91a581b26b1b8a7da6530623
4019
+ Author: Thomas Leitner <t_leitner@gmx.at>
4020
+ Date: Sun Nov 14 07:41:03 2010 +0100
4021
+
4022
+ Updated blackboard
4023
+
4024
+ Removed the functionality for specifying services because it should not
4025
+ be needed for well written code.
4026
+
4027
+ lib/webgen/blackboard.rb
4028
+ test/test_blackboard.rb
4029
+ test/webgen/test_blackboard.rb
4030
+
4031
+ commit 0622ed6f5a15413ba857459b044185b4fee7109c
4032
+ Author: Thomas Leitner <t_leitner@gmx.at>
4033
+ Date: Sun Nov 14 06:51:30 2010 +0100
4034
+
4035
+ Updated logging facility
4036
+
4037
+ * Moved from using custom class to stdlib logger
4038
+ * More independent from rest
4039
+ * No Loggable module anymore, logger is now directly used
4040
+
4041
+ lib/webgen/cli/logger.rb
4042
+ lib/webgen/cli/utils.rb
4043
+ lib/webgen/loggable.rb
4044
+ lib/webgen/logger.rb
4045
+ test/test_logger.rb
4046
+ test/webgen/cli/test_logger.rb
4047
+
4048
+ commit 5987de17fc0ebdb21f96eeb901dd0e83dc080281
4049
+ Author: Thomas Leitner <t_leitner@gmx.at>
4050
+ Date: Fri Nov 12 10:56:58 2010 +0100
4051
+
4052
+ Updated content processors
4053
+
4054
+ * Explicitly requiring webgen/content_processor for standalone use
4055
+ * Using webgen_require instead of require for loading external libs
4056
+ * Rescuing general Exceptions is not necessary anymore
4057
+
4058
+ lib/webgen/content_processor.rb
4059
+ lib/webgen/content_processor/blocks.rb
4060
+ lib/webgen/content_processor/builder.rb
4061
+ lib/webgen/content_processor/erb.rb
4062
+ lib/webgen/content_processor/erubis.rb
4063
+ lib/webgen/content_processor/fragments.rb
4064
+ lib/webgen/content_processor/haml.rb
4065
+ lib/webgen/content_processor/head.rb
4066
+ lib/webgen/content_processor/kramdown.rb
4067
+ lib/webgen/content_processor/less.rb
4068
+ lib/webgen/content_processor/maruku.rb
4069
+ lib/webgen/content_processor/rdiscount.rb
4070
+ lib/webgen/content_processor/rdoc.rb
4071
+ lib/webgen/content_processor/redcloth.rb
4072
+ lib/webgen/content_processor/sass.rb
4073
+ lib/webgen/content_processor/scss.rb
4074
+ lib/webgen/content_processor/tags.rb
4075
+ lib/webgen/content_processor/tidy.rb
4076
+ lib/webgen/content_processor/xmllint.rb
4077
+
4078
+ commit f3c8ed04ffa69befaf5e48e10ddfefafc1f8549e
4079
+ Author: Thomas Leitner <t_leitner@gmx.at>
4080
+ Date: Fri Nov 12 10:45:59 2010 +0100
4081
+
4082
+ Updated ContentProcessor.call to handle exceptions
4083
+
4084
+ lib/webgen/content_processor.rb
4085
+ test/webgen/test_content_processor.rb
4086
+
4087
+ commit 56c0a160fd3f4696aefbf5018256476371d1b9cf
4088
+ Author: Thomas Leitner <t_leitner@gmx.at>
4089
+ Date: Thu Nov 11 20:14:07 2010 +0100
4090
+
4091
+ Renamed files from contentprocessor to content_processor
4092
+
4093
+ lib/webgen/content_processor.rb
4094
+ lib/webgen/content_processor/blocks.rb
4095
+ lib/webgen/content_processor/builder.rb
4096
+ lib/webgen/content_processor/erb.rb
4097
+ lib/webgen/content_processor/erubis.rb
4098
+ lib/webgen/content_processor/fragments.rb
4099
+ lib/webgen/content_processor/haml.rb
4100
+ lib/webgen/content_processor/head.rb
4101
+ lib/webgen/content_processor/kramdown.rb
4102
+ lib/webgen/content_processor/kramdown/html.rb
4103
+ lib/webgen/content_processor/less.rb
4104
+ lib/webgen/content_processor/maruku.rb
4105
+ lib/webgen/content_processor/rdiscount.rb
4106
+ lib/webgen/content_processor/rdoc.rb
4107
+ lib/webgen/content_processor/redcloth.rb
4108
+ lib/webgen/content_processor/sass.rb
4109
+ lib/webgen/content_processor/scss.rb
4110
+ lib/webgen/content_processor/tags.rb
4111
+ lib/webgen/content_processor/tidy.rb
4112
+ lib/webgen/content_processor/xmllint.rb
4113
+ lib/webgen/contentprocessor.rb
4114
+ lib/webgen/contentprocessor/blocks.rb
4115
+ lib/webgen/contentprocessor/builder.rb
4116
+ lib/webgen/contentprocessor/erb.rb
4117
+ lib/webgen/contentprocessor/erubis.rb
4118
+ lib/webgen/contentprocessor/fragments.rb
4119
+ lib/webgen/contentprocessor/haml.rb
4120
+ lib/webgen/contentprocessor/head.rb
4121
+ lib/webgen/contentprocessor/kramdown.rb
4122
+ lib/webgen/contentprocessor/kramdown/html.rb
4123
+ lib/webgen/contentprocessor/less.rb
4124
+ lib/webgen/contentprocessor/maruku.rb
4125
+ lib/webgen/contentprocessor/rdiscount.rb
4126
+ lib/webgen/contentprocessor/rdoc.rb
4127
+ lib/webgen/contentprocessor/redcloth.rb
4128
+ lib/webgen/contentprocessor/sass.rb
4129
+ lib/webgen/contentprocessor/scss.rb
4130
+ lib/webgen/contentprocessor/tags.rb
4131
+ lib/webgen/contentprocessor/tidy.rb
4132
+ lib/webgen/contentprocessor/xmllint.rb
4133
+ test/webgen/test_content_processor.rb
4134
+ test/webgen/test_contentprocessor.rb
4135
+
4136
+ commit 69f15a4120d1c535837709c856f8796fc7eeddb2
4137
+ Author: Thomas Leitner <t_leitner@gmx.at>
4138
+ Date: Thu Nov 11 20:09:37 2010 +0100
4139
+
4140
+ Added method webgen_require for graceful load error handling
4141
+
4142
+ lib/webgen/coreext.rb
4143
+ test/webgen/test_coreext.rb
4144
+
4145
+ commit 6396928ae41a8476ea293f5161a1ffafb225ae81
4146
+ Author: Thomas Leitner <t_leitner@gmx.at>
4147
+ Date: Thu Nov 11 19:54:39 2010 +0100
4148
+
4149
+ Removed old test cases
4150
+
4151
+ test/test_configuration.rb
4152
+ test/test_contentprocessor.rb
4153
+
4154
+ commit fb2fd4f5879773cc6ad6bc39f044fab0b3f704b0
4155
+ Author: Thomas Leitner <t_leitner@gmx.at>
4156
+ Date: Thu Nov 11 19:53:12 2010 +0100
4157
+
4158
+ Moved test case file for language related classes
4159
+
4160
+ test/test_languages.rb
4161
+ test/webgen/test_languages.rb
4162
+
4163
+ commit ad535828df3380232c7115ad8ab3b83836c9dfc0
4164
+ Author: Thomas Leitner <t_leitner@gmx.at>
4165
+ Date: Thu Nov 11 19:52:19 2010 +0100
4166
+
4167
+ Various updates
4168
+
4169
+ * Moved error_for_line from Common module to Error class
4170
+ * Added/Adapted test cases for error classes
4171
+ * Fixed bug with calling super in error classes
4172
+
4173
+ lib/webgen/error.rb
4174
+ test/test_error.rb
4175
+ test/webgen/test_common.rb
4176
+ test/webgen/test_error.rb
4177
+
4178
+ commit da9cb772fdaf4ad9c8331d5825a7db4504f0e36f
4179
+ Author: Thomas Leitner <t_leitner@gmx.at>
4180
+ Date: Wed Nov 10 19:00:23 2010 +0100
4181
+
4182
+ Added test for Webgen::Common module
4183
+
4184
+ test/webgen/test_common.rb
4185
+
4186
+ commit 9516bc8bd279ca36763a0da24f68d3d980185ce8
4187
+ Author: Thomas Leitner <t_leitner@gmx.at>
4188
+ Date: Wed Nov 10 18:53:15 2010 +0100
4189
+
4190
+ Updated content processor infrastructure
4191
+
4192
+ * The mapping between short names and content processors is now done
4193
+ directly by the ContentProcessor module
4194
+ * The ContentProcessor module can now be used without pulling in all
4195
+ of webgen
4196
+
4197
+ lib/webgen/contentprocessor.rb
4198
+ test/webgen/test_contentprocessor.rb
4199
+
4200
+ commit d62928514fffb97447e342dfd7b4d543a1aac78f
4201
+ Author: Thomas Leitner <t_leitner@gmx.at>
4202
+ Date: Tue Nov 9 16:52:38 2010 +0100
4203
+
4204
+ Updated Configuration class
4205
+
4206
+ * Does not use method_missing anymore for defining options
4207
+ * Values can now be set via a hash or a YAML file
4208
+ * A static configuration object now exists for providing webgen's own options
4209
+
4210
+ lib/webgen/configuration.rb
4211
+ test/webgen/test_configuration.rb
4212
+
4213
+ commit 03b61b43c8fc15efa45483018f60c661fc63068c
4214
+ Author: Thomas Leitner <t_leitner@gmx.at>
4215
+ Date: Tue Nov 9 16:47:19 2010 +0100
4216
+
4217
+ Updated error classes
4218
+
4219
+ lib/webgen/error.rb
4220
+
4221
+ commit 0852b6182352d1130dbc2046704bba42a4524a0b
4222
+ Author: Thomas Leitner <t_leitner@gmx.at>
4223
+ Date: Thu Oct 7 15:22:06 2010 +0200
4224
+
4225
+ Fixed CSS styling problem of blockquotes
4226
+
4227
+ misc/default.less.css
4228
+
4229
+ commit d34a356d21c74be0843aefa8420bc34631df9303
4230
+ Author: Thomas Leitner <t_leitner@gmx.at>
4231
+ Date: Wed Jun 23 06:19:23 2010 +0200
4232
+
4233
+ Added scss to extension listing
4234
+
4235
+ doc/extensions.page
4236
+
4237
+ commit 159e93dbcf6f23fb556a36eed351eb8983f60d71
4238
+ Author: Thomas Leitner <t_leitner@gmx.at>
4239
+ Date: Wed Jun 16 08:12:10 2010 +0200
4240
+
4241
+ Depending on kramdown version to 0.9.0
4242
+
4243
+ Rakefile
4244
+
4245
+ commit e56f577f67b51755b65c02d922f7f8acf65317be
4246
+ Author: Thomas Leitner <t_leitner@gmx.at>
4247
+ Date: Wed Jun 16 08:09:27 2010 +0200
4248
+
4249
+ Added content processor scss
4250
+
4251
+ website/src/news/release_0_5_12.page
4252
+
4253
+ commit bb0ce33d03202a7e7f805fe33aea44a6ab6df0f7
4254
+ Author: Thomas Leitner <t_leitner@gmx.at>
4255
+ Date: Wed Apr 14 07:47:09 2010 +0200
4256
+
4257
+ Fixed naming of meta information file
4258
+
4259
+ doc/faq.page
4260
+ doc/manual.page
4261
+ doc/references/metainfo.page
4262
+ doc/sourcehandler/directory.page
4263
+
4264
+ commit 4d3dc435b025d94666b4ed212b7b0339c852c45f
4265
+ Author: Thomas Leitner <t_leitner@gmx.at>
4266
+ Date: Wed Apr 14 07:40:27 2010 +0200
4267
+
4268
+ Renamed all occurences of glob to path patterns for consistency
4269
+
4270
+ doc/source/filesystem.page
4271
+
4272
+ commit 475f9f7f3226ad528df516ba3c84e22ba53cc4a7
4273
+ Author: Thomas Leitner <t_leitner@gmx.at>
4274
+ Date: Tue Apr 13 20:00:31 2010 +0200
4275
+
4276
+ Removed extensions section from manual
4277
+
4278
+ The extensions section is superseded by the stand alone extensions page
4279
+
4280
+ doc/manual.page
4281
+
4282
+ commit ad5b87ff36305439fbcd1fa047d21d503568c80b
4283
+ Author: Thomas Leitner <t_leitner@gmx.at>
4284
+ Date: Tue Apr 13 19:59:29 2010 +0200
4285
+
4286
+ Updated tag documentation
4287
+
4288
+ doc/extensions.page
4289
+ doc/tag.template
4290
+ doc/tag/breadcrumbtrail.page
4291
+ doc/tag/coderay.page
4292
+ doc/tag/date.page
4293
+ doc/tag/executecommand.page
4294
+ doc/tag/includefile.page
4295
+ doc/tag/langbar.page
4296
+ doc/tag/link.page
4297
+ doc/tag/menu.page
4298
+ doc/tag/metainfo.page
4299
+ doc/tag/relocatable.page
4300
+ doc/tag/sitemap.page
4301
+ doc/tag/tikz.page
4302
+
4303
+ commit 39c49b13111908d3ae4419b6aedd82d554a35a26
4304
+ Author: Thomas Leitner <t_leitner@gmx.at>
4305
+ Date: Mon Apr 12 08:27:08 2010 +0200
4306
+
4307
+ Updated source handler documentation
4308
+
4309
+ doc/extensions.page
4310
+ doc/sourcehandler.template
4311
+ doc/sourcehandler/copy.page
4312
+ doc/sourcehandler/directory.page
4313
+ doc/sourcehandler/feed.page
4314
+ doc/sourcehandler/metainfo.page
4315
+ doc/sourcehandler/page.page
4316
+ doc/sourcehandler/sitemap.page
4317
+ doc/sourcehandler/template.page
4318
+ doc/sourcehandler/virtual.page
4319
+
4320
+ commit 66144f1f09187097d1bf2f55f187555a3fa96e7d
4321
+ Author: Thomas Leitner <t_leitner@gmx.at>
4322
+ Date: Mon Apr 12 07:55:27 2010 +0200
4323
+
4324
+ Documentation update
4325
+
4326
+ * Small update to content processor documentation
4327
+ * Updated source and output extensions
4328
+
4329
+ doc/contentprocessor.template
4330
+ doc/extensions.page
4331
+ doc/extensions.template
4332
+ doc/metainfo
4333
+ doc/output/filesystem.page
4334
+ doc/source/filesystem.page
4335
+ doc/source/tararchive.page
4336
+
4337
+ commit 674f33b0bf64fa6afbda43cd2efa14deba7ac1da
4338
+ Author: Thomas Leitner <t_leitner@gmx.at>
4339
+ Date: Sat Apr 10 08:59:58 2010 +0200
4340
+
4341
+ Small fix of the documentation index page
4342
+
4343
+ doc/index.page
4344
+
4345
+ commit 186597449a885d28cacc8621cf103f91f4501810
4346
+ Author: Thomas Leitner <t_leitner@gmx.at>
4347
+ Date: Sat Apr 10 08:57:17 2010 +0200
4348
+
4349
+ Updated content processor documentation
4350
+
4351
+ doc/contentprocessor/blocks.page
4352
+ doc/contentprocessor/builder.page
4353
+ doc/contentprocessor/erb.page
4354
+ doc/contentprocessor/erubis.page
4355
+ doc/contentprocessor/fragments.page
4356
+ doc/contentprocessor/haml.page
4357
+ doc/contentprocessor/head.page
4358
+ doc/contentprocessor/kramdown.page
4359
+ doc/contentprocessor/less.page
4360
+ doc/contentprocessor/maruku.page
4361
+ doc/contentprocessor/rdiscount.page
4362
+ doc/contentprocessor/rdoc.page
4363
+ doc/contentprocessor/redcloth.page
4364
+ doc/contentprocessor/sass.page
4365
+ doc/contentprocessor/tags.page
4366
+ doc/contentprocessor/tidy.page
4367
+ doc/contentprocessor/xmllint.page
4368
+ doc/extensions.page
4369
+ doc/extensions.template
4370
+ doc/manual.page
4371
+ doc/metainfo
4372
+
4373
+ commit 22cb319c5c0b5856a4621ced49c5afb3b9b1ca19
4374
+ Author: Thomas Leitner <t_leitner@gmx.at>
4375
+ Date: Sat Apr 10 08:20:28 2010 +0200
4376
+
4377
+ Updated homepage design
4378
+
4379
+ misc/default.less.css
4380
+ misc/default.template
4381
+ website/src/default.template
4382
+
4383
+ commit 933673581ced5431e5ebfdc3fc371998e82f497e
4384
+ Author: Thomas Leitner <t_leitner@gmx.at>
4385
+ Date: Tue Mar 16 12:06:25 2010 +0100
4386
+
4387
+ Restructured documentation
4388
+
4389
+ Rakefile
4390
+ doc/contentprocessor.template
4391
+ doc/contentprocessor/head.page
4392
+ doc/contentprocessor/tidy.page
4393
+ doc/extensions.metainfo
4394
+ doc/getting_started.page
4395
+ doc/index.page
4396
+ doc/manual.page
4397
+ doc/metainfo
4398
+ doc/reference_configuration.page
4399
+ doc/reference_metainfo.page
4400
+ doc/reference_website_styles.page
4401
+ doc/references/configuration.page
4402
+ doc/references/metainfo.page
4403
+ doc/references/webgen_page_format.page
4404
+ doc/references/website_styles.metainfo
4405
+ doc/references/website_styles.page
4406
+ doc/references/website_styles/.gitignore
4407
+ doc/source/filesystem.page
4408
+ doc/source/tararchive.page
4409
+ doc/sourcehandler/feed.page
4410
+ doc/sourcehandler/metainfo.page
4411
+ doc/sourcehandler/page.page
4412
+ doc/sourcehandler/sitemap.page
4413
+ doc/sourcehandler/template.page
4414
+ doc/sourcehandler/virtual.page
4415
+ doc/tag.template
4416
+ doc/upgrading.page
4417
+ doc/webgen_page_format.page
4418
+ doc/website_styles.metainfo
4419
+ doc/website_styles/.gitignore
4420
+ misc/default.template
4421
+ website/src/news/release_0_5_12.page
4422
+ website/src/news/release_0_5_5.page
4423
+ website/src/news/release_0_5_6.page
4424
+ website/src/news/release_0_5_8.page
4425
+ website/src/news/release_0_5_9.page
4426
+ website/src/website.css
4427
+
4428
+ commit 15ad64d21f1ee7b0aeec88f6ba6aff07a85a0794
4429
+ Author: Thomas Leitner <t_leitner@gmx.at>
4430
+ Date: Mon Mar 15 16:24:38 2010 +0100
4431
+
4432
+ Fixed two small docu issues
4433
+
4434
+ website/src/index.page
4435
+
4436
+ commit 8078c9a461200fd60b8a7f81b2c8ee8cdb95ff79
4437
+ Author: Thomas Leitner <t_leitner@gmx.at>
4438
+ Date: Mon Mar 15 16:24:10 2010 +0100
4439
+
4440
+ Implemented new design for webgen website
4441
+
4442
+ Rakefile
4443
+ misc/default.css
4444
+ misc/default.less.css
4445
+ misc/default.template
4446
+ misc/images/bg.png
4447
+ misc/images/error.png
4448
+ misc/images/headerbg.jpg
4449
+ misc/images/important.png
4450
+ misc/images/information.png
4451
+ misc/images/warning.png
4452
+ website/src/default.template
4453
+ website/src/js/jquery-1.3.1.min.js
4454
+ website/src/js/jquery.corner.js
4455
+ website/src/website.css
4456
+
1
4457
  commit 4d8ae86b19ba1bf4b8d3e3f2abfa69642329ac95
2
4458
  Author: Thomas Leitner <t_leitner@gmx.at>
3
4459
  Date: Mon Nov 8 15:02:35 2010 +0100