webgen 0.5.10 → 0.5.11
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog +487 -0
- data/Rakefile +13 -28
- data/VERSION +1 -1
- data/bin/webgen +1 -2
- data/data/webgen/passive_sources/templates/atom_feed.template +1 -0
- data/data/webgen/website_bundles/style/andreas07/src/default.css +2 -2
- data/data/webgen/website_skeleton/config.yaml +22 -5
- data/doc/contentprocessor.template +2 -2
- data/doc/contentprocessor/blocks.page +4 -4
- data/doc/contentprocessor/builder.page +2 -3
- data/doc/contentprocessor/erb.page +1 -1
- data/doc/contentprocessor/erubis.page +5 -5
- data/doc/contentprocessor/fragments.page +5 -4
- data/doc/contentprocessor/haml.page +2 -3
- data/doc/contentprocessor/head.page +16 -6
- data/doc/contentprocessor/kramdown.page +49 -0
- data/doc/contentprocessor/less.page +34 -0
- data/doc/contentprocessor/maruku.page +6 -3
- data/doc/contentprocessor/rdiscount.page +3 -3
- data/doc/contentprocessor/rdoc.page +1 -1
- data/doc/contentprocessor/redcloth.page +1 -1
- data/doc/contentprocessor/sass.page +1 -1
- data/doc/contentprocessor/tags.page +2 -2
- data/doc/contentprocessor/tidy.page +2 -2
- data/doc/extensions.page +1 -2
- data/doc/extensions.template +5 -5
- data/doc/getting_started.page +16 -12
- data/doc/index.page +21 -21
- data/doc/manual.page +109 -61
- data/doc/reference_configuration.page +63 -38
- data/doc/reference_metainfo.page +68 -45
- data/doc/reference_website_styles.page +5 -1
- data/doc/source/filesystem.page +4 -4
- data/doc/source/tararchive.page +4 -4
- data/doc/sourcehandler.template +2 -2
- data/doc/sourcehandler/feed.page +3 -4
- data/doc/sourcehandler/metainfo.page +1 -1
- data/doc/sourcehandler/page.page +3 -3
- data/doc/sourcehandler/sitemap.page +2 -3
- data/doc/sourcehandler/template.page +2 -2
- data/doc/sourcehandler/virtual.page +5 -5
- data/doc/tag.template +1 -1
- data/doc/tag/coderay.page +2 -2
- data/doc/tag/includefile.page +1 -1
- data/doc/tag/langbar.page +4 -1
- data/doc/tag/menu.page +3 -3
- data/doc/tag/relocatable.page +1 -1
- data/doc/upgrading.page +30 -31
- data/doc/webgen_page_format.page +6 -6
- data/lib/webgen/cache.rb +4 -5
- data/lib/webgen/cli/utils.rb +18 -7
- data/lib/webgen/cli/webgui_command.rb +4 -2
- data/lib/webgen/common.rb +10 -0
- data/lib/webgen/configuration.rb +1 -3
- data/lib/webgen/contentprocessor.rb +4 -2
- data/lib/webgen/contentprocessor/blocks.rb +1 -0
- data/lib/webgen/contentprocessor/builder.rb +3 -9
- data/lib/webgen/contentprocessor/erb.rb +3 -9
- data/lib/webgen/contentprocessor/erubis.rb +3 -9
- data/lib/webgen/contentprocessor/haml.rb +10 -11
- data/lib/webgen/contentprocessor/head.rb +64 -0
- data/lib/webgen/contentprocessor/kramdown.rb +26 -0
- data/lib/webgen/contentprocessor/kramdown/html.rb +32 -0
- data/lib/webgen/contentprocessor/less.rb +35 -0
- data/lib/webgen/contentprocessor/maruku.rb +14 -0
- data/lib/webgen/contentprocessor/tags.rb +25 -7
- data/lib/webgen/default_config.rb +9 -3
- data/lib/webgen/node.rb +92 -0
- data/lib/webgen/output.rb +3 -1
- data/lib/webgen/source/resource.rb +2 -1
- data/lib/webgen/source/tararchive.rb +3 -2
- data/lib/webgen/sourcehandler.rb +8 -4
- data/lib/webgen/sourcehandler/base.rb +1 -2
- data/lib/webgen/sourcehandler/feed.rb +1 -1
- data/lib/webgen/sourcehandler/virtual.rb +1 -0
- data/lib/webgen/tag/base.rb +1 -1
- data/lib/webgen/tag/langbar.rb +5 -2
- data/lib/webgen/version.rb +1 -1
- data/lib/webgen/website.rb +7 -8
- data/misc/default.template +1 -1
- data/misc/htmldoc.virtual +13 -1
- data/test/test_contentprocessor.rb +1 -1
- data/test/test_contentprocessor_blocks.rb +16 -1
- data/test/test_contentprocessor_erb.rb +1 -1
- data/test/test_contentprocessor_fragments.rb +1 -1
- data/test/test_contentprocessor_haml.rb +2 -2
- data/test/test_contentprocessor_head.rb +54 -8
- data/test/test_contentprocessor_kramdown.rb +50 -0
- data/test/test_contentprocessor_less.rb +40 -0
- data/test/test_contentprocessor_tags.rb +8 -0
- data/test/test_node.rb +102 -41
- data/test/test_source_tararchive.rb +5 -1
- data/test/test_sourcehandler_feed.rb +5 -2
- data/test/test_sourcehandler_virtual.rb +5 -0
- data/test/test_tag_langbar.rb +2 -3
- metadata +22 -16
- data/lib/webgen/deprecated.rb +0 -87
data/ChangeLog
CHANGED
@@ -1,3 +1,490 @@
|
|
1
|
+
commit a80a2fea9db04394d580db0cfe49306b4e1ea820
|
2
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
3
|
+
Date: Mon Feb 15 10:49:52 2010 +0100
|
4
|
+
|
5
|
+
Fixed test failure after removing deprecated methods
|
6
|
+
|
7
|
+
test/test_contentprocessor_erb.rb
|
8
|
+
|
9
|
+
commit da26d3deedc30710f2e8d65ed5182951b7081865
|
10
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
11
|
+
Date: Mon Feb 15 10:47:32 2010 +0100
|
12
|
+
|
13
|
+
Added pushing gems to gemcutter
|
14
|
+
|
15
|
+
Rakefile
|
16
|
+
|
17
|
+
commit 2828f21063db2ca41d289ac3c52d420f21fbd177
|
18
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
19
|
+
Date: Mon Feb 15 10:36:16 2010 +0100
|
20
|
+
|
21
|
+
Updated needed kramdown version
|
22
|
+
|
23
|
+
Rakefile
|
24
|
+
website/src/installation.page
|
25
|
+
|
26
|
+
commit 3b9bfd58e55212f71a65da95f23fb856d13c601b
|
27
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
28
|
+
Date: Sat Feb 13 19:02:58 2010 +0100
|
29
|
+
|
30
|
+
Updated website for release
|
31
|
+
|
32
|
+
website/src/index.page
|
33
|
+
website/src/news/index.page
|
34
|
+
website/src/news/release_0_5_11.page
|
35
|
+
|
36
|
+
commit 65cc5909ccfea645ab627f14eda3919f73d8f785
|
37
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
38
|
+
Date: Sat Feb 13 18:40:36 2010 +0100
|
39
|
+
|
40
|
+
Removed deprecated methods
|
41
|
+
|
42
|
+
lib/webgen/contentprocessor/builder.rb
|
43
|
+
lib/webgen/contentprocessor/erb.rb
|
44
|
+
lib/webgen/contentprocessor/erubis.rb
|
45
|
+
lib/webgen/contentprocessor/haml.rb
|
46
|
+
lib/webgen/deprecated.rb
|
47
|
+
lib/webgen/website.rb
|
48
|
+
|
49
|
+
commit 5c83fb5154991b41ecd2e6144219ecc1f08d62de
|
50
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
51
|
+
Date: Sat Feb 13 18:34:44 2010 +0100
|
52
|
+
|
53
|
+
Changed default markdown processor to kramdown
|
54
|
+
|
55
|
+
data/webgen/website_skeleton/config.yaml
|
56
|
+
lib/webgen/default_config.rb
|
57
|
+
|
58
|
+
commit 2c1e3b8a3efc34fa764264da66b6d8aeeced4d1e
|
59
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
60
|
+
Date: Sat Feb 13 18:15:19 2010 +0100
|
61
|
+
|
62
|
+
Added information on the type of paths printed to the terminal
|
63
|
+
|
64
|
+
doc/getting_started.page
|
65
|
+
doc/manual.page
|
66
|
+
|
67
|
+
commit f9eab051050a2421f38ec4d68d23572ca7e21c47
|
68
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
69
|
+
Date: Sat Feb 13 18:07:46 2010 +0100
|
70
|
+
|
71
|
+
Added version number to cache file
|
72
|
+
|
73
|
+
The cache file is not used anymore if it was produced by a
|
74
|
+
different version of webgen
|
75
|
+
|
76
|
+
lib/webgen/website.rb
|
77
|
+
|
78
|
+
commit 61b6fe335c11074f71a00d53d62c2a9bd7b741b3
|
79
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
80
|
+
Date: Sat Feb 13 18:03:21 2010 +0100
|
81
|
+
|
82
|
+
Fixed problem with Source::TarArchive
|
83
|
+
|
84
|
+
Relative paths in the tar archive were not handled correctly. All
|
85
|
+
relative paths are now made absolute to fix the problem.
|
86
|
+
|
87
|
+
lib/webgen/source/tararchive.rb
|
88
|
+
test/test_source_tararchive.rb
|
89
|
+
|
90
|
+
commit 0772d8329048f5c20b755aa20b3b409787828ba0
|
91
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
92
|
+
Date: Sat Feb 13 15:44:26 2010 +0100
|
93
|
+
|
94
|
+
Added information on how to create a website style bundle
|
95
|
+
|
96
|
+
doc/manual.page
|
97
|
+
doc/reference_website_styles.page
|
98
|
+
|
99
|
+
commit db7866dccb18a86aa6e7704df2ee42006d3f3239
|
100
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
101
|
+
Date: Tue Feb 9 07:16:01 2010 +0100
|
102
|
+
|
103
|
+
Fixed bug in terminal size detection
|
104
|
+
|
105
|
+
lib/webgen/cli/utils.rb
|
106
|
+
website/src/news/release_0_5_11.page
|
107
|
+
|
108
|
+
commit 3197055cd3f1167eae585ec732c594fa35215d62
|
109
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
110
|
+
Date: Thu Feb 4 19:57:22 2010 +0100
|
111
|
+
|
112
|
+
Added link to atom feed
|
113
|
+
|
114
|
+
website/src/news/index.page
|
115
|
+
|
116
|
+
commit 9d1b292ba3915021328301b662cb2ea8cf684a64
|
117
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
118
|
+
Date: Thu Feb 4 19:35:18 2010 +0100
|
119
|
+
|
120
|
+
Updated content processor head to allow the specification of links by the user
|
121
|
+
|
122
|
+
doc/contentprocessor/head.page
|
123
|
+
doc/reference_metainfo.page
|
124
|
+
lib/webgen/contentprocessor/head.rb
|
125
|
+
test/test_contentprocessor_head.rb
|
126
|
+
website/src/news/release_0_5_11.page
|
127
|
+
|
128
|
+
commit 5ba224f04296a703009b9aeed0716092447d280b
|
129
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
130
|
+
Date: Mon Jan 25 09:35:27 2010 +0100
|
131
|
+
|
132
|
+
Fixed documentation typo
|
133
|
+
|
134
|
+
doc/contentprocessor/kramdown.page
|
135
|
+
|
136
|
+
commit 13c9ca20711b2c06f4c443f67ae20690963b7f22
|
137
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
138
|
+
Date: Sun Jan 24 09:46:28 2010 +0100
|
139
|
+
|
140
|
+
Fixed bug in ContentProcessor::Tags regarding multi-byte encoded strings
|
141
|
+
|
142
|
+
The StringScanner class which is used in ContentProcessor::Tags has byte-based
|
143
|
+
indices where as accessing the underlying string forces character-based acess
|
144
|
+
under Ruby 1.9 which lead to failures because of invalid position pointers.
|
145
|
+
|
146
|
+
lib/webgen/contentprocessor/tags.rb
|
147
|
+
test/test_contentprocessor_tags.rb
|
148
|
+
website/src/news/release_0_5_11.page
|
149
|
+
|
150
|
+
commit fc5a14e8a405994afffd92df886973f6fd4c7a1d
|
151
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
152
|
+
Date: Sun Jan 24 08:30:21 2010 +0100
|
153
|
+
|
154
|
+
Fixed bug with path patterns not matching correctly
|
155
|
+
|
156
|
+
A pattern /docs/**/* now correctly matches files directly in /docs/
|
157
|
+
|
158
|
+
lib/webgen/sourcehandler.rb
|
159
|
+
website/src/news/release_0_5_11.page
|
160
|
+
|
161
|
+
commit e0893ea4d4e023417648a9b906eeb590c8de59e3
|
162
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
163
|
+
Date: Sat Jan 16 07:17:39 2010 +0100
|
164
|
+
|
165
|
+
Implemented content processor less
|
166
|
+
|
167
|
+
doc/contentprocessor/less.page
|
168
|
+
lib/webgen/contentprocessor.rb
|
169
|
+
lib/webgen/contentprocessor/less.rb
|
170
|
+
lib/webgen/default_config.rb
|
171
|
+
test/test_contentprocessor_less.rb
|
172
|
+
website/src/news/release_0_5_11.page
|
173
|
+
|
174
|
+
commit 7349dad7da356b43ad1e60d4295b15ef2fe75900
|
175
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
176
|
+
Date: Fri Jan 15 21:06:13 2010 +0100
|
177
|
+
|
178
|
+
Fixed bug regarding output.do_deletion in Sourcehandler::Main
|
179
|
+
|
180
|
+
When this option was set to true, it was invalidly tried to also delete
|
181
|
+
fragment nodes and other non-output nodes.
|
182
|
+
|
183
|
+
lib/webgen/sourcehandler.rb
|
184
|
+
website/src/news/release_0_5_11.page
|
185
|
+
|
186
|
+
commit de52ba25af070d087451c75d3b9c1e8e11d71c86
|
187
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
188
|
+
Date: Fri Jan 15 20:51:23 2010 +0100
|
189
|
+
|
190
|
+
Fixed CSS bug in style bundle andreas07
|
191
|
+
|
192
|
+
data/webgen/website_bundles/style/andreas07/src/default.css
|
193
|
+
website/src/news/release_0_5_11.page
|
194
|
+
|
195
|
+
commit d3784293b736e20ec4de265e6755f01750d11514
|
196
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
197
|
+
Date: Fri Jan 15 16:30:13 2010 +0100
|
198
|
+
|
199
|
+
Updated Rakefile with regards to kramdown
|
200
|
+
|
201
|
+
Rakefile
|
202
|
+
|
203
|
+
commit 2ce1a46732114c2555a7fcf53be72d3117cb68cc
|
204
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
205
|
+
Date: Fri Jan 15 16:29:34 2010 +0100
|
206
|
+
|
207
|
+
Added some examples to website skeleton config.yaml and explicitly defined the page pipeline
|
208
|
+
|
209
|
+
data/webgen/website_skeleton/config.yaml
|
210
|
+
|
211
|
+
commit 4f9a69b3b224d2c080f261760517ce3d4a22ccce
|
212
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
213
|
+
Date: Fri Jan 15 16:28:32 2010 +0100
|
214
|
+
|
215
|
+
Updated website src after changing to kramdown as markup processor
|
216
|
+
|
217
|
+
misc/default.template
|
218
|
+
misc/htmldoc.virtual
|
219
|
+
website/src/default.template
|
220
|
+
website/src/features.page
|
221
|
+
website/src/index.page
|
222
|
+
website/src/installation.page
|
223
|
+
website/src/news/release_0_5_0.page
|
224
|
+
website/src/news/release_0_5_1.page
|
225
|
+
website/src/news/release_0_5_10.page
|
226
|
+
website/src/news/release_0_5_11.page
|
227
|
+
website/src/news/release_0_5_2.page
|
228
|
+
website/src/news/release_0_5_3.page
|
229
|
+
website/src/news/release_0_5_4.page
|
230
|
+
website/src/news/release_0_5_5.page
|
231
|
+
website/src/news/release_0_5_6.page
|
232
|
+
website/src/news/release_0_5_7.page
|
233
|
+
website/src/news/release_0_5_8.page
|
234
|
+
website/src/news/release_0_5_9.page
|
235
|
+
|
236
|
+
commit 9494232630ddbf9aabaf4320e3956a91b0463ccb
|
237
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
238
|
+
Date: Fri Jan 15 15:59:52 2010 +0100
|
239
|
+
|
240
|
+
Updated special version of kramdown HTML converter to be compatible with kramdown 0.4.0
|
241
|
+
|
242
|
+
lib/webgen/contentprocessor/kramdown/html.rb
|
243
|
+
|
244
|
+
commit a3c74909b893d8f693c1cd778c79338f5865e840
|
245
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
246
|
+
Date: Fri Jan 15 15:58:53 2010 +0100
|
247
|
+
|
248
|
+
Updated documentation after changing to kramdown as markup processor
|
249
|
+
|
250
|
+
doc/contentprocessor.template
|
251
|
+
doc/contentprocessor/blocks.page
|
252
|
+
doc/contentprocessor/builder.page
|
253
|
+
doc/contentprocessor/erb.page
|
254
|
+
doc/contentprocessor/erubis.page
|
255
|
+
doc/contentprocessor/fragments.page
|
256
|
+
doc/contentprocessor/haml.page
|
257
|
+
doc/contentprocessor/head.page
|
258
|
+
doc/contentprocessor/kramdown.page
|
259
|
+
doc/contentprocessor/maruku.page
|
260
|
+
doc/contentprocessor/rdiscount.page
|
261
|
+
doc/contentprocessor/rdoc.page
|
262
|
+
doc/contentprocessor/redcloth.page
|
263
|
+
doc/contentprocessor/sass.page
|
264
|
+
doc/contentprocessor/tags.page
|
265
|
+
doc/contentprocessor/tidy.page
|
266
|
+
doc/extensions.page
|
267
|
+
doc/extensions.template
|
268
|
+
doc/getting_started.page
|
269
|
+
doc/index.page
|
270
|
+
doc/manual.page
|
271
|
+
doc/reference_configuration.page
|
272
|
+
doc/reference_metainfo.page
|
273
|
+
doc/source/filesystem.page
|
274
|
+
doc/source/tararchive.page
|
275
|
+
doc/sourcehandler.template
|
276
|
+
doc/sourcehandler/feed.page
|
277
|
+
doc/sourcehandler/metainfo.page
|
278
|
+
doc/sourcehandler/page.page
|
279
|
+
doc/sourcehandler/sitemap.page
|
280
|
+
doc/sourcehandler/template.page
|
281
|
+
doc/sourcehandler/virtual.page
|
282
|
+
doc/tag.template
|
283
|
+
doc/tag/coderay.page
|
284
|
+
doc/tag/includefile.page
|
285
|
+
doc/tag/menu.page
|
286
|
+
doc/tag/relocatable.page
|
287
|
+
doc/upgrading.page
|
288
|
+
doc/webgen_page_format.page
|
289
|
+
misc/htmldoc.virtual
|
290
|
+
|
291
|
+
commit d617aa503b51f1fb8831b417d90d88d46cc9ea1e
|
292
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
293
|
+
Date: Thu Jan 14 15:33:00 2010 +0100
|
294
|
+
|
295
|
+
Fixed broken shebang line
|
296
|
+
|
297
|
+
bin/webgen
|
298
|
+
|
299
|
+
commit a0c1a770a5f1eec597abcfe2f84b3b5b655d7acb
|
300
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
301
|
+
Date: Mon Nov 23 17:12:01 2009 +0100
|
302
|
+
|
303
|
+
Added content processor kramdown
|
304
|
+
|
305
|
+
doc/contentprocessor/kramdown.page
|
306
|
+
doc/reference_configuration.page
|
307
|
+
lib/webgen/contentprocessor.rb
|
308
|
+
lib/webgen/contentprocessor/kramdown.rb
|
309
|
+
lib/webgen/contentprocessor/kramdown/html.rb
|
310
|
+
lib/webgen/default_config.rb
|
311
|
+
test/test_contentprocessor_kramdown.rb
|
312
|
+
website/src/news/release_0_5_11.page
|
313
|
+
|
314
|
+
commit e61b0f027cf48268d6884440e095f08806ac30e1
|
315
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
316
|
+
Date: Sat Nov 7 08:38:52 2009 +0100
|
317
|
+
|
318
|
+
Fixed bug in ContentProcessor::Blocks: context.dest_node was not always set correctly
|
319
|
+
|
320
|
+
lib/webgen/contentprocessor/blocks.rb
|
321
|
+
test/test_contentprocessor_blocks.rb
|
322
|
+
website/src/news/release_0_5_11.page
|
323
|
+
|
324
|
+
commit 6ae87f7b92c50bef433a08c1c59b70f3c1a3ea10
|
325
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
326
|
+
Date: Mon Nov 2 14:43:38 2009 +0100
|
327
|
+
|
328
|
+
Fixed error in API doc example for ContentProcessor
|
329
|
+
|
330
|
+
lib/webgen/contentprocessor.rb
|
331
|
+
|
332
|
+
commit 5c4ffa9ad40d42aabc0f29d13516ef15575a5700
|
333
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
334
|
+
Date: Sun Oct 11 11:37:30 2009 +0200
|
335
|
+
|
336
|
+
Added a small hack to work around a problem with namespaces in newer versions of REXML
|
337
|
+
|
338
|
+
lib/webgen/contentprocessor/maruku.rb
|
339
|
+
|
340
|
+
commit ef7d6556296e2d7ec8fbaae5ae4a87154ae67ce5
|
341
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
342
|
+
Date: Sun Oct 11 11:35:31 2009 +0200
|
343
|
+
|
344
|
+
Added a custom CSS class for the currently selected language in Tag::Langbar
|
345
|
+
|
346
|
+
doc/tag/langbar.page
|
347
|
+
lib/webgen/tag/langbar.rb
|
348
|
+
test/test_tag_langbar.rb
|
349
|
+
website/src/news/release_0_5_11.page
|
350
|
+
|
351
|
+
commit 48f3ec702db315d90bdb848236032b84ce768e68
|
352
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
353
|
+
Date: Sun Oct 11 09:23:39 2009 +0200
|
354
|
+
|
355
|
+
Removed now unneeded github gemspec file and code for generating it
|
356
|
+
|
357
|
+
Rakefile
|
358
|
+
webgen.gemspec
|
359
|
+
|
360
|
+
commit 614300f911744aece277e58b04cace19429f2788
|
361
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
362
|
+
Date: Sun Oct 11 09:22:02 2009 +0200
|
363
|
+
|
364
|
+
Updated version numbers of optional libraries
|
365
|
+
|
366
|
+
Rakefile
|
367
|
+
website/src/installation.page
|
368
|
+
|
369
|
+
commit 73b8fd99449f70fdea314f1855c58bd70995ee50
|
370
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
371
|
+
Date: Sun Oct 11 09:11:04 2009 +0200
|
372
|
+
|
373
|
+
Moved implementation of retrieving the error line from an error into own method
|
374
|
+
|
375
|
+
lib/webgen/common.rb
|
376
|
+
lib/webgen/contentprocessor/builder.rb
|
377
|
+
lib/webgen/contentprocessor/erb.rb
|
378
|
+
lib/webgen/contentprocessor/erubis.rb
|
379
|
+
lib/webgen/contentprocessor/haml.rb
|
380
|
+
|
381
|
+
commit da6498766591fc5d3069a7de79b2cc4cfbf6d97a
|
382
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
383
|
+
Date: Sun Oct 11 09:09:24 2009 +0200
|
384
|
+
|
385
|
+
Fixed some test cases
|
386
|
+
|
387
|
+
test/test_contentprocessor.rb
|
388
|
+
test/test_contentprocessor_fragments.rb
|
389
|
+
test/test_contentprocessor_haml.rb
|
390
|
+
|
391
|
+
commit 731b158a8cdb5875c1de6a69bfe28a6b4126e0b9
|
392
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
393
|
+
Date: Sat Oct 10 18:08:49 2009 +0200
|
394
|
+
|
395
|
+
Removed dependency on facets
|
396
|
+
|
397
|
+
Rakefile
|
398
|
+
lib/webgen/cache.rb
|
399
|
+
lib/webgen/cli/utils.rb
|
400
|
+
lib/webgen/cli/webgui_command.rb
|
401
|
+
lib/webgen/common.rb
|
402
|
+
lib/webgen/configuration.rb
|
403
|
+
lib/webgen/output.rb
|
404
|
+
lib/webgen/source/resource.rb
|
405
|
+
lib/webgen/sourcehandler.rb
|
406
|
+
lib/webgen/sourcehandler/base.rb
|
407
|
+
lib/webgen/website.rb
|
408
|
+
website/src/installation.page
|
409
|
+
website/src/news/release_0_5_11.page
|
410
|
+
|
411
|
+
commit 56ca20ce9fd244d95971cc6dd5e5bbefe3a8c3c0
|
412
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
413
|
+
Date: Sat Oct 10 17:56:46 2009 +0200
|
414
|
+
|
415
|
+
Fixed bug which occured when archive-tar-minitar was not installed
|
416
|
+
|
417
|
+
lib/webgen/source/tararchive.rb
|
418
|
+
website/src/news/release_0_5_11.page
|
419
|
+
|
420
|
+
commit d6df8bb528d6a012428f9a270f23163aa493c035
|
421
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
422
|
+
Date: Thu Oct 8 09:17:13 2009 +0200
|
423
|
+
|
424
|
+
Small update to the installation page
|
425
|
+
|
426
|
+
website/src/installation.page
|
427
|
+
|
428
|
+
commit b93f14b57f2a4438a31b0f6f2bd005124b8df1a1
|
429
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
430
|
+
Date: Wed Sep 9 16:54:22 2009 +0200
|
431
|
+
|
432
|
+
Fixed bug RF#27075: Typo in webgen documentation
|
433
|
+
|
434
|
+
lib/webgen/tag/base.rb
|
435
|
+
website/src/news/release_0_5_11.page
|
436
|
+
|
437
|
+
commit f114d1a3f4629b49eb1a4ac42b366f3e49facda0
|
438
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
439
|
+
Date: Tue Sep 1 07:20:45 2009 +0200
|
440
|
+
|
441
|
+
Fixed error in SH::Virtual when creating virtual directories
|
442
|
+
|
443
|
+
lib/webgen/sourcehandler/virtual.rb
|
444
|
+
test/test_sourcehandler_virtual.rb
|
445
|
+
website/src/news/release_0_5_11.page
|
446
|
+
|
447
|
+
commit a1022137a889d7654ebb89170c2c39d25eb6fbf0
|
448
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
449
|
+
Date: Wed Aug 26 07:24:49 2009 +0200
|
450
|
+
|
451
|
+
Implemented basic finder API
|
452
|
+
|
453
|
+
lib/webgen/node.rb
|
454
|
+
test/test_node.rb
|
455
|
+
|
456
|
+
commit d9a86fed3338110f58a6648f39c0ccba9cb06c03
|
457
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
458
|
+
Date: Wed Aug 26 07:18:49 2009 +0200
|
459
|
+
|
460
|
+
Updated used maruku version to 0.6.0
|
461
|
+
|
462
|
+
Rakefile
|
463
|
+
website/src/installation.page
|
464
|
+
|
465
|
+
commit 1d146d16fc8da7008133e1ba0a1572dd79232a59
|
466
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
467
|
+
Date: Mon Aug 24 08:28:44 2009 +0200
|
468
|
+
|
469
|
+
Two small fixes for SourceHandler::Feed
|
470
|
+
|
471
|
+
* Entries are now sorted correctly from most recent to oldest
|
472
|
+
* Atom template now produces completely valid feeds
|
473
|
+
|
474
|
+
data/webgen/passive_sources/templates/atom_feed.template
|
475
|
+
lib/webgen/sourcehandler/feed.rb
|
476
|
+
test/test_sourcehandler_feed.rb
|
477
|
+
website/src/news/release_0_5_11.page
|
478
|
+
|
479
|
+
commit 72f7debb5a2ca419a9470e976e09f6868672f3cc
|
480
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
481
|
+
Date: Mon Aug 24 08:27:41 2009 +0200
|
482
|
+
|
483
|
+
Bumped version number and added release page
|
484
|
+
|
485
|
+
lib/webgen/version.rb
|
486
|
+
website/src/news/release_0_5_11.page
|
487
|
+
|
1
488
|
commit d69d12ea3a034a33c2d176d315fed2bb1340319d
|
2
489
|
Author: Thomas Leitner <t_leitner@gmx.at>
|
3
490
|
Date: Mon Aug 10 08:54:33 2009 +0200
|