webgen 0.5.8 → 0.5.9
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.
- data/COPYING +4 -0
- data/ChangeLog +1037 -0
- data/Rakefile +5 -6
- data/THANKS +1 -0
- data/VERSION +1 -1
- data/bin/webgen +1 -1
- data/data/webgen/passive_sources/images/generated_by_webgen.png +0 -0
- data/data/webgen/passive_sources/images/webgen_logo.png +0 -0
- data/data/webgen/passive_sources/stylesheets/coderay-default.css +129 -0
- data/data/webgen/passive_sources/templates/atom_feed.template +38 -0
- data/data/webgen/passive_sources/templates/rss_feed.template +28 -0
- data/data/webgen/passive_sources/templates/sitemap.template +21 -0
- data/data/webgen/resources.yaml +2 -1
- data/data/webgen/website_skeleton/Rakefile +5 -1
- data/doc/contentprocessor/builder.page +2 -2
- data/doc/contentprocessor/erb.page +5 -2
- data/doc/contentprocessor/erubis.page +2 -2
- data/doc/contentprocessor/head.page +21 -0
- data/doc/contentprocessor/tidy.page +14 -0
- data/doc/extensions.page +1 -1
- data/doc/faq.page +2 -2
- data/doc/manual.page +108 -43
- data/doc/reference_configuration.page +83 -5
- data/doc/reference_metainfo.page +24 -4
- data/doc/reference_website_styles.page +2 -2
- data/doc/sourcehandler/feed.page +11 -13
- data/doc/sourcehandler/metainfo.page +10 -3
- data/doc/sourcehandler/page.page +4 -4
- data/doc/sourcehandler/sitemap.page +8 -7
- data/doc/tag/coderay.page +6 -2
- data/doc/tag/includefile.page +1 -1
- data/doc/tag/menu.page +3 -0
- data/lib/webgen/cli/apply_command.rb +1 -1
- data/lib/webgen/cli/utils.rb +2 -2
- data/lib/webgen/common.rb +0 -9
- data/lib/webgen/contentprocessor.rb +18 -3
- data/lib/webgen/contentprocessor/blocks.rb +67 -36
- data/lib/webgen/contentprocessor/builder.rb +5 -2
- data/lib/webgen/contentprocessor/erb.rb +4 -2
- data/lib/webgen/contentprocessor/erubis.rb +5 -2
- data/lib/webgen/contentprocessor/haml.rb +6 -2
- data/lib/webgen/contentprocessor/head.rb +64 -0
- data/lib/webgen/contentprocessor/maruku.rb +3 -1
- data/lib/webgen/contentprocessor/rdiscount.rb +2 -0
- data/lib/webgen/contentprocessor/rdoc.rb +2 -0
- data/lib/webgen/contentprocessor/redcloth.rb +2 -0
- data/lib/webgen/contentprocessor/sass.rb +5 -3
- data/lib/webgen/contentprocessor/tags.rb +40 -24
- data/lib/webgen/contentprocessor/tidy.rb +38 -0
- data/lib/webgen/context.rb +13 -4
- data/lib/webgen/context/render.rb +32 -0
- data/lib/webgen/context/tags.rb +20 -0
- data/lib/webgen/default_config.rb +15 -4
- data/lib/webgen/deprecated.rb +38 -4
- data/lib/webgen/error.rb +135 -0
- data/lib/webgen/node.rb +48 -40
- data/lib/webgen/output.rb +5 -3
- data/lib/webgen/output/filesystem.rb +4 -4
- data/lib/webgen/page.rb +4 -4
- data/lib/webgen/path.rb +161 -58
- data/lib/webgen/source.rb +9 -6
- data/lib/webgen/source/filesystem.rb +1 -1
- data/lib/webgen/source/stacked.rb +13 -5
- data/lib/webgen/source/tararchive.rb +6 -2
- data/lib/webgen/sourcehandler.rb +100 -54
- data/lib/webgen/sourcehandler/base.rb +58 -24
- data/lib/webgen/sourcehandler/copy.rb +6 -5
- data/lib/webgen/sourcehandler/directory.rb +3 -9
- data/lib/webgen/sourcehandler/feed.rb +25 -50
- data/lib/webgen/sourcehandler/fragment.rb +10 -8
- data/lib/webgen/sourcehandler/memory.rb +9 -10
- data/lib/webgen/sourcehandler/metainfo.rb +9 -9
- data/lib/webgen/sourcehandler/page.rb +6 -5
- data/lib/webgen/sourcehandler/sitemap.rb +22 -22
- data/lib/webgen/sourcehandler/template.rb +6 -6
- data/lib/webgen/sourcehandler/virtual.rb +19 -17
- data/lib/webgen/tag/base.rb +27 -27
- data/lib/webgen/tag/breadcrumbtrail.rb +3 -3
- data/lib/webgen/tag/coderay.rb +19 -8
- data/lib/webgen/tag/executecommand.rb +4 -3
- data/lib/webgen/tag/langbar.rb +2 -2
- data/lib/webgen/tag/link.rb +8 -7
- data/lib/webgen/tag/menu.rb +2 -2
- data/lib/webgen/tag/metainfo.rb +1 -1
- data/lib/webgen/tag/relocatable.rb +17 -21
- data/lib/webgen/tag/tikz.rb +7 -10
- data/lib/webgen/tree.rb +7 -7
- data/lib/webgen/version.rb +1 -1
- data/lib/webgen/website.rb +32 -2
- data/misc/default.css +8 -2
- data/misc/default.template +2 -2
- data/misc/logo.svg +313 -0
- data/misc/style.page +1 -1
- data/test/helper.rb +18 -2
- data/test/test_cli.rb +104 -0
- data/test/test_common_sitemap.rb +1 -1
- data/test/test_contentprocessor.rb +8 -2
- data/test/test_contentprocessor_blocks.rb +17 -8
- data/test/test_contentprocessor_builder.rb +13 -2
- data/test/test_contentprocessor_erb.rb +9 -3
- data/test/test_contentprocessor_erubis.rb +9 -3
- data/test/test_contentprocessor_fragments.rb +12 -11
- data/test/test_contentprocessor_haml.rb +11 -2
- data/test/test_contentprocessor_head.rb +44 -0
- data/test/test_contentprocessor_maruku.rb +5 -1
- data/test/test_contentprocessor_rdiscount.rb +4 -0
- data/test/test_contentprocessor_rdoc.rb +4 -0
- data/test/test_contentprocessor_redcloth.rb +5 -1
- data/test/test_contentprocessor_sass.rb +8 -2
- data/test/test_contentprocessor_tags.rb +22 -7
- data/test/test_contentprocessor_tidy.rb +34 -0
- data/test/test_context.rb +39 -0
- data/test/test_error.rb +85 -0
- data/test/test_node.rb +57 -21
- data/test/test_page.rb +23 -5
- data/test/test_path.rb +120 -64
- data/test/test_source_filesystem.rb +1 -1
- data/test/test_source_stacked.rb +19 -6
- data/test/test_sourcehandler_base.rb +63 -50
- data/test/test_sourcehandler_copy.rb +6 -6
- data/test/test_sourcehandler_directory.rb +8 -12
- data/test/test_sourcehandler_feed.rb +15 -7
- data/test/test_sourcehandler_fragment.rb +6 -5
- data/test/test_sourcehandler_main.rb +39 -0
- data/test/test_sourcehandler_memory.rb +4 -4
- data/test/test_sourcehandler_metainfo.rb +20 -11
- data/test/test_sourcehandler_page.rb +10 -10
- data/test/test_sourcehandler_sitemap.rb +24 -5
- data/test/test_sourcehandler_template.rb +18 -15
- data/test/test_sourcehandler_virtual.rb +9 -5
- data/test/test_tag_base.rb +6 -29
- data/test/test_tag_coderay.rb +16 -3
- data/test/test_tag_executecommand.rb +2 -2
- data/test/test_tag_link.rb +5 -4
- data/test/test_tag_menu.rb +15 -15
- data/test/test_tag_metainfo.rb +1 -0
- data/test/test_tag_relocatable.rb +3 -2
- data/test/test_tag_tikz.rb +5 -5
- data/test/test_tree.rb +8 -8
- data/test/test_website.rb +15 -0
- metadata +21 -14
- data/test/test_common.rb +0 -18
data/COPYING
CHANGED
|
@@ -8,3 +8,7 @@ different license. These files/directories are listed here:
|
|
|
8
8
|
data/webgen/website_style/*:
|
|
9
9
|
The copyright information for each included website styles can be
|
|
10
10
|
found in the README file of the website style.
|
|
11
|
+
|
|
12
|
+
data/webgen/passive_sources/stylesheets/coderay-default.css:
|
|
13
|
+
This file has been generated with the coderay_stylesheet binary and
|
|
14
|
+
falls under the LGPL.
|
data/ChangeLog
CHANGED
|
@@ -1,3 +1,1040 @@
|
|
|
1
|
+
commit 098b647dc9c6e4d534b98c6f3d12b319365bded9
|
|
2
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
3
|
+
Date: Sat Jul 25 07:45:26 2009 +0200
|
|
4
|
+
|
|
5
|
+
Small fix for CLI tests on Windows
|
|
6
|
+
|
|
7
|
+
test/test_cli.rb
|
|
8
|
+
|
|
9
|
+
commit c673e12930caab9875c9a4d0e621e7ff4a47d0a3
|
|
10
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
11
|
+
Date: Wed Jul 22 08:10:01 2009 +0200
|
|
12
|
+
|
|
13
|
+
Updated github gemspec
|
|
14
|
+
|
|
15
|
+
webgen.gemspec
|
|
16
|
+
|
|
17
|
+
commit 52cc90ea8c924f41047e78ef3ed9c93b692a4816
|
|
18
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
19
|
+
Date: Wed Jul 22 08:06:03 2009 +0200
|
|
20
|
+
|
|
21
|
+
Updated tests to check for raised Webgen::LoadError
|
|
22
|
+
|
|
23
|
+
test/test_contentprocessor_builder.rb
|
|
24
|
+
test/test_contentprocessor_erubis.rb
|
|
25
|
+
test/test_contentprocessor_haml.rb
|
|
26
|
+
test/test_contentprocessor_maruku.rb
|
|
27
|
+
test/test_contentprocessor_rdiscount.rb
|
|
28
|
+
test/test_contentprocessor_rdoc.rb
|
|
29
|
+
test/test_contentprocessor_redcloth.rb
|
|
30
|
+
test/test_contentprocessor_sass.rb
|
|
31
|
+
test/test_tag_coderay.rb
|
|
32
|
+
|
|
33
|
+
commit 971c7dc4977d0f67fe681d3ec845f751d46dbe7b
|
|
34
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
35
|
+
Date: Wed Jul 22 07:50:44 2009 +0200
|
|
36
|
+
|
|
37
|
+
Added release notes and changes file for 0.5.9
|
|
38
|
+
|
|
39
|
+
website/src/index.page
|
|
40
|
+
website/src/news/index.page
|
|
41
|
+
website/src/news/release_0_5_9.page
|
|
42
|
+
|
|
43
|
+
commit dd5febafd52273fae55ca0d9228cb58445809f63
|
|
44
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
45
|
+
Date: Wed Jul 22 07:49:30 2009 +0200
|
|
46
|
+
|
|
47
|
+
Updated documentation to use :basename instead of :cnbase
|
|
48
|
+
|
|
49
|
+
doc/contentprocessor/builder.page
|
|
50
|
+
doc/faq.page
|
|
51
|
+
doc/manual.page
|
|
52
|
+
doc/reference_configuration.page
|
|
53
|
+
doc/reference_metainfo.page
|
|
54
|
+
doc/sourcehandler/metainfo.page
|
|
55
|
+
|
|
56
|
+
commit a05d4c00a51d757517e02c3dd0fd1232a4ac79f1
|
|
57
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
58
|
+
Date: Tue Jul 21 08:08:36 2009 +0200
|
|
59
|
+
|
|
60
|
+
Fixed raised exception due to different behaviour of JRuby
|
|
61
|
+
|
|
62
|
+
lib/webgen/contentprocessor/builder.rb
|
|
63
|
+
lib/webgen/contentprocessor/erb.rb
|
|
64
|
+
lib/webgen/contentprocessor/erubis.rb
|
|
65
|
+
|
|
66
|
+
commit 2afed1eb5ff5981ce9130cd83151baea04a02804
|
|
67
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
68
|
+
Date: Tue Jul 21 07:57:14 2009 +0200
|
|
69
|
+
|
|
70
|
+
Added new meta info used_nodes with which a user can specify dependencies
|
|
71
|
+
|
|
72
|
+
doc/reference_metainfo.page
|
|
73
|
+
lib/webgen/node.rb
|
|
74
|
+
test/test_node.rb
|
|
75
|
+
|
|
76
|
+
commit 6af3d61468d8f2916b5721254c42faec886a6752
|
|
77
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
78
|
+
Date: Wed Jul 8 20:54:26 2009 +0200
|
|
79
|
+
|
|
80
|
+
Updated user and API documentation
|
|
81
|
+
|
|
82
|
+
doc/manual.page
|
|
83
|
+
doc/sourcehandler/feed.page
|
|
84
|
+
doc/sourcehandler/metainfo.page
|
|
85
|
+
lib/webgen/path.rb
|
|
86
|
+
lib/webgen/source.rb
|
|
87
|
+
lib/webgen/website.rb
|
|
88
|
+
|
|
89
|
+
commit 993236e633690df948a73f03ea93cdd1d473f587
|
|
90
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
91
|
+
Date: Tue Jul 7 16:46:16 2009 +0200
|
|
92
|
+
|
|
93
|
+
Added basic tests for CLI commands
|
|
94
|
+
|
|
95
|
+
test/test_cli.rb
|
|
96
|
+
|
|
97
|
+
commit cb43b40c9fd821ce5f30e1ced2f1423fa62bed73
|
|
98
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
99
|
+
Date: Mon Jul 6 07:25:02 2009 +0200
|
|
100
|
+
|
|
101
|
+
Small documentation update
|
|
102
|
+
|
|
103
|
+
doc/reference_metainfo.page
|
|
104
|
+
doc/tag/menu.page
|
|
105
|
+
|
|
106
|
+
commit 31a815f970822b5902965d46fb0668473cefe5d4
|
|
107
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
108
|
+
Date: Mon Jul 6 07:21:55 2009 +0200
|
|
109
|
+
|
|
110
|
+
Implemented new content processor tidy
|
|
111
|
+
|
|
112
|
+
doc/contentprocessor/tidy.page
|
|
113
|
+
doc/reference_configuration.page
|
|
114
|
+
lib/webgen/contentprocessor.rb
|
|
115
|
+
lib/webgen/contentprocessor/tidy.rb
|
|
116
|
+
lib/webgen/default_config.rb
|
|
117
|
+
test/test_contentprocessor_tidy.rb
|
|
118
|
+
|
|
119
|
+
commit 1f03e31501355d949095473ecedc3ea261f528c2
|
|
120
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
121
|
+
Date: Sun Jul 5 10:58:38 2009 +0200
|
|
122
|
+
|
|
123
|
+
Updated error classes sothat the full error message is available via #message
|
|
124
|
+
|
|
125
|
+
bin/webgen
|
|
126
|
+
data/webgen/website_skeleton/Rakefile
|
|
127
|
+
lib/webgen/error.rb
|
|
128
|
+
test/test_error.rb
|
|
129
|
+
|
|
130
|
+
commit 9f5a5916bad86579b6f4ba848dbf5409dbcc4a46
|
|
131
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
132
|
+
Date: Sun Jul 5 10:29:39 2009 +0200
|
|
133
|
+
|
|
134
|
+
Added two new error classes
|
|
135
|
+
|
|
136
|
+
The class Webgen::LoadError is used for reporting missing libraries and
|
|
137
|
+
the Webgen::CommandNotFoundError is used to indicate that a needed
|
|
138
|
+
command is missing.
|
|
139
|
+
|
|
140
|
+
lib/webgen/contentprocessor/builder.rb
|
|
141
|
+
lib/webgen/contentprocessor/erubis.rb
|
|
142
|
+
lib/webgen/contentprocessor/haml.rb
|
|
143
|
+
lib/webgen/contentprocessor/maruku.rb
|
|
144
|
+
lib/webgen/contentprocessor/rdiscount.rb
|
|
145
|
+
lib/webgen/contentprocessor/rdoc.rb
|
|
146
|
+
lib/webgen/contentprocessor/redcloth.rb
|
|
147
|
+
lib/webgen/contentprocessor/sass.rb
|
|
148
|
+
lib/webgen/error.rb
|
|
149
|
+
lib/webgen/source/tararchive.rb
|
|
150
|
+
lib/webgen/tag/coderay.rb
|
|
151
|
+
test/test_error.rb
|
|
152
|
+
|
|
153
|
+
commit d1d2deb892de86f566cc66f9dded6eb65bdae902
|
|
154
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
155
|
+
Date: Sat Jul 4 14:56:49 2009 +0200
|
|
156
|
+
|
|
157
|
+
Fixed ContentProcessor::Head sothat meta values provided in the meta info are always used
|
|
158
|
+
|
|
159
|
+
lib/webgen/contentprocessor/head.rb
|
|
160
|
+
test/test_contentprocessor_head.rb
|
|
161
|
+
|
|
162
|
+
commit c4625d830a8a84ba148888e2810224d65a4b4246
|
|
163
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
164
|
+
Date: Fri Jul 3 15:52:51 2009 +0200
|
|
165
|
+
|
|
166
|
+
Changed a warning message to an error message in Tag::Metainfo
|
|
167
|
+
|
|
168
|
+
lib/webgen/tag/metainfo.rb
|
|
169
|
+
|
|
170
|
+
commit 4cc42a5419dd009e8288af41a3c8927fb1360cae
|
|
171
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
172
|
+
Date: Fri Jul 3 15:46:18 2009 +0200
|
|
173
|
+
|
|
174
|
+
Updated Tag::Coderay to allow the inclusion of external stylesheets
|
|
175
|
+
|
|
176
|
+
The new options tag.coderay.css allows one to select from either using
|
|
177
|
+
inline styles, the default external coderay stylesheet or to provide
|
|
178
|
+
the styles in an other way (ie. custom stylesheet).
|
|
179
|
+
|
|
180
|
+
COPYING
|
|
181
|
+
data/webgen/passive_sources/stylesheets/coderay-default.css
|
|
182
|
+
doc/reference_configuration.page
|
|
183
|
+
doc/tag/coderay.page
|
|
184
|
+
lib/webgen/default_config.rb
|
|
185
|
+
lib/webgen/tag/coderay.rb
|
|
186
|
+
test/test_tag_coderay.rb
|
|
187
|
+
|
|
188
|
+
commit 9ad31ad4af560508f732c9a5303619a98088f755
|
|
189
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
190
|
+
Date: Fri Jul 3 11:59:34 2009 +0200
|
|
191
|
+
|
|
192
|
+
Fixed ContentProcessor::Head to work in real situations
|
|
193
|
+
|
|
194
|
+
lib/webgen/contentprocessor/head.rb
|
|
195
|
+
test/test_contentprocessor_head.rb
|
|
196
|
+
|
|
197
|
+
commit 2724c420495202b1c6056e48be4c49de3112225f
|
|
198
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
199
|
+
Date: Fri Jul 3 11:56:40 2009 +0200
|
|
200
|
+
|
|
201
|
+
Added an options hash to Context that is shared across cloned instances
|
|
202
|
+
|
|
203
|
+
lib/webgen/context.rb
|
|
204
|
+
test/test_context.rb
|
|
205
|
+
|
|
206
|
+
commit c903db692dc94ff2a0b9768038dc481909d78491
|
|
207
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
208
|
+
Date: Fri Jul 3 07:33:05 2009 +0200
|
|
209
|
+
|
|
210
|
+
Updated THANKS file
|
|
211
|
+
|
|
212
|
+
THANKS
|
|
213
|
+
|
|
214
|
+
commit 86351ee0520d80460a977a58a6204563812ffe46
|
|
215
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
216
|
+
Date: Thu Jul 2 21:12:21 2009 +0200
|
|
217
|
+
|
|
218
|
+
Updated Rakefile of website skeleton to handle Webgen::Error exceptions
|
|
219
|
+
|
|
220
|
+
data/webgen/website_skeleton/Rakefile
|
|
221
|
+
|
|
222
|
+
commit f1988c77a38107a782db4b2da98054fcce35bd6d
|
|
223
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
224
|
+
Date: Thu Jul 2 20:57:52 2009 +0200
|
|
225
|
+
|
|
226
|
+
Added better and more thorough error reporting
|
|
227
|
+
|
|
228
|
+
* There is now one superclass Webgen::Error with two subclasses
|
|
229
|
+
Webgen::NodeCreationError and Webgen::RenderError. All classes now
|
|
230
|
+
raise one of these errors which allows for better error reporting.
|
|
231
|
+
* Reporting of (approximate) line numbers has also been added where
|
|
232
|
+
possible (e.g. in the blocks and tags content processors).
|
|
233
|
+
* Some log messages of severity 'error' have been converted to raise
|
|
234
|
+
errors where approriate.
|
|
235
|
+
* The prior change regarding the tags content processor and the
|
|
236
|
+
behaviour of how missing mandatory parameters are handled has been
|
|
237
|
+
reverted because errors are now raised.
|
|
238
|
+
|
|
239
|
+
lib/webgen/contentprocessor/blocks.rb
|
|
240
|
+
lib/webgen/contentprocessor/builder.rb
|
|
241
|
+
lib/webgen/contentprocessor/erb.rb
|
|
242
|
+
lib/webgen/contentprocessor/erubis.rb
|
|
243
|
+
lib/webgen/contentprocessor/haml.rb
|
|
244
|
+
lib/webgen/contentprocessor/maruku.rb
|
|
245
|
+
lib/webgen/contentprocessor/sass.rb
|
|
246
|
+
lib/webgen/contentprocessor/tags.rb
|
|
247
|
+
lib/webgen/error.rb
|
|
248
|
+
lib/webgen/sourcehandler.rb
|
|
249
|
+
lib/webgen/sourcehandler/base.rb
|
|
250
|
+
lib/webgen/sourcehandler/feed.rb
|
|
251
|
+
lib/webgen/sourcehandler/page.rb
|
|
252
|
+
lib/webgen/sourcehandler/sitemap.rb
|
|
253
|
+
lib/webgen/tag/base.rb
|
|
254
|
+
lib/webgen/tag/executecommand.rb
|
|
255
|
+
lib/webgen/tag/link.rb
|
|
256
|
+
lib/webgen/tag/relocatable.rb
|
|
257
|
+
lib/webgen/tag/tikz.rb
|
|
258
|
+
test/helper.rb
|
|
259
|
+
test/test_contentprocessor_blocks.rb
|
|
260
|
+
test/test_contentprocessor_builder.rb
|
|
261
|
+
test/test_contentprocessor_erb.rb
|
|
262
|
+
test/test_contentprocessor_erubis.rb
|
|
263
|
+
test/test_contentprocessor_haml.rb
|
|
264
|
+
test/test_contentprocessor_maruku.rb
|
|
265
|
+
test/test_contentprocessor_sass.rb
|
|
266
|
+
test/test_contentprocessor_tags.rb
|
|
267
|
+
test/test_error.rb
|
|
268
|
+
test/test_sourcehandler_base.rb
|
|
269
|
+
test/test_sourcehandler_feed.rb
|
|
270
|
+
test/test_sourcehandler_page.rb
|
|
271
|
+
test/test_sourcehandler_sitemap.rb
|
|
272
|
+
test/test_sourcehandler_template.rb
|
|
273
|
+
test/test_tag_base.rb
|
|
274
|
+
test/test_tag_executecommand.rb
|
|
275
|
+
test/test_tag_link.rb
|
|
276
|
+
test/test_tag_relocatable.rb
|
|
277
|
+
test/test_tag_tikz.rb
|
|
278
|
+
|
|
279
|
+
commit 7e9486da8435a705410e9389352265f202bc4954
|
|
280
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
281
|
+
Date: Wed Jul 1 06:35:49 2009 +0200
|
|
282
|
+
|
|
283
|
+
Small fix for deprecation warnings while testing
|
|
284
|
+
|
|
285
|
+
lib/webgen/deprecated.rb
|
|
286
|
+
|
|
287
|
+
commit 865f232e6acc4f50672d1c96171e33fbfc6849e7
|
|
288
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
289
|
+
Date: Wed Jul 1 06:29:11 2009 +0200
|
|
290
|
+
|
|
291
|
+
Added webgen specific error classes
|
|
292
|
+
|
|
293
|
+
bin/webgen
|
|
294
|
+
lib/webgen/error.rb
|
|
295
|
+
lib/webgen/website.rb
|
|
296
|
+
|
|
297
|
+
commit e51665a3f04ff2ff7e3fb656a8b9b4e9d746cd17
|
|
298
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
299
|
+
Date: Tue Jun 30 21:03:01 2009 +0200
|
|
300
|
+
|
|
301
|
+
Small update to Webgen Page handling
|
|
302
|
+
|
|
303
|
+
* The leading and trailing whitespace of the content of a block is
|
|
304
|
+
not removed anymore.
|
|
305
|
+
* Better error message for error in meta info block
|
|
306
|
+
|
|
307
|
+
lib/webgen/page.rb
|
|
308
|
+
test/test_page.rb
|
|
309
|
+
|
|
310
|
+
commit f7427ab8075f5480ff65fc4f0bdddaf0caa9d93a
|
|
311
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
312
|
+
Date: Sat Jun 27 08:17:26 2009 +0200
|
|
313
|
+
|
|
314
|
+
Added some documentation
|
|
315
|
+
|
|
316
|
+
doc/sourcehandler/feed.page
|
|
317
|
+
doc/sourcehandler/page.page
|
|
318
|
+
doc/sourcehandler/sitemap.page
|
|
319
|
+
|
|
320
|
+
commit a3e6913be19787e5b02acd66de7dc1311ff0371d
|
|
321
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
322
|
+
Date: Fri Jun 26 17:58:00 2009 +0200
|
|
323
|
+
|
|
324
|
+
Updated github gemspec
|
|
325
|
+
|
|
326
|
+
webgen.gemspec
|
|
327
|
+
|
|
328
|
+
commit b18a5695cfbd274641cca4c7ea2737f740de8eca
|
|
329
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
330
|
+
Date: Fri Jun 26 14:57:51 2009 +0200
|
|
331
|
+
|
|
332
|
+
Small fix
|
|
333
|
+
|
|
334
|
+
test/test_tag_base.rb
|
|
335
|
+
|
|
336
|
+
commit ba6884cd94ae7ccaa0a06aaf734bb2b8447be715
|
|
337
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
338
|
+
Date: Thu Jun 25 21:57:44 2009 +0200
|
|
339
|
+
|
|
340
|
+
Updated SH::Sitemap to also use passive sources
|
|
341
|
+
|
|
342
|
+
This also means that the sitemap source handler can now be used without
|
|
343
|
+
the builder library. Another thing is that a sitemap file is now similar
|
|
344
|
+
to a feed file because the template for the generation of a sitemap can
|
|
345
|
+
now be specified directly in the sitemap file.
|
|
346
|
+
|
|
347
|
+
data/webgen/passive_sources/templates/sitemap.template
|
|
348
|
+
doc/sourcehandler/sitemap.page
|
|
349
|
+
lib/webgen/default_config.rb
|
|
350
|
+
lib/webgen/sourcehandler/sitemap.rb
|
|
351
|
+
test/test_sourcehandler_sitemap.rb
|
|
352
|
+
|
|
353
|
+
commit 7e37743412a1911bad56f1ba517c849cf4091f7b
|
|
354
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
355
|
+
Date: Thu Jun 25 08:07:18 2009 +0200
|
|
356
|
+
|
|
357
|
+
Fixed Node#is_directory? to also work when the node is a fragment ending with a slash
|
|
358
|
+
|
|
359
|
+
lib/webgen/node.rb
|
|
360
|
+
test/test_node.rb
|
|
361
|
+
|
|
362
|
+
commit 84e35379853e78890a2fcaa36ec8f2e243356547
|
|
363
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
364
|
+
Date: Thu Jun 25 08:03:21 2009 +0200
|
|
365
|
+
|
|
366
|
+
Fixed naming of anchor
|
|
367
|
+
|
|
368
|
+
doc/reference_website_styles.page
|
|
369
|
+
|
|
370
|
+
commit 94292b037b9567a9754eba0dbf7556c189471ffa
|
|
371
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
372
|
+
Date: Thu Jun 25 08:02:59 2009 +0200
|
|
373
|
+
|
|
374
|
+
Added two small test cases
|
|
375
|
+
|
|
376
|
+
test/test_path.rb
|
|
377
|
+
test/test_sourcehandler_metainfo.rb
|
|
378
|
+
|
|
379
|
+
commit 6d597870c51a69435e6dfdeb2d47777854d28c45
|
|
380
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
381
|
+
Date: Thu Jun 25 07:25:30 2009 +0200
|
|
382
|
+
|
|
383
|
+
Updated SH::Copy to correctly handle text and binary processors
|
|
384
|
+
|
|
385
|
+
lib/webgen/sourcehandler/copy.rb
|
|
386
|
+
|
|
387
|
+
commit 817c67cedbbf8da31590c3e827507d410afefc8b
|
|
388
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
389
|
+
Date: Wed Jun 24 18:53:49 2009 +0200
|
|
390
|
+
|
|
391
|
+
Added optional mode specifies to Webgen::Path::SourceIO
|
|
392
|
+
|
|
393
|
+
This allows one to set the mode in which a path (file, ...) should be
|
|
394
|
+
opened. This is needed under Ruby 1.9 to ensure that binary files get
|
|
395
|
+
read in binary mode and text files in the normal mode.
|
|
396
|
+
|
|
397
|
+
lib/webgen/output.rb
|
|
398
|
+
lib/webgen/output/filesystem.rb
|
|
399
|
+
lib/webgen/path.rb
|
|
400
|
+
lib/webgen/source/filesystem.rb
|
|
401
|
+
lib/webgen/source/tararchive.rb
|
|
402
|
+
test/test_path.rb
|
|
403
|
+
|
|
404
|
+
commit fe1c6dcddd5113cbcc630392d744fa37dc2d24df
|
|
405
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
406
|
+
Date: Wed Jun 24 07:05:42 2009 +0200
|
|
407
|
+
|
|
408
|
+
Introduced the distinction between textual and binary content processors
|
|
409
|
+
|
|
410
|
+
doc/manual.page
|
|
411
|
+
doc/reference_configuration.page
|
|
412
|
+
lib/webgen/contentprocessor.rb
|
|
413
|
+
lib/webgen/default_config.rb
|
|
414
|
+
test/test_contentprocessor.rb
|
|
415
|
+
|
|
416
|
+
commit 024bf6eb4149976d1020484efd16d538933e1725
|
|
417
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
418
|
+
Date: Tue Jun 23 21:59:32 2009 +0200
|
|
419
|
+
|
|
420
|
+
Implemented new content processor head
|
|
421
|
+
|
|
422
|
+
This content processor inserts, for example, links to CSS/JS files into the head section
|
|
423
|
+
of an HTML file.
|
|
424
|
+
|
|
425
|
+
doc/contentprocessor/head.page
|
|
426
|
+
doc/reference_metainfo.page
|
|
427
|
+
lib/webgen/contentprocessor.rb
|
|
428
|
+
lib/webgen/contentprocessor/head.rb
|
|
429
|
+
lib/webgen/default_config.rb
|
|
430
|
+
test/test_contentprocessor_head.rb
|
|
431
|
+
|
|
432
|
+
commit 069e63fdb3697f2f095db1ed84b89b122a7dd34d
|
|
433
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
434
|
+
Date: Sun Jun 21 12:57:16 2009 +0200
|
|
435
|
+
|
|
436
|
+
Updated github gemspec
|
|
437
|
+
|
|
438
|
+
webgen.gemspec
|
|
439
|
+
|
|
440
|
+
commit 29bf72f7eb90cabaa06f399fa654f65b70131119
|
|
441
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
442
|
+
Date: Sun Jun 21 12:57:08 2009 +0200
|
|
443
|
+
|
|
444
|
+
Bumped version number to 0.5.9
|
|
445
|
+
|
|
446
|
+
lib/webgen/version.rb
|
|
447
|
+
|
|
448
|
+
commit c4cafc20f7990fe27679f6c97c74c57783b6d1b0
|
|
449
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
450
|
+
Date: Fri Jun 19 23:14:48 2009 +0200
|
|
451
|
+
|
|
452
|
+
Updated SourceHandler::Feed
|
|
453
|
+
|
|
454
|
+
* The feed handler now uses the passive sources system for finding its
|
|
455
|
+
templates in case the user does not create them.
|
|
456
|
+
* Dependency feedtools has been droped since it is not need anymore
|
|
457
|
+
* Due to not using feedtools there is now a tremendous speed-up when
|
|
458
|
+
generating the feeds
|
|
459
|
+
|
|
460
|
+
Rakefile
|
|
461
|
+
data/webgen/passive_sources/templates/atom_feed.template
|
|
462
|
+
data/webgen/passive_sources/templates/rss_feed.template
|
|
463
|
+
doc/sourcehandler/feed.page
|
|
464
|
+
lib/webgen/sourcehandler/feed.rb
|
|
465
|
+
test/test_sourcehandler_feed.rb
|
|
466
|
+
website/src/installation.page
|
|
467
|
+
|
|
468
|
+
commit bee7b25d5e2addebc48a29c2a10a79ba9496c0c9
|
|
469
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
470
|
+
Date: Fri Jun 19 22:48:25 2009 +0200
|
|
471
|
+
|
|
472
|
+
Directories are not written anymore
|
|
473
|
+
|
|
474
|
+
Since the needed directories are created on-demand, it is not
|
|
475
|
+
necessary to explicitly create the directories in the node tree.
|
|
476
|
+
This has the advantage that directories created by passive sources
|
|
477
|
+
which contain only nodes that are not written out are also not
|
|
478
|
+
written out.
|
|
479
|
+
|
|
480
|
+
lib/webgen/sourcehandler/directory.rb
|
|
481
|
+
test/test_sourcehandler_directory.rb
|
|
482
|
+
|
|
483
|
+
commit 3d78a7166813026b8413125071a7b8da551192d8
|
|
484
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
485
|
+
Date: Fri Jun 19 12:29:41 2009 +0200
|
|
486
|
+
|
|
487
|
+
Bumped recommended version of coderay to 0.8.312
|
|
488
|
+
|
|
489
|
+
This version of coderay is compatible with Ruby 1.9 and should therefore be
|
|
490
|
+
used. One less problem with Ruby 1.9 support.
|
|
491
|
+
|
|
492
|
+
Rakefile
|
|
493
|
+
website/src/installation.page
|
|
494
|
+
|
|
495
|
+
commit 75ee7ba94d261942cd8ea2659a6c0f00d987cd2e
|
|
496
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
497
|
+
Date: Fri Jun 19 11:54:18 2009 +0200
|
|
498
|
+
|
|
499
|
+
Two small changes
|
|
500
|
+
|
|
501
|
+
* The ERB::Util package is now available when using the erb content processor.
|
|
502
|
+
* The Webgen::VERSION constant is now available when working with a webgen website.
|
|
503
|
+
|
|
504
|
+
lib/webgen/contentprocessor/erb.rb
|
|
505
|
+
lib/webgen/website.rb
|
|
506
|
+
|
|
507
|
+
commit 1def0826499ac98a63b0ec896c5f8cc80597a341
|
|
508
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
509
|
+
Date: Fri Jun 19 11:52:57 2009 +0200
|
|
510
|
+
|
|
511
|
+
Small change in handling passive nodes
|
|
512
|
+
|
|
513
|
+
The parameter for also selecting passive nodes has been removed and
|
|
514
|
+
better logic implemented in SH::Main#update_tree instead.
|
|
515
|
+
|
|
516
|
+
lib/webgen/node.rb
|
|
517
|
+
lib/webgen/sourcehandler.rb
|
|
518
|
+
|
|
519
|
+
commit 62cc6ede0c27e09e423aff228556ef5cbfdec782
|
|
520
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
521
|
+
Date: Wed Jun 17 07:02:16 2009 +0200
|
|
522
|
+
|
|
523
|
+
Added new configuration option output.do_deletion
|
|
524
|
+
|
|
525
|
+
If this option is set to true, output paths are deleted if the nodes to which
|
|
526
|
+
they belong are deleted.
|
|
527
|
+
|
|
528
|
+
doc/reference_configuration.page
|
|
529
|
+
lib/webgen/default_config.rb
|
|
530
|
+
lib/webgen/sourcehandler.rb
|
|
531
|
+
test/test_sourcehandler_main.rb
|
|
532
|
+
|
|
533
|
+
commit f47233e823f44c10b6f7687751dd71c98cf1d651
|
|
534
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
535
|
+
Date: Wed Jun 17 06:57:36 2009 +0200
|
|
536
|
+
|
|
537
|
+
Fixed bug in Website#render which occurs when called multiple times
|
|
538
|
+
|
|
539
|
+
The website was only initialized once so the creation of a new SH::Main class
|
|
540
|
+
lead to an error. Fixed by initializing the website every time render is called.
|
|
541
|
+
|
|
542
|
+
lib/webgen/website.rb
|
|
543
|
+
test/test_website.rb
|
|
544
|
+
|
|
545
|
+
commit ac5e6ec8ce98b54d694d7883722a38fd4277edcb
|
|
546
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
547
|
+
Date: Tue Jun 16 17:54:06 2009 +0200
|
|
548
|
+
|
|
549
|
+
Tag handlers are now called only if all mandatory parameters are set
|
|
550
|
+
|
|
551
|
+
This change is implemented in a backward-compatible way and works even if a tag
|
|
552
|
+
handler was created without the use of the Tag::Base class.
|
|
553
|
+
|
|
554
|
+
lib/webgen/contentprocessor/tags.rb
|
|
555
|
+
lib/webgen/tag/base.rb
|
|
556
|
+
lib/webgen/tag/relocatable.rb
|
|
557
|
+
test/test_tag_base.rb
|
|
558
|
+
|
|
559
|
+
commit f9b86214a507af715d0588aacd7238e4ba89ff91
|
|
560
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
561
|
+
Date: Tue Jun 16 17:26:59 2009 +0200
|
|
562
|
+
|
|
563
|
+
Fixed platform specific issues
|
|
564
|
+
|
|
565
|
+
* Now switching on host_os instead of arch for specifying Windows
|
|
566
|
+
specific behaviour.
|
|
567
|
+
* Using $?.exitstatus now to fix an issue when running on jruby
|
|
568
|
+
|
|
569
|
+
lib/webgen/cli/utils.rb
|
|
570
|
+
lib/webgen/tag/executecommand.rb
|
|
571
|
+
test/test_source_filesystem.rb
|
|
572
|
+
test/test_tag_executecommand.rb
|
|
573
|
+
test/test_tag_tikz.rb
|
|
574
|
+
|
|
575
|
+
commit 593f1071d14f2e9d1aecc1d1f1ac0973518231f7
|
|
576
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
577
|
+
Date: Tue Jun 16 17:02:25 2009 +0200
|
|
578
|
+
|
|
579
|
+
Updated documentation to include webgen logo
|
|
580
|
+
|
|
581
|
+
misc/default.css
|
|
582
|
+
misc/default.template
|
|
583
|
+
website/src/default.template
|
|
584
|
+
|
|
585
|
+
commit 7295de2cf071f6ff7b7da2e91b1eded96041dee3
|
|
586
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
587
|
+
Date: Tue Jun 16 17:02:03 2009 +0200
|
|
588
|
+
|
|
589
|
+
Implemented automatic creation and deletion of passive nodes
|
|
590
|
+
|
|
591
|
+
Passive nodes are nodes that are created on-demand when node.resolve is
|
|
592
|
+
called and the path cannot be resolved. Only the paths created by sources
|
|
593
|
+
specified in the configuration option passive_sources are used for
|
|
594
|
+
this process. Passive nodes are automatically deleted if they are not
|
|
595
|
+
referenced anymore.
|
|
596
|
+
|
|
597
|
+
doc/reference_configuration.page
|
|
598
|
+
lib/webgen/node.rb
|
|
599
|
+
lib/webgen/sourcehandler.rb
|
|
600
|
+
test/helper.rb
|
|
601
|
+
test/test_node.rb
|
|
602
|
+
|
|
603
|
+
commit c79e32bc7c23bcf0c9f631ef83fffb4d808e0e3e
|
|
604
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
605
|
+
Date: Tue Jun 16 16:49:08 2009 +0200
|
|
606
|
+
|
|
607
|
+
Added webgen logo and generated-by image as passive sources
|
|
608
|
+
|
|
609
|
+
data/webgen/passive_sources/images/generated_by_webgen.png
|
|
610
|
+
data/webgen/passive_sources/images/webgen_logo.png
|
|
611
|
+
data/webgen/resources.yaml
|
|
612
|
+
misc/logo.svg
|
|
613
|
+
|
|
614
|
+
commit 1c90a0ed6bff951e85a510bceab3ba2deed217f1
|
|
615
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
616
|
+
Date: Tue Jun 16 16:45:58 2009 +0200
|
|
617
|
+
|
|
618
|
+
Updated manual section on source paths
|
|
619
|
+
|
|
620
|
+
doc/manual.page
|
|
621
|
+
|
|
622
|
+
commit 636a119a1f3bfd6c2e372da6dd0c8514890bb622
|
|
623
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
624
|
+
Date: Tue Jun 16 08:01:01 2009 +0200
|
|
625
|
+
|
|
626
|
+
Changed Path#passive to Path#passive?
|
|
627
|
+
|
|
628
|
+
lib/webgen/path.rb
|
|
629
|
+
test/test_path.rb
|
|
630
|
+
|
|
631
|
+
commit a18f3c5b5ec415225e4362bab9d85faf49c926f8
|
|
632
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
633
|
+
Date: Tue Jun 16 07:48:42 2009 +0200
|
|
634
|
+
|
|
635
|
+
Added test for Path#<=>
|
|
636
|
+
|
|
637
|
+
test/test_path.rb
|
|
638
|
+
|
|
639
|
+
commit 9f6cc6ba8dfc43211cca7c47c1f9e8c582cfc9bc
|
|
640
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
641
|
+
Date: Tue Jun 9 08:15:22 2009 +0200
|
|
642
|
+
|
|
643
|
+
Fixed use of old absolute_cn/_lcn notation in documentation
|
|
644
|
+
|
|
645
|
+
doc/contentprocessor/builder.page
|
|
646
|
+
doc/contentprocessor/erubis.page
|
|
647
|
+
doc/extensions.page
|
|
648
|
+
doc/reference_website_styles.page
|
|
649
|
+
|
|
650
|
+
commit eb634439de24c464e32519f12e5d8a53ec8349e3
|
|
651
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
652
|
+
Date: Tue Jun 9 07:58:31 2009 +0200
|
|
653
|
+
|
|
654
|
+
Small spelling fix
|
|
655
|
+
|
|
656
|
+
doc/tag/includefile.page
|
|
657
|
+
|
|
658
|
+
commit d59669ee6b294af588d69ce7ecf3e52a6775eb24
|
|
659
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
660
|
+
Date: Tue Jun 9 07:19:43 2009 +0200
|
|
661
|
+
|
|
662
|
+
Some small fixes
|
|
663
|
+
|
|
664
|
+
* Node#resolve now correctly parses the path argument, too
|
|
665
|
+
|
|
666
|
+
* Tag::Relocatable now correctly adds the used node to the used
|
|
667
|
+
meta information nodes array
|
|
668
|
+
|
|
669
|
+
* Small fix for Tag::Link to work with nil values
|
|
670
|
+
|
|
671
|
+
lib/webgen/node.rb
|
|
672
|
+
lib/webgen/tag/link.rb
|
|
673
|
+
lib/webgen/tag/relocatable.rb
|
|
674
|
+
test/test_tag_link.rb
|
|
675
|
+
test/test_tag_relocatable.rb
|
|
676
|
+
|
|
677
|
+
commit 738c19b74c41678dc8c7fa5df85e396aa72642a7
|
|
678
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
679
|
+
Date: Mon Jun 8 16:15:47 2009 +0200
|
|
680
|
+
|
|
681
|
+
Modified Node.url method signature
|
|
682
|
+
|
|
683
|
+
Node.url now takes an optional second parameter with which one can
|
|
684
|
+
specify whether a relative path should be made absolute.
|
|
685
|
+
|
|
686
|
+
lib/webgen/node.rb
|
|
687
|
+
test/test_node.rb
|
|
688
|
+
|
|
689
|
+
commit d6d1af817eca79836eb96e5fd063e00987ee4b88
|
|
690
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
691
|
+
Date: Sun Jun 7 18:40:07 2009 +0200
|
|
692
|
+
|
|
693
|
+
Renamed Node#absolute_cn to Node#acn and Node#absolute_lcn to Node#alcn with deprecation
|
|
694
|
+
|
|
695
|
+
lib/webgen/contentprocessor/blocks.rb
|
|
696
|
+
lib/webgen/contentprocessor/builder.rb
|
|
697
|
+
lib/webgen/contentprocessor/erb.rb
|
|
698
|
+
lib/webgen/contentprocessor/erubis.rb
|
|
699
|
+
lib/webgen/contentprocessor/haml.rb
|
|
700
|
+
lib/webgen/contentprocessor/maruku.rb
|
|
701
|
+
lib/webgen/contentprocessor/sass.rb
|
|
702
|
+
lib/webgen/contentprocessor/tags.rb
|
|
703
|
+
lib/webgen/deprecated.rb
|
|
704
|
+
lib/webgen/node.rb
|
|
705
|
+
lib/webgen/sourcehandler.rb
|
|
706
|
+
lib/webgen/sourcehandler/base.rb
|
|
707
|
+
lib/webgen/sourcehandler/directory.rb
|
|
708
|
+
lib/webgen/sourcehandler/feed.rb
|
|
709
|
+
lib/webgen/sourcehandler/fragment.rb
|
|
710
|
+
lib/webgen/sourcehandler/memory.rb
|
|
711
|
+
lib/webgen/sourcehandler/metainfo.rb
|
|
712
|
+
lib/webgen/sourcehandler/page.rb
|
|
713
|
+
lib/webgen/sourcehandler/template.rb
|
|
714
|
+
lib/webgen/sourcehandler/virtual.rb
|
|
715
|
+
lib/webgen/tag/base.rb
|
|
716
|
+
lib/webgen/tag/breadcrumbtrail.rb
|
|
717
|
+
lib/webgen/tag/executecommand.rb
|
|
718
|
+
lib/webgen/tag/langbar.rb
|
|
719
|
+
lib/webgen/tag/link.rb
|
|
720
|
+
lib/webgen/tag/menu.rb
|
|
721
|
+
lib/webgen/tag/metainfo.rb
|
|
722
|
+
lib/webgen/tag/relocatable.rb
|
|
723
|
+
lib/webgen/tag/tikz.rb
|
|
724
|
+
lib/webgen/tree.rb
|
|
725
|
+
test/test_common_sitemap.rb
|
|
726
|
+
test/test_contentprocessor_blocks.rb
|
|
727
|
+
test/test_contentprocessor_builder.rb
|
|
728
|
+
test/test_contentprocessor_erb.rb
|
|
729
|
+
test/test_contentprocessor_erubis.rb
|
|
730
|
+
test/test_contentprocessor_haml.rb
|
|
731
|
+
test/test_node.rb
|
|
732
|
+
test/test_path.rb
|
|
733
|
+
test/test_sourcehandler_sitemap.rb
|
|
734
|
+
test/test_tag_link.rb
|
|
735
|
+
test/test_tag_menu.rb
|
|
736
|
+
test/test_tree.rb
|
|
737
|
+
|
|
738
|
+
commit 17643b2259238f73fea16f21ada8cde8cff89160
|
|
739
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
740
|
+
Date: Sun Jun 7 18:20:17 2009 +0200
|
|
741
|
+
|
|
742
|
+
Removed unnecessary Node.absolute_name method
|
|
743
|
+
|
|
744
|
+
lib/webgen/node.rb
|
|
745
|
+
test/test_node.rb
|
|
746
|
+
|
|
747
|
+
commit 3e1af6402e213a15dbd583fbb65c085f1c4cd669
|
|
748
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
749
|
+
Date: Sun Jun 7 15:52:00 2009 +0200
|
|
750
|
+
|
|
751
|
+
API change: Common.absolute_path -> Path.make_absolute
|
|
752
|
+
|
|
753
|
+
The parameter order has changed as well. Deprecation warnings are printed
|
|
754
|
+
when using the old name.
|
|
755
|
+
|
|
756
|
+
lib/webgen/common.rb
|
|
757
|
+
lib/webgen/deprecated.rb
|
|
758
|
+
lib/webgen/path.rb
|
|
759
|
+
lib/webgen/sourcehandler/feed.rb
|
|
760
|
+
lib/webgen/sourcehandler/metainfo.rb
|
|
761
|
+
lib/webgen/sourcehandler/virtual.rb
|
|
762
|
+
lib/webgen/tag/tikz.rb
|
|
763
|
+
test/test_common.rb
|
|
764
|
+
test/test_path.rb
|
|
765
|
+
|
|
766
|
+
commit cb41f2132c78c7dd7f4470c23d0acbcf8ab2c749
|
|
767
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
768
|
+
Date: Sun Jun 7 14:55:31 2009 +0200
|
|
769
|
+
|
|
770
|
+
Incompatible API changes in source handlers
|
|
771
|
+
|
|
772
|
+
Since one can now get at the parent node of a to-be-created node
|
|
773
|
+
directly via the Path object, the interface for creating nodes has been
|
|
774
|
+
simplified. The source handler method #create_node now only takes a path
|
|
775
|
+
parameter and optionally an options hash for special cases (fragment
|
|
776
|
+
nodes and virtual nodes), #node_exists has seen a similar change.
|
|
777
|
+
|
|
778
|
+
The :create_nodes service signature also changed and the tree is now
|
|
779
|
+
always retrieved via the website object. Also note that the
|
|
780
|
+
:before_node_created message now only sends the path instead of parent
|
|
781
|
+
and path.
|
|
782
|
+
|
|
783
|
+
lib/webgen/sourcehandler.rb
|
|
784
|
+
lib/webgen/sourcehandler/base.rb
|
|
785
|
+
lib/webgen/sourcehandler/copy.rb
|
|
786
|
+
lib/webgen/sourcehandler/directory.rb
|
|
787
|
+
lib/webgen/sourcehandler/feed.rb
|
|
788
|
+
lib/webgen/sourcehandler/fragment.rb
|
|
789
|
+
lib/webgen/sourcehandler/memory.rb
|
|
790
|
+
lib/webgen/sourcehandler/metainfo.rb
|
|
791
|
+
lib/webgen/sourcehandler/page.rb
|
|
792
|
+
lib/webgen/sourcehandler/sitemap.rb
|
|
793
|
+
lib/webgen/sourcehandler/template.rb
|
|
794
|
+
lib/webgen/sourcehandler/virtual.rb
|
|
795
|
+
lib/webgen/tag/tikz.rb
|
|
796
|
+
lib/webgen/website.rb
|
|
797
|
+
test/helper.rb
|
|
798
|
+
test/test_sourcehandler_base.rb
|
|
799
|
+
test/test_sourcehandler_copy.rb
|
|
800
|
+
test/test_sourcehandler_directory.rb
|
|
801
|
+
test/test_sourcehandler_feed.rb
|
|
802
|
+
test/test_sourcehandler_fragment.rb
|
|
803
|
+
test/test_sourcehandler_memory.rb
|
|
804
|
+
test/test_sourcehandler_metainfo.rb
|
|
805
|
+
test/test_sourcehandler_page.rb
|
|
806
|
+
test/test_sourcehandler_sitemap.rb
|
|
807
|
+
test/test_sourcehandler_template.rb
|
|
808
|
+
test/test_sourcehandler_virtual.rb
|
|
809
|
+
test/test_tag_tikz.rb
|
|
810
|
+
|
|
811
|
+
commit e3dececd47649c794d4a4a806c61313f7cd36284
|
|
812
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
813
|
+
Date: Wed Jun 3 18:27:45 2009 +0200
|
|
814
|
+
|
|
815
|
+
Fixed errors introduced with the latest changes in the documentation website
|
|
816
|
+
|
|
817
|
+
Rakefile
|
|
818
|
+
doc/reference_website_styles.page
|
|
819
|
+
misc/style.page
|
|
820
|
+
|
|
821
|
+
commit aa7a76159069e7aac48e91a8abcb503dba619394
|
|
822
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
823
|
+
Date: Wed Jun 3 18:13:38 2009 +0200
|
|
824
|
+
|
|
825
|
+
Updates to tests to work again after changes to Node/Tree/Path
|
|
826
|
+
|
|
827
|
+
test/test_sourcehandler_base.rb
|
|
828
|
+
test/test_sourcehandler_directory.rb
|
|
829
|
+
test/test_sourcehandler_template.rb
|
|
830
|
+
test/test_sourcehandler_virtual.rb
|
|
831
|
+
test/test_tree.rb
|
|
832
|
+
|
|
833
|
+
commit 398f94b134624bc8126874d8be2bb479523c647a
|
|
834
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
835
|
+
Date: Wed Jun 3 18:13:24 2009 +0200
|
|
836
|
+
|
|
837
|
+
Fixed code to use new Path/Node semantics
|
|
838
|
+
|
|
839
|
+
lib/webgen/sourcehandler.rb
|
|
840
|
+
lib/webgen/sourcehandler/base.rb
|
|
841
|
+
|
|
842
|
+
commit 7c9adfa83d8f9b9e97d6689be3f38b6f4341989b
|
|
843
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
844
|
+
Date: Tue Jun 2 15:05:29 2009 +0200
|
|
845
|
+
|
|
846
|
+
Updated Node class sothat directory nodes end with a slash
|
|
847
|
+
|
|
848
|
+
lib/webgen/node.rb
|
|
849
|
+
test/test_node.rb
|
|
850
|
+
|
|
851
|
+
commit c575ce186c875515817db8ffbebd2cfda88e39e9
|
|
852
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
853
|
+
Date: Sat May 30 08:25:02 2009 +0200
|
|
854
|
+
|
|
855
|
+
Fixed API documentation
|
|
856
|
+
|
|
857
|
+
lib/webgen/source/stacked.rb
|
|
858
|
+
|
|
859
|
+
commit f3a5b18042e8722979d716fad21ece18ed7f3784
|
|
860
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
861
|
+
Date: Sat May 30 08:21:28 2009 +0200
|
|
862
|
+
|
|
863
|
+
Fixed test cases which did not follow the new rules for paths
|
|
864
|
+
|
|
865
|
+
test/test_source_stacked.rb
|
|
866
|
+
test/test_sourcehandler_base.rb
|
|
867
|
+
test/test_website.rb
|
|
868
|
+
|
|
869
|
+
commit 8d0955aa084aef5598661cde3c8ee50d14965e88
|
|
870
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
871
|
+
Date: Fri May 29 14:21:15 2009 +0200
|
|
872
|
+
|
|
873
|
+
Some small fixes in Path class
|
|
874
|
+
|
|
875
|
+
* Path#mount_at now works correctly, requirements for arguments stated in API doc
|
|
876
|
+
* Changed some attributes from r/w to r/
|
|
877
|
+
|
|
878
|
+
lib/webgen/path.rb
|
|
879
|
+
test/test_path.rb
|
|
880
|
+
|
|
881
|
+
commit 9e3274c17bd3eb47ecc89af89534e3bdfe364444
|
|
882
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
883
|
+
Date: Thu May 28 17:55:10 2009 +0200
|
|
884
|
+
|
|
885
|
+
Updated SourceHandler::Fragment and ContentProcessor::Fragment to work with new Path implementation
|
|
886
|
+
|
|
887
|
+
lib/webgen/sourcehandler/fragment.rb
|
|
888
|
+
test/test_contentprocessor_fragments.rb
|
|
889
|
+
test/test_sourcehandler_fragment.rb
|
|
890
|
+
|
|
891
|
+
commit 92de86fc9bdd039b52c4a88c0f990cf0d4d0292a
|
|
892
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
893
|
+
Date: Thu May 28 17:32:22 2009 +0200
|
|
894
|
+
|
|
895
|
+
Updated Path class
|
|
896
|
+
|
|
897
|
+
Moved all functionality involving the generation of (a)(l)cn to the Path
|
|
898
|
+
class.
|
|
899
|
+
|
|
900
|
+
lib/webgen/default_config.rb
|
|
901
|
+
lib/webgen/deprecated.rb
|
|
902
|
+
lib/webgen/path.rb
|
|
903
|
+
test/test_path.rb
|
|
904
|
+
|
|
905
|
+
commit 05c51f17db09449d5741857f7588ed3cdffc9673
|
|
906
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
907
|
+
Date: Thu May 21 08:59:41 2009 +0200
|
|
908
|
+
|
|
909
|
+
Special characters in paths are now allowed
|
|
910
|
+
|
|
911
|
+
The usage of umlauts and spaces is now allowed in source and output paths.
|
|
912
|
+
However, it may depend on the web server configuration if this works in
|
|
913
|
+
each case. Also note that it umlauts are just percent encoded, so if a
|
|
914
|
+
umlaut is in ISO-8859-1, it will get one escape sequence, but if it is
|
|
915
|
+
in UTF-8, it probably gets two escape sequences.
|
|
916
|
+
|
|
917
|
+
lib/webgen/node.rb
|
|
918
|
+
test/test_node.rb
|
|
919
|
+
|
|
920
|
+
commit 61bdd561ae1d5921d21f315a4bbc0a01c2fac0d0
|
|
921
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
922
|
+
Date: Wed May 20 07:30:40 2009 +0200
|
|
923
|
+
|
|
924
|
+
Small API doc update
|
|
925
|
+
|
|
926
|
+
lib/webgen/source.rb
|
|
927
|
+
|
|
928
|
+
commit 9911f5f9601a53df6a67cac313dff318e3eccd72
|
|
929
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
930
|
+
Date: Wed May 20 07:00:09 2009 +0200
|
|
931
|
+
|
|
932
|
+
Added the option of caching retrieved paths in stacked sources
|
|
933
|
+
|
|
934
|
+
lib/webgen/source/stacked.rb
|
|
935
|
+
test/test_source_stacked.rb
|
|
936
|
+
|
|
937
|
+
commit 86665ff9a33071b26b945da1c6f84b40d8e4ec01
|
|
938
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
939
|
+
Date: Wed May 20 06:41:20 2009 +0200
|
|
940
|
+
|
|
941
|
+
Fixed bug #25943: apply command did not work without explicitly specifying directory
|
|
942
|
+
|
|
943
|
+
lib/webgen/cli/apply_command.rb
|
|
944
|
+
|
|
945
|
+
commit 2edb009da193279cc2b589b7a5513732404b07ed
|
|
946
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
947
|
+
Date: Wed May 13 18:33:03 2009 +0200
|
|
948
|
+
|
|
949
|
+
Changed order of site and page title in title tag
|
|
950
|
+
|
|
951
|
+
misc/default.template
|
|
952
|
+
website/src/default.template
|
|
953
|
+
|
|
954
|
+
commit 477ca879d2109104e156f8cf4f05bcf4c4dce438
|
|
955
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
956
|
+
Date: Wed May 13 18:28:03 2009 +0200
|
|
957
|
+
|
|
958
|
+
Small doc update
|
|
959
|
+
|
|
960
|
+
doc/contentprocessor/erb.page
|
|
961
|
+
|
|
962
|
+
commit 9b2937151560037a13f6e2ff913a2501d007c233
|
|
963
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
964
|
+
Date: Wed May 13 18:22:45 2009 +0200
|
|
965
|
+
|
|
966
|
+
Added support for rendering blocks via the context object
|
|
967
|
+
|
|
968
|
+
The method Context#render_block uses the functionality of the content
|
|
969
|
+
processor blocks to do the actual rendering and therefore supports
|
|
970
|
+
all its options.
|
|
971
|
+
|
|
972
|
+
lib/webgen/contentprocessor/blocks.rb
|
|
973
|
+
lib/webgen/context.rb
|
|
974
|
+
lib/webgen/context/render.rb
|
|
975
|
+
test/test_context.rb
|
|
976
|
+
|
|
977
|
+
commit 05921beb6b6bce1738adff48280ecf6e878558ad
|
|
978
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
979
|
+
Date: Wed May 13 17:50:17 2009 +0200
|
|
980
|
+
|
|
981
|
+
Refactored ContentProcessor::Blocks
|
|
982
|
+
|
|
983
|
+
Moved the part where the actual rendering of a node was done
|
|
984
|
+
to a separate method for usage by other classes.
|
|
985
|
+
|
|
986
|
+
lib/webgen/contentprocessor/blocks.rb
|
|
987
|
+
test/test_contentprocessor_blocks.rb
|
|
988
|
+
|
|
989
|
+
commit c048f2bac0c757159900cdb1dffaf4d640aab6d3
|
|
990
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
991
|
+
Date: Wed May 13 07:32:14 2009 +0200
|
|
992
|
+
|
|
993
|
+
Fixed test cases sothat the can run isolated
|
|
994
|
+
|
|
995
|
+
test/test_contentprocessor_blocks.rb
|
|
996
|
+
test/test_contentprocessor_builder.rb
|
|
997
|
+
test/test_contentprocessor_erb.rb
|
|
998
|
+
test/test_contentprocessor_haml.rb
|
|
999
|
+
test/test_contentprocessor_maruku.rb
|
|
1000
|
+
test/test_contentprocessor_rdiscount.rb
|
|
1001
|
+
test/test_contentprocessor_rdoc.rb
|
|
1002
|
+
test/test_contentprocessor_sass.rb
|
|
1003
|
+
test/test_tag_metainfo.rb
|
|
1004
|
+
|
|
1005
|
+
commit 2ca2a761f6c9bbae586cbd3f1785d9148fcf09a0
|
|
1006
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
1007
|
+
Date: Wed May 13 07:07:10 2009 +0200
|
|
1008
|
+
|
|
1009
|
+
Added support for using tags via the context object
|
|
1010
|
+
|
|
1011
|
+
The new method Context#tag allows one to use the functionality of
|
|
1012
|
+
webgen tags from content processors like ERB, erubis, builder and
|
|
1013
|
+
haml.
|
|
1014
|
+
|
|
1015
|
+
lib/webgen/contentprocessor/tags.rb
|
|
1016
|
+
lib/webgen/context.rb
|
|
1017
|
+
lib/webgen/context/tags.rb
|
|
1018
|
+
lib/webgen/tag/base.rb
|
|
1019
|
+
test/test_contentprocessor_tags.rb
|
|
1020
|
+
test/test_context.rb
|
|
1021
|
+
|
|
1022
|
+
commit 2e77e9f04bea5cea7f444f075add7d494c68aa35
|
|
1023
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
1024
|
+
Date: Mon May 11 16:22:45 2009 +0200
|
|
1025
|
+
|
|
1026
|
+
Added warning in SH::Base#create_node when overwriting the metainfo modified_at
|
|
1027
|
+
|
|
1028
|
+
lib/webgen/sourcehandler/base.rb
|
|
1029
|
+
|
|
1030
|
+
commit 171917d9954f73667c722077a20b2a06a3411b65
|
|
1031
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
1032
|
+
Date: Sat May 9 16:22:43 2009 +0200
|
|
1033
|
+
|
|
1034
|
+
Updated comparison to nanoc
|
|
1035
|
+
|
|
1036
|
+
website/src/features.page
|
|
1037
|
+
|
|
1
1038
|
commit e96b5c42d77ef6b0d67a48fb2abc8bff1129f2c0
|
|
2
1039
|
Author: Thomas Leitner <t_leitner@gmx.at>
|
|
3
1040
|
Date: Thu May 7 11:25:42 2009 +0200
|