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/ChangeLog CHANGED
@@ -1,769 +1,101 @@
1
1
  ------------------------------------------------------------------------
2
- r303 | thomas | 2005-06-24 15:44:14 +0200 (Fri, 24 Jun 2005) | 1 line
3
- Changed paths:
4
- M /trunk/webgen/Rakefile
5
- M /trunk/webgen/TODO
6
- M /trunk/webgen/lib/webgen/configuration.rb
7
- M /trunk/webgen/lib/webgen/plugins/filehandler/picturegallery.rb
8
- A /trunk/webgen/otherdata/webgen-gallery-creator.rb
9
-
10
- * added thumbnailSize option to gallery file
11
- ------------------------------------------------------------------------
12
- r301 | thomas | 2005-06-14 12:25:49 +0200 (Tue, 14 Jun 2005) | 1 line
13
- Changed paths:
14
- M /trunk/webgen/lib/webgen/plugins/filehandler/page.rb
15
-
16
- * separated rendering of page nodes from writing
17
- ------------------------------------------------------------------------
18
- r300 | thomas | 2005-06-14 12:04:17 +0200 (Tue, 14 Jun 2005) | 2 lines
19
- Changed paths:
20
- M /trunk/webgen/TODO
21
- M /trunk/webgen/doc/src/documentation/plugins/menustyles/horizontal-dropdown.page
22
- M /trunk/webgen/lib/webgen/plugins/menustyles/horizontal_dropdown.rb
23
- M /trunk/webgen/lib/webgen/plugins/menustyles/vertical_dropdown.rb
24
- M /trunk/webgen/lib/webgen/plugins/resourcemanager.rb
25
-
26
- * fixed ResourceManager plugin to work in Windows
27
- * updated CSS styles for dropdown menus to look "nice" in IE because they do not work in IE
28
- ------------------------------------------------------------------------
29
- r296 | thomas | 2005-06-14 08:42:31 +0200 (Tue, 14 Jun 2005) | 2 lines
30
- Changed paths:
31
- M /trunk/webgen/doc/src/documentation/plugins/filehandler/backing.page
32
- M /trunk/webgen/doc/src/documentation/plugins/filehandler/index.page
33
- M /trunk/webgen/doc/src/documentation/plugins/filehandler/pagehandler.page
34
- M /trunk/webgen/doc/src/documentation/plugins/resourcemanager.page
35
- M /trunk/webgen/doc/src/index.page
36
-
37
- * updated documentation of backing file handler
38
- * updated some other pages
39
- ------------------------------------------------------------------------
40
- r295 | thomas | 2005-06-14 08:41:37 +0200 (Tue, 14 Jun 2005) | 1 line
41
- Changed paths:
42
- M /trunk/webgen/doc/src/default.css
43
- M /trunk/webgen/doc/src/default.template
44
-
45
- * now using vertical dropdown menu and quick menu on the left side
46
- ------------------------------------------------------------------------
47
- r294 | thomas | 2005-06-14 08:37:56 +0200 (Tue, 14 Jun 2005) | 3 lines
48
- Changed paths:
49
- M /trunk/webgen/lib/webgen/node.rb
50
- M /trunk/webgen/lib/webgen/plugins/filehandler/backing.rb
51
- M /trunk/webgen/lib/webgen/plugins/filehandler/page.rb
52
- M /trunk/webgen/test/webgen/tc_node.rb
53
-
54
- * fixed Node#get_node_for_string and tests so that page files with standardified names are found
55
- * fixed bug in backing file handler where meta info files in subdirs were not processed
56
- * updated PageHandler to provided a localized standardified page name to page nodes
57
- ------------------------------------------------------------------------
58
- r293 | thomas | 2005-06-11 10:37:51 +0200 (Sat, 11 Jun 2005) | 17 lines
59
- Changed paths:
60
- M /trunk/webgen/Rakefile
61
- M /trunk/webgen/TODO
62
- A /trunk/webgen/data
63
- A /trunk/webgen/data/webgen
64
- A /trunk/webgen/data/webgen/example
65
- A /trunk/webgen/data/webgen/example/config.yaml
66
- A /trunk/webgen/data/webgen/example/log
67
- A /trunk/webgen/data/webgen/example/output
68
- A /trunk/webgen/data/webgen/example/plugin
69
- A /trunk/webgen/data/webgen/example/src
70
- A /trunk/webgen/data/webgen/example/src/default.css
71
- A /trunk/webgen/data/webgen/example/src/default.template
72
- A /trunk/webgen/data/webgen/example/src/index.page
73
- A /trunk/webgen/data/webgen/images
74
- A /trunk/webgen/data/webgen/images/generated_by_webgen.png
75
- A /trunk/webgen/data/webgen/images/valid-css.gif
76
- A /trunk/webgen/data/webgen/images/valid-xhtml11.png
77
- A /trunk/webgen/data/webgen/images/webgen_logo.png
78
- M /trunk/webgen/doc/plugin/extension.rb
79
- A /trunk/webgen/doc/plugin/resources.rb
80
- M /trunk/webgen/doc/src/default.css
81
- M /trunk/webgen/doc/src/default.template
82
- M /trunk/webgen/doc/src/documentation/index.page
83
- M /trunk/webgen/doc/src/documentation/plugins/filehandler/index.page
84
- M /trunk/webgen/doc/src/documentation/plugins/index.page
85
- A /trunk/webgen/doc/src/documentation/plugins/menustyles
86
- A /trunk/webgen/doc/src/documentation/plugins/menustyles/horizontal-dropdown.page
87
- A /trunk/webgen/doc/src/documentation/plugins/menustyles/horizontal.page
88
- A /trunk/webgen/doc/src/documentation/plugins/menustyles/index.page
89
- A /trunk/webgen/doc/src/documentation/plugins/menustyles/partial.page
90
- A /trunk/webgen/doc/src/documentation/plugins/menustyles/vertical-dropdown.page
91
- A /trunk/webgen/doc/src/documentation/plugins/menustyles/vertical.page
92
- A /trunk/webgen/doc/src/documentation/plugins/resourcemanager.page
93
- M /trunk/webgen/doc/src/documentation/plugins/tags/langbar.page
94
- M /trunk/webgen/doc/src/documentation/plugins/tags/menu.page
95
- M /trunk/webgen/doc/src/documentation/plugins/tags/navbar.page
96
- A /trunk/webgen/doc/src/documentation/plugins/tags/resource.page
97
- M /trunk/webgen/doc/src/download.page
98
- M /trunk/webgen/doc/src/features.page
99
- D /trunk/webgen/doc/src/generated_by_webgen.png
100
- M /trunk/webgen/doc/src/index.page
101
- D /trunk/webgen/doc/src/logo.png
102
- M /trunk/webgen/doc/src/meta.info
103
- M /trunk/webgen/lib/webgen/configuration.rb
104
- M /trunk/webgen/lib/webgen/node.rb
105
- M /trunk/webgen/lib/webgen/plugin.rb
106
- M /trunk/webgen/lib/webgen/plugins/filehandler/filehandler.rb
107
- A /trunk/webgen/lib/webgen/plugins/menustyles
108
- A /trunk/webgen/lib/webgen/plugins/menustyles/defaultmenustyle.rb
109
- A /trunk/webgen/lib/webgen/plugins/menustyles/horizontal.rb
110
- A /trunk/webgen/lib/webgen/plugins/menustyles/horizontal_dropdown.rb
111
- A /trunk/webgen/lib/webgen/plugins/menustyles/partial.rb
112
- A /trunk/webgen/lib/webgen/plugins/menustyles/vertical.rb
113
- A /trunk/webgen/lib/webgen/plugins/menustyles/vertical_dropdown.rb
114
- A /trunk/webgen/lib/webgen/plugins/resourcemanager.rb
115
- M /trunk/webgen/lib/webgen/plugins/tags/langbar.rb
116
- M /trunk/webgen/lib/webgen/plugins/tags/menu.rb
117
- M /trunk/webgen/lib/webgen/webgen.rb
118
- M /trunk/webgen/otherdata/logo.svg
119
- M /trunk/webgen/test/webgen/tc_node.rb
120
-
121
- * added method Node#relpath_to_string and tests for it
122
- * updated to cmdparse version 1.0.3
123
- * extensively updated documentation (esp. features)
124
- * updated default.template to use webgen image resources
125
- * added webgen doc site specific plugin for showing the predefined resources
126
- * the ancestors of plugins are now shown in the information section
127
- * added new plugin ResourceManager for handling file and memory resources
128
- * added new tag resource for accessing resources
129
- * restructured menu tag to allow different menu styles
130
- * added five menu styles: horizontal, vertical, partial, horizontal-dropdown, vertical-dropdown
131
- * added documentation pages for menu styles, Resource Manager and resource tag
132
- * added new listener message to FileHandler: AFTER_ALL_WRITTEN
133
- * updated relpath_to_node to better handle absolute destinations (http, ftp, ...)
134
- * Configuration.data_dir returns webgen specific data directory now
135
- * webgen sample site moved to data directory
136
- * added some images to data directory
137
- * created new logo for webgen
138
- ------------------------------------------------------------------------
139
- r289 | thomas | 2005-06-05 10:49:15 +0200 (Sun, 05 Jun 2005) | 1 line
140
- Changed paths:
141
- M /trunk/webgen/lib/webgen/plugins/tags/langbar.rb
142
-
143
- * incorporated change (option showOwnLang) from Thomas Werschlein
144
- ------------------------------------------------------------------------
145
- r288 | thomas | 2005-05-29 14:25:47 +0200 (Sun, 29 May 2005) | 4 lines
146
- Changed paths:
147
- M /trunk/webgen/TODO
148
- A /trunk/webgen/doc/config.yaml
149
- M /trunk/webgen/doc/src/documentation/gettingstarted.page
150
- M /trunk/webgen/doc/src/documentation/plugins/filehandler/galleryhandler.page
151
- M /trunk/webgen/doc/src/documentation/plugins/filehandler/pagehandler.page
152
- M /trunk/webgen/doc/src/documentation/plugins/tags/index.page
153
- M /trunk/webgen/doc/src/documentation/plugins/tags/langbar.page
154
- M /trunk/webgen/doc/src/features.page
155
- M /trunk/webgen/doc/src/index.page
156
- M /trunk/webgen/doc/src/meta.info
157
- M /trunk/webgen/lib/webgen/node.rb
158
- M /trunk/webgen/lib/webgen/plugins/contenthandler/textile.rb
159
- M /trunk/webgen/lib/webgen/plugins/filehandler/backing.rb
160
- M /trunk/webgen/lib/webgen/plugins/filehandler/directory.rb
161
- M /trunk/webgen/lib/webgen/plugins/filehandler/page.rb
162
- M /trunk/webgen/test/webgen/tc_node.rb
163
-
164
- * BUG fixed in Node#get_node_for_string: invalid name resolution if node is directory node
165
- * metainfo int:pagename now set to <name of page>.page
166
- * changed PageHandler:validator to default to nil
167
- * added some doku
168
- ------------------------------------------------------------------------
169
- r287 | thomas | 2005-05-26 11:33:38 +0200 (Thu, 26 May 2005) | 2 lines
170
- Changed paths:
171
- M /trunk/webgen/TODO
172
- M /trunk/webgen/doc/src/default.template
173
- M /trunk/webgen/lib/webgen/plugins/filehandler/backing.rb
174
- M /trunk/webgen/lib/webgen/plugins/treewalker.rb
175
- M /trunk/webgen/lib/webgen/webgen.rb
176
-
177
- * added clean command to CLI
178
- * added parameter to TreeWalker#execute for specifying the order in which #handle_node is called
179
- ------------------------------------------------------------------------
180
- r283 | thomas | 2005-05-21 13:15:59 +0200 (Sat, 21 May 2005) | 1 line
181
- Changed paths:
182
- M /trunk/webgen/TODO
183
- M /trunk/webgen/lib/webgen/plugins/filehandler/filehandler.rb
184
-
185
- * BUG fixed where invokation of webgen without src dir produced error
186
- ------------------------------------------------------------------------
187
- r280 | thomas | 2005-05-16 08:51:18 +0200 (Mon, 16 May 2005) | 2 lines
188
- Changed paths:
189
- M /trunk/webgen/TODO
190
- M /trunk/webgen/doc/src/default.template
191
- M /trunk/webgen/doc/src/index.page
192
- M /trunk/webgen/lib/webgen/configuration.rb
193
-
194
- * bumped version number
195
- * small change to docu
196
- ------------------------------------------------------------------------
197
- r278 | thomas | 2005-05-12 12:22:51 +0200 (Thu, 12 May 2005) | 1 line
198
- Changed paths:
199
- M /trunk/webgen/doc/src/default.template
200
-
201
- * made webgen logo relocatable
202
- ------------------------------------------------------------------------
203
- r277 | thomas | 2005-05-12 10:43:54 +0200 (Thu, 12 May 2005) | 1 line
204
- Changed paths:
205
- M /trunk/webgen/lib/webgen/plugins/filehandler/page.rb
206
-
207
- * fixed bug in PageHandler where duplicate files were not recognized
208
- ------------------------------------------------------------------------
209
- r276 | thomas | 2005-05-12 10:36:50 +0200 (Thu, 12 May 2005) | 4 lines
210
- Changed paths:
211
- M /trunk/webgen/TODO
212
- M /trunk/webgen/doc/src/default.css
213
- M /trunk/webgen/doc/src/default.template
214
- A /trunk/webgen/doc/src/generated_by_webgen.png
215
- M /trunk/webgen/doc/src/index.page
216
- A /trunk/webgen/otherdata/generated_logo.svg
217
-
218
- * added dates of releases to main page
219
- * added xhtml11, css logos to footer
220
- * added "generated by webgen" logo
221
- * fixed syntax errors in css file
222
- ------------------------------------------------------------------------
223
- r275 | thomas | 2005-05-11 19:30:20 +0200 (Wed, 11 May 2005) | 2 lines
224
- Changed paths:
225
- M /trunk/webgen/TODO
226
- M /trunk/webgen/doc/plugin/extension.rb
227
- A /trunk/webgen/doc/src/documentation/meta_info_reference.page
228
- M /trunk/webgen/doc/src/index.page
229
- M /trunk/webgen/lib/webgen/plugin.rb
230
- M /trunk/webgen/lib/webgen/plugins/filehandler/backing.rb
231
- M /trunk/webgen/lib/webgen/plugins/filehandler/directory.rb
232
- M /trunk/webgen/lib/webgen/plugins/filehandler/page.rb
233
- M /trunk/webgen/lib/webgen/plugins/filehandler/template.rb
234
- M /trunk/webgen/lib/webgen/plugins/tags/menu.rb
235
- M /trunk/webgen/lib/webgen/plugins/tags/sitemap.rb
236
- M /trunk/webgen/lib/webgen/plugins/tags/wikilink.rb
237
-
238
- * added PageHandler#get_html_link, simplified use of #get_html_link in menu and sitemap tag
239
- * added documentation page for meta information
240
- ------------------------------------------------------------------------
241
- r274 | thomas | 2005-05-11 14:52:27 +0200 (Wed, 11 May 2005) | 4 lines
242
- Changed paths:
243
- M /trunk/webgen/TODO
244
- M /trunk/webgen/doc/plugin/extension.rb
245
- M /trunk/webgen/doc/src/about.page
246
- M /trunk/webgen/doc/src/documentation/cli.page
247
- M /trunk/webgen/doc/src/documentation/gettingstarted.page
248
- M /trunk/webgen/doc/src/documentation/plugins/filehandler/directory.page
249
- M /trunk/webgen/doc/src/documentation/plugins/index.page
250
- M /trunk/webgen/doc/src/documentation/plugins/tags/index.page
251
- M /trunk/webgen/doc/src/index.page
252
- M /trunk/webgen/doc/src/meta.info
253
- M /trunk/webgen/lib/webgen/plugins/filehandler/directory.rb
254
- M /trunk/webgen/lib/webgen/plugins/filehandler/page.rb
255
- M /trunk/webgen/lib/webgen/plugins/filehandler/picturegallery.rb
256
- M /trunk/webgen/lib/webgen/plugins/filehandler/template.rb
257
- M /trunk/webgen/lib/webgen/plugins/tags/langbar.rb
258
- M /trunk/webgen/lib/webgen/plugins/tags/menu.rb
259
- M /trunk/webgen/lib/webgen/plugins/tags/sitemap.rb
260
- M /trunk/webgen/test/webgen/filehandlers/tc_page.rb
261
- M /trunk/webgen/testsite/src/projects/00.index.de.page
262
- M /trunk/webgen/testsite/src/projects/subproj/index.page
263
-
264
- * changed meta info menuOrder to orderInfo
265
- * if two items have the same order information, they are sorted using their title meta info
266
- * BUGs fixed for sitemap tag: order information now used, multi language pages now displayed only once
267
- * add some documentation
268
- ------------------------------------------------------------------------
269
- r273 | thomas | 2005-05-11 12:07:38 +0200 (Wed, 11 May 2005) | 3 lines
270
- Changed paths:
271
- M /trunk/webgen/TODO
272
- M /trunk/webgen/doc/src/about.page
273
- M /trunk/webgen/doc/src/default.template
274
- M /trunk/webgen/doc/src/documentation/gettingstarted.page
275
- M /trunk/webgen/doc/src/documentation/index.page
276
- M /trunk/webgen/doc/src/documentation/plugins/filehandler/pagehandler.page
277
- M /trunk/webgen/doc/src/documentation/plugins/index.page
278
- M /trunk/webgen/doc/src/documentation/plugins/tags/index.page
279
- M /trunk/webgen/doc/src/features.page
280
- M /trunk/webgen/doc/src/index.page
281
- M /trunk/webgen/lib/webgen/plugins/tags/relocatable.rb
282
-
283
- * now only webgen with lower case letters in docu
284
- * fixed pagehandler.page (problem with embedded ERB code)
285
- * tag relocatable now accepts complex URIs (with query/fragment part)
286
- ------------------------------------------------------------------------
287
- r272 | thomas | 2005-05-09 10:53:04 +0200 (Mon, 09 May 2005) | 1 line
288
- Changed paths:
289
- M /trunk/webgen/lib/webgen/node.rb
290
- M /trunk/webgen/lib/webgen/plugins/filehandler/filehandler.rb
291
- M /trunk/webgen/test/util/tc_composite.rb
292
- M /trunk/webgen/test/util/tc_listener.rb
293
-
294
- * changed require util/listener and util/composite to webgen/...
295
- ------------------------------------------------------------------------
296
- r271 | thomas | 2005-05-09 10:50:47 +0200 (Mon, 09 May 2005) | 1 line
297
- Changed paths:
298
- D /trunk/webgen/lib/util
299
- A /trunk/webgen/lib/webgen/composite.rb (from /trunk/webgen/lib/util/composite.rb:212)
300
- A /trunk/webgen/lib/webgen/listener.rb (from /trunk/webgen/lib/util/listener.rb:212)
301
-
302
- * removed util directory, moved files into webgen dir
303
- ------------------------------------------------------------------------
304
- r270 | thomas | 2005-05-09 10:40:14 +0200 (Mon, 09 May 2005) | 3 lines
305
- Changed paths:
306
- M /trunk/webgen/doc/src/documentation/plugins/filehandler/pagehandler.page
307
- M /trunk/webgen/doc/src/index.page
308
- M /trunk/webgen/lib/webgen/plugins/filehandler/directory.rb
309
- M /trunk/webgen/lib/webgen/plugins/filehandler/filehandler.rb
310
- M /trunk/webgen/lib/webgen/plugins/filehandler/page.rb
311
- M /trunk/webgen/lib/webgen/plugins/tags/menu.rb
312
- M /trunk/webgen/lib/webgen/plugins/tags/relocatable.rb
313
- M /trunk/webgen/lib/webgen/plugins/tags/sitemap.rb
314
-
315
- * renamed #get_page_node_for_lang to #get_node_for_lang for file handlers
316
- * changed PageHandler: ERB is now useable within a template and with content blocks of page files
317
- * tag relocatable modified to allow linking to directories and other file types, not only page files
318
- ------------------------------------------------------------------------
319
- r269 | thomas | 2005-05-08 18:06:40 +0200 (Sun, 08 May 2005) | 6 lines
320
- Changed paths:
321
- M /trunk/webgen/TODO
322
- M /trunk/webgen/doc/src/documentation/plugins/filehandler/index.page
323
- M /trunk/webgen/doc/src/features.page
324
- M /trunk/webgen/doc/src/index.page
325
- M /trunk/webgen/lib/webgen/node.rb
326
- M /trunk/webgen/lib/webgen/plugins/filehandler/backing.rb
327
- M /trunk/webgen/lib/webgen/plugins/filehandler/directory.rb
328
- M /trunk/webgen/lib/webgen/plugins/filehandler/filecopy.rb
329
- M /trunk/webgen/lib/webgen/plugins/filehandler/filehandler.rb
330
- M /trunk/webgen/lib/webgen/plugins/filehandler/picturegallery.rb
331
- M /trunk/webgen/test/webgen/tc_node.rb
332
-
333
- * adapted tests for Node class
334
- * updated documentation and added better info on FileHandler class
335
- * FileHandler now processes files based on path patterns and not on extensions -> more flexible
336
- * updated BackingFileHandler
337
- * changed name of parameter FileCopyHandler:types to :paths, parameters now uses path patterns instead of extensions
338
- * Node#node_for_string and Node#node_for_string? accept optional second parameter now
339
- ------------------------------------------------------------------------
340
- r268 | thomas | 2005-05-02 17:28:31 +0200 (Mon, 02 May 2005) | 1 line
341
- Changed paths:
342
- M /trunk/webgen/Rakefile
343
- M /trunk/webgen/doc/src/documentation/plugins/tags/multilang.fr.page
344
- M /trunk/webgen/doc/src/download.page
345
- M /trunk/webgen/doc/src/index.page
346
- M /trunk/webgen/lib/webgen/configuration.rb
347
- M /trunk/webgen/lib/webgen/plugins/filehandler/filehandler.rb
348
-
349
- * some small changes
350
- ------------------------------------------------------------------------
351
- r267 | thomas | 2005-04-27 15:32:18 +0200 (Wed, 27 Apr 2005) | 1 line
352
- Changed paths:
353
- M /trunk/webgen/lib/webgen/plugin.rb
354
-
355
- * Fixed bug #1828
356
- ------------------------------------------------------------------------
357
- r264 | thomas | 2005-04-21 12:46:59 +0200 (Thu, 21 Apr 2005) | 1 line
358
- Changed paths:
359
- M /trunk/webgen/doc/src/index.page
360
-
361
-
362
- ------------------------------------------------------------------------
363
- r263 | thomas | 2005-04-21 12:45:25 +0200 (Thu, 21 Apr 2005) | 1 line
364
- Changed paths:
365
- M /trunk/webgen/Rakefile
366
-
367
-
368
- ------------------------------------------------------------------------
369
- r262 | thomas | 2005-04-21 12:44:55 +0200 (Thu, 21 Apr 2005) | 1 line
370
- Changed paths:
371
- M /trunk/webgen/doc/src/documentation/gettingstarted.page
372
-
373
- * changed URL to correct path
374
- ------------------------------------------------------------------------
375
- r261 | thomas | 2005-04-21 12:39:25 +0200 (Thu, 21 Apr 2005) | 3 lines
376
- Changed paths:
377
- M /trunk/webgen/TODO
378
- A /trunk/webgen/doc/plugin/clidesc.rb
379
- M /trunk/webgen/doc/plugin/extension.rb
380
- M /trunk/webgen/doc/src/about.page
381
- M /trunk/webgen/doc/src/default.css
382
- M /trunk/webgen/doc/src/design.gallery
383
- A /trunk/webgen/doc/src/documentation/cli.page
384
- A /trunk/webgen/doc/src/documentation/gettingstarted.page
385
- M /trunk/webgen/doc/src/documentation/index.page
386
- M /trunk/webgen/doc/src/documentation/plugins/filehandler/directory.page
387
- A /trunk/webgen/doc/src/documentation/plugins/index.page
388
- A /trunk/webgen/doc/src/documentation/plugins/system
389
- A /trunk/webgen/doc/src/documentation/plugins/system/configuration.page
390
- A /trunk/webgen/doc/src/documentation/plugins/system/index.page
391
- A /trunk/webgen/doc/src/documentation/plugins/system/logging.page
392
- M /trunk/webgen/doc/src/index.page
393
- M /trunk/webgen/doc/src/meta.info
394
-
395
- * added documentation for system plugins Configuration and Logging
396
- * added documentation for CLI
397
- * added a Getting Started section
398
- ------------------------------------------------------------------------
399
- r260 | thomas | 2005-04-21 12:38:17 +0200 (Thu, 21 Apr 2005) | 1 line
400
- Changed paths:
401
- M /trunk/webgen/Rakefile
402
-
403
- * removed check for validness of output documents as this is now done by a webgen plugin
404
- ------------------------------------------------------------------------
405
- r259 | thomas | 2005-04-21 12:37:47 +0200 (Thu, 21 Apr 2005) | 2 lines
406
- Changed paths:
407
- M /trunk/webgen/lib/webgen/configuration.rb
408
- M /trunk/webgen/lib/webgen/logging.rb
409
- M /trunk/webgen/lib/webgen/plugin.rb
410
- M /trunk/webgen/lib/webgen/webgen.rb
411
-
412
- * added generation of default.template, default.css and index.page to CLI command create
413
- * moved parameter verbosityLevel from Configuration to Logging
414
- ------------------------------------------------------------------------
415
- r258 | thomas | 2005-04-21 12:35:28 +0200 (Thu, 21 Apr 2005) | 1 line
416
- Changed paths:
417
- M /trunk/webgen/lib/webgen/node.rb
418
- M /trunk/webgen/test/webgen/tc_node.rb
419
-
420
- * Node#get_node_for_string now supports dest entries with slashes
421
- ------------------------------------------------------------------------
422
- r257 | thomas | 2005-04-14 10:57:04 +0200 (Thu, 14 Apr 2005) | 1 line
423
- Changed paths:
424
- D /trunk/webgen/doc/src/documentation/contenthandler
425
- D /trunk/webgen/doc/src/documentation/filehandler
426
- D /trunk/webgen/doc/src/documentation/gallerylayouter
427
- D /trunk/webgen/doc/src/documentation/htmlvalidator
428
- M /trunk/webgen/doc/src/documentation/index.page
429
- A /trunk/webgen/doc/src/documentation/plugins
430
- A /trunk/webgen/doc/src/documentation/plugins/contenthandler (from /trunk/webgen/doc/src/documentation/contenthandler:217)
431
- A /trunk/webgen/doc/src/documentation/plugins/contenthandler/index.page (from /trunk/webgen/doc/src/documentation/contenthandler/index.page:256)
432
- R /trunk/webgen/doc/src/documentation/plugins/contenthandler/markdown.page (from /trunk/webgen/doc/src/documentation/contenthandler/markdown.page:256)
433
- A /trunk/webgen/doc/src/documentation/plugins/filehandler (from /trunk/webgen/doc/src/documentation/filehandler:212)
434
- R /trunk/webgen/doc/src/documentation/plugins/filehandler/backing.page (from /trunk/webgen/doc/src/documentation/filehandler/backing.page:256)
435
- A /trunk/webgen/doc/src/documentation/plugins/filehandler/galleryhandler.page (from /trunk/webgen/doc/src/documentation/filehandler/galleryhandler.page:256)
436
- A /trunk/webgen/doc/src/documentation/plugins/filehandler/pagehandler.page (from /trunk/webgen/doc/src/documentation/filehandler/pagehandler.page:256)
437
- A /trunk/webgen/doc/src/documentation/plugins/gallerylayouter (from /trunk/webgen/doc/src/documentation/gallerylayouter:217)
438
- A /trunk/webgen/doc/src/documentation/plugins/gallerylayouter/index.page (from /trunk/webgen/doc/src/documentation/gallerylayouter/index.page:256)
439
- A /trunk/webgen/doc/src/documentation/plugins/htmlvalidator (from /trunk/webgen/doc/src/documentation/htmlvalidator:217)
440
- A /trunk/webgen/doc/src/documentation/plugins/htmlvalidator/index.page (from /trunk/webgen/doc/src/documentation/htmlvalidator/index.page:256)
441
- A /trunk/webgen/doc/src/documentation/plugins/htmlvalidator/xmllint.page (from /trunk/webgen/doc/src/documentation/htmlvalidator/xmllint.page:256)
442
- A /trunk/webgen/doc/src/documentation/plugins/tags (from /trunk/webgen/doc/src/documentation/tags:212)
443
- R /trunk/webgen/doc/src/documentation/plugins/tags/executecommand.page (from /trunk/webgen/doc/src/documentation/tags/executecommand.page:256)
444
- R /trunk/webgen/doc/src/documentation/plugins/tags/index.page (from /trunk/webgen/doc/src/documentation/tags/index.page:256)
445
- A /trunk/webgen/doc/src/documentation/plugins/tags/langbar.de.page (from /trunk/webgen/doc/src/documentation/tags/langbar.de.page:256)
446
- A /trunk/webgen/doc/src/documentation/plugins/tags/langbar.page (from /trunk/webgen/doc/src/documentation/tags/langbar.page:256)
447
- M /trunk/webgen/doc/src/documentation/plugins/tags/menu.de.page
448
- R /trunk/webgen/doc/src/documentation/plugins/tags/menu.page (from /trunk/webgen/doc/src/documentation/tags/menu.page:256)
449
- D /trunk/webgen/doc/src/documentation/tags
450
-
451
- * moved plugin docu into plugin subfolder
452
- ------------------------------------------------------------------------
453
- r256 | thomas | 2005-04-14 03:13:57 +0200 (Thu, 14 Apr 2005) | 4 lines
454
- Changed paths:
455
- M /trunk/webgen/lib/webgen/plugins/filehandler/backing.rb
456
- M /trunk/webgen/lib/webgen/plugins/filehandler/directory.rb
457
- M /trunk/webgen/lib/webgen/plugins/filehandler/filehandler.rb
458
- M /trunk/webgen/lib/webgen/plugins/filehandler/page.rb
459
- M /trunk/webgen/lib/webgen/plugins/tags/langbar.rb
460
- M /trunk/webgen/lib/webgen/plugins/tags/menu.rb
461
- M /trunk/webgen/lib/webgen/plugins/tags/relocatable.rb
462
- M /trunk/webgen/lib/webgen/plugins/tags/sitemap.rb
463
-
464
- * removed virtual PageNodes, now page files are internally directly stored in the directory
465
- * renamed some methods in PageHandler plugin, esp. #get_lang_node to #get_page_node_for_lang
466
- * updated plugins to work with new code
467
- * changed format of meta info backing files
468
- ------------------------------------------------------------------------
469
- r255 | thomas | 2005-04-14 03:07:13 +0200 (Thu, 14 Apr 2005) | 1 line
470
- Changed paths:
471
- M /trunk/webgen/lib/webgen/node.rb
472
- M /trunk/webgen/lib/webgen/webgen.rb
473
-
474
- * fixed some minor issues
475
- ------------------------------------------------------------------------
476
- r254 | thomas | 2005-04-14 03:05:44 +0200 (Thu, 14 Apr 2005) | 1 line
477
- Changed paths:
478
- M /trunk/webgen/test/webgen/filehandlers/tc_page.rb
479
-
480
- * fixed test files
481
- ------------------------------------------------------------------------
482
- r253 | thomas | 2005-04-14 03:04:53 +0200 (Thu, 14 Apr 2005) | 1 line
483
- Changed paths:
484
- M /trunk/webgen/testsite/src/default.template
485
- A /trunk/webgen/testsite/src/images
486
- A /trunk/webgen/testsite/src/images/bghack.png (from /trunk/webgen/testsite/src/bghack.png:212)
487
- M /trunk/webgen/testsite/src/meta.info
488
-
489
- * fixed some small issues with testsite files
490
- ------------------------------------------------------------------------
491
- r252 | thomas | 2005-04-13 22:21:12 +0200 (Wed, 13 Apr 2005) | 1 line
492
- Changed paths:
493
- M /trunk/webgen/lib/webgen/plugins/tags/wikilink.rb
494
-
495
- * added parameters to replace invalid chars in wikilink tag
496
- ------------------------------------------------------------------------
497
- r251 | thomas | 2005-04-13 22:09:21 +0200 (Wed, 13 Apr 2005) | 1 line
498
- Changed paths:
499
- D /trunk/webgen/doc/extension.config
500
- A /trunk/webgen/doc/plugin
501
- A /trunk/webgen/doc/plugin/extension.rb (from /trunk/webgen/doc/extension.config:221)
502
- D /trunk/webgen/doc/src/documentation/extloader.page
503
- D /trunk/webgen/lib/webgen/plugins/extloader.rb
504
-
505
- * removed extension loader plugin and docu
506
- ------------------------------------------------------------------------
507
- r250 | thomas | 2005-04-13 21:49:20 +0200 (Wed, 13 Apr 2005) | 2 lines
508
- Changed paths:
509
- M /trunk/webgen/lib/webgen/configuration.rb
510
- M /trunk/webgen/lib/webgen/logging.rb
511
- M /trunk/webgen/lib/webgen/node.rb
512
- A /trunk/webgen/lib/webgen/plugin.rb
513
- M /trunk/webgen/lib/webgen/plugins/extloader.rb
514
-
515
- * moved plugin code to file plugin.rb
516
- * new plugin Logging with which logging parameters can be set
517
- ------------------------------------------------------------------------
518
- r249 | thomas | 2005-04-13 21:23:51 +0200 (Wed, 13 Apr 2005) | 2 lines
519
- Changed paths:
520
- M /trunk/webgen/lib/webgen/plugins/filehandler/backing.rb
521
- M /trunk/webgen/lib/webgen/plugins/filehandler/directory.rb
522
- M /trunk/webgen/lib/webgen/plugins/filehandler/filecopy.rb
523
- M /trunk/webgen/lib/webgen/plugins/filehandler/filehandler.rb
524
- M /trunk/webgen/lib/webgen/plugins/filehandler/page.rb
525
- M /trunk/webgen/lib/webgen/plugins/filehandler/picturegallery.rb
526
- M /trunk/webgen/lib/webgen/plugins/filehandler/template.rb
527
-
528
- * renamed DefaultHandler to DefaultFileHandler
529
- * moved Plugin.extension to DefaultFileHandler
530
- ------------------------------------------------------------------------
531
- r248 | thomas | 2005-04-13 21:17:09 +0200 (Wed, 13 Apr 2005) | 1 line
532
- Changed paths:
533
- M /trunk/webgen/lib/webgen/webgen.rb
534
-
535
- * correct initialization sequence in main method
536
- ------------------------------------------------------------------------
537
- r247 | thomas | 2005-04-13 20:55:33 +0200 (Wed, 13 Apr 2005) | 1 line
538
- Changed paths:
539
- M /trunk/webgen/test/setup.rb
540
- M /trunk/webgen/test/webgen/filehandlers/tc_page.rb
541
- M /trunk/webgen/test/webgen/tc_webgen.rb
542
-
543
- * changed test files to accomodate new plugin/logging/configuration structure
544
- ------------------------------------------------------------------------
545
- r245 | thomas | 2005-04-13 14:51:33 +0200 (Wed, 13 Apr 2005) | 4 lines
546
- Changed paths:
547
- M /trunk/webgen/Rakefile
548
- M /trunk/webgen/TODO
549
- M /trunk/webgen/doc/src/default.template
550
- M /trunk/webgen/doc/src/design.gallery
551
- M /trunk/webgen/doc/src/download.page
552
- M /trunk/webgen/doc/src/index.page
553
- M /trunk/webgen/lib/webgen/configuration.rb
554
- M /trunk/webgen/lib/webgen/webgen.rb
555
-
556
- * added command driven CLI
557
- * fixed rubyforge bug #1734
558
- * plugin parameters now can have change handlers which are invoked when the parameter is changed
559
- * removed parameter configfile from Configuration, the configuration is alwayws loaded from config.yaml now
560
- ------------------------------------------------------------------------
561
- r244 | thomas | 2005-04-13 14:39:17 +0200 (Wed, 13 Apr 2005) | 2 lines
562
- Changed paths:
563
- M /trunk/webgen/lib/webgen/plugins/filehandler/backing.rb
564
- M /trunk/webgen/lib/webgen/plugins/filehandler/page.rb
565
-
566
- * removed unused lines in page.rb
567
- * updated backing.rb
568
- ------------------------------------------------------------------------
569
- r234 | thomas | 2005-04-06 12:10:32 +0200 (Wed, 06 Apr 2005) | 1 line
570
- Changed paths:
571
- M /trunk/webgen/doc/src/documentation/tags/executecommand.page
572
-
573
- * fixed BUG #1739
574
- ------------------------------------------------------------------------
575
- r232 | thomas | 2005-03-17 12:12:26 +0100 (Thu, 17 Mar 2005) | 1 line
576
- Changed paths:
577
- M /trunk/webgen/TODO
578
-
579
-
580
- ------------------------------------------------------------------------
581
- r231 | thomas | 2005-03-17 10:31:00 +0100 (Thu, 17 Mar 2005) | 1 line
582
- Changed paths:
583
- M /trunk/webgen/Rakefile
584
-
585
- * rake clobber now deletes test/webgen.log
586
- ------------------------------------------------------------------------
587
- r230 | thomas | 2005-03-17 10:29:43 +0100 (Thu, 17 Mar 2005) | 2 lines
588
- Changed paths:
589
- M /trunk/webgen/doc/src/index.page
590
- M /trunk/webgen/lib/webgen/plugins/tags/executecommand.rb
591
- M /trunk/webgen/lib/webgen/webgen.rb
592
-
593
- * fixed bug: webgen -v now prints correct version number
594
- * fixed bug in executecommand tag: if command could not be executed, webgen was aborted
595
- ------------------------------------------------------------------------
596
- r229 | thomas | 2005-03-17 10:20:12 +0100 (Thu, 17 Mar 2005) | 2 lines
597
- Changed paths:
598
- M /trunk/webgen/doc/src/index.page
599
- M /trunk/webgen/lib/webgen/configuration.rb
600
-
601
- * bumped version number
602
- * updated main index.page
603
- ------------------------------------------------------------------------
604
- r228 | thomas | 2005-03-17 10:16:16 +0100 (Thu, 17 Mar 2005) | 1 line
605
- Changed paths:
606
- M /trunk/webgen/TODO
607
- M /trunk/webgen/lib/webgen/webgen.rb
608
-
609
- * fixed rubyforge bug #1637
610
- ------------------------------------------------------------------------
611
- r226 | thomas | 2005-03-16 16:34:13 +0100 (Wed, 16 Mar 2005) | 1 line
612
- Changed paths:
613
- M /trunk/webgen/TODO
614
-
615
-
616
- ------------------------------------------------------------------------
617
- r225 | thomas | 2005-03-16 16:30:02 +0100 (Wed, 16 Mar 2005) | 1 line
618
- Changed paths:
619
- M /trunk/webgen/test/webgen/filehandlers/tc_page.rb
620
-
621
- * corrected test file
622
- ------------------------------------------------------------------------
623
- r224 | thomas | 2005-03-16 16:26:33 +0100 (Wed, 16 Mar 2005) | 2 lines
624
- Changed paths:
625
- M /trunk/webgen/doc/src/documentation/extloader.page
626
- M /trunk/webgen/doc/src/documentation/filehandler/backing.page
627
- M /trunk/webgen/doc/src/documentation/filehandler/galleryhandler.page
628
- M /trunk/webgen/doc/src/documentation/tags/index.page
629
- M /trunk/webgen/doc/src/documentation/tags/langbar.page
630
- M /trunk/webgen/doc/src/documentation/tags/menu.page
631
- M /trunk/webgen/doc/src/index.page
632
- M /trunk/webgen/doc/src/meta.info
633
- M /trunk/webgen/lib/webgen/plugins/filehandler/directory.rb
634
- M /trunk/webgen/lib/webgen/plugins/filehandler/page.rb
635
- M /trunk/webgen/lib/webgen/plugins/tags/relocatable.rb
636
-
637
- * fixed BUG in relocatable tag: lang pages not correctly referenced
638
- * new parameter for page filehandler: outputNameStyle
639
- ------------------------------------------------------------------------
640
- r223 | thomas | 2005-03-16 15:10:57 +0100 (Wed, 16 Mar 2005) | 3 lines
641
- Changed paths:
642
- M /trunk/webgen/TODO
643
- M /trunk/webgen/doc/src/default.template
644
- D /trunk/webgen/doc/src/documentation/tags/lang.de.page
645
- D /trunk/webgen/doc/src/documentation/tags/lang.page
646
- A /trunk/webgen/doc/src/documentation/tags/langbar.de.page (from /trunk/webgen/doc/src/documentation/tags/lang.de.page:212)
647
- A /trunk/webgen/doc/src/documentation/tags/langbar.page (from /trunk/webgen/doc/src/documentation/tags/lang.page:212)
648
- M /trunk/webgen/doc/src/index.page
649
- D /trunk/webgen/lib/webgen/plugins/tags/lang.rb
650
- A /trunk/webgen/lib/webgen/plugins/tags/langbar.rb (from /trunk/webgen/lib/webgen/plugins/tags/lang.rb:212)
651
- M /trunk/webgen/lib/webgen/plugins/tags/menu.rb
652
- M /trunk/webgen/lib/webgen/plugins/tags/tags.rb
653
-
654
- * renamed tag lang, new name langbar
655
- * added two parameters to menu tag: submenuClass, selectedMenuitemClass
656
- * corrected doc/src/default.template: xml:lang was always set to <en>, now the language of the page is used
657
- ------------------------------------------------------------------------
658
- r222 | thomas | 2005-03-13 17:30:40 +0100 (Sun, 13 Mar 2005) | 1 line
659
- Changed paths:
660
- M /trunk/webgen/lib/webgen/plugins/filehandler/filehandler.rb
661
-
662
- * BUG fixed: file entries with only 2 chars got skipped
663
- ------------------------------------------------------------------------
664
- r221 | thomas | 2005-03-12 18:14:11 +0100 (Sat, 12 Mar 2005) | 2 lines
665
- Changed paths:
666
- M /trunk/webgen/TODO
667
- M /trunk/webgen/doc/extension.config
668
- M /trunk/webgen/lib/webgen/plugins/filehandler/picturegallery.rb
669
- M /trunk/webgen/lib/webgen/plugins/tags/menu.rb
670
-
671
- * ordering of gallery pages for picture gallery now possible
672
- * corrected bug in doc/extension.config where false HTML was written
673
- ------------------------------------------------------------------------
674
- r220 | thomas | 2005-03-12 16:41:05 +0100 (Sat, 12 Mar 2005) | 2 lines
675
- Changed paths:
676
- M /trunk/webgen/TODO
677
- M /trunk/webgen/lib/webgen/node.rb
678
- M /trunk/webgen/lib/webgen/plugins/filehandler/picturegallery.rb
679
- M /trunk/webgen/lib/webgen/plugins/gallerylayouter/defaultgallerylayouter.rb
680
- M /trunk/webgen/test/webgen/tc_configuration.rb
681
- M /trunk/webgen/test/webgen/tc_node.rb
682
-
683
- * added methode Node#parent_dir and tests for it
684
- * corrected tests for Webgen::Plugin
685
- ------------------------------------------------------------------------
686
- r219 | thomas | 2005-03-11 16:53:38 +0100 (Fri, 11 Mar 2005) | 1 line
687
- Changed paths:
688
- M /trunk/webgen/doc/src/documentation/contenthandler/markdown.page
689
- A /trunk/webgen/doc/src/documentation/filehandler/galleryhandler.page
690
- M /trunk/webgen/doc/src/documentation/filehandler/pagehandler.page
691
-
692
- * changed documentation
693
- ------------------------------------------------------------------------
694
- r218 | thomas | 2005-03-11 16:41:39 +0100 (Fri, 11 Mar 2005) | 2 lines
695
- Changed paths:
696
- M /trunk/webgen/TODO
697
- A /trunk/webgen/doc/src/documentation/contenthandler/index.page
698
- A /trunk/webgen/doc/src/documentation/gallerylayouter/index.page
699
- A /trunk/webgen/doc/src/documentation/htmlvalidator/index.page
700
- A /trunk/webgen/doc/src/documentation/htmlvalidator/xmllint.page
701
- M /trunk/webgen/lib/webgen/plugins/treewalker.rb
702
-
703
- * added the index pages for gallery layouter, content handler and html validator directories
704
- * add documentation for xmllint html validator
705
- ------------------------------------------------------------------------
706
- r217 | thomas | 2005-03-11 16:15:54 +0100 (Fri, 11 Mar 2005) | 2 lines
707
- Changed paths:
708
- M /trunk/webgen/TODO
709
- M /trunk/webgen/doc/extension.config
710
- A /trunk/webgen/doc/src/documentation/contenthandler
711
- A /trunk/webgen/doc/src/documentation/contenthandler/html.page (from /trunk/webgen/doc/src/documentation/filehandler/pagehandler/html.page:212)
712
- A /trunk/webgen/doc/src/documentation/contenthandler/markdown.page (from /trunk/webgen/doc/src/documentation/filehandler/pagehandler/markdown.page:212)
713
- A /trunk/webgen/doc/src/documentation/contenthandler/rdoc.page (from /trunk/webgen/doc/src/documentation/filehandler/pagehandler/rdoc.page:212)
714
- A /trunk/webgen/doc/src/documentation/contenthandler/textile.page (from /trunk/webgen/doc/src/documentation/filehandler/pagehandler/textile.page:212)
715
- D /trunk/webgen/doc/src/documentation/filehandler/galleryhandler
716
- D /trunk/webgen/doc/src/documentation/filehandler/pagehandler
717
- A /trunk/webgen/doc/src/documentation/filehandler/pagehandler.page (from /trunk/webgen/doc/src/documentation/filehandler/pagehandler/index.page:212)
718
- A /trunk/webgen/doc/src/documentation/gallerylayouter
719
- A /trunk/webgen/doc/src/documentation/gallerylayouter/defaultlayouter.page (from /trunk/webgen/doc/src/documentation/filehandler/galleryhandler/defaultlayouter.page:212)
720
- A /trunk/webgen/doc/src/documentation/htmlvalidator
721
- M /trunk/webgen/lib/webgen/configuration.rb
722
-
723
- * moved some documentation pages to new locations
724
- * handlers defined via define_handler now get shown in describe tag
725
- ------------------------------------------------------------------------
726
- r216 | thomas | 2005-02-27 15:06:09 +0100 (Sun, 27 Feb 2005) | 1 line
727
- Changed paths:
728
- M /trunk/webgen/lib/webgen/plugins/htmlvalidator/xmllint.rb
729
-
730
- * added check in XmllintHTMLValidator to see if xmllint is available
731
- ------------------------------------------------------------------------
732
- r215 | thomas | 2005-02-27 15:00:04 +0100 (Sun, 27 Feb 2005) | 2 lines
733
- Changed paths:
734
- M /trunk/webgen/TODO
735
- M /trunk/webgen/doc/src/index.page
736
- M /trunk/webgen/lib/webgen/plugins/filehandler/page.rb
737
- M /trunk/webgen/lib/webgen/plugins/htmlvalidator/xmllint.rb
738
-
739
- * added validation of HTML files to PageHandler by using HTMLValidator plugins
740
- * completed xmllint HTML validator plugin
741
- ------------------------------------------------------------------------
742
- r214 | thomas | 2005-02-27 14:40:27 +0100 (Sun, 27 Feb 2005) | 3 lines
743
- Changed paths:
744
- M /trunk/webgen/TODO
745
- M /trunk/webgen/lib/webgen/configuration.rb
746
- M /trunk/webgen/lib/webgen/plugins/contenthandler/defaultcontenthandler.rb
747
- M /trunk/webgen/lib/webgen/plugins/filehandler/backing.rb
748
- M /trunk/webgen/lib/webgen/plugins/filehandler/filehandler.rb
749
- M /trunk/webgen/lib/webgen/plugins/filehandler/page.rb
750
- M /trunk/webgen/lib/webgen/plugins/filehandler/picturegallery.rb
751
- M /trunk/webgen/lib/webgen/plugins/gallerylayouter/defaultgallerylayouter.rb
752
- M /trunk/webgen/lib/webgen/plugins/htmlvalidator/defaulthtmlvalidator.rb
753
- M /trunk/webgen/lib/webgen/plugins/tags/tags.rb
754
-
755
- * Webgen::Plugin.config uses classes (not class names) as keys now
756
- * add Webgen::Plugin.define_handler which can be used to define a new handler for something very easily
757
- * changed DefaultHTMLValidator, DefaultContentHandler, DefaultGalleryLayouter to use Webgen::Plugin.define_handler
758
- ------------------------------------------------------------------------
759
- r213 | thomas | 2005-02-27 13:06:08 +0100 (Sun, 27 Feb 2005) | 1 line
760
- Changed paths:
761
- D /trunk/webgen/lib/webgen/plugins/filehandler/galleryhandler
762
- A /trunk/webgen/lib/webgen/plugins/filehandler/picturegallery.rb (from /trunk/webgen/lib/webgen/plugins/filehandler/galleryhandler/picturegallery.rb:212)
763
- A /trunk/webgen/lib/webgen/plugins/gallerylayouter
764
- A /trunk/webgen/lib/webgen/plugins/gallerylayouter/defaultgallerylayouter.rb (from /trunk/webgen/lib/webgen/plugins/filehandler/galleryhandler/defaultlayouter.rb:212)
765
-
766
- * moved gallery layouter into own subdir
2
+ r334 | thomas | 2005-08-23 21:11:53 +0200 (Tue, 23 Aug 2005) | 1 line
3
+ Changed paths:
4
+ A /versions/webgen-0.3.6 (from /versions/webgen-0.3.5:305)
5
+ M /versions/webgen-0.3.6/Rakefile
6
+
7
+ * updated Rakefile to work with correct version of cmdparse
8
+ ------------------------------------------------------------------------
9
+ r305 | thomas | 2005-06-24 16:12:23 +0200 (Fri, 24 Jun 2005) | 1 line
10
+ Changed paths:
11
+ A /versions/webgen-0.3.5 (from /trunk/webgen:212)
12
+ R /versions/webgen-0.3.5/Rakefile (from /trunk/webgen/Rakefile:304)
13
+ R /versions/webgen-0.3.5/TODO (from /trunk/webgen/TODO:303)
14
+ A /versions/webgen-0.3.5/data (from /trunk/webgen/data:293)
15
+ A /versions/webgen-0.3.5/doc/config.yaml (from /trunk/webgen/doc/config.yaml:288)
16
+ A /versions/webgen-0.3.5/doc/plugin (from /trunk/webgen/doc/plugin:251)
17
+ A /versions/webgen-0.3.5/doc/plugin/clidesc.rb (from /trunk/webgen/doc/plugin/clidesc.rb:261)
18
+ R /versions/webgen-0.3.5/doc/plugin/extension.rb (from /trunk/webgen/doc/plugin/extension.rb:293)
19
+ A /versions/webgen-0.3.5/doc/plugin/resources.rb (from /trunk/webgen/doc/plugin/resources.rb:293)
20
+ R /versions/webgen-0.3.5/doc/src/about.page (from /trunk/webgen/doc/src/about.page:274)
21
+ R /versions/webgen-0.3.5/doc/src/default.css (from /trunk/webgen/doc/src/default.css:295)
22
+ R /versions/webgen-0.3.5/doc/src/default.template (from /trunk/webgen/doc/src/default.template:295)
23
+ R /versions/webgen-0.3.5/doc/src/design.gallery (from /trunk/webgen/doc/src/design.gallery:261)
24
+ R /versions/webgen-0.3.5/doc/src/documentation (from /trunk/webgen/doc/src/documentation:256)
25
+ A /versions/webgen-0.3.5/doc/src/documentation/cli.page (from /trunk/webgen/doc/src/documentation/cli.page:274)
26
+ A /versions/webgen-0.3.5/doc/src/documentation/gettingstarted.page (from /trunk/webgen/doc/src/documentation/gettingstarted.page:288)
27
+ R /versions/webgen-0.3.5/doc/src/documentation/index.page (from /trunk/webgen/doc/src/documentation/index.page:293)
28
+ A /versions/webgen-0.3.5/doc/src/documentation/meta_info_reference.page (from /trunk/webgen/doc/src/documentation/meta_info_reference.page:275)
29
+ A /versions/webgen-0.3.5/doc/src/documentation/plugins (from /trunk/webgen/doc/src/documentation/plugins:257)
30
+ R /versions/webgen-0.3.5/doc/src/documentation/plugins/filehandler/backing.page (from /trunk/webgen/doc/src/documentation/plugins/filehandler/backing.page:296)
31
+ R /versions/webgen-0.3.5/doc/src/documentation/plugins/filehandler/directory.page (from /trunk/webgen/doc/src/documentation/plugins/filehandler/directory.page:274)
32
+ R /versions/webgen-0.3.5/doc/src/documentation/plugins/filehandler/galleryhandler.page (from /trunk/webgen/doc/src/documentation/plugins/filehandler/galleryhandler.page:288)
33
+ R /versions/webgen-0.3.5/doc/src/documentation/plugins/filehandler/index.page (from /trunk/webgen/doc/src/documentation/plugins/filehandler/index.page:296)
34
+ R /versions/webgen-0.3.5/doc/src/documentation/plugins/filehandler/pagehandler.page (from /trunk/webgen/doc/src/documentation/plugins/filehandler/pagehandler.page:296)
35
+ A /versions/webgen-0.3.5/doc/src/documentation/plugins/index.page (from /trunk/webgen/doc/src/documentation/plugins/index.page:293)
36
+ A /versions/webgen-0.3.5/doc/src/documentation/plugins/menustyles (from /trunk/webgen/doc/src/documentation/plugins/menustyles:293)
37
+ R /versions/webgen-0.3.5/doc/src/documentation/plugins/menustyles/horizontal-dropdown.page (from /trunk/webgen/doc/src/documentation/plugins/menustyles/horizontal-dropdown.page:300)
38
+ A /versions/webgen-0.3.5/doc/src/documentation/plugins/resourcemanager.page (from /trunk/webgen/doc/src/documentation/plugins/resourcemanager.page:296)
39
+ A /versions/webgen-0.3.5/doc/src/documentation/plugins/system (from /trunk/webgen/doc/src/documentation/plugins/system:261)
40
+ R /versions/webgen-0.3.5/doc/src/documentation/plugins/tags/index.page (from /trunk/webgen/doc/src/documentation/plugins/tags/index.page:288)
41
+ R /versions/webgen-0.3.5/doc/src/documentation/plugins/tags/langbar.page (from /trunk/webgen/doc/src/documentation/plugins/tags/langbar.page:293)
42
+ R /versions/webgen-0.3.5/doc/src/documentation/plugins/tags/menu.page (from /trunk/webgen/doc/src/documentation/plugins/tags/menu.page:293)
43
+ R /versions/webgen-0.3.5/doc/src/documentation/plugins/tags/multilang.fr.page (from /trunk/webgen/doc/src/documentation/plugins/tags/multilang.fr.page:268)
44
+ R /versions/webgen-0.3.5/doc/src/documentation/plugins/tags/navbar.page (from /trunk/webgen/doc/src/documentation/plugins/tags/navbar.page:293)
45
+ A /versions/webgen-0.3.5/doc/src/documentation/plugins/tags/resource.page (from /trunk/webgen/doc/src/documentation/plugins/tags/resource.page:293)
46
+ R /versions/webgen-0.3.5/doc/src/download.page (from /trunk/webgen/doc/src/download.page:293)
47
+ R /versions/webgen-0.3.5/doc/src/features.page (from /trunk/webgen/doc/src/features.page:293)
48
+ R /versions/webgen-0.3.5/doc/src/index.page (from /trunk/webgen/doc/src/index.page:296)
49
+ R /versions/webgen-0.3.5/doc/src/meta.info (from /trunk/webgen/doc/src/meta.info:293)
50
+ A /versions/webgen-0.3.5/lib/webgen/composite.rb (from /trunk/webgen/lib/webgen/composite.rb:271)
51
+ R /versions/webgen-0.3.5/lib/webgen/configuration.rb (from /trunk/webgen/lib/webgen/configuration.rb:303)
52
+ A /versions/webgen-0.3.5/lib/webgen/listener.rb (from /trunk/webgen/lib/webgen/listener.rb:271)
53
+ R /versions/webgen-0.3.5/lib/webgen/logging.rb (from /trunk/webgen/lib/webgen/logging.rb:259)
54
+ R /versions/webgen-0.3.5/lib/webgen/node.rb (from /trunk/webgen/lib/webgen/node.rb:294)
55
+ A /versions/webgen-0.3.5/lib/webgen/plugin.rb (from /trunk/webgen/lib/webgen/plugin.rb:293)
56
+ R /versions/webgen-0.3.5/lib/webgen/plugins/contenthandler/defaultcontenthandler.rb (from /trunk/webgen/lib/webgen/plugins/contenthandler/defaultcontenthandler.rb:214)
57
+ R /versions/webgen-0.3.5/lib/webgen/plugins/contenthandler/textile.rb (from /trunk/webgen/lib/webgen/plugins/contenthandler/textile.rb:288)
58
+ R /versions/webgen-0.3.5/lib/webgen/plugins/filehandler/backing.rb (from /trunk/webgen/lib/webgen/plugins/filehandler/backing.rb:294)
59
+ R /versions/webgen-0.3.5/lib/webgen/plugins/filehandler/directory.rb (from /trunk/webgen/lib/webgen/plugins/filehandler/directory.rb:288)
60
+ R /versions/webgen-0.3.5/lib/webgen/plugins/filehandler/filecopy.rb (from /trunk/webgen/lib/webgen/plugins/filehandler/filecopy.rb:269)
61
+ R /versions/webgen-0.3.5/lib/webgen/plugins/filehandler/filehandler.rb (from /trunk/webgen/lib/webgen/plugins/filehandler/filehandler.rb:293)
62
+ R /versions/webgen-0.3.5/lib/webgen/plugins/filehandler/page.rb (from /trunk/webgen/lib/webgen/plugins/filehandler/page.rb:301)
63
+ A /versions/webgen-0.3.5/lib/webgen/plugins/filehandler/picturegallery.rb (from /trunk/webgen/lib/webgen/plugins/filehandler/picturegallery.rb:303)
64
+ R /versions/webgen-0.3.5/lib/webgen/plugins/filehandler/template.rb (from /trunk/webgen/lib/webgen/plugins/filehandler/template.rb:275)
65
+ A /versions/webgen-0.3.5/lib/webgen/plugins/gallerylayouter (from /trunk/webgen/lib/webgen/plugins/gallerylayouter:213)
66
+ R /versions/webgen-0.3.5/lib/webgen/plugins/gallerylayouter/defaultgallerylayouter.rb (from /trunk/webgen/lib/webgen/plugins/gallerylayouter/defaultgallerylayouter.rb:220)
67
+ R /versions/webgen-0.3.5/lib/webgen/plugins/htmlvalidator/defaulthtmlvalidator.rb (from /trunk/webgen/lib/webgen/plugins/htmlvalidator/defaulthtmlvalidator.rb:214)
68
+ R /versions/webgen-0.3.5/lib/webgen/plugins/htmlvalidator/xmllint.rb (from /trunk/webgen/lib/webgen/plugins/htmlvalidator/xmllint.rb:216)
69
+ A /versions/webgen-0.3.5/lib/webgen/plugins/menustyles (from /trunk/webgen/lib/webgen/plugins/menustyles:293)
70
+ R /versions/webgen-0.3.5/lib/webgen/plugins/menustyles/horizontal_dropdown.rb (from /trunk/webgen/lib/webgen/plugins/menustyles/horizontal_dropdown.rb:300)
71
+ R /versions/webgen-0.3.5/lib/webgen/plugins/menustyles/vertical_dropdown.rb (from /trunk/webgen/lib/webgen/plugins/menustyles/vertical_dropdown.rb:300)
72
+ A /versions/webgen-0.3.5/lib/webgen/plugins/resourcemanager.rb (from /trunk/webgen/lib/webgen/plugins/resourcemanager.rb:300)
73
+ R /versions/webgen-0.3.5/lib/webgen/plugins/tags/executecommand.rb (from /trunk/webgen/lib/webgen/plugins/tags/executecommand.rb:230)
74
+ A /versions/webgen-0.3.5/lib/webgen/plugins/tags/langbar.rb (from /trunk/webgen/lib/webgen/plugins/tags/langbar.rb:293)
75
+ R /versions/webgen-0.3.5/lib/webgen/plugins/tags/menu.rb (from /trunk/webgen/lib/webgen/plugins/tags/menu.rb:293)
76
+ R /versions/webgen-0.3.5/lib/webgen/plugins/tags/relocatable.rb (from /trunk/webgen/lib/webgen/plugins/tags/relocatable.rb:273)
77
+ R /versions/webgen-0.3.5/lib/webgen/plugins/tags/sitemap.rb (from /trunk/webgen/lib/webgen/plugins/tags/sitemap.rb:275)
78
+ R /versions/webgen-0.3.5/lib/webgen/plugins/tags/tags.rb (from /trunk/webgen/lib/webgen/plugins/tags/tags.rb:223)
79
+ R /versions/webgen-0.3.5/lib/webgen/plugins/tags/wikilink.rb (from /trunk/webgen/lib/webgen/plugins/tags/wikilink.rb:275)
80
+ R /versions/webgen-0.3.5/lib/webgen/plugins/treewalker.rb (from /trunk/webgen/lib/webgen/plugins/treewalker.rb:287)
81
+ R /versions/webgen-0.3.5/lib/webgen/webgen.rb (from /trunk/webgen/lib/webgen/webgen.rb:293)
82
+ A /versions/webgen-0.3.5/otherdata/generated_logo.svg (from /trunk/webgen/otherdata/generated_logo.svg:276)
83
+ R /versions/webgen-0.3.5/otherdata/logo.svg (from /trunk/webgen/otherdata/logo.svg:293)
84
+ A /versions/webgen-0.3.5/otherdata/webgen-gallery-creator.rb (from /trunk/webgen/otherdata/webgen-gallery-creator.rb:303)
85
+ R /versions/webgen-0.3.5/test/setup.rb (from /trunk/webgen/test/setup.rb:247)
86
+ R /versions/webgen-0.3.5/test/util/tc_composite.rb (from /trunk/webgen/test/util/tc_composite.rb:272)
87
+ R /versions/webgen-0.3.5/test/util/tc_listener.rb (from /trunk/webgen/test/util/tc_listener.rb:272)
88
+ R /versions/webgen-0.3.5/test/webgen/filehandlers/tc_page.rb (from /trunk/webgen/test/webgen/filehandlers/tc_page.rb:274)
89
+ R /versions/webgen-0.3.5/test/webgen/tc_configuration.rb (from /trunk/webgen/test/webgen/tc_configuration.rb:220)
90
+ R /versions/webgen-0.3.5/test/webgen/tc_node.rb (from /trunk/webgen/test/webgen/tc_node.rb:294)
91
+ R /versions/webgen-0.3.5/test/webgen/tc_webgen.rb (from /trunk/webgen/test/webgen/tc_webgen.rb:247)
92
+ R /versions/webgen-0.3.5/testsite/src/default.template (from /trunk/webgen/testsite/src/default.template:253)
93
+ A /versions/webgen-0.3.5/testsite/src/images (from /trunk/webgen/testsite/src/images:253)
94
+ R /versions/webgen-0.3.5/testsite/src/meta.info (from /trunk/webgen/testsite/src/meta.info:253)
95
+ R /versions/webgen-0.3.5/testsite/src/projects/00.index.de.page (from /trunk/webgen/testsite/src/projects/00.index.de.page:274)
96
+ R /versions/webgen-0.3.5/testsite/src/projects/subproj/index.page (from /trunk/webgen/testsite/src/projects/subproj/index.page:274)
97
+
98
+ * added webgen version 0.3.5
767
99
  ------------------------------------------------------------------------
768
100
  r212 | thomas | 2005-02-27 13:02:27 +0100 (Sun, 27 Feb 2005) | 4 lines
769
101
  Changed paths: