nagoro 2009.05 → 2013.03
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/AUTHORS +6 -0
- data/CHANGELOG +161 -93
- data/MANIFEST +2 -3
- data/README.markdown +56 -4
- data/Rakefile +2 -3
- data/example/morpher.nag +2 -2
- data/lib/nagoro/pipe/base.rb +7 -15
- data/lib/nagoro/pipe/element.rb +23 -0
- data/lib/nagoro/pipe/include.rb +9 -0
- data/lib/nagoro/pipe/morph.rb +1 -1
- data/lib/nagoro/scanner.rb +28 -9
- data/lib/nagoro/template.rb +5 -4
- data/lib/nagoro/version.rb +1 -1
- data/nagoro.gemspec +10 -12
- data/spec/example/hello.rb +1 -1
- data/spec/helper.rb +2 -2
- data/spec/nagoro/listener/base.rb +1 -1
- data/spec/nagoro/pipe/compile.rb +19 -1
- data/spec/nagoro/pipe/element.rb +6 -1
- data/spec/nagoro/pipe/include.rb +1 -1
- data/spec/nagoro/pipe/instruction.rb +1 -1
- data/spec/nagoro/pipe/morph.rb +1 -1
- data/spec/nagoro/pipe/tidy.rb +1 -1
- data/spec/nagoro/template.rb +12 -1
- data/tasks/authors.rake +30 -0
- data/tasks/bacon.rake +42 -23
- data/tasks/gem.rake +2 -5
- data/tasks/release.rake +21 -32
- metadata +23 -34
- data/tasks/gem_installer.rake +0 -76
- data/tasks/grancher.rake +0 -12
- data/tasks/install_dependencies.rake +0 -6
data/AUTHORS
ADDED
data/CHANGELOG
CHANGED
|
@@ -1,444 +1,512 @@
|
|
|
1
|
-
[
|
|
1
|
+
[7bad399 | 2013-03-22 14:03:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
2
|
+
|
|
3
|
+
* Version 2013.03
|
|
4
|
+
|
|
5
|
+
[b6d4b44 | 2013-03-22 14:02:43 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
6
|
+
|
|
7
|
+
* sync with latest rake tasks
|
|
8
|
+
|
|
9
|
+
[f8d698b | 2013-03-22 13:56:21 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
10
|
+
|
|
11
|
+
* fix typo for filter morph
|
|
12
|
+
|
|
13
|
+
[1251f18 | 2010-12-27 06:41:13 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
14
|
+
|
|
15
|
+
* for morph was renamed to foreach.
|
|
16
|
+
|
|
17
|
+
[651b413 | 2010-09-05 04:23:45 UTC] Petr Kovar <pejuko@gmail.com>
|
|
18
|
+
|
|
19
|
+
* new failing tests and fixes added
|
|
20
|
+
|
|
21
|
+
Three cases:
|
|
22
|
+
1. #<tag>
|
|
23
|
+
2. #< in the middle of text
|
|
24
|
+
3. <option value="a" #{'selected="selected"'}>A</option>
|
|
25
|
+
|
|
26
|
+
[69e25cc | 2010-09-05 04:15:30 UTC] Petr Kovar <pejuko@gmail.com>
|
|
27
|
+
|
|
28
|
+
* fix tests for previous bug
|
|
29
|
+
|
|
30
|
+
this patch deletes all previous test I've created because they
|
|
31
|
+
contained errors. There is now only one test but it adress the
|
|
32
|
+
real problem.
|
|
33
|
+
|
|
34
|
+
The problem is when inside element is text containing in the middle
|
|
35
|
+
ruby substitution.
|
|
36
|
+
|
|
37
|
+
[5879e65 | 2010-01-20 20:34:46 UTC] Petr Kovar <pejuko@gmail.com>
|
|
38
|
+
|
|
39
|
+
* adding failing tests for nested functions with hash argument
|
|
40
|
+
|
|
41
|
+
[93d2941 | 2010-01-20 19:28:55 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
42
|
+
|
|
43
|
+
* Simplify the instance-variable setting
|
|
44
|
+
|
|
45
|
+
[c4d0186 | 2009-10-16 00:10:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
46
|
+
|
|
47
|
+
* Allow pipes that only respond to #call
|
|
48
|
+
|
|
49
|
+
[a18687e | 2009-07-06 18:13:40 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
50
|
+
|
|
51
|
+
* Add quick summary of future plans
|
|
52
|
+
|
|
53
|
+
[4b6a58c | 2009-07-06 13:12:26 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
54
|
+
|
|
55
|
+
* Absolute paths in specs for ruby 1.9.2
|
|
56
|
+
|
|
57
|
+
[9483edc | 2009-07-06 13:11:21 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
58
|
+
|
|
59
|
+
* Adding the #tag callback to indicate closed tags without a content node, this allows us to process well formed XML and HTML
|
|
60
|
+
|
|
61
|
+
[bb4fef3 | 2009-07-06 07:28:12 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
62
|
+
|
|
63
|
+
* Add failing spec as suggested by lars olsson
|
|
64
|
+
|
|
65
|
+
[8f7ed2a | 2009-05-16 22:46:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
66
|
+
|
|
67
|
+
* Don't fail when there's a '=' inside the tag parameter
|
|
68
|
+
|
|
69
|
+
[821c515 | 2009-05-06 22:43:18 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
2
70
|
|
|
3
71
|
* Version 2009.05
|
|
4
72
|
|
|
5
|
-
[e4e1987 |
|
|
73
|
+
[e4e1987 | 2009-04-06 08:21:44 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
6
74
|
|
|
7
75
|
* Don't try to touch comments
|
|
8
76
|
|
|
9
|
-
[d799fc6 |
|
|
77
|
+
[d799fc6 | 2009-04-06 08:21:26 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
10
78
|
|
|
11
79
|
* Only run specs when running specs...
|
|
12
80
|
|
|
13
|
-
[495e064 |
|
|
81
|
+
[495e064 | 2009-04-01 09:03:45 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
14
82
|
|
|
15
83
|
* Remove Binding#eval usage to be compatible with 1.8.6
|
|
16
84
|
|
|
17
|
-
[677557f |
|
|
85
|
+
[677557f | 2009-03-28 15:55:41 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
18
86
|
|
|
19
87
|
* Remove the bench script, we only have one engine now
|
|
20
88
|
|
|
21
|
-
[a4101a3 |
|
|
89
|
+
[a4101a3 | 2009-03-28 15:55:01 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
22
90
|
|
|
23
91
|
* Version 2009.03.28
|
|
24
92
|
|
|
25
|
-
[76b1cf5 |
|
|
93
|
+
[76b1cf5 | 2009-03-28 15:54:45 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
26
94
|
|
|
27
95
|
* Refactor rake tasks and manage them with raku
|
|
28
96
|
|
|
29
|
-
[09002ef |
|
|
97
|
+
[09002ef | 2009-03-24 19:51:35 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
30
98
|
|
|
31
99
|
* Add <?end ?> instruction for people too lazy to type <?r end ?>
|
|
32
100
|
|
|
33
|
-
[d54c708 |
|
|
101
|
+
[d54c708 | 2009-03-24 19:47:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
34
102
|
|
|
35
103
|
* Nicer output of non-handled instructions
|
|
36
104
|
|
|
37
|
-
[bf6cc5d |
|
|
105
|
+
[bf6cc5d | 2009-03-24 19:46:33 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
38
106
|
|
|
39
107
|
* Improve error handling
|
|
40
108
|
|
|
41
|
-
[c8e623b |
|
|
109
|
+
[c8e623b | 2009-03-24 19:46:12 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
42
110
|
|
|
43
111
|
* Fix a bug where nagoro would get stuck on double quotes inside ruby interpolation
|
|
44
112
|
|
|
45
|
-
[5801e2a |
|
|
113
|
+
[5801e2a | 2009-03-21 16:35:53 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
46
114
|
|
|
47
115
|
* Update gemspec to Version 2009.03.21
|
|
48
116
|
|
|
49
|
-
[8c30926 |
|
|
117
|
+
[8c30926 | 2009-03-21 16:35:16 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
50
118
|
|
|
51
119
|
* Run specs more verbose
|
|
52
120
|
|
|
53
|
-
[85b39db |
|
|
121
|
+
[85b39db | 2009-03-21 16:35:02 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
54
122
|
|
|
55
123
|
* Produce cleaner gemspec
|
|
56
124
|
|
|
57
|
-
[f7ef576 |
|
|
125
|
+
[f7ef576 | 2009-03-21 16:25:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
58
126
|
|
|
59
127
|
* Update README
|
|
60
128
|
|
|
61
|
-
[3708543 |
|
|
129
|
+
[3708543 | 2009-03-21 16:25:42 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
62
130
|
|
|
63
131
|
* Limit the lookup for valid filenames to strings < 1024 chars
|
|
64
132
|
|
|
65
|
-
[a4a60ef |
|
|
133
|
+
[a4a60ef | 2009-03-21 16:25:11 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
66
134
|
|
|
67
135
|
* Add Nagoro::tidy_render
|
|
68
136
|
|
|
69
|
-
[bda0670 |
|
|
137
|
+
[bda0670 | 2009-03-21 16:02:28 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
70
138
|
|
|
71
139
|
* Minor style change
|
|
72
140
|
|
|
73
|
-
[ebf28ed |
|
|
141
|
+
[ebf28ed | 2009-03-21 16:02:17 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
74
142
|
|
|
75
143
|
* Adding Nagoro::Tidy and Nagoro::Template#tidy_result, having Tidy as a pipe is not suitable if the output contains ruby
|
|
76
144
|
|
|
77
|
-
[800939a |
|
|
145
|
+
[800939a | 2009-03-21 15:48:41 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
78
146
|
|
|
79
147
|
* Use autoload for pipes
|
|
80
148
|
|
|
81
|
-
[665969c |
|
|
149
|
+
[665969c | 2009-03-21 15:33:27 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
82
150
|
|
|
83
151
|
* Add Nagoro::Pipe::Tidy with spec, *NIX only
|
|
84
152
|
|
|
85
|
-
[e99dd5c |
|
|
153
|
+
[e99dd5c | 2009-03-09 20:32:21 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
86
154
|
|
|
87
155
|
* Avoid using nil as @file
|
|
88
156
|
|
|
89
|
-
[d2495f9 |
|
|
157
|
+
[d2495f9 | 2009-03-09 20:32:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
90
158
|
|
|
91
159
|
* Avoid warnings in ruby 1.9 when matching unicode
|
|
92
160
|
|
|
93
|
-
[ff00288 |
|
|
161
|
+
[ff00288 | 2009-03-09 19:45:15 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
94
162
|
|
|
95
163
|
* Add specs for fixed bugs
|
|
96
164
|
|
|
97
|
-
[e30a601 |
|
|
165
|
+
[e30a601 | 2009-03-09 19:18:21 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
98
166
|
|
|
99
167
|
* Fix bug with nested {} inside #{}
|
|
100
168
|
|
|
101
|
-
[189e403 |
|
|
169
|
+
[189e403 | 2009-03-09 18:14:07 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
102
170
|
|
|
103
171
|
* Fix bug where ruby interpolation wouldn't start when indented
|
|
104
172
|
|
|
105
|
-
[294c5d6 |
|
|
173
|
+
[294c5d6 | 2009-03-09 18:12:47 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
106
174
|
|
|
107
175
|
* Add :line option and use :filename instead of :file
|
|
108
176
|
|
|
109
|
-
[eb660f1 |
|
|
177
|
+
[eb660f1 | 2009-02-06 13:40:25 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
110
178
|
|
|
111
179
|
* the 'for' morph is now called 'foreach' to avoid collision with the <label for=''> property
|
|
112
180
|
|
|
113
|
-
[681c9bf |
|
|
181
|
+
[681c9bf | 2009-02-06 13:39:50 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
114
182
|
|
|
115
183
|
* Update readme
|
|
116
184
|
|
|
117
|
-
[6afeec7 |
|
|
185
|
+
[6afeec7 | 2009-01-29 20:41:38 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
118
186
|
|
|
119
187
|
* Version 2009.01.29
|
|
120
188
|
|
|
121
|
-
[e35609a |
|
|
189
|
+
[e35609a | 2009-01-29 20:40:43 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
122
190
|
|
|
123
191
|
* style change
|
|
124
192
|
|
|
125
|
-
[18e1d24 |
|
|
193
|
+
[18e1d24 | 2009-01-29 20:40:28 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
126
194
|
|
|
127
195
|
* Vastly improve Scanner by subclassing StringScanner and using constants for the regular expressions
|
|
128
196
|
|
|
129
|
-
[3677263 |
|
|
197
|
+
[3677263 | 2009-01-29 20:39:51 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
130
198
|
|
|
131
199
|
* Spec for <!DOCTYPE
|
|
132
200
|
|
|
133
|
-
[c2c3dde |
|
|
201
|
+
[c2c3dde | 2008-12-27 12:37:44 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
134
202
|
|
|
135
203
|
* Enable setting passed instance variables
|
|
136
204
|
|
|
137
|
-
[b3c08e3 |
|
|
205
|
+
[b3c08e3 | 2008-12-27 12:36:58 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
138
206
|
|
|
139
207
|
* Proper error message if scanner is stuck
|
|
140
208
|
|
|
141
|
-
[b1167c0 |
|
|
209
|
+
[b1167c0 | 2008-08-14 14:04:58 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
142
210
|
|
|
143
211
|
* New implementation in place
|
|
144
212
|
|
|
145
|
-
[1ac7f42 |
|
|
213
|
+
[1ac7f42 | 2008-08-14 14:04:19 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
146
214
|
|
|
147
215
|
* New specs in place
|
|
148
216
|
|
|
149
|
-
[961a118 |
|
|
217
|
+
[961a118 | 2008-05-25 10:59:59 UTC] Fabian Buch <fabian@fabian-buch.com>
|
|
150
218
|
|
|
151
219
|
* correct firstname of Kashia
|
|
152
220
|
|
|
153
|
-
[2e1c268 |
|
|
221
|
+
[2e1c268 | 2008-05-18 01:21:08 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
154
222
|
|
|
155
223
|
* Add <?h ?> PI, wraps instruction in h()
|
|
156
224
|
|
|
157
|
-
[58917ca |
|
|
225
|
+
[58917ca | 2008-05-18 01:11:15 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
158
226
|
|
|
159
227
|
* Attempt at making html entities work in libxml
|
|
160
228
|
|
|
161
|
-
[5c19d43 |
|
|
229
|
+
[5c19d43 | 2008-05-18 01:10:56 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
162
230
|
|
|
163
231
|
* Refactor of engine selection and spec runner
|
|
164
232
|
|
|
165
|
-
[56a891f |
|
|
233
|
+
[56a891f | 2008-05-15 12:06:42 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
166
234
|
|
|
167
235
|
* Adding gemspec task and gemspec
|
|
168
236
|
|
|
169
|
-
[f00967f |
|
|
237
|
+
[f00967f | 2008-05-15 08:50:09 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
170
238
|
|
|
171
239
|
* Update intro in readme
|
|
172
240
|
|
|
173
|
-
[9845d05 |
|
|
241
|
+
[9845d05 | 2008-05-15 08:39:22 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
174
242
|
|
|
175
243
|
* Put /doc/README at /README.markdown
|
|
176
244
|
|
|
177
|
-
[1952b97 |
|
|
245
|
+
[1952b97 | 2008-05-15 08:38:34 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
178
246
|
|
|
179
247
|
* Update doc/README [git, engines]
|
|
180
248
|
|
|
181
|
-
[f83d904 |
|
|
249
|
+
[f83d904 | 2008-05-15 08:05:11 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
182
250
|
|
|
183
251
|
* Bump version
|
|
184
252
|
|
|
185
|
-
[575127a |
|
|
253
|
+
[575127a | 2008-05-15 08:02:52 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
186
254
|
|
|
187
255
|
* Give more specific output on engine in spec desc
|
|
188
256
|
|
|
189
|
-
[d9ca188 |
|
|
257
|
+
[d9ca188 | 2008-05-15 08:02:22 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
190
258
|
|
|
191
259
|
* Change spec order to StringScanner first
|
|
192
260
|
|
|
193
|
-
[f7bc3e3 |
|
|
261
|
+
[f7bc3e3 | 2008-05-15 08:02:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
194
262
|
|
|
195
263
|
* The map made specs fail due to missing whitespace
|
|
196
264
|
|
|
197
|
-
[2ddd9c5 |
|
|
265
|
+
[2ddd9c5 | 2008-05-15 07:55:29 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
198
266
|
|
|
199
267
|
* Change default engine to StringScanner
|
|
200
268
|
|
|
201
|
-
[3b069c8 |
|
|
269
|
+
[3b069c8 | 2008-05-15 07:55:17 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
202
270
|
|
|
203
271
|
* Add spec/example
|
|
204
272
|
|
|
205
|
-
[427c926 |
|
|
273
|
+
[427c926 | 2008-05-15 07:38:46 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
206
274
|
|
|
207
275
|
* Another minor improvment by going inject => each
|
|
208
276
|
|
|
209
|
-
[f363693 |
|
|
277
|
+
[f363693 | 2008-05-15 07:37:18 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
210
278
|
|
|
211
279
|
* Not using inject improves performance 2x
|
|
212
280
|
|
|
213
|
-
[1f2ece3 |
|
|
281
|
+
[1f2ece3 | 2008-05-15 07:31:22 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
214
282
|
|
|
215
283
|
* Remove old specs
|
|
216
284
|
|
|
217
|
-
[211a8cf |
|
|
285
|
+
[211a8cf | 2008-05-15 07:29:13 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
218
286
|
|
|
219
287
|
* Update README
|
|
220
288
|
|
|
221
|
-
[fd08ea5 |
|
|
289
|
+
[fd08ea5 | 2008-05-15 07:28:35 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
222
290
|
|
|
223
291
|
* Switch from rspec to bacon
|
|
224
292
|
|
|
225
|
-
[8d89b88 |
|
|
293
|
+
[8d89b88 | 2007-12-25 11:28:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
226
294
|
|
|
227
295
|
* Adding StringScanner wrapper, fastest and most flexible so far, but might need more patches.
|
|
228
296
|
|
|
229
297
|
darcs-hash:20071225122823-cbc08-e57296c7e263f0a7788715835a4d9752eae30fd3.gz
|
|
230
298
|
|
|
231
|
-
[51887e0 |
|
|
299
|
+
[51887e0 | 2007-12-25 11:27:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
232
300
|
|
|
233
301
|
* Remove the useless wrap/libxml and replace with the libxml reader wrap
|
|
234
302
|
|
|
235
303
|
darcs-hash:20071225122738-cbc08-af7cabfc5e020a22c0e31e505243187877aa4386.gz
|
|
236
304
|
|
|
237
|
-
[5fffb38 |
|
|
305
|
+
[5fffb38 | 2007-12-21 03:52:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
238
306
|
|
|
239
307
|
* Snapshot of rewrite of specs and refactoring
|
|
240
308
|
|
|
241
309
|
darcs-hash:20071221045221-cbc08-fdeeb5832f0b9351a2b39a1983009b5261b9a4c7.gz
|
|
242
310
|
|
|
243
|
-
[112f8b9 |
|
|
311
|
+
[112f8b9 | 2007-12-18 04:46:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
244
312
|
|
|
245
313
|
* Restructure Nagoro::Template
|
|
246
314
|
|
|
247
315
|
darcs-hash:20071218054639-cbc08-f3a1c173088c0a4c27f7df86fb1f7256b26d02ae.gz
|
|
248
316
|
|
|
249
|
-
[0b0a3e8 |
|
|
317
|
+
[0b0a3e8 | 2007-12-06 13:28:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
250
318
|
|
|
251
319
|
* Finally a version with working XML::Reader, the API might need some cleanup but it's working now according to our specs.
|
|
252
320
|
|
|
253
321
|
darcs-hash:20071206142827-cbc08-dc33b35d4b673a8d8224b02b7abc667b0fd875ad.gz
|
|
254
322
|
|
|
255
|
-
[943e93d |
|
|
323
|
+
[943e93d | 2007-12-05 04:17:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
256
324
|
|
|
257
325
|
* Slowly implementing XML::Reader Patch
|
|
258
326
|
|
|
259
327
|
darcs-hash:20071205051740-cbc08-f0366a8f85f91c94a90ef63337fd128b093660ff.gz
|
|
260
328
|
|
|
261
|
-
[d078f19 |
|
|
329
|
+
[d078f19 | 2007-12-04 05:48:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
262
330
|
|
|
263
331
|
* First attempts of wrapping XML::Reader
|
|
264
332
|
|
|
265
333
|
darcs-hash:20071204064852-cbc08-bfb57da05fa2353d5c35bcaea7ad6b3f44a3220b.gz
|
|
266
334
|
|
|
267
|
-
[570dd8b |
|
|
335
|
+
[570dd8b | 2007-12-03 05:11:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
268
336
|
|
|
269
337
|
* Debugging DOCTYPE handling with and without <?xml?>
|
|
270
338
|
|
|
271
339
|
darcs-hash:20071203061125-cbc08-2007c069a522989005564fc322864da8d2083a32.gz
|
|
272
340
|
|
|
273
|
-
[6a92ef4 |
|
|
341
|
+
[6a92ef4 | 2007-12-02 23:57:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
274
342
|
|
|
275
343
|
* Implement and improve proper error handling, some issues not yet resolved.
|
|
276
344
|
|
|
277
345
|
darcs-hash:20071203005742-cbc08-f78865f3319cda929239e5cb2815c98f955e43bb.gz
|
|
278
346
|
|
|
279
|
-
[c440dc8 |
|
|
347
|
+
[c440dc8 | 2007-11-30 12:09:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
280
348
|
|
|
281
349
|
* Major refactor for Pipe::Morpher, it's now called Pipe::Morph, sticking with the singular name of other pipes, written docs about syntax and usage, easier configuration and better implementation.
|
|
282
350
|
|
|
283
351
|
darcs-hash:20071130130957-cbc08-bb9a2d903cb27cb5f5ce6ae5d5ce889f88d6dc4e.gz
|
|
284
352
|
|
|
285
|
-
[926ec37 |
|
|
353
|
+
[926ec37 | 2007-11-30 12:06:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
286
354
|
|
|
287
355
|
* Correct titles of specs for Pipe::Instruction
|
|
288
356
|
|
|
289
357
|
darcs-hash:20071130130625-cbc08-0ebe1fccd9e6439aa6c37c762f9e2e346fef50b4.gz
|
|
290
358
|
|
|
291
|
-
[bf61a4a |
|
|
359
|
+
[bf61a4a | 2007-11-30 12:05:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
292
360
|
|
|
293
361
|
* Lots of improvments and docs for Nagoro::Pipe::Instruction, making instructions configure- and extendable.
|
|
294
362
|
|
|
295
363
|
darcs-hash:20071130130528-cbc08-b095166254bb1674adc0f78c547e0e1ea4d259d8.gz
|
|
296
364
|
|
|
297
|
-
[c52e17a |
|
|
365
|
+
[c52e17a | 2007-11-30 12:04:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
298
366
|
|
|
299
367
|
* Docs for Nagoro::Pipe::Include
|
|
300
368
|
|
|
301
369
|
darcs-hash:20071130130448-cbc08-d9dae40c1adb985e409b47e9b6d953c3c1b28410.gz
|
|
302
370
|
|
|
303
|
-
[c3a2550 |
|
|
371
|
+
[c3a2550 | 2007-11-30 12:04:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
304
372
|
|
|
305
373
|
* Docs for Nagoro::Pipe::Base
|
|
306
374
|
|
|
307
375
|
darcs-hash:20071130130427-cbc08-1c4ebb8e81483628c19087a4fc69499dad3bcf49.gz
|
|
308
376
|
|
|
309
|
-
[e384f49 |
|
|
377
|
+
[e384f49 | 2007-11-30 12:03:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
310
378
|
|
|
311
379
|
* Don't rescue in bin/nagoro, makes the interface easier and potentially more useful
|
|
312
380
|
|
|
313
381
|
darcs-hash:20071130130325-cbc08-acb12ca2ff78eac21664265239a03a4cd3811c1c.gz
|
|
314
382
|
|
|
315
|
-
[0c2b5f8 |
|
|
383
|
+
[0c2b5f8 | 2007-11-30 12:02:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
316
384
|
|
|
317
385
|
* Fix bin/nagoro
|
|
318
386
|
|
|
319
387
|
darcs-hash:20071130130223-cbc08-3adcc647e726bba0fedd962584e601d888a43ded.gz
|
|
320
388
|
|
|
321
|
-
[5a99462 |
|
|
389
|
+
[5a99462 | 2007-11-29 14:27:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
322
390
|
|
|
323
391
|
* Fixing last issues, enclose everything in <nagoro></nagoro> to avoid problems without root element.
|
|
324
392
|
|
|
325
393
|
darcs-hash:20071129152716-cbc08-680729feed7c04e83703b361aa979463784fa9c9.gz
|
|
326
394
|
|
|
327
|
-
[26916bd |
|
|
395
|
+
[26916bd | 2007-11-29 12:17:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
328
396
|
|
|
329
397
|
* Huge patch, porting Nagoro to libxml-ruby with REXML as fallback.
|
|
330
398
|
|
|
331
399
|
darcs-hash:20071129131746-cbc08-6842d1d8c81e2775d948782fb350b1c2f28abd9f.gz
|
|
332
400
|
|
|
333
|
-
[6016ccd |
|
|
401
|
+
[6016ccd | 2007-11-28 13:26:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
334
402
|
|
|
335
403
|
* Minor update to README, change pipe/include to use Kernel#open so it can be modified by open-uri and one can include other resources more easily
|
|
336
404
|
|
|
337
405
|
darcs-hash:20071128142620-cbc08-5b7ce6dd65ab11f90f4719947190a53a754e3be0.gz
|
|
338
406
|
|
|
339
|
-
[affb950 |
|
|
407
|
+
[affb950 | 2007-11-28 11:02:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
340
408
|
|
|
341
409
|
* Another update for the README
|
|
342
410
|
|
|
343
411
|
darcs-hash:20071128120208-cbc08-5f0ad11a39107d0a44ee3fb16862c755d93d8f9f.gz
|
|
344
412
|
|
|
345
|
-
[553cc85 |
|
|
413
|
+
[553cc85 | 2007-11-28 11:00:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
346
414
|
|
|
347
415
|
* Add bin/nagoro, add Nagoro::render and Nagoro::render_file, fix some bugs and improve errors. Also updated README
|
|
348
416
|
|
|
349
417
|
darcs-hash:20071128120025-cbc08-f56229e007e74fbf9c5220f0559dd60e9a65ff4b.gz
|
|
350
418
|
|
|
351
|
-
[1fc1a45 |
|
|
419
|
+
[1fc1a45 | 2007-11-28 04:07:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
352
420
|
|
|
353
421
|
* Version 0.2
|
|
354
422
|
|
|
355
423
|
darcs-hash:20071128050754-cbc08-bc9dfd2ec33bfbf47af1f96fd7b36965878ba5bb.gz
|
|
356
424
|
|
|
357
|
-
[7cf3f3f |
|
|
425
|
+
[7cf3f3f | 2007-11-28 04:07:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
358
426
|
|
|
359
427
|
* Adding stuff in /doc
|
|
360
428
|
|
|
361
429
|
darcs-hash:20071128050735-cbc08-eddd3c0cde9d7300bc505c494b398aeac357c1a7.gz
|
|
362
430
|
|
|
363
|
-
[cd58a7d |
|
|
431
|
+
[cd58a7d | 2007-11-27 22:56:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
364
432
|
|
|
365
433
|
* Listener and Transformer now live happily together in Pipe
|
|
366
434
|
|
|
367
435
|
darcs-hash:20071127235627-cbc08-87282d3ea612eb8fa637eee66dc7914205218ce7.gz
|
|
368
436
|
|
|
369
|
-
[d56fe79 |
|
|
437
|
+
[d56fe79 | 2007-11-27 03:08:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
370
438
|
|
|
371
439
|
* Fixing issues with Element, append wasn't used for instructions, adding options for render, improved some specs, added some snippets. This version of nagoro is rock-solid? :)
|
|
372
440
|
|
|
373
441
|
darcs-hash:20071127040829-cbc08-e8aab83284bcb04e7520c8c2647311025760b251.gz
|
|
374
442
|
|
|
375
|
-
[bee71dd |
|
|
443
|
+
[bee71dd | 2007-11-13 02:59:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
376
444
|
|
|
377
445
|
* Improve specsuite a bit to make it more DRY.
|
|
378
446
|
|
|
379
447
|
darcs-hash:20071113035937-cbc08-1bcd0d1211d662c543150ebc153cccf7415635b3.gz
|
|
380
448
|
|
|
381
|
-
[0083001 |
|
|
449
|
+
[0083001 | 2007-10-21 20:09:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
382
450
|
|
|
383
451
|
* Add Transformer::Localization, wrong module still.
|
|
384
452
|
|
|
385
453
|
darcs-hash:20071021220929-cbc08-a42e4501ec16dc69e26787347ebb3a76e62313ca.gz
|
|
386
454
|
|
|
387
|
-
[1928c25 |
|
|
455
|
+
[1928c25 | 2007-10-19 03:29:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
388
456
|
|
|
389
457
|
* Spec and fix for Listener::Include
|
|
390
458
|
|
|
391
459
|
darcs-hash:20071019052947-cbc08-9557ce134da73708ed98cd421aeb30505cb0e987.gz
|
|
392
460
|
|
|
393
|
-
[6a098c9 |
|
|
461
|
+
[6a098c9 | 2007-10-18 02:45:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
394
462
|
|
|
395
463
|
* Disable unescaping entities like </> to <>
|
|
396
464
|
|
|
397
465
|
darcs-hash:20071018044508-cbc08-0ac50eb5e68d35affa95bb25f104e93af5c4dd2e.gz
|
|
398
466
|
|
|
399
|
-
[af11344 |
|
|
467
|
+
[af11344 | 2007-10-17 10:48:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
400
468
|
|
|
401
469
|
* Make <br> and <hr> only </ br> and </ hr>, they don't have to open.
|
|
402
470
|
|
|
403
471
|
darcs-hash:20071017124853-cbc08-46dc32c17b2d982707f03bdfc1058940450a8a2f.gz
|
|
404
472
|
|
|
405
|
-
[488330f |
|
|
473
|
+
[488330f | 2007-10-17 02:39:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
406
474
|
|
|
407
475
|
* Minimal wrapper for specs to make darcs happy
|
|
408
476
|
|
|
409
477
|
darcs-hash:20071017043935-cbc08-56b94f355c986bb1b0cc96e095fe40c2786c76bf.gz
|
|
410
478
|
|
|
411
|
-
[691bf32 |
|
|
479
|
+
[691bf32 | 2007-10-17 02:13:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
412
480
|
|
|
413
481
|
* Add Rakefile and nagoro/version
|
|
414
482
|
|
|
415
483
|
darcs-hash:20071017041301-cbc08-641152265df1b8fc73d2fd2638344ce1fd00fc0d.gz
|
|
416
484
|
|
|
417
|
-
[30bd3dd |
|
|
485
|
+
[30bd3dd | 2007-10-16 09:59:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
418
486
|
|
|
419
487
|
* Move nagoro/render to nagoro/template and remove require for the compile listener
|
|
420
488
|
|
|
421
489
|
darcs-hash:20071016115901-cbc08-136b5ecef3ea81c9b7744c2ae7cfeec21dd9110b.gz
|
|
422
490
|
|
|
423
|
-
[3dc5ce9 |
|
|
491
|
+
[3dc5ce9 | 2007-10-16 09:58:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
424
492
|
|
|
425
493
|
* Accept multiple listeners passed as array to Template::[]
|
|
426
494
|
|
|
427
495
|
darcs-hash:20071016115803-cbc08-31314ab667f1b349106d80088f8476c3108a9e06.gz
|
|
428
496
|
|
|
429
|
-
[bc1224d |
|
|
497
|
+
[bc1224d | 2007-10-16 05:21:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
430
498
|
|
|
431
499
|
* Yet another rewrite of the API, see specs for the new coolness
|
|
432
500
|
|
|
433
501
|
darcs-hash:20071016072117-cbc08-3d8c1c73e7824cfbb5d040e9620df1fdb3dab0b7.gz
|
|
434
502
|
|
|
435
|
-
[925a1c5 |
|
|
503
|
+
[925a1c5 | 2007-10-15 10:47:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
436
504
|
|
|
437
505
|
* Changes in Render API, implemented compile as simple gsub, 5x speedup
|
|
438
506
|
|
|
439
507
|
darcs-hash:20071015124739-cbc08-3d8fd6f0a3967e7e3a4334b245a90ae64044449f.gz
|
|
440
508
|
|
|
441
|
-
[714a653 |
|
|
509
|
+
[714a653 | 2007-10-14 12:33:00 UTC] Michael Fellinger <m.fellinger@gmail.com>
|
|
442
510
|
|
|
443
511
|
* Init
|
|
444
512
|
|