webgen 0.3.5 → 0.3.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. data/ChangeLog +97 -765
  2. data/Rakefile +1 -1
  3. data/VERSION +1 -1
  4. data/install.rb +1 -1
  5. data/lib/webgen/composite.rb +1 -1
  6. data/lib/webgen/configuration.rb +2 -2
  7. data/lib/webgen/listener.rb +1 -1
  8. data/lib/webgen/logging.rb +1 -1
  9. data/lib/webgen/node.rb +1 -1
  10. data/lib/webgen/plugin.rb +1 -1
  11. data/lib/webgen/plugins/contenthandler/defaultcontenthandler.rb +1 -1
  12. data/lib/webgen/plugins/contenthandler/html.rb +1 -1
  13. data/lib/webgen/plugins/contenthandler/markdown.rb +1 -1
  14. data/lib/webgen/plugins/contenthandler/rdoc.rb +1 -1
  15. data/lib/webgen/plugins/contenthandler/textile.rb +1 -1
  16. data/lib/webgen/plugins/filehandler/backing.rb +1 -1
  17. data/lib/webgen/plugins/filehandler/directory.rb +1 -1
  18. data/lib/webgen/plugins/filehandler/filecopy.rb +1 -1
  19. data/lib/webgen/plugins/filehandler/filehandler.rb +1 -1
  20. data/lib/webgen/plugins/filehandler/page.rb +1 -1
  21. data/lib/webgen/plugins/filehandler/picturegallery.rb +1 -1
  22. data/lib/webgen/plugins/filehandler/template.rb +1 -1
  23. data/lib/webgen/plugins/gallerylayouter/defaultgallerylayouter.rb +1 -1
  24. data/lib/webgen/plugins/htmlvalidator/defaulthtmlvalidator.rb +1 -1
  25. data/lib/webgen/plugins/htmlvalidator/xmllint.rb +1 -1
  26. data/lib/webgen/plugins/menustyles/defaultmenustyle.rb +1 -1
  27. data/lib/webgen/plugins/menustyles/horizontal.rb +1 -1
  28. data/lib/webgen/plugins/menustyles/horizontal_dropdown.rb +1 -1
  29. data/lib/webgen/plugins/menustyles/partial.rb +1 -1
  30. data/lib/webgen/plugins/menustyles/vertical.rb +1 -1
  31. data/lib/webgen/plugins/menustyles/vertical_dropdown.rb +1 -1
  32. data/lib/webgen/plugins/resourcemanager.rb +1 -1
  33. data/lib/webgen/plugins/tags/date.rb +1 -1
  34. data/lib/webgen/plugins/tags/executecommand.rb +1 -1
  35. data/lib/webgen/plugins/tags/includefile.rb +1 -1
  36. data/lib/webgen/plugins/tags/langbar.rb +1 -1
  37. data/lib/webgen/plugins/tags/menu.rb +1 -1
  38. data/lib/webgen/plugins/tags/meta.rb +1 -1
  39. data/lib/webgen/plugins/tags/navbar.rb +1 -1
  40. data/lib/webgen/plugins/tags/relocatable.rb +1 -1
  41. data/lib/webgen/plugins/tags/sitemap.rb +1 -1
  42. data/lib/webgen/plugins/tags/tags.rb +1 -1
  43. data/lib/webgen/plugins/tags/wikilink.rb +1 -1
  44. data/lib/webgen/plugins/treewalker.rb +1 -1
  45. data/lib/webgen/webgen.rb +1 -1
  46. data/testsite/src/projects.de.page +1 -1
  47. data/testsite/src/projects.es.page +1 -1
  48. metadata +3 -3
data/Rakefile CHANGED
@@ -182,7 +182,7 @@ else
182
182
  #### Dependencies, requirements and files
183
183
 
184
184
  s.files = PKG_FILES.to_a
185
- s.add_dependency( 'cmdparse', '>= 1.0.3' )
185
+ s.add_dependency( 'cmdparse', '~> 1.0.3' )
186
186
 
187
187
  s.require_path = 'lib'
188
188
  s.autorequire = nil
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.5
1
+ 0.3.6
data/install.rb CHANGED
@@ -3,7 +3,7 @@ require 'rpa/install'
3
3
 
4
4
  class Install_webgen < RPA::Install::FullInstaller
5
5
  name 'webgen'
6
- version '0.3.5-1'
6
+ version '0.3.6-1'
7
7
  classification Application
8
8
  build do
9
9
  installdocs %w[COPYING ChangeLog TODO]
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: composite.rb 271 2005-05-09 08:50:47Z thomas $
4
+ # $Id: composite.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: configuration.rb 303 2005-06-24 13:44:14Z thomas $
4
+ # $Id: configuration.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -37,7 +37,7 @@ end
37
37
 
38
38
  module Webgen
39
39
 
40
- VERSION = [0, 3, 5]
40
+ VERSION = [0, 3, 6]
41
41
  SUMMARY = "Webgen is a templated based static website generator."
42
42
  DESCRIPTION = "Webgen is a web page generator implemented in Ruby. " \
