webgen 1.0.0.beta1 → 1.0.0.beta2
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/API.rdoc +64 -11
- data/ChangeLog +391 -0
- data/README.md +2 -2
- data/VERSION +1 -1
- data/data/webgen/passive_sources/templates/tag.template +1 -1
- data/data/webgen/passive_sources/templates/tikz.template +14 -0
- data/lib/webgen/bundle/built-in/init.rb +9 -7
- data/lib/webgen/bundle_loader.rb +1 -1
- data/lib/webgen/cli/show_command.rb +2 -0
- data/lib/webgen/cli/show_config_command.rb +0 -1
- data/lib/webgen/cli/show_dependencies_command.rb +6 -63
- data/lib/webgen/cli/show_tree_command.rb +85 -0
- data/lib/webgen/content_processor/erb.rb +1 -1
- data/lib/webgen/content_processor/{rdoc.rb → r_doc.rb} +0 -0
- data/lib/webgen/content_processor/{redcloth.rb → red_cloth.rb} +0 -0
- data/lib/webgen/content_processor/ruby.rb +3 -0
- data/lib/webgen/content_processor/sass.rb +10 -6
- data/lib/webgen/content_processor/tikz.rb +10 -20
- data/lib/webgen/context/html_head.rb +7 -0
- data/lib/webgen/item_tracker.rb +42 -15
- data/lib/webgen/item_tracker/file.rb +7 -3
- data/lib/webgen/item_tracker/missing_node.rb +17 -5
- data/lib/webgen/item_tracker/node_content.rb +7 -3
- data/lib/webgen/item_tracker/node_meta_info.rb +8 -3
- data/lib/webgen/item_tracker/nodes.rb +10 -3
- data/lib/webgen/node.rb +4 -29
- data/lib/webgen/node_finder.rb +25 -10
- data/lib/webgen/path.rb +2 -2
- data/lib/webgen/path_handler/base.rb +20 -9
- data/lib/webgen/path_handler/feed.rb +29 -22
- data/lib/webgen/path_handler/page.rb +1 -3
- data/lib/webgen/path_handler/page_utils.rb +114 -33
- data/lib/webgen/path_handler/sitemap.rb +13 -6
- data/lib/webgen/path_handler/template.rb +0 -70
- data/lib/webgen/path_handler/virtual.rb +10 -2
- data/lib/webgen/tag.rb +13 -13
- data/lib/webgen/tag/tikz.rb +2 -1
- data/lib/webgen/test_helper.rb +2 -11
- data/lib/webgen/version.rb +1 -1
- data/test/webgen/content_processor/test_erb.rb +4 -0
- data/test/webgen/content_processor/{test_rdoc.rb → test_r_doc.rb} +1 -1
- data/test/webgen/content_processor/{test_redcloth.rb → test_red_cloth.rb} +1 -1
- data/test/webgen/content_processor/test_sass.rb +2 -2
- data/test/webgen/content_processor/test_tikz.rb +10 -3
- data/test/webgen/item_tracker/test_file.rb +5 -5
- data/test/webgen/item_tracker/test_missing_node.rb +8 -9
- data/test/webgen/item_tracker/test_node_content.rb +5 -6
- data/test/webgen/item_tracker/test_node_meta_info.rb +6 -7
- data/test/webgen/item_tracker/test_nodes.rb +7 -9
- data/test/webgen/path_handler/test_base.rb +4 -5
- data/test/webgen/path_handler/test_page.rb +1 -1
- data/test/webgen/path_handler/test_page_utils.rb +39 -11
- data/test/webgen/path_handler/test_template.rb +5 -45
- data/test/webgen/path_handler/test_virtual.rb +21 -0
- data/test/webgen/tag/test_link.rb +1 -1
- data/test/webgen/tag/test_tikz.rb +2 -2
- data/test/webgen/test_context.rb +10 -0
- data/test/webgen/test_item_tracker.rb +7 -4
- data/test/webgen/test_node.rb +3 -16
- data/test/webgen/test_node_finder.rb +10 -6
- data/test/webgen/test_tag.rb +4 -4
- metadata +218 -216
data/API.rdoc
CHANGED
@@ -62,18 +62,18 @@ Following are links and descriptions on how to develop specific types of extensi
|
|
62
62
|
Here is a list of modules/classes that are used throughout webgen and provide useful methods for
|
63
63
|
developing extensions:
|
64
64
|
|
65
|
-
* Webgen::Node
|
66
|
-
* Webgen::
|
67
|
-
* Webgen::
|
68
|
-
* Webgen::Page
|
69
|
-
* Webgen::Cache
|
70
|
-
* Webgen::Utils
|
65
|
+
* Webgen::Path (represens a source path that will get converted into a Webgen::Node)
|
66
|
+
* Webgen::Node (the internal representation of destination paths)
|
67
|
+
* Webgen::Tree (the tree structure holding all Webgen::Node objects)
|
68
|
+
* Webgen::Page (provides methods for working with files in Webgen Page Format)
|
69
|
+
* Webgen::Cache (provides caching functionality for other objects)
|
70
|
+
* Webgen::Utils (a collection of useful utilities)
|
71
71
|
|
72
72
|
== List of all blackboard messages
|
73
73
|
|
74
|
-
The Blackboard
|
75
|
-
notified of certain messages. All registered listeners for a message are
|
76
|
-
gets dispatched.
|
74
|
+
The blackboard (a Webgen::Blackboard object, accessible via Webgen::Website#blackboard) provides an
|
75
|
+
easy-to-use facility to be notified of certain messages. All registered listeners for a message are
|
76
|
+
notified when the message gets dispatched.
|
77
77
|
|
78
78
|
Following is the list of all messages that are dispatched by the webgen core classes and built-in
|
79
79
|
extensions:
|
@@ -86,6 +86,13 @@ extensions:
|
|
86
86
|
|
87
87
|
No parameters are given.
|
88
88
|
|
89
|
+
[:apply_meta_info_to_path]
|
90
|
+
|
91
|
+
This message is dispatched before a node from a path is created and can be used to add
|
92
|
+
additional meta information to the path.
|
93
|
+
|
94
|
+
The path in question is given as parameter.
|
95
|
+
|
89
96
|
[:before_node_created]
|
90
97
|
|
91
98
|
This message is dispatched after the meta information from the configuration option
|
@@ -95,12 +102,33 @@ extensions:
|
|
95
102
|
|
96
103
|
The path in question is given as parameter.
|
97
104
|
|
105
|
+
[:reused_existing_node]
|
106
|
+
|
107
|
+
This message is dispatched when a node that should be created already exists and is therefore
|
108
|
+
not created again (which would lead to an error). An example would be fragment nodes that are
|
109
|
+
created during the rendering.
|
110
|
+
|
111
|
+
The node is given as parameter.
|
112
|
+
|
98
113
|
[:after_node_created]
|
99
114
|
|
100
|
-
|
115
|
+
This message is dispatched after a node has been created.
|
101
116
|
|
102
117
|
The node is given as parameter.
|
103
118
|
|
119
|
+
[:before_secondary_nodes_created]
|
120
|
+
|
121
|
+
This message is dispatched before secondary nodes are created from a Webgen::Path object.
|
122
|
+
|
123
|
+
The path in question and the node alcn which led to the creation of the path (may be +nil+ if
|
124
|
+
the secondary nodes are not created during rendering) are given as parameters.
|
125
|
+
|
126
|
+
[:after_secondary_nodes_created]
|
127
|
+
|
128
|
+
This message is dispatched after secondary nodes have been created from a Webgen::Path object.
|
129
|
+
|
130
|
+
The path in question and the created nodes are given as parameters.
|
131
|
+
|
104
132
|
[:after_tree_populated]
|
105
133
|
|
106
134
|
This message is dispatched after all initial nodes have been created and the tree has been
|
@@ -109,6 +137,25 @@ extensions:
|
|
109
137
|
|
110
138
|
No parameters are given.
|
111
139
|
|
140
|
+
[:before_all_nodes_written]
|
141
|
+
|
142
|
+
This message is dispatched before any node is written to its destination in a generation pass.
|
143
|
+
Since webgen may need multiple passes to correctly write all nodes, this message may also be
|
144
|
+
dispatched multiple times.
|
145
|
+
|
146
|
+
No parameters are given.
|
147
|
+
|
148
|
+
[:before_node_written]
|
149
|
+
|
150
|
+
This message is dispatched after webgen determined that the content of a node has changed but
|
151
|
+
before it is written to its destination. Note that this message is also dispatched for those
|
152
|
+
nodes whose 'no_output' meta information key is set to +true+.
|
153
|
+
|
154
|
+
Also note that this message be may dispatched multiple times for the same node if, after all
|
155
|
+
nodes have been written, it is determined that it has changed again.
|
156
|
+
|
157
|
+
The node in question is given as parameter.
|
158
|
+
|
112
159
|
[:after_node_written]
|
113
160
|
|
114
161
|
This message is dispatched after a node has been written to its destination. Note that if the
|
@@ -119,7 +166,7 @@ extensions:
|
|
119
166
|
Also note that this message be may dispatched multiple times for the same node if, after all
|
120
167
|
nodes have been written, it is determined that it has changed again.
|
121
168
|
|
122
|
-
The node
|
169
|
+
The node and its (possibly) rendered content are given as parameters.
|
123
170
|
|
124
171
|
[:after_all_nodes_written]
|
125
172
|
|
@@ -141,3 +188,9 @@ extensions:
|
|
141
188
|
is dispatched, all child nodes have already been deleted.
|
142
189
|
|
143
190
|
The node is given as parameter.
|
191
|
+
|
192
|
+
[:website_generated]
|
193
|
+
|
194
|
+
This message is dispatched after the website is completely generated.
|
195
|
+
|
196
|
+
No parameters are given.
|
data/ChangeLog
CHANGED
@@ -1,3 +1,394 @@
|
|
1
|
+
commit 37c15f8afe970bc2f48b987c060e708b08db9900
|
2
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
3
|
+
Date: Fri Dec 7 21:30:16 2012 +0100
|
4
|
+
|
5
|
+
Updated version number
|
6
|
+
|
7
|
+
lib/webgen/version.rb
|
8
|
+
|
9
|
+
commit 60172c72359dca3348155e1c98f1f1fed45741bf
|
10
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
11
|
+
Date: Fri Dec 7 21:30:09 2012 +0100
|
12
|
+
|
13
|
+
Updated Rakefile
|
14
|
+
|
15
|
+
* Removed unneeded files from packages
|
16
|
+
* Add devel dep diff-lcs
|
17
|
+
* Updated kramdown dep to 0.14.0
|
18
|
+
* Some other some fixes
|
19
|
+
|
20
|
+
Rakefile
|
21
|
+
|
22
|
+
commit 9a866c1e8d3bf2e4194485141c5f71c9e046df4b
|
23
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
24
|
+
Date: Thu Dec 6 21:38:54 2012 +0100
|
25
|
+
|
26
|
+
Removed Node#method_missing and refactored dependent code
|
27
|
+
|
28
|
+
This was more like a hack than a good solution as it allowed
|
29
|
+
invoking arbitrary path handler methods, even things like
|
30
|
+
|
31
|
+
If a path handler now needs to provide special methods on a
|
32
|
+
created node, it has to create a suitable sub class and
|
33
|
+
provide this sub class as second parameter to
|
34
|
+
PathHandler::Base#create_node.
|
35
|
+
|
36
|
+
lib/webgen/bundle/built-in/init.rb
|
37
|
+
lib/webgen/node.rb
|
38
|
+
lib/webgen/path_handler/base.rb
|
39
|
+
lib/webgen/path_handler/feed.rb
|
40
|
+
lib/webgen/path_handler/page.rb
|
41
|
+
lib/webgen/path_handler/page_utils.rb
|
42
|
+
lib/webgen/path_handler/sitemap.rb
|
43
|
+
lib/webgen/path_handler/template.rb
|
44
|
+
lib/webgen/test_helper.rb
|
45
|
+
test/webgen/path_handler/test_base.rb
|
46
|
+
test/webgen/path_handler/test_page.rb
|
47
|
+
test/webgen/path_handler/test_page_utils.rb
|
48
|
+
test/webgen/path_handler/test_template.rb
|
49
|
+
test/webgen/test_node.rb
|
50
|
+
|
51
|
+
commit cd96ed9c375b6605252bdc023fa3efa27d00c0d7
|
52
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
53
|
+
Date: Thu Dec 6 17:57:22 2012 +0100
|
54
|
+
|
55
|
+
Sped up ItemTracker cache updating from O(n^2) to O(2n)
|
56
|
+
|
57
|
+
lib/webgen/item_tracker.rb
|
58
|
+
|
59
|
+
commit 178de203c7298b04b08479ac024c2020d9710ade
|
60
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
61
|
+
Date: Wed Dec 5 19:44:47 2012 +0100
|
62
|
+
|
63
|
+
Using the PageUtils#blocks method now directly instead of going through Node#method_missing
|
64
|
+
|
65
|
+
lib/webgen/path_handler/page_utils.rb
|
66
|
+
test/webgen/path_handler/test_page_utils.rb
|
67
|
+
|
68
|
+
commit 8a7b0b4ed1679b79598f5533878890ae2a5ee527
|
69
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
70
|
+
Date: Wed Dec 5 19:41:55 2012 +0100
|
71
|
+
|
72
|
+
Fixed API doc typo
|
73
|
+
|
74
|
+
lib/webgen/path_handler/base.rb
|
75
|
+
|
76
|
+
commit c95dc3ec82a1b21f8f85304763821d2beb3b93ed
|
77
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
78
|
+
Date: Mon Dec 3 22:11:28 2012 +0100
|
79
|
+
|
80
|
+
Made BundleLoader more robust against YAML errors
|
81
|
+
|
82
|
+
lib/webgen/bundle_loader.rb
|
83
|
+
|
84
|
+
commit b8707c9cf4532811eaa615265002f3c4b1fab808
|
85
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
86
|
+
Date: Mon Dec 3 22:04:16 2012 +0100
|
87
|
+
|
88
|
+
More useful YAML error messages for path handler virtual
|
89
|
+
|
90
|
+
lib/webgen/path_handler/virtual.rb
|
91
|
+
test/webgen/path_handler/test_virtual.rb
|
92
|
+
|
93
|
+
commit 0a195f9f32ccd932827f9bfc453ccb1537533b7d
|
94
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
95
|
+
Date: Mon Dec 3 20:39:25 2012 +0100
|
96
|
+
|
97
|
+
Added CLI command 'show tree' for showing the node tree
|
98
|
+
|
99
|
+
This is useful for showing what destination paths would be
|
100
|
+
created and to review the meta information for a node in
|
101
|
+
case something one doesn't get the expected output.
|
102
|
+
|
103
|
+
lib/webgen/cli/show_command.rb
|
104
|
+
lib/webgen/cli/show_tree_command.rb
|
105
|
+
|
106
|
+
commit ca6012104ea8d3278f4ce10cc2274985d84db5b6
|
107
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
108
|
+
Date: Mon Dec 3 20:03:36 2012 +0100
|
109
|
+
|
110
|
+
Removed unused instance variable
|
111
|
+
|
112
|
+
lib/webgen/cli/show_config_command.rb
|
113
|
+
|
114
|
+
commit 17b3ac8dd84b3d6a70473a29e047ae988a918fba
|
115
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
116
|
+
Date: Mon Dec 3 20:03:23 2012 +0100
|
117
|
+
|
118
|
+
Refactored code from the 'show deps' command
|
119
|
+
|
120
|
+
* Each item tracker extension is now responsible for returning
|
121
|
+
a human readable representation of its items
|
122
|
+
* ItemTracker#cached_items can now be used to get the information
|
123
|
+
about the cached items for each node
|
124
|
+
|
125
|
+
lib/webgen/cli/show_dependencies_command.rb
|
126
|
+
lib/webgen/item_tracker.rb
|
127
|
+
lib/webgen/item_tracker/file.rb
|
128
|
+
lib/webgen/item_tracker/missing_node.rb
|
129
|
+
lib/webgen/item_tracker/node_content.rb
|
130
|
+
lib/webgen/item_tracker/node_meta_info.rb
|
131
|
+
lib/webgen/item_tracker/nodes.rb
|
132
|
+
|
133
|
+
commit a474102f023d96a2c12f3c43f201bf5b008b3de6
|
134
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
135
|
+
Date: Mon Dec 3 19:58:32 2012 +0100
|
136
|
+
|
137
|
+
Optimized ItemTracker#node_referenced?
|
138
|
+
|
139
|
+
Getting all referenced nodes is now done only once per generation
|
140
|
+
pass which shortens the overall time needed for this operation.
|
141
|
+
|
142
|
+
This also meant changing the #node_referenced? method on item
|
143
|
+
tracker extensions to #referenced_nodes.
|
144
|
+
|
145
|
+
lib/webgen/item_tracker.rb
|
146
|
+
lib/webgen/item_tracker/file.rb
|
147
|
+
lib/webgen/item_tracker/missing_node.rb
|
148
|
+
lib/webgen/item_tracker/node_content.rb
|
149
|
+
lib/webgen/item_tracker/node_meta_info.rb
|
150
|
+
lib/webgen/item_tracker/nodes.rb
|
151
|
+
test/webgen/item_tracker/test_file.rb
|
152
|
+
test/webgen/item_tracker/test_missing_node.rb
|
153
|
+
test/webgen/item_tracker/test_node_content.rb
|
154
|
+
test/webgen/item_tracker/test_node_meta_info.rb
|
155
|
+
test/webgen/item_tracker/test_nodes.rb
|
156
|
+
test/webgen/test_item_tracker.rb
|
157
|
+
|
158
|
+
commit a6a283e78abe8eef827dcae5a793d6ebcea931d8
|
159
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
160
|
+
Date: Sun Dec 2 19:30:36 2012 +0100
|
161
|
+
|
162
|
+
Renamed #changed? to #item_changed? for item tracker extension classes
|
163
|
+
|
164
|
+
lib/webgen/item_tracker.rb
|
165
|
+
lib/webgen/item_tracker/file.rb
|
166
|
+
lib/webgen/item_tracker/missing_node.rb
|
167
|
+
lib/webgen/item_tracker/node_content.rb
|
168
|
+
lib/webgen/item_tracker/node_meta_info.rb
|
169
|
+
lib/webgen/item_tracker/nodes.rb
|
170
|
+
test/webgen/item_tracker/test_file.rb
|
171
|
+
test/webgen/item_tracker/test_missing_node.rb
|
172
|
+
test/webgen/item_tracker/test_node_content.rb
|
173
|
+
test/webgen/item_tracker/test_node_meta_info.rb
|
174
|
+
test/webgen/item_tracker/test_nodes.rb
|
175
|
+
test/webgen/test_item_tracker.rb
|
176
|
+
|
177
|
+
commit f37cc3eb345589ee6ad4a4d998edc887c08b53ef
|
178
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
179
|
+
Date: Sun Dec 2 10:56:37 2012 +0100
|
180
|
+
|
181
|
+
Changed node finder filter :levels to :absolute_levels, introduced new :levels option
|
182
|
+
|
183
|
+
* :absolute_levels does what :levels did before
|
184
|
+
* :levels can now be used to specify which levels of the returned
|
185
|
+
node hierarchy should be used
|
186
|
+
|
187
|
+
lib/webgen/node_finder.rb
|
188
|
+
test/webgen/test_node_finder.rb
|
189
|
+
|
190
|
+
commit 80fcb9926673f5a374a19900c91f5a5dcec184ed
|
191
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
192
|
+
Date: Sat Dec 1 12:56:58 2012 +0100
|
193
|
+
|
194
|
+
Changed tag name of tag.execute_command and tag.meta_info
|
195
|
+
|
196
|
+
* tag.execute_command: execute_cmd → execute_command
|
197
|
+
* tag.meta_info: additional name meta_info
|
198
|
+
|
199
|
+
lib/webgen/bundle/built-in/info.yaml
|
200
|
+
lib/webgen/bundle/built-in/init.rb
|
201
|
+
|
202
|
+
commit 0d012e6f13263b4aaf79dfb072177d90c9d11074
|
203
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
204
|
+
Date: Sat Dec 1 12:55:44 2012 +0100
|
205
|
+
|
206
|
+
Meta info 'sort_info' and 'lang' are now only set on Path if needed
|
207
|
+
|
208
|
+
lib/webgen/path.rb
|
209
|
+
|
210
|
+
commit e3c38c0252dc58aac5395fbf05b75ce52eded61c
|
211
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
212
|
+
Date: Sat Dec 1 12:54:18 2012 +0100
|
213
|
+
|
214
|
+
Added Context::HtmlHead#meta for setting meta tags
|
215
|
+
|
216
|
+
This information is used in turn by content processor html_head
|
217
|
+
to actually create the meta tags.
|
218
|
+
|
219
|
+
lib/webgen/context/html_head.rb
|
220
|
+
test/webgen/test_context.rb
|
221
|
+
|
222
|
+
commit 7c630cca8fc07dd940bb1061270842fa6ae8a62a
|
223
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
224
|
+
Date: Sat Dec 1 08:47:12 2012 +0100
|
225
|
+
|
226
|
+
Changed :link_text to 'link_text' because symbols don't work nicely together with YAML
|
227
|
+
|
228
|
+
data/webgen/passive_sources/templates/tag.template
|
229
|
+
lib/webgen/node.rb
|
230
|
+
test/webgen/test_node.rb
|
231
|
+
|
232
|
+
commit 68daf9ead8ddd99e271a88f5094230742e88b0e4
|
233
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
234
|
+
Date: Tue Nov 27 19:01:23 2012 +0100
|
235
|
+
|
236
|
+
Changed parameter :config_base to :config_prefix for tag extensions
|
237
|
+
|
238
|
+
lib/webgen/tag.rb
|
239
|
+
test/webgen/test_tag.rb
|
240
|
+
|
241
|
+
commit afb5ae559f8bbbd2cc26cfb47c0a1dd6db9f45bc
|
242
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
243
|
+
Date: Sun Nov 25 10:14:34 2012 +0100
|
244
|
+
|
245
|
+
Updated content processor tikz
|
246
|
+
|
247
|
+
* The LaTeX template can now be customized using a new option
|
248
|
+
on a per-file basis.
|
249
|
+
* Better temp file naming
|
250
|
+
* Better error handling
|
251
|
+
|
252
|
+
data/webgen/passive_sources/templates/tikz.template
|
253
|
+
lib/webgen/bundle/built-in/init.rb
|
254
|
+
lib/webgen/content_processor/tikz.rb
|
255
|
+
test/webgen/content_processor/test_tikz.rb
|
256
|
+
|
257
|
+
commit 3ac9435813b30ba160671557c7509b63762b8d0a
|
258
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
259
|
+
Date: Sun Nov 25 09:40:24 2012 +0100
|
260
|
+
|
261
|
+
Fixed problem with modified meta info hash
|
262
|
+
|
263
|
+
The hash needs to be dupped so that checking if a path would
|
264
|
+
create an already existing node works correctly.
|
265
|
+
|
266
|
+
lib/webgen/path_handler/base.rb
|
267
|
+
|
268
|
+
commit 44c4642826c0151d6d7d5d8ed7c610f3200b24fc
|
269
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
270
|
+
Date: Sun Nov 25 09:39:07 2012 +0100
|
271
|
+
|
272
|
+
Fixed invocation of PathHandler#create_secondary_nodes after changing its parameter list
|
273
|
+
|
274
|
+
lib/webgen/tag/tikz.rb
|
275
|
+
test/webgen/tag/test_tikz.rb
|
276
|
+
|
277
|
+
commit 927ec3c14ae33da0d3be5c65756ad05c0f5bd62f
|
278
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
279
|
+
Date: Sun Nov 25 09:37:20 2012 +0100
|
280
|
+
|
281
|
+
Link attributes in Node#link_to are now taken from the proxy node instead of the original one
|
282
|
+
|
283
|
+
lib/webgen/node.rb
|
284
|
+
test/webgen/tag/test_link.rb
|
285
|
+
test/webgen/test_node.rb
|
286
|
+
|
287
|
+
commit 6f257a69d1f9c795b60cc58b4cccb9e3f3332f99
|
288
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
289
|
+
Date: Sun Nov 25 09:10:18 2012 +0100
|
290
|
+
|
291
|
+
ERB::Util methods are now available when using content processor ruby
|
292
|
+
|
293
|
+
lib/webgen/content_processor/ruby.rb
|
294
|
+
|
295
|
+
commit ee0dc8aa7a7d958528b30095809685344ac384da
|
296
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
297
|
+
Date: Sun Nov 25 09:09:23 2012 +0100
|
298
|
+
|
299
|
+
Added new option content_processor.erb.trim_mode
|
300
|
+
|
301
|
+
lib/webgen/bundle/built-in/init.rb
|
302
|
+
lib/webgen/content_processor/erb.rb
|
303
|
+
test/webgen/content_processor/test_erb.rb
|
304
|
+
|
305
|
+
commit 2e52e6ea268b0872a0be9624ec713abe51103e8c
|
306
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
307
|
+
Date: Sun Nov 25 09:06:14 2012 +0100
|
308
|
+
|
309
|
+
Fixed summary field of content processor blocks
|
310
|
+
|
311
|
+
lib/webgen/bundle/built-in/info.yaml
|
312
|
+
|
313
|
+
commit a8a09de364b4979cbfc9eef16750d3bc7b36ee1f
|
314
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
315
|
+
Date: Sun Nov 25 09:05:39 2012 +0100
|
316
|
+
|
317
|
+
Fixed configuration option summaries so that only single quotation marks are used everywhere
|
318
|
+
|
319
|
+
lib/webgen/bundle/built-in/init.rb
|
320
|
+
|
321
|
+
commit 4feacaafaf356c8e1dbb7d061453334d8b8072f4
|
322
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
323
|
+
Date: Sun Nov 25 09:04:18 2012 +0100
|
324
|
+
|
325
|
+
Better error message
|
326
|
+
|
327
|
+
lib/webgen/tag.rb
|
328
|
+
|
329
|
+
commit 2d64bd13dbc5b837f28eefe8287cae719ccd1ffd
|
330
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
331
|
+
Date: Sun Nov 25 09:02:24 2012 +0100
|
332
|
+
|
333
|
+
Fixed file names of rdoc and redcloth content processor so that auto loading works
|
334
|
+
|
335
|
+
lib/webgen/content_processor/r_doc.rb
|
336
|
+
lib/webgen/content_processor/rdoc.rb
|
337
|
+
lib/webgen/content_processor/red_cloth.rb
|
338
|
+
lib/webgen/content_processor/redcloth.rb
|
339
|
+
test/webgen/content_processor/test_r_doc.rb
|
340
|
+
test/webgen/content_processor/test_rdoc.rb
|
341
|
+
test/webgen/content_processor/test_red_cloth.rb
|
342
|
+
test/webgen/content_processor/test_redcloth.rb
|
343
|
+
|
344
|
+
commit 773a93adb937bf53deb70edc7a8b2bc203e59d76
|
345
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
346
|
+
Date: Sun Nov 18 11:55:49 2012 +0100
|
347
|
+
|
348
|
+
Fixed relocatable() Sass function
|
349
|
+
|
350
|
+
* The return value was not correct (it was wrapped with url() and
|
351
|
+
quotes). Now only the path itself is returned and properly marked
|
352
|
+
as Sass string (not Sass literal).
|
353
|
+
|
354
|
+
* Fixed nil error that occurs when options[:filename] points to a
|
355
|
+
non-existing node.
|
356
|
+
|
357
|
+
lib/webgen/content_processor/sass.rb
|
358
|
+
test/webgen/content_processor/test_sass.rb
|
359
|
+
|
360
|
+
commit 3950509d6346b18be546947d81e65af05f8e3634
|
361
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
362
|
+
Date: Sat Nov 17 09:52:40 2012 +0100
|
363
|
+
|
364
|
+
Small doc fixes
|
365
|
+
|
366
|
+
README.md
|
367
|
+
|
368
|
+
commit a3bd00871305cfed8bb447c429efaf414eea0412
|
369
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
370
|
+
Date: Sat Nov 17 09:47:01 2012 +0100
|
371
|
+
|
372
|
+
Updated central API doc page
|
373
|
+
|
374
|
+
* Added documentation for missing blackboard messages
|
375
|
+
* Some other small enhancements
|
376
|
+
|
377
|
+
API.rdoc
|
378
|
+
|
379
|
+
commit 97231bec462093b8d4d8d0d50b6bd8bc720f818b
|
380
|
+
Author: Thomas Leitner <t_leitner@gmx.at>
|
381
|
+
Date: Fri Nov 16 23:18:12 2012 +0100
|
382
|
+
|
383
|
+
Fixed problem with :missing_node item tracker
|
384
|
+
|
385
|
+
Due to the changes in the generation algorithm the missing node
|
386
|
+
tracker was broken (because nodes get reused now instead of
|
387
|
+
deleted and recreated)
|
388
|
+
|
389
|
+
lib/webgen/item_tracker/missing_node.rb
|
390
|
+
lib/webgen/path_handler/base.rb
|
391
|
+
|
1
392
|
commit e1db7d82f175692dc5a2210f9df20bd077118526
|
2
393
|
Author: Thomas Leitner <t_leitner@gmx.at>
|
3
394
|
Date: Sun Nov 11 09:24:16 2012 +0100
|