webgen 0.3.0

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 (105) hide show
  1. data/COPYING +340 -0
  2. data/ChangeLog +2172 -0
  3. data/README +16 -0
  4. data/Rakefile +283 -0
  5. data/TODO +133 -0
  6. data/VERSION +1 -0
  7. data/bin/webgen +5 -0
  8. data/doc/extension.config +55 -0
  9. data/doc/src/default.css +129 -0
  10. data/doc/src/default.template +45 -0
  11. data/doc/src/design.gallery +18 -0
  12. data/doc/src/designs/default.png +0 -0
  13. data/doc/src/designs/nostyle.png +0 -0
  14. data/doc/src/designs/old.png +0 -0
  15. data/doc/src/documentation/extloader.page +20 -0
  16. data/doc/src/documentation/filehandler/backing.page +16 -0
  17. data/doc/src/documentation/filehandler/copy.page +12 -0
  18. data/doc/src/documentation/filehandler/directory.page +15 -0
  19. data/doc/src/documentation/filehandler/index.page +13 -0
  20. data/doc/src/documentation/filehandler/page.page +122 -0
  21. data/doc/src/documentation/filehandler/picturegallery.page +25 -0
  22. data/doc/src/documentation/filehandler/template.page +21 -0
  23. data/doc/src/documentation/index.page +47 -0
  24. data/doc/src/documentation/tags/date.page +19 -0
  25. data/doc/src/documentation/tags/executecommand.page +19 -0
  26. data/doc/src/documentation/tags/includefile.page +15 -0
  27. data/doc/src/documentation/tags/index.page +39 -0
  28. data/doc/src/documentation/tags/lang.de.page +6 -0
  29. data/doc/src/documentation/tags/lang.page +27 -0
  30. data/doc/src/documentation/tags/menu.de.page +11 -0
  31. data/doc/src/documentation/tags/menu.page +30 -0
  32. data/doc/src/documentation/tags/meta.page +20 -0
  33. data/doc/src/documentation/tags/multilang.de.page +4 -0
  34. data/doc/src/documentation/tags/multilang.fr.page +4 -0
  35. data/doc/src/documentation/tags/multilang.page +4 -0
  36. data/doc/src/documentation/tags/navbar.page +19 -0
  37. data/doc/src/documentation/tags/relocatable.page +16 -0
  38. data/doc/src/documentation/tags/wikilink.page +18 -0
  39. data/doc/src/download.page +42 -0
  40. data/doc/src/features.page +14 -0
  41. data/doc/src/index.page +48 -0
  42. data/doc/src/logo.png +0 -0
  43. data/doc/src/meta.info +22 -0
  44. data/install.rb +19 -0
  45. data/lib/util/composite.rb +101 -0
  46. data/lib/util/listener.rb +105 -0
  47. data/lib/webgen/configuration.rb +216 -0
  48. data/lib/webgen/logging.rb +73 -0
  49. data/lib/webgen/node.rb +147 -0
  50. data/lib/webgen/plugins/extloader.rb +88 -0
  51. data/lib/webgen/plugins/filehandler/backing.rb +200 -0
  52. data/lib/webgen/plugins/filehandler/directory.rb +96 -0
  53. data/lib/webgen/plugins/filehandler/filecopy.rb +59 -0
  54. data/lib/webgen/plugins/filehandler/filehandler.rb +209 -0
  55. data/lib/webgen/plugins/filehandler/pagehandler/html.rb +43 -0
  56. data/lib/webgen/plugins/filehandler/pagehandler/markdown.rb +53 -0
  57. data/lib/webgen/plugins/filehandler/pagehandler/page.rb +205 -0
  58. data/lib/webgen/plugins/filehandler/pagehandler/rdoc.rb +50 -0
  59. data/lib/webgen/plugins/filehandler/pagehandler/textile.rb +52 -0
  60. data/lib/webgen/plugins/filehandler/picturegallery.rb +194 -0
  61. data/lib/webgen/plugins/filehandler/template.rb +98 -0
  62. data/lib/webgen/plugins/tags/date.rb +46 -0
  63. data/lib/webgen/plugins/tags/executecommand.rb +53 -0
  64. data/lib/webgen/plugins/tags/includefile.rb +60 -0
  65. data/lib/webgen/plugins/tags/lang.rb +50 -0
  66. data/lib/webgen/plugins/tags/menu.rb +198 -0
  67. data/lib/webgen/plugins/tags/meta.rb +54 -0
  68. data/lib/webgen/plugins/tags/navbar.rb +62 -0
  69. data/lib/webgen/plugins/tags/relocatable.rb +58 -0
  70. data/lib/webgen/plugins/tags/tags.rb +247 -0
  71. data/lib/webgen/plugins/tags/wikilink.rb +58 -0
  72. data/lib/webgen/plugins/treewalker.rb +81 -0
  73. data/lib/webgen/webgen.rb +155 -0
  74. data/setup.rb +1331 -0
  75. data/testsite/config.yaml +7 -0
  76. data/testsite/src/bluecloth.page +102 -0
  77. data/testsite/src/default.css +146 -0
  78. data/testsite/src/default.template +33 -0
  79. data/testsite/src/home.en.page +22 -0
  80. data/testsite/src/home.page +22 -0
  81. data/testsite/src/images/bghack.png +0 -0
  82. data/testsite/src/images/o.png +0 -0
  83. data/testsite/src/images/smagacor.png +0 -0
  84. data/testsite/src/images/tictactoe.png +0 -0
  85. data/testsite/src/images/x.png +0 -0
  86. data/testsite/src/index.page +21 -0
  87. data/testsite/src/meta.info +15 -0
  88. data/testsite/src/news.page +20 -0
  89. data/testsite/src/news_are_so-cool.de.page +19 -0
  90. data/testsite/src/noindex/noindex.page +20 -0
  91. data/testsite/src/pictures/index.page +20 -0
  92. data/testsite/src/projects.de.page +11 -0
  93. data/testsite/src/projects.es.page +11 -0
  94. data/testsite/src/projects.page +17 -0
  95. data/testsite/src/projects/00.index.de.page +10 -0
  96. data/testsite/src/projects/01.project2.page +20 -0
  97. data/testsite/src/projects/02.project1.page +20 -0
  98. data/testsite/src/projects/05.project3.page +22 -0
  99. data/testsite/src/projects/index.page +20 -0
  100. data/testsite/src/projects/subproj/index.page +22 -0
  101. data/testsite/src/projects/subproj/project3.page +21 -0
  102. data/testsite/src/rdoc.page +12 -0
  103. data/testsite/src/redcloth.page +106 -0
  104. data/testsite/src/test.gallery +5 -0
  105. metadata +155 -0
