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