43
43
  "It is used to generate static web pages from templates and page " \
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: listener.rb 271 2005-05-09 08:50:47Z thomas $
4
+ # $Id: listener.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: logging.rb 259 2005-04-21 10:37:47Z thomas $
4
+ # $Id: logging.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: node.rb 294 2005-06-14 06:37:56Z thomas $
4
+ # $Id: node.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: plugin.rb 293 2005-06-11 08:37:51Z thomas $
4
+ # $Id: plugin.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: defaultcontenthandler.rb 214 2005-02-27 13:40:27Z thomas $
4
+ # $Id: defaultcontenthandler.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: html.rb 212 2005-02-27 12:02:27Z thomas $
4
+ # $Id: html.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: markdown.rb 212 2005-02-27 12:02:27Z thomas $
4
+ # $Id: markdown.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: rdoc.rb 212 2005-02-27 12:02:27Z thomas $
4
+ # $Id: rdoc.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: textile.rb 288 2005-05-29 12:25:47Z thomas $
4
+ # $Id: textile.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: backing.rb 294 2005-06-14 06:37:56Z thomas $
4
+ # $Id: backing.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: directory.rb 288 2005-05-29 12:25:47Z thomas $
4
+ # $Id: directory.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: filecopy.rb 269 2005-05-08 16:06:40Z thomas $
4
+ # $Id: filecopy.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: filehandler.rb 293 2005-06-11 08:37:51Z thomas $
4
+ # $Id: filehandler.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: page.rb 301 2005-06-14 10:25:49Z thomas $
4
+ # $Id: page.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: picturegallery.rb 303 2005-06-24 13:44:14Z thomas $
4
+ # $Id: picturegallery.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: template.rb 275 2005-05-11 17:30:20Z thomas $
4
+ # $Id: template.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: defaultgallerylayouter.rb 220 2005-03-12 15:41:05Z thomas $
4
+ # $Id: defaultgallerylayouter.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: defaulthtmlvalidator.rb 214 2005-02-27 13:40:27Z thomas $
4
+ # $Id: defaulthtmlvalidator.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: xmllint.rb 216 2005-02-27 14:06:09Z thomas $
4
+ # $Id: xmllint.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: defaultmenustyle.rb 293 2005-06-11 08:37:51Z thomas $
4
+ # $Id: defaultmenustyle.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: horizontal.rb 293 2005-06-11 08:37:51Z thomas $
4
+ # $Id: horizontal.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: horizontal_dropdown.rb 300 2005-06-14 10:04:17Z thomas $
4
+ # $Id: horizontal_dropdown.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: partial.rb 293 2005-06-11 08:37:51Z thomas $
4
+ # $Id: partial.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: vertical.rb 293 2005-06-11 08:37:51Z thomas $
4
+ # $Id: vertical.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: vertical_dropdown.rb 300 2005-06-14 10:04:17Z thomas $
4
+ # $Id: vertical_dropdown.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: resourcemanager.rb 300 2005-06-14 10:04:17Z thomas $
4
+ # $Id: resourcemanager.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: date.rb 203 2005-02-21 18:42:04Z thomas $
4
+ # $Id: date.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: executecommand.rb 230 2005-03-17 09:29:43Z thomas $
4
+ # $Id: executecommand.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: includefile.rb 203 2005-02-21 18:42:04Z thomas $
4
+ # $Id: includefile.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: langbar.rb 293 2005-06-11 08:37:51Z thomas $
4
+ # $Id: langbar.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: menu.rb 293 2005-06-11 08:37:51Z thomas $
4
+ # $Id: menu.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: meta.rb 203 2005-02-21 18:42:04Z thomas $
4
+ # $Id: meta.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: navbar.rb 203 2005-02-21 18:42:04Z thomas $
4
+ # $Id: navbar.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: relocatable.rb 273 2005-05-11 10:07:38Z thomas $
4
+ # $Id: relocatable.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: sitemap.rb 275 2005-05-11 17:30:20Z thomas $
4
+ # $Id: sitemap.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: tags.rb 223 2005-03-16 14:10:57Z thomas $
4
+ # $Id: tags.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: wikilink.rb 275 2005-05-11 17:30:20Z thomas $
4
+ # $Id: wikilink.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: treewalker.rb 287 2005-05-26 09:33:38Z thomas $
4
+ # $Id: treewalker.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -1,7 +1,7 @@
1
1
  #
2
2
  #--
3
3
  #
4
- # $Id: webgen.rb 293 2005-06-11 08:37:51Z thomas $
4
+ # $Id: webgen.rb 334 2005-08-23 19:11:53Z thomas $
5
5
  #
6
6
  # webgen: template based static website generator
7
7
  # Copyright (C) 2004 Thomas Leitner
@@ -2,7 +2,7 @@
2
2
  title: Projekt Seite
3
3
  inMenu: true
4
4
  revision: |
5
- $Id: projects.de.page 175 2005-01-19 23:03:03Z thomas $
5
+ $Id: projects.de.page 334 2005-08-23 19:11:53Z thomas $
6
6
  blocks:
7
7
  - {name: content, format: html}
8
8
  ---