inversion 1.1.1 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/ChangeLog +2012 -1916
- data/History.rdoc +10 -1
- data/Rakefile +3 -1
- data/bin/inversion +3 -1
- data/lib/inversion.rb +4 -4
- data/lib/inversion/command.rb +2 -1
- data/lib/inversion/exceptions.rb +4 -1
- data/lib/inversion/mixins.rb +3 -2
- data/lib/inversion/monkeypatches.rb +3 -2
- data/lib/inversion/parser.rb +2 -2
- data/lib/inversion/renderstate.rb +2 -1
- data/lib/inversion/sinatra.rb +4 -1
- data/lib/inversion/template.rb +2 -1
- data/lib/inversion/template/attrtag.rb +3 -1
- data/lib/inversion/template/begintag.rb +3 -1
- data/lib/inversion/template/calltag.rb +3 -1
- data/lib/inversion/template/codetag.rb +4 -2
- data/lib/inversion/template/commenttag.rb +3 -1
- data/lib/inversion/template/configtag.rb +3 -1
- data/lib/inversion/template/containertag.rb +2 -2
- data/lib/inversion/template/defaulttag.rb +3 -1
- data/lib/inversion/template/elsetag.rb +3 -1
- data/lib/inversion/template/elsiftag.rb +4 -3
- data/lib/inversion/template/endtag.rb +3 -3
- data/lib/inversion/template/escapetag.rb +3 -1
- data/lib/inversion/template/fortag.rb +3 -1
- data/lib/inversion/template/fragmenttag.rb +3 -1
- data/lib/inversion/template/iftag.rb +3 -1
- data/lib/inversion/template/importtag.rb +3 -1
- data/lib/inversion/template/includetag.rb +3 -1
- data/lib/inversion/template/node.rb +2 -1
- data/lib/inversion/template/pptag.rb +4 -2
- data/lib/inversion/template/publishtag.rb +3 -1
- data/lib/inversion/template/rescuetag.rb +3 -1
- data/lib/inversion/template/subscribetag.rb +3 -1
- data/lib/inversion/template/tag.rb +2 -2
- data/lib/inversion/template/textnode.rb +3 -1
- data/lib/inversion/template/timedeltatag.rb +16 -3
- data/lib/inversion/template/unlesstag.rb +3 -1
- data/lib/inversion/template/uriencodetag.rb +3 -1
- data/lib/inversion/template/yieldtag.rb +3 -1
- data/lib/inversion/tilt.rb +3 -1
- data/spec/inversion/template/pptag_spec.rb +2 -0
- data/spec/inversion/template/timedeltatag_spec.rb +7 -0
- metadata +31 -33
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 4bf9a8bf3ebb17a6c9adc78d74c6f0a57e31240f593667420f1d3ba2c1306589
|
4
|
+
data.tar.gz: be2fd78e9a7a16678e104d55f536e0c2678bbd9d275fba0c8c03458a200ad7e4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 92fd88df350740fba33c04413b4a60a2597d7d54b871303ff84e6b4cee01d43fda4498ffb3817a216753a0bb434784a6de5c8c10da926fad8a3fa1ba603ffcfa
|
7
|
+
data.tar.gz: bc4ac371b912a8453150ceffc5a5e3b398e8ce665976c0aaa20b03fb63ed39de8876e2d7c7caba0583818a1da7e311f208ef930e41c555e22716e95157cdbde2
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
data/ChangeLog
CHANGED
@@ -1,2146 +1,2242 @@
|
|
1
|
+
2019-05-31 Michael Granger <ged@FaerieMUD.org>
|
2
|
+
|
3
|
+
@ * .hgtags:
|
4
|
+
| Added tag v1.2.0 for changeset 6dab31596770
|
5
|
+
| [859351376e4f] [tip]
|
6
|
+
|
|
7
|
+
o * .hgsigs:
|
8
|
+
| Added signature for changeset 3fbb37bcd47c
|
9
|
+
| [6dab31596770] [v1.2.0]
|
10
|
+
|
|
11
|
+
o * History.rdoc, lib/inversion.rb:
|
12
|
+
| Bump the minor version, update history
|
13
|
+
| [3fbb37bcd47c]
|
14
|
+
|
|
15
|
+
2019-05-14 Michael Granger <ged@FaerieMUD.org>
|
16
|
+
|
17
|
+
o * Rakefile, inversion.gemspec:
|
18
|
+
| Make the gemspec task build prerelease gems
|
19
|
+
| [eaa4a4daa111]
|
20
|
+
|
|
21
|
+
o * .ruby-version, Rakefile, bin/inversion, experiments/benchmark-
|
22
|
+
| parser.rb, experiments/custom_enumerator.rb, experiments/demo.rb,
|
23
|
+
| experiments/dumptemplate.rb, experiments/erb_scope_bleed.rb,
|
24
|
+
| experiments/if-in-for-mintest.rb, experiments/pi_to_methods.rb,
|
25
|
+
| experiments/renderstate-scope.rb, experiments/ripper_spike.rb,
|
26
|
+
| lib/inversion.rb, lib/inversion/command.rb,
|
27
|
+
| lib/inversion/exceptions.rb, lib/inversion/mixins.rb,
|
28
|
+
| lib/inversion/monkeypatches.rb, lib/inversion/parser.rb,
|
29
|
+
| lib/inversion/renderstate.rb, lib/inversion/sinatra.rb,
|
30
|
+
| lib/inversion/template.rb, lib/inversion/template/attrtag.rb,
|
31
|
+
| lib/inversion/template/begintag.rb,
|
32
|
+
| lib/inversion/template/calltag.rb,
|
33
|
+
| lib/inversion/template/codetag.rb,
|
34
|
+
| lib/inversion/template/commenttag.rb,
|
35
|
+
| lib/inversion/template/configtag.rb,
|
36
|
+
| lib/inversion/template/containertag.rb,
|
37
|
+
| lib/inversion/template/defaulttag.rb,
|
38
|
+
| lib/inversion/template/elsetag.rb,
|
39
|
+
| lib/inversion/template/elsiftag.rb,
|
40
|
+
| lib/inversion/template/endtag.rb,
|
41
|
+
| lib/inversion/template/escapetag.rb,
|
42
|
+
| lib/inversion/template/fortag.rb,
|
43
|
+
| lib/inversion/template/fragmenttag.rb,
|
44
|
+
| lib/inversion/template/iftag.rb,
|
45
|
+
| lib/inversion/template/importtag.rb,
|
46
|
+
| lib/inversion/template/includetag.rb,
|
47
|
+
| lib/inversion/template/node.rb, lib/inversion/template/pptag.rb,
|
48
|
+
| lib/inversion/template/publishtag.rb,
|
49
|
+
| lib/inversion/template/rescuetag.rb,
|
50
|
+
| lib/inversion/template/subscribetag.rb,
|
51
|
+
| lib/inversion/template/tag.rb, lib/inversion/template/textnode.rb,
|
52
|
+
| lib/inversion/template/timedeltatag.rb,
|
53
|
+
| lib/inversion/template/unlesstag.rb,
|
54
|
+
| lib/inversion/template/uriencodetag.rb,
|
55
|
+
| lib/inversion/template/yieldtag.rb, lib/inversion/tilt.rb,
|
56
|
+
| spec/inversion/template/pptag_spec.rb:
|
57
|
+
| Add frozen string literal support
|
58
|
+
| [fc28e2e330da]
|
59
|
+
|
|
60
|
+
2019-01-11 Mahlon E. Smith <mahlon@martini.nu>
|
61
|
+
|
62
|
+
o * lib/inversion/template/timedeltatag.rb,
|
63
|
+
| spec/inversion/template/timedeltatag_spec.rb:
|
64
|
+
| Allow the timedelta tag to accept hash arguments and make
|
65
|
+
| 'decorators' optional.
|
66
|
+
| [90f3f49ec50b]
|
67
|
+
|
|
68
|
+
2017-11-16 Michael Granger <ged@FaerieMUD.org>
|
69
|
+
|
70
|
+
o * .hgtags:
|
71
|
+
| Added tag v1.1.1 for changeset 745a9b94aa25
|
72
|
+
| [a80f7c3f8133]
|
73
|
+
|
|
74
|
+
o * .hgsigs:
|
75
|
+
| Added signature for changeset 83231fd98787
|
76
|
+
| [745a9b94aa25] [v1.1.1]
|
77
|
+
|
|
78
|
+
o * History.rdoc, lib/inversion.rb:
|
79
|
+
| Bump the patch version, update history.
|
80
|
+
| [83231fd98787]
|
81
|
+
|
|
1
82
|
2017-11-13 Michael Granger <ged@FaerieMUD.org>
|
2
83
|
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
84
|
+
o * Rakefile, inversion.gemspec:
|
85
|
+
| Work around weird Bundler rdoc issues
|
86
|
+
| [1961be411589]
|
87
|
+
|
|
88
|
+
o * .gems, Rakefile, inversion.gemspec:
|
89
|
+
| Add rspec-wait to the development deps.
|
90
|
+
| [ac56a06d0299]
|
91
|
+
|
|
92
|
+
o * lib/inversion/template/fortag.rb,
|
93
|
+
| spec/inversion/template/fortag_spec.rb:
|
94
|
+
| Yield subarrays in `each` tags when there's only one block argument.
|
95
|
+
|
|
96
|
+
| Fixes #3.
|
97
|
+
| [ac244c0753fb]
|
98
|
+
|
|
99
|
+
o * spec/inversion/template/fortag_spec.rb:
|
100
|
+
| Added a spec for issue #3
|
101
|
+
| [99d541aa6a98]
|
102
|
+
|
|
103
|
+
o * .hgignore, spec/helpers.rb:
|
104
|
+
| Use rspec-wait and enable test results state
|
105
|
+
| [fab0311c3e4f]
|
106
|
+
|
|
107
|
+
o * lib/inversion/template.rb:
|
108
|
+
| Fix bug with object ID display
|
109
|
+
| [17b43e8c6d66]
|
110
|
+
|
|
111
|
+
o * .ruby-version:
|
112
|
+
| Bump Ruby version to 2.4
|
113
|
+
| [809af375dac3]
|
114
|
+
|
|
115
|
+
o * spec/inversion/template/fortag_spec.rb:
|
116
|
+
| Fix whitespace in for tag specs
|
117
|
+
| [0ab781f07550]
|
118
|
+
|
|
23
119
|
2017-08-10 Mahlon E. Smith <mahlon@laika.com>
|
24
120
|
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
121
|
+
o * .hgtags:
|
122
|
+
| Added tag v1.1.0 for changeset 9fce3682d5c8
|
123
|
+
| [efbd31ef2263]
|
124
|
+
|
|
125
|
+
o * .hgsigs:
|
126
|
+
| Added signature for changeset ee12b27acbe2
|
127
|
+
| [9fce3682d5c8] [v1.1.0]
|
128
|
+
|
|
33
129
|
2017-08-10 Mahlon E. Smith <mahlon@martini.nu>
|
34
130
|
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
131
|
+
o * History.rdoc, lib/inversion.rb:
|
132
|
+
| Bump version to 1.1.0, update history.
|
133
|
+
| [ee12b27acbe2]
|
134
|
+
|
|
39
135
|
2017-07-19 Mahlon E. Smith <mahlon@martini.nu>
|
40
136
|
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
137
|
+
o * lib/inversion/template/elsiftag.rb, lib/inversion/template/iftag.rb,
|
138
|
+
| lib/inversion/template/unlesstag.rb,
|
139
|
+
| spec/inversion/template/elsiftag_spec.rb,
|
140
|
+
| spec/inversion/template/iftag_spec.rb,
|
141
|
+
| spec/inversion/template/unlesstag_spec.rb:
|
142
|
+
| Allow the use of the '!' operator in conditional tags, logically
|
143
|
+
| inverting the evaluated body.
|
144
|
+
| [159877b3334d]
|
145
|
+
|
|
146
|
+
o * lib/inversion/template/codetag.rb,
|
147
|
+
| spec/inversion/template/codetag_spec.rb:
|
148
|
+
| Provide a method for tags to explicitly inherit patterns from their
|
149
|
+
| parents, instead of replacing them.
|
150
|
+
| [f82c480e5172]
|
151
|
+
|
|
56
152
|
2017-01-16 Michael Granger <ged@FaerieMUD.org>
|
57
153
|
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
154
|
+
o * .hgtags:
|
155
|
+
| Added tag v1.0.0 for changeset 817a3910aea8
|
156
|
+
| [3d898ac17566]
|
157
|
+
|
|
158
|
+
o * .hgsigs:
|
159
|
+
| Added signature for changeset a4b621e66915
|
160
|
+
| [817a3910aea8] [v1.0.0]
|
161
|
+
|
|
162
|
+
o * History.rdoc, Manifest.txt, inversion.gemspec, lib/inversion.rb,
|
163
|
+
| lib/inversion/command.rb:
|
164
|
+
| Bump version to 1.0.0, update history.
|
165
|
+
| [a4b621e66915]
|
166
|
+
|
|
167
|
+
o * spec/inversion/mixins_spec.rb:
|
168
|
+
| Fix a missing require in specs
|
169
|
+
| [c9b0de03e1ea]
|
170
|
+
|
|
171
|
+
o * spec/inversion/renderstate_spec.rb:
|
172
|
+
| Fix some RSpec warnings
|
173
|
+
| [1170ee8acbda]
|
174
|
+
|
|
175
|
+
o * Rakefile:
|
176
|
+
| Update dependencies
|
177
|
+
| [7d7eb92c583a]
|
178
|
+
|
|
179
|
+
o * bin/inversion, lib/inversion/command.rb:
|
180
|
+
| Pull command class out into a file of its own
|
181
|
+
| [f6e97907c0ae]
|
182
|
+
|
|
183
|
+
o * .gems, .ruby-gemset, .ruby-version, .rvm.gems, .rvmrc:
|
184
|
+
| Convert to generic version-manager files
|
185
|
+
| [cec180dfa0f0]
|
186
|
+
|
|
91
187
|
2015-10-01 Michael Granger <ged@FaerieMUD.org>
|
92
188
|
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
189
|
+
o * .hgtags:
|
190
|
+
| Added tag v0.18.0 for changeset 0ec4018edc34
|
191
|
+
| [585edc63b697]
|
192
|
+
|
|
193
|
+
o * .hgsigs:
|
194
|
+
| Added signature for changeset 644316d7a5e8
|
195
|
+
| [0ec4018edc34] [v0.18.0]
|
196
|
+
|
|
197
|
+
o * History.rdoc, lib/inversion.rb:
|
198
|
+
| Bump the minor version, update history.
|
199
|
+
| [644316d7a5e8]
|
200
|
+
|
|
201
|
+
o * lib/inversion/template.rb, spec/inversion/template_spec.rb:
|
202
|
+
| Add docs for `strict_attributes` mode.
|
203
|
+
|
|
204
|
+
| Also make the spec a bit more comprehensive.
|
205
|
+
| [29e5a7d99f19]
|
206
|
+
|
|
207
|
+
o * lib/inversion/template.rb, spec/inversion/template_spec.rb:
|
208
|
+
| Add a `strict_attributes` option for templates.
|
209
|
+
| [d826f7b0dd7a]
|
210
|
+
|
|
115
211
|
2015-07-08 Michael Granger <ged@FaerieMUD.org>
|
116
212
|
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
213
|
+
o * .hgtags:
|
214
|
+
| Added tag v0.17.4 for changeset 001e10b33bde
|
215
|
+
| [4e4ded827c75]
|
216
|
+
|
|
217
|
+
o * .hgsigs:
|
218
|
+
| Added signature for changeset 8c35dab89dcc
|
219
|
+
| [001e10b33bde] [v0.17.4]
|
220
|
+
|
|
221
|
+
o * History.rdoc, Rakefile, inversion.gemspec, lib/inversion.rb:
|
222
|
+
| Bump patch version, update history.
|
223
|
+
| [8c35dab89dcc]
|
224
|
+
|
|
129
225
|
2015-07-08 rgalanakis <rob.galanakis@gmail.com>
|
130
226
|
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
227
|
+
o * Tags.rdoc:
|
228
|
+
| Update Tags doc with more precise ?default behavior
|
229
|
+
| [acea5413919c]
|
230
|
+
|
|
231
|
+
o * lib/inversion/template/defaulttag.rb,
|
232
|
+
| spec/inversion/template/defaulttag_spec.rb:
|
233
|
+
| 'default' tag should only default for nil, not all falsy values When
|
234
|
+
| rendering something like:
|
235
|
+
|
|
236
|
+
| <?default foo to true ?><?attr foo ?>
|
237
|
+
|
|
238
|
+
| and having 'foo' set explicitly to `false`, the default was still
|
239
|
+
| being applied.
|
240
|
+
| [8851624e0c63]
|
241
|
+
|
|
146
242
|
2015-02-27 Michael Granger <ged@FaerieMUD.org>
|
147
243
|
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
244
|
+
o * .rvmrc:
|
245
|
+
| Default to Ruby 2.2 for development
|
246
|
+
| [d1c95e3a9f11]
|
247
|
+
|
|
248
|
+
o * .hgignore, .travis.yml, Gemfile, Rakefile, inversion.gemspec:
|
249
|
+
| Prep for CI builds
|
250
|
+
| [b0e2906b85a6]
|
251
|
+
|
|
156
252
|
2015-02-16 Michael Granger <ged@FaerieMUD.org>
|
157
253
|
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
254
|
+
o * .hgtags:
|
255
|
+
| Added tag v0.17.3 for changeset 6659e853fe79
|
256
|
+
| [e9bba70b27db]
|
257
|
+
|
|
258
|
+
o * .hgsigs:
|
259
|
+
| Added signature for changeset ad70311aa386
|
260
|
+
| [6659e853fe79] [v0.17.3]
|
261
|
+
|
|
262
|
+
o * .hgignore, History.rdoc, inversion.gemspec, lib/inversion.rb:
|
263
|
+
| Bump the patch version, update gemspec and history.
|
264
|
+
| [ad70311aa386]
|
265
|
+
|
|
266
|
+
o * lib/inversion/renderstate.rb:
|
267
|
+
| Re-comment the node-dumper logging message in the RenderState
|
268
|
+
| [036377e685f6]
|
269
|
+
|
|
270
|
+
o * Tags.rdoc:
|
271
|
+
| Updated tag docs
|
272
|
+
| [a19632aee7af]
|
273
|
+
|
|
178
274
|
2015-01-22 Michael Granger <ged@FaerieMUD.org>
|
179
275
|
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
276
|
+
o * .hgtags:
|
277
|
+
| Added tag v0.17.2 for changeset 4349d6aef642
|
278
|
+
| [fbc75aba9bd9]
|
279
|
+
|
|
280
|
+
o * .hgsigs:
|
281
|
+
| Added signature for changeset 25c7ea1fcb58
|
282
|
+
| [4349d6aef642] [v0.17.2]
|
283
|
+
|
|
284
|
+
o * History.rdoc, lib/inversion.rb:
|
285
|
+
| Bump the patch version, update history.
|
286
|
+
| [25c7ea1fcb58]
|
287
|
+
|
|
288
|
+
o * lib/inversion/renderstate.rb, lib/inversion/template.rb,
|
289
|
+
| lib/inversion/template/fragmenttag.rb,
|
290
|
+
| spec/inversion/template/fragmenttag_spec.rb:
|
291
|
+
| Fix a bug with the fragment tag.
|
292
|
+
|
|
293
|
+
| Fragments will now propagate to the container template when they're
|
294
|
+
| added by inner templates.
|
295
|
+
| [311a12247e72]
|
296
|
+
|
|
201
297
|
2015-01-15 Michael Granger <ged@FaerieMUD.org>
|
202
298
|
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
299
|
+
o * .hgtags:
|
300
|
+
| Added tag v0.17.1 for changeset db630b5eceec
|
301
|
+
| [33398b16e141]
|
302
|
+
|
|
303
|
+
o * .hgsigs:
|
304
|
+
| Added signature for changeset 0d5760c23bc9
|
305
|
+
| [db630b5eceec] [v0.17.1]
|
306
|
+
|
|
307
|
+
o * History.rdoc, lib/inversion.rb:
|
308
|
+
| Bump the patch version to repush after a gem from an old build was
|
309
|
+
| accidentally pushed.
|
310
|
+
| [0d5760c23bc9]
|
311
|
+
|
|
312
|
+
o * .hgtags:
|
313
|
+
| Added tag v0.17.0 for changeset 0d29b30f5875
|
314
|
+
| [39c2bd141416]
|
315
|
+
|
|
316
|
+
o * .hgsigs:
|
317
|
+
| Added signature for changeset 4b1e3a66ffe5
|
318
|
+
| [0d29b30f5875] [v0.17.0]
|
319
|
+
|
|
320
|
+
o * History.rdoc, lib/inversion.rb:
|
321
|
+
| Bump the minor version, update history.
|
322
|
+
| [4b1e3a66ffe5]
|
323
|
+
|
|
324
|
+
o * lib/inversion/template/tag.rb, spec/inversion/template/tag_spec.rb:
|
325
|
+
| Fix the tagname pattern for namespaced tags
|
326
|
+
| [91529ae86fe4]
|
327
|
+
|
|
328
|
+
o * lib/inversion/template/tag.rb, spec/inversion/template/tag_spec.rb:
|
329
|
+
| Support snakecase tag names/tag filenames
|
330
|
+
| [6c01403492fa]
|
331
|
+
|
|
236
332
|
2015-01-14 Michael Granger <ged@FaerieMUD.org>
|
237
333
|
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
334
|
+
o * .hgtags:
|
335
|
+
| Added tag v0.16.0 for changeset 07a64313c922
|
336
|
+
| [89331de2fb2d]
|
337
|
+
|
|
338
|
+
o * .hgsigs:
|
339
|
+
| Added signature for changeset 83bef41f95a3
|
340
|
+
| [07a64313c922] [v0.16.0]
|
341
|
+
|
|
342
|
+
o * History.rdoc, Rakefile, inversion.gemspec, lib/inversion.rb:
|
343
|
+
| Prep for release
|
344
|
+
|
|
345
|
+
| - Bump the minor version
|
346
|
+
| - Update history
|
347
|
+
| - Bump the minimum Ruby version to 2.0.0
|
348
|
+
| - Add a generated gemspec
|
349
|
+
| [83bef41f95a3]
|
350
|
+
|
|
351
|
+
o * Guide.rdoc, README.rdoc:
|
352
|
+
| Bump copyright dates.
|
353
|
+
| [acb661e22446]
|
354
|
+
|
|
355
|
+
o * lib/inversion/template.rb, spec/helpers.rb,
|
356
|
+
| spec/inversion/template/configtag_spec.rb,
|
357
|
+
| spec/inversion/template/includetag_spec.rb,
|
358
|
+
| spec/inversion/template_spec.rb:
|
359
|
+
| Add support for loading templates from an alternate path.
|
360
|
+
|
|
361
|
+
| This adds support for passing a `:template_path` option to
|
362
|
+
| Inversion::Template.load which will override the configured
|
363
|
+
| `template_paths`. The option also propagates into subtemplates and
|
364
|
+
| is settable via the `config` tag.
|
365
|
+
|
|
366
|
+
| Also includes a minor RSpec 3 fix.
|
367
|
+
| [4f20dd8a2c4b]
|
368
|
+
|
|
273
369
|
2014-11-24 Michael Granger <ged@FaerieMUD.org>
|
274
370
|
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
371
|
+
o * .hgtags:
|
372
|
+
| Added tag v0.15.0 for changeset 0551c52d5351
|
373
|
+
| [85f03dc22eba]
|
374
|
+
|
|
375
|
+
o * .hgsigs:
|
376
|
+
| Added signature for changeset 7db3ff80c8e1
|
377
|
+
| [0551c52d5351] [v0.15.0]
|
378
|
+
|
|
379
|
+
o * History.rdoc, lib/inversion.rb, lib/inversion/template.rb:
|
380
|
+
| Bump the version, update history.
|
381
|
+
| [7db3ff80c8e1]
|
382
|
+
|
|
383
|
+
o * lib/inversion/template.rb, lib/inversion/template/tag.rb,
|
384
|
+
| spec/inversion/template_spec.rb:
|
385
|
+
| Add a mechanism to allow tags to extend the template
|
386
|
+
| [63b24c90d246]
|
387
|
+
|
|
292
388
|
2014-11-21 Michael Granger <ged@FaerieMUD.org>
|
293
389
|
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
390
|
+
o * Rakefile:
|
391
|
+
| Add gemspec task to the Rakefile
|
392
|
+
| [aa44b81a7b9c]
|
393
|
+
|
|
394
|
+
o * Tags.rdoc:
|
395
|
+
| Add a bit more info to Tags.rdoc
|
396
|
+
| [fc2b65cb0ca6]
|
397
|
+
|
|
302
398
|
2014-11-05 Michael Granger <ged@FaerieMUD.org>
|
303
399
|
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
400
|
+
o * .hgtags:
|
401
|
+
| Added tag v0.14.0 for changeset 1ab564bed1fb
|
402
|
+
| [eee564fe8fb3]
|
403
|
+
|
|
404
|
+
o * .hgsigs:
|
405
|
+
| Added signature for changeset 9bb165feaf57
|
406
|
+
| [1ab564bed1fb] [v0.14.0]
|
407
|
+
|
|
408
|
+
o * Gemfile, History.rdoc, Manifest.txt, lib/inversion.rb:
|
409
|
+
| Bump version, update history and manifest.
|
410
|
+
| [9bb165feaf57]
|
411
|
+
|
|
412
|
+
o * .hgtags:
|
413
|
+
| Added tag v0.13.0 for changeset 7488d214dc2c
|
414
|
+
| [3d71dc3094c3]
|
415
|
+
|
|
416
|
+
o * Tags.rdoc, lib/inversion/renderstate.rb, lib/inversion/template.rb,
|
417
|
+
| lib/inversion/template/fragmenttag.rb,
|
418
|
+
| spec/inversion/renderstate_spec.rb,
|
419
|
+
| spec/inversion/template/fragmenttag_spec.rb,
|
420
|
+
| spec/inversion/template_spec.rb:
|
421
|
+
| Add the fragment tag
|
422
|
+
| [064577093464]
|
423
|
+
|
|
328
424
|
2014-11-05 Mahlon E. Smith <mahlon@martini.nu>
|
329
425
|
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
426
|
+
o * Tags.rdoc:
|
427
|
+
| Add docs for the 'fragment' tag. Coming soon.
|
428
|
+
| [fbfb2e0eaa4e]
|
429
|
+
|
|
334
430
|
2014-11-03 Mahlon E. Smith <mahlon@martini.nu>
|
335
431
|
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
432
|
+
o * .pryrc, Tags.rdoc, lib/inversion/template/rescuetag.rb,
|
433
|
+
| manual/layouts/default.erb, manual/lib/api-filter.rb, manual/lib
|
434
|
+
| /editorial-filter.rb, manual/lib/examples-filter.rb, manual/lib
|
435
|
+
| /links-filter.rb, manual/resources/css/manual.css,
|
436
|
+
| manual/resources/css/reset.css,
|
437
|
+
| manual/resources/fonts/Inconsolata.otf, manual/resources/fonts/Muli-
|
438
|
+
| Light.ttf, manual/resources/fonts/Muli-Regular.ttf,
|
439
|
+
| manual/resources/images/arrow_225_small.png,
|
440
|
+
| manual/resources/images/arrow_315_small.png,
|
441
|
+
| manual/resources/images/arrow_skip.png, manual/resources/images/cc-
|
442
|
+
| by.png, manual/resources/images/dialog-error.png,
|
443
|
+
| manual/resources/images/dialog-information.png,
|
444
|
+
| manual/resources/images/dialog-warning.png, manual/resources/images
|
445
|
+
| /emblem-important.png, manual/resources/images/help.png,
|
446
|
+
| manual/resources/images/information.png,
|
447
|
+
| manual/resources/images/magnifier.png,
|
448
|
+
| manual/resources/images/magnifier_left.png,
|
449
|
+
| manual/resources/images/page_white_code.png,
|
450
|
+
| manual/resources/images/page_white_copy.png,
|
451
|
+
| manual/resources/images/printer.png,
|
452
|
+
| manual/resources/images/question.png,
|
453
|
+
| manual/resources/images/scripts_code.png,
|
454
|
+
| manual/resources/images/wrap.png,
|
455
|
+
| manual/resources/images/wrapping.png,
|
456
|
+
| manual/resources/js/jquery-1.4.4.min.js,
|
457
|
+
| manual/resources/js/manual.js, manual/resources/js/sh.js,
|
458
|
+
| manual/resources/swf/clipboard.swf:
|
459
|
+
| Remove old manual doc artifacts. Add documentation for the
|
460
|
+
| 'begin/rescue' and 'default' tags.
|
461
|
+
| [35971a883112]
|
462
|
+
|
|
367
463
|
2014-04-23 Michael Granger <ged@FaerieMUD.org>
|
368
464
|
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
465
|
+
o * History.rdoc, lib/inversion.rb, lib/inversion/template/attrtag.rb:
|
466
|
+
| Bump the minor version, update history.
|
467
|
+
| [7488d214dc2c] [v0.13.0]
|
468
|
+
|
|
469
|
+
o * .rvm.gems, Gemfile, Rakefile, spec/helpers.rb,
|
470
|
+
| spec/inversion/mixins_spec.rb, spec/inversion/monkeypatches_spec.rb,
|
471
|
+
| spec/inversion/parser_spec.rb, spec/inversion/renderstate_spec.rb,
|
472
|
+
| spec/inversion/sinatra_spec.rb,
|
473
|
+
| spec/inversion/template/attrtag_spec.rb,
|
474
|
+
| spec/inversion/template/begintag_spec.rb,
|
475
|
+
| spec/inversion/template/calltag_spec.rb,
|
476
|
+
| spec/inversion/template/codetag_spec.rb,
|
477
|
+
| spec/inversion/template/commenttag_spec.rb,
|
478
|
+
| spec/inversion/template/configtag_spec.rb,
|
479
|
+
| spec/inversion/template/containertag_spec.rb,
|
480
|
+
| spec/inversion/template/defaulttag_spec.rb,
|
481
|
+
| spec/inversion/template/elsetag_spec.rb,
|
482
|
+
| spec/inversion/template/elsiftag_spec.rb,
|
483
|
+
| spec/inversion/template/endtag_spec.rb,
|
484
|
+
| spec/inversion/template/escapetag_spec.rb,
|
485
|
+
| spec/inversion/template/fortag_spec.rb,
|
486
|
+
| spec/inversion/template/iftag_spec.rb,
|
487
|
+
| spec/inversion/template/importtag_spec.rb,
|
488
|
+
| spec/inversion/template/includetag_spec.rb,
|
489
|
+
| spec/inversion/template/node_spec.rb,
|
490
|
+
| spec/inversion/template/pptag_spec.rb,
|
491
|
+
| spec/inversion/template/publishtag_spec.rb,
|
492
|
+
| spec/inversion/template/rescuetag_spec.rb,
|
493
|
+
| spec/inversion/template/subscribetag_spec.rb,
|
494
|
+
| spec/inversion/template/tag_spec.rb,
|
495
|
+
| spec/inversion/template/textnode_spec.rb,
|
496
|
+
| spec/inversion/template/timedeltatag_spec.rb,
|
497
|
+
| spec/inversion/template/unlesstag_spec.rb,
|
498
|
+
| spec/inversion/template/uriencodetag_spec.rb,
|
499
|
+
| spec/inversion/template/yieldtag_spec.rb,
|
500
|
+
| spec/inversion/template_spec.rb, spec/inversion/tilt_spec.rb,
|
501
|
+
| spec/inversion_spec.rb, spec/lib/constants.rb, spec/lib/helpers.rb:
|
502
|
+
| Update specs for RSpec 3
|
503
|
+
| [1b7cfd831cf3]
|
504
|
+
|
|
409
505
|
2013-10-10 Mahlon E. Smith <mahlon@martini.nu>
|
410
506
|
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
507
|
+
o * lib/inversion/template.rb, spec/inversion/parser_spec.rb,
|
508
|
+
| spec/inversion/template/attrtag_spec.rb,
|
509
|
+
| spec/inversion/template/endtag_spec.rb,
|
510
|
+
| spec/inversion/template/escapetag_spec.rb,
|
511
|
+
| spec/inversion/template/pptag_spec.rb,
|
512
|
+
| spec/inversion/template/uriencodetag_spec.rb,
|
513
|
+
| spec/inversion/template_spec.rb:
|
514
|
+
| Carry global configuration into instantiated template options. Minor
|
515
|
+
| rspec update/cleanup.
|
516
|
+
| [52c37c725e5e]
|
517
|
+
|
|
422
518
|
2013-10-06 Michael Granger <ged@FaerieMUD.org>
|
423
519
|
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
520
|
+
o * Examples.rdoc, Gemfile, GettingStarted.rdoc, Guide.rdoc,
|
521
|
+
| Manifest.txt, README.rdoc, Rakefile, Tags.rdoc,
|
522
|
+
| lib/inversion/template.rb, lib/inversion/template/begintag.rb,
|
523
|
+
| manual/src/examples.page, manual/src/gettingstarted.page,
|
524
|
+
| manual/src/index.page, manual/src/tags.page,
|
525
|
+
| manual/src/templates.page:
|
526
|
+
| Update documentation.
|
527
|
+
| [646ed1f389fb]
|
528
|
+
|
|
433
529
|
2013-09-20 Michael Granger <ged@FaerieMUD.org>
|
434
530
|
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
531
|
+
o * .hgtags:
|
532
|
+
| Added tag v0.12.3 for changeset e9f7dfbae060
|
533
|
+
| [604c1a0022e7]
|
534
|
+
|
|
535
|
+
o * .hgsigs:
|
536
|
+
| Added signature for changeset 100ed23eb2ba
|
537
|
+
| [e9f7dfbae060] [v0.12.3]
|
538
|
+
|
|
539
|
+
o * History.rdoc, lib/inversion.rb:
|
540
|
+
| Bump patch version, update history.
|
541
|
+
| [100ed23eb2ba]
|
542
|
+
|
|
543
|
+
o * .tm_properties, Gemfile, lib/inversion/mixins.rb,
|
544
|
+
| spec/inversion/mixins_spec.rb:
|
545
|
+
| Don't deep_copy IOs or Tempfiles (bugfix).
|
546
|
+
| [70c1f8274d3d]
|
547
|
+
|
|
452
548
|
2013-08-15 Michael Granger <ged@FaerieMUD.org>
|
453
549
|
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
550
|
+
o * .hgignore, .rvm.gems, Gemfile, Rakefile:
|
551
|
+
| Update dependencies, remove 'fivefish' formatter from the spec.
|
552
|
+
| [60d2a8f8203d]
|
553
|
+
|
|
554
|
+
o * Rakefile, spec/inversion/tilt_spec.rb:
|
555
|
+
| Fix specs for Tilt 1.4.
|
556
|
+
| [a2a37501012e]
|
557
|
+
|
|
558
|
+
o * Gemfile:
|
559
|
+
| Update Gemfile
|
560
|
+
| [50bd4a8bb8a0]
|
561
|
+
|
|
562
|
+
o * Rakefile:
|
563
|
+
| Update to hoe-deveiate 0.2
|
564
|
+
| [67fe0be277b2]
|
565
|
+
|
|
566
|
+
o * .rvm.gems, Gemfile, Rakefile:
|
567
|
+
| Add hoe-bundler, Gemfile for tool compatibility
|
568
|
+
| [1f9944f95ca2]
|
569
|
+
|
|
570
|
+
o * experiments/erb_scope_bleed.rb:
|
571
|
+
| Add example output to erb scope bleed example
|
572
|
+
| [e50c583bdffa]
|
573
|
+
|
|
478
574
|
2013-06-19 Michael Granger <ged@FaerieMUD.org>
|
479
575
|
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
576
|
+
o * .hgtags:
|
577
|
+
| Added tag v0.12.2 for changeset 4c4c929c5911
|
578
|
+
| [2d11a25bd1d5]
|
579
|
+
|
|
580
|
+
o * .hgsigs:
|
581
|
+
| Added signature for changeset 0444a00c5e64
|
582
|
+
| [4c4c929c5911] [v0.12.2]
|
583
|
+
|
|
584
|
+
o * History.rdoc, lib/inversion.rb:
|
585
|
+
| Bump patch version, update history.
|
586
|
+
| [0444a00c5e64]
|
587
|
+
|
|
588
|
+
o * Manifest.txt:
|
589
|
+
| Update manifest
|
590
|
+
| [6fa0b4ea14a1]
|
591
|
+
|
|
592
|
+
o * lib/inversion/template.rb, spec/data/unknown-tag.tmpl,
|
593
|
+
| spec/inversion/template/configtag_spec.rb:
|
594
|
+
| Fix propagation of config tags into subtemplates (fixes #1)
|
595
|
+
| [1b4030ae65f3]
|
596
|
+
|
|
501
597
|
2013-05-22 Michael Granger <ged@FaerieMUD.org>
|
502
598
|
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
599
|
+
o * lib/inversion/renderstate.rb, spec/inversion/renderstate_spec.rb:
|
600
|
+
| Use replacement in transcoding instead of raising encoding errors
|
601
|
+
| [d0b82083bb00]
|
602
|
+
|
|
603
|
+
o * lib/inversion/monkeypatches.rb, lib/inversion/parser.rb,
|
604
|
+
| lib/inversion/renderstate.rb, lib/inversion/template/codetag.rb,
|
605
|
+
| lib/inversion/template/commenttag.rb,
|
606
|
+
| lib/inversion/template/containertag.rb,
|
607
|
+
| lib/inversion/template/elsetag.rb,
|
608
|
+
| lib/inversion/template/elsiftag.rb,
|
609
|
+
| lib/inversion/template/fortag.rb, lib/inversion/template/node.rb,
|
610
|
+
| lib/inversion/template/tag.rb,
|
611
|
+
| lib/inversion/template/uriencodetag.rb,
|
612
|
+
| lib/inversion/template/yieldtag.rb,
|
613
|
+
| spec/inversion/renderstate_spec.rb,
|
614
|
+
| spec/inversion/template/begintag_spec.rb,
|
615
|
+
| spec/inversion/template/textnode_spec.rb:
|
616
|
+
| Whitespace and API documentation fixes.
|
617
|
+
| [f39531d869cd]
|
618
|
+
|
|
619
|
+
o * spec/lib/helpers.rb:
|
620
|
+
| Use Loggability's spec helpers
|
621
|
+
| [03a2e9da4c3c]
|
622
|
+
|
|
623
|
+
o * .rvmrc:
|
624
|
+
| Test using Ruby 2.0
|
625
|
+
| [694a37e19d3d]
|
626
|
+
|
|
627
|
+
o * .tm_properties:
|
628
|
+
| Update project settings
|
629
|
+
| [d657f5164f22]
|
630
|
+
|
|
535
631
|
2013-03-20 Michael Granger <ged@FaerieMUD.org>
|
536
632
|
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
633
|
+
o * .hgtags:
|
634
|
+
| Added tag v0.12.1 for changeset 95133ea7528c
|
635
|
+
| [650fd85bf639]
|
636
|
+
|
|
637
|
+
o * .hgsigs:
|
638
|
+
| Added signature for changeset 4bc01301cf22
|
639
|
+
| [95133ea7528c] [v0.12.1]
|
640
|
+
|
|
641
|
+
o * History.rdoc, lib/inversion.rb:
|
642
|
+
| Bump the patch version, update history
|
643
|
+
| [4bc01301cf22]
|
644
|
+
|
|
549
645
|
2013-03-05 Michael Granger <ged@FaerieMUD.org>
|
550
646
|
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
|
556
|
-
|
557
|
-
|
558
|
-
|
647
|
+
o * lib/inversion/parser.rb:
|
648
|
+
| Comment out some more debugging in the parser
|
649
|
+
| [c34f0af1e643]
|
650
|
+
|
|
651
|
+
o * lib/inversion/parser.rb:
|
652
|
+
| Comment out a bunch of debugging in the parser
|
653
|
+
| [ee78d82eee2e]
|
654
|
+
|
|
559
655
|
2013-03-01 Michael Granger <ged@FaerieMUD.org>
|
560
656
|
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
573
|
-
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
|
657
|
+
o * .hgtags:
|
658
|
+
| Added tag v0.12.0 for changeset 33062cada220
|
659
|
+
| [2d507672656a]
|
660
|
+
|
|
661
|
+
o * .hgsigs:
|
662
|
+
| Added signature for changeset 9005ff6f9ec4
|
663
|
+
| [33062cada220] [v0.12.0]
|
664
|
+
|
|
665
|
+
o * History.rdoc, lib/inversion.rb:
|
666
|
+
| Bump the minor version, update history.
|
667
|
+
| [9005ff6f9ec4]
|
668
|
+
|
|
669
|
+
o * .rvm.gems, lib/inversion/renderstate.rb,
|
670
|
+
| spec/inversion/renderstate_spec.rb:
|
671
|
+
| Make exceptions rendered as comments include the backtrace if
|
672
|
+
| debugging comments are enabled.
|
673
|
+
| [83cb6ec4c5d7]
|
674
|
+
|
|
579
675
|
2012-09-17 Michael Granger <ged@FaerieMUD.org>
|
580
676
|
|
581
|
-
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
|
591
|
-
|
592
|
-
|
593
|
-
|
594
|
-
|
595
|
-
|
596
|
-
|
597
|
-
|
598
|
-
|
599
|
-
|
600
|
-
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
|
612
|
-
|
613
|
-
|
614
|
-
|
615
|
-
|
616
|
-
|
677
|
+
o * .hgtags:
|
678
|
+
| Added tag v0.11.2 for changeset f3b151a19816
|
679
|
+
| [d5c44e803947]
|
680
|
+
|
|
681
|
+
o * .hgsigs:
|
682
|
+
| Added signature for changeset b4d374fa78a0
|
683
|
+
| [f3b151a19816] [v0.11.2]
|
684
|
+
|
|
685
|
+
o * History.rdoc, lib/inversion.rb:
|
686
|
+
| Bump patch version, update history.
|
687
|
+
| [b4d374fa78a0]
|
688
|
+
|
|
689
|
+
o * lib/inversion/template/fortag.rb,
|
690
|
+
| spec/inversion/template/fortag_spec.rb:
|
691
|
+
| Fixing a problem with non-array values in the for tag
|
692
|
+
| [24563edc2162]
|
693
|
+
|
|
694
|
+
o * .hgtags:
|
695
|
+
| Added tag v0.11.1 for changeset 352405b90f49
|
696
|
+
| [03ef35e110e0]
|
697
|
+
|
|
698
|
+
o * .hgsigs:
|
699
|
+
| Added signature for changeset b74d0f41b140
|
700
|
+
| [352405b90f49] [v0.11.1]
|
701
|
+
|
|
702
|
+
o * History.rdoc:
|
703
|
+
| Bump the patch version, update history.
|
704
|
+
| [b74d0f41b140]
|
705
|
+
|
|
706
|
+
o * lib/inversion.rb, lib/inversion/renderstate.rb,
|
707
|
+
| lib/inversion/template/publishtag.rb,
|
708
|
+
| spec/inversion/template/publishtag_spec.rb,
|
709
|
+
| spec/inversion/template/subscribetag_spec.rb:
|
710
|
+
| Make subscriptions get nodes that were already published
|
711
|
+
| [cca3daa4a649]
|
712
|
+
|
|
617
713
|
2012-07-06 Michael Granger <ged@FaerieMUD.org>
|
618
714
|
|
619
|
-
|
620
|
-
|
621
|
-
|
622
|
-
|
623
|
-
|
624
|
-
|
625
|
-
|
626
|
-
|
627
|
-
|
628
|
-
|
629
|
-
|
630
|
-
|
631
|
-
|
632
|
-
|
633
|
-
|
634
|
-
|
635
|
-
|
636
|
-
|
637
|
-
|
638
|
-
|
639
|
-
|
640
|
-
|
715
|
+
o * .hgtags:
|
716
|
+
| Added tag v0.11.0 for changeset 8e7ee4f29874
|
717
|
+
| [71c2a12d9df0]
|
718
|
+
|
|
719
|
+
o * .hgsigs:
|
720
|
+
| Added signature for changeset 92d48ef3085e
|
721
|
+
| [8e7ee4f29874] [v0.11.0]
|
722
|
+
|
|
723
|
+
o * History.rdoc, lib/inversion.rb:
|
724
|
+
| Bump the minor version, update history.
|
725
|
+
| [92d48ef3085e]
|
726
|
+
|
|
727
|
+
o * lib/inversion/renderstate.rb, lib/inversion/template.rb,
|
728
|
+
| spec/inversion/renderstate_spec.rb:
|
729
|
+
| Transcode output according to the :encoding option if set on a
|
730
|
+
| template
|
731
|
+
| [2202c6ed520b]
|
732
|
+
|
|
733
|
+
o * lib/inversion/mixins.rb:
|
734
|
+
| Don't try to deep copy Encoding objects, either
|
735
|
+
| [424709b51350]
|
736
|
+
|
|
641
737
|
2012-06-27 Michael Granger <ged@FaerieMUD.org>
|
642
738
|
|
643
|
-
|
644
|
-
|
645
|
-
|
646
|
-
|
647
|
-
|
648
|
-
|
649
|
-
|
650
|
-
|
651
|
-
|
652
|
-
|
653
|
-
|
654
|
-
|
739
|
+
o * .hgtags:
|
740
|
+
| Added tag v0.10.2 for changeset 043b32a2d9a6
|
741
|
+
| [5b926937058b]
|
742
|
+
|
|
743
|
+
o * .hgsigs:
|
744
|
+
| Added signature for changeset 7236fd2ac3fb
|
745
|
+
| [043b32a2d9a6] [v0.10.2]
|
746
|
+
|
|
747
|
+
o * History.rdoc, lib/inversion.rb:
|
748
|
+
| Bump the patch version, update history.
|
749
|
+
| [7236fd2ac3fb]
|
750
|
+
|
|
655
751
|
2012-06-27 Mahlon E. Smith <mahlon@martini.nu>
|
656
752
|
|
657
|
-
|
658
|
-
|
659
|
-
|
660
|
-
|
661
|
-
|
662
|
-
|
753
|
+
o * lib/inversion/mixins.rb, lib/inversion/template.rb,
|
754
|
+
| spec/inversion/mixins_spec.rb:
|
755
|
+
| Add Modules/Classes to the immediate object list when deep copying.
|
756
|
+
| Don't needlessly deep_copy the node tree on template duplication.
|
757
|
+
| [fb0ab0db2042]
|
758
|
+
|
|
663
759
|
2012-06-22 Michael Granger <ged@FaerieMUD.org>
|
664
760
|
|
665
|
-
|
666
|
-
|
667
|
-
|
668
|
-
|
669
|
-
|
670
|
-
|
671
|
-
|
672
|
-
|
673
|
-
|
674
|
-
|
675
|
-
|
676
|
-
|
677
|
-
|
678
|
-
|
679
|
-
|
680
|
-
|
681
|
-
|
682
|
-
|
683
|
-
|
684
|
-
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
|
689
|
-
|
690
|
-
|
761
|
+
o * .rvm.gems, Rakefile:
|
762
|
+
| Update dependencies.
|
763
|
+
| [bf49edf3b889]
|
764
|
+
|
|
765
|
+
o * .hgtags:
|
766
|
+
| Added tag v0.10.1 for changeset 16d06faa003e
|
767
|
+
| [f45915b72d58]
|
768
|
+
|
|
769
|
+
o * .hgsigs:
|
770
|
+
| Added signature for changeset 432abb56d593
|
771
|
+
| [16d06faa003e] [v0.10.1]
|
772
|
+
|
|
773
|
+
o * History.rdoc, lib/inversion.rb:
|
774
|
+
| Bump patch version, update history.
|
775
|
+
| [432abb56d593]
|
776
|
+
|
|
777
|
+
o * lib/inversion/mixins.rb, lib/inversion/renderstate.rb,
|
778
|
+
| lib/inversion/template.rb, spec/inversion/template_spec.rb:
|
779
|
+
| Fix attribute changes being shared between duplicated templates.
|
780
|
+
|
|
781
|
+
| - Pull up deep_copy function into a mixin
|
782
|
+
| - Use deep_copy in a copy constructor on Inversion::Template to make
|
783
|
+
| internal datastructures distinct, including @attributes.
|
784
|
+
| - Also clean up some old cruft with the way the Parser is used.
|
785
|
+
| [8350fbf49ef2]
|
786
|
+
|
|
691
787
|
2012-05-18 Michael Granger <ged@FaerieMUD.org>
|
692
788
|
|
693
|
-
|
694
|
-
|
695
|
-
|
696
|
-
|
789
|
+
o * .rvm.gems:
|
790
|
+
| Bumping Loggability dependency for inheritance bugfix
|
791
|
+
| [b65ce51ca6ee]
|
792
|
+
|
|
697
793
|
2012-05-10 Michael Granger <ged@FaerieMUD.org>
|
698
794
|
|
699
|
-
|
700
|
-
|
701
|
-
|
702
|
-
|
795
|
+
o * .rvm.gems, Rakefile:
|
796
|
+
| Bump Loggability dependency to 0.2.
|
797
|
+
| [7e3c047cbfba]
|
798
|
+
|
|
703
799
|
2012-05-07 Michael Granger <ged@FaerieMUD.org>
|
704
800
|
|
705
|
-
|
706
|
-
|
707
|
-
|
708
|
-
|
709
|
-
|
710
|
-
|
711
|
-
|
712
|
-
|
713
|
-
|
714
|
-
|
715
|
-
|
716
|
-
|
717
|
-
|
718
|
-
|
719
|
-
|
720
|
-
|
721
|
-
|
722
|
-
|
723
|
-
|
724
|
-
|
725
|
-
|
726
|
-
|
727
|
-
|
728
|
-
|
729
|
-
|
730
|
-
|
731
|
-
|
732
|
-
|
733
|
-
|
734
|
-
|
735
|
-
|
801
|
+
o * .hgtags:
|
802
|
+
| Added tag v0.10.0 for changeset 64cf302354aa
|
803
|
+
| [79bc44fab294]
|
804
|
+
|
|
805
|
+
o * .hgsigs:
|
806
|
+
| Added signature for changeset 9d9c49d532be
|
807
|
+
| [64cf302354aa] [v0.10.0]
|
808
|
+
|
|
809
|
+
o * .rvm.gems, History.rdoc, Manifest.txt, Rakefile, bin/inversion,
|
810
|
+
| experiments/benchmark-parser.rb, experiments/demo.rb,
|
811
|
+
| experiments/dumptemplate.rb, lib/inversion.rb,
|
812
|
+
| lib/inversion/logging.rb, lib/inversion/mixins.rb,
|
813
|
+
| lib/inversion/parser.rb, lib/inversion/renderstate.rb,
|
814
|
+
| lib/inversion/template.rb, lib/inversion/template/begintag.rb,
|
815
|
+
| lib/inversion/template/codetag.rb,
|
816
|
+
| lib/inversion/template/commenttag.rb,
|
817
|
+
| lib/inversion/template/configtag.rb,
|
818
|
+
| lib/inversion/template/elsetag.rb,
|
819
|
+
| lib/inversion/template/elsiftag.rb,
|
820
|
+
| lib/inversion/template/endtag.rb, lib/inversion/template/fortag.rb,
|
821
|
+
| lib/inversion/template/iftag.rb,
|
822
|
+
| lib/inversion/template/includetag.rb,
|
823
|
+
| lib/inversion/template/node.rb, lib/inversion/template/rescuetag.rb,
|
824
|
+
| lib/inversion/template/tag.rb, lib/inversion/template/textnode.rb,
|
825
|
+
| lib/inversion/template/unlesstag.rb,
|
826
|
+
| lib/inversion/template/yieldtag.rb, spec/inversion/logging_spec.rb,
|
827
|
+
| spec/inversion/mixins_spec.rb, spec/inversion_spec.rb,
|
828
|
+
| spec/lib/helpers.rb:
|
829
|
+
| Convert to Loggability for logging.
|
830
|
+
| [9d9c49d532be]
|
831
|
+
|
|
736
832
|
2012-04-24 Michael Granger <ged@FaerieMUD.org>
|
737
833
|
|
738
|
-
|
739
|
-
|
740
|
-
|
741
|
-
|
742
|
-
|
743
|
-
|
744
|
-
|
745
|
-
|
746
|
-
|
747
|
-
|
748
|
-
|
749
|
-
|
750
|
-
|
751
|
-
|
752
|
-
|
753
|
-
|
754
|
-
|
834
|
+
o * .hgtags:
|
835
|
+
| Added tag v0.9.0 for changeset 27f082ef7985
|
836
|
+
| [dd18f3255985]
|
837
|
+
|
|
838
|
+
o * .hgsigs:
|
839
|
+
| Added signature for changeset b208fa9154b1
|
840
|
+
| [27f082ef7985] [v0.9.0]
|
841
|
+
|
|
842
|
+
o * History.rdoc, lib/inversion.rb:
|
843
|
+
| Bump the minor version, update history.
|
844
|
+
| [b208fa9154b1]
|
845
|
+
|
|
846
|
+
o * lib/inversion/template.rb, spec/inversion/template_spec.rb:
|
847
|
+
| Split the template path out from the config into a class instance
|
848
|
+
| variable.
|
849
|
+
| [34e2c59df5c7]
|
850
|
+
|
|
755
851
|
2012-04-13 Mahlon E. Smith <mahlon@martini.nu>
|
756
852
|
|
757
|
-
|
758
|
-
|
759
|
-
|
760
|
-
|
853
|
+
o * manual/src/tags.page:
|
854
|
+
| Fix the include tag example in the manual.
|
855
|
+
| [b5fcbae36ff2]
|
856
|
+
|
|
761
857
|
2012-04-02 Michael Granger <ged@FaerieMUD.org>
|
762
858
|
|
763
|
-
|
764
|
-
|
765
|
-
|
766
|
-
|
767
|
-
|
768
|
-
|
769
|
-
|
770
|
-
|
859
|
+
o * README.rdoc:
|
860
|
+
| Update the README to Hoe 3 style.
|
861
|
+
| [c13d2db3e0ce]
|
862
|
+
|
|
863
|
+
o * lib/inversion/renderstate.rb:
|
864
|
+
| Remove an old FIXME comment.
|
865
|
+
| [21eecc7eafca]
|
866
|
+
|
|
771
867
|
2012-04-01 Michael Granger <ged@FaerieMUD.org>
|
772
868
|
|
773
|
-
|
774
|
-
|
775
|
-
|
776
|
-
|
777
|
-
|
778
|
-
|
779
|
-
|
780
|
-
|
781
|
-
|
782
|
-
|
783
|
-
|
784
|
-
|
785
|
-
|
786
|
-
|
787
|
-
|
788
|
-
|
789
|
-
|
790
|
-
|
791
|
-
|
792
|
-
|
793
|
-
|
794
|
-
|
795
|
-
|
796
|
-
|
797
|
-
|
798
|
-
|
869
|
+
o * .hgtags:
|
870
|
+
| Added tag v0.8.0 for changeset 5d07557a543c
|
871
|
+
| [57381a550306]
|
872
|
+
|
|
873
|
+
o * .hgsigs:
|
874
|
+
| Added signature for changeset d461a2bf079d
|
875
|
+
| [5d07557a543c] [v0.8.0]
|
876
|
+
|
|
877
|
+
o * Manifest.txt, Rakefile:
|
878
|
+
| Update the manifest.
|
879
|
+
| [d461a2bf079d]
|
880
|
+
|
|
881
|
+
o * History.rdoc, lib/inversion.rb:
|
882
|
+
| Bump the minor version, update history.
|
883
|
+
| [2b5542ae6bf6]
|
884
|
+
|
|
885
|
+
o * lib/inversion.rb, lib/inversion/logging.rb, lib/inversion/mixins.rb,
|
886
|
+
| lib/inversion/utils.rb, spec/inversion/logging_spec.rb,
|
887
|
+
| spec/lib/helpers.rb:
|
888
|
+
| Move logging code out into a separate file.
|
889
|
+
| [0c88a54d2811]
|
890
|
+
|
|
891
|
+
o * lib/inversion/mixins.rb, lib/inversion/template/tag.rb:
|
892
|
+
| Add MethodUtilities mixin for declaring singleton attrs
|
893
|
+
| [3d40570d7aaf]
|
894
|
+
|
|
799
895
|
2012-03-30 Michael Granger <ged@FaerieMUD.org>
|
800
896
|
|
801
|
-
|
802
|
-
|
803
|
-
|
804
|
-
|
805
|
-
|
806
|
-
|
807
|
-
|
808
|
-
|
809
|
-
|
810
|
-
|
811
|
-
|
812
|
-
|
813
|
-
|
897
|
+
o * README.rdoc, lib/inversion/renderstate.rb,
|
898
|
+
| lib/inversion/template.rb, lib/inversion/template/fortag.rb:
|
899
|
+
| Comment out a bunch of slow debugging, update copyright date.
|
900
|
+
| [0422221385f6]
|
901
|
+
|
|
902
|
+
o * lib/inversion/renderstate.rb:
|
903
|
+
| Handle RenderState::Scope#merge a little more gracefully.
|
904
|
+
|
|
905
|
+
| Instead of trying to merge locals and then rescuing if the merged
|
906
|
+
| object doesn't respond to __locals__, implement #to_hash so they're
|
907
|
+
| able to be merged directly with a Hash.
|
908
|
+
| [a9d68f668e05]
|
909
|
+
|
|
814
910
|
2012-03-29 Michael Granger <ged@FaerieMUD.org>
|
815
911
|
|
816
|
-
|
817
|
-
|
818
|
-
|
819
|
-
|
820
|
-
|
821
|
-
|
822
|
-
|
823
|
-
|
824
|
-
|
825
|
-
|
826
|
-
|
827
|
-
|
828
|
-
|
829
|
-
|
830
|
-
|
831
|
-
|
832
|
-
|
833
|
-
|
834
|
-
|
835
|
-
|
836
|
-
|
837
|
-
|
838
|
-
|
839
|
-
|
840
|
-
|
841
|
-
|
842
|
-
|
843
|
-
|
844
|
-
|
845
|
-
|
846
|
-
|
847
|
-
|
848
|
-
|
849
|
-
|
912
|
+
o * .hgtags:
|
913
|
+
| Added tag v0.7.0 for changeset 33027d3d78c5
|
914
|
+
| [46549d0c2f86]
|
915
|
+
|
|
916
|
+
o * .hgsigs:
|
917
|
+
| Added signature for changeset a202a2c01b18
|
918
|
+
| [33027d3d78c5] [v0.7.0]
|
919
|
+
|
|
920
|
+
o * .rvm.gems:
|
921
|
+
| Updated the rvm gemset.
|
922
|
+
| [a202a2c01b18]
|
923
|
+
|
|
924
|
+
o * History.rdoc, lib/inversion.rb:
|
925
|
+
| Bump the minor version, update history.
|
926
|
+
| [92c2961cf986]
|
927
|
+
|
|
928
|
+
o * Rakefile, experiments/renderstate-scope.rb,
|
929
|
+
| lib/inversion/renderstate.rb, lib/inversion/template/attrtag.rb,
|
930
|
+
| spec/inversion/renderstate_spec.rb,
|
931
|
+
| spec/inversion/template/attrtag_spec.rb:
|
932
|
+
| Switch to a looser eval strategy for rendering tag bodies.
|
933
|
+
|
|
934
|
+
| The previous method relied on a stack of attributes Hashes in the
|
935
|
+
| RenderState; the new method in effect wraps a Binding with a
|
936
|
+
| method_missing for translating identifiers that look like locals
|
937
|
+
| back into template attributes. This not only allows for template
|
938
|
+
| attributes to be used as arguments to the methods called on other
|
939
|
+
| attributes, but avoids sharing the Binding of the RenderState with
|
940
|
+
| the tags rendered inside it.
|
941
|
+
|
|
942
|
+
| Backwards-compatibility is also maintained via a few aliases and
|
943
|
+
| shim methods.
|
944
|
+
| [5340e6ffaac3]
|
945
|
+
|
|
850
946
|
2012-03-16 Michael Granger <ged@FaerieMUD.org>
|
851
947
|
|
852
|
-
|
853
|
-
|
854
|
-
|
855
|
-
|
856
|
-
|
857
|
-
|
858
|
-
|
859
|
-
|
860
|
-
|
861
|
-
|
862
|
-
|
863
|
-
|
948
|
+
o * .hgtags:
|
949
|
+
| Added tag v0.6.1 for changeset e839621aac29
|
950
|
+
| [63e1a917c7ad]
|
951
|
+
|
|
952
|
+
o * .hgsigs:
|
953
|
+
| Added signature for changeset 1947a577fae1
|
954
|
+
| [e839621aac29] [v0.6.1]
|
955
|
+
|
|
956
|
+
o * History.rdoc, lib/inversion.rb:
|
957
|
+
| Bump the patch version and update History.
|
958
|
+
| [1947a577fae1]
|
959
|
+
|
|
864
960
|
2012-03-15 Michael Granger <ged@FaerieMUD.org>
|
865
961
|
|
866
|
-
|
867
|
-
|
868
|
-
|
869
|
-
|
870
|
-
|
871
|
-
|
872
|
-
|
873
|
-
|
962
|
+
o * experiments/fivefish-profile1.graffle, experiments/fivefish-
|
963
|
+
| profile2.graffle, experiments/fivefish-profile3.graffle, experiments
|
964
|
+
| /fivefish-profile4.graffle, lib/inversion/renderstate.rb,
|
965
|
+
| lib/inversion/template/attrtag.rb,
|
966
|
+
| lib/inversion/template/importtag.rb:
|
967
|
+
| Comment out some of the slowest debugging and add profile graphs.
|
968
|
+
| [c0c5f6da6144]
|
969
|
+
|
|
874
970
|
2012-03-13 Michael Granger <ged@FaerieMUD.org>
|
875
971
|
|
876
|
-
|
877
|
-
|
878
|
-
|
879
|
-
|
880
|
-
|
881
|
-
|
882
|
-
|
883
|
-
|
884
|
-
|
885
|
-
|
886
|
-
|
887
|
-
|
888
|
-
|
889
|
-
|
890
|
-
|
891
|
-
|
892
|
-
|
972
|
+
o * .hgtags:
|
973
|
+
| Added tag v0.6.0 for changeset c07de9868874
|
974
|
+
| [fe598279830a]
|
975
|
+
|
|
976
|
+
o * .hgsigs:
|
977
|
+
| Added signature for changeset 2397134edcb3
|
978
|
+
| [c07de9868874] [v0.6.0]
|
979
|
+
|
|
980
|
+
o * History.rdoc, lib/inversion.rb:
|
981
|
+
| Bump the minor version, update History.
|
982
|
+
| [2397134edcb3]
|
983
|
+
|
|
984
|
+
o * lib/inversion/template/fortag.rb, manual/src/tags.page,
|
985
|
+
| spec/inversion/template/fortag_spec.rb:
|
986
|
+
| Fix a bug with "for" tag iteration over complex data structures
|
987
|
+
| [6aa4c3301803]
|
988
|
+
|
|
893
989
|
2012-03-12 Michael Granger <ged@FaerieMUD.org>
|
894
990
|
|
895
|
-
|
896
|
-
|
897
|
-
|
898
|
-
|
991
|
+
o * .rvm.gems, .rvmrc:
|
992
|
+
| Update .rvm files
|
993
|
+
| [6fb2d6971357]
|
994
|
+
|
|
899
995
|
2012-03-05 Mahlon E. Smith <mahlon@martini.nu>
|
900
996
|
|
901
|
-
|
902
|
-
|
903
|
-
|
904
|
-
|
905
|
-
|
906
|
-
|
907
|
-
|
908
|
-
|
909
|
-
|
910
|
-
|
911
|
-
|
912
|
-
|
997
|
+
o * lib/inversion/template.rb, spec/inversion/template_spec.rb:
|
998
|
+
| Err, no. Lets try that again. 10,000 monkeys pounding away at
|
999
|
+
| keyboards are responsible. Or maybe just one.
|
1000
|
+
| [7c42e6b20c11]
|
1001
|
+
|
|
1002
|
+
o * lib/inversion/template.rb, manual/src/templates.page,
|
1003
|
+
| spec/inversion/template_spec.rb:
|
1004
|
+
| Add a configurable delay for stat() on file-based templates, if your
|
1005
|
+
| application is auto reloading changes and you're worried about the
|
1006
|
+
| I/O piling up. "template.reload if template.changed?" -- zesty.
|
1007
|
+
| [51e63e419025]
|
1008
|
+
|
|
913
1009
|
2012-02-17 Mahlon E. Smith <mahlon@martini.nu>
|
914
1010
|
|
915
|
-
|
916
|
-
|
917
|
-
|
918
|
-
|
919
|
-
|
1011
|
+
o * .rvmrc, lib/inversion/template.rb, spec/inversion/template_spec.rb:
|
1012
|
+
| Carry options that are set in the global configuration across to the
|
1013
|
+
| parser.
|
1014
|
+
| [3dd947d8e4d9]
|
1015
|
+
|
|
920
1016
|
2012-02-10 Mahlon E. Smith <mahlon@martini.nu>
|
921
1017
|
|
922
|
-
|
923
|
-
|
924
|
-
|
925
|
-
|
926
|
-
|
1018
|
+
o * .rvm.gems, Rakefile, lib/inversion/template.rb:
|
1019
|
+
| Guard against nil for Inversion::Template config when merging. Bump
|
1020
|
+
| rspec version, add rdoc/rspec to the RVM gemlist file.
|
1021
|
+
| [e9ef24491f97]
|
1022
|
+
|
|
927
1023
|
2012-01-05 Michael Granger <ged@FaerieMUD.org>
|
928
1024
|
|
929
|
-
|
930
|
-
|
931
|
-
|
932
|
-
|
933
|
-
|
934
|
-
|
935
|
-
|
936
|
-
|
937
|
-
|
938
|
-
|
939
|
-
|
940
|
-
|
941
|
-
|
942
|
-
|
943
|
-
|
944
|
-
|
945
|
-
|
946
|
-
|
947
|
-
|
948
|
-
|
949
|
-
|
1025
|
+
o * .hgtags:
|
1026
|
+
| Added tag v0.5.0 for changeset 0f4e4aa78d9c
|
1027
|
+
| [cc3f12489745]
|
1028
|
+
|
|
1029
|
+
o * .hgsigs:
|
1030
|
+
| Added signature for changeset 11fb6ed08994
|
1031
|
+
| [0f4e4aa78d9c] [v0.5.0]
|
1032
|
+
|
|
1033
|
+
o * History.rdoc, lib/inversion.rb:
|
1034
|
+
| Bump the minor version, update history.
|
1035
|
+
| [11fb6ed08994]
|
1036
|
+
|
|
1037
|
+
o * lib/inversion/template.rb, spec/inversion/template_spec.rb:
|
1038
|
+
| Add an option to Inversion::Template.load for setting the encoding
|
1039
|
+
| of the template source.
|
1040
|
+
| [f5a4907d65db]
|
1041
|
+
|
|
1042
|
+
o * .rvm.gems, .rvmrc, .tm_properties, Rakefile:
|
1043
|
+
| Use RVM to manage development environment
|
1044
|
+
| [87bccbf27c84]
|
1045
|
+
|
|
950
1046
|
2011-10-05 Michael Granger <ged@FaerieMUD.org>
|
951
1047
|
|
952
|
-
|
953
|
-
|
954
|
-
|
955
|
-
|
956
|
-
|
957
|
-
|
958
|
-
|
959
|
-
|
960
|
-
|
961
|
-
|
962
|
-
|
963
|
-
|
964
|
-
|
965
|
-
|
966
|
-
|
967
|
-
|
968
|
-
|
969
|
-
|
970
|
-
|
971
|
-
|
972
|
-
|
973
|
-
|
974
|
-
|
975
|
-
|
976
|
-
|
977
|
-
|
978
|
-
|
979
|
-
|
980
|
-
|
981
|
-
|
982
|
-
|
983
|
-
|
984
|
-
|
985
|
-
|
986
|
-
|
987
|
-
|
988
|
-
|
989
|
-
|
990
|
-
|
991
|
-
|
992
|
-
|
993
|
-
|
994
|
-
|
995
|
-
|
996
|
-
|
997
|
-
|
998
|
-
|
999
|
-
|
1000
|
-
|
1001
|
-
|
1002
|
-
|
1003
|
-
|
1004
|
-
|
1048
|
+
o * README.rdoc:
|
1049
|
+
| Rewrapped README to 80 columns
|
1050
|
+
| [dd170965e7d2]
|
1051
|
+
|
|
1052
|
+
o * .hgtags:
|
1053
|
+
| Added tag v0.4.0 for changeset 2aa4351a4080
|
1054
|
+
| [4f33cfcc83e3]
|
1055
|
+
|
|
1056
|
+
o * .hgsigs:
|
1057
|
+
| Added signature for changeset 5b1e645db600
|
1058
|
+
| [2aa4351a4080] [v0.4.0]
|
1059
|
+
|
|
1060
|
+
o * History.rdoc, Rakefile, lib/inversion.rb:
|
1061
|
+
| Bumped the minor version, updated the History file.
|
1062
|
+
| [5b1e645db600]
|
1063
|
+
|
|
1064
|
+
o * lib/inversion/renderstate.rb, lib/inversion/template.rb,
|
1065
|
+
| lib/inversion/template/elsetag.rb,
|
1066
|
+
| lib/inversion/template/elsiftag.rb, lib/inversion/template/iftag.rb:
|
1067
|
+
| Reworked render toggling so the before/after rendering hooks are
|
1068
|
+
| called immediately before and after the node *would* have been
|
1069
|
+
| rendered. This further cleans up the conditional logic, and causes
|
1070
|
+
| the if/elsif/else tags to behave like you'd expect: the nodes they
|
1071
|
+
| demark aren't even touched if rendering is disabled.
|
1072
|
+
|
|
1073
|
+
| Adjusted the other tags to account for the change.
|
1074
|
+
| [f9fcf011955e]
|
1075
|
+
|
|
1076
|
+
o * .hgtags:
|
1077
|
+
| Added tag v0.3.0 for changeset 656f0e2bceea
|
1078
|
+
| [b1a9d8ac9401]
|
1079
|
+
|
|
1080
|
+
o * .hgsigs:
|
1081
|
+
| Added signature for changeset cde501e6764c
|
1082
|
+
| [656f0e2bceea] [v0.3.0]
|
1083
|
+
|
|
1084
|
+
o * History.rdoc, lib/inversion.rb:
|
1085
|
+
| Bump minor version and update History
|
1086
|
+
| [cde501e6764c]
|
1087
|
+
|
|
1088
|
+
o * lib/inversion/template/elsiftag.rb, lib/inversion/template/iftag.rb:
|
1089
|
+
| Fix require loop in if/elsif tags
|
1090
|
+
| [707d9dc985c9]
|
1091
|
+
|
|
1092
|
+
o * lib/inversion/mixins.rb:
|
1093
|
+
| Fixing a problem with HTML escaping of objects other than Strings
|
1094
|
+
| [434fba9c2f16]
|
1095
|
+
|
|
1096
|
+
o * lib/inversion/renderstate.rb, lib/inversion/template.rb,
|
1097
|
+
| spec/inversion/renderstate_spec.rb:
|
1098
|
+
| Added render timing (Inversion::RenderState#time_elapsed)
|
1099
|
+
| [ed0bc421632e]
|
1100
|
+
|
|
1005
1101
|
2011-09-27 Michael Granger <ged@FaerieMUD.org>
|
1006
1102
|
|
1007
|
-
|
1008
|
-
|
1009
|
-
|
1010
|
-
|
1011
|
-
|
1012
|
-
|
1013
|
-
|
1014
|
-
|
1015
|
-
|
1016
|
-
|
1017
|
-
|
1018
|
-
|
1019
|
-
|
1020
|
-
|
1021
|
-
|
1022
|
-
|
1023
|
-
|
1024
|
-
|
1025
|
-
|
1026
|
-
|
1027
|
-
|
1028
|
-
|
1029
|
-
|
1030
|
-
|
1031
|
-
|
1032
|
-
|
1033
|
-
|
1034
|
-
|
1035
|
-
|
1036
|
-
|
1037
|
-
|
1038
|
-
|
1039
|
-
|
1040
|
-
|
1041
|
-
|
1042
|
-
|
1043
|
-
|
1044
|
-
|
1045
|
-
|
1046
|
-
|
1047
|
-
|
1048
|
-
|
1049
|
-
|
1050
|
-
|
1051
|
-
|
1052
|
-
|
1053
|
-
|
1054
|
-
|
1055
|
-
|
1056
|
-
|
1057
|
-
|
1058
|
-
|
1059
|
-
|
1060
|
-
|
1061
|
-
|
1062
|
-
|
1063
|
-
|
1064
|
-
|
1065
|
-
|
1066
|
-
|
1067
|
-
|
1068
|
-
|
1069
|
-
|
1103
|
+
o * .hgtags:
|
1104
|
+
| Added tag v0.2.0 for changeset f570e1eff279
|
1105
|
+
| [d51e6c51ad60]
|
1106
|
+
|
|
1107
|
+
o * .hgsigs:
|
1108
|
+
| Added signature for changeset 9a7cec92550e
|
1109
|
+
| [f570e1eff279] [v0.2.0]
|
1110
|
+
|
|
1111
|
+
o * Rakefile:
|
1112
|
+
| Check history before releases.
|
1113
|
+
| [9a7cec92550e]
|
1114
|
+
|
|
1115
|
+
o * Manifest.txt, Rakefile:
|
1116
|
+
| Fix the Manifest.
|
1117
|
+
| [ace3bdf0dcd9]
|
1118
|
+
|
|
1119
|
+
o * .hgtags:
|
1120
|
+
| Removed tag v0.2.0
|
1121
|
+
| [fe100c0ff417]
|
1122
|
+
|
|
1123
|
+
o * .hgtags:
|
1124
|
+
| Added tag v0.2.0 for changeset 9b57bc8611b2
|
1125
|
+
| [8f0b8b864b1a]
|
1126
|
+
|
|
1127
|
+
o * .hgsigs:
|
1128
|
+
| Added signature for changeset 896d23953a0a
|
1129
|
+
| [9b57bc8611b2]
|
1130
|
+
|
|
1131
|
+
o * History.rdoc, lib/inversion.rb:
|
1132
|
+
| Bumped minor version, updated History for release.
|
1133
|
+
| [896d23953a0a]
|
1134
|
+
|
|
1135
|
+
o * lib/inversion/renderstate.rb, lib/inversion/template/begintag.rb,
|
1136
|
+
| lib/inversion/template/elsetag.rb,
|
1137
|
+
| lib/inversion/template/elsiftag.rb,
|
1138
|
+
| lib/inversion/template/escapetag.rb,
|
1139
|
+
| lib/inversion/template/fortag.rb, lib/inversion/template/iftag.rb,
|
1140
|
+
| lib/inversion/template/importtag.rb,
|
1141
|
+
| lib/inversion/template/includetag.rb,
|
1142
|
+
| lib/inversion/template/textnode.rb,
|
1143
|
+
| lib/inversion/template/unlesstag.rb,
|
1144
|
+
| lib/inversion/template/yieldtag.rb,
|
1145
|
+
| spec/inversion/renderstate_spec.rb,
|
1146
|
+
| spec/inversion/template/begintag_spec.rb,
|
1147
|
+
| spec/inversion/template/yieldtag_spec.rb:
|
1148
|
+
| Refactoring, renaming 'RenderState#tag_state' to '#tag_data'.
|
1149
|
+
| - Made tags that inherit from containertag super to its #render where
|
1150
|
+
| possible.
|
1151
|
+
| - Move YieldTag's render state into RenderState#tag_data
|
1152
|
+
| - Comment fixes, spec naming consistency fixes
|
1153
|
+
| [5ec9728367d2]
|
1154
|
+
|
|
1155
|
+
o * lib/inversion/exceptions.rb, lib/inversion/parser.rb,
|
1156
|
+
| lib/inversion/template.rb, lib/inversion/template/node.rb,
|
1157
|
+
| lib/inversion/template/parser.rb, spec/inversion/parser_spec.rb,
|
1158
|
+
| spec/inversion/template/elsetag_spec.rb,
|
1159
|
+
| spec/inversion/template/elsiftag_spec.rb,
|
1160
|
+
| spec/inversion/template/endtag_spec.rb,
|
1161
|
+
| spec/inversion/template/parser_spec.rb,
|
1162
|
+
| spec/inversion/template/rescuetag_spec.rb:
|
1163
|
+
| Rename Inversion::Template::Parser to Inversion::Parser.
|
1164
|
+
| [d0daee0bf3c6]
|
1165
|
+
|
|
1070
1166
|
2011-09-26 Michael Granger <ged@FaerieMUD.org>
|
1071
1167
|
|
1072
|
-
|
1073
|
-
|
1074
|
-
|
1075
|
-
|
1076
|
-
|
1077
|
-
|
1078
|
-
|
1079
|
-
|
1080
|
-
|
1081
|
-
|
1082
|
-
|
1083
|
-
|
1084
|
-
|
1085
|
-
|
1086
|
-
|
1087
|
-
|
1088
|
-
|
1089
|
-
|
1090
|
-
|
1091
|
-
|
1092
|
-
|
1093
|
-
|
1094
|
-
|
1095
|
-
|
1096
|
-
|
1097
|
-
|
1098
|
-
|
1099
|
-
|
1100
|
-
|
1101
|
-
|
1102
|
-
|
1103
|
-
|
1104
|
-
|
1105
|
-
|
1106
|
-
|
1107
|
-
|
1168
|
+
o * Manifest.txt, lib/inversion/renderstate.rb,
|
1169
|
+
| lib/inversion/template.rb, lib/inversion/template/attrtag.rb,
|
1170
|
+
| lib/inversion/template/begintag.rb,
|
1171
|
+
| lib/inversion/template/conditionaltag.rb,
|
1172
|
+
| lib/inversion/template/containertag.rb,
|
1173
|
+
| lib/inversion/template/elsetag.rb,
|
1174
|
+
| lib/inversion/template/elsiftag.rb,
|
1175
|
+
| lib/inversion/template/fortag.rb, lib/inversion/template/iftag.rb,
|
1176
|
+
| lib/inversion/template/tag.rb, lib/inversion/template/unlesstag.rb,
|
1177
|
+
| spec/inversion/renderstate_spec.rb,
|
1178
|
+
| spec/inversion/template/attrtag_spec.rb,
|
1179
|
+
| spec/inversion/template/elsiftag_spec.rb,
|
1180
|
+
| spec/inversion/template/fortag_spec.rb,
|
1181
|
+
| spec/inversion/template/iftag_spec.rb,
|
1182
|
+
| spec/inversion/template/unlesstag_spec.rb:
|
1183
|
+
| Fixed conditional rendering inside of 'for' tags (fixes #2):
|
1184
|
+
| - Make the 'for' tag use the append operator of the RenderState
|
1185
|
+
| instead of accumulating rendered output itself
|
1186
|
+
| - Added a tag state to the RenderState that tags can use to keep per-
|
1187
|
+
| render state and pass messages to other tags.
|
1188
|
+
| - Added a render toggle for conditional render output
|
1189
|
+
| - Removed the ConditionalTag mixin, which is no longer necessary
|
1190
|
+
| - Move else/elsif tag logic into the tags themselves
|
1191
|
+
| [8a4bfb043423]
|
1192
|
+
|
|
1193
|
+
o * spec/inversion/renderstate_spec.rb:
|
1194
|
+
| Organized renderstate specs by feature
|
1195
|
+
| [beb6e6ea06f4]
|
1196
|
+
|
|
1197
|
+
o * lib/inversion/template/tag.rb, spec/inversion/template/tag_spec.rb:
|
1198
|
+
| Added a partial fix for the plugin loader so it won't load old
|
1199
|
+
| plugins. It's only partial because it will load renamed or removed
|
1200
|
+
| tags from older versions, but it won't ever result in clobbering or
|
1201
|
+
| redefining legitimate tags. (fixes #1)
|
1202
|
+
| [0eebd4b78d1a]
|
1203
|
+
|
|
1108
1204
|
2011-09-24 Michael Granger <ged@FaerieMUD.org>
|
1109
1205
|
|
1110
|
-
|
1111
|
-
|
1112
|
-
|
1113
|
-
|
1114
|
-
|
1115
|
-
|
1116
|
-
|
1117
|
-
|
1118
|
-
|
1206
|
+
o * experiments/if-in-for-mintest.rb:
|
1207
|
+
| Added a minimial test case for the if+for issue (refs #2)
|
1208
|
+
| [3e8a6b3cae2b]
|
1209
|
+
|
|
1210
|
+
o * lib/inversion/template/configtag.rb,
|
1211
|
+
| spec/inversion/template/configtag_spec.rb:
|
1212
|
+
| Bugfix: Make the config tag set options while rendering, too.
|
1213
|
+
| [9636249a559e]
|
1214
|
+
|
|
1119
1215
|
2011-09-23 Michael Granger <ged@FaerieMUD.org>
|
1120
1216
|
|
1121
|
-
|
1122
|
-
|
1123
|
-
|
1124
|
-
|
1125
|
-
|
1126
|
-
|
1127
|
-
|
1128
|
-
|
1129
|
-
|
1130
|
-
|
1131
|
-
|
1132
|
-
|
1133
|
-
|
1134
|
-
|
1135
|
-
|
1136
|
-
|
1137
|
-
|
1138
|
-
|
1139
|
-
|
1140
|
-
|
1141
|
-
|
1142
|
-
|
1143
|
-
|
1144
|
-
|
1145
|
-
|
1146
|
-
|
1147
|
-
|
1148
|
-
|
1149
|
-
|
1150
|
-
|
1151
|
-
|
1152
|
-
|
1153
|
-
|
1154
|
-
|
1155
|
-
|
1156
|
-
|
1157
|
-
|
1158
|
-
|
1159
|
-
|
1160
|
-
|
1161
|
-
|
1162
|
-
|
1163
|
-
|
1164
|
-
|
1165
|
-
|
1166
|
-
|
1167
|
-
|
1168
|
-
|
1169
|
-
|
1170
|
-
|
1171
|
-
|
1217
|
+
o * .hgtags:
|
1218
|
+
| Added tag v0.1.1 for changeset 3aed7786335c
|
1219
|
+
| [936ad3e2b5b7]
|
1220
|
+
|
|
1221
|
+
o * .hgsigs:
|
1222
|
+
| Added signature for changeset d700486aff8c
|
1223
|
+
| [3aed7786335c] [v0.1.1]
|
1224
|
+
|
|
1225
|
+
o * History.rdoc, lib/inversion.rb:
|
1226
|
+
| Bump patch version for release.
|
1227
|
+
| [d700486aff8c]
|
1228
|
+
|
|
1229
|
+
o * lib/inversion/renderstate.rb,
|
1230
|
+
| lib/inversion/template/subscribetag.rb,
|
1231
|
+
| spec/inversion/template/subscribetag_spec.rb:
|
1232
|
+
| Work around a bug in the 'subscribe' tag that caused templates to
|
1233
|
+
| accumulate published nodes.
|
1234
|
+
| [e745f77580bb]
|
1235
|
+
|
|
1236
|
+
o * README.rdoc:
|
1237
|
+
| Move the tag list from the README to the wiki
|
1238
|
+
| [ddf55e389f5e]
|
1239
|
+
|
|
1240
|
+
o * .hgtags:
|
1241
|
+
| Added tag v0.1.0 for changeset a1eb55ebf68a
|
1242
|
+
| [3c6b8c616671]
|
1243
|
+
|
|
1244
|
+
o * .hgsigs:
|
1245
|
+
| Added signature for changeset 5bb3f4fad426
|
1246
|
+
| [a1eb55ebf68a] [v0.1.0]
|
1247
|
+
|
|
1248
|
+
o * History.rdoc:
|
1249
|
+
| Updated the history file.
|
1250
|
+
| [5bb3f4fad426]
|
1251
|
+
|
|
1252
|
+
o * lib/inversion.rb:
|
1253
|
+
| Bump minor version for new release.
|
1254
|
+
| [dbc96c7b052a]
|
1255
|
+
|
|
1256
|
+
o * lib/inversion/template.rb, lib/inversion/template/tag.rb,
|
1257
|
+
| lib/inversion/template/timedeltatag.rb,
|
1258
|
+
| spec/inversion/template_spec.rb:
|
1259
|
+
| Added template reloading via Inversion::Template#changed? and
|
1260
|
+
| #reload.
|
1261
|
+
| [2abf3629e1dc]
|
1262
|
+
|
|
1263
|
+
o * lib/inversion/exceptions.rb:
|
1264
|
+
| Added Inversion::Error and made all exception classes inherit from
|
1265
|
+
| it.
|
1266
|
+
| [9827d30cceeb]
|
1267
|
+
|
|
1172
1268
|
2011-09-21 Michael Granger <ged@FaerieMUD.org>
|
1173
1269
|
|
1174
|
-
|
1175
|
-
|
1176
|
-
|
1177
|
-
|
1178
|
-
|
1179
|
-
|
1180
|
-
|
1181
|
-
|
1182
|
-
|
1183
|
-
|
1184
|
-
|
1185
|
-
|
1186
|
-
|
1187
|
-
|
1188
|
-
|
1189
|
-
|
1190
|
-
|
1191
|
-
|
1192
|
-
|
1193
|
-
|
1194
|
-
|
1195
|
-
|
1196
|
-
|
1197
|
-
|
1198
|
-
|
1199
|
-
|
1200
|
-
|
1201
|
-
|
1202
|
-
|
1203
|
-
|
1204
|
-
|
1205
|
-
|
1206
|
-
|
1207
|
-
|
1208
|
-
|
1209
|
-
|
1210
|
-
|
1211
|
-
|
1212
|
-
|
1213
|
-
|
1214
|
-
|
1215
|
-
|
1216
|
-
|
1217
|
-
|
1218
|
-
|
1219
|
-
|
1220
|
-
|
1221
|
-
|
1270
|
+
o * manual/resources/css/manual.css, manual/resources/css/reset.css:
|
1271
|
+
| Fixing CSS font-face declarations; adding missing reset.css
|
1272
|
+
| [45f04400b244]
|
1273
|
+
|
|
1274
|
+
o * .hgtags:
|
1275
|
+
| Added tag v0.0.4 for changeset 7a412b7ed72b
|
1276
|
+
| [46bf35f77d74]
|
1277
|
+
|
|
1278
|
+
o * .hgsigs:
|
1279
|
+
| Added signature for changeset 3e614ef5c021
|
1280
|
+
| [7a412b7ed72b] [v0.0.4]
|
1281
|
+
|
|
1282
|
+
o * .hgtags:
|
1283
|
+
| Removed tag v0.0.4
|
1284
|
+
| [3e614ef5c021]
|
1285
|
+
|
|
1286
|
+
o * Manifest.txt:
|
1287
|
+
| More manifest updates
|
1288
|
+
| [906f9d232d80]
|
1289
|
+
|
|
1290
|
+
o * Manifest.txt:
|
1291
|
+
| Fixed History path in the Manifest
|
1292
|
+
| [6d9d4fb86261]
|
1293
|
+
|
|
1294
|
+
o * .hgtags:
|
1295
|
+
| Added tag v0.0.4 for changeset 59d9ec43bfda
|
1296
|
+
| [fd4d1ea02cbc]
|
1297
|
+
|
|
1298
|
+
o * .hgsigs:
|
1299
|
+
| Added signature for changeset 27f893edf42a
|
1300
|
+
| [59d9ec43bfda]
|
1301
|
+
|
|
1302
|
+
o * History.md, History.rdoc, Rakefile, lib/inversion.rb:
|
1303
|
+
| Updated History; fixed History name in the Rakefile; Bumped patch
|
1304
|
+
| version for release.
|
1305
|
+
| [27f893edf42a]
|
1306
|
+
|
|
1307
|
+
o * Merged with 1d255d7d60a5
|
1308
|
+
|\ [4597a6f63059]
|
1309
|
+
| |
|
1310
|
+
| o * lib/inversion/template.rb:
|
1311
|
+
| | Avoid Pathname#expand_path in Inversion::Template.load [profiled]
|
1312
|
+
| | [91cbb0c90b85]
|
1313
|
+
| |
|
1314
|
+
| o * Rakefile:
|
1315
|
+
| | Disable the .gemtest task that hoe defines without asking
|
1316
|
+
| | [cf76def7d9cf]
|
1317
|
+
| |
|
1222
1318
|
2011-09-16 Michael Granger <ged@FaerieMUD.org>
|
1223
1319
|
|
1224
|
-
|
1225
|
-
|
1226
|
-
|
1227
|
-
|
1228
|
-
|
1229
|
-
|
1230
|
-
|
1231
|
-
|
1320
|
+
o | * lib/inversion/template/elsiftag.rb:
|
1321
|
+
| | Fix circular require in inversion/template/elsiftag.rb.
|
1322
|
+
| | [1d255d7d60a5]
|
1323
|
+
| |
|
1324
|
+
o | * lib/inversion/template/begintag.rb:
|
1325
|
+
|/ Fix shadowed variable in BeginTag#handle_exception.
|
1326
|
+
| [8424ac44da4a]
|
1327
|
+
|
|
1232
1328
|
2011-08-17 Michael Granger <ged@FaerieMUD.org>
|
1233
1329
|
|
1234
|
-
|
1235
|
-
|
1236
|
-
|
1237
|
-
|
1238
|
-
|
1239
|
-
|
1240
|
-
|
1241
|
-
|
1242
|
-
|
1243
|
-
|
1244
|
-
|
1330
|
+
o * manual/resources/css/manual.css:
|
1331
|
+
| Fixed font path
|
1332
|
+
| [986a5c14ec18]
|
1333
|
+
|
|
1334
|
+
o * manual/resources/css/manual.css,
|
1335
|
+
| manual/resources/fonts/GraublauWeb.otf,
|
1336
|
+
| manual/resources/fonts/GraublauWebBold.otf, manual/resources/fonts
|
1337
|
+
| /Muli-Light.ttf, manual/resources/fonts/Muli-Regular.ttf:
|
1338
|
+
| Manual CSS tweaks
|
1339
|
+
| [cae91ab725fa]
|
1340
|
+
|
|
1245
1341
|
2011-08-15 Michael Granger <ged@FaerieMUD.org>
|
1246
1342
|
|
1247
|
-
|
1248
|
-
|
1249
|
-
|
1250
|
-
|
1251
|
-
|
1252
|
-
|
1343
|
+
o * manual/lib/api-filter.rb, manual/src/examples.page,
|
1344
|
+
|\ manual/src/gettingstarted.page, manual/src/index.page,
|
1345
|
+
| | manual/src/tags.page, manual/src/templates.page:
|
1346
|
+
| | Merged with e0193bdb57db
|
1347
|
+
| | [2e8da6e2f400]
|
1348
|
+
| |
|
1253
1349
|
2011-07-30 Michael Granger <ged@FaerieMUD.org>
|
1254
1350
|
|
1255
|
-
|
1256
|
-
|
1257
|
-
|
1258
|
-
|
1259
|
-
|
1260
|
-
|
1261
|
-
|
1262
|
-
|
1263
|
-
|
1264
|
-
|
1265
|
-
|
1266
|
-
|
1267
|
-
|
1268
|
-
|
1269
|
-
|
1270
|
-
|
1271
|
-
|
1272
|
-
|
1273
|
-
|
1274
|
-
|
1275
|
-
|
1276
|
-
|
1277
|
-
|
1278
|
-
|
1279
|
-
|
1280
|
-
|
1281
|
-
|
1282
|
-
|
1283
|
-
|
1284
|
-
|
1285
|
-
|
1286
|
-
|
1351
|
+
| o * .hgignore, Manual Diagrams.graffle, README.rdoc,
|
1352
|
+
| | manual/layouts/default.erb, manual/lib/api-filter.rb, manual/lib
|
1353
|
+
| | /editorial-filter.rb, manual/lib/examples-filter.rb, manual/lib
|
1354
|
+
| | /links-filter.rb, manual/resources/css/manual.css,
|
1355
|
+
| | manual/resources/fonts/GraublauWeb.otf,
|
1356
|
+
| | manual/resources/fonts/GraublauWebBold.otf,
|
1357
|
+
| | manual/resources/fonts/Inconsolata.otf,
|
1358
|
+
| | manual/resources/images/arrow_225_small.png,
|
1359
|
+
| | manual/resources/images/arrow_315_small.png,
|
1360
|
+
| | manual/resources/images/arrow_skip.png, manual/resources/images/cc-
|
1361
|
+
| | by.png, manual/resources/images/dialog-error.png,
|
1362
|
+
| | manual/resources/images/dialog-information.png,
|
1363
|
+
| | manual/resources/images/dialog-warning.png, manual/resources/images
|
1364
|
+
| | /emblem-important.png, manual/resources/images/help.png,
|
1365
|
+
| | manual/resources/images/information.png,
|
1366
|
+
| | manual/resources/images/magnifier.png,
|
1367
|
+
| | manual/resources/images/magnifier_left.png,
|
1368
|
+
| | manual/resources/images/page_white_code.png,
|
1369
|
+
| | manual/resources/images/page_white_copy.png,
|
1370
|
+
| | manual/resources/images/printer.png,
|
1371
|
+
| | manual/resources/images/question.png,
|
1372
|
+
| | manual/resources/images/scripts_code.png,
|
1373
|
+
| | manual/resources/images/wrap.png,
|
1374
|
+
| | manual/resources/images/wrapping.png,
|
1375
|
+
| | manual/resources/js/jquery-1.4.4.min.js,
|
1376
|
+
| | manual/resources/js/manual.js, manual/resources/js/sh.js,
|
1377
|
+
| | manual/resources/swf/clipboard.swf, manual/src/examples.page,
|
1378
|
+
| | manual/src/gettingstarted.page, manual/src/index.page,
|
1379
|
+
| | manual/src/tags.page, manual/src/templates.page:
|
1380
|
+
| | Adding a manual
|
1381
|
+
| | [e0193bdb57db]
|
1382
|
+
| |
|
1287
1383
|
2011-08-15 Michael Granger <ged@FaerieMUD.org>
|
1288
1384
|
|
1289
|
-
|
1290
|
-
|
1291
|
-
|
1292
|
-
|
1293
|
-
|
1294
|
-
|
1295
|
-
|
1296
|
-
|
1297
|
-
|
1298
|
-
|
1299
|
-
|
1300
|
-
|
1301
|
-
|
1302
|
-
|
1303
|
-
|
1304
|
-
|
1305
|
-
|
1306
|
-
|
1307
|
-
|
1308
|
-
|
1309
|
-
|
1310
|
-
|
1311
|
-
|
1312
|
-
|
1313
|
-
|
1314
|
-
|
1315
|
-
|
1316
|
-
|
1317
|
-
|
1318
|
-
|
1319
|
-
|
1320
|
-
|
1321
|
-
|
1322
|
-
|
1323
|
-
|
1324
|
-
|
1325
|
-
|
1326
|
-
|
1327
|
-
|
1328
|
-
|
1329
|
-
|
1330
|
-
|
1331
|
-
|
1332
|
-
|
1385
|
+
o | * .hgtags:
|
1386
|
+
| | Added tag v0.0.3 for changeset 30fbb9cccd00
|
1387
|
+
| | [e8da683c90ba]
|
1388
|
+
| |
|
1389
|
+
o | * .hgsigs:
|
1390
|
+
| | Added signature for changeset f70888949c8c
|
1391
|
+
| | [30fbb9cccd00] [v0.0.3]
|
1392
|
+
| |
|
1393
|
+
o | * Rakefile, lib/inversion.rb:
|
1394
|
+
| | Fixed dependency version requirement; bumped patch version.
|
1395
|
+
| | [f70888949c8c]
|
1396
|
+
| |
|
1397
|
+
o | * .hgtags:
|
1398
|
+
| | Added tag v0.0.2 for changeset 5477976fd550
|
1399
|
+
| | [1a5c6f90bfaa]
|
1400
|
+
| |
|
1401
|
+
o | * .hgsigs:
|
1402
|
+
| | Added signature for changeset 08e77b056c67
|
1403
|
+
| | [5477976fd550] [v0.0.2]
|
1404
|
+
| |
|
1405
|
+
o | * lib/inversion.rb:
|
1406
|
+
| | Bump patch version for package-fix release.
|
1407
|
+
| | [08e77b056c67]
|
1408
|
+
| |
|
1409
|
+
o | * Manifest.txt:
|
1410
|
+
| | Updated manifest to include all released files.
|
1411
|
+
| | [d62150159d96]
|
1412
|
+
| |
|
1413
|
+
o | * .hgtags:
|
1414
|
+
| | Added tag v0.0.1 for changeset 42184d34d45d
|
1415
|
+
| | [e9e43e8d1060]
|
1416
|
+
| |
|
1417
|
+
o | * .hgsigs:
|
1418
|
+
| | Added signature for changeset 0bca14d50d50
|
1419
|
+
| | [42184d34d45d] [v0.0.1]
|
1420
|
+
| |
|
1421
|
+
o | * Rakefile, manual/lib/api-filter.rb, manual/src/templates.page:
|
1422
|
+
| | Update to hoe-manualgen 0.2.0.
|
1423
|
+
| | [0bca14d50d50]
|
1424
|
+
| |
|
1425
|
+
o | * manual/src/examples.page:
|
1426
|
+
| | Stripping expanded Id tag
|
1427
|
+
| | [9613e2c60530]
|
1428
|
+
| |
|
1333
1429
|
2011-08-15 Mahlon E. Smith <mahlon@martini.nu>
|
1334
1430
|
|
1335
|
-
|
1336
|
-
|
1337
|
-
|
1338
|
-
|
1339
|
-
|
1340
|
-
|
1341
|
-
|
1342
|
-
|
1343
|
-
|
1344
|
-
|
1345
|
-
|
1346
|
-
|
1347
|
-
|
1348
|
-
|
1349
|
-
|
1350
|
-
|
1351
|
-
|
1352
|
-
|
1353
|
-
|
1354
|
-
|
1355
|
-
|
1356
|
-
|
1357
|
-
|
1358
|
-
|
1359
|
-
|
1360
|
-
|
1361
|
-
|
1362
|
-
|
1363
|
-
|
1364
|
-
|
1365
|
-
|
1366
|
-
|
1367
|
-
|
1368
|
-
|
1369
|
-
|
1370
|
-
|
1371
|
-
|
1431
|
+
o | * Branch merge with d3ed941ec7ef
|
1432
|
+
|\ \ [07cde3b1ffba]
|
1433
|
+
| | |
|
1434
|
+
| o | * .hgignore, Manual Diagrams.graffle, README.rdoc, Rakefile,
|
1435
|
+
| | | experiments/demo.rb, experiments/templates/demo-content.tmpl,
|
1436
|
+
| | | lib/inversion/template/subscribetag.rb, manual/layouts/default.erb,
|
1437
|
+
| | | manual/lib/api-filter.rb, manual/lib/editorial-filter.rb, manual/lib
|
1438
|
+
| | | /examples-filter.rb, manual/lib/links-filter.rb,
|
1439
|
+
| | | manual/resources/css/manual.css,
|
1440
|
+
| | | manual/resources/fonts/GraublauWeb.otf,
|
1441
|
+
| | | manual/resources/fonts/GraublauWebBold.otf,
|
1442
|
+
| | | manual/resources/fonts/Inconsolata.otf,
|
1443
|
+
| | | manual/resources/images/arrow_225_small.png,
|
1444
|
+
| | | manual/resources/images/arrow_315_small.png,
|
1445
|
+
| | | manual/resources/images/arrow_skip.png, manual/resources/images/cc-
|
1446
|
+
| | | by.png, manual/resources/images/dialog-error.png,
|
1447
|
+
| | | manual/resources/images/dialog-information.png,
|
1448
|
+
| | | manual/resources/images/dialog-warning.png, manual/resources/images
|
1449
|
+
| | | /emblem-important.png, manual/resources/images/help.png,
|
1450
|
+
| | | manual/resources/images/information.png,
|
1451
|
+
| | | manual/resources/images/magnifier.png,
|
1452
|
+
| | | manual/resources/images/magnifier_left.png,
|
1453
|
+
| | | manual/resources/images/page_white_code.png,
|
1454
|
+
| | | manual/resources/images/page_white_copy.png,
|
1455
|
+
| | | manual/resources/images/printer.png,
|
1456
|
+
| | | manual/resources/images/question.png,
|
1457
|
+
| | | manual/resources/images/scripts_code.png,
|
1458
|
+
| | | manual/resources/images/wrap.png,
|
1459
|
+
| | | manual/resources/images/wrapping.png,
|
1460
|
+
| | | manual/resources/js/jquery-1.4.4.min.js,
|
1461
|
+
| | | manual/resources/js/manual.js, manual/resources/js/sh.js,
|
1462
|
+
| | | manual/resources/swf/clipboard.swf, manual/src/examples.page,
|
1463
|
+
| | | manual/src/gettingstarted.page, manual/src/index.page,
|
1464
|
+
| | | manual/src/tags.page, manual/src/templates.page:
|
1465
|
+
| | | Adding a manual.
|
1466
|
+
| | | [8d85088f0601]
|
1467
|
+
| | |
|
1372
1468
|
2011-08-02 Michael Granger <ged@FaerieMUD.org>
|
1373
1469
|
|
1374
|
-
|
1375
|
-
|
1376
|
-
|
1377
|
-
|
1378
|
-
|
1379
|
-
|
1380
|
-
|
1381
|
-
|
1382
|
-
|
1383
|
-
|
1384
|
-
|
1385
|
-
|
1386
|
-
|
1470
|
+
o | | * lib/inversion/tilt.rb, spec/inversion/template/configtag_spec.rb,
|
1471
|
+
| | | spec/inversion/tilt_spec.rb:
|
1472
|
+
| | | Fixes for Ruby 1.9.3-preview1.
|
1473
|
+
| | | [d3ed941ec7ef]
|
1474
|
+
| | |
|
1475
|
+
o | | * lib/inversion.rb:
|
1476
|
+
| | | Add a warning for older versions of Ruby
|
1477
|
+
| | | [73c3d8215868]
|
1478
|
+
| | |
|
1479
|
+
o---+ * .irbrc:
|
1480
|
+
| | Guard against load errors in .irbrc
|
1481
|
+
/ / [663ff80c4a69]
|
1482
|
+
| |
|
1387
1483
|
2011-07-30 Michael Granger <ged@FaerieMUD.org>
|
1388
1484
|
|
1389
|
-
|
1390
|
-
|
1391
|
-
|
1392
|
-
|
1393
|
-
|
1394
|
-
|
1395
|
-
|
1396
|
-
|
1397
|
-
|
1485
|
+
| o * lib/inversion/tilt.rb:
|
1486
|
+
|/ Adding more workaround code for Sinatra
|
1487
|
+
| [dd6eb02835f4]
|
1488
|
+
|
|
1489
|
+
o * lib/inversion/template/tag.rb:
|
1490
|
+
| Commented out some of the spammier debugging in the tag-loading
|
1491
|
+
| code.
|
1492
|
+
| [277a65ffa0bf]
|
1493
|
+
|
|
1398
1494
|
2011-07-27 Michael Granger <ged@FaerieMUD.org>
|
1399
1495
|
|
1400
|
-
|
1401
|
-
|
1402
|
-
|
1403
|
-
|
1404
|
-
|
1405
|
-
|
1406
|
-
|
1407
|
-
|
1408
|
-
|
1409
|
-
|
1410
|
-
|
1411
|
-
|
1412
|
-
|
1413
|
-
|
1414
|
-
|
1415
|
-
|
1416
|
-
|
1417
|
-
|
1418
|
-
|
1419
|
-
|
1420
|
-
|
1421
|
-
|
1422
|
-
|
1423
|
-
|
1424
|
-
|
1425
|
-
|
1426
|
-
|
1427
|
-
|
1428
|
-
|
1429
|
-
|
1430
|
-
|
1431
|
-
|
1432
|
-
|
1433
|
-
|
1434
|
-
|
1435
|
-
|
1436
|
-
|
1437
|
-
|
1438
|
-
|
1439
|
-
|
1440
|
-
|
1441
|
-
|
1442
|
-
|
1443
|
-
|
1444
|
-
|
1445
|
-
|
1446
|
-
|
1447
|
-
|
1448
|
-
|
1449
|
-
|
1450
|
-
|
1496
|
+
o * Rakefile, lib/inversion/template/timedeltatag.rb,
|
1497
|
+
| spec/inversion/mixins_spec.rb,
|
1498
|
+
| spec/inversion/template/timedeltatag_spec.rb,
|
1499
|
+
| spec/inversion_spec.rb:
|
1500
|
+
| Added some specs to improve coverage
|
1501
|
+
| [5fb307e8605a]
|
1502
|
+
|
|
1503
|
+
o * Manifest.txt, README.md, README.rdoc, Rakefile, bin/inversion,
|
1504
|
+
| lib/inversion.rb, lib/inversion/exceptions.rb,
|
1505
|
+
| lib/inversion/mixins.rb, lib/inversion/monkeypatches.rb,
|
1506
|
+
| lib/inversion/renderstate.rb, lib/inversion/sinatra.rb,
|
1507
|
+
| lib/inversion/template.rb, lib/inversion/template/attrtag.rb,
|
1508
|
+
| lib/inversion/template/codetag.rb,
|
1509
|
+
| lib/inversion/template/commenttag.rb,
|
1510
|
+
| lib/inversion/template/conditionaltag.rb,
|
1511
|
+
| lib/inversion/template/configtag.rb,
|
1512
|
+
| lib/inversion/template/containertag.rb,
|
1513
|
+
| lib/inversion/template/defaulttag.rb,
|
1514
|
+
| lib/inversion/template/elsetag.rb,
|
1515
|
+
| lib/inversion/template/elsiftag.rb,
|
1516
|
+
| lib/inversion/template/endtag.rb,
|
1517
|
+
| lib/inversion/template/escapetag.rb,
|
1518
|
+
| lib/inversion/template/fortag.rb,
|
1519
|
+
| lib/inversion/template/importtag.rb,
|
1520
|
+
| lib/inversion/template/includetag.rb,
|
1521
|
+
| lib/inversion/template/node.rb, lib/inversion/template/parser.rb,
|
1522
|
+
| lib/inversion/template/publishtag.rb,
|
1523
|
+
| lib/inversion/template/rescuetag.rb, lib/inversion/template/tag.rb,
|
1524
|
+
| lib/inversion/template/textnode.rb,
|
1525
|
+
| lib/inversion/template/timedeltatag.rb,
|
1526
|
+
| lib/inversion/template/uriencodetag.rb, lib/inversion/tilt.rb,
|
1527
|
+
| lib/inversion/utils.rb,
|
1528
|
+
| spec/inversion/template/timedeltatag_spec.rb:
|
1529
|
+
| Documentation cleanup, remove some leftover YARD crap
|
1530
|
+
| [4876bcc91507]
|
1531
|
+
|
|
1532
|
+
o * spec/inversion/renderstate_spec.rb, spec/inversion/template_spec.rb:
|
1533
|
+
| Fixed a few things caused by changes for the begin/rescue tag.
|
1534
|
+
| [1a698b24bc45]
|
1535
|
+
|
|
1536
|
+
o * README.md, experiments/templates/demo-content.tmpl,
|
1537
|
+
| lib/inversion/renderstate.rb, lib/inversion/template/begintag.rb,
|
1538
|
+
| lib/inversion/template/defaulttag.rb,
|
1539
|
+
| lib/inversion/template/elsetag.rb,
|
1540
|
+
| lib/inversion/template/rescuetag.rb,
|
1541
|
+
| spec/inversion/renderstate_spec.rb,
|
1542
|
+
| spec/inversion/template/begintag_spec.rb,
|
1543
|
+
| spec/inversion/template/rescuetag_spec.rb:
|
1544
|
+
| Add the begin/rescue tags.
|
1545
|
+
| [44db647d7a1a]
|
1546
|
+
|
|
1451
1547
|
2011-07-20 Michael Granger <ged@FaerieMUD.org>
|
1452
1548
|
|
1453
|
-
|
1454
|
-
|
1455
|
-
|
1456
|
-
|
1457
|
-
|
1549
|
+
o * lib/inversion/mixins.rb, lib/inversion/utils.rb:
|
1550
|
+
| Merging ANSIColor methods into the ColorLogFormatter, which was the
|
1551
|
+
| only place the code was used.
|
1552
|
+
| [fb8c209aaa28]
|
1553
|
+
|
|
1458
1554
|
2011-07-20 Mahlon E. Smith <mahlon@martini.nu>
|
1459
1555
|
|
1460
|
-
|
1461
|
-
|
1462
|
-
|
1463
|
-
|
1464
|
-
|
1465
|
-
|
1466
|
-
|
1467
|
-
|
1556
|
+
o * experiments/demo.rb, experiments/templates/demo-content.tmpl,
|
1557
|
+
| experiments/templates/demo-layout.tmpl,
|
1558
|
+
| lib/inversion/renderstate.rb, lib/inversion/template/attrtag.rb,
|
1559
|
+
| lib/inversion/template/defaulttag.rb,
|
1560
|
+
| spec/inversion/template/defaulttag_spec.rb:
|
1561
|
+
| Adding the 'default' tag
|
1562
|
+
| [f95e6a8167c6]
|
1563
|
+
|
|
1468
1564
|
2011-07-18 Michael Granger <ged@FaerieMUD.org>
|
1469
1565
|
|
1470
|
-
|
1471
|
-
|
1472
|
-
|
1473
|
-
|
1474
|
-
|
1475
|
-
|
1476
|
-
|
1477
|
-
|
1566
|
+
o * Manifest.txt, README.md, lib/inversion/renderstate.rb,
|
1567
|
+
| lib/inversion/template.rb, lib/inversion/template/yieldtag.rb,
|
1568
|
+
| spec/inversion/renderstate_spec.rb,
|
1569
|
+
| spec/inversion/template/yieldtag_spec.rb,
|
1570
|
+
| spec/inversion/template_spec.rb:
|
1571
|
+
| Adding a 'yield' tag
|
1572
|
+
| [3f7a7fb440b8]
|
1573
|
+
|
|
1478
1574
|
2011-07-13 Michael Granger <ged@FaerieMUD.org>
|
1479
1575
|
|
1480
|
-
|
1481
|
-
|
1482
|
-
|
1483
|
-
|
1484
|
-
|
1485
|
-
|
1486
|
-
|
1487
|
-
|
1488
|
-
|
1489
|
-
|
1490
|
-
|
1491
|
-
|
1492
|
-
|
1493
|
-
|
1494
|
-
|
1495
|
-
|
1496
|
-
|
1497
|
-
|
1498
|
-
|
1499
|
-
|
1500
|
-
|
1501
|
-
|
1502
|
-
|
1503
|
-
|
1504
|
-
|
1505
|
-
|
1506
|
-
|
1507
|
-
|
1508
|
-
|
1509
|
-
|
1576
|
+
o * lib/inversion/template/timedeltatag.rb,
|
1577
|
+
| spec/inversion/template/timedeltatag_spec.rb:
|
1578
|
+
| Fixed the timedelta specs for machines without modern timezones (I
|
1579
|
+
| think). This should fix the FreeBSD build.
|
1580
|
+
| [5c2b595a1e35]
|
1581
|
+
|
|
1582
|
+
o * experiments/demo.rb, experiments/templates/demo-content.tmpl,
|
1583
|
+
| experiments/templates/demo-layout.tmpl, experiments/templates/demo-
|
1584
|
+
| menu.tmpl:
|
1585
|
+
| Adding a demo to experiments/
|
1586
|
+
| [b1b3b7895982]
|
1587
|
+
|
|
1588
|
+
o * README.md:
|
1589
|
+
| Updating the README
|
1590
|
+
| [50ff925706ee]
|
1591
|
+
|
|
1592
|
+
o * lib/inversion/template/iftag.rb:
|
1593
|
+
| Fixed in bug in the 'if' tag that caused conditional nodes to be
|
1594
|
+
| double-appended, the second time as a stringified array
|
1595
|
+
| [6485006e82d9]
|
1596
|
+
|
|
1597
|
+
o * lib/inversion/renderstate.rb:
|
1598
|
+
| Squelched some spammy debugging
|
1599
|
+
| [0f134e004f34]
|
1600
|
+
|
|
1601
|
+
o * lib/inversion/template/timedeltatag.rb,
|
1602
|
+
| spec/inversion/template/timedeltatag_spec.rb:
|
1603
|
+
| Added the 'timedelta' tag.
|
1604
|
+
| [ab8e5eb37b44]
|
1605
|
+
|
|
1510
1606
|
2011-07-12 Michael Granger <ged@FaerieMUD.org>
|
1511
1607
|
|
1512
|
-
|
1513
|
-
|
1514
|
-
|
1515
|
-
|
1516
|
-
|
1517
|
-
|
1518
|
-
|
1519
|
-
|
1520
|
-
|
1521
|
-
|
1608
|
+
o * lib/inversion/template/iftag.rb,
|
1609
|
+
| spec/inversion/template/iftag_spec.rb:
|
1610
|
+
| Fixing a bug in the 'if' tag that caused renderstate to recursively
|
1611
|
+
| try to stringify itself.
|
1612
|
+
| [106d0d6bd2e1]
|
1613
|
+
|
|
1614
|
+
o * lib/inversion/renderstate.rb:
|
1615
|
+
| Adding Inversion::RenderState#inspect and fixing a debug log message
|
1616
|
+
| [b58a659fc93b]
|
1617
|
+
|
|
1522
1618
|
2011-07-11 Michael Granger <ged@FaerieMUD.org>
|
1523
1619
|
|
1524
|
-
|
1525
|
-
|
1526
|
-
|
1527
|
-
|
1528
|
-
|
1529
|
-
|
1530
|
-
|
1531
|
-
|
1532
|
-
|
1533
|
-
|
1534
|
-
|
1535
|
-
|
1620
|
+
o * .hgignore:
|
1621
|
+
| Add the package directory to the ignorefile
|
1622
|
+
| [50b33db61aad]
|
1623
|
+
|
|
1624
|
+
o * Manifest.txt, bin/inversion:
|
1625
|
+
| Adding a command-line template-API tool
|
1626
|
+
| [b2dbb3f0f286]
|
1627
|
+
|
|
1628
|
+
o * Manifest.txt:
|
1629
|
+
| Remove accidentally-committed manifest changes from pending patches.
|
1630
|
+
| [e387d6954154]
|
1631
|
+
|
|
1536
1632
|
2011-07-11 Mahlon E. Smith <mahlon@martini.nu>
|
1537
1633
|
|
1538
|
-
|
1539
|
-
|
1540
|
-
|
1541
|
-
|
1542
|
-
|
1543
|
-
|
1634
|
+
o * lib/inversion/template.rb, lib/inversion/template/textnode.rb,
|
1635
|
+
| spec/inversion/template/textnode_spec.rb,
|
1636
|
+
| spec/inversion/template_spec.rb:
|
1637
|
+
| Adding code to strip extra blank lines from output
|
1638
|
+
| [2ad072cd87ab]
|
1639
|
+
|
|
1544
1640
|
2011-07-11 Michael Granger <ged@FaerieMUD.org>
|
1545
1641
|
|
1546
|
-
|
1547
|
-
|
1548
|
-
|
1549
|
-
|
1550
|
-
|
1551
|
-
|
1552
|
-
|
1553
|
-
|
1554
|
-
|
1555
|
-
|
1556
|
-
|
1557
|
-
|
1558
|
-
|
1559
|
-
|
1642
|
+
o * lib/inversion/template/attrtag.rb,
|
1643
|
+
| lib/inversion/template/escapetag.rb, lib/inversion/template/node.rb,
|
1644
|
+
| lib/inversion/template/pptag.rb,
|
1645
|
+
| lib/inversion/template/uriencodetag.rb,
|
1646
|
+
| spec/inversion/template/configtag_spec.rb:
|
1647
|
+
| Make Inversion::Template::Node#render consistently take a
|
1648
|
+
| RenderState argument across all tags.
|
1649
|
+
| [15857a26de10]
|
1650
|
+
|
|
1651
|
+
o * lib/inversion/template/uriencodetag.rb,
|
1652
|
+
| spec/inversion/template/uriencodetag_spec.rb:
|
1653
|
+
| Fixed a bug in the uriencode tag for non-string attributes.
|
1654
|
+
| [fe52500a302b]
|
1655
|
+
|
|
1560
1656
|
2011-07-11 Mahlon E. Smith <mahlon@martini.nu>
|
1561
1657
|
|
1562
|
-
|
1563
|
-
|
1564
|
-
|
1565
|
-
|
1566
|
-
|
1567
|
-
|
1658
|
+
o * lib/inversion/template/parser.rb,
|
1659
|
+
| spec/inversion/template/parser_spec.rb:
|
1660
|
+
| Converted parser to use String#scan instead of StringScanner to make
|
1661
|
+
| dealing with encoding issues easier
|
1662
|
+
| [f16cd5fc4255]
|
1663
|
+
|
|
1568
1664
|
2011-07-11 Michael Granger <ged@FaerieMUD.org>
|
1569
1665
|
|
1570
|
-
|
1571
|
-
|
1572
|
-
|
1573
|
-
|
1574
|
-
|
1575
|
-
|
1576
|
-
|
1577
|
-
|
1578
|
-
|
1666
|
+
o * lib/inversion/template/tag.rb:
|
1667
|
+
| Bugfix for Inversion::Template::Tag#as_comment_body for tags with
|
1668
|
+
| null bodies.
|
1669
|
+
| [5579ca88f7ac]
|
1670
|
+
|
|
1671
|
+
o * Manifest.txt:
|
1672
|
+
| Updating the Manifest
|
1673
|
+
| [f2b67bf8db76]
|
1674
|
+
|
|
1579
1675
|
2011-07-08 Michael Granger <ged@FaerieMUD.org>
|
1580
1676
|
|
1581
|
-
|
1582
|
-
|
1583
|
-
|
1584
|
-
|
1585
|
-
|
1586
|
-
|
1587
|
-
|
1588
|
-
|
1589
|
-
|
1590
|
-
|
1591
|
-
|
1592
|
-
|
1593
|
-
|
1677
|
+
o * experiments/benchmark-parser.rb:
|
1678
|
+
| Adding a little parser-benchmarking utility. Just point it at a
|
1679
|
+
| directory full of *.tmpl template files.
|
1680
|
+
| [06af47a12ed6]
|
1681
|
+
|
|
1682
|
+
o * .hgignore, Rakefile, spec/lib/helpers.rb:
|
1683
|
+
| Rakefile cleanup/separate coverage from specs
|
1684
|
+
| - Remove all the release stuff from the Rakefile that's already in
|
1685
|
+
| hoe-deveiate.
|
1686
|
+
| - Add a 'coverage' task to enable coverage generation so it doesn't
|
1687
|
+
| get run by default.
|
1688
|
+
| [cc53d24b4c56]
|
1689
|
+
|
|
1594
1690
|
2011-07-07 Michael Granger <ged@FaerieMUD.org>
|
1595
1691
|
|
1596
|
-
|
1597
|
-
|
1598
|
-
|
1599
|
-
|
1600
|
-
|
1601
|
-
|
1602
|
-
|
1603
|
-
|
1604
|
-
|
1692
|
+
o * lib/inversion/template/attrtag.rb,
|
1693
|
+
| spec/inversion/template/attrtag_spec.rb:
|
1694
|
+
| Adding format syntax to attr with a methodchain
|
1695
|
+
| [739dfd64abba]
|
1696
|
+
|
|
1697
|
+
o * lib/inversion/template/parser.rb:
|
1698
|
+
| Cleaned up parser logging
|
1699
|
+
| [1799cab39156]
|
1700
|
+
|
|
1605
1701
|
2011-07-07 Mahlon E. Smith <mahlon@martini.nu>
|
1606
1702
|
|
1607
|
-
|
1608
|
-
|
1609
|
-
|
1610
|
-
|
1703
|
+
o * spec/lib/helpers.rb:
|
1704
|
+
| Add SimpleCov to the Rakefile.
|
1705
|
+
| [9d871bbfa95d]
|
1706
|
+
|
|
1611
1707
|
2011-07-07 Michael Granger <ged@FaerieMUD.org>
|
1612
1708
|
|
1613
|
-
|
1614
|
-
|
1615
|
-
|
1616
|
-
|
1617
|
-
|
1618
|
-
|
1619
|
-
|
1620
|
-
|
1621
|
-
|
1622
|
-
|
1709
|
+
o * lib/inversion/template/elsetag.rb,
|
1710
|
+
| spec/inversion/template/elsetag_spec.rb:
|
1711
|
+
| Fix the ElseTag constructor so it handles creation from the parser.
|
1712
|
+
| [3d53a4f4a2b4]
|
1713
|
+
|
|
1714
|
+
o * lib/inversion/template/tag.rb, spec/inversion/template/tag_spec.rb:
|
1715
|
+
| Fixing a bug in Inversion::Template::Tag.create when given an
|
1716
|
+
| illegal tagname.
|
1717
|
+
| [75b323c6bc84]
|
1718
|
+
|
|
1623
1719
|
2011-07-06 Michael Granger <ged@FaerieMUD.org>
|
1624
1720
|
|
1625
|
-
|
1626
|
-
|
1627
|
-
|
1628
|
-
|
1629
|
-
|
1630
|
-
|
1631
|
-
|
1632
|
-
|
1633
|
-
|
1634
|
-
|
1635
|
-
|
1636
|
-
|
1637
|
-
|
1638
|
-
|
1639
|
-
|
1640
|
-
|
1641
|
-
|
1642
|
-
|
1643
|
-
|
1644
|
-
|
1645
|
-
|
1646
|
-
|
1647
|
-
|
1648
|
-
|
1649
|
-
|
1650
|
-
|
1651
|
-
|
1652
|
-
|
1653
|
-
|
1654
|
-
|
1655
|
-
|
1656
|
-
|
1657
|
-
|
1658
|
-
|
1659
|
-
|
1660
|
-
|
1661
|
-
|
1662
|
-
|
1663
|
-
|
1664
|
-
|
1665
|
-
|
1666
|
-
|
1667
|
-
|
1668
|
-
|
1669
|
-
|
1670
|
-
|
1671
|
-
|
1672
|
-
|
1673
|
-
|
1674
|
-
|
1675
|
-
|
1676
|
-
|
1677
|
-
|
1678
|
-
|
1679
|
-
|
1680
|
-
|
1681
|
-
|
1682
|
-
|
1683
|
-
|
1721
|
+
o * Merged with b822cc9b6ff2
|
1722
|
+
|\ [f46b1ff133cd]
|
1723
|
+
| |
|
1724
|
+
| o * .hgignore, README.md, Rakefile, lib/inversion.rb,
|
1725
|
+
| | lib/inversion/monkeypatches.rb, lib/inversion/renderstate.rb,
|
1726
|
+
| | lib/inversion/template.rb, lib/inversion/template/attrtag.rb,
|
1727
|
+
| | lib/inversion/template/codetag.rb,
|
1728
|
+
| | lib/inversion/template/conditionaltag.rb,
|
1729
|
+
| | lib/inversion/template/configtag.rb,
|
1730
|
+
| | lib/inversion/template/containertag.rb,
|
1731
|
+
| | lib/inversion/template/elsetag.rb,
|
1732
|
+
| | lib/inversion/template/elsiftag.rb,
|
1733
|
+
| | lib/inversion/template/endtag.rb, lib/inversion/template/iftag.rb,
|
1734
|
+
| | lib/inversion/template/importtag.rb,
|
1735
|
+
| | lib/inversion/template/includetag.rb,
|
1736
|
+
| | lib/inversion/template/node.rb, lib/inversion/template/parser.rb,
|
1737
|
+
| | lib/inversion/template/publishtag.rb,
|
1738
|
+
| | lib/inversion/template/subscribetag.rb,
|
1739
|
+
| | lib/inversion/template/tag.rb, lib/inversion/template/unlesstag.rb,
|
1740
|
+
| | spec/inversion/renderstate_spec.rb,
|
1741
|
+
| | spec/inversion/template/attrtag_spec.rb,
|
1742
|
+
| | spec/inversion/template/endtag_spec.rb,
|
1743
|
+
| | spec/inversion/template/iftag_spec.rb,
|
1744
|
+
| | spec/inversion/template/includetag_spec.rb,
|
1745
|
+
| | spec/inversion/template/node_spec.rb,
|
1746
|
+
| | spec/inversion/template/parser_spec.rb,
|
1747
|
+
| | spec/inversion/template/publishtag_spec.rb,
|
1748
|
+
| | spec/inversion/template/subscribetag_spec.rb,
|
1749
|
+
| | spec/inversion/template/tag_spec.rb,
|
1750
|
+
| | spec/inversion/template/unlesstag_spec.rb,
|
1751
|
+
| | spec/inversion/template_spec.rb, spec/lib/helpers.rb:
|
1752
|
+
| | Adding publish/subscribe.
|
1753
|
+
| | - Replaces import/export.
|
1754
|
+
| | - De-Yarded.
|
1755
|
+
| | - Load monkeypatches from the top level.
|
1756
|
+
| | - Inversion::RenderState
|
1757
|
+
| | * Made it heirarchical to provide access to enclosing template state
|
1758
|
+
| | from tags during rendering.
|
1759
|
+
| | * Added pub/sub support via #publish and #subscribe methods.
|
1760
|
+
| | * Pulled a bunch of rendering logic out of Template.
|
1761
|
+
| | * Deferred stringification until the last possible moment for nodes
|
1762
|
+
| | that need to hang around until the very end of rendering.
|
1763
|
+
| | * Allow the render destination to be overridden for a block.
|
1764
|
+
| | * Pulled subtemplate (or any delegated) rendering up out of AttrTag
|
1765
|
+
| | - Made the logic in Inversion::Template::ContainerTag/Inversion::Templ
|
1766
|
+
| | ate::ConditionalTag more consistent.
|
1767
|
+
| | - Extract non-general rendering logic from ConditionalTag into
|
1768
|
+
| | IfTag/UnlessTag.
|
1769
|
+
| | - Changed #before_append/#after_append to *_appending to be more
|
1770
|
+
| | consistent with #before_/#after_rendering
|
1771
|
+
| | - Added a yield to ContainerTag's #initialize for prettier node-tree
|
1772
|
+
| | building.
|
1773
|
+
| | - Pulled subtemplate loading from IncludeTag up into
|
1774
|
+
| | Inversion::Parser::State so it can be used by other tags.
|
1775
|
+
| | - Pulled container-closing up into EndTag.
|
1776
|
+
| | - Inversion::Template::Tag's constructor now strips the body.
|
1777
|
+
| | - Add SimpleCov coverage ()
|
1778
|
+
| | [4d7a94c4cf02]
|
1779
|
+
| |
|
1684
1780
|
2011-07-05 Mahlon E. Smith <mahlon@martini.nu>
|
1685
1781
|
|
1686
|
-
|
1687
|
-
|
1688
|
-
|
1689
|
-
|
1690
|
-
|
1691
|
-
|
1782
|
+
o | * lib/inversion/template/pptag.rb, spec/inversion/mixins_spec.rb,
|
1783
|
+
|/ spec/inversion/template/pptag_spec.rb:
|
1784
|
+
| Heh, added the pp tag and mixin spec files back from changeset
|
1785
|
+
| 5d244064e631. Whoops.
|
1786
|
+
| [b822cc9b6ff2]
|
1787
|
+
|
|
1692
1788
|
2011-07-05 Michael Granger <ged@FaerieMUD.org>
|
1693
1789
|
|
1694
|
-
|
1695
|
-
|
1696
|
-
|
1697
|
-
|
1698
|
-
|
1699
|
-
|
1700
|
-
|
1701
|
-
|
1702
|
-
|
1703
|
-
|
1704
|
-
|
1705
|
-
|
1706
|
-
|
1707
|
-
|
1708
|
-
|
1790
|
+
o * Rakefile, lib/inversion/sinatra.rb, lib/inversion/tilt.rb,
|
1791
|
+
| spec/data/sinatra/hello.inversion, spec/inversion/sinatra_spec.rb,
|
1792
|
+
| spec/inversion/tilt_spec.rb:
|
1793
|
+
| Adding support for Sinatra.
|
1794
|
+
| [a4d57edad888]
|
1795
|
+
|
|
1796
|
+
o * lib/inversion/template.rb, lib/inversion/template/tag.rb:
|
1797
|
+
| Fixed some shadowed variable warnings.
|
1798
|
+
| [5c326f09c56e]
|
1799
|
+
|
|
1800
|
+
o * Rakefile, experiments/tilt-test.tmpl, lib/inversion/tilt.rb,
|
1801
|
+
| spec/inversion/tilt_spec.rb:
|
1802
|
+
| Adding Tilt (https://github.com/rtomayko/tilt) support
|
1803
|
+
| [e414459913e5]
|
1804
|
+
|
|
1709
1805
|
2011-06-29 Michael Granger <ged@FaerieMUD.org>
|
1710
1806
|
|
1711
|
-
|
1712
|
-
|
1713
|
-
|
1714
|
-
|
1715
|
-
|
1716
|
-
|
1717
|
-
|
1718
|
-
|
1719
|
-
|
1720
|
-
|
1721
|
-
|
1722
|
-
|
1723
|
-
|
1724
|
-
|
1807
|
+
o * spec/inversion/template_spec.rb:
|
1808
|
+
| Fix omitted spec from the import tag commit
|
1809
|
+
| [5c8fe7fdc063]
|
1810
|
+
|
|
1811
|
+
o * lib/inversion/template/importtag.rb:
|
1812
|
+
| Downgrade accidentally-committed error-level debugging messages
|
1813
|
+
| [6c0a7d914dc2]
|
1814
|
+
|
|
1815
|
+
o * lib/inversion/template.rb, lib/inversion/template/importtag.rb,
|
1816
|
+
| spec/inversion/template/importtag_spec.rb,
|
1817
|
+
| spec/inversion/template_spec.rb:
|
1818
|
+
| Added the 'import' tag
|
1819
|
+
| [1ff17b49fb92]
|
1820
|
+
|
|
1725
1821
|
2011-06-27 Michael Granger <ged@FaerieMUD.org>
|
1726
1822
|
|
1727
|
-
|
1728
|
-
|
1729
|
-
|
1730
|
-
|
1823
|
+
o * lib/inversion/template.rb, spec/inversion/template_spec.rb:
|
1824
|
+
| Aliased Inversion::Template#render to #to_s
|
1825
|
+
| [0fdad3807675]
|
1826
|
+
|
|
1731
1827
|
2011-06-27 Mahlon E. Smith <mahlon@martini.nu>
|
1732
1828
|
|
1733
|
-
|
1734
|
-
|
1735
|
-
|
1736
|
-
|
1737
|
-
|
1829
|
+
o * lib/inversion/template/attrtag.rb,
|
1830
|
+
| spec/inversion/template/attrtag_spec.rb:
|
1831
|
+
| Added before_rendering/after_rendering hooks to the attr tag
|
1832
|
+
| [25cef559d995]
|
1833
|
+
|
|
1738
1834
|
2011-06-24 Michael Granger <ged@FaerieMUD.org>
|
1739
1835
|
|
1740
|
-
|
1741
|
-
|
1742
|
-
|
1743
|
-
|
1744
|
-
|
1745
|
-
|
1746
|
-
|
1747
|
-
|
1748
|
-
|
1749
|
-
|
1750
|
-
|
1751
|
-
|
1752
|
-
|
1753
|
-
|
1836
|
+
o * README.md, lib/inversion/template/conditionaltag.rb,
|
1837
|
+
| lib/inversion/template/elsetag.rb,
|
1838
|
+
| lib/inversion/template/elsiftag.rb, lib/inversion/template/iftag.rb,
|
1839
|
+
| lib/inversion/template/parser.rb,
|
1840
|
+
| lib/inversion/template/unlesstag.rb,
|
1841
|
+
| spec/inversion/renderstate_spec.rb,
|
1842
|
+
| spec/inversion/template/elsetag_spec.rb,
|
1843
|
+
| spec/inversion/template/elsiftag_spec.rb,
|
1844
|
+
| spec/inversion/template/iftag_spec.rb,
|
1845
|
+
| spec/inversion/template/parser_spec.rb,
|
1846
|
+
| spec/inversion/template/unlesstag_spec.rb:
|
1847
|
+
| Added conditional flow-control tags: if, elsif, else, unless.
|
1848
|
+
| [75f89b3b112e]
|
1849
|
+
|
|
1754
1850
|
2011-06-24 Mahlon E. Smith <mahlon@martini.nu>
|
1755
1851
|
|
1756
|
-
|
1757
|
-
|
1758
|
-
|
1759
|
-
|
1760
|
-
|
1761
|
-
|
1852
|
+
o * lib/inversion/template/attrtag.rb,
|
1853
|
+
| spec/inversion/template/attrtag_spec.rb:
|
1854
|
+
| Make attr tags not stringify their rendered values so overridding
|
1855
|
+
| implementations of #render can decide for themselves what to do
|
1856
|
+
| [f8bf76e02432]
|
1857
|
+
|
|
1762
1858
|
2011-06-24 Michael Granger <ged@FaerieMUD.org>
|
1763
1859
|
|
1764
|
-
|
1765
|
-
|
1766
|
-
|
1767
|
-
|
1768
|
-
|
1860
|
+
o * lib/inversion/template/attrtag.rb, lib/inversion/template/fortag.rb,
|
1861
|
+
| spec/inversion/template/attrtag_spec.rb:
|
1862
|
+
| Consistency fixes for debugging comment output
|
1863
|
+
| [5345b7293d41]
|
1864
|
+
|
|
1769
1865
|
2011-06-24 Mahlon E. Smith <mahlon@martini.nu>
|
1770
1866
|
|
1771
|
-
|
1772
|
-
|
1773
|
-
|
1774
|
-
|
1775
|
-
|
1776
|
-
|
1867
|
+
o * lib/inversion/template/endtag.rb,
|
1868
|
+
| spec/inversion/template/endtag_spec.rb:
|
1869
|
+
| Made end tag less special-case-ey, and added rendering as a comment
|
1870
|
+
| so container tags have opening and closing debugging comments
|
1871
|
+
| [74eef2dfaf25]
|
1872
|
+
|
|
1777
1873
|
2011-06-24 Michael Granger <ged@FaerieMUD.org>
|
1778
1874
|
|
1779
|
-
|
1780
|
-
|
1781
|
-
|
1782
|
-
|
1783
|
-
|
1784
|
-
|
1785
|
-
|
1786
|
-
|
1787
|
-
|
1788
|
-
|
1789
|
-
|
1790
|
-
|
1791
|
-
|
1792
|
-
|
1793
|
-
|
1794
|
-
|
1795
|
-
|
1796
|
-
|
1797
|
-
|
1798
|
-
|
1799
|
-
|
1800
|
-
|
1801
|
-
|
1802
|
-
|
1803
|
-
|
1875
|
+
o * lib/inversion/template/attrtag.rb,
|
1876
|
+
| spec/inversion/template/attrtag_spec.rb:
|
1877
|
+
| Rendered values of false are now returned as false instead of the
|
1878
|
+
| string 'false'
|
1879
|
+
| [7496f1b5840d]
|
1880
|
+
|
|
1881
|
+
o * lib/inversion/renderstate.rb, spec/inversion/renderstate_spec.rb:
|
1882
|
+
| Changed the RenderState's attribute-accessor proxy method to be more
|
1883
|
+
| flexible
|
1884
|
+
| [a413d2252282]
|
1885
|
+
|
|
1886
|
+
o * lib/inversion/template/fortag.rb,
|
1887
|
+
| spec/inversion/template/fortag_spec.rb:
|
1888
|
+
| Fixed 'for' in the case where the enumerated attribute isn't set
|
1889
|
+
| [da438e56caef]
|
1890
|
+
|
|
1891
|
+
o * spec/inversion/template/calltag_spec.rb.orig:
|
1892
|
+
| Remove accidentally-committed .orig file
|
1893
|
+
| [039d8134bd10]
|
1894
|
+
|
|
1895
|
+
o * lib/inversion/template/fortag.rb,
|
1896
|
+
| spec/inversion/template/fortag_spec.rb:
|
1897
|
+
| Fix bug in the 'for' tag
|
1898
|
+
| [fa20b04ea505]
|
1899
|
+
|
|
1804
1900
|
2011-06-24 Mahlon E. Smith <mahlon@martini.nu>
|
1805
1901
|
|
1806
|
-
|
1807
|
-
|
1808
|
-
|
1809
|
-
|
1810
|
-
|
1811
|
-
|
1812
|
-
|
1813
|
-
|
1814
|
-
|
1815
|
-
|
1816
|
-
|
1817
|
-
|
1818
|
-
|
1819
|
-
|
1820
|
-
|
1821
|
-
|
1822
|
-
|
1823
|
-
|
1824
|
-
|
1825
|
-
|
1826
|
-
|
1902
|
+
o * lib/inversion/template.rb, lib/inversion/template/attrtag.rb,
|
1903
|
+
| lib/inversion/template/calltag.rb,
|
1904
|
+
| lib/inversion/template/escapetag.rb,
|
1905
|
+
| lib/inversion/template/iftag.rb, lib/inversion/template/node.rb,
|
1906
|
+
| lib/inversion/template/uriencodetag.rb,
|
1907
|
+
| spec/inversion/renderstate_spec.rb,
|
1908
|
+
| spec/inversion/template/attrtag_spec.rb,
|
1909
|
+
| spec/inversion/template/calltag_spec.rb,
|
1910
|
+
| spec/inversion/template/configtag_spec.rb,
|
1911
|
+
| spec/inversion/template/iftag_spec.rb:
|
1912
|
+
| Adding 'if' tag.
|
1913
|
+
| - Combined 'code' and 'attr' tags; code is now just an alias for
|
1914
|
+
| 'attr'.
|
1915
|
+
| - Changed the API of Inversion::Template::Node#render to defer
|
1916
|
+
| stringification of the tag's value to Inversion::Template#render
|
1917
|
+
| instead of doing it itself. This makes #render easier to super to
|
1918
|
+
| for purposes other than rendered output (e.g., logical tags,
|
1919
|
+
| introspection).
|
1920
|
+
| - Added Inversion::Template::IfTag and spec.
|
1921
|
+
| [282f18320a55]
|
1922
|
+
|
|
1827
1923
|
2011-06-24 Michael Granger <ged@FaerieMUD.org>
|
1828
1924
|
|
1829
|
-
|
1830
|
-
|
1831
|
-
|
1832
|
-
|
1925
|
+
o * README.md:
|
1926
|
+
| Added/updated tags
|
1927
|
+
| [6b7ea4c5c4d8]
|
1928
|
+
|
|
1833
1929
|
2011-06-22 Michael Granger <ged@faerieMUD.org>
|
1834
1930
|
|
1835
|
-
|
1836
|
-
|
1837
|
-
|
1838
|
-
|
1839
|
-
|
1840
|
-
|
1931
|
+
o * README.md, lib/inversion/mixins.rb,
|
1932
|
+
| lib/inversion/template/escapetag.rb:
|
1933
|
+
| Added the pp tag; factored out escaping as a mixin so it can be
|
1934
|
+
| applied to multiple tags.
|
1935
|
+
| [5d244064e631]
|
1936
|
+
|
|
1841
1937
|
2011-06-22 Mahlon E. Smith <mahlon@martini.nu>
|
1842
1938
|
|
1843
|
-
|
1844
|
-
|
1845
|
-
|
1846
|
-
|
1847
|
-
|
1939
|
+
o * lib/inversion/template/uriencodetag.rb,
|
1940
|
+
| spec/inversion/template/uriencodetag_spec.rb:
|
1941
|
+
| Add the <?uriencode ... ?> tag.
|
1942
|
+
| [a149dfdf20d4]
|
1943
|
+
|
|
1848
1944
|
2011-06-20 Mahlon E. Smith <mahlon@martini.nu>
|
1849
1945
|
|
1850
|
-
|
1851
|
-
|
1852
|
-
|
1853
|
-
|
1854
|
-
|
1855
|
-
|
1856
|
-
|
1946
|
+
o * README.md, lib/inversion/template.rb,
|
1947
|
+
| lib/inversion/template/escapetag.rb,
|
1948
|
+
| spec/inversion/template/escapetag_spec.rb:
|
1949
|
+
| Added the <?escape ... ?> tag, currently just supporting HTML
|
1950
|
+
| escaping.
|
1951
|
+
| [0c06f24416bc]
|
1952
|
+
|
|
1857
1953
|
2011-06-20 Michael Granger <ged@FaerieMUD.org>
|
1858
1954
|
|
1859
|
-
|
1860
|
-
|
1861
|
-
|
1862
|
-
|
1955
|
+
o * spec/inversion/template/includetag_spec.rb:
|
1956
|
+
| Rearranged include tag specs
|
1957
|
+
| [3bfb053c8dcb]
|
1958
|
+
|
|
1863
1959
|
2011-06-20 Mahlon E. Smith <mahlon@martini.nu>
|
1864
1960
|
|
1865
|
-
|
1866
|
-
|
1867
|
-
|
1868
|
-
|
1961
|
+
o * lib/inversion/template/codetag.rb:
|
1962
|
+
| Changed tag-pattern methods to support runtime inheritance
|
1963
|
+
| [a1e3fc29efae]
|
1964
|
+
|
|
1869
1965
|
2011-06-20 Michael Granger <ged@FaerieMUD.org>
|
1870
1966
|
|
1871
|
-
|
1872
|
-
|
1873
|
-
|
1874
|
-
|
1967
|
+
o * README.md:
|
1968
|
+
| Updated README
|
1969
|
+
| [d44d7db1901a]
|
1970
|
+
|
|
1875
1971
|
2011-06-20 Mahlon E. Smith <mahlon@martini.nu>
|
1876
1972
|
|
1877
|
-
|
1878
|
-
|
1879
|
-
|
1880
|
-
|
1881
|
-
|
1882
|
-
|
1883
|
-
|
1884
|
-
|
1885
|
-
|
1886
|
-
|
1887
|
-
|
1888
|
-
|
1889
|
-
|
1890
|
-
|
1891
|
-
|
1892
|
-
|
1973
|
+
o * Rakefile, spec/lib/helpers.rb:
|
1974
|
+
| Updated the deprecated "Rspec" constant to "RSpec".
|
1975
|
+
| [3bb4dbe2439a]
|
1976
|
+
|
|
1977
|
+
o * lib/inversion/exceptions.rb, lib/inversion/template.rb,
|
1978
|
+
| lib/inversion/template/configtag.rb,
|
1979
|
+
| lib/inversion/template/includetag.rb,
|
1980
|
+
| lib/inversion/template/node.rb, lib/inversion/template/parser.rb,
|
1981
|
+
| lib/inversion/template/tag.rb,
|
1982
|
+
| spec/inversion/template/includetag_spec.rb,
|
1983
|
+
| spec/inversion/template/node_spec.rb,
|
1984
|
+
| spec/inversion/template/parser_spec.rb,
|
1985
|
+
| spec/inversion/template_spec.rb:
|
1986
|
+
| Added the <?include ...?> tag.
|
1987
|
+
| [bb7a010fc3c9]
|
1988
|
+
|
|
1893
1989
|
2011-06-17 Mahlon E. Smith <mahlon@martini.nu>
|
1894
1990
|
|
1895
|
-
|
1896
|
-
|
1897
|
-
|
1898
|
-
|
1899
|
-
|
1900
|
-
|
1901
|
-
|
1902
|
-
|
1903
|
-
|
1904
|
-
|
1905
|
-
|
1906
|
-
|
1907
|
-
|
1908
|
-
|
1909
|
-
|
1910
|
-
|
1911
|
-
|
1912
|
-
|
1913
|
-
|
1914
|
-
|
1915
|
-
|
1916
|
-
|
1917
|
-
|
1918
|
-
|
1919
|
-
|
1920
|
-
|
1991
|
+
o * lib/inversion/template.rb, lib/inversion/template/configtag.rb,
|
1992
|
+
| spec/inversion/template_spec.rb:
|
1993
|
+
| Untaint template contents if read from a file.
|
1994
|
+
| [daab04896e58]
|
1995
|
+
|
|
1996
|
+
o * lib/inversion/template/configtag.rb,
|
1997
|
+
| spec/inversion/template/configtag_spec.rb:
|
1998
|
+
| Forgot to add the config files to the repo! :)
|
1999
|
+
| [390eb0a3a6e4]
|
2000
|
+
|
|
2001
|
+
o * README.md, lib/inversion/mixins.rb, lib/inversion/renderstate.rb,
|
2002
|
+
| lib/inversion/template.rb, lib/inversion/template/node.rb,
|
2003
|
+
| lib/inversion/template/parser.rb,
|
2004
|
+
| spec/inversion/renderstate_spec.rb,
|
2005
|
+
| spec/inversion/template/node_spec.rb,
|
2006
|
+
| spec/inversion/template/parser_spec.rb,
|
2007
|
+
| spec/inversion/template_spec.rb:
|
2008
|
+
| - Added the <?config ?> tag.
|
2009
|
+
| - Changed the config variable 'raise_on_unknown' to
|
2010
|
+
| 'ignore_unknown_tags'.
|
2011
|
+
| - Added options to the renderstate and parserstate, so the config tag
|
2012
|
+
| can override.
|
2013
|
+
| - Added #on_append to the Node class, so nodes have an opportunity to
|
2014
|
+
| modify the parse state as they are being parsed.
|
2015
|
+
| [cacdac743e2f]
|
2016
|
+
|
|
1921
2017
|
2011-06-15 Michael Granger <ged@FaerieMUD.org>
|
1922
2018
|
|
1923
|
-
|
1924
|
-
|
1925
|
-
|
1926
|
-
|
1927
|
-
|
1928
|
-
|
1929
|
-
|
1930
|
-
|
1931
|
-
|
1932
|
-
|
1933
|
-
|
1934
|
-
|
1935
|
-
|
1936
|
-
|
1937
|
-
|
1938
|
-
|
1939
|
-
|
1940
|
-
|
1941
|
-
|
1942
|
-
|
1943
|
-
|
1944
|
-
|
1945
|
-
|
1946
|
-
|
1947
|
-
|
1948
|
-
|
1949
|
-
|
1950
|
-
|
1951
|
-
|
1952
|
-
|
1953
|
-
|
1954
|
-
|
1955
|
-
|
1956
|
-
|
1957
|
-
|
1958
|
-
|
1959
|
-
|
1960
|
-
|
2019
|
+
o * lib/inversion/exceptions.rb, lib/inversion/template.rb,
|
2020
|
+
| spec/inversion/template_spec.rb:
|
2021
|
+
| Adding configurable exception-handling to the render phase
|
2022
|
+
| [f336e4928b34]
|
2023
|
+
|
|
2024
|
+
o * lib/inversion/template/parser.rb:
|
2025
|
+
| Fixing bug in construction of trailing text node in
|
2026
|
+
| Inversion::Template::Parser
|
2027
|
+
| [1eba061a9a82]
|
2028
|
+
|
|
2029
|
+
o * lib/inversion/renderstate.rb, spec/inversion/renderstate_spec.rb:
|
2030
|
+
| Use Object#clone instead of #dup to preserve frozen-ness and
|
2031
|
+
| singleton methods on attribute objects
|
2032
|
+
| [9020a2fc1db5]
|
2033
|
+
|
|
2034
|
+
o * lib/inversion/template/commenttag.rb,
|
2035
|
+
| spec/inversion/template/commenttag_spec.rb:
|
2036
|
+
| Adding a comment tag
|
2037
|
+
| [9259443da186]
|
2038
|
+
|
|
2039
|
+
o * lib/inversion/template/node.rb:
|
2040
|
+
| Added linnum and colnum readers to Inversion::Template::Node
|
2041
|
+
| [e35d429943ca]
|
2042
|
+
|
|
2043
|
+
o * spec/inversion/template/fortag_spec.rb:
|
2044
|
+
| Aesthetic naming fix
|
2045
|
+
| [0b6afb5de2bf]
|
2046
|
+
|
|
2047
|
+
o * lib/inversion/renderstate.rb, lib/inversion/template.rb,
|
2048
|
+
| lib/inversion/template/attrtag.rb,
|
2049
|
+
| lib/inversion/template/calltag.rb, lib/inversion/template/fortag.rb,
|
2050
|
+
| lib/inversion/template/node.rb, spec/inversion/renderstate_spec.rb,
|
2051
|
+
| spec/inversion/template/calltag_spec.rb.orig,
|
2052
|
+
| spec/inversion/template/fortag_spec.rb,
|
2053
|
+
| spec/inversion/template_spec.rb:
|
2054
|
+
| Adding state to nodes, for attribute overlay
|
2055
|
+
| [d5a4256b2252]
|
2056
|
+
|
|
1961
2057
|
2011-06-08 Mahlon E. Smith <mahlon@martini.nu>
|
1962
2058
|
|
1963
|
-
|
1964
|
-
|
1965
|
-
|
1966
|
-
|
1967
|
-
|
1968
|
-
|
1969
|
-
|
1970
|
-
|
1971
|
-
|
1972
|
-
|
1973
|
-
|
1974
|
-
|
1975
|
-
|
1976
|
-
|
2059
|
+
o * .hgignore, lib/inversion/template.rb,
|
2060
|
+
| lib/inversion/template/attrtag.rb,
|
2061
|
+
| lib/inversion/template/calltag.rb,
|
2062
|
+
| lib/inversion/template/codetag.rb, lib/inversion/template/fortag.rb,
|
2063
|
+
| lib/inversion/template/node.rb, lib/inversion/template/parser.rb,
|
2064
|
+
| lib/inversion/template/tag.rb, lib/inversion/template/textnode.rb,
|
2065
|
+
| spec/inversion/template/node_spec.rb,
|
2066
|
+
| spec/inversion/template/parser_spec.rb,
|
2067
|
+
| spec/inversion/template/tag_spec.rb,
|
2068
|
+
| spec/inversion/template_spec.rb:
|
2069
|
+
| Add parse state information to tag objects for improved error
|
2070
|
+
| reporting. (Line numbers, column number, file name.)
|
2071
|
+
| [6cb1f242e538]
|
2072
|
+
|
|
1977
2073
|
2011-06-03 Mahlon E. Smith <mahlon@martini.nu>
|
1978
2074
|
|
1979
|
-
|
1980
|
-
|
1981
|
-
|
1982
|
-
|
1983
|
-
|
1984
|
-
|
1985
|
-
|
1986
|
-
|
1987
|
-
|
1988
|
-
|
1989
|
-
|
2075
|
+
o * README.md, lib/inversion/mixins.rb, lib/inversion/template.rb,
|
2076
|
+
| lib/inversion/template/containertag.rb,
|
2077
|
+
| lib/inversion/template/endtag.rb, lib/inversion/template/fortag.rb,
|
2078
|
+
| lib/inversion/template/node.rb, lib/inversion/template/parser.rb,
|
2079
|
+
| lib/inversion/template/tag.rb,
|
2080
|
+
| spec/inversion/template/containertag_spec.rb,
|
2081
|
+
| spec/inversion/template/node_spec.rb,
|
2082
|
+
| spec/inversion/template/parser_spec.rb:
|
2083
|
+
| Add scoping to the template parser.
|
2084
|
+
| [eca7f0156079]
|
2085
|
+
|
|
1990
2086
|
2011-06-01 Mahlon E. Smith <mahlon@martini.nu>
|
1991
2087
|
|
1992
|
-
|
1993
|
-
|
1994
|
-
|
1995
|
-
|
1996
|
-
|
2088
|
+
o * lib/inversion/template/fortag.rb,
|
2089
|
+
| spec/inversion/template/fortag_spec.rb:
|
2090
|
+
| Adding initial implementation of the "for" tag
|
2091
|
+
| [618d9df5f550]
|
2092
|
+
|
|
1997
2093
|
2011-05-27 Mahlon E. Smith <mahlon@martini.nu>
|
1998
2094
|
|
1999
|
-
|
2000
|
-
|
2001
|
-
|
2002
|
-
|
2003
|
-
|
2004
|
-
|
2005
|
-
|
2006
|
-
|
2007
|
-
|
2008
|
-
|
2009
|
-
|
2095
|
+
o * lib/inversion/monkeypatches.rb, lib/inversion/template/codetag.rb,
|
2096
|
+
| spec/inversion/monkeypatches_spec.rb:
|
2097
|
+
| Splitting out monkeypatches into a separate file
|
2098
|
+
| [6ac7016be589]
|
2099
|
+
|
|
2100
|
+
o * Rakefile, lib/inversion/template/calltag.rb,
|
2101
|
+
| lib/inversion/template/codetag.rb,
|
2102
|
+
| spec/inversion/template/calltag_spec.rb:
|
2103
|
+
| Adding 'call' tag parsing and evaluation
|
2104
|
+
| [9d22efa61e28]
|
2105
|
+
|
|
2010
2106
|
2011-05-11 Michael Granger <ged@FaerieMUD.org>
|
2011
2107
|
|
2012
|
-
|
2013
|
-
|
2014
|
-
|
2015
|
-
|
2016
|
-
|
2017
|
-
|
2018
|
-
|
2019
|
-
|
2020
|
-
|
2021
|
-
|
2022
|
-
|
2023
|
-
|
2024
|
-
|
2025
|
-
|
2026
|
-
|
2027
|
-
|
2028
|
-
|
2029
|
-
|
2108
|
+
o * .rvmrc, README.md, lib/inversion.rb, lib/inversion/template.rb,
|
2109
|
+
| lib/inversion/template/attrtag.rb,
|
2110
|
+
| lib/inversion/template/codetag.rb, lib/inversion/template/node.rb,
|
2111
|
+
| lib/inversion/template/parser.rb, lib/inversion/template/tag.rb,
|
2112
|
+
| lib/inversion/template/textnode.rb,
|
2113
|
+
| spec/inversion/template/attrtag_spec.rb,
|
2114
|
+
| spec/inversion/template/node_spec.rb,
|
2115
|
+
| spec/inversion/template/tag_spec.rb,
|
2116
|
+
| spec/inversion/template/textnode_spec.rb,
|
2117
|
+
| spec/inversion/template_spec.rb:
|
2118
|
+
| More work:
|
2119
|
+
| * Reworked the README to introduce what Inversion *is* first, rather
|
2120
|
+
| than starting off by explaining what it's *not*. Also: funny
|
2121
|
+
| examples.
|
2122
|
+
| * Added Configurability support.
|
2123
|
+
| * Added output-comment debugging.
|
2124
|
+
| [e82a185289d3]
|
2125
|
+
|
|
2030
2126
|
2011-04-27 Michael Granger <ged@FaerieMUD.org>
|
2031
2127
|
|
2032
|
-
|
2033
|
-
|
2034
|
-
|
2035
|
-
|
2036
|
-
|
2037
|
-
|
2038
|
-
|
2039
|
-
|
2040
|
-
|
2128
|
+
o * lib/inversion/template/attrtag.rb,
|
2129
|
+
| spec/inversion/template/attrtag_spec.rb:
|
2130
|
+
| Got attribute rendering working.
|
2131
|
+
| [94ec90e08413]
|
2132
|
+
|
|
2133
|
+
o * README.md:
|
2134
|
+
| Adding some tentative tag ideas to the README
|
2135
|
+
| [ee74ef4f58f0]
|
2136
|
+
|
|
2041
2137
|
2011-04-15 Michael Granger <ged@FaerieMUD.org>
|
2042
2138
|
|
2043
|
-
|
2044
|
-
|
2045
|
-
|
2046
|
-
|
2047
|
-
|
2048
|
-
|
2049
|
-
|
2050
|
-
|
2051
|
-
|
2052
|
-
|
2053
|
-
|
2054
|
-
|
2055
|
-
|
2056
|
-
|
2057
|
-
|
2058
|
-
|
2139
|
+
o * README.md, Rakefile, experiments/dumptemplate.rb,
|
2140
|
+
| lib/inversion/template.rb, lib/inversion/template/parser.rb,
|
2141
|
+
| lib/inversion/template/textnode.rb,
|
2142
|
+
| spec/inversion/template/parser_spec.rb,
|
2143
|
+
| spec/inversion/template_spec.rb:
|
2144
|
+
| New features:
|
2145
|
+
| * Inversion::Template:
|
2146
|
+
| - Added a ::load method for loading template by path.
|
2147
|
+
| * Inversion::Template::Parser:
|
2148
|
+
| - Added options
|
2149
|
+
| - Added option for raising an exception on an unknown tag
|
2150
|
+
| * Renamed TextNode#source to #body for consistency
|
2151
|
+
| * Added the beginnings of a command-line utility for dumping the node
|
2152
|
+
| tree of a template
|
2153
|
+
| [3ced66ae330d]
|
2154
|
+
|
|
2059
2155
|
2011-04-13 Michael Granger <ged@FaerieMUD.org>
|
2060
2156
|
|
2061
|
-
|
2062
|
-
|
2063
|
-
|
2064
|
-
|
2065
|
-
|
2066
|
-
|
2067
|
-
|
2068
|
-
|
2157
|
+
o * experiments/custom_enumerator.rb, experiments/pi_to_methods.rb,
|
2158
|
+
| lib/inversion/template.rb, lib/inversion/template/attrtag.rb,
|
2159
|
+
| lib/inversion/template/calltag.rb,
|
2160
|
+
| lib/inversion/template/codetag.rb, lib/inversion/template/node.rb,
|
2161
|
+
| lib/inversion/template/textnode.rb, spec/inversion/template_spec.rb:
|
2162
|
+
| Added rendering, template attributes, attribute accessors
|
2163
|
+
| [1ad1e0c91065]
|
2164
|
+
|
|
2069
2165
|
2011-04-12 Michael Granger <ged@FaerieMUD.org>
|
2070
2166
|
|
2071
|
-
|
2072
|
-
|
2073
|
-
|
2074
|
-
|
2075
|
-
|
2076
|
-
|
2077
|
-
|
2078
|
-
|
2079
|
-
|
2080
|
-
|
2081
|
-
|
2082
|
-
|
2083
|
-
|
2084
|
-
|
2085
|
-
|
2086
|
-
|
2167
|
+
o * README.md:
|
2168
|
+
| Adding Mahlon to the copyright statement in the README
|
2169
|
+
| [7753d3c9b470]
|
2170
|
+
|
|
2171
|
+
o * README.md, Rakefile:
|
2172
|
+
|\ Merged with dc16cc877dfc, updated README
|
2173
|
+
| | [0fdf3122bf7c]
|
2174
|
+
| |
|
2175
|
+
| o * README.md, experiments/erb_scope_bleed.rb:
|
2176
|
+
| | Fleshing out the README, adding scope-bleedover example
|
2177
|
+
| | [f44b597af8bd]
|
2178
|
+
| |
|
2179
|
+
| o * lib/inversion.rb:
|
2180
|
+
| | Removing checked-in revision value
|
2181
|
+
| | [773feca505b8]
|
2182
|
+
| |
|
2087
2183
|
2011-04-06 Michael Granger <ged@FaerieMUD.org>
|
2088
2184
|
|
2089
|
-
|
2090
|
-
|
2091
|
-
|
2092
|
-
|
2093
|
-
|
2094
|
-
|
2095
|
-
|
2096
|
-
|
2097
|
-
|
2098
|
-
|
2099
|
-
|
2100
|
-
|
2101
|
-
|
2102
|
-
|
2103
|
-
|
2104
|
-
|
2105
|
-
|
2106
|
-
|
2107
|
-
|
2108
|
-
|
2109
|
-
|
2185
|
+
o | * .irbrc, Rakefile, experiments/ripper_spike.rb, lib/inversion.rb,
|
2186
|
+
| | lib/inversion/exceptions.rb, lib/inversion/mixins.rb,
|
2187
|
+
| | lib/inversion/template.rb, lib/inversion/template/attr_tag.rb,
|
2188
|
+
| | lib/inversion/template/attrtag.rb,
|
2189
|
+
| | lib/inversion/template/calltag.rb,
|
2190
|
+
| | lib/inversion/template/codetag.rb, lib/inversion/template/node.rb,
|
2191
|
+
| | lib/inversion/template/parser.rb, lib/inversion/template/tag.rb,
|
2192
|
+
| | lib/inversion/template/textnode.rb, lib/inversion/utils.rb,
|
2193
|
+
| | spec/inversion/template/attr_tag_spec.rb,
|
2194
|
+
| | spec/inversion/template/attrtag_spec.rb,
|
2195
|
+
| | spec/inversion/template/calltag_spec.rb,
|
2196
|
+
| | spec/inversion/template/codetag_spec.rb,
|
2197
|
+
| | spec/inversion/template/node_spec.rb,
|
2198
|
+
| | spec/inversion/template/parser_spec.rb,
|
2199
|
+
| | spec/inversion/template/tag_spec.rb,
|
2200
|
+
| | spec/inversion/template/textnode_spec.rb,
|
2201
|
+
| | spec/inversion/template_spec.rb, spec/inversion_spec.rb,
|
2202
|
+
| | spec/lib/constants.rb, spec/lib/helpers.rb:
|
2203
|
+
| | Adding parsed tag bodies.
|
2204
|
+
| | [dc16cc877dfc]
|
2205
|
+
| |
|
2110
2206
|
2011-03-18 Michael Granger <ged@FaerieMUD.org>
|
2111
2207
|
|
2112
|
-
|
2113
|
-
|
2114
|
-
|
2115
|
-
|
2116
|
-
|
2117
|
-
|
2118
|
-
|
2208
|
+
o | * Merging with b50fef00621b
|
2209
|
+
|\ \ [861b21a30656]
|
2210
|
+
| | |
|
2211
|
+
| o | * lib/inversion.rb:
|
2212
|
+
| |/ Clearing Revision tag
|
2213
|
+
| | [cdacb5f98f93]
|
2214
|
+
| |
|
2119
2215
|
2011-02-07 Mahlon E. Smith <mahlon@martini.nu>
|
2120
2216
|
|
2121
|
-
|
2122
|
-
|
2123
|
-
|
2124
|
-
|
2125
|
-
|
2126
|
-
|
2127
|
-
|
2128
|
-
|
2129
|
-
|
2130
|
-
|
2131
|
-
|
2132
|
-
|
2133
|
-
|
2217
|
+
o | * lib/inversion/template.rb, lib/inversion/template/attr_tag.rb,
|
2218
|
+
|/ lib/inversion/template/tag.rb,
|
2219
|
+
| spec/inversion/template/attr_tag_spec.rb,
|
2220
|
+
| spec/inversion/template/tag_spec.rb,
|
2221
|
+
| spec/inversion/template_spec.rb:
|
2222
|
+
| Checkpoint, fleshing out Tags.
|
2223
|
+
| [4a4fc3f1dc14]
|
2224
|
+
|
|
2225
|
+
o * lib/inversion.rb, lib/inversion/template.rb,
|
2226
|
+
| spec/inversion/template_spec.rb, spec/inversion_spec.rb:
|
2227
|
+
| Totally awesome templating system DONE. Now: profit!
|
2228
|
+
| [b50fef00621b]
|
2229
|
+
|
|
2134
2230
|
2011-02-04 Mahlon E. Smith <mahlon@martini.nu>
|
2135
2231
|
|
2136
|
-
|
2137
|
-
|
2138
|
-
|
2139
|
-
|
2140
|
-
|
2232
|
+
o * experiments/pi_to_methods.rb, experiments/ripper_spike.rb,
|
2233
|
+
| lib/inversion.rb:
|
2234
|
+
| Added experiments
|
2235
|
+
| [77d6892cd988]
|
2236
|
+
|
|
2141
2237
|
2011-02-02 Mahlon E. Smith <mahlon@martini.nu>
|
2142
2238
|
|
2143
|
-
|
2144
|
-
|
2145
|
-
|
2146
|
-
|
2239
|
+
o * .hgignore, .rvmrc, History.md, Manifest.txt, README.md, Rakefile,
|
2240
|
+
lib/inversion.rb, spec/inversion_spec.rb:
|
2241
|
+
Project setup.
|
2242
|
+
[1020dbbfb52c]
|