data/COPYING ADDED
@@ -0,0 +1,340 @@
1
+ GNU GENERAL PUBLIC LICENSE
2
+ Version 2, June 1991
3
+
4
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.
5
+ 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
6
+ Everyone is permitted to copy and distribute verbatim copies
7
+ of this license document, but changing it is not allowed.
8
+
9
+ Preamble
10
+
11
+ The licenses for most software are designed to take away your
12
+ freedom to share and change it. By contrast, the GNU General Public
13
+ License is intended to guarantee your freedom to share and change free
14
+ software--to make sure the software is free for all its users. This
15
+ General Public License applies to most of the Free Software
16
+ Foundation's software and to any other program whose authors commit to
17
+ using it. (Some other Free Software Foundation software is covered by
18
+ the GNU Library General Public License instead.) You can apply it to
19
+ your programs, too.
20
+
21
+ When we speak of free software, we are referring to freedom, not
22
+ price. Our General Public Licenses are designed to make sure that you
23
+ have the freedom to distribute copies of free software (and charge for
24
+ this service if you wish), that you receive source code or can get it
25
+ if you want it, that you can change the software or use pieces of it
26
+ in new free programs; and that you know you can do these things.
27
+
28
+ To protect your rights, we need to make restrictions that forbid
29
+ anyone to deny you these rights or to ask you to surrender the rights.
30
+ These restrictions translate to certain responsibilities for you if you
31
+ distribute copies of the software, or if you modify it.
32
+
33
+ For example, if you distribute copies of such a program, whether
34
+ gratis or for a fee, you must give the recipients all the rights that
35
+ you have. You must make sure that they, too, receive or can get the
36
+ source code. And you must show them these terms so they know their
37
+ rights.
38
+
39
+ We protect your rights with two steps: (1) copyright the software, and
40
+ (2) offer you this license which gives you legal permission to copy,
41
+ distribute and/or modify the software.
42
+
43
+ Also, for each author's protection and ours, we want to make certain
44
+ that everyone understands that there is no warranty for this free
45
+ software. If the software is modified by someone else and passed on, we
46
+ want its recipients to know that what they have is not the original, so
47
+ that any problems introduced by others will not reflect on the original
48
+ authors' reputations.
49
+
50
+ Finally, any free program is threatened constantly by software
51
+ patents. We wish to avoid the danger that redistributors of a free
52
+ program will individually obtain patent licenses, in effect making the
53
+ program proprietary. To prevent this, we have made it clear that any
54
+ patent must be licensed for everyone's free use or not licensed at all.
55
+
56
+ The precise terms and conditions for copying, distribution and
57
+ modification follow.
58
+
59
+ GNU GENERAL PUBLIC LICENSE
60
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
61
+
62
+ 0. This License applies to any program or other work which contains
63
+ a notice placed by the copyright holder saying it may be distributed
64
+ under the terms of this General Public License. The "Program", below,
65
+ refers to any such program or work, and a "work based on the Program"
66
+ means either the Program or any derivative work under copyright law:
67
+ that is to say, a work containing the Program or a portion of it,
68
+ either verbatim or with modifications and/or translated into another
69
+ language. (Hereinafter, translation is included without limitation in
70
+ the term "modification".) Each licensee is addressed as "you".
71
+
72
+ Activities other than copying, distribution and modification are not
73
+ covered by this License; they are outside its scope. The act of
74
+ running the Program is not restricted, and the output from the Program
75
+ is covered only if its contents constitute a work based on the
76
+ Program (independent of having been made by running the Program).
77
+ Whether that is true depends on what the Program does.
78
+
79
+ 1. You may copy and distribute verbatim copies of the Program's
80
+ source code as you receive it, in any medium, provided that you
81
+ conspicuously and appropriately publish on each copy an appropriate
82
+ copyright notice and disclaimer of warranty; keep intact all the
83
+ notices that refer to this License and to the absence of any warranty;
84
+ and give any other recipients of the Program a copy of this License
85
+ along with the Program.
86
+
87
+ You may charge a fee for the physical act of transferring a copy, and
88
+ you may at your option offer warranty protection in exchange for a fee.
89
+
90
+ 2. You may modify your copy or copies of the Program or any portion
91
+ of it, thus forming a work based on the Program, and copy and
92
+ distribute such modifications or work under the terms of Section 1
93
+ above, provided that you also meet all of these conditions:
94
+
95
+ a) You must cause the modified files to carry prominent notices
96
+ stating that you changed the files and the date of any change.
97
+
98
+ b) You must cause any work that you distribute or publish, that in
99
+ whole or in part contains or is derived from the Program or any
100
+ part thereof, to be licensed as a whole at no charge to all third
101
+ parties under the terms of this License.
102
+
103
+ c) If the modified program normally reads commands interactively
104
+ when run, you must cause it, when started running for such
105
+ interactive use in the most ordinary way, to print or display an
106
+ announcement including an appropriate copyright notice and a
107
+ notice that there is no warranty (or else, saying that you provide
108
+ a warranty) and that users may redistribute the program under
109
+ these conditions, and telling the user how to view a copy of this
110
+ License. (Exception: if the Program itself is interactive but
111
+ does not normally print such an announcement, your work based on
112
+ the Program is not required to print an announcement.)
113
+
114
+ These requirements apply to the modified work as a whole. If
115
+ identifiable sections of that work are not derived from the Program,
116
+ and can be reasonably considered independent and separate works in
117
+ themselves, then this License, and its terms, do not apply to those
118
+ sections when you distribute them as separate works. But when you
119
+ distribute the same sections as part of a whole which is a work based
120
+ on the Program, the distribution of the whole must be on the terms of
121
+ this License, whose permissions for other licensees extend to the
122
+ entire whole, and thus to each and every part regardless of who wrote it.
123
+
124
+ Thus, it is not the intent of this section to claim rights or contest
125
+ your rights to work written entirely by you; rather, the intent is to
126
+ exercise the right to control the distribution of derivative or
127
+ collective works based on the Program.
128
+
129
+ In addition, mere aggregation of another work not based on the Program
130
+ with the Program (or with a work based on the Program) on a volume of
131
+ a storage or distribution medium does not bring the other work under
132
+ the scope of this License.
133
+
134
+ 3. You may copy and distribute the Program (or a work based on it,
135
+ under Section 2) in object code or executable form under the terms of
136
+ Sections 1 and 2 above provided that you also do one of the following:
137
+
138
+ a) Accompany it with the complete corresponding machine-readable
139
+ source code, which must be distributed under the terms of Sections
140
+ 1 and 2 above on a medium customarily used for software interchange; or,
141
+
142
+ b) Accompany it with a written offer, valid for at least three
143
+ years, to give any third party, for a charge no more than your
144
+ cost of physically performing source distribution, a complete
145
+ machine-readable copy of the corresponding source code, to be
146
+ distributed under the terms of Sections 1 and 2 above on a medium
147
+ customarily used for software interchange; or,
148
+
149
+ c) Accompany it with the information you received as to the offer
150
+ to distribute corresponding source code. (This alternative is
151
+ allowed only for noncommercial distribution and only if you
152
+ received the program in object code or executable form with such
153
+ an offer, in accord with Subsection b above.)
154
+
155
+ The source code for a work means the preferred form of the work for
156
+ making modifications to it. For an executable work, complete source
157
+ code means all the source code for all modules it contains, plus any
158
+ associated interface definition files, plus the scripts used to
159
+ control compilation and installation of the executable. However, as a
160
+ special exception, the source code distributed need not include
161
+ anything that is normally distributed (in either source or binary
162
+ form) with the major components (compiler, kernel, and so on) of the
163
+ operating system on which the executable runs, unless that component
164
+ itself accompanies the executable.
165
+
166
+ If distribution of executable or object code is made by offering
167
+ access to copy from a designated place, then offering equivalent
168
+ access to copy the source code from the same place counts as
169
+ distribution of the source code, even though third parties are not
170
+ compelled to copy the source along with the object code.
171
+
172
+ 4. You may not copy, modify, sublicense, or distribute the Program
173
+ except as expressly provided under this License. Any attempt
174
+ otherwise to copy, modify, sublicense or distribute the Program is
175
+ void, and will automatically terminate your rights under this License.
176
+ However, parties who have received copies, or rights, from you under
177
+ this License will not have their licenses terminated so long as such
178
+ parties remain in full compliance.
179
+
180
+ 5. You are not required to accept this License, since you have not
181
+ signed it. However, nothing else grants you permission to modify or
182
+ distribute the Program or its derivative works. These actions are
183
+ prohibited by law if you do not accept this License. Therefore, by
184
+ modifying or distributing the Program (or any work based on the
185
+ Program), you indicate your acceptance of this License to do so, and
186
+ all its terms and conditions for copying, distributing or modifying
187
+ the Program or works based on it.
188
+
189
+ 6. Each time you redistribute the Program (or any work based on the
190
+ Program), the recipient automatically receives a license from the
191
+ original licensor to copy, distribute or modify the Program subject to
192
+ these terms and conditions. You may not impose any further
193
+ restrictions on the recipients' exercise of the rights granted herein.
194
+ You are not responsible for enforcing compliance by third parties to
195
+ this License.
196
+
197
+ 7. If, as a consequence of a court judgment or allegation of patent
198
+ infringement or for any other reason (not limited to patent issues),
199
+ conditions are imposed on you (whether by court order, agreement or
200
+ otherwise) that contradict the conditions of this License, they do not
201
+ excuse you from the conditions of this License. If you cannot
202
+ distribute so as to satisfy simultaneously your obligations under this
203
+ License and any other pertinent obligations, then as a consequence you
204
+ may not distribute the Program at all. For example, if a patent
205
+ license would not permit royalty-free redistribution of the Program by
206
+ all those who receive copies directly or indirectly through you, then
207
+ the only way you could satisfy both it and this License would be to
208
+ refrain entirely from distribution of the Program.
209
+
210
+ If any portion of this section is held invalid or unenforceable under
211
+ any particular circumstance, the balance of the section is intended to
212
+ apply and the section as a whole is intended to apply in other
213
+ circumstances.
214
+
215
+ It is not the purpose of this section to induce you to infringe any
216
+ patents or other property right claims or to contest validity of any
217
+ such claims; this section has the sole purpose of protecting the
218
+ integrity of the free software distribution system, which is
219
+ implemented by public license practices. Many people have made
220
+ generous contributions to the wide range of software distributed
221
+ through that system in reliance on consistent application of that
222
+ system; it is up to the author/donor to decide if he or she is willing
223
+ to distribute software through any other system and a licensee cannot
224
+ impose that choice.
225
+
226
+ This section is intended to make thoroughly clear what is believed to
227
+ be a consequence of the rest of this License.
228
+
229
+ 8. If the distribution and/or use of the Program is restricted in
230
+ certain countries either by patents or by copyrighted interfaces, the
231
+ original copyright holder who places the Program under this License
232
+ may add an explicit geographical distribution limitation excluding
233
+ those countries, so that distribution is permitted only in or among
234
+ countries not thus excluded. In such case, this License incorporates
235
+ the limitation as if written in the body of this License.
236
+
237
+ 9. The Free Software Foundation may publish revised and/or new versions
238
+ of the General Public License from time to time. Such new versions will
239
+ be similar in spirit to the present version, but may differ in detail to
240
+ address new problems or concerns.
241
+
242
+ Each version is given a distinguishing version number. If the Program
243
+ specifies a version number of this License which applies to it and "any
244
+ later version", you have the option of following the terms and conditions
245
+ either of that version or of any later version published by the Free
246
+ Software Foundation. If the Program does not specify a version number of
247
+ this License, you may choose any version ever published by the Free Software
248
+ Foundation.
249
+
250
+ 10. If you wish to incorporate parts of the Program into other free
251
+ programs whose distribution conditions are different, write to the author
252
+ to ask for permission. For software which is copyrighted by the Free
253
+ Software Foundation, write to the Free Software Foundation; we sometimes
254
+ make exceptions for this. Our decision will be guided by the two goals
255
+ of preserving the free status of all derivatives of our free software and
256
+ of promoting the sharing and reuse of software generally.
257
+
258
+ NO WARRANTY
259
+
260
+ 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
261
+ FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
262
+ OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
263
+ PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
264
+ OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
265
+ MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
266
+ TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
267
+ PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
268
+ REPAIR OR CORRECTION.
269
+
270
+ 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
271
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
272
+ REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
273
+ INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
274
+ OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
275
+ TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
276
+ YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
277
+ PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
278
+ POSSIBILITY OF SUCH DAMAGES.
279
+
280
+ END OF TERMS AND CONDITIONS
281
+
282
+ How to Apply These Terms to Your New Programs
283
+
284
+ If you develop a new program, and you want it to be of the greatest
285
+ possible use to the public, the best way to achieve this is to make it
286
+ free software which everyone can redistribute and change under these terms.
287
+
288
+ To do so, attach the following notices to the program. It is safest
289
+ to attach them to the start of each source file to most effectively
290
+ convey the exclusion of warranty; and each file should have at least
291
+ the "copyright" line and a pointer to where the full notice is found.
292
+
293
+ <one line to give the program's name and a brief idea of what it does.>
294
+ Copyright (C) <year> <name of author>
295
+
296
+ This program is free software; you can redistribute it and/or modify
297
+ it under the terms of the GNU General Public License as published by
298
+ the Free Software Foundation; either version 2 of the License, or
299
+ (at your option) any later version.
300
+
301
+ This program is distributed in the hope that it will be useful,
302
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
303
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
304
+ GNU General Public License for more details.
305
+
306
+ You should have received a copy of the GNU General Public License
307
+ along with this program; if not, write to the Free Software
308
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
309
+
310
+
311
+ Also add information on how to contact you by electronic and paper mail.
312
+
313
+ If the program is interactive, make it output a short notice like this
314
+ when it starts in an interactive mode:
315
+
316
+ Gnomovision version 69, Copyright (C) year name of author
317
+ Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
318
+ This is free software, and you are welcome to redistribute it
319
+ under certain conditions; type `show c' for details.
320
+
321
+ The hypothetical commands `show w' and `show c' should show the appropriate
322
+ parts of the General Public License. Of course, the commands you use may
323
+ be called something other than `show w' and `show c'; they could even be
324
+ mouse-clicks or menu items--whatever suits your program.
325
+
326
+ You should also get your employer (if you work as a programmer) or your
327
+ school, if any, to sign a "copyright disclaimer" for the program, if
328
+ necessary. Here is a sample; alter the names:
329
+
330
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the program
331
+ `Gnomovision' (which makes passes at compilers) written by James Hacker.
332
+
333
+ <signature of Ty Coon>, 1 April 1989
334
+ Ty Coon, President of Vice
335
+
336
+ This General Public License does not permit incorporating your program into
337
+ proprietary programs. If your program is a subroutine library, you may
338
+ consider it more useful to permit linking proprietary applications with the
339
+ library. If this is what you want to do, use the GNU Library General
340
+ Public License instead of this License.
data/ChangeLog ADDED
@@ -0,0 +1,2172 @@
1
+ ------------------------------------------------------------------------
2
+ r203 | thomas | 2005-02-21 19:42:04 +0100 (Mon, 21 Feb 2005) | 1 line
3
+ Changed paths:
4
+ M /trunk/webgen/README
5
+ M /trunk/webgen/Rakefile
6
+ M /trunk/webgen/lib/util/composite.rb
7
+ M /trunk/webgen/lib/util/listener.rb
8
+ M /trunk/webgen/lib/webgen/configuration.rb
9
+ M /trunk/webgen/lib/webgen/logging.rb
10
+ M /trunk/webgen/lib/webgen/node.rb
11
+ M /trunk/webgen/lib/webgen/plugins/extloader.rb
12
+ M /trunk/webgen/lib/webgen/plugins/filehandler/backing.rb
13
+ M /trunk/webgen/lib/webgen/plugins/filehandler/directory.rb
14
+ M /trunk/webgen/lib/webgen/plugins/filehandler/filecopy.rb
15
+ M /trunk/webgen/lib/webgen/plugins/filehandler/filehandler.rb
16
+ M /trunk/webgen/lib/webgen/plugins/filehandler/pagehandler/html.rb
17
+ M /trunk/webgen/lib/webgen/plugins/filehandler/pagehandler/markdown.rb
18
+ M /trunk/webgen/lib/webgen/plugins/filehandler/pagehandler/page.rb
19
+ M /trunk/webgen/lib/webgen/plugins/filehandler/pagehandler/rdoc.rb
20
+ M /trunk/webgen/lib/webgen/plugins/filehandler/pagehandler/textile.rb
21
+ M /trunk/webgen/lib/webgen/plugins/filehandler/picturegallery.rb
22
+ M /trunk/webgen/lib/webgen/plugins/filehandler/template.rb
23
+ M /trunk/webgen/lib/webgen/plugins/tags/date.rb
24
+ M /trunk/webgen/lib/webgen/plugins/tags/executecommand.rb
25
+ M /trunk/webgen/lib/webgen/plugins/tags/includefile.rb
26
+ M /trunk/webgen/lib/webgen/plugins/tags/lang.rb
27
+ M /trunk/webgen/lib/webgen/plugins/tags/menu.rb
28
+ M /trunk/webgen/lib/webgen/plugins/tags/meta.rb
29
+ M /trunk/webgen/lib/webgen/plugins/tags/navbar.rb
30
+ M /trunk/webgen/lib/webgen/plugins/tags/relocatable.rb
31
+ M /trunk/webgen/lib/webgen/plugins/tags/tags.rb
32
+ M /trunk/webgen/lib/webgen/plugins/tags/wikilink.rb
33
+ M /trunk/webgen/lib/webgen/plugins/treewalker.rb
34
+ M /trunk/webgen/lib/webgen/webgen.rb
35
+
36
+ * updated summary
37
+ ------------------------------------------------------------------------
38
+ r202 | thomas | 2005-02-21 19:32:13 +0100 (Mon, 21 Feb 2005) | 1 line
39
+ Changed paths:
40
+ M /trunk/webgen/TODO
41
+ M /trunk/webgen/doc/src/default.css
42
+ A /trunk/webgen/doc/src/design.gallery
43
+ A /trunk/webgen/doc/src/designs/default.png
44
+ A /trunk/webgen/doc/src/designs/nostyle.png
45
+ A /trunk/webgen/doc/src/designs/old.png
46
+ M /trunk/webgen/doc/src/documentation/filehandler/picturegallery.page
47
+ M /trunk/webgen/lib/webgen/plugins/filehandler/pagehandler/page.rb
48
+ M /trunk/webgen/lib/webgen/plugins/filehandler/picturegallery.rb
49
+
50
+ * updated picture gallery handler
51
+ ------------------------------------------------------------------------
52
+ r201 | thomas | 2005-02-21 14:05:36 +0100 (Mon, 21 Feb 2005) | 7 lines
53
+ Changed paths:
54
+ M /trunk/webgen/TODO
55
+ M /trunk/webgen/doc/extension.config
56
+ M /trunk/webgen/doc/src/documentation/filehandler/directory.page
57
+ M /trunk/webgen/doc/src/documentation/tags/navbar.page
58
+ M /trunk/webgen/lib/webgen/configuration.rb
59
+ M /trunk/webgen/lib/webgen/node.rb
60
+ M /trunk/webgen/lib/webgen/plugins/extloader.rb
61
+ M /trunk/webgen/lib/webgen/plugins/filehandler/backing.rb
62
+ M /trunk/webgen/lib/webgen/plugins/filehandler/directory.rb
63
+ M /trunk/webgen/lib/webgen/plugins/filehandler/filecopy.rb
64
+ M /trunk/webgen/lib/webgen/plugins/filehandler/filehandler.rb
65
+ D /trunk/webgen/lib/webgen/plugins/filehandler/html.rb
66
+ D /trunk/webgen/lib/webgen/plugins/filehandler/markdown.rb
67
+ D /trunk/webgen/lib/webgen/plugins/filehandler/page.rb
68
+ A /trunk/webgen/lib/webgen/plugins/filehandler/pagehandler
69
+ A /trunk/webgen/lib/webgen/plugins/filehandler/pagehandler/html.rb (from /trunk/webgen/lib/webgen/plugins/filehandler/html.rb:176)
70
+ A /trunk/webgen/lib/webgen/plugins/filehandler/pagehandler/markdown.rb (from /trunk/webgen/lib/webgen/plugins/filehandler/markdown.rb:193)
71
+ A /trunk/webgen/lib/webgen/plugins/filehandler/pagehandler/page.rb (from /trunk/webgen/lib/webgen/plugins/filehandler/page.rb:199)
72
+ A /trunk/webgen/lib/webgen/plugins/filehandler/pagehandler/rdoc.rb (from /trunk/webgen/lib/webgen/plugins/filehandler/rdoc.rb:185)
73
+ A /trunk/webgen/lib/webgen/plugins/filehandler/pagehandler/textile.rb (from /trunk/webgen/lib/webgen/plugins/filehandler/textile.rb:193)
74
+ M /trunk/webgen/lib/webgen/plugins/filehandler/picturegallery.rb
75
+ D /trunk/webgen/lib/webgen/plugins/filehandler/rdoc.rb
76
+ M /trunk/webgen/lib/webgen/plugins/filehandler/template.rb
77
+ D /trunk/webgen/lib/webgen/plugins/filehandler/textile.rb
78
+ M /trunk/webgen/lib/webgen/plugins/tags/date.rb
79
+ M /trunk/webgen/lib/webgen/plugins/tags/executecommand.rb
80
+ M /trunk/webgen/lib/webgen/plugins/tags/includefile.rb
81
+ M /trunk/webgen/lib/webgen/plugins/tags/lang.rb
82
+ M /trunk/webgen/lib/webgen/plugins/tags/menu.rb
83
+ M /trunk/webgen/lib/webgen/plugins/tags/meta.rb
84
+ M /trunk/webgen/lib/webgen/plugins/tags/navbar.rb
85
+ M /trunk/webgen/lib/webgen/plugins/tags/relocatable.rb
86
+ M /trunk/webgen/lib/webgen/plugins/tags/tags.rb
87
+ M /trunk/webgen/lib/webgen/plugins/tags/wikilink.rb
88
+ M /trunk/webgen/lib/webgen/plugins/treewalker.rb
89
+ A /trunk/webgen/test/webgen/filehandlers
90
+ A /trunk/webgen/test/webgen/filehandlers/tc_page.rb
91
+ M /trunk/webgen/test/webgen/tc_configuration.rb
92
+ M /trunk/webgen/test/webgen/tc_node.rb
93
+
94
+ * removed Plugin.plugin method, class name of plugin is used for that now
95
+ * new default verbosity level = 2 (warn)
96
+ * BUG fixed in Node#relpath_to_node where a dest entry with slashes (e.g. rdoc/index.html) produced errors
97
+ * moved page.rb and content handler files to subdirectory pagehandler
98
+ * PageHandler#parse_data only accepts string, no file name anymore -> more orthogonal
99
+ * moved DefaultHandler#extension call in file handlers to DefaultHandler#initialize method
100
+ * added basic test case for PageHandler#analyse_file_name
101
+ ------------------------------------------------------------------------
102
+ r200 | thomas | 2005-02-20 00:04:25 +0100 (Sun, 20 Feb 2005) | 6 lines
103
+ Changed paths:
104
+ M /trunk/webgen/TODO
105
+ M /trunk/webgen/doc/src/default.css
106
+ M /trunk/webgen/doc/src/default.template
107
+ A /trunk/webgen/doc/src/designs
108
+ M /trunk/webgen/doc/src/documentation/filehandler/index.page
109
+ M /trunk/webgen/doc/src/documentation/index.page
110
+ A /trunk/webgen/doc/src/documentation/tags/lang.de.page
111
+ M /trunk/webgen/doc/src/documentation/tags/lang.page
112
+ M /trunk/webgen/doc/src/documentation/tags/wikilink.page
113
+ M /trunk/webgen/doc/src/download.page
114
+ A /trunk/webgen/doc/src/logo.png
115
+ M /trunk/webgen/lib/webgen/plugins/filehandler/filehandler.rb
116
+ M /trunk/webgen/lib/webgen/plugins/filehandler/picturegallery.rb
117
+ M /trunk/webgen/test/setup.rb
118
+ A /trunk/webgen/test/webgen/tc_webgen.rb
119
+
120
+ * small changes in picturegallery.rb
121
+ * fixed BUG in filehandler.rb where a file name with a dot at the beginning lead to a false extension
122
+ * improved template and css file for documentation
123
+ * added examples to wikilink and lang documentation pages
124
+ * added tests for webgen command line parameters
125
+ * added logo.png to documentation
126
+ ------------------------------------------------------------------------
127
+ r199 | thomas | 2005-02-09 15:11:44 +0100 (Wed, 09 Feb 2005) | 2 lines
128
+ Changed paths:
129
+ M /trunk/webgen/TODO
130
+ M /trunk/webgen/doc/src/documentation/filehandler/page.page
131
+ M /trunk/webgen/lib/webgen/plugins/filehandler/page.rb
132
+
133
+ * added parameter defaultContentFormat to PageHandler
134
+ * adjusted PageHandler documentation
135
+ ------------------------------------------------------------------------
136
+ r194 | thomas | 2005-02-09 13:48:30 +0100 (Wed, 09 Feb 2005) | 1 line
137
+ Changed paths:
138
+ A /trunk/webgen/doc/src/documentation/extloader.page
139
+
140
+ * added documentation page for extloader ;-)
141
+ ------------------------------------------------------------------------
142
+ r193 | thomas | 2005-02-09 13:47:56 +0100 (Wed, 09 Feb 2005) | 5 lines
143
+ Changed paths:
144
+ M /trunk/webgen/TODO
145
+ A /trunk/webgen/doc/extension.config (from /trunk/webgen/doc/tags.config:191)
146
+ M /trunk/webgen/doc/src/documentation/filehandler/index.page
147
+ D /trunk/webgen/doc/tags.config
148
+ M /trunk/webgen/lib/webgen/configuration.rb
149
+ A /trunk/webgen/lib/webgen/plugins/extloader.rb (from /trunk/webgen/lib/webgen/plugins/tags/tagloader.rb:191)
150
+ M /trunk/webgen/lib/webgen/plugins/filehandler/markdown.rb
151
+ M /trunk/webgen/lib/webgen/plugins/filehandler/textile.rb
152
+ D /trunk/webgen/lib/webgen/plugins/tags/tagloader.rb
153
+ M /trunk/webgen/lib/webgen/webgen.rb
154
+ A /trunk/webgen/otherdata
155
+ A /trunk/webgen/otherdata/logo.svg
156
+
157
+ * added logo.svg
158
+ * fixed BUG where command line parameters did not work
159
+ * renamed tagloader.rb to extloader.rb
160
+ * added documentation for ExtensionLoader
161
+ * fixed markdown.rb and textile.rb to throw a warning when a required file is not available
162
+ ------------------------------------------------------------------------
163
+ r191 | thomas | 2005-02-02 20:55:20 +0100 (Wed, 02 Feb 2005) | 3 lines
164
+ Changed paths:
165
+ M /trunk/webgen/TODO
166
+ M /trunk/webgen/doc/tags.config
167
+ M /trunk/webgen/lib/webgen/configuration.rb
168
+ M /trunk/webgen/lib/webgen/plugins/filehandler/backing.rb
169
+ M /trunk/webgen/lib/webgen/plugins/filehandler/directory.rb
170
+ M /trunk/webgen/lib/webgen/plugins/filehandler/page.rb
171
+ M /trunk/webgen/lib/webgen/plugins/filehandler/picturegallery.rb
172
+ M /trunk/webgen/lib/webgen/plugins/filehandler/template.rb
173
+ M /trunk/webgen/lib/webgen/plugins/tags/tagloader.rb
174
+
175
+ * added Plugin.extension method for file handlers
176
+ * fixed BUG in tagloader.rb where invalid tagconfig file forced webgen to abort
177
+ * modified all file handlers to use Plugin.extension
178
+ ------------------------------------------------------------------------
179
+ r189 | thomas | 2005-02-02 19:30:05 +0100 (Wed, 02 Feb 2005) | 3 lines
180
+ Changed paths:
181
+ M /trunk/webgen/TODO
182
+ A /trunk/webgen/doc/src/documentation/filehandler/picturegallery.page
183
+ M /trunk/webgen/doc/tags.config
184
+ M /trunk/webgen/lib/webgen/plugins/filehandler/backing.rb
185
+ M /trunk/webgen/lib/webgen/plugins/filehandler/directory.rb
186
+ M /trunk/webgen/lib/webgen/plugins/filehandler/filecopy.rb
187
+ M /trunk/webgen/lib/webgen/plugins/filehandler/filehandler.rb
188
+ M /trunk/webgen/lib/webgen/plugins/filehandler/page.rb
189
+ A /trunk/webgen/lib/webgen/plugins/filehandler/picturegallery.rb
190
+ M /trunk/webgen/lib/webgen/plugins/filehandler/template.rb
191
+ M /trunk/webgen/testsite/src/default.template
192
+
193
+ * added basic picture gallery file handler and docu page
194
+ * attr processor on nodes is now set by the processors themselves
195
+ * page nodes can now be created without actual files with PageHandler#create_node_from_data
196
+ ------------------------------------------------------------------------
197
+ r188 | thomas | 2005-02-02 16:06:13 +0100 (Wed, 02 Feb 2005) | 4 lines
198
+ Changed paths:
199
+ M /trunk/webgen/TODO
200
+ M /trunk/webgen/doc/src/default.css
201
+ M /trunk/webgen/doc/src/default.template
202
+ M /trunk/webgen/doc/src/documentation/tags/date.page
203
+ M /trunk/webgen/doc/src/documentation/tags/executecommand.page
204
+ M /trunk/webgen/doc/src/documentation/tags/includefile.page
205
+ M /trunk/webgen/doc/src/documentation/tags/lang.page
206
+ M /trunk/webgen/doc/src/documentation/tags/menu.page
207
+ M /trunk/webgen/doc/src/documentation/tags/meta.page
208
+ M /trunk/webgen/doc/src/documentation/tags/navbar.page
209
+ A /trunk/webgen/doc/src/documentation/tags/wikilink.page
210
+ M /trunk/webgen/doc/src/index.page
211
+ M /trunk/webgen/lib/webgen/plugins/tags/tags.rb
212
+ A /trunk/webgen/lib/webgen/plugins/tags/wikilink.rb
213
+
214
+ * added new tag wikilink and its documentation page
215
+ * fixed BUG in tags.rb where incorrect tag data raised an error and exited webgen
216
+ * unified the look of the examples on the tag description pages
217
+ * added feedback link to default.template
218
+ ------------------------------------------------------------------------
219
+ r187 | thomas | 2005-01-28 12:01:49 +0100 (Fri, 28 Jan 2005) | 1 line
220
+ Changed paths:
221
+ M /trunk/webgen/TODO
222
+ M /trunk/webgen/doc/src/documentation/tags/index.page
223
+
224
+ * added a little bit of documentation
225
+ ------------------------------------------------------------------------
226
+ r185 | thomas | 2005-01-28 03:36:27 +0100 (Fri, 28 Jan 2005) | 8 lines
227
+ Changed paths:
228
+ M /trunk/webgen/doc/src/documentation/tags/includefile.page
229
+ M /trunk/webgen/doc/tags.config
230
+ M /trunk/webgen/lib/webgen/node.rb
231
+ M /trunk/webgen/lib/webgen/plugins/filehandler/backing.rb
232
+ M /trunk/webgen/lib/webgen/plugins/filehandler/directory.rb
233
+ M /trunk/webgen/lib/webgen/plugins/filehandler/filecopy.rb
234
+ M /trunk/webgen/lib/webgen/plugins/filehandler/filehandler.rb
235
+ M /trunk/webgen/lib/webgen/plugins/filehandler/markdown.rb
236
+ M /trunk/webgen/lib/webgen/plugins/filehandler/page.rb
237
+ M /trunk/webgen/lib/webgen/plugins/filehandler/rdoc.rb
238
+ M /trunk/webgen/lib/webgen/plugins/filehandler/template.rb
239
+ M /trunk/webgen/lib/webgen/plugins/filehandler/textile.rb
240
+ M /trunk/webgen/lib/webgen/plugins/tags/executecommand.rb
241
+ M /trunk/webgen/lib/webgen/plugins/tags/includefile.rb
242
+ M /trunk/webgen/lib/webgen/plugins/tags/menu.rb
243
+ M /trunk/webgen/lib/webgen/plugins/tags/navbar.rb
244
+ M /trunk/webgen/lib/webgen/plugins/tags/relocatable.rb
245
+ D /trunk/webgen/lib/webgen/plugins/tags/simple.rb
246
+ M /trunk/webgen/lib/webgen/plugins/tags/tags.rb
247
+ M /trunk/webgen/test/webgen/tc_node.rb
248
+
249
+ * Node#relpath_to_node has a new optional parameter includeDestNode
250
+ * deleted old tags/simple.rb
251
+ * added to new parameters to IncludeFileTag and ExecuteCommandTag
252
+ * fixed issues with formatting in many files
253
+ * fixed bug in TemplateFileHandler where Exception was raised when no default template in root dir available -> DummyTemplate now returned
254
+ * added error processing routines to many files
255
+ * fixed bugs in Node#in_subtree? and Node#level
256
+ * added tag name to informational output on tags
257
+ ------------------------------------------------------------------------
258
+ r184 | thomas | 2005-01-27 22:47:34 +0100 (Thu, 27 Jan 2005) | 5 lines
259
+ Changed paths:
260
+ M /trunk/webgen/Rakefile
261
+ M /trunk/webgen/TODO
262
+ M /trunk/webgen/lib/webgen/configuration.rb
263
+ M /trunk/webgen/lib/webgen/logging.rb
264
+ M /trunk/webgen/lib/webgen/plugins/filehandler/filehandler.rb
265
+ M /trunk/webgen/lib/webgen/plugins/filehandler/page.rb
266
+ M /trunk/webgen/test/runtests.rb
267
+ A /trunk/webgen/test/webgen/tc_configuration.rb
268
+
269
+ * fixed Plugin.set_param, Plugin#[], Plugin#has_param? to look in ancestor classes for parameters
270
+ * call stack now also shown as debug message when error occured
271
+ * fixed BUG when options in page file are not valid YAML
272
+ * fixed BUG in a log message in FileHandler
273
+ * rake doc is now validating the generated files
274
+ ------------------------------------------------------------------------
275
+ r183 | thomas | 2005-01-27 02:17:56 +0100 (Thu, 27 Jan 2005) | 8 lines
276
+ Changed paths:
277
+ M /trunk/webgen/Rakefile
278
+ M /trunk/webgen/lib/webgen/node.rb
279
+ M /trunk/webgen/lib/webgen/plugins/tags/menu.rb
280
+ A /trunk/webgen/test/runtests.rb
281
+ A /trunk/webgen/test/setup.rb
282
+ A /trunk/webgen/test/util/tc_composite.rb (from /trunk/webgen/test/util/tc_testcomposite.rb:182)
283
+ A /trunk/webgen/test/util/tc_listener.rb (from /trunk/webgen/test/util/tc_testlistener.rb:182)
284
+ D /trunk/webgen/test/util/tc_testcomposite.rb
285
+ D /trunk/webgen/test/util/tc_testlistener.rb
286
+ A /trunk/webgen/test/webgen/tc_node.rb
287
+
288
+ * removed test prefix from exisiting test files
289
+ * added test file for node.rb
290
+ * added helper files setup.rb and runtests.rb for testing
291
+ * fixed bug in Node#recursive_value
292
+ * made Node#relpath_to more common
293
+ * refactored Node#level to not use recursive_value
294
+ * Node#in_subtree? has now the correct semantics and one bug fixed
295
+ * made Node#get_node_for_string more common
296
+ ------------------------------------------------------------------------
297
+ r182 | thomas | 2005-01-26 21:46:02 +0100 (Wed, 26 Jan 2005) | 2 lines
298
+ Changed paths:
299
+ A /trunk/webgen/test (from /trunk/webgen/tests:165)
300
+ D /trunk/webgen/test/util/tc_testups.rb
301
+ D /trunk/webgen/tests
302
+
303
+ * renamed dir tests to test
304
+ * deleted tc_testups.rb as it is not needed anymore
305
+ ------------------------------------------------------------------------
306
+ r181 | thomas | 2005-01-26 21:44:19 +0100 (Wed, 26 Jan 2005) | 2 lines
307
+ Changed paths:
308
+ M /trunk/webgen/TODO
309
+ M /trunk/webgen/doc/tags.config
310
+ M /trunk/webgen/lib/webgen/configuration.rb
311
+ M /trunk/webgen/lib/webgen/plugins/tags/executecommand.rb
312
+ M /trunk/webgen/lib/webgen/plugins/tags/includefile.rb
313
+ M /trunk/webgen/lib/webgen/plugins/tags/relocatable.rb
314
+ M /trunk/webgen/lib/webgen/plugins/tags/tags.rb
315
+
316
+ * added better mandatory parameter support for tags
317
+ * changed tag plugins to use new mandatory parameter support
318
+ ------------------------------------------------------------------------
319
+ r180 | thomas | 2005-01-26 03:38:57 +0100 (Wed, 26 Jan 2005) | 2 lines
320
+ Changed paths:
321
+ M /trunk/webgen/README
322
+ M /trunk/webgen/TODO
323
+ M /trunk/webgen/lib/webgen/configuration.rb
324
+ M /trunk/webgen/lib/webgen/logging.rb
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/filehandler.rb
328
+ M /trunk/webgen/lib/webgen/plugins/filehandler/page.rb
329
+ M /trunk/webgen/lib/webgen/plugins/filehandler/template.rb
330
+ M /trunk/webgen/lib/webgen/plugins/tags/date.rb
331
+ M /trunk/webgen/lib/webgen/plugins/tags/executecommand.rb
332
+ M /trunk/webgen/lib/webgen/plugins/tags/includefile.rb
333
+ M /trunk/webgen/lib/webgen/plugins/tags/lang.rb
334
+ M /trunk/webgen/lib/webgen/plugins/tags/menu.rb
335
+ M /trunk/webgen/lib/webgen/plugins/tags/meta.rb
336
+ M /trunk/webgen/lib/webgen/plugins/tags/navbar.rb
337
+ M /trunk/webgen/lib/webgen/plugins/tags/relocatable.rb
338
+ A /trunk/webgen/lib/webgen/plugins/tags/simple.rb
339
+ A /trunk/webgen/lib/webgen/plugins/tags/tagloader.rb
340
+ M /trunk/webgen/lib/webgen/plugins/tags/tags.rb
341
+ M /trunk/webgen/lib/webgen/webgen.rb
342
+
343
+ * fixed bugs
344
+ * refactored code
345
+ ------------------------------------------------------------------------
346
+ r179 | thomas | 2005-01-26 03:37:11 +0100 (Wed, 26 Jan 2005) | 2 lines
347
+ Changed paths:
348
+ M /trunk/webgen/doc/src/default.css
349
+ M /trunk/webgen/doc/src/default.template
350
+ D /trunk/webgen/doc/src/documentation/filehandler/backing.fragment
351
+ A /trunk/webgen/doc/src/documentation/filehandler/backing.page
352
+ D /trunk/webgen/doc/src/documentation/filehandler/copy.fragment
353
+ A /trunk/webgen/doc/src/documentation/filehandler/copy.page
354
+ D /trunk/webgen/doc/src/documentation/filehandler/default.template
355
+ D /trunk/webgen/doc/src/documentation/filehandler/directory.fragment
356
+ A /trunk/webgen/doc/src/documentation/filehandler/directory.page
357
+ D /trunk/webgen/doc/src/documentation/filehandler/htmlfragment.fragment
358
+ D /trunk/webgen/doc/src/documentation/filehandler/index.fragment
359
+ A /trunk/webgen/doc/src/documentation/filehandler/index.page
360
+ A /trunk/webgen/doc/src/documentation/filehandler/page.page
361
+ D /trunk/webgen/doc/src/documentation/filehandler/template.fragment
362
+ A /trunk/webgen/doc/src/documentation/filehandler/template.page
363
+ D /trunk/webgen/doc/src/documentation/filehandler/xmlpage.xpage
364
+ D /trunk/webgen/doc/src/documentation/filehandler/yamlpage.ypage
365
+ D /trunk/webgen/doc/src/documentation/index.fragment
366
+ A /trunk/webgen/doc/src/documentation/index.page
367
+ D /trunk/webgen/doc/src/documentation/tags/date.fragment
368
+ A /trunk/webgen/doc/src/documentation/tags/date.page (from /trunk/webgen/doc/src/documentation/tags/date.fragment:165)
369
+ D /trunk/webgen/doc/src/documentation/tags/default.template
370
+ D /trunk/webgen/doc/src/documentation/tags/executecommand.fragment
371
+ A /trunk/webgen/doc/src/documentation/tags/executecommand.page (from /trunk/webgen/doc/src/documentation/tags/executecommand.fragment:165)
372
+ D /trunk/webgen/doc/src/documentation/tags/includefile.fragment
373
+ A /trunk/webgen/doc/src/documentation/tags/includefile.page (from /trunk/webgen/doc/src/documentation/tags/includefile.fragment:165)
374
+ D /trunk/webgen/doc/src/documentation/tags/index.fragment
375
+ A /trunk/webgen/doc/src/documentation/tags/index.page (from /trunk/webgen/doc/src/documentation/tags/index.fragment:165)
376
+ D /trunk/webgen/doc/src/documentation/tags/lang.fragment
377
+ A /trunk/webgen/doc/src/documentation/tags/lang.page (from /trunk/webgen/doc/src/documentation/tags/lang.fragment:165)
378
+ D /trunk/webgen/doc/src/documentation/tags/menu.de.fragment
379
+ A /trunk/webgen/doc/src/documentation/tags/menu.de.page (from /trunk/webgen/doc/src/documentation/tags/menu.de.fragment:165)
380
+ D /trunk/webgen/doc/src/documentation/tags/menu.fragment
381
+ A /trunk/webgen/doc/src/documentation/tags/menu.page (from /trunk/webgen/doc/src/documentation/tags/menu.fragment:165)
382
+ D /trunk/webgen/doc/src/documentation/tags/meta.fragment
383
+ A /trunk/webgen/doc/src/documentation/tags/meta.page (from /trunk/webgen/doc/src/documentation/tags/meta.fragment:165)
384
+ D /trunk/webgen/doc/src/documentation/tags/multilang.de.fragment
385
+ A /trunk/webgen/doc/src/documentation/tags/multilang.de.page (from /trunk/webgen/doc/src/documentation/tags/multilang.de.fragment:165)
386
+ D /trunk/webgen/doc/src/documentation/tags/multilang.fr.fragment
387
+ A /trunk/webgen/doc/src/documentation/tags/multilang.fr.page (from /trunk/webgen/doc/src/documentation/tags/multilang.fr.fragment:165)
388
+ D /trunk/webgen/doc/src/documentation/tags/multilang.fragment
389
+ A /trunk/webgen/doc/src/documentation/tags/multilang.page (from /trunk/webgen/doc/src/documentation/tags/multilang.fragment:165)
390
+ D /trunk/webgen/doc/src/documentation/tags/navbar.fragment
391
+ A /trunk/webgen/doc/src/documentation/tags/navbar.page (from /trunk/webgen/doc/src/documentation/tags/navbar.fragment:165)
392
+ D /trunk/webgen/doc/src/documentation/tags/relocatable.fragment
393
+ A /trunk/webgen/doc/src/documentation/tags/relocatable.page (from /trunk/webgen/doc/src/documentation/tags/relocatable.fragment:165)
394
+ D /trunk/webgen/doc/src/download.fragment
395
+ A /trunk/webgen/doc/src/download.page (from /trunk/webgen/doc/src/download.fragment:165)
396
+ D /trunk/webgen/doc/src/features.fragment
397
+ A /trunk/webgen/doc/src/features.page (from /trunk/webgen/doc/src/features.fragment:165)
398
+ D /trunk/webgen/doc/src/filehandler
399
+ D /trunk/webgen/doc/src/index.fragment
400
+ A /trunk/webgen/doc/src/index.page (from /trunk/webgen/doc/src/index.fragment:165)
401
+ A /trunk/webgen/doc/src/meta.info (from /trunk/webgen/doc/src/metainfo.backing:165)
402
+ D /trunk/webgen/doc/src/metainfo.backing
403
+ D /trunk/webgen/doc/src/tags
404
+ A /trunk/webgen/doc/tags.config
405
+
406
+ * moved documentation files to adhere to new naming standard
407
+ * converted everything to Textile markup and improved documentation
408
+ ------------------------------------------------------------------------
409
+ r178 | thomas | 2005-01-24 17:58:41 +0100 (Mon, 24 Jan 2005) | 2 lines
410
+ Changed paths:
411
+ M /trunk/webgen/TODO
412
+ M /trunk/webgen/lib/webgen/configuration.rb
413
+ M /trunk/webgen/lib/webgen/node.rb
414
+ M /trunk/webgen/lib/webgen/plugins/tags/date.rb
415
+ M /trunk/webgen/lib/webgen/plugins/tags/lang.rb
416
+ M /trunk/webgen/lib/webgen/plugins/tags/menu.rb
417
+ M /trunk/webgen/lib/webgen/plugins/tags/meta.rb
418
+ M /trunk/webgen/lib/webgen/plugins/tags/navbar.rb
419
+ M /trunk/webgen/lib/webgen/plugins/tags/relocatable.rb
420
+ M /trunk/webgen/lib/webgen/plugins/tags/tags.rb
421
+
422
+ * fixed bug in Node#recursive_value: ignoreVirtual was not passed on to recursive call
423
+ * added call to super in tag plugins
424
+ ------------------------------------------------------------------------
425
+ r176 | thomas | 2005-01-20 00:08:07 +0100 (Thu, 20 Jan 2005) | 3 lines
426
+ Changed paths:
427
+ M /trunk/webgen/lib/webgen/configuration.rb
428
+ M /trunk/webgen/lib/webgen/logging.rb
429
+ M /trunk/webgen/lib/webgen/plugins/filehandler/backing.rb
430
+ D /trunk/webgen/lib/webgen/plugins/filehandler/blueclothpage.rb
431
+ M /trunk/webgen/lib/webgen/plugins/filehandler/directory.rb
432
+ M /trunk/webgen/lib/webgen/plugins/filehandler/filecopy.rb
433
+ M /trunk/webgen/lib/webgen/plugins/filehandler/filehandler.rb
434
+ A /trunk/webgen/lib/webgen/plugins/filehandler/html.rb (from /trunk/webgen/lib/webgen/plugins/filehandler/htmlfragmentpage.rb:173)
435
+ D /trunk/webgen/lib/webgen/plugins/filehandler/htmlfragmentpage.rb
436
+ A /trunk/webgen/lib/webgen/plugins/filehandler/markdown.rb (from /trunk/webgen/lib/webgen/plugins/filehandler/blueclothpage.rb:173)
437
+ M /trunk/webgen/lib/webgen/plugins/filehandler/page.rb
438
+ A /trunk/webgen/lib/webgen/plugins/filehandler/rdoc.rb (from /trunk/webgen/lib/webgen/plugins/filehandler/rdocpage.rb:173)
439
+ D /trunk/webgen/lib/webgen/plugins/filehandler/rdocpage.rb
440
+ D /trunk/webgen/lib/webgen/plugins/filehandler/redclothpage.rb
441
+ M /trunk/webgen/lib/webgen/plugins/filehandler/template.rb
442
+ A /trunk/webgen/lib/webgen/plugins/filehandler/textile.rb (from /trunk/webgen/lib/webgen/plugins/filehandler/redclothpage.rb:173)
443
+ D /trunk/webgen/lib/webgen/plugins/filehandler/xmlpage.rb
444
+ D /trunk/webgen/lib/webgen/plugins/filehandler/yamlpage.rb
445
+ M /trunk/webgen/lib/webgen/plugins/tags/date.rb
446
+ M /trunk/webgen/lib/webgen/plugins/tags/executecommand.rb
447
+ M /trunk/webgen/lib/webgen/plugins/tags/includefile.rb
448
+ M /trunk/webgen/lib/webgen/plugins/tags/lang.rb
449
+ M /trunk/webgen/lib/webgen/plugins/tags/menu.rb
450
+ M /trunk/webgen/lib/webgen/plugins/tags/meta.rb
451
+ M /trunk/webgen/lib/webgen/plugins/tags/navbar.rb
452
+ M /trunk/webgen/lib/webgen/plugins/tags/relocatable.rb
453
+ M /trunk/webgen/lib/webgen/plugins/tags/tags.rb
454
+ M /trunk/webgen/lib/webgen/plugins/treewalker.rb
455
+ M /trunk/webgen/lib/webgen/webgen.rb
456
+
457
+ * changed all plugins so that the testsite can be converted without errors
458
+ * fixed some apparent bugs (cannot remember where ;-)
459
+ * fixed some code style issues
460
+ ------------------------------------------------------------------------
461
+ r175 | thomas | 2005-01-20 00:03:03 +0100 (Thu, 20 Jan 2005) | 1 line
462
+ Changed paths:
463
+ M /trunk/webgen/testsite/config.yaml
464
+ D /trunk/webgen/testsite/src/bluecloth.bcloth
465
+ A /trunk/webgen/testsite/src/bluecloth.page
466
+ A /trunk/webgen/testsite/src/home.en.page (from /trunk/webgen/testsite/src/home.en.xpage:165)
467
+ D /trunk/webgen/testsite/src/home.en.xpage
468
+ A /trunk/webgen/testsite/src/home.page (from /trunk/webgen/testsite/src/home.xpage:165)
469
+ D /trunk/webgen/testsite/src/home.xpage
470
+ A /trunk/webgen/testsite/src/index.page (from /trunk/webgen/testsite/src/index.xpage:165)
471
+ D /trunk/webgen/testsite/src/index.xpage
472
+ A /trunk/webgen/testsite/src/meta.info (from /trunk/webgen/testsite/src/metainfo.backing:165)
473
+ D /trunk/webgen/testsite/src/metainfo.backing
474
+ A /trunk/webgen/testsite/src/news.page (from /trunk/webgen/testsite/src/news.xpage:165)
475
+ D /trunk/webgen/testsite/src/news.xpage
476
+ A /trunk/webgen/testsite/src/news_are_so-cool.de.page (from /trunk/webgen/testsite/src/news_are_so-cool.de.xpage:165)
477
+ D /trunk/webgen/testsite/src/news_are_so-cool.de.xpage
478
+ A /trunk/webgen/testsite/src/noindex/noindex.page (from /trunk/webgen/testsite/src/noindex/noindex.xpage:165)
479
+ D /trunk/webgen/testsite/src/noindex/noindex.xpage
480
+ A /trunk/webgen/testsite/src/pictures/index.page (from /trunk/webgen/testsite/src/pictures/index.xpage:165)
481
+ D /trunk/webgen/testsite/src/pictures/index.xpage
482
+ A /trunk/webgen/testsite/src/projects/00.index.de.page (from /trunk/webgen/testsite/src/projects/00.index.de.ypage:165)
483
+ D /trunk/webgen/testsite/src/projects/00.index.de.ypage
484
+ A /trunk/webgen/testsite/src/projects/01.project2.page (from /trunk/webgen/testsite/src/projects/01.project2.xpage:165)
485
+ D /trunk/webgen/testsite/src/projects/01.project2.xpage
486
+ A /trunk/webgen/testsite/src/projects/02.project1.page (from /trunk/webgen/testsite/src/projects/02.project1.xpage:165)
487
+ D /trunk/webgen/testsite/src/projects/02.project1.xpage
488
+ A /trunk/webgen/testsite/src/projects/05.project3.page (from /trunk/webgen/testsite/src/projects/05.project3.xpage:165)
489
+ D /trunk/webgen/testsite/src/projects/05.project3.xpage
490
+ A /trunk/webgen/testsite/src/projects/index.page (from /trunk/webgen/testsite/src/projects/index.xpage:165)
491
+ D /trunk/webgen/testsite/src/projects/index.xpage
492
+ A /trunk/webgen/testsite/src/projects/subproj/index.page (from /trunk/webgen/testsite/src/projects/subproj/index.xpage:165)
493
+ D /trunk/webgen/testsite/src/projects/subproj/index.xpage
494
+ A /trunk/webgen/testsite/src/projects/subproj/project3.page (from /trunk/webgen/testsite/src/projects/subproj/project3.xpage:165)
495
+ D /trunk/webgen/testsite/src/projects/subproj/project3.xpage
496
+ A /trunk/webgen/testsite/src/projects.de.page (from /trunk/webgen/testsite/src/projects.de.ypage:165)
497
+ D /trunk/webgen/testsite/src/projects.de.ypage
498
+ A /trunk/webgen/testsite/src/projects.es.page (from /trunk/webgen/testsite/src/projects.es.ypage:165)
499
+ D /trunk/webgen/testsite/src/projects.es.ypage
500
+ A /trunk/webgen/testsite/src/projects.page (from /trunk/webgen/testsite/src/projects.ypage:165)
501
+ D /trunk/webgen/testsite/src/projects.ypage
502
+ A /trunk/webgen/testsite/src/rdoc.page (from /trunk/webgen/testsite/src/readme.rdoc:165)
503
+ D /trunk/webgen/testsite/src/readme.rdoc
504
+ A /trunk/webgen/testsite/src/redcloth.page (from /trunk/webgen/testsite/src/redcloth.rcloth:165)
505
+ D /trunk/webgen/testsite/src/redcloth.rcloth
506
+
507
+ * updated test site pages to comply with the new standards
508
+ ------------------------------------------------------------------------
509
+ r173 | thomas | 2005-01-19 03:35:39 +0100 (Wed, 19 Jan 2005) | 6 lines
510
+ Changed paths:
511
+ M /trunk/webgen/Rakefile
512
+ M /trunk/webgen/TODO
513
+ M /trunk/webgen/bin/webgen
514
+ D /trunk/webgen/lib/util/ups.rb
515
+ M /trunk/webgen/lib/webgen/configuration.rb
516
+ A /trunk/webgen/lib/webgen/logging.rb
517
+ M /trunk/webgen/lib/webgen/node.rb
518
+ M /trunk/webgen/lib/webgen/plugins/filehandler/backing.rb
519
+ M /trunk/webgen/lib/webgen/plugins/filehandler/blueclothpage.rb
520
+ M /trunk/webgen/lib/webgen/plugins/filehandler/directory.rb
521
+ M /trunk/webgen/lib/webgen/plugins/filehandler/filecopy.rb
522
+ M /trunk/webgen/lib/webgen/plugins/filehandler/filehandler.rb
523
+ M /trunk/webgen/lib/webgen/plugins/filehandler/htmlfragmentpage.rb
524
+ M /trunk/webgen/lib/webgen/plugins/filehandler/page.rb
525
+ M /trunk/webgen/lib/webgen/plugins/filehandler/rdocpage.rb
526
+ M /trunk/webgen/lib/webgen/plugins/filehandler/redclothpage.rb
527
+ M /trunk/webgen/lib/webgen/plugins/filehandler/template.rb
528
+ M /trunk/webgen/lib/webgen/plugins/filehandler/xmlpage.rb
529
+ M /trunk/webgen/lib/webgen/plugins/filehandler/yamlpage.rb
530
+ M /trunk/webgen/lib/webgen/plugins/tags/date.rb
531
+ M /trunk/webgen/lib/webgen/plugins/tags/executecommand.rb
532
+ M /trunk/webgen/lib/webgen/plugins/tags/includefile.rb
533
+ M /trunk/webgen/lib/webgen/plugins/tags/lang.rb
534
+ M /trunk/webgen/lib/webgen/plugins/tags/menu.rb
535
+ M /trunk/webgen/lib/webgen/plugins/tags/meta.rb
536
+ M /trunk/webgen/lib/webgen/plugins/tags/navbar.rb
537
+ M /trunk/webgen/lib/webgen/plugins/tags/relocatable.rb
538
+ M /trunk/webgen/lib/webgen/plugins/tags/tags.rb
539
+ M /trunk/webgen/lib/webgen/plugins/treewalker.rb
540
+ M /trunk/webgen/lib/webgen/webgen.rb
541
+
542
+ * removed dependency log4r, now using logger library
543
+ * removed UPS, implemented simpler plugin system
544
+ * class Plugin holds all configuration values now, class Configuration streamlined
545
+ * updated Rakefile
546
+ * added RPAfied install.rb creation to Rakefile
547
+ * changed every plugin to use new configuration routines
548
+ ------------------------------------------------------------------------
549
+ r165 | thomas | 2005-01-13 17:33:02 +0100 (Thu, 13 Jan 2005) | 1 line
550
+ Changed paths:
551
+ D /temp
552
+ A /trunk (from /temp:163)
553
+
554
+ add finally arrived at the destination
555
+ ------------------------------------------------------------------------
556
+ r163 | thomas | 2005-01-13 17:31:39 +0100 (Thu, 13 Jan 2005) | 1 line
557
+ Changed paths:
558
+ A /temp
559
+ A /temp/commandparser (from /trunk/commandparser/trunk:162)
560
+ A /temp/programs (from /trunk/miscprograms/trunk:162)
561
+ A /temp/rubyquiz (from /trunk/rubyquiz:162)
562
+ A /temp/webgen (from /trunk/webgen/trunk:162)
563
+ A /temp/xmlresume2x (from /trunk/xmlresume2x/trunk:162)
564
+ D /trunk/commandparser/trunk
565
+ D /trunk/miscprograms/trunk
566
+ D /trunk/rubyquiz
567
+ D /trunk/webgen/trunk
568
+ D /trunk/webgen/versions/webgen-0.1.0
569
+ D /trunk/webgen/versions/webgen-0.2.0
570
+ D /trunk/xmlresume2x/trunk
571
+ D /trunk/xmlresume2x/versions/xmlresume2x-0.1.0
572
+ D /trunk/xmlresume2x/versions/xmlresume2x-0.2.0
573
+ D /trunk/xmlresume2x/versions/xmlresume2x-0.2.1
574
+ A /versions
575
+ A /versions/webgen-0.1.0 (from /trunk/webgen/versions/webgen-0.1.0:162)
576
+ A /versions/webgen-0.2.0 (from /trunk/webgen/versions/webgen-0.2.0:162)
577
+ A /versions/xmlresume2x-0.1.0 (from /trunk/xmlresume2x/versions/xmlresume2x-0.1.0:162)
578
+ A /versions/xmlresume2x-0.2.0 (from /trunk/xmlresume2x/versions/xmlresume2x-0.2.0:162)
579
+ A /versions/xmlresume2x-0.2.1 (from /trunk/xmlresume2x/versions/xmlresume2x-0.2.1:162)
580
+
581
+ moved stuff around and around
582
+ ------------------------------------------------------------------------
583
+ r110 | thomas | 2005-01-13 17:09:17 +0100 (Thu, 13 Jan 2005) | 1 line
584
+ Changed paths:
585
+ M /trunk/webgen/trunk/README
586
+ M /trunk/webgen/trunk/TODO
587
+ M /trunk/webgen/trunk/lib/webgen/configuration.rb
588
+
589
+ * small changes
590
+ ------------------------------------------------------------------------
591
+ r109 | thomas | 2004-08-17 23:32:06 +0200 (Tue, 17 Aug 2004) | 1 line
592
+ Changed paths:
593
+ M /trunk/webgen/trunk/design/ideas
594
+
595
+ * ideas file updated and old statements removed
596
+ ------------------------------------------------------------------------
597
+ r108 | thomas | 2004-08-07 11:06:50 +0200 (Sat, 07 Aug 2004) | 3 lines
598
+ Changed paths:
599
+ M /trunk/webgen/trunk/TODO
600
+ M /trunk/webgen/trunk/lib/webgen/configuration.rb
601
+ M /trunk/webgen/trunk/lib/webgen/plugins/filehandler/filehandler.rb
602
+ M /trunk/webgen/trunk/lib/webgen/plugins/filehandler/page.rb
603
+ A /trunk/webgen/trunk/testsite/src/home.en.xpage
604
+
605
+ * added debug statements to method_defined? in configuration.rb
606
+ * now a warning is printed if there are two input files in the same language for one page
607
+ * using File.extname instead of regex
608
+ ------------------------------------------------------------------------
609
+ r107 | thomas | 2004-08-05 20:54:29 +0200 (Thu, 05 Aug 2004) | 5 lines
610
+ Changed paths:
611
+ M /trunk/webgen/trunk/TODO
612
+ M /trunk/webgen/trunk/lib/webgen/configuration.rb
613
+ M /trunk/webgen/trunk/lib/webgen/node.rb
614
+ A /trunk/webgen/trunk/lib/webgen/plugins/filehandler/blueclothpage.rb
615
+ A /trunk/webgen/trunk/lib/webgen/plugins/filehandler/rdocpage.rb
616
+ A /trunk/webgen/trunk/lib/webgen/plugins/filehandler/redclothpage.rb
617
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/executecommand.rb
618
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/includefile.rb
619
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/tags.rb
620
+ A /trunk/webgen/trunk/testsite/src/bluecloth.bcloth
621
+ A /trunk/webgen/trunk/testsite/src/readme.rdoc
622
+ A /trunk/webgen/trunk/testsite/src/redcloth.rcloth
623
+
624
+ * added basic RedCloth, BlueCloth and RDoc support
625
+ * added testfiles for RedCloth, BlueCloth and RDoc
626
+ * fixed warnings generated when run with ruby -v
627
+ * removed attr_writer in tags.rb, subclasses now directly access the @processOutput variable
628
+ * new code for get_relpath_to_node in node.rb
629
+ ------------------------------------------------------------------------
630
+ r106 | thomas | 2004-07-21 18:27:14 +0200 (Wed, 21 Jul 2004) | 2 lines
631
+ Changed paths:
632
+ M /trunk/webgen/trunk/Rakefile
633
+ M /trunk/webgen/trunk/TODO
634
+ M /trunk/webgen/trunk/doc/src/documentation/filehandler/yamlpage.ypage
635
+ M /trunk/webgen/trunk/doc/src/documentation/tags/menu.de.fragment
636
+ M /trunk/webgen/trunk/doc/src/documentation/tags/menu.fragment
637
+ M /trunk/webgen/trunk/doc/src/metainfo.backing
638
+
639
+ * made documentation files XHTML 1.1 compatible
640
+ * added a rake task to upload the documentation to the homepage at rubyforge
641
+ ------------------------------------------------------------------------
642
+ r104 | thomas | 2004-07-21 16:32:30 +0200 (Wed, 21 Jul 2004) | 10 lines
643
+ Changed paths:
644
+ M /trunk/webgen/trunk/Rakefile
645
+ M /trunk/webgen/trunk/TODO
646
+ M /trunk/webgen/trunk/doc/src/documentation/filehandler/directory.fragment
647
+ M /trunk/webgen/trunk/doc/src/documentation/filehandler/xmlpage.xpage
648
+ M /trunk/webgen/trunk/doc/src/documentation/filehandler/yamlpage.ypage
649
+ M /trunk/webgen/trunk/doc/src/documentation/index.fragment
650
+ M /trunk/webgen/trunk/doc/src/documentation/tags/meta.fragment
651
+ M /trunk/webgen/trunk/doc/src/download.fragment
652
+ A /trunk/webgen/trunk/doc/src/features.fragment
653
+ M /trunk/webgen/trunk/doc/src/metainfo.backing
654
+ M /trunk/webgen/trunk/lib/webgen/configuration.rb
655
+ M /trunk/webgen/trunk/lib/webgen/plugins/filehandler/backing.rb
656
+ M /trunk/webgen/trunk/lib/webgen/plugins/filehandler/directory.rb
657
+ M /trunk/webgen/trunk/lib/webgen/plugins/filehandler/filecopy.rb
658
+ M /trunk/webgen/trunk/lib/webgen/plugins/filehandler/filehandler.rb
659
+ M /trunk/webgen/trunk/lib/webgen/plugins/filehandler/htmlfragmentpage.rb
660
+ M /trunk/webgen/trunk/lib/webgen/plugins/filehandler/page.rb
661
+ M /trunk/webgen/trunk/lib/webgen/plugins/filehandler/template.rb
662
+ M /trunk/webgen/trunk/lib/webgen/plugins/filehandler/xmlpage.rb
663
+ M /trunk/webgen/trunk/lib/webgen/plugins/filehandler/yamlpage.rb
664
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/date.rb
665
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/executecommand.rb
666
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/includefile.rb
667
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/lang.rb
668
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/menu.rb
669
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/meta.rb
670
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/navbar.rb
671
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/relocatable.rb
672
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/tags.rb
673
+ M /trunk/webgen/trunk/lib/webgen/webgen.rb
674
+
675
+ * some minor changes in Rakefile
676
+ * added some more documentation
677
+ * added standardized way to define and document configuration parameters for plugins
678
+ * changed each plugin to use new configuration parameter definition method
679
+ * removed unneeded WebgenError class and replaced all raised errors with logger messages and error handling code
680
+ * added support for mandatory parameters for tags
681
+ * added new method for finding tags in files which supports nested curly brackets
682
+ * colorized output for showing plugins and configuration parameters
683
+ * writing to the logfile is now optional and has to be turned on explicitly
684
+ * simplified code for showing plugins
685
+ ------------------------------------------------------------------------
686
+ r103 | thomas | 2004-07-19 13:50:46 +0200 (Mon, 19 Jul 2004) | 2 lines
687
+ Changed paths:
688
+ M /trunk/webgen/trunk/README
689
+ M /trunk/webgen/trunk/Rakefile
690
+ A /trunk/webgen/trunk/design/ideas (from /trunk/webgen/trunk/doc/ideas:100)
691
+ D /trunk/webgen/trunk/doc/ideas
692
+ A /trunk/webgen/trunk/doc/src (from /trunk/webgen/trunk/homepage/src:100)
693
+ R /trunk/webgen/trunk/doc/src/default.css (from /trunk/webgen/trunk/homepage/src/default.css:102)
694
+ R /trunk/webgen/trunk/doc/src/default.template (from /trunk/webgen/trunk/homepage/src/default.template:102)
695
+ A /trunk/webgen/trunk/doc/src/documentation (from /trunk/webgen/trunk/homepage/src/documentation:102)
696
+ A /trunk/webgen/trunk/doc/src/download.fragment (from /trunk/webgen/trunk/homepage/src/download.fragment:102)
697
+ R /trunk/webgen/trunk/doc/src/index.fragment (from /trunk/webgen/trunk/homepage/src/index.fragment:102)
698
+ R /trunk/webgen/trunk/doc/src/metainfo.backing (from /trunk/webgen/trunk/homepage/src/metainfo.backing:102)
699
+ D /trunk/webgen/trunk/homepage/src
700
+ M /trunk/webgen/trunk/lib/webgen/plugins/filehandler/page.rb
701
+
702
+ * moved documentation from homepage to doc
703
+ * added new option "defaultLangInFilename" to Page Handler
704
+ ------------------------------------------------------------------------
705
+ r102 | thomas | 2004-07-19 13:34:16 +0200 (Mon, 19 Jul 2004) | 9 lines
706
+ Changed paths:
707
+ M /trunk/webgen/trunk/README
708
+ M /trunk/webgen/trunk/Rakefile
709
+ M /trunk/webgen/trunk/TODO
710
+ M /trunk/webgen/trunk/homepage/src/documentation/filehandler/backing.fragment
711
+ M /trunk/webgen/trunk/homepage/src/documentation/filehandler/htmlfragment.fragment
712
+ M /trunk/webgen/trunk/homepage/src/documentation/filehandler/index.fragment
713
+ M /trunk/webgen/trunk/homepage/src/documentation/filehandler/xmlpage.xpage
714
+ M /trunk/webgen/trunk/homepage/src/documentation/filehandler/yamlpage.ypage
715
+ M /trunk/webgen/trunk/homepage/src/documentation/index.fragment
716
+ A /trunk/webgen/trunk/homepage/src/documentation/tags/executecommand.fragment
717
+ M /trunk/webgen/trunk/homepage/src/documentation/tags/includefile.fragment
718
+ M /trunk/webgen/trunk/homepage/src/documentation/tags/index.fragment
719
+ M /trunk/webgen/trunk/homepage/src/download.fragment
720
+ M /trunk/webgen/trunk/homepage/src/index.fragment
721
+ M /trunk/webgen/trunk/homepage/src/metainfo.backing
722
+ M /trunk/webgen/trunk/lib/webgen/configuration.rb
723
+ M /trunk/webgen/trunk/lib/webgen/node.rb
724
+ M /trunk/webgen/trunk/lib/webgen/plugins/filehandler/backing.rb
725
+ M /trunk/webgen/trunk/lib/webgen/plugins/filehandler/directory.rb
726
+ M /trunk/webgen/trunk/lib/webgen/plugins/filehandler/page.rb
727
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/executecommand.rb
728
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/includefile.rb
729
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/menu.rb
730
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/meta.rb
731
+ M /trunk/webgen/trunk/lib/webgen/webgen.rb
732
+
733
+ * corrected some minor things in README
734
+ * the configuration parameters in configuration.rb are stored in an OpenStruct now
735
+ * respect <external> meta information in node.rb
736
+ * corrected bug in menu.rb (ordering was not always correct)
737
+ * <execute> and <includeFile> tag only return the content, no markup
738
+ * index files for directories are searched and stored in the respective node when the field <indexFile> is read the first time
739
+ * added rake task for generating the homepage
740
+ * extended the homepage and the API documentation
741
+ * added support for virtual pages and directories to the Backing File Handler
742
+ ------------------------------------------------------------------------
743
+ r101 | thomas | 2004-07-17 23:48:30 +0200 (Sat, 17 Jul 2004) | 7 lines
744
+ Changed paths:
745
+ M /trunk/webgen/trunk/README
746
+ M /trunk/webgen/trunk/TODO
747
+ M /trunk/webgen/trunk/homepage/src/default.css
748
+ M /trunk/webgen/trunk/homepage/src/default.template
749
+ A /trunk/webgen/trunk/homepage/src/documentation
750
+ A /trunk/webgen/trunk/homepage/src/documentation/filehandler (from /trunk/webgen/trunk/homepage/src/filehandler:97)
751
+ A /trunk/webgen/trunk/homepage/src/documentation/filehandler/backing.fragment
752
+ A /trunk/webgen/trunk/homepage/src/documentation/filehandler/copy.fragment
753
+ A /trunk/webgen/trunk/homepage/src/documentation/filehandler/directory.fragment
754
+ A /trunk/webgen/trunk/homepage/src/documentation/filehandler/htmlfragment.fragment
755
+ M /trunk/webgen/trunk/homepage/src/documentation/filehandler/index.fragment
756
+ A /trunk/webgen/trunk/homepage/src/documentation/filehandler/template.fragment
757
+ A /trunk/webgen/trunk/homepage/src/documentation/filehandler/xmlpage.xpage
758
+ A /trunk/webgen/trunk/homepage/src/documentation/filehandler/yamlpage.ypage
759
+ A /trunk/webgen/trunk/homepage/src/documentation/index.fragment
760
+ A /trunk/webgen/trunk/homepage/src/documentation/tags (from /trunk/webgen/trunk/homepage/src/tags:97)
761
+ A /trunk/webgen/trunk/homepage/src/documentation/tags/date.fragment (from /trunk/webgen/trunk/homepage/src/tags/date.fragment:100)
762
+ A /trunk/webgen/trunk/homepage/src/documentation/tags/includefile.fragment
763
+ M /trunk/webgen/trunk/homepage/src/documentation/tags/index.fragment
764
+ R /trunk/webgen/trunk/homepage/src/documentation/tags/lang.fragment (from /trunk/webgen/trunk/homepage/src/tags/lang.fragment:100)
765
+ R /trunk/webgen/trunk/homepage/src/documentation/tags/menu.fragment (from /trunk/webgen/trunk/homepage/src/tags/menu.fragment:100)
766
+ R /trunk/webgen/trunk/homepage/src/documentation/tags/relocatable.fragment (from /trunk/webgen/trunk/homepage/src/tags/relocatable.fragment:100)
767
+ A /trunk/webgen/trunk/homepage/src/download.fragment
768
+ D /trunk/webgen/trunk/homepage/src/filehandler
769
+ M /trunk/webgen/trunk/homepage/src/index.fragment
770
+ M /trunk/webgen/trunk/homepage/src/metainfo.backing
771
+ D /trunk/webgen/trunk/homepage/src/tags
772
+ A /trunk/webgen/trunk/lib/webgen/plugins/filehandler/backing.rb (from /trunk/webgen/trunk/lib/webgen/plugins/filehandler/backingmetainfo.rb:98)
773
+ D /trunk/webgen/trunk/lib/webgen/plugins/filehandler/backingmetainfo.rb
774
+ M /trunk/webgen/trunk/lib/webgen/plugins/filehandler/directory.rb
775
+ M /trunk/webgen/trunk/lib/webgen/plugins/filehandler/filecopy.rb
776
+ M /trunk/webgen/trunk/lib/webgen/plugins/filehandler/htmlfragmentpage.rb
777
+ M /trunk/webgen/trunk/lib/webgen/plugins/filehandler/page.rb
778
+ M /trunk/webgen/trunk/lib/webgen/plugins/filehandler/template.rb
779
+ M /trunk/webgen/trunk/lib/webgen/plugins/filehandler/xmlpage.rb
780
+ M /trunk/webgen/trunk/lib/webgen/plugins/filehandler/yamlpage.rb
781
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/date.rb
782
+ A /trunk/webgen/trunk/lib/webgen/plugins/tags/executecommand.rb
783
+ A /trunk/webgen/trunk/lib/webgen/plugins/tags/includefile.rb
784
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/menu.rb
785
+ A /trunk/webgen/trunk/lib/webgen/plugins/tags/meta.rb (from /trunk/webgen/trunk/lib/webgen/plugins/tags/metatag.rb:99)
786
+ D /trunk/webgen/trunk/lib/webgen/plugins/tags/metatag.rb
787
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/relocatable.rb
788
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/tags.rb
789
+ M /trunk/webgen/trunk/lib/webgen/webgen.rb
790
+ M /trunk/webgen/trunk/testsite/config.yaml
791
+
792
+ * added execute command tag
793
+ * added include file tag
794
+ * renamed metatag.rb to meta.rb
795
+ * updated documentation and homepage files
796
+ * unified naming of plugins
797
+ * added processOutput option to DefaultTag
798
+ * fixed bug in menu.rb and meta.rb
799
+ ------------------------------------------------------------------------
800
+ r100 | thomas | 2004-07-15 03:37:51 +0200 (Thu, 15 Jul 2004) | 3 lines
801
+ Changed paths:
802
+ M /trunk/webgen/trunk/TODO
803
+ M /trunk/webgen/trunk/homepage/src/default.css
804
+ M /trunk/webgen/trunk/homepage/src/default.template
805
+ M /trunk/webgen/trunk/homepage/src/index.fragment
806
+ M /trunk/webgen/trunk/homepage/src/metainfo.backing
807
+ A /trunk/webgen/trunk/homepage/src/tags/date.fragment
808
+ M /trunk/webgen/trunk/lib/webgen/plugins/filehandler/filehandler.rb
809
+ M /trunk/webgen/trunk/lib/webgen/plugins/filehandler/template.rb
810
+ A /trunk/webgen/trunk/lib/webgen/plugins/tags/date.rb
811
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/menu.rb
812
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/tags.rb
813
+ M /trunk/webgen/trunk/lib/webgen/plugins/treewalker.rb
814
+
815
+ * edited TreeWalker: the tree is now walked for each registered plugin separately
816
+ * updated homepage: added page for date tag, changed some files and the appearance
817
+ * added new tag: date
818
+ ------------------------------------------------------------------------
819
+ r99 | thomas | 2004-07-14 15:47:39 +0200 (Wed, 14 Jul 2004) | 7 lines
820
+ Changed paths:
821
+ M /trunk/webgen/trunk/TODO
822
+ M /trunk/webgen/trunk/homepage/src/default.template
823
+ D /trunk/webgen/trunk/homepage/src/filehandler/default.template
824
+ M /trunk/webgen/trunk/homepage/src/metainfo.backing
825
+ D /trunk/webgen/trunk/homepage/src/tags/default.template
826
+ M /trunk/webgen/trunk/homepage/src/tags/menu.fragment
827
+ M /trunk/webgen/trunk/lib/webgen/node.rb
828
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/lang.rb
829
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/menu.rb
830
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/metatag.rb
831
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/navbar.rb
832
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/relocatable.rb
833
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/tags.rb
834
+ M /trunk/webgen/trunk/testsite/src/default.template
835
+
836
+ * added two methods to Node: level and in_subtree?
837
+ * updated homepage files
838
+ * added base class for Tags: Tags::DefaultTag
839
+ * Tags::DefaultTag implements new default behaviour for getting configuration values
840
+ * changed each tag class to use the new Tags::DefaultTag class
841
+ * new option for lang tag: showSingleLang
842
+ * new options for menu tag: showCurrentSubtreeOnly and subtreeLevel
843
+ ------------------------------------------------------------------------
844
+ r98 | thomas | 2004-07-14 01:47:39 +0200 (Wed, 14 Jul 2004) | 7 lines
845
+ Changed paths:
846
+ M /trunk/webgen/trunk/Rakefile
847
+ M /trunk/webgen/trunk/TODO
848
+ M /trunk/webgen/trunk/homepage/src/metainfo.backing
849
+ M /trunk/webgen/trunk/homepage/src/tags/lang.fragment
850
+ M /trunk/webgen/trunk/homepage/src/tags/menu.fragment
851
+ M /trunk/webgen/trunk/homepage/src/tags/relocatable.fragment
852
+ M /trunk/webgen/trunk/lib/webgen/configuration.rb
853
+ M /trunk/webgen/trunk/lib/webgen/node.rb
854
+ M /trunk/webgen/trunk/lib/webgen/plugins/filehandler/backingmetainfo.rb
855
+ M /trunk/webgen/trunk/lib/webgen/plugins/filehandler/page.rb
856
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/relocatable.rb
857
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/tags.rb
858
+ M /trunk/webgen/trunk/testsite/src/default.template
859
+ M /trunk/webgen/trunk/testsite/src/projects/00.index.de.ypage
860
+
861
+ * added dependency in GEM specification because dependencies seem to work with rubygems 0.7.0
862
+ * some small changes in the homepage files
863
+ * relocatable tag now also works for referencing page files and always returns a string
864
+ * tags now throws an exception if the passed content is not a string
865
+ * Node::recursive_value ignores virtual nodes by default
866
+ * edited Node::get_node_for_string to make it more abstract
867
+ * changed the Log4r pattern
868
+ ------------------------------------------------------------------------
869
+ r97 | thomas | 2004-07-13 01:04:01 +0200 (Tue, 13 Jul 2004) | 8 lines
870
+ Changed paths:
871
+ M /trunk/webgen/trunk/README
872
+ M /trunk/webgen/trunk/Rakefile
873
+ M /trunk/webgen/trunk/TODO
874
+ A /trunk/webgen/trunk/homepage
875
+ A /trunk/webgen/trunk/homepage/src
876
+ A /trunk/webgen/trunk/homepage/src/default.css
877
+ A /trunk/webgen/trunk/homepage/src/default.template
878
+ A /trunk/webgen/trunk/homepage/src/filehandler
879
+ A /trunk/webgen/trunk/homepage/src/filehandler/default.template
880
+ A /trunk/webgen/trunk/homepage/src/filehandler/index.fragment
881
+ A /trunk/webgen/trunk/homepage/src/index.fragment
882
+ A /trunk/webgen/trunk/homepage/src/metainfo.backing
883
+ A /trunk/webgen/trunk/homepage/src/tags
884
+ A /trunk/webgen/trunk/homepage/src/tags/default.template
885
+ A /trunk/webgen/trunk/homepage/src/tags/index.fragment
886
+ A /trunk/webgen/trunk/homepage/src/tags/lang.fragment
887
+ A /trunk/webgen/trunk/homepage/src/tags/menu.de.fragment
888
+ A /trunk/webgen/trunk/homepage/src/tags/menu.fragment
889
+ A /trunk/webgen/trunk/homepage/src/tags/meta.fragment
890
+ A /trunk/webgen/trunk/homepage/src/tags/multilang.de.fragment
891
+ A /trunk/webgen/trunk/homepage/src/tags/multilang.fr.fragment
892
+ A /trunk/webgen/trunk/homepage/src/tags/multilang.fragment
893
+ A /trunk/webgen/trunk/homepage/src/tags/navbar.fragment
894
+ A /trunk/webgen/trunk/homepage/src/tags/relocatable.fragment
895
+ M /trunk/webgen/trunk/lib/util/composite.rb
896
+ M /trunk/webgen/trunk/lib/util/listener.rb
897
+ M /trunk/webgen/trunk/lib/util/ups.rb
898
+ M /trunk/webgen/trunk/lib/webgen/plugins/filehandler/filehandler.rb
899
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/menu.rb
900
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/tags.rb
901
+ M /trunk/webgen/trunk/lib/webgen/webgen.rb
902
+
903
+ * reformated Rakefile
904
+ * added VERSION file to package
905
+ * add rubyforge webgen homepage, first version
906
+ * reformated composite.rb, listener.rb, ups.rb
907
+ * output of webgen -p is now categorized
908
+ * solved two bugs in menu.rb
909
+ * tags can now be escaped so that the do not get substituted
910
+ * file extensions are downcased before checking
911
+ ------------------------------------------------------------------------
912
+ r95 | thomas | 2004-07-08 13:48:56 +0200 (Thu, 08 Jul 2004) | 7 lines
913
+ Changed paths:
914
+ M /trunk/webgen/trunk/TODO
915
+ M /trunk/webgen/trunk/lib/webgen/node.rb
916
+ M /trunk/webgen/trunk/lib/webgen/plugins/filehandler/backingmetainfo.rb
917
+ M /trunk/webgen/trunk/lib/webgen/plugins/filehandler/directory.rb
918
+ M /trunk/webgen/trunk/lib/webgen/plugins/filehandler/filecopy.rb
919
+ M /trunk/webgen/trunk/lib/webgen/plugins/filehandler/filehandler.rb
920
+ M /trunk/webgen/trunk/lib/webgen/plugins/filehandler/htmlfragmentpage.rb
921
+ M /trunk/webgen/trunk/lib/webgen/plugins/filehandler/page.rb
922
+ M /trunk/webgen/trunk/lib/webgen/plugins/filehandler/template.rb
923
+ M /trunk/webgen/trunk/lib/webgen/plugins/filehandler/xmlpage.rb
924
+ M /trunk/webgen/trunk/lib/webgen/plugins/filehandler/yamlpage.rb
925
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/lang.rb
926
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/menu.rb
927
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/navbar.rb
928
+ M /trunk/webgen/trunk/testsite/src/default.css
929
+ M /trunk/webgen/trunk/testsite/src/metainfo.backing
930
+
931
+ * add more documentation
932
+ * get_node_for_string now also works when called on directory nodes
933
+ * removed start and tag config values from navbar.rb and lang.rb as they are superfluous
934
+ * corrected bug in menu.rb: itemTag (submenuTag) instead of @itemTag (@submenuTag) used
935
+ * the content meta information now has a default value of ""
936
+ * the backing file plugin now supports paths instead of filenames
937
+ * the xml page file plugin now supports arbitrary meta information to be specified
938
+ ------------------------------------------------------------------------
939
+ r94 | thomas | 2004-07-07 23:03:02 +0200 (Wed, 07 Jul 2004) | 1 line
940
+ Changed paths:
941
+ M /trunk/webgen/trunk/README
942
+ M /trunk/webgen/trunk/TODO
943
+ M /trunk/webgen/trunk/lib/util/composite.rb
944
+ M /trunk/webgen/trunk/lib/util/listener.rb
945
+ M /trunk/webgen/trunk/lib/util/ups.rb
946
+ M /trunk/webgen/trunk/lib/webgen/configuration.rb
947
+ M /trunk/webgen/trunk/lib/webgen/plugins/filehandler/page.rb
948
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/lang.rb
949
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/menu.rb
950
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/metatag.rb
951
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/navbar.rb
952
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/relocatable.rb
953
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/tags.rb
954
+ M /trunk/webgen/trunk/lib/webgen/plugins/treewalker.rb
955
+ M /trunk/webgen/trunk/lib/webgen/webgen.rb
956
+
957
+ * added more documentation
958
+ ------------------------------------------------------------------------
959
+ r93 | thomas | 2004-07-07 20:07:09 +0200 (Wed, 07 Jul 2004) | 1 line
960
+ Changed paths:
961
+ D /trunk/webgen/trunk/lib/webgen/plugins/fileHandler
962
+ A /trunk/webgen/trunk/lib/webgen/plugins/filehandler (from /trunk/webgen/trunk/lib/webgen/plugins/fileHandler:89)
963
+ R /trunk/webgen/trunk/lib/webgen/plugins/filehandler/backingmetainfo.rb (from /trunk/webgen/trunk/lib/webgen/plugins/fileHandler/backingmetainfo.rb:92)
964
+ D /trunk/webgen/trunk/lib/webgen/plugins/filehandler/dirPlugin.rb
965
+ A /trunk/webgen/trunk/lib/webgen/plugins/filehandler/directory.rb (from /trunk/webgen/trunk/lib/webgen/plugins/fileHandler/dirPlugin.rb:92)
966
+ D /trunk/webgen/trunk/lib/webgen/plugins/filehandler/fileCopyPlugin.rb
967
+ D /trunk/webgen/trunk/lib/webgen/plugins/filehandler/fileHandler.rb
968
+ A /trunk/webgen/trunk/lib/webgen/plugins/filehandler/filecopy.rb (from /trunk/webgen/trunk/lib/webgen/plugins/fileHandler/fileCopyPlugin.rb:92)
969
+ A /trunk/webgen/trunk/lib/webgen/plugins/filehandler/filehandler.rb (from /trunk/webgen/trunk/lib/webgen/plugins/fileHandler/fileHandler.rb:92)
970
+ D /trunk/webgen/trunk/lib/webgen/plugins/filehandler/htmlfragment.rb
971
+ A /trunk/webgen/trunk/lib/webgen/plugins/filehandler/htmlfragmentpage.rb (from /trunk/webgen/trunk/lib/webgen/plugins/fileHandler/htmlfragment.rb:92)
972
+ A /trunk/webgen/trunk/lib/webgen/plugins/filehandler/page.rb (from /trunk/webgen/trunk/lib/webgen/plugins/fileHandler/pagePlugin.rb:92)
973
+ D /trunk/webgen/trunk/lib/webgen/plugins/filehandler/pagePlugin.rb
974
+ A /trunk/webgen/trunk/lib/webgen/plugins/filehandler/template.rb (from /trunk/webgen/trunk/lib/webgen/plugins/fileHandler/templatePlugin.rb:92)
975
+ D /trunk/webgen/trunk/lib/webgen/plugins/filehandler/templatePlugin.rb
976
+ D /trunk/webgen/trunk/lib/webgen/plugins/filehandler/xmlPagePlugin.rb
977
+ A /trunk/webgen/trunk/lib/webgen/plugins/filehandler/xmlpage.rb (from /trunk/webgen/trunk/lib/webgen/plugins/fileHandler/xmlPagePlugin.rb:92)
978
+ D /trunk/webgen/trunk/lib/webgen/plugins/filehandler/yamlPagePlugin.rb
979
+ A /trunk/webgen/trunk/lib/webgen/plugins/filehandler/yamlpage.rb (from /trunk/webgen/trunk/lib/webgen/plugins/fileHandler/yamlPagePlugin.rb:92)
980
+ A /trunk/webgen/trunk/lib/webgen/plugins/tags/lang.rb (from /trunk/webgen/trunk/lib/webgen/plugins/tags/langTag.rb:92)
981
+ D /trunk/webgen/trunk/lib/webgen/plugins/tags/langTag.rb
982
+ A /trunk/webgen/trunk/lib/webgen/plugins/tags/menu.rb (from /trunk/webgen/trunk/lib/webgen/plugins/tags/menuTag.rb:92)
983
+ D /trunk/webgen/trunk/lib/webgen/plugins/tags/menuTag.rb
984
+ A /trunk/webgen/trunk/lib/webgen/plugins/tags/navbar.rb (from /trunk/webgen/trunk/lib/webgen/plugins/tags/navbarTag.rb:92)
985
+ D /trunk/webgen/trunk/lib/webgen/plugins/tags/navbarTag.rb
986
+ A /trunk/webgen/trunk/lib/webgen/plugins/tags/relocatable.rb (from /trunk/webgen/trunk/lib/webgen/plugins/tags/relocatableTag.rb:92)
987
+ D /trunk/webgen/trunk/lib/webgen/plugins/tags/relocatableTag.rb
988
+ D /trunk/webgen/trunk/lib/webgen/plugins/treeTransformer.rb
989
+ A /trunk/webgen/trunk/lib/webgen/plugins/treewalker.rb (from /trunk/webgen/trunk/lib/webgen/plugins/treeTransformer.rb:92)
990
+
991
+ * renamed every file to all lowercase
992
+ ------------------------------------------------------------------------
993
+ r92 | thomas | 2004-07-07 19:26:40 +0200 (Wed, 07 Jul 2004) | 5 lines
994
+ Changed paths:
995
+ A /trunk/webgen/trunk/COPYING
996
+ M /trunk/webgen/trunk/README
997
+ M /trunk/webgen/trunk/Rakefile
998
+ M /trunk/webgen/trunk/lib/util/composite.rb
999
+ M /trunk/webgen/trunk/lib/util/listener.rb
1000
+ M /trunk/webgen/trunk/lib/util/ups.rb
1001
+ M /trunk/webgen/trunk/lib/webgen/configuration.rb
1002
+ M /trunk/webgen/trunk/lib/webgen/node.rb
1003
+ M /trunk/webgen/trunk/lib/webgen/plugins/fileHandler/backingmetainfo.rb
1004
+ M /trunk/webgen/trunk/lib/webgen/plugins/fileHandler/dirPlugin.rb
1005
+ M /trunk/webgen/trunk/lib/webgen/plugins/fileHandler/fileCopyPlugin.rb
1006
+ M /trunk/webgen/trunk/lib/webgen/plugins/fileHandler/fileHandler.rb
1007
+ M /trunk/webgen/trunk/lib/webgen/plugins/fileHandler/htmlfragment.rb
1008
+ M /trunk/webgen/trunk/lib/webgen/plugins/fileHandler/pagePlugin.rb
1009
+ M /trunk/webgen/trunk/lib/webgen/plugins/fileHandler/templatePlugin.rb
1010
+ M /trunk/webgen/trunk/lib/webgen/plugins/fileHandler/xmlPagePlugin.rb
1011
+ M /trunk/webgen/trunk/lib/webgen/plugins/fileHandler/yamlPagePlugin.rb
1012
+ D /trunk/webgen/trunk/lib/webgen/plugins/nodeProcessor.rb
1013
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/langTag.rb
1014
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/menuTag.rb
1015
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/metatag.rb
1016
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/navbarTag.rb
1017
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/relocatableTag.rb
1018
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/tags.rb
1019
+ M /trunk/webgen/trunk/lib/webgen/plugins/treeTransformer.rb
1020
+ M /trunk/webgen/trunk/lib/webgen/webgen.rb
1021
+ D /trunk/webgen/trunk/tests/thg
1022
+ A /trunk/webgen/trunk/tests/webgen (from /trunk/webgen/trunk/tests/thg:88)
1023
+ M /trunk/webgen/trunk/testsite/config.yaml
1024
+
1025
+ * added COPYING file
1026
+ * renamed /bin/thg to /bin/webgen
1027
+ * added copyright statement to each source file
1028
+ * put file handlers and tags into modules
1029
+ * added more documentation to README
1030
+ ------------------------------------------------------------------------
1031
+ r91 | thomas | 2004-07-06 00:59:13 +0200 (Tue, 06 Jul 2004) | 2 lines
1032
+ Changed paths:
1033
+ M /trunk/webgen/trunk/lib/webgen/plugins/fileHandler/fileHandler.rb
1034
+ M /trunk/webgen/trunk/lib/webgen/webgen.rb
1035
+
1036
+ * corrected bug with missin Webgen::NAME constant
1037
+ * command line option --version produces something useful
1038
+ ------------------------------------------------------------------------
1039
+ r90 | thomas | 2004-07-06 00:46:08 +0200 (Tue, 06 Jul 2004) | 2 lines
1040
+ Changed paths:
1041
+ M /trunk/webgen/trunk/Rakefile
1042
+ M /trunk/webgen/trunk/TODO
1043
+ M /trunk/webgen/trunk/lib/webgen/configuration.rb
1044
+ M /trunk/webgen/trunk/lib/webgen/plugins/fileHandler/fileHandler.rb
1045
+ M /trunk/webgen/trunk/lib/webgen/plugins/fileHandler/htmlfragment.rb
1046
+ M /trunk/webgen/trunk/lib/webgen/plugins/fileHandler/xmlPagePlugin.rb
1047
+ M /trunk/webgen/trunk/lib/webgen/plugins/nodeProcessor.rb
1048
+ D /trunk/webgen/trunk/lib/webgen/thg.rb
1049
+ A /trunk/webgen/trunk/lib/webgen/webgen.rb (from /trunk/webgen/trunk/lib/webgen/thg.rb:89)
1050
+
1051
+ * renamed thg.rb to webgen.rb
1052
+ * nicer help screen
1053
+ ------------------------------------------------------------------------
1054
+ r89 | thomas | 2004-07-05 23:18:57 +0200 (Mon, 05 Jul 2004) | 1 line
1055
+ Changed paths:
1056
+ M /trunk/webgen/trunk/Rakefile
1057
+ M /trunk/webgen/trunk/TODO
1058
+ D /trunk/webgen/trunk/bin/thaumaturge
1059
+ A /trunk/webgen/trunk/bin/webgen (from /trunk/webgen/trunk/bin/thaumaturge:87)
1060
+ D /trunk/webgen/trunk/lib/thg
1061
+ A /trunk/webgen/trunk/lib/webgen (from /trunk/webgen/trunk/lib/thg:84)
1062
+ R /trunk/webgen/trunk/lib/webgen/configuration.rb (from /trunk/webgen/trunk/lib/thg/configuration.rb:88)
1063
+ R /trunk/webgen/trunk/lib/webgen/plugins (from /trunk/webgen/trunk/lib/thg/plugins:88)
1064
+ M /trunk/webgen/trunk/lib/webgen/plugins/fileHandler/backingmetainfo.rb
1065
+ M /trunk/webgen/trunk/lib/webgen/plugins/fileHandler/dirPlugin.rb
1066
+ M /trunk/webgen/trunk/lib/webgen/plugins/fileHandler/fileCopyPlugin.rb
1067
+ M /trunk/webgen/trunk/lib/webgen/plugins/fileHandler/fileHandler.rb
1068
+ M /trunk/webgen/trunk/lib/webgen/plugins/fileHandler/htmlfragment.rb
1069
+ M /trunk/webgen/trunk/lib/webgen/plugins/fileHandler/pagePlugin.rb
1070
+ M /trunk/webgen/trunk/lib/webgen/plugins/fileHandler/templatePlugin.rb
1071
+ M /trunk/webgen/trunk/lib/webgen/plugins/fileHandler/xmlPagePlugin.rb
1072
+ M /trunk/webgen/trunk/lib/webgen/plugins/fileHandler/yamlPagePlugin.rb
1073
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/langTag.rb
1074
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/menuTag.rb
1075
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/metatag.rb
1076
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/navbarTag.rb
1077
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/relocatableTag.rb
1078
+ M /trunk/webgen/trunk/lib/webgen/plugins/tags/tags.rb
1079
+ R /trunk/webgen/trunk/lib/webgen/thg.rb (from /trunk/webgen/trunk/lib/thg/thg.rb:88)
1080
+ D /trunk/webgen/trunk/lib/webgen/thgexception.rb
1081
+ M /trunk/webgen/trunk/testsite/src/home.xpage
1082
+ M /trunk/webgen/trunk/testsite/src/index.xpage
1083
+ M /trunk/webgen/trunk/testsite/src/news.xpage
1084
+ M /trunk/webgen/trunk/testsite/src/news_are_so-cool.de.xpage
1085
+ M /trunk/webgen/trunk/testsite/src/noindex/noindex.xpage
1086
+ M /trunk/webgen/trunk/testsite/src/pictures/index.xpage
1087
+ M /trunk/webgen/trunk/testsite/src/projects/01.project2.xpage
1088
+ M /trunk/webgen/trunk/testsite/src/projects/02.project1.xpage
1089
+ M /trunk/webgen/trunk/testsite/src/projects/05.project3.xpage
1090
+ M /trunk/webgen/trunk/testsite/src/projects/index.xpage
1091
+ M /trunk/webgen/trunk/testsite/src/projects/subproj/index.xpage
1092
+ M /trunk/webgen/trunk/testsite/src/projects/subproj/project3.xpage
1093
+
1094
+ * renamed program: Thaumaturge -> Webgen
1095
+ ------------------------------------------------------------------------
1096
+ r88 | thomas | 2004-06-28 22:42:14 +0200 (Mon, 28 Jun 2004) | 6 lines
1097
+ Changed paths:
1098
+ M /trunk/webgen/trunk/Rakefile
1099
+ M /trunk/webgen/trunk/TODO
1100
+ M /trunk/webgen/trunk/lib/thg/configuration.rb
1101
+ M /trunk/webgen/trunk/lib/thg/plugins/fileHandler/pagePlugin.rb
1102
+ M /trunk/webgen/trunk/lib/util/composite.rb
1103
+ M /trunk/webgen/trunk/lib/util/listener.rb
1104
+ M /trunk/webgen/trunk/lib/util/ups.rb
1105
+ A /trunk/webgen/trunk/tests/util/tc_testups.rb
1106
+
1107
+ * corrected formatting in Rakefile
1108
+ * added documentation to ups.rb
1109
+ * added unit test for ups.rb
1110
+ * changed logging configuration
1111
+ * corrected a few formatting errors in composite.rb and listener.rb
1112
+ * better regexp in pageplugin.rb
1113
+ ------------------------------------------------------------------------
1114
+ r87 | thomas | 2004-06-24 18:40:12 +0200 (Thu, 24 Jun 2004) | 4 lines
1115
+ Changed paths:
1116
+ M /trunk/webgen/trunk/Rakefile
1117
+ M /trunk/webgen/trunk/TODO
1118
+ M /trunk/webgen/trunk/bin/thaumaturge
1119
+ M /trunk/webgen/trunk/lib/thg/configuration.rb
1120
+ M /trunk/webgen/trunk/lib/thg/plugins/fileHandler/fileHandler.rb
1121
+ M /trunk/webgen/trunk/lib/thg/thg.rb
1122
+ D /trunk/webgen/trunk/testsite/resources
1123
+
1124
+ * thg.log is now only written if the main program part is executed
1125
+ * put methods in thg.rb into a class
1126
+ * reformatted thg.rb and configuration.rb
1127
+ * file handler raises an exception now if a path cannot be found
1128
+ ------------------------------------------------------------------------
1129
+ r86 | thomas | 2004-06-24 10:18:02 +0200 (Thu, 24 Jun 2004) | 1 line
1130
+ Changed paths:
1131
+ A /trunk/webgen/trunk/lib/util
1132
+ A /trunk/webgen/trunk/lib/util/composite.rb
1133
+ A /trunk/webgen/trunk/lib/util/listener.rb
1134
+ A /trunk/webgen/trunk/lib/util/todo
1135
+ A /trunk/webgen/trunk/lib/util/ups.rb
1136
+
1137
+ * added util files directly to webgen
1138
+ ------------------------------------------------------------------------
1139
+ r85 | thomas | 2004-06-24 10:17:23 +0200 (Thu, 24 Jun 2004) | 1 line
1140
+ Changed paths:
1141
+ M /trunk/webgen/trunk/lib
1142
+
1143
+ * deleted external svn repository reference
1144
+ ------------------------------------------------------------------------
1145
+ r84 | thomas | 2004-06-24 10:15:31 +0200 (Thu, 24 Jun 2004) | 5 lines
1146
+ Changed paths:
1147
+ M /trunk/webgen/trunk/Rakefile
1148
+ M /trunk/webgen/trunk/lib/thg/plugins/fileHandler/backingmetainfo.rb
1149
+ M /trunk/webgen/trunk/lib/thg/plugins/fileHandler/dirPlugin.rb
1150
+ M /trunk/webgen/trunk/lib/thg/plugins/fileHandler/htmlfragment.rb
1151
+ M /trunk/webgen/trunk/lib/thg/plugins/fileHandler/pagePlugin.rb
1152
+ M /trunk/webgen/trunk/lib/thg/plugins/fileHandler/templatePlugin.rb
1153
+ M /trunk/webgen/trunk/lib/thg/plugins/fileHandler/yamlPagePlugin.rb
1154
+ M /trunk/webgen/trunk/lib/thg/plugins/nodeProcessor.rb
1155
+ M /trunk/webgen/trunk/lib/thg/plugins/tags/langTag.rb
1156
+ M /trunk/webgen/trunk/lib/thg/plugins/tags/menuTag.rb
1157
+ M /trunk/webgen/trunk/lib/thg/plugins/tags/metatag.rb
1158
+ M /trunk/webgen/trunk/lib/thg/plugins/tags/navbarTag.rb
1159
+ M /trunk/webgen/trunk/setup.rb
1160
+ D /trunk/webgen/trunk/testSite
1161
+ A /trunk/webgen/trunk/tests
1162
+ A /trunk/webgen/trunk/tests/thg
1163
+ A /trunk/webgen/trunk/tests/util
1164
+ A /trunk/webgen/trunk/tests/util/tc_testcomposite.rb
1165
+ A /trunk/webgen/trunk/tests/util/tc_testlistener.rb
1166
+ A /trunk/webgen/trunk/testsite (from /trunk/webgen/trunk/testSite:82)
1167
+
1168
+ * added tests for Composite and Listener
1169
+ * documented Composite and Listener
1170
+ * set svn:keywords on all rb-files
1171
+ * renamed testSite to testsite
1172
+ * updated Rakefile
1173
+ ------------------------------------------------------------------------
1174
+ r83 | thomas | 2004-06-23 22:33:18 +0200 (Wed, 23 Jun 2004) | 1 line
1175
+ Changed paths:
1176
+ A /trunk/webgen/trunk/README
1177
+ A /trunk/webgen/trunk/Rakefile
1178
+ A /trunk/webgen/trunk/TODO (from /trunk/webgen/trunk/todo:82)
1179
+ A /trunk/webgen/trunk/bin/thaumaturge
1180
+ M /trunk/webgen/trunk/lib/thg/thg.rb
1181
+ D /trunk/webgen/trunk/todo
1182
+
1183
+ * added Rakefile
1184
+ ------------------------------------------------------------------------
1185
+ r82 | thomas | 2004-06-23 10:42:44 +0200 (Wed, 23 Jun 2004) | 1 line
1186
+ Changed paths:
1187
+ A /trunk/webgen/trunk/bin
1188
+ A /trunk/webgen/trunk/lib (from /trunk/webgen/trunk/src:81)
1189
+ A /trunk/webgen/trunk/setup.rb
1190
+ D /trunk/webgen/trunk/src
1191
+ M /trunk/webgen/trunk/todo
1192
+
1193
+ * changed src/ to lib/ for conformance with setup.rb
1194
+ ------------------------------------------------------------------------
1195
+ r81 | thomas | 2004-06-23 09:26:58 +0200 (Wed, 23 Jun 2004) | 1 line
1196
+ Changed paths:
1197
+ M /trunk/webgen/trunk/src
1198
+ D /trunk/webgen/trunk/src/configuration.rb
1199
+ D /trunk/webgen/trunk/src/listplugins.rb
1200
+ D /trunk/webgen/trunk/src/node.rb
1201
+ D /trunk/webgen/trunk/src/plugins
1202
+ M /trunk/webgen/trunk/src/thg/configuration.rb
1203
+ D /trunk/webgen/trunk/src/thg/listplugins.rb
1204
+ M /trunk/webgen/trunk/src/thg/node.rb
1205
+ M /trunk/webgen/trunk/src/thg/plugins/fileHandler/backingmetainfo.rb
1206
+ M /trunk/webgen/trunk/src/thg/plugins/fileHandler/dirPlugin.rb
1207
+ M /trunk/webgen/trunk/src/thg/plugins/fileHandler/fileCopyPlugin.rb
1208
+ M /trunk/webgen/trunk/src/thg/plugins/fileHandler/fileHandler.rb
1209
+ M /trunk/webgen/trunk/src/thg/plugins/fileHandler/htmlfragment.rb
1210
+ M /trunk/webgen/trunk/src/thg/plugins/fileHandler/pagePlugin.rb
1211
+ M /trunk/webgen/trunk/src/thg/plugins/fileHandler/templatePlugin.rb
1212
+ M /trunk/webgen/trunk/src/thg/plugins/fileHandler/xmlPagePlugin.rb
1213
+ M /trunk/webgen/trunk/src/thg/plugins/fileHandler/yamlPagePlugin.rb
1214
+ M /trunk/webgen/trunk/src/thg/plugins/tags/langTag.rb
1215
+ M /trunk/webgen/trunk/src/thg/plugins/tags/menuTag.rb
1216
+ M /trunk/webgen/trunk/src/thg/plugins/tags/metatag.rb
1217
+ M /trunk/webgen/trunk/src/thg/plugins/tags/navbarTag.rb
1218
+ M /trunk/webgen/trunk/src/thg/plugins/tags/relocatableTag.rb
1219
+ M /trunk/webgen/trunk/src/thg/plugins/tags/tags.rb
1220
+ M /trunk/webgen/trunk/src/thg/plugins/treeTransformer.rb
1221
+ M /trunk/webgen/trunk/src/thg/thg.rb
1222
+ D /trunk/webgen/trunk/src/thg.rb
1223
+ D /trunk/webgen/trunk/src/thgexception.rb
1224
+
1225
+ * corrected the require statements
1226
+ ------------------------------------------------------------------------
1227
+ r80 | thomas | 2004-06-23 09:05:56 +0200 (Wed, 23 Jun 2004) | 1 line
1228
+ Changed paths:
1229
+ A /trunk/webgen/trunk/src/thg
1230
+ A /trunk/webgen/trunk/src/thg/configuration.rb (from /trunk/webgen/trunk/src/configuration.rb:79)
1231
+ A /trunk/webgen/trunk/src/thg/listplugins.rb (from /trunk/webgen/trunk/src/listplugins.rb:79)
1232
+ A /trunk/webgen/trunk/src/thg/node.rb (from /trunk/webgen/trunk/src/node.rb:79)
1233
+ A /trunk/webgen/trunk/src/thg/plugins (from /trunk/webgen/trunk/src/plugins:79)
1234
+ A /trunk/webgen/trunk/src/thg/thg.rb (from /trunk/webgen/trunk/src/thg.rb:79)
1235
+ A /trunk/webgen/trunk/src/thg/thgexception.rb (from /trunk/webgen/trunk/src/thgexception.rb:79)
1236
+
1237
+ * restructured the project tree
1238
+ ------------------------------------------------------------------------
1239
+ r79 | thomas | 2004-06-23 08:52:12 +0200 (Wed, 23 Jun 2004) | 1 line
1240
+ Changed paths:
1241
+ M /trunk/webgen/trunk/src/configuration.rb
1242
+ M /trunk/webgen/trunk/src/listplugins.rb
1243
+ M /trunk/webgen/trunk/src/node.rb
1244
+ M /trunk/webgen/trunk/src/plugins/fileHandler/backingmetainfo.rb
1245
+ M /trunk/webgen/trunk/src/plugins/fileHandler/dirPlugin.rb
1246
+ M /trunk/webgen/trunk/src/plugins/fileHandler/fileCopyPlugin.rb
1247
+ M /trunk/webgen/trunk/src/plugins/fileHandler/fileHandler.rb
1248
+ M /trunk/webgen/trunk/src/plugins/fileHandler/pagePlugin.rb
1249
+ M /trunk/webgen/trunk/src/plugins/fileHandler/templatePlugin.rb
1250
+ M /trunk/webgen/trunk/src/plugins/nodeProcessor.rb
1251
+ M /trunk/webgen/trunk/src/plugins/tags/langTag.rb
1252
+ M /trunk/webgen/trunk/src/plugins/tags/menuTag.rb
1253
+ M /trunk/webgen/trunk/src/plugins/tags/metatag.rb
1254
+ M /trunk/webgen/trunk/src/plugins/tags/navbarTag.rb
1255
+ M /trunk/webgen/trunk/src/plugins/tags/relocatableTag.rb
1256
+ M /trunk/webgen/trunk/src/plugins/tags/tags.rb
1257
+ M /trunk/webgen/trunk/src/plugins/treeTransformer.rb
1258
+ D /trunk/webgen/trunk/src/resources
1259
+ M /trunk/webgen/trunk/src/thg.rb
1260
+ M /trunk/webgen/trunk/src/thgexception.rb
1261
+
1262
+ * converted all tabs to spaces
1263
+ ------------------------------------------------------------------------
1264
+ r78 | thomas | 2004-06-22 19:35:29 +0200 (Tue, 22 Jun 2004) | 3 lines
1265
+ Changed paths:
1266
+ M /trunk/webgen/trunk/src/plugins/fileHandler/pagePlugin.rb
1267
+ M /trunk/webgen/trunk/src/plugins/fileHandler/xmlPagePlugin.rb
1268
+ M /trunk/webgen/trunk/src/plugins/tags/menuTag.rb
1269
+ D /trunk/webgen/trunk/testSite/src/news_are.so-cool.xpage
1270
+ A /trunk/webgen/trunk/testSite/src/news_are_so-cool.de.xpage (from /trunk/webgen/trunk/testSite/src/news_are.so-cool.xpage:76)
1271
+ A /trunk/webgen/trunk/testSite/src/projects/00.index.de.ypage (from /trunk/webgen/trunk/testSite/src/projects/index.de.ypage:70)
1272
+ A /trunk/webgen/trunk/testSite/src/projects/01.project2.xpage (from /trunk/webgen/trunk/testSite/src/projects/project2.xpage:70)
1273
+ A /trunk/webgen/trunk/testSite/src/projects/02.project1.xpage (from /trunk/webgen/trunk/testSite/src/projects/project1.xpage:70)
1274
+ A /trunk/webgen/trunk/testSite/src/projects/05.project3.xpage (from /trunk/webgen/trunk/testSite/src/projects/project3.xpage:73)
1275
+ D /trunk/webgen/trunk/testSite/src/projects/index.de.ypage
1276
+ M /trunk/webgen/trunk/testSite/src/projects/index.xpage
1277
+ D /trunk/webgen/trunk/testSite/src/projects/project1.xpage
1278
+ D /trunk/webgen/trunk/testSite/src/projects/project2.xpage
1279
+ D /trunk/webgen/trunk/testSite/src/projects/project3.xpage
1280
+ M /trunk/webgen/trunk/testSite/src/projects/subproj/index.xpage
1281
+ M /trunk/webgen/trunk/todo
1282
+
1283
+ * implemented menuOrder tag for use in menu
1284
+ * added behaviour for getting title, language and menuOrder out of the file name
1285
+ * adjusted the test repository to test the menu ordering
1286
+ ------------------------------------------------------------------------
1287
+ r77 | thomas | 2004-06-22 10:28:45 +0200 (Tue, 22 Jun 2004) | 1 line
1288
+ Changed paths:
1289
+ M /trunk/webgen/trunk/src/plugins/fileHandler/pagePlugin.rb
1290
+ M /trunk/webgen/trunk/src/plugins/tags/menuTag.rb
1291
+ A /trunk/webgen/trunk/testSite/src/metainfo.backing
1292
+ M /trunk/webgen/trunk/todo
1293
+
1294
+ * added basic ordering for menu nodes
1295
+ ------------------------------------------------------------------------
1296
+ r76 | thomas | 2004-06-22 00:35:19 +0200 (Tue, 22 Jun 2004) | 2 lines
1297
+ Changed paths:
1298
+ A /trunk/webgen/trunk/src/plugins/fileHandler/backingmetainfo.rb
1299
+ M /trunk/webgen/trunk/src/plugins/fileHandler/dirPlugin.rb
1300
+ A /trunk/webgen/trunk/src/plugins/fileHandler/htmlfragment.rb
1301
+ M /trunk/webgen/trunk/src/plugins/fileHandler/pagePlugin.rb
1302
+ M /trunk/webgen/trunk/src/plugins/tags/menuTag.rb
1303
+ M /trunk/webgen/trunk/testSite/src/default.css
1304
+ M /trunk/webgen/trunk/testSite/src/home.xpage
1305
+ A /trunk/webgen/trunk/testSite/src/news_are.so-cool.xpage
1306
+ M /trunk/webgen/trunk/todo
1307
+
1308
+ * new page plugin for html fragments
1309
+ * new plugin for assigning metainfo data to page files which do not support metainfo themselves
1310
+ ------------------------------------------------------------------------
1311
+ r75 | thomas | 2004-06-21 09:55:05 +0200 (Mon, 21 Jun 2004) | 1 line
1312
+ Changed paths:
1313
+ M /trunk/webgen/trunk/src/configuration.rb
1314
+ M /trunk/webgen/trunk/src/plugins/tags/menuTag.rb
1315
+ M /trunk/webgen/trunk/testSite/src/projects/subproj/project3.xpage
1316
+
1317
+ * corrected two bugs
1318
+ ------------------------------------------------------------------------
1319
+ r74 | thomas | 2004-06-21 09:24:03 +0200 (Mon, 21 Jun 2004) | 1 line
1320
+ Changed paths:
1321
+ M /trunk/webgen/trunk/src/node.rb
1322
+ A /trunk/webgen/trunk/testSite/src/projects/subproj
1323
+ A /trunk/webgen/trunk/testSite/src/projects/subproj/index.xpage
1324
+ A /trunk/webgen/trunk/testSite/src/projects/subproj/project3.xpage
1325
+ M /trunk/webgen/trunk/todo
1326
+
1327
+ * refactored get_relpath_to_node
1328
+ ------------------------------------------------------------------------
1329
+ r73 | thomas | 2004-06-21 09:01:57 +0200 (Mon, 21 Jun 2004) | 6 lines
1330
+ Changed paths:
1331
+ M /trunk/webgen/trunk/src/configuration.rb
1332
+ M /trunk/webgen/trunk/src/node.rb
1333
+ M /trunk/webgen/trunk/src/plugins/fileHandler/fileCopyPlugin.rb
1334
+ M /trunk/webgen/trunk/src/plugins/fileHandler/pagePlugin.rb
1335
+ M /trunk/webgen/trunk/src/plugins/fileHandler/templatePlugin.rb
1336
+ M /trunk/webgen/trunk/src/plugins/nodeProcessor.rb
1337
+ M /trunk/webgen/trunk/src/plugins/tags/langTag.rb
1338
+ M /trunk/webgen/trunk/src/plugins/tags/menuTag.rb
1339
+ M /trunk/webgen/trunk/src/plugins/tags/navbarTag.rb
1340
+ M /trunk/webgen/trunk/src/plugins/tags/relocatableTag.rb
1341
+ M /trunk/webgen/trunk/src/plugins/tags/tags.rb
1342
+ D /trunk/webgen/trunk/src/plugins/treeUtils.rb
1343
+ M /trunk/webgen/trunk/testSite/src/index.xpage
1344
+ M /trunk/webgen/trunk/testSite/src/projects/project3.xpage
1345
+ M /trunk/webgen/trunk/testSite/src/projects.ypage
1346
+ M /trunk/webgen/trunk/todo
1347
+
1348
+ * treeUtils.rb deleted and methods put into node.rb
1349
+ * relocatable tag changed so that absolute paths work
1350
+ * interface for process_tag method changed
1351
+ * lang tag uses get_html_link to retrieve the link
1352
+ * template file plugin now honours the template metainfo
1353
+
1354
+ ------------------------------------------------------------------------
1355
+ r72 | thomas | 2004-06-15 18:50:13 +0200 (Tue, 15 Jun 2004) | 1 line
1356
+ Changed paths:
1357
+ M /trunk/webgen/trunk/doc/ideas
1358
+ M /trunk/webgen/trunk/src/plugins/treeUtils.rb
1359
+ M /trunk/webgen/trunk/todo
1360
+
1361
+ * some todos added
1362
+ ------------------------------------------------------------------------
1363
+ r71 | thomas | 2004-06-15 18:12:42 +0200 (Tue, 15 Jun 2004) | 1 line
1364
+ Changed paths:
1365
+ M /trunk/webgen/trunk/testSite/src/projects.de.ypage
1366
+
1367
+ * Yaml does not like $Id$ expansion without scalar modifier
1368
+ ------------------------------------------------------------------------
1369
+ r70 | thomas | 2004-06-15 18:11:02 +0200 (Tue, 15 Jun 2004) | 2 lines
1370
+ Changed paths:
1371
+ M /trunk/webgen/trunk/doc/ideas
1372
+ M /trunk/webgen/trunk/src/plugins/fileHandler/pagePlugin.rb
1373
+ M /trunk/webgen/trunk/src/plugins/fileHandler/xmlPagePlugin.rb
1374
+ M /trunk/webgen/trunk/src/plugins/tags/menuTag.rb
1375
+ M /trunk/webgen/trunk/src/plugins/tags/metatag.rb
1376
+ M /trunk/webgen/trunk/src/plugins/tags/tags.rb
1377
+ M /trunk/webgen/trunk/testSite/src/default.css
1378
+ M /trunk/webgen/trunk/testSite/src/default.template
1379
+ M /trunk/webgen/trunk/testSite/src/home.xpage
1380
+ M /trunk/webgen/trunk/testSite/src/images/bghack.png
1381
+ M /trunk/webgen/trunk/testSite/src/index.xpage
1382
+ M /trunk/webgen/trunk/testSite/src/news.xpage
1383
+ M /trunk/webgen/trunk/testSite/src/noindex/noindex.xpage
1384
+ M /trunk/webgen/trunk/testSite/src/pictures/index.xpage
1385
+ M /trunk/webgen/trunk/testSite/src/projects/index.de.ypage
1386
+ M /trunk/webgen/trunk/testSite/src/projects/index.xpage
1387
+ M /trunk/webgen/trunk/testSite/src/projects/project1.xpage
1388
+ M /trunk/webgen/trunk/testSite/src/projects/project2.xpage
1389
+ M /trunk/webgen/trunk/testSite/src/projects/project3.xpage
1390
+ M /trunk/webgen/trunk/testSite/src/projects.de.ypage
1391
+ M /trunk/webgen/trunk/testSite/src/projects.es.ypage
1392
+ M /trunk/webgen/trunk/testSite/src/projects.ypage
1393
+ M /trunk/webgen/trunk/todo
1394
+
1395
+ * all tags in a page file are now equal
1396
+ * tags are recursively replaced, i.e. processed tags are also checked for tags and so on
1397
+ ------------------------------------------------------------------------
1398
+ r69 | thomas | 2004-06-15 09:05:40 +0200 (Tue, 15 Jun 2004) | 1 line
1399
+ Changed paths:
1400
+ M /trunk/webgen/trunk/src/configuration.rb
1401
+ M /trunk/webgen/trunk/src/listplugins.rb
1402
+ M /trunk/webgen/trunk/src/plugins/fileHandler/dirPlugin.rb
1403
+ M /trunk/webgen/trunk/src/plugins/fileHandler/fileCopyPlugin.rb
1404
+ M /trunk/webgen/trunk/src/plugins/fileHandler/fileHandler.rb
1405
+ M /trunk/webgen/trunk/src/plugins/fileHandler/templatePlugin.rb
1406
+ M /trunk/webgen/trunk/src/plugins/tags/navbarTag.rb
1407
+ M /trunk/webgen/trunk/src/thg.rb
1408
+ M /trunk/webgen/trunk/todo
1409
+
1410
+ * added command line parameter to list the configuration parameters
1411
+ ------------------------------------------------------------------------
1412
+ r68 | thomas | 2004-06-15 08:20:51 +0200 (Tue, 15 Jun 2004) | 3 lines
1413
+ Changed paths:
1414
+ M /trunk/webgen/trunk/doc/ideas
1415
+ M /trunk/webgen/trunk/src/plugins/tags/metatag.rb
1416
+ M /trunk/webgen/trunk/src/plugins/tags/navbarTag.rb
1417
+ M /trunk/webgen/trunk/src/plugins/tags/tags.rb
1418
+ M /trunk/webgen/trunk/todo
1419
+
1420
+ * navbar tag is no configurable with start tag, end tag and separator
1421
+ * super plugin Tags supports a default plugin now which is called whenever no plugin for a tag is registered
1422
+ * MetaTag changed to be the default tag plugin
1423
+ ------------------------------------------------------------------------
1424
+ r67 | thomas | 2004-06-15 08:05:12 +0200 (Tue, 15 Jun 2004) | 1 line
1425
+ Changed paths:
1426
+ M /trunk/webgen/trunk/src/plugins/fileHandler/dirPlugin.rb
1427
+ M /trunk/webgen/trunk/src/plugins/nodeProcessor.rb
1428
+ M /trunk/webgen/trunk/src/plugins/tags/menuTag.rb
1429
+ M /trunk/webgen/trunk/src/plugins/tags/navbarTag.rb
1430
+ A /trunk/webgen/trunk/testSite/src/noindex
1431
+ A /trunk/webgen/trunk/testSite/src/noindex/noindex.xpage
1432
+ M /trunk/webgen/trunk/todo
1433
+
1434
+ * node processors are now responsible for creating html links for their nodes
1435
+ ------------------------------------------------------------------------
1436
+ r66 | thomas | 2004-06-14 19:27:31 +0200 (Mon, 14 Jun 2004) | 1 line
1437
+ Changed paths:
1438
+ M /trunk/webgen/trunk/src/plugins/tags/menuTag.rb
1439
+ A /trunk/webgen/trunk/testSite/src/projects.es.ypage
1440
+ M /trunk/webgen/trunk/testSite/src/projects.ypage
1441
+
1442
+ * the menu entry is now shown for a page if one language file of this page is in the menu
1443
+ ------------------------------------------------------------------------
1444
+ r65 | thomas | 2004-06-14 19:02:22 +0200 (Mon, 14 Jun 2004) | 1 line
1445
+ Changed paths:
1446
+ M /trunk/webgen/trunk/src/node.rb
1447
+ M /trunk/webgen/trunk/src/plugins/fileHandler/dirPlugin.rb
1448
+ M /trunk/webgen/trunk/src/plugins/fileHandler/fileCopyPlugin.rb
1449
+ M /trunk/webgen/trunk/src/plugins/fileHandler/pagePlugin.rb
1450
+ M /trunk/webgen/trunk/src/plugins/fileHandler/templatePlugin.rb
1451
+ A /trunk/webgen/trunk/src/plugins/nodeProcessor.rb
1452
+ M /trunk/webgen/trunk/src/plugins/tags/menuTag.rb
1453
+ M /trunk/webgen/trunk/src/plugins/tags/navbarTag.rb
1454
+ M /trunk/webgen/trunk/todo
1455
+
1456
+ * new module NodeProcessor for plugins which act as node processor
1457
+ ------------------------------------------------------------------------
1458
+ r64 | thomas | 2004-06-09 19:15:09 +0200 (Wed, 09 Jun 2004) | 2 lines
1459
+ Changed paths:
1460
+ M /trunk/webgen/trunk/doc/ideas
1461
+ M /trunk/webgen/trunk/src/plugins/fileHandler/dirPlugin.rb
1462
+ M /trunk/webgen/trunk/src/plugins/fileHandler/pagePlugin.rb
1463
+ M /trunk/webgen/trunk/src/plugins/fileHandler/xmlPagePlugin.rb
1464
+ M /trunk/webgen/trunk/src/plugins/fileHandler/yamlPagePlugin.rb
1465
+ M /trunk/webgen/trunk/src/plugins/tags/menuTag.rb
1466
+ A /trunk/webgen/trunk/src/plugins/tags/navbarTag.rb
1467
+ M /trunk/webgen/trunk/src/plugins/treeUtils.rb
1468
+ A /trunk/webgen/trunk/testSite/src/bghack.png
1469
+ M /trunk/webgen/trunk/testSite/src/default.template
1470
+ A /trunk/webgen/trunk/testSite/src/projects/index.de.ypage
1471
+ M /trunk/webgen/trunk/testSite/src/projects/index.xpage
1472
+ M /trunk/webgen/trunk/testSite/src/projects.de.ypage
1473
+ M /trunk/webgen/trunk/todo
1474
+
1475
+ * add the navbar tag plugin
1476
+ * added the functionality of directory indexes
1477
+ ------------------------------------------------------------------------
1478
+ r63 | thomas | 2004-06-09 01:05:54 +0200 (Wed, 09 Jun 2004) | 1 line
1479
+ Changed paths:
1480
+ M /trunk/webgen/trunk/testSite/src/default.template
1481
+ M /trunk/webgen/trunk/testSite/src/home.xpage
1482
+ M /trunk/webgen/trunk/testSite/src/index.xpage
1483
+ M /trunk/webgen/trunk/testSite/src/news.xpage
1484
+ M /trunk/webgen/trunk/testSite/src/pictures/index.xpage
1485
+ M /trunk/webgen/trunk/testSite/src/projects/index.xpage
1486
+ M /trunk/webgen/trunk/testSite/src/projects/project1.xpage
1487
+ M /trunk/webgen/trunk/testSite/src/projects/project2.xpage
1488
+ M /trunk/webgen/trunk/testSite/src/projects/project3.xpage
1489
+ M /trunk/webgen/trunk/testSite/src/projects.de.ypage
1490
+ M /trunk/webgen/trunk/testSite/src/projects.ypage
1491
+
1492
+ * changed svn:keywords on testsite files
1493
+ ------------------------------------------------------------------------
1494
+ r62 | thomas | 2004-06-09 01:04:02 +0200 (Wed, 09 Jun 2004) | 3 lines
1495
+ Changed paths:
1496
+ M /trunk/webgen/trunk/src/configuration.rb
1497
+ M /trunk/webgen/trunk/src/node.rb
1498
+ M /trunk/webgen/trunk/src/plugins/fileHandler/pagePlugin.rb
1499
+ M /trunk/webgen/trunk/src/plugins/tags/menuTag.rb
1500
+ M /trunk/webgen/trunk/src/plugins/treeUtils.rb
1501
+ M /trunk/webgen/trunk/testSite/src/default.template
1502
+ M /trunk/webgen/trunk/testSite/src/home.xpage
1503
+ M /trunk/webgen/trunk/testSite/src/index.xpage
1504
+ M /trunk/webgen/trunk/testSite/src/news.xpage
1505
+ M /trunk/webgen/trunk/testSite/src/pictures/index.xpage
1506
+ M /trunk/webgen/trunk/testSite/src/projects/index.xpage
1507
+ M /trunk/webgen/trunk/testSite/src/projects/project1.xpage
1508
+ M /trunk/webgen/trunk/testSite/src/projects/project2.xpage
1509
+ M /trunk/webgen/trunk/testSite/src/projects/project3.xpage
1510
+ M /trunk/webgen/trunk/testSite/src/projects.de.ypage
1511
+ M /trunk/webgen/trunk/testSite/src/projects.ypage
1512
+
1513
+ * finished menu tag plugin first version
1514
+ * did some performance optimizing
1515
+ * added svn:keywords to test page files
1516
+ ------------------------------------------------------------------------
1517
+ r61 | thomas | 2004-06-08 19:25:24 +0200 (Tue, 08 Jun 2004) | 4 lines
1518
+ Changed paths:
1519
+ M /trunk/webgen/trunk/src/configuration.rb
1520
+ M /trunk/webgen/trunk/src/node.rb
1521
+ M /trunk/webgen/trunk/src/plugins/fileHandler/fileHandler.rb
1522
+ M /trunk/webgen/trunk/src/plugins/fileHandler/pagePlugin.rb
1523
+ M /trunk/webgen/trunk/src/plugins/fileHandler/templatePlugin.rb
1524
+ M /trunk/webgen/trunk/src/plugins/fileHandler/xmlPagePlugin.rb
1525
+ M /trunk/webgen/trunk/src/plugins/fileHandler/yamlPagePlugin.rb
1526
+ A /trunk/webgen/trunk/src/plugins/tags/langTag.rb
1527
+ M /trunk/webgen/trunk/src/plugins/tags/menuTag.rb
1528
+ M /trunk/webgen/trunk/src/plugins/treeTransformer.rb
1529
+ M /trunk/webgen/trunk/src/plugins/treeUtils.rb
1530
+ M /trunk/webgen/trunk/testSite/src/default.template
1531
+ D /trunk/webgen/trunk/testSite/src/home.page
1532
+ A /trunk/webgen/trunk/testSite/src/home.xpage (from /trunk/webgen/trunk/testSite/src/home.page:57)
1533
+ D /trunk/webgen/trunk/testSite/src/index.page
1534
+ A /trunk/webgen/trunk/testSite/src/index.xpage (from /trunk/webgen/trunk/testSite/src/index.page:57)
1535
+ D /trunk/webgen/trunk/testSite/src/news.page
1536
+ A /trunk/webgen/trunk/testSite/src/news.xpage (from /trunk/webgen/trunk/testSite/src/news.page:57)
1537
+ D /trunk/webgen/trunk/testSite/src/pictures/index.page
1538
+ A /trunk/webgen/trunk/testSite/src/pictures/index.xpage (from /trunk/webgen/trunk/testSite/src/pictures/index.page:57)
1539
+ D /trunk/webgen/trunk/testSite/src/projects/index.page
1540
+ A /trunk/webgen/trunk/testSite/src/projects/index.xpage (from /trunk/webgen/trunk/testSite/src/projects/index.page:57)
1541
+ D /trunk/webgen/trunk/testSite/src/projects/project1.page
1542
+ A /trunk/webgen/trunk/testSite/src/projects/project1.xpage (from /trunk/webgen/trunk/testSite/src/projects/project1.page:57)
1543
+ D /trunk/webgen/trunk/testSite/src/projects/project2.page
1544
+ A /trunk/webgen/trunk/testSite/src/projects/project2.xpage (from /trunk/webgen/trunk/testSite/src/projects/project2.page:45)
1545
+ D /trunk/webgen/trunk/testSite/src/projects/project3.page
1546
+ A /trunk/webgen/trunk/testSite/src/projects/project3.xpage (from /trunk/webgen/trunk/testSite/src/projects/project3.page:45)
1547
+ A /trunk/webgen/trunk/testSite/src/projects.de.ypage
1548
+ D /trunk/webgen/trunk/testSite/src/projects.yaml
1549
+ A /trunk/webgen/trunk/testSite/src/projects.ypage (from /trunk/webgen/trunk/testSite/src/projects.yaml:59)
1550
+ M /trunk/webgen/trunk/todo
1551
+
1552
+ * first version of lang tag
1553
+ * changed menu tag but not really finished yet
1554
+ * added new feature: pages in more than one language
1555
+ * page file extensions always end in <page>
1556
+ ------------------------------------------------------------------------
1557
+ r60 | thomas | 2004-06-07 23:40:07 +0200 (Mon, 07 Jun 2004) | 1 line
1558
+ Changed paths:
1559
+ M /trunk/webgen/trunk/src/configuration.rb
1560
+ M /trunk/webgen/trunk/src/plugins/fileHandler/fileHandler.rb
1561
+ M /trunk/webgen/trunk/src/plugins/fileHandler/templatePlugin.rb
1562
+ M /trunk/webgen/trunk/src/plugins/tags/menuTag.rb
1563
+ M /trunk/webgen/trunk/src/plugins/tags/tags.rb
1564
+ M /trunk/webgen/trunk/src/plugins/treeTransformer.rb
1565
+ M /trunk/webgen/trunk/src/plugins/treeUtils.rb
1566
+ M /trunk/webgen/trunk/src/thg.rb
1567
+ M /trunk/webgen/trunk/todo
1568
+
1569
+ * now creating one logger for each plugin, accessible via self.logger
1570
+ ------------------------------------------------------------------------
1571
+ r59 | thomas | 2004-06-07 19:12:05 +0200 (Mon, 07 Jun 2004) | 1 line
1572
+ Changed paths:
1573
+ M /trunk/webgen/trunk/src/configuration.rb
1574
+ M /trunk/webgen/trunk/src/plugins/fileHandler/pagePlugin.rb
1575
+ M /trunk/webgen/trunk/src/plugins/tags/menuTag.rb
1576
+ M /trunk/webgen/trunk/testSite/src/projects.yaml
1577
+ M /trunk/webgen/trunk/todo
1578
+
1579
+ * saved test file in utf-8 encoding
1580
+ ------------------------------------------------------------------------
1581
+ r58 | thomas | 2004-06-03 20:51:40 +0200 (Thu, 03 Jun 2004) | 1 line
1582
+ Changed paths:
1583
+ M /trunk/webgen/trunk/testSite/src/default.template
1584
+
1585
+ * remove old xmlns reference
1586
+ ------------------------------------------------------------------------
1587
+ r57 | thomas | 2004-06-03 20:42:45 +0200 (Thu, 03 Jun 2004) | 1 line
1588
+ Changed paths:
1589
+ M /trunk/webgen/trunk/src/node.rb
1590
+ M /trunk/webgen/trunk/src/plugins/fileHandler/dirPlugin.rb
1591
+ M /trunk/webgen/trunk/src/plugins/fileHandler/xmlPagePlugin.rb
1592
+ M /trunk/webgen/trunk/src/plugins/fileHandler/yamlPagePlugin.rb
1593
+ M /trunk/webgen/trunk/src/plugins/tags/menuTag.rb
1594
+ M /trunk/webgen/trunk/src/thg.rb
1595
+ M /trunk/webgen/trunk/testSite/src/home.page
1596
+ M /trunk/webgen/trunk/testSite/src/index.page
1597
+ M /trunk/webgen/trunk/testSite/src/news.page
1598
+ M /trunk/webgen/trunk/testSite/src/pictures/index.page
1599
+ M /trunk/webgen/trunk/testSite/src/projects/index.page
1600
+ M /trunk/webgen/trunk/testSite/src/projects/project1.page
1601
+ M /trunk/webgen/trunk/testSite/src/projects.yaml
1602
+ M /trunk/webgen/trunk/todo
1603
+
1604
+ * refactured menu tag plugin
1605
+ ------------------------------------------------------------------------
1606
+ r56 | thomas | 2004-06-03 08:46:04 +0200 (Thu, 03 Jun 2004) | 3 lines
1607
+ Changed paths:
1608
+ M /trunk/webgen/trunk/src/plugins/fileHandler/pagePlugin.rb
1609
+ A /trunk/webgen/trunk/src/plugins/tags/menuTag.rb
1610
+ M /trunk/webgen/trunk/src/plugins/tags/tags.rb
1611
+ A /trunk/webgen/trunk/src/plugins/treeUtils.rb
1612
+ M /trunk/webgen/trunk/testSite/src/default.css
1613
+ M /trunk/webgen/trunk/testSite/src/default.template
1614
+ M /trunk/webgen/trunk/todo
1615
+
1616
+ * first version of menu tag
1617
+ * utility plugin for tree operations
1618
+ * updated style sheet
1619
+ ------------------------------------------------------------------------
1620
+ r55 | thomas | 2004-06-03 07:42:45 +0200 (Thu, 03 Jun 2004) | 2 lines
1621
+ Changed paths:
1622
+ M /trunk/webgen/trunk/src/plugins/fileHandler/fileHandler.rb
1623
+ M /trunk/webgen/trunk/src/plugins/fileHandler/templatePlugin.rb
1624
+ M /trunk/webgen/trunk/src/plugins/fileHandler/xmlPagePlugin.rb
1625
+ M /trunk/webgen/trunk/src/plugins/fileHandler/yamlPagePlugin.rb
1626
+ M /trunk/webgen/trunk/src/plugins/tags/relocatableTag.rb
1627
+ M /trunk/webgen/trunk/src/plugins/treeTransformer.rb
1628
+ M /trunk/webgen/trunk/todo
1629
+
1630
+ * implemented template tag correctly
1631
+ * restructured tree transformer
1632
+ ------------------------------------------------------------------------
1633
+ r54 | thomas | 2004-06-02 23:30:06 +0200 (Wed, 02 Jun 2004) | 1 line
1634
+ Changed paths:
1635
+ M /trunk/webgen/trunk/src/configuration.rb
1636
+ M /trunk/webgen/trunk/src/plugins/fileHandler/fileCopyPlugin.rb
1637
+ M /trunk/webgen/trunk/src/plugins/fileHandler/fileHandler.rb
1638
+ M /trunk/webgen/trunk/src/plugins/fileHandler/templatePlugin.rb
1639
+ M /trunk/webgen/trunk/src/plugins/tags/tags.rb
1640
+ M /trunk/webgen/trunk/src/plugins/treeTransformer.rb
1641
+ M /trunk/webgen/trunk/src/thg.rb
1642
+ M /trunk/webgen/trunk/testSite/config.yaml
1643
+ M /trunk/webgen/trunk/todo
1644
+
1645
+ * added logging via Log4r
1646
+ ------------------------------------------------------------------------
1647
+ r53 | thomas | 2004-06-02 18:49:47 +0200 (Wed, 02 Jun 2004) | 1 line
1648
+ Changed paths:
1649
+ A /trunk/webgen/trunk/src/plugins/fileHandler/pagePlugin.rb
1650
+
1651
+ * super class for page file handlers
1652
+ ------------------------------------------------------------------------
1653
+ r52 | thomas | 2004-06-02 18:49:13 +0200 (Wed, 02 Jun 2004) | 2 lines
1654
+ Changed paths:
1655
+ M /trunk/webgen/trunk/src/configuration.rb
1656
+ M /trunk/webgen/trunk/src/plugins/fileHandler/dirPlugin.rb
1657
+ M /trunk/webgen/trunk/src/plugins/fileHandler/fileCopyPlugin.rb
1658
+ M /trunk/webgen/trunk/src/plugins/fileHandler/fileHandler.rb
1659
+ M /trunk/webgen/trunk/src/plugins/fileHandler/templatePlugin.rb
1660
+ M /trunk/webgen/trunk/src/plugins/fileHandler/xmlPagePlugin.rb
1661
+ M /trunk/webgen/trunk/src/plugins/fileHandler/yamlPagePlugin.rb
1662
+ M /trunk/webgen/trunk/src/plugins/tags/relocatableTag.rb
1663
+ M /trunk/webgen/trunk/src/thg.rb
1664
+ M /trunk/webgen/trunk/todo
1665
+
1666
+ * added super class PagePlugin for page file handlers
1667
+ * new way of reading directories in FileHandler
1668
+ ------------------------------------------------------------------------
1669
+ r51 | thomas | 2004-05-26 17:21:47 +0200 (Wed, 26 May 2004) | 4 lines
1670
+ Changed paths:
1671
+ D /trunk/webgen/trunk/src/plugins/fileHandler/pagePlugin.rb
1672
+ M /trunk/webgen/trunk/src/plugins/fileHandler/templatePlugin.rb
1673
+ A /trunk/webgen/trunk/src/plugins/fileHandler/xmlPagePlugin.rb (from /trunk/webgen/trunk/src/plugins/fileHandler/pagePlugin.rb:50)
1674
+ A /trunk/webgen/trunk/src/plugins/fileHandler/yamlPagePlugin.rb
1675
+ D /trunk/webgen/trunk/src/plugins/tags/contentTag.rb
1676
+ A /trunk/webgen/trunk/src/plugins/tags/metatag.rb
1677
+ M /trunk/webgen/trunk/src/plugins/tags/relocatableTag.rb
1678
+ M /trunk/webgen/trunk/src/plugins/tags/tags.rb
1679
+ D /trunk/webgen/trunk/src/plugins/tags/titleTag.rb
1680
+ M /trunk/webgen/trunk/testSite/config.yaml
1681
+ M /trunk/webgen/trunk/testSite/src/news.page
1682
+ A /trunk/webgen/trunk/testSite/src/projects.yaml
1683
+ M /trunk/webgen/trunk/todo
1684
+
1685
+ * added meta tag plugin and removed title and content plugin
1686
+ * added yaml page description plugin
1687
+ * added sample yaml page to test site
1688
+ * refactored template and page plugin
1689
+ ------------------------------------------------------------------------
1690
+ r50 | thomas | 2004-05-26 09:00:12 +0200 (Wed, 26 May 2004) | 2 lines
1691
+ Changed paths:
1692
+ M /trunk/webgen/trunk/src/configuration.rb
1693
+ M /trunk/webgen/trunk/src/plugins/fileHandler/pagePlugin.rb
1694
+ D /trunk/webgen/trunk/testSite/config.xml
1695
+ A /trunk/webgen/trunk/testSite/config.yaml
1696
+ M /trunk/webgen/trunk/todo
1697
+
1698
+ * config.yaml instead of config.xml
1699
+ * Configuration is now read via yaml file
1700
+ ------------------------------------------------------------------------
1701
+ r49 | thomas | 2004-05-25 22:48:50 +0200 (Tue, 25 May 2004) | 2 lines
1702
+ Changed paths:
1703
+ M /trunk/webgen/trunk/src/plugins/fileHandler/dirPlugin.rb
1704
+ M /trunk/webgen/trunk/src/plugins/fileHandler/fileCopyPlugin.rb
1705
+ M /trunk/webgen/trunk/src/plugins/fileHandler/fileHandler.rb
1706
+ M /trunk/webgen/trunk/src/plugins/fileHandler/pagePlugin.rb
1707
+ M /trunk/webgen/trunk/src/plugins/tags/contentTag.rb
1708
+ M /trunk/webgen/trunk/src/plugins/tags/relocatableTag.rb
1709
+ M /trunk/webgen/trunk/src/plugins/tags/tags.rb
1710
+ M /trunk/webgen/trunk/src/plugins/tags/titleTag.rb
1711
+ M /trunk/webgen/trunk/src/plugins/treeTransformer.rb
1712
+ M /trunk/webgen/trunk/src/thg.rb
1713
+ M /trunk/webgen/trunk/todo
1714
+
1715
+ * beautified code a little bit
1716
+ * added correct relocatable tag handling
1717
+ ------------------------------------------------------------------------
1718
+ r48 | thomas | 2004-05-25 19:09:13 +0200 (Tue, 25 May 2004) | 3 lines
1719
+ Changed paths:
1720
+ D /trunk/webgen/trunk/src/config.xml
1721
+ M /trunk/webgen/trunk/src/configuration.rb
1722
+ M /trunk/webgen/trunk/src/listplugins.rb
1723
+ M /trunk/webgen/trunk/src/node.rb
1724
+ A /trunk/webgen/trunk/src/plugins/fileHandler/dirPlugin.rb
1725
+ M /trunk/webgen/trunk/src/plugins/fileHandler/fileCopyPlugin.rb
1726
+ M /trunk/webgen/trunk/src/plugins/fileHandler/fileHandler.rb
1727
+ M /trunk/webgen/trunk/src/plugins/fileHandler/pagePlugin.rb
1728
+ M /trunk/webgen/trunk/src/plugins/fileHandler/templatePlugin.rb
1729
+ M /trunk/webgen/trunk/src/plugins/tags/contentTag.rb
1730
+ M /trunk/webgen/trunk/src/plugins/tags/relocatableTag.rb
1731
+ M /trunk/webgen/trunk/src/plugins/tags/tags.rb
1732
+ M /trunk/webgen/trunk/src/plugins/tags/titleTag.rb
1733
+ M /trunk/webgen/trunk/src/plugins/treeTransformer.rb
1734
+ M /trunk/webgen/trunk/src/thg.rb
1735
+ M /trunk/webgen/trunk/src/thgexception.rb
1736
+ A /trunk/webgen/trunk/testSite/config.xml (from /trunk/webgen/trunk/src/config.xml:45)
1737
+ M /trunk/webgen/trunk/testSite/src/default.css
1738
+ M /trunk/webgen/trunk/testSite/src/default.template
1739
+ M /trunk/webgen/trunk/todo
1740
+
1741
+ * refactored source code due to UPS change
1742
+ * formatted the all files in one style
1743
+ * tags are not xml markup anymore, but yaml markup
1744
+ ------------------------------------------------------------------------
1745
+ r47 | thomas | 2004-05-24 08:46:17 +0200 (Mon, 24 May 2004) | 2 lines
1746
+ Changed paths:
1747
+ D /trunk/webgen/trunk/src/composite.rb
1748
+ D /trunk/webgen/trunk/src/listener.rb
1749
+
1750
+ * moved these files to standard library repository
1751
+
1752
+ ------------------------------------------------------------------------
1753
+ r46 | thomas | 2004-05-11 08:10:13 +0200 (Tue, 11 May 2004) | 3 lines
1754
+ Changed paths:
1755
+ M /trunk/webgen/trunk/src
1756
+ M /trunk/webgen/trunk/src/configuration.rb
1757
+ M /trunk/webgen/trunk/src/listener.rb
1758
+ M /trunk/webgen/trunk/src/listplugins.rb
1759
+ M /trunk/webgen/trunk/src/thgexception.rb
1760
+ M /trunk/webgen/trunk/todo
1761
+
1762
+ * corrected some false whitespace
1763
+ * refactored Listener interface
1764
+
1765
+ ------------------------------------------------------------------------
1766
+ r45 | thomas | 2004-04-03 14:45:00 +0200 (Sat, 03 Apr 2004) | 1 line
1767
+ Changed paths:
1768
+ M /trunk/webgen/trunk/src/configuration.rb
1769
+ M /trunk/webgen/trunk/src/plugins/fileHandler/pagePlugin.rb
1770
+ M /trunk/webgen/trunk/src/thgexception.rb
1771
+ M /trunk/webgen/trunk/todo
1772
+
1773
+ * small changes
1774
+ ------------------------------------------------------------------------
1775
+ r44 | thomas | 2004-03-24 22:08:51 +0100 (Wed, 24 Mar 2004) | 1 line
1776
+ Changed paths:
1777
+ M /trunk/webgen/trunk/src
1778
+ M /trunk/webgen/trunk/todo
1779
+
1780
+
1781
+ ------------------------------------------------------------------------
1782
+ r43 | thomas | 2004-02-13 00:19:34 +0100 (Fri, 13 Feb 2004) | 1 line
1783
+ Changed paths:
1784
+ M /trunk/webgen/trunk/src/config.xml
1785
+ M /trunk/webgen/trunk/src/configuration.rb
1786
+ M /trunk/webgen/trunk/src/thg.rb
1787
+
1788
+ * added option for enabling/disabling ansi color
1789
+ ------------------------------------------------------------------------
1790
+ r42 | thomas | 2004-02-12 00:40:22 +0100 (Thu, 12 Feb 2004) | 1 line
1791
+ Changed paths:
1792
+ M /trunk/webgen/trunk/src
1793
+
1794
+ corrected path to ups for windows
1795
+ ------------------------------------------------------------------------
1796
+ r41 | thomasl | 2003-12-17 21:01:08 +0100 (Wed, 17 Dec 2003) | 2 lines
1797
+ Changed paths:
1798
+ A /trunk/webgen/trunk/src/plugins/fileHandler/templatePlugin.rb
1799
+
1800
+ * added template Plugin file
1801
+
1802
+ ------------------------------------------------------------------------
1803
+ r40 | thomasl | 2003-12-17 08:45:35 +0100 (Wed, 17 Dec 2003) | 5 lines
1804
+ Changed paths:
1805
+ M /trunk/webgen/trunk/src/config.xml
1806
+ M /trunk/webgen/trunk/src/plugins/fileHandler/fileHandler.rb
1807
+ M /trunk/webgen/trunk/src/plugins/fileHandler/pagePlugin.rb
1808
+ M /trunk/webgen/trunk/src/plugins/tags/relocatableTag.rb
1809
+ M /trunk/webgen/trunk/src/plugins/tags/tags.rb
1810
+ M /trunk/webgen/trunk/src/thg.rb
1811
+ A /trunk/webgen/trunk/testSite/src/default.template (from /trunk/webgen/trunk/testSite/src/template.html:39)
1812
+ D /trunk/webgen/trunk/testSite/src/template.html
1813
+
1814
+ * added plugin for template files
1815
+ * bug fixed: thg tags with other tags inside could not be found
1816
+ * rename template.html to default.template
1817
+ * changed behaviour in page plugin to use template file nodes
1818
+
1819
+ ------------------------------------------------------------------------
1820
+ r39 | thomasl | 2003-12-15 07:50:47 +0100 (Mon, 15 Dec 2003) | 4 lines
1821
+ Changed paths:
1822
+ M /trunk/webgen/trunk/doc/ideas
1823
+ M /trunk/webgen/trunk/src/configuration.rb
1824
+ M /trunk/webgen/trunk/src/listplugins.rb
1825
+ M /trunk/webgen/trunk/src/plugins/fileHandler/fileCopyPlugin.rb
1826
+ M /trunk/webgen/trunk/src/plugins/fileHandler/fileHandler.rb
1827
+ M /trunk/webgen/trunk/src/plugins/fileHandler/pagePlugin.rb
1828
+ M /trunk/webgen/trunk/src/plugins/tags/contentTag.rb
1829
+ A /trunk/webgen/trunk/src/plugins/tags/relocatableTag.rb
1830
+ M /trunk/webgen/trunk/src/plugins/tags/tags.rb
1831
+ M /trunk/webgen/trunk/src/plugins/tags/titleTag.rb
1832
+ M /trunk/webgen/trunk/src/thg.rb
1833
+ M /trunk/webgen/trunk/src/thgexception.rb
1834
+ M /trunk/webgen/trunk/testSite/src/template.html
1835
+ M /trunk/webgen/trunk/todo
1836
+
1837
+ * added keyword Id to all rb files
1838
+ * added some convenience methods to Configuration
1839
+ * added relocatable tag, but not implemented
1840
+
1841
+ ------------------------------------------------------------------------
1842
+ r38 | thomasl | 2003-12-15 07:23:59 +0100 (Mon, 15 Dec 2003) | 4 lines
1843
+ Changed paths:
1844
+ D /trunk/webgen/trunk/design/bghack.png
1845
+ M /trunk/webgen/trunk/design/design.css
1846
+ A /trunk/webgen/trunk/design/images
1847
+ A /trunk/webgen/trunk/design/images/bghack.png (from /trunk/webgen/trunk/design/bghack.png:37)
1848
+ M /trunk/webgen/trunk/src/configuration.rb
1849
+ M /trunk/webgen/trunk/src/plugins/fileHandler/fileHandler.rb
1850
+ M /trunk/webgen/trunk/src/plugins/fileHandler/pagePlugin.rb
1851
+ M /trunk/webgen/trunk/src/plugins/treeTransformer.rb
1852
+ M /trunk/webgen/trunk/src/thg.rb
1853
+ M /trunk/webgen/trunk/testSite/src/default.css
1854
+ A /trunk/webgen/trunk/testSite/src/images
1855
+ A /trunk/webgen/trunk/testSite/src/images/bghack.png (from /trunk/webgen/trunk/design/bghack.png:37)
1856
+ M /trunk/webgen/trunk/testSite/src/template.html
1857
+ M /trunk/webgen/trunk/todo
1858
+
1859
+ * added image for design hack with two columns
1860
+ * added ansi coloured output
1861
+ * added constants for log output types
1862
+
1863
+ ------------------------------------------------------------------------
1864
+ r37 | thomasl | 2003-12-15 01:32:56 +0100 (Mon, 15 Dec 2003) | 2 lines
1865
+ Changed paths:
1866
+ A /trunk/webgen/trunk/design/bghack.png
1867
+ M /trunk/webgen/trunk/design/design.css
1868
+ M /trunk/webgen/trunk/design/design.html
1869
+
1870
+ * finally got a working two column "equal" height page
1871
+
1872
+ ------------------------------------------------------------------------
1873
+ r36 | thomasl | 2003-12-14 07:31:14 +0100 (Sun, 14 Dec 2003) | 2 lines
1874
+ Changed paths:
1875
+ M /trunk/webgen/trunk/design/design.css
1876
+ M /trunk/webgen/trunk/design/design.html
1877
+ A /trunk/webgen/trunk/design/styling.css
1878
+ M /trunk/webgen/trunk/src/plugins/fileHandler/pagePlugin.rb
1879
+ M /trunk/webgen/trunk/testSite/src/default.css
1880
+ M /trunk/webgen/trunk/testSite/src/template.html
1881
+
1882
+ * improved design in Opera (all other browsers not standard conformant)
1883
+
1884
+ ------------------------------------------------------------------------
1885
+ r35 | thomasl | 2003-12-12 07:34:53 +0100 (Fri, 12 Dec 2003) | 2 lines
1886
+ Changed paths:
1887
+ M /trunk/webgen/trunk/design/design.css
1888
+ M /trunk/webgen/trunk/design/design.html
1889
+
1890
+ * enhanced the design
1891
+
1892
+ ------------------------------------------------------------------------
1893
+ r34 | thomasl | 2003-12-10 08:50:33 +0100 (Wed, 10 Dec 2003) | 4 lines
1894
+ Changed paths:
1895
+ M /trunk/webgen/trunk/src/config.xml
1896
+ M /trunk/webgen/trunk/src/configuration.rb
1897
+ A /trunk/webgen/trunk/src/plugins/fileHandler
1898
+ A /trunk/webgen/trunk/src/plugins/fileHandler/fileCopyPlugin.rb
1899
+ A /trunk/webgen/trunk/src/plugins/fileHandler/fileHandler.rb (from /trunk/webgen/trunk/src/plugins/fileHandler.rb:33)
1900
+ A /trunk/webgen/trunk/src/plugins/fileHandler/pagePlugin.rb
1901
+ D /trunk/webgen/trunk/src/plugins/fileHandler.rb
1902
+ D /trunk/webgen/trunk/src/plugins/hooks.rb
1903
+ A /trunk/webgen/trunk/src/plugins/tags
1904
+ A /trunk/webgen/trunk/src/plugins/tags/contentTag.rb
1905
+ A /trunk/webgen/trunk/src/plugins/tags/tags.rb (from /trunk/webgen/trunk/src/plugins/tags.rb:33)
1906
+ A /trunk/webgen/trunk/src/plugins/tags/titleTag.rb
1907
+ D /trunk/webgen/trunk/src/plugins/tags.rb
1908
+ M /trunk/webgen/trunk/src/thg.rb
1909
+ M /trunk/webgen/trunk/src/thgexception.rb
1910
+ A /trunk/webgen/trunk/testSite/src/home.page (from /trunk/webgen/trunk/testSite/src/home.xml:29)
1911
+ D /trunk/webgen/trunk/testSite/src/home.xml
1912
+ A /trunk/webgen/trunk/testSite/src/index.page (from /trunk/webgen/trunk/testSite/src/index.xml:29)
1913
+ D /trunk/webgen/trunk/testSite/src/index.xml
1914
+ A /trunk/webgen/trunk/testSite/src/news.page (from /trunk/webgen/trunk/testSite/src/news.xml:29)
1915
+ D /trunk/webgen/trunk/testSite/src/news.xml
1916
+ A /trunk/webgen/trunk/testSite/src/pictures/index.page (from /trunk/webgen/trunk/testSite/src/pictures/index.xml:29)
1917
+ D /trunk/webgen/trunk/testSite/src/pictures/index.xml
1918
+ A /trunk/webgen/trunk/testSite/src/projects/index.page (from /trunk/webgen/trunk/testSite/src/projects/index.xml:29)
1919
+ D /trunk/webgen/trunk/testSite/src/projects/index.xml
1920
+ A /trunk/webgen/trunk/testSite/src/projects/project1.page (from /trunk/webgen/trunk/testSite/src/projects/project1.xml:29)
1921
+ D /trunk/webgen/trunk/testSite/src/projects/project1.xml
1922
+ A /trunk/webgen/trunk/testSite/src/projects/project2.page (from /trunk/webgen/trunk/testSite/src/projects/project2.xml:29)
1923
+ D /trunk/webgen/trunk/testSite/src/projects/project2.xml
1924
+ A /trunk/webgen/trunk/testSite/src/projects/project3.page (from /trunk/webgen/trunk/testSite/src/projects/project3.xml:29)
1925
+ D /trunk/webgen/trunk/testSite/src/projects/project3.xml
1926
+ M /trunk/webgen/trunk/todo
1927
+
1928
+ * moved plugins to appropriate directories
1929
+ * moved some classes in own files
1930
+ * changed extension for page files to .page
1931
+
1932
+ ------------------------------------------------------------------------
1933
+ r33 | thomasl | 2003-12-06 05:32:07 +0100 (Sat, 06 Dec 2003) | 3 lines
1934
+ Changed paths:
1935
+ M /trunk/webgen/trunk/src/config.xml
1936
+ M /trunk/webgen/trunk/src/configuration.rb
1937
+ M /trunk/webgen/trunk/src/plugins/fileHandler.rb
1938
+ M /trunk/webgen/trunk/src/plugins/tags.rb
1939
+
1940
+ * moved some parts from filehandler to configuration and from configuration to xmlPagePlugin
1941
+ * changed config.xml accordingly
1942
+
1943
+ ------------------------------------------------------------------------
1944
+ r32 | thomasl | 2003-12-05 07:31:57 +0100 (Fri, 05 Dec 2003) | 5 lines
1945
+ Changed paths:
1946
+ M /trunk/webgen/trunk/src/config.xml
1947
+ M /trunk/webgen/trunk/src/configuration.rb
1948
+ A /trunk/webgen/trunk/src/listener.rb (from /trunk/webgen/trunk/src/plugins/listener.rb:30)
1949
+ A /trunk/webgen/trunk/src/listplugins.rb
1950
+ A /trunk/webgen/trunk/src/node.rb (from /trunk/webgen/trunk/src/tree.rb:30)
1951
+ M /trunk/webgen/trunk/src/plugins/fileHandler.rb
1952
+ D /trunk/webgen/trunk/src/plugins/listener.rb
1953
+ M /trunk/webgen/trunk/src/thg.rb
1954
+ M /trunk/webgen/trunk/src/thgexception.rb
1955
+ D /trunk/webgen/trunk/src/tree.rb
1956
+
1957
+ * add listplugins.rb to repo
1958
+ * mv tree.rb to node.rb
1959
+ * modified Listener module
1960
+ * removed some things from Configuration which did not belong there
1961
+
1962
+ ------------------------------------------------------------------------
1963
+ r31 | thomasl | 2003-12-04 21:23:05 +0100 (Thu, 04 Dec 2003) | 1 line
1964
+ Changed paths:
1965
+ M /trunk/webgen/trunk/src/thg.rb
1966
+
1967
+ * simplified the calling of the execution path
1968
+ ------------------------------------------------------------------------
1969
+ r30 | thomasl | 2003-12-04 10:40:48 +0100 (Thu, 04 Dec 2003) | 5 lines
1970
+ Changed paths:
1971
+ M /trunk/webgen/trunk/src/composite.rb
1972
+ M /trunk/webgen/trunk/src/configuration.rb
1973
+ M /trunk/webgen/trunk/src/plugins/fileHandler.rb
1974
+ A /trunk/webgen/trunk/src/plugins/hooks.rb
1975
+ A /trunk/webgen/trunk/src/plugins/listener.rb
1976
+ M /trunk/webgen/trunk/src/plugins/tags.rb
1977
+ M /trunk/webgen/trunk/src/plugins/treeTransformer.rb
1978
+ M /trunk/webgen/trunk/src/thg.rb
1979
+ M /trunk/webgen/trunk/src/thgexception.rb
1980
+ M /trunk/webgen/trunk/src/tree.rb
1981
+ D /trunk/webgen/trunk/testSite/output
1982
+ M /trunk/webgen/trunk/todo
1983
+
1984
+ * added svn:keywords to ruby source files
1985
+ * implemented hooks system
1986
+ * loading plugins uses dependency system of ups
1987
+ * implemented filehandler hook which is used by page plugin
1988
+
1989
+ ------------------------------------------------------------------------
1990
+ r29 | thomasl | 2003-12-03 09:45:25 +0100 (Wed, 03 Dec 2003) | 3 lines
1991
+ Changed paths:
1992
+ M /trunk/webgen/trunk/src/plugins/fileHandler.rb
1993
+ M /trunk/webgen/trunk/src/plugins/treeTransformer.rb
1994
+ M /trunk/webgen/trunk/src/thg.rb
1995
+ M /trunk/webgen/trunk/src/tree.rb
1996
+ M /trunk/webgen/trunk/todo
1997
+
1998
+ * changed format of tree structure
1999
+ * all describe methods and ThgException now added/corrected
2000
+
2001
+ ------------------------------------------------------------------------
2002
+ r28 | thomasl | 2003-12-02 08:47:45 +0100 (Tue, 02 Dec 2003) | 3 lines
2003
+ Changed paths:
2004
+ M /trunk/webgen/trunk/src/configuration.rb
2005
+ M /trunk/webgen/trunk/src/plugins/fileHandler.rb
2006
+ M /trunk/webgen/trunk/src/plugins/tags.rb
2007
+ M /trunk/webgen/trunk/src/thg.rb
2008
+ M /trunk/webgen/trunk/src/thgexception.rb
2009
+ M /trunk/webgen/trunk/testSite/src/home.xml
2010
+
2011
+ * reorganized the exception registration mechanism
2012
+ * changed some of the old exception calls to the new system
2013
+
2014
+ ------------------------------------------------------------------------
2015
+ r27 | thomasl | 2003-12-01 09:24:27 +0100 (Mon, 01 Dec 2003) | 5 lines
2016
+ Changed paths:
2017
+ M /trunk/webgen/trunk/doc/ideas
2018
+ M /trunk/webgen/trunk/src/config.xml
2019
+ M /trunk/webgen/trunk/src/configuration.rb
2020
+ D /trunk/webgen/trunk/src/parser.rb
2021
+ M /trunk/webgen/trunk/src/plugins/fileHandler.rb
2022
+ M /trunk/webgen/trunk/src/plugins/tags.rb
2023
+ M /trunk/webgen/trunk/src/plugins/treeTransformer.rb
2024
+ M /trunk/webgen/trunk/src/thg.rb
2025
+ M /trunk/webgen/trunk/src/thgexception.rb
2026
+ M /trunk/webgen/trunk/src/tree.rb
2027
+ M /trunk/webgen/trunk/todo
2028
+
2029
+ * added new exception mechanism
2030
+ * added new log mechanism using configurable verbosity level
2031
+ * restructured some files
2032
+ * parser.rb obsolete, functionality in fileHandler.rb
2033
+
2034
+ ------------------------------------------------------------------------
2035
+ r26 | thomasl | 2003-11-26 07:29:17 +0100 (Wed, 26 Nov 2003) | 2 lines
2036
+ Changed paths:
2037
+ M /trunk/webgen/trunk/src/config.xml
2038
+ M /trunk/webgen/trunk/src/configuration.rb
2039
+ M /trunk/webgen/trunk/src/plugins/fileHandler.rb
2040
+ M /trunk/webgen/trunk/src/plugins/tags.rb
2041
+ M /trunk/webgen/trunk/src/plugins/treeTransformer.rb
2042
+ M /trunk/webgen/trunk/src/thg.rb
2043
+ M /trunk/webgen/trunk/src/tree.rb
2044
+ M /trunk/webgen/trunk/todo
2045
+
2046
+ * changed replacing of tags from using XML Document and XPATH to string replace via regexp
2047
+
2048
+ ------------------------------------------------------------------------
2049
+ r25 | thomasl | 2003-11-26 01:53:26 +0100 (Wed, 26 Nov 2003) | 3 lines
2050
+ Changed paths:
2051
+ M /trunk/webgen/trunk/src/config.xml
2052
+ M /trunk/webgen/trunk/src/configuration.rb
2053
+ A /trunk/webgen/trunk/src/plugins/fileHandler.rb (from /trunk/webgen/trunk/src/plugins/fileWriter.rb:24)
2054
+ D /trunk/webgen/trunk/src/plugins/fileWriter.rb
2055
+ M /trunk/webgen/trunk/src/thg.rb
2056
+ M /trunk/webgen/trunk/src/tree.rb
2057
+ M /trunk/webgen/trunk/todo
2058
+
2059
+ * restructured reading and writing of files
2060
+ * files are handled by plugins, dispatched using extension
2061
+
2062
+ ------------------------------------------------------------------------
2063
+ r24 | thomasl | 2003-11-25 10:21:43 +0100 (Tue, 25 Nov 2003) | 3 lines
2064
+ Changed paths:
2065
+ M /trunk/webgen/trunk/doc/ideas
2066
+ A /trunk/webgen/trunk/src/composite.rb
2067
+ M /trunk/webgen/trunk/src/config.xml
2068
+ M /trunk/webgen/trunk/src/configuration.rb
2069
+ M /trunk/webgen/trunk/src/parser.rb
2070
+ M /trunk/webgen/trunk/src/plugins/fileWriter.rb
2071
+ A /trunk/webgen/trunk/src/plugins/tags.rb
2072
+ M /trunk/webgen/trunk/src/thg.rb
2073
+ A /trunk/webgen/trunk/src/thgexception.rb
2074
+ M /trunk/webgen/trunk/src/tree.rb
2075
+ A /trunk/webgen/trunk/testSite/src/default.css
2076
+ A /trunk/webgen/trunk/testSite/src/home.xml
2077
+ A /trunk/webgen/trunk/testSite/src/index.xml
2078
+ A /trunk/webgen/trunk/testSite/src/news.xml
2079
+ A /trunk/webgen/trunk/testSite/src/pictures
2080
+ A /trunk/webgen/trunk/testSite/src/pictures/index.xml
2081
+ A /trunk/webgen/trunk/testSite/src/projects
2082
+ A /trunk/webgen/trunk/testSite/src/projects/index.xml
2083
+ A /trunk/webgen/trunk/testSite/src/projects/project1.xml
2084
+ A /trunk/webgen/trunk/testSite/src/projects/project2.xml
2085
+ A /trunk/webgen/trunk/testSite/src/projects/project3.xml
2086
+ A /trunk/webgen/trunk/testSite/src/template.html
2087
+ M /trunk/webgen/trunk/todo
2088
+
2089
+ * very crude implementation works now
2090
+ * test files added
2091
+
2092
+ ------------------------------------------------------------------------
2093
+ r23 | thomasl | 2003-11-24 08:02:31 +0100 (Mon, 24 Nov 2003) | 3 lines
2094
+ Changed paths:
2095
+ A /trunk/webgen/trunk/src/config.xml
2096
+ A /trunk/webgen/trunk/src/configuration.rb
2097
+ A /trunk/webgen/trunk/src/parser.rb
2098
+ A /trunk/webgen/trunk/src/plugins/fileWriter.rb
2099
+ A /trunk/webgen/trunk/src/plugins/treeTransformer.rb
2100
+ A /trunk/webgen/trunk/src/thg.rb
2101
+ A /trunk/webgen/trunk/src/tree.rb
2102
+ A /trunk/webgen/trunk/testSite
2103
+ A /trunk/webgen/trunk/testSite/output
2104
+ A /trunk/webgen/trunk/testSite/resources
2105
+ A /trunk/webgen/trunk/testSite/src
2106
+ M /trunk/webgen/trunk/todo
2107
+
2108
+ * added basic files and some basic behaviour
2109
+ * test directory created
2110
+
2111
+ ------------------------------------------------------------------------
2112
+ r22 | thomasl | 2003-11-24 06:31:53 +0100 (Mon, 24 Nov 2003) | 3 lines
2113
+ Changed paths:
2114
+ M /trunk/webgen/trunk
2115
+ M /trunk/webgen/trunk/design/design.html
2116
+ M /trunk/webgen/trunk/doc/ideas
2117
+ A /trunk/webgen/trunk/src
2118
+ A /trunk/webgen/trunk/src/plugins
2119
+ A /trunk/webgen/trunk/src/resources
2120
+ M /trunk/webgen/trunk/todo
2121
+
2122
+ * add src directory structure
2123
+ * extended ideas
2124
+
2125
+ ------------------------------------------------------------------------
2126
+ r21 | thomasl | 2003-11-21 09:22:29 +0100 (Fri, 21 Nov 2003) | 1 line
2127
+ Changed paths:
2128
+ M /trunk/webgen/trunk/design/design.css
2129
+ M /trunk/webgen/trunk/design/design.html
2130
+ A /trunk/webgen/trunk/doc
2131
+ A /trunk/webgen/trunk/doc/ideas
2132
+ A /trunk/webgen/trunk/todo
2133
+
2134
+
2135
+ ------------------------------------------------------------------------
2136
+ r20 | thomasl | 2003-11-19 20:52:41 +0100 (Wed, 19 Nov 2003) | 1 line
2137
+ Changed paths:
2138
+ M /trunk/webgen/trunk/design/design.css
2139
+ M /trunk/webgen/trunk/design/design.html
2140
+
2141
+ enhanced design of homepage
2142
+ ------------------------------------------------------------------------
2143
+ r19 | thomasl | 2003-11-18 06:37:21 +0100 (Tue, 18 Nov 2003) | 1 line
2144
+ Changed paths:
2145
+ M /trunk/webgen/trunk
2146
+ D /trunk/webgen/trunk/ups
2147
+
2148
+
2149
+ ------------------------------------------------------------------------
2150
+ r18 | thomasl | 2003-11-18 06:35:14 +0100 (Tue, 18 Nov 2003) | 1 line
2151
+ Changed paths:
2152
+ M /trunk/webgen/trunk/design/design.css
2153
+ A /trunk/webgen/trunk/ups
2154
+
2155
+
2156
+ ------------------------------------------------------------------------
2157
+ r17 | thomasl | 2003-11-18 06:03:28 +0100 (Tue, 18 Nov 2003) | 2 lines
2158
+ Changed paths:
2159
+ A /trunk/webgen/trunk/design
2160
+ A /trunk/webgen/trunk/design/design.css
2161
+ A /trunk/webgen/trunk/design/design.html
2162
+
2163
+ * added sophisticated css menu
2164
+
2165
+ ------------------------------------------------------------------------
2166
+ r16 | thomasl | 2003-11-17 07:48:19 +0100 (Mon, 17 Nov 2003) | 1 line
2167
+ Changed paths:
2168
+ A /trunk/webgen/trunk
2169
+ A /trunk/webgen/versions
2170
+
2171
+ * initial directory construction
2172
+ ------------------------------------------------------------------------