strelka 0.18.0 → 0.19.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data.tar.gz.sig +0 -0
  4. data/History.rdoc +24 -0
  5. data/IDEAS.rdoc +0 -1
  6. data/README.rdoc +12 -6
  7. data/Rakefile +4 -94
  8. data/lib/strelka.rb +1 -1
  9. data/lib/strelka/app.rb +2 -3
  10. data/lib/strelka/app/parameters.rb +3 -12
  11. data/lib/strelka/app/restresources.rb +0 -3
  12. data/lib/strelka/cookie.rb +1 -1
  13. data/lib/strelka/mixins.rb +1 -1
  14. data/lib/strelka/multirunner.rb +34 -11
  15. data/lib/strelka/paramvalidator.rb +22 -45
  16. data/lib/strelka/session/default.rb +1 -1
  17. data/spec/strelka/app/parameters_spec.rb +1 -27
  18. data/spec/strelka/app_spec.rb +0 -12
  19. data/spec/strelka/mixins_spec.rb +0 -10
  20. data/spec/strelka/paramvalidator_spec.rb +4 -54
  21. metadata +51 -143
  22. metadata.gz.sig +0 -0
  23. data/.gemtest +0 -0
  24. data/ChangeLog +0 -3824
  25. data/MILESTONES.rdoc +0 -24
  26. data/Manifest.txt +0 -144
  27. data/contrib/hoetemplate/History.rdoc.erb +0 -4
  28. data/contrib/hoetemplate/Manifest.txt.erb +0 -8
  29. data/contrib/hoetemplate/README.rdoc.erb +0 -35
  30. data/contrib/hoetemplate/Rakefile.erb +0 -24
  31. data/contrib/hoetemplate/data/project/apps/file_name_app +0 -37
  32. data/contrib/hoetemplate/data/project/templates/layout.tmpl.erb +0 -13
  33. data/contrib/hoetemplate/data/project/templates/top.tmpl.erb +0 -8
  34. data/contrib/hoetemplate/lib/file_name.rb.erb +0 -15
  35. data/contrib/hoetemplate/spec/file_name_spec.rb.erb +0 -21
  36. data/contrib/strelka-dogs/doggie6.svg +0 -271
  37. data/contrib/strelka-dogs/doggie7.svg +0 -49
  38. data/examples/Procfile +0 -9
  39. data/examples/apps/auth-demo +0 -29
  40. data/examples/apps/auth-demo2 +0 -37
  41. data/examples/apps/hello-world +0 -30
  42. data/examples/apps/sessions-demo +0 -42
  43. data/examples/apps/upload-demo +0 -74
  44. data/examples/apps/ws-chat +0 -69
  45. data/examples/apps/ws-echo +0 -61
  46. data/examples/config.yml +0 -33
  47. data/examples/gen-config.rb +0 -52
  48. data/examples/static/examples.css +0 -4
  49. data/examples/static/examples.html +0 -33
  50. data/examples/strelka.conf.example +0 -51
  51. data/examples/templates/auth-form.tmpl +0 -14
  52. data/examples/templates/auth-success.tmpl +0 -5
  53. data/examples/templates/layout.tmpl +0 -31
  54. data/examples/templates/upload-form.tmpl +0 -17
  55. data/examples/templates/upload-success.tmpl +0 -13
metadata.gz.sig CHANGED
Binary file
data/.gemtest DELETED
File without changes
data/ChangeLog DELETED
@@ -1,3824 +0,0 @@
1
- 2019-09-18 Mahlon E. Smith <mahlon@martini.nu>
2
-
3
- @ * .hgsigs:
4
- | Added signature for changeset cb93b1af991d
5
- | [c030e3247c99] [tip]
6
- |
7
- o * .hgtags:
8
- | Added tag v0.17.0 for changeset c212307d6550
9
- | [cb93b1af991d]
10
- |
11
- o * History.rdoc, lib/strelka.rb:
12
- | Update for release.
13
- | [c212307d6550] [v0.17.0]
14
- |
15
- 2019-09-18 Michael Granger <ged@FaerieMUD.org>
16
-
17
- o * lib/strelka/httpresponse/negotiation.rb:
18
- | Don't double-stringify negotiated response bodies
19
- | [d12879aa565f]
20
- |
21
- o * lib/strelka/testing.rb, spec/strelka/testing_spec.rb:
22
- | Remove references to `last_response`.
23
- |
24
- | This was an artifact of being written originally for Rake-Test,
25
- | where the response is an implicit variable/method.
26
- | [ba221bf72a44]
27
- |
28
- 2019-09-11 Michael Granger <ged@FaerieMUD.org>
29
-
30
- o * lib/strelka/authprovider.rb, lib/strelka/command/start.rb,
31
- | lib/strelka/constants.rb, spec/helpers.rb:
32
- | Add an --isolate switch to the start command
33
- | [2f9c17865a66]
34
- |
35
- 2019-09-05 Michael Granger <ged@FaerieMUD.org>
36
-
37
- o * .build.yml:
38
- | Fix the zmq package names in the build manifest
39
- | [87dae6bd4ea1]
40
- |
41
- o * .build.yml:
42
- | Add a build manifest
43
- | [05bfca72174c]
44
- |
45
- o * Gemfile, gem.deps.rb:
46
- | Change to Rubygems deps file
47
- | [5102345959e9]
48
- |
49
- 2019-08-30 Michael Granger <ged@FaerieMUD.org>
50
-
51
- o * History.rdoc:
52
- | Remove reference to removed strelka subcommand
53
- | [2fca4022b8d1]
54
- |
55
- o * lib/strelka/app/auth.rb:
56
- | par(1) some long documentation lines
57
- | [7c01e3af1122]
58
- |
59
- 2019-08-28 Mahlon E. Smith <mahlon@martini.nu>
60
-
61
- o * cert/mahlon.pem, lib/strelka/command/start.rb:
62
- | Add a means to run multiple handlers from the strelka launcher.
63
- | [c6a7ae3b7060]
64
- |
65
- 2019-08-23 Michael Granger <ged@FaerieMUD.org>
66
-
67
- o * lib/strelka/testing.rb, strelka.gemspec:
68
- | Add a missing require
69
- | [9240a5fe9a3f]
70
- |
71
- 2019-08-15 Michael Granger <ged@FaerieMUD.org>
72
-
73
- o * .hgtags:
74
- | Added tag v0.16.0 for changeset 7000eb609abe
75
- | [84f0d95a2368]
76
- |
77
- o * .hgsigs:
78
- | Added signature for changeset 32406f428655
79
- | [7000eb609abe] [v0.16.0]
80
- |
81
- o * History.rdoc, lib/strelka.rb:
82
- | Bump the minor version, update history.
83
- | [32406f428655]
84
- |
85
- 2019-08-10 Michael Granger <ged@FaerieMUD.org>
86
-
87
- o * lib/strelka/testing.rb, spec/strelka/testing_spec.rb:
88
- | Make the JSON matcher handle vendor subtypes
89
- | [33bb8d8c2f70]
90
- |
91
- o * .hoerc, Manifest.txt, lib/strelka/app.rb, lib/strelka/testing.rb,
92
- | spec/strelka/testing_spec.rb:
93
- | Add some more matcher types to testing with specs
94
- | [f1a6528271d3]
95
- |
96
- o * lib/strelka/testing.rb, spec/strelka/testing_spec.rb:
97
- | Add more spec matchers to the testing library
98
- | [c091b2a361de]
99
- |
100
- o * lib/strelka/plugins.rb, spec/strelka/plugins_spec.rb:
101
- | Add initial implementation of plugin-config block syntax
102
- | [1d8fddc1eb9b]
103
- |
104
- o * cert/ged.pem:
105
- | Update my gem-signing cert
106
- | [bffff254c565]
107
- |
108
- o * lib/strelka/httpresponse.rb,
109
- | spec/strelka/httpresponse/negotiation_spec.rb,
110
- | spec/strelka/httpresponse_spec.rb,
111
- | spec/strelka/multipartparser_spec.rb,
112
- | spec/strelka/paramvalidator_spec.rb:
113
- | Fix some more frozen-string issues
114
- | [ed98b57c1e9a]
115
- |
116
- 2019-08-07 Michael Granger <ged@FaerieMUD.org>
117
-
118
- o * lib/strelka/httprequest.rb, lib/strelka/paramvalidator.rb,
119
- | lib/strelka/websocketserver/routing.rb, spec/helpers.rb:
120
- | Clean up some warnings
121
- | [89b12125e2b6]
122
- |
123
- o * lib/strelka/app.rb, lib/strelka/app/auth.rb,
124
- | lib/strelka/app/restresources.rb, lib/strelka/app/routing.rb,
125
- | lib/strelka/multipartparser.rb, lib/strelka/paramvalidator.rb,
126
- | lib/strelka/plugins.rb:
127
- | Fix mutable-string code
128
- | [f64de18ba876]
129
- |
130
- o * .hgignore, contrib/hoetemplate/spec/file_name_spec.rb.erb,
131
- | lib/strelka/behavior/plugin.rb, spec/helpers.rb,
132
- | spec/strelka/app/auth_spec.rb, spec/strelka/app/errors_spec.rb,
133
- | spec/strelka/app/filters_spec.rb,
134
- | spec/strelka/app/negotiation_spec.rb,
135
- | spec/strelka/app/parameters_spec.rb,
136
- | spec/strelka/app/restresources_spec.rb,
137
- | spec/strelka/app/routing_spec.rb, spec/strelka/app/sessions_spec.rb,
138
- | spec/strelka/app/templating_spec.rb, spec/strelka/app_spec.rb,
139
- | spec/strelka/authprovider/basic_spec.rb,
140
- | spec/strelka/authprovider/hostaccess_spec.rb,
141
- | spec/strelka/authprovider_spec.rb, spec/strelka/cli_spec.rb,
142
- | spec/strelka/cookie_spec.rb, spec/strelka/cookieset_spec.rb,
143
- | spec/strelka/discovery_spec.rb, spec/strelka/exceptions_spec.rb,
144
- | spec/strelka/httprequest/acceptparams_spec.rb,
145
- | spec/strelka/httprequest/auth_spec.rb,
146
- | spec/strelka/httprequest/negotiation_spec.rb,
147
- | spec/strelka/httprequest/session_spec.rb,
148
- | spec/strelka/httprequest_spec.rb,
149
- | spec/strelka/httpresponse/negotiation_spec.rb,
150
- | spec/strelka/httpresponse/session_spec.rb,
151
- | spec/strelka/httpresponse_spec.rb, spec/strelka/mixins_spec.rb,
152
- | spec/strelka/multipartparser_spec.rb,
153
- | spec/strelka/paramvalidator_spec.rb, spec/strelka/plugins_spec.rb,
154
- | spec/strelka/router/default_spec.rb,
155
- | spec/strelka/router/exclusive_spec.rb, spec/strelka/router_spec.rb,
156
- | spec/strelka/session/db_spec.rb,
157
- | spec/strelka/session/default_spec.rb, spec/strelka/session_spec.rb,
158
- | spec/strelka/websocketserver/heartbeat_spec.rb,
159
- | spec/strelka/websocketserver/routing_spec.rb,
160
- | spec/strelka/websocketserver_spec.rb, spec/strelka_spec.rb:
161
- | Modernize RSpec setup
162
- | [e11abe5fabd9]
163
- |
164
- o * contrib/hoetemplate/lib/file_name.rb.erb, examples/apps/auth-demo,
165
- | examples/apps/auth-demo2, examples/apps/sessions-demo, examples/gen-
166
- | config.rb, lib/strelka.rb, lib/strelka/app.rb,
167
- | lib/strelka/app/auth.rb, lib/strelka/app/errors.rb,
168
- | lib/strelka/app/filters.rb, lib/strelka/app/negotiation.rb,
169
- | lib/strelka/app/parameters.rb, lib/strelka/app/restresources.rb,
170
- | lib/strelka/app/routing.rb, lib/strelka/app/sessions.rb,
171
- | lib/strelka/app/templating.rb, lib/strelka/authprovider.rb,
172
- | lib/strelka/authprovider/basic.rb,
173
- | lib/strelka/authprovider/hostaccess.rb,
174
- | lib/strelka/behavior/plugin.rb, lib/strelka/cli.rb,
175
- | lib/strelka/command/config.rb, lib/strelka/command/discover.rb,
176
- | lib/strelka/command/start.rb, lib/strelka/constants.rb,
177
- | lib/strelka/cookie.rb, lib/strelka/cookieset.rb,
178
- | lib/strelka/discovery.rb, lib/strelka/httprequest.rb,
179
- | lib/strelka/httprequest/acceptparams.rb,
180
- | lib/strelka/httprequest/auth.rb,
181
- | lib/strelka/httprequest/negotiation.rb,
182
- | lib/strelka/httprequest/session.rb, lib/strelka/httpresponse.rb,
183
- | lib/strelka/httpresponse/negotiation.rb,
184
- | lib/strelka/httpresponse/session.rb, lib/strelka/mixins.rb,
185
- | lib/strelka/multipartparser.rb, lib/strelka/paramvalidator.rb,
186
- | lib/strelka/plugins.rb, lib/strelka/router.rb,
187
- | lib/strelka/router/default.rb, lib/strelka/router/exclusive.rb,
188
- | lib/strelka/session.rb, lib/strelka/session/db.rb,
189
- | lib/strelka/session/default.rb, lib/strelka/testing.rb,
190
- | lib/strelka/websocketserver.rb,
191
- | lib/strelka/websocketserver/heartbeat.rb,
192
- | lib/strelka/websocketserver/routing.rb, spec/constants.rb,
193
- | spec/helpers.rb, spec/strelka/app/auth_spec.rb,
194
- | spec/strelka/app/errors_spec.rb, spec/strelka/app/filters_spec.rb,
195
- | spec/strelka/app/negotiation_spec.rb,
196
- | spec/strelka/app/parameters_spec.rb,
197
- | spec/strelka/app/restresources_spec.rb,
198
- | spec/strelka/app/routing_spec.rb, spec/strelka/app/sessions_spec.rb,
199
- | spec/strelka/app/templating_spec.rb, spec/strelka/app_spec.rb,
200
- | spec/strelka/authprovider/basic_spec.rb,
201
- | spec/strelka/authprovider/hostaccess_spec.rb,
202
- | spec/strelka/authprovider_spec.rb, spec/strelka/cli_spec.rb,
203
- | spec/strelka/cookie_spec.rb, spec/strelka/cookieset_spec.rb,
204
- | spec/strelka/discovery_spec.rb, spec/strelka/exceptions_spec.rb,
205
- | spec/strelka/httprequest/acceptparams_spec.rb,
206
- | spec/strelka/httprequest/auth_spec.rb,
207
- | spec/strelka/httprequest/negotiation_spec.rb,
208
- | spec/strelka/httprequest/session_spec.rb,
209
- | spec/strelka/httprequest_spec.rb,
210
- | spec/strelka/httpresponse/negotiation_spec.rb,
211
- | spec/strelka/httpresponse/session_spec.rb,
212
- | spec/strelka/httpresponse_spec.rb, spec/strelka/mixins_spec.rb,
213
- | spec/strelka/multipartparser_spec.rb,
214
- | spec/strelka/paramvalidator_spec.rb, spec/strelka/plugins_spec.rb,
215
- | spec/strelka/router/default_spec.rb,
216
- | spec/strelka/router/exclusive_spec.rb, spec/strelka/router_spec.rb,
217
- | spec/strelka/session/db_spec.rb,
218
- | spec/strelka/session/default_spec.rb, spec/strelka/session_spec.rb,
219
- | spec/strelka/websocketserver/heartbeat_spec.rb,
220
- | spec/strelka/websocketserver/routing_spec.rb,
221
- | spec/strelka/websocketserver_spec.rb, spec/strelka_spec.rb:
222
- | Make file headers consistent, add frozen pragma
223
- | [9861654e3f75]
224
- |
225
- o * Rakefile:
226
- | Add setup subcommand to bin/strelka
227
- | [f9324e9cc4df]
228
- |
229
- 2019-06-26 Michael Granger <ged@FaerieMUD.org>
230
-
231
- o * spec/strelka/cli_spec.rb:
232
- | Squelch logging message during specs
233
- | [449546a17545]
234
- |
235
- o * .pryrc, Rakefile, spec/strelka/app/auth_spec.rb:
236
- | Update to the latest Ruby-Mongrel2 and fix a spec
237
- | [c1b7275fc6df]
238
- |
239
- 2019-05-03 Michael Granger <ged@FaerieMUD.org>
240
-
241
- o * lib/strelka/websocketserver.rb, spec/helpers.rb,
242
- | spec/strelka/websocketserver_spec.rb:
243
- | Add WebSocketServer#broadcast convenience method.
244
- | [f5170e24f13e]
245
- |
246
- o * lib/strelka/websocketserver.rb,
247
- | lib/strelka/websocketserver/heartbeat.rb,
248
- | lib/strelka/websocketserver/routing.rb,
249
- | spec/strelka/websocketserver/routing_spec.rb,
250
- | spec/strelka/websocketserver_spec.rb, strelka.gemspec:
251
- | Update websocketserver with improvements from Mongrel2::WebSocket
252
- | [75336672468e]
253
- |
254
- 2019-08-07 Michael Granger <ged@FaerieMUD.org>
255
-
256
- o * spec/strelka/httprequest_spec.rb:
257
- | Add a spec for the bugfix in 6e2d1e0e89d1
258
- | [ff37d63bee1a]
259
- |
260
- o * lib/strelka/httprequest.rb:
261
- |\ Merge in stray bugfix branch
262
- | | [4f89978bd67b]
263
- | |
264
- 2019-02-20 Michael Granger <ged@FaerieMUD.org>
265
-
266
- | o * .ruby-version, Manifest.txt:
267
- | | Bump Ruby to 2.6, add missing manifest entries.
268
- | | [4726fae37ebd]
269
- | |
270
- 2018-07-23 Michael Granger <ged@FaerieMUD.org>
271
-
272
- | o * lib/strelka/websocketserver.rb,
273
- | | lib/strelka/websocketserver/heartbeat.rb,
274
- | | lib/strelka/websocketserver/routing.rb,
275
- | | spec/strelka/websocketserver/heartbeat_spec.rb,
276
- | | spec/strelka/websocketserver/routing_spec.rb,
277
- | | spec/strelka/websocketserver_spec.rb:
278
- | | Add connection-management and middleware to webserversocket.
279
- | | [b04ccf8c8a6c]
280
- | |
281
- | o * .ruby-version, spec/strelka/app/routing_spec.rb,
282
- | | spec/strelka/app_spec.rb:
283
- | | Fix some specs for CZTop-Reactor.
284
- | | [2b44ec74d987]
285
- | |
286
- 2017-11-15 Michael Granger <ged@FaerieMUD.org>
287
-
288
- | o * .ruby-version, Rakefile, lib/strelka/app/restresources.rb,
289
- | | spec/strelka/app/restresources_spec.rb, strelka.gemspec:
290
- | | Update the restresources plugin for Mongrel 0.51/Sequel 5
291
- | | [91255f2ddbaa]
292
- | |
293
- | o * lib/strelka.rb, spec/strelka_spec.rb:
294
- | | Backport flexible config-loading
295
- | | [fba2c97274c9]
296
- | |
297
- | o * lib/strelka/mixins.rb, spec/strelka/mixins_spec.rb:
298
- | | Backport MethodUtilities addiions to mixins module
299
- | | [0d9b2eaed41c]
300
- | |
301
- 2017-06-14 Michael Granger <ged@FaerieMUD.org>
302
-
303
- | o * .hgtags:
304
- | | Added tag v0.15.0 for changeset f781fa12bdb6
305
- | | [7e659cf4f6f4]
306
- | |
307
- | o * .hgsigs:
308
- | | Added signature for changeset 670190273d27
309
- | | [f781fa12bdb6] [v0.15.0]
310
- | |
311
- | o * History.rdoc, lib/strelka.rb:
312
- | | Bump minor version, update history.
313
- | | [670190273d27]
314
- | |
315
- | o * .tm_properties, lib/strelka/discovery.rb,
316
- | | spec/strelka/discovery_spec.rb:
317
- | | Warn instead of raising on duplicate app names during discover.
318
- | | [d8b7deb2e070]
319
- | |
320
- 2017-05-31 Mahlon E. Smith <mahlon@martini.nu>
321
-
322
- | o * spec/strelka/app_spec.rb, spec/strelka/discovery_spec.rb:
323
- | | Fix tests for discovery loader, mock zmq poller.
324
- | | [dbe28e0e407c]
325
- | |
326
- | o * lib/strelka/discovery.rb, spec/strelka/app_spec.rb,
327
- | | spec/strelka/discovery_spec.rb, spec/strelka/exceptions_spec.rb,
328
- | | spec/strelka/websocketserver_spec.rb:
329
- | | Have Discovery load the last subclass instead of the first, to
330
- | | support classes that inherit from Strelka::App.
331
- | | [e90ecc97e78c]
332
- | |
333
- 2017-05-24 Mahlon E. Smith <mahlon@martini.nu>
334
-
335
- | o * lib/strelka/command/start.rb:
336
- | | Load configuration from the global options in the 'start' cli
337
- | | command.
338
- | | [e0744ecac370]
339
- | |
340
- 2017-01-19 Michael Granger <ged@FaerieMUD.org>
341
-
342
- | o * .hgtags:
343
- | | Added tag v0.14.0 for changeset 8a6b1bb961ba
344
- | | [844003989c8a]
345
- | |
346
- | o * .hgsigs:
347
- | | Added signature for changeset e44936a1b4ac
348
- | | [8a6b1bb961ba] [v0.14.0]
349
- | |
350
- | o * History.rdoc, lib/strelka.rb:
351
- | | Bump the minor version, update history.
352
- | | [e44936a1b4ac]
353
- | |
354
- | o * Rakefile, lib/strelka.rb, lib/strelka/app.rb,
355
- | | lib/strelka/multipartparser.rb:
356
- | | Bump Inversion dependency, fix a few small issues
357
- | |
358
- | | - Fix devmode when $DEBUG is set
359
- | | - Fix spooldir when explicitly unconfigured.
360
- | | [0fc4cd3ec733]
361
- | |
362
- | o * lib/strelka/app.rb, lib/strelka/discovery.rb,
363
- | | lib/strelka/multipartparser.rb:
364
- | | Change Strelka configuration to use 3.x syntax/naming
365
- | | [72c4fff2f719]
366
- | |
367
- | o * lib/strelka.rb, lib/strelka/cli.rb, lib/strelka/command/config.rb,
368
- | | lib/strelka/discovery.rb, spec/strelka/app/templating_spec.rb:
369
- | | Fix discovery for newer versions of Rubygems.
370
- | | [735478b87714]
371
- | |
372
- 2017-01-17 Michael Granger <ged@FaerieMUD.org>
373
-
374
- | o * Rakefile, strelka.gemspec:
375
- | |\ Merge dependency fix
376
- | | | [41dc4bad2048]
377
- | | |
378
- 2016-11-05 Michael Granger <ged@FaerieMUD.org>
379
-
380
- | | o * Rakefile, strelka.gemspec:
381
- | | | Add missing 'gli' dependency.
382
- | | | [b5996b9f1e8b]
383
- | | |
384
- 2017-01-16 Mahlon E. Smith <mahlon@laika.com>
385
-
386
- | o | * .hgtags:
387
- | | | Added tag v0.13.0 for changeset 5b9e7c9e3cc7
388
- | | | [1b3e0578defc]
389
- | | |
390
- | o | * .hgsigs:
391
- | | | Added signature for changeset 8f1805dd4657
392
- | | | [5b9e7c9e3cc7] [v0.13.0]
393
- | | |
394
- 2017-01-16 Mahlon E. Smith <mahlon@martini.nu>
395
-
396
- | o | * .gems, .ruby-gemset, .ruby-version, .rvmrc, History.rdoc, Rakefile,
397
- | |/ lib/strelka.rb:
398
- | | Migrate away from .rvmrc, bump Configurability dependency.
399
- | | [8f1805dd4657]
400
- | |
401
- 2016-11-05 Michael Granger <ged@FaerieMUD.org>
402
-
403
- | o * cert/ged.pem:
404
- | | Replace my cert with the newest one
405
- | | [b0022c0669af]
406
- | |
407
- | o * .hgtags:
408
- | | Added tag v0.12.0 for changeset 2c4ffd978af6
409
- | | [39171f5d993b]
410
- | |
411
- | o * .hgsigs:
412
- | | Added signature for changeset d7a7144b3fd9
413
- | | [2c4ffd978af6] [v0.12.0]
414
- | |
415
- | o * History.rdoc, Rakefile, lib/strelka.rb, lib/strelka/cli.rb,
416
- | | lib/strelka/discovery.rb:
417
- | | Bump minor version, update history.
418
- | | [d7a7144b3fd9]
419
- | |
420
- | o * README.rdoc, lib/strelka/discovery.rb:
421
- | | Added docs for discovery
422
- | | [4e4cbd2df5d5]
423
- | |
424
- 2016-11-03 Michael Granger <ged@FaerieMUD.org>
425
-
426
- | o * Manifest.txt, Rakefile, bin/strelka, lib/strelka/cli.rb,
427
- | | lib/strelka/command/config.rb, lib/strelka/command/discover.rb,
428
- | | lib/strelka/command/start.rb, spec/strelka/cli_spec.rb,
429
- | | strelka.gemspec:
430
- | | Convert CLI tools to GLI
431
- | | [1689daee227f]
432
- | |
433
- 2016-03-16 Michael Granger <ged@FaerieMUD.org>
434
-
435
- | o * .gems, lib/strelka.rb, lib/strelka/discovery.rb,
436
- | | spec/strelka/discovery_spec.rb, spec/strelka_spec.rb:
437
- | | Use Rubygems-style files for app discovery
438
- | | [c3b52b89fd0a]
439
- | |
440
- 2016-01-20 Michael Granger <ged@FaerieMUD.org>
441
-
442
- | o * README.rdoc:
443
- | | Update the copyright dates in the README.
444
- | | [b2615b901b80]
445
- | |
446
- | o * .hgtags:
447
- | | Added tag v0.11.0 for changeset 375149784c6d
448
- | | [fb2cff04181a]
449
- | |
450
- | o * .hgsigs:
451
- | | Added signature for changeset d794173d505f
452
- | | [375149784c6d] [v0.11.0]
453
- | |
454
- | o * History.rdoc, lib/strelka.rb:
455
- | | Bump the minor version, update History.
456
- | | [d794173d505f]
457
- | |
458
- 2015-12-29 Mahlon E. Smith <mahlon@martini.nu>
459
-
460
- | o * lib/strelka/app/auth.rb, lib/strelka/authprovider.rb,
461
- | | spec/strelka/app/auth_spec.rb:
462
- | | If authentication fails, throw from the request processing path
463
- | | instead of the authprovider API.
464
- | | [4ec61e15b3b3]
465
- | |
466
- 2015-11-18 Michael Granger <ged@FaerieMUD.org>
467
-
468
- | o * lib/strelka/app/auth.rb, lib/strelka/httprequest/auth.rb,
469
- | | lib/strelka/mixins.rb, lib/strelka/testing.rb,
470
- | | spec/strelka/app/auth_spec.rb,
471
- | | spec/strelka/httprequest/auth_spec.rb:
472
- | | Add a mechanism for deferring authentication to request handlers
473
- | | [92cfae454ef1]
474
- | |
475
- | o * lib/strelka/app/auth.rb, spec/strelka/app/auth_spec.rb:
476
- | | Back out the auth hook before adding deferred auth
477
- | | [62beb1c355cb]
478
- | |
479
- 2015-11-16 Michael Granger <ged@FaerieMUD.org>
480
-
481
- | o * lib/strelka/session/db.rb:
482
- | | Fix Sqlite session table schema
483
- | | [ee4051a888a1]
484
- | |
485
- | o * spec/strelka/httprequest/acceptparams_spec.rb,
486
- | | spec/strelka/router_spec.rb:
487
- | | Fix empty raise_error()s
488
- | | [142dd3a71307]
489
- | |
490
- 2015-10-01 Mahlon E. Smith <mahlon@laika.com>
491
-
492
- | o * .hgsigs:
493
- | | Added signature for changeset 2e4e4c78a588
494
- | | [50bc1d12bad4]
495
- | |
496
- | o * .hgtags:
497
- | | Added tag v0.10.0 for changeset 2aae0e98c859
498
- | | [2e4e4c78a588]
499
- | |
500
- 2015-10-01 Mahlon E. Smith <mahlon@martini.nu>
501
-
502
- | o * History.rdoc, lib/strelka.rb:
503
- | | Bump version.
504
- | | [2aae0e98c859] [v0.10.0]
505
- | |
506
- | o * lib/strelka/app/auth.rb, spec/strelka/app/auth_spec.rb:
507
- | | Provide a built-in method for optional route auth to the
508
- | | authentication plugin.
509
- | | [283577340c31]
510
- | |
511
- 2015-09-20 Michael Granger <ged@FaerieMUD.org>
512
-
513
- | o * cert/mahlon.pem:
514
- | |\ Merge with 093cea5ea618
515
- | | | [55d4b5210da6]
516
- | | |
517
- 2015-04-01 Michael Granger <ged@FaerieMUD.org>
518
-
519
- | | o * cert/ged.pem:
520
- | | | Revert my cert, `gem cert -s` isn't working as advertised.
521
- | | | [e29596606445]
522
- | | |
523
- 2015-04-01 Mahlon E. Smith <mahlon@martini.nu>
524
-
525
- | o | * cert/mahlon.pem:
526
- | |/ Revert my key to a non-signed, the gem signing stuff is a mess.
527
- | | [093cea5ea618]
528
- | |
529
- | o * .hgtags:
530
- | | Added tag v0.9.1 for changeset d86d6579a43e
531
- | | [cc451faffccf]
532
- | |
533
- | o * .hgsigs:
534
- | | Added signature for changeset d8332e8ea7f7
535
- | | [d86d6579a43e] [v0.9.1]
536
- | |
537
- | o * History.rdoc, lib/strelka.rb:
538
- | | Version bump to v0.9.1
539
- | | [d8332e8ea7f7]
540
- | |
541
- 2015-04-01 Michael Granger <ged@FaerieMUD.org>
542
-
543
- | o * cert/mahlon.pem:
544
- | | Sign mahlon's cert
545
- | | [db92e594bfc2]
546
- | |
547
- 2015-04-01 Mahlon E. Smith <mahlon@martini.nu>
548
-
549
- | o * .gems, Rakefile:
550
- | | Add certificate signing to gem packaging.
551
- | | [d8b9bca999a8]
552
- | |
553
- | o * .hoerc, Rakefile, cert/ged.pem, cert/mahlon.pem, strelka.gemspec:
554
- | | Add certificate signing to gem packaging.
555
- | | [d85a66521643]
556
- | |
557
- | o * .gems:
558
- | | Add safe_yaml to the .gems file.
559
- | | [1f2abfa84b12]
560
- | |
561
- | o * lib/strelka/app/auth.rb, spec/strelka/app/auth_spec.rb:
562
- | | Ensure required permissions for the auth plugin are unmodified
563
- | | between requests.
564
- | | [e38b9bf6df30]
565
- | |
566
- 2015-03-25 Michael Granger <ged@FaerieMUD.org>
567
-
568
- | o * lib/strelka/httprequest.rb, spec/helpers.rb:
569
- | | Fix urlencoded param parsing
570
- | |
571
- | | Ruby 2.2's URI library no longer supports parsing application/x-www-
572
- | | form-urlencoded with semicolon delimiters because the WhatWG decided
573
- | | no one used that I guess.
574
- | |
575
- | | This change restores the old behavior by doing the two splits
576
- | | ourselves and handing the escaping off to URI.
577
- | | [dd7fe269b65b]
578
- | |
579
- | o * spec/strelka/app/auth_spec.rb, spec/strelka/app/errors_spec.rb,
580
- | | spec/strelka/app/filters_spec.rb,
581
- | | spec/strelka/app/negotiation_spec.rb,
582
- | | spec/strelka/app/parameters_spec.rb,
583
- | | spec/strelka/app/restresources_spec.rb,
584
- | | spec/strelka/app/routing_spec.rb, spec/strelka/app/sessions_spec.rb,
585
- | | spec/strelka/app/templating_spec.rb, spec/strelka/app_spec.rb,
586
- | | spec/strelka/authprovider/basic_spec.rb,
587
- | | spec/strelka/authprovider/hostaccess_spec.rb,
588
- | | spec/strelka/authprovider_spec.rb, spec/strelka/cookie_spec.rb,
589
- | | spec/strelka/discovery_spec.rb, spec/strelka/exceptions_spec.rb,
590
- | | spec/strelka/httprequest/acceptparams_spec.rb,
591
- | | spec/strelka/httprequest/auth_spec.rb,
592
- | | spec/strelka/httprequest/negotiation_spec.rb,
593
- | | spec/strelka/httprequest/session_spec.rb,
594
- | | spec/strelka/httprequest_spec.rb,
595
- | | spec/strelka/httpresponse/negotiation_spec.rb,
596
- | | spec/strelka/httpresponse/session_spec.rb,
597
- | | spec/strelka/httpresponse_spec.rb, spec/strelka/mixins_spec.rb,
598
- | | spec/strelka/multipartparser_spec.rb,
599
- | | spec/strelka/paramvalidator_spec.rb, spec/strelka/plugins_spec.rb,
600
- | | spec/strelka/router/default_spec.rb,
601
- | | spec/strelka/router/exclusive_spec.rb, spec/strelka/router_spec.rb,
602
- | | spec/strelka/session/db_spec.rb,
603
- | | spec/strelka/session/default_spec.rb, spec/strelka/session_spec.rb,
604
- | | spec/strelka/websocketserver/routing_spec.rb,
605
- | | spec/strelka/websocketserver_spec.rb, spec/strelka_spec.rb:
606
- | | Use the loggability spechelper for logging setup/teardown
607
- | | [a585c7b4f35b]
608
- | |
609
- | o * spec/strelka/paramvalidator_spec.rb:
610
- | | Update paramvalidator specs for Ruby 2.2.
611
- | |
612
- | | This removes some "bad" URI examples that are now parsed
613
- | | successfully by Ruby 2.2's URI library, and one that used to be
614
- | | parsed okay but no longer is.
615
- | | [5675c3e920cb]
616
- | |
617
- | o * .gems, .rvm.gems, Rakefile, strelka.gemspec:
618
- | | Bump mongrel2 dependency to get rid of Ruby 2.2 warnings
619
- | | [bb0e56836291]
620
- | |
621
- 2015-03-01 Michael Granger <ged@FaerieMUD.org>
622
-
623
- | o * strelka.gemspec:
624
- | | Update the gemspec
625
- | | [92c894486289]
626
- | |
627
- | o * Rakefile:
628
- | | Fix the fivefish version
629
- | | [22b8b7b6a0dd]
630
- | |
631
- | o * .rvmrc:
632
- | | Bump the rvmrc Ruby version
633
- | | [653f2efdcfb3]
634
- | |
635
- 2015-02-27 Michael Granger <ged@FaerieMUD.org>
636
-
637
- | o * .hgignore, .travis.yml, Gemfile, Rakefile, strelka.gemspec:
638
- | | Prep for travis-ci builds
639
- | | [d2eccf740f22]
640
- | |
641
- | o * lib/strelka.rb, lib/strelka/app.rb:
642
- | | Ensure mixins are loaded
643
- | | [421c715bc499]
644
- | |
645
- 2014-06-06 Michael Granger <ged@FaerieMUD.org>
646
-
647
- | o * .hgtags:
648
- | | Added tag v0.9.0 for changeset a03445b9de0f
649
- | | [f314a21c616e]
650
- | |
651
- | o * .hgsigs:
652
- | | Added signature for changeset 406a68302dc6
653
- | | [a03445b9de0f] [v0.9.0]
654
- | |
655
- | o * History.rdoc, lib/strelka.rb:
656
- | | Bump the minor version, update history.
657
- | | [406a68302dc6]
658
- | |
659
- 2014-06-06 Mahlon E. Smith <mahlon@martini.nu>
660
-
661
- | o * lib/strelka/app/auth.rb, spec/strelka/app/auth_spec.rb:
662
- | | Auth plugin: Add the ability to modify permission sets from the
663
- | | require_perms_for() block.
664
- | | [69fbfc1e2de3]
665
- | |
666
- 2014-06-05 Michael Granger <ged@FaerieMUD.org>
667
-
668
- | o * .rvm.gems, Gemfile, Rakefile, lib/strelka/httprequest.rb,
669
- | | lib/strelka/testing.rb, spec/strelka/app/auth_spec.rb,
670
- | | spec/strelka/app/restresources_spec.rb,
671
- | | spec/strelka/app/routing_spec.rb, spec/strelka/discovery_spec.rb,
672
- | | spec/strelka/httpresponse/negotiation_spec.rb,
673
- | | spec/strelka/httpresponse/session_spec.rb,
674
- | | spec/strelka/plugins_spec.rb, spec/strelka_spec.rb:
675
- | | Updated for RSpec 3.0; bumped deps.
676
- | | [04bd8611e28f]
677
- | |
678
- 2014-02-05 Michael Granger <ged@FaerieMUD.org>
679
-
680
- | o * .hgtags:
681
- | | Added tag v0.8.0 for changeset 67f75293f04a
682
- | | [d972384198ab]
683
- | |
684
- | o * .hgsigs:
685
- | | Added signature for changeset 6aec6fa45324
686
- | | [67f75293f04a] [v0.8.0]
687
- | |
688
- | o * History.rdoc:
689
- | | Update the history
690
- | | [6aec6fa45324]
691
- | |
692
- 2014-02-02 Michael Granger <ged@FaerieMUD.org>
693
-
694
- | o * .rvm.gems, Rakefile:
695
- | | Update dependencies.
696
- | | [4ddae11c28b8]
697
- | |
698
- 2014-01-29 Michael Granger <ged@FaerieMUD.org>
699
-
700
- | o * lib/strelka/app.rb:
701
- | | Add a convenience method for fetching a default app instance to
702
- | | Strelka::App
703
- | | [0e6e0e0be5e7]
704
- | |
705
- 2014-01-13 Michael Granger <ged@FaerieMUD.org>
706
-
707
- | o * spec/strelka/app/auth_spec.rb, spec/strelka/app/filters_spec.rb,
708
- | | spec/strelka/app/parameters_spec.rb,
709
- | | spec/strelka/app/restresources_spec.rb,
710
- | | spec/strelka/app/routing_spec.rb,
711
- | | spec/strelka/app/templating_spec.rb,
712
- | | spec/strelka/authprovider/basic_spec.rb,
713
- | | spec/strelka/authprovider/hostaccess_spec.rb,
714
- | | spec/strelka/cookie_spec.rb, spec/strelka/cookieset_spec.rb,
715
- | | spec/strelka/discovery_spec.rb,
716
- | | spec/strelka/httprequest/acceptparams_spec.rb,
717
- | | spec/strelka/httprequest/negotiation_spec.rb,
718
- | | spec/strelka/httprequest/session_spec.rb,
719
- | | spec/strelka/httprequest_spec.rb,
720
- | | spec/strelka/httpresponse/session_spec.rb,
721
- | | spec/strelka/multipartparser_spec.rb,
722
- | | spec/strelka/paramvalidator_spec.rb, spec/strelka/plugins_spec.rb,
723
- | | spec/strelka/session/default_spec.rb,
724
- | | spec/strelka/websocketserver/routing_spec.rb:
725
- | | Fix use of deprecated RSpec syntax.
726
- | | [9f7f4f4dba0b]
727
- | |
728
- | o * lib/strelka/authprovider.rb,
729
- | | lib/strelka/httprequest/acceptparams.rb, lib/strelka/mixins.rb,
730
- | | lib/strelka/plugins.rb, lib/strelka/router.rb,
731
- | | lib/strelka/session.rb, spec/strelka/mixins_spec.rb:
732
- | | Merge improvements to the AbstractClass mixin from elsewhere.
733
- | | [96725c68d4ae]
734
- | |
735
- 2014-01-22 Mahlon E. Smith <mahlon@laika.com>
736
-
737
- o | * lib/strelka/httprequest.rb:
738
- |/ Don't modify the original request URI object when calling
739
- | HttpRequest#base_uri.
740
- | [6e2d1e0e89d1]
741
- |
742
- 2014-01-02 Michael Granger <ged@FaerieMUD.org>
743
-
744
- o * lib/strelka.rb:
745
- |\ Merged with bdb098771858
746
- | | [140055f6ee81]
747
- | |
748
- 2014-01-01 Michael Granger <ged@FaerieMUD.org>
749
-
750
- | o * History.rdoc, lib/strelka.rb:
751
- | | Bump minor version, update history
752
- | | [2d8433106860]
753
- | |
754
- | o * lib/strelka/app/restresources.rb, lib/strelka/httprequest.rb,
755
- | | lib/strelka/httprequest/negotiation.rb,
756
- | | lib/strelka/multipartparser.rb,
757
- | | spec/strelka/app/restresources_spec.rb,
758
- | | spec/strelka/httprequest/negotiation_spec.rb,
759
- | | spec/strelka/httprequest_spec.rb:
760
- | | Fix PUT/POST routes in restresources to be more REST-y; i.e., POST
761
- | | for non-idempotent methods, PUT for idempotent ones.
762
- | | [c91b759e2dfa]
763
- | |
764
- | o * .rvmrc:
765
- | | Updated rvmrc; don't autoload the gemset
766
- | | [26dd19cb5b45]
767
- | |
768
- | o * .tm_properties:
769
- | | Fix project settings
770
- | | [eae55bb5318e]
771
- | |
772
- 2013-12-30 Michael Granger <ged@FaerieMUD.org>
773
-
774
- | o * lib/strelka/cookie.rb, spec/strelka/cookie_spec.rb:
775
- | | Make Strelka::Cookie raise on malformed cookies
776
- | | [bb16cdc0c251]
777
- | |
778
- 2013-11-20 Michael Granger <ged@FaerieMUD.org>
779
-
780
- | o * lib/strelka/app/sessions.rb, lib/strelka/session.rb,
781
- | | lib/strelka/session/db.rb:
782
- | | Fix some API docs for sessions
783
- | | [924139279054]
784
- | |
785
- | o * lib/strelka/app.rb:
786
- | | Remove config keys that moved to Discovery
787
- | | [c4b52cde2f47]
788
- | |
789
- 2013-12-02 Mahlon E. Smith <mahlon@martini.nu>
790
-
791
- o | * .rvm.gems, lib/strelka.rb, lib/strelka/app/auth.rb,
792
- |/ spec/strelka/session/default_spec.rb:
793
- | Restore access to request parameters from the authentication plugin.
794
- | [bdb098771858]
795
- |
796
- 2013-11-08 Michael Granger <ged@FaerieMUD.org>
797
-
798
- o * .hgtags:
799
- | Added tag v0.7.0 for changeset fb8d0093e8f6
800
- | [71ad508ff67c]
801
- |
802
- o * .hgsigs:
803
- | Added signature for changeset 2caa91898658
804
- | [fb8d0093e8f6] [v0.7.0]
805
- |
806
- o * .rvm.gems, History.rdoc, Rakefile, lib/strelka.rb:
807
- | Bump minor version, update dependencies, update history.
808
- | [2caa91898658]
809
- |
810
- o * spec/strelka/discovery_spec.rb:
811
- | Fix discovery specs
812
- | [a3898e620a63]
813
- |
814
- 2013-10-21 Michael Granger <ged@FaerieMUD.org>
815
-
816
- o * lib/strelka/app/filters.rb, lib/strelka/app/templating.rb,
817
- | spec/strelka/app/filters_spec.rb:
818
- | Make response filters always receive a response
819
- |
820
- | ...even if the handler returns a Symbol, e.g., for the templating
821
- | plugin.
822
- | [e8958f7795d9]
823
- |
824
- 2013-10-18 Michael Granger <ged@FaerieMUD.org>
825
-
826
- o * lib/strelka/app/templating.rb:
827
- | Add a note about needed documentation to :templating
828
- | [bc94898e6bdd]
829
- |
830
- o * Plugins.rdoc, lib/strelka/app/auth.rb, lib/strelka/app/errors.rb,
831
- | lib/strelka/app/filters.rb, lib/strelka/app/negotiation.rb,
832
- | lib/strelka/app/parameters.rb, lib/strelka/app/routing.rb,
833
- | lib/strelka/app/sessions.rb, lib/strelka/app/templating.rb,
834
- | lib/strelka/plugins.rb, lib/strelka/websocketserver/routing.rb,
835
- | spec/strelka/plugins_spec.rb:
836
- | Change filter plugin order; change run_before/run_after to
837
- | run_outside/run_inside.
838
- |
839
- | - Backward-compatibility maintained with an alias.
840
- | [0027480d474e]
841
- |
842
- 2013-10-17 Michael Granger <ged@FaerieMUD.org>
843
-
844
- o * lib/strelka/paramvalidator.rb, spec/strelka/paramvalidator_spec.rb:
845
- | Consider empty string as no value for parameter validation. (fixes
846
- | #8)
847
- | [662737a841c4]
848
- |
849
- 2013-10-15 Michael Granger <ged@FaerieMUD.org>
850
-
851
- o * README.rdoc:
852
- | Update the project URL and copyright date in the README
853
- | [8ab80d544db2]
854
- |
855
- o * .hoerc, Manifest.txt:
856
- | Remove runtime data from examples dir from the manifest
857
- | [0c9efdac0829]
858
- |
859
- 2013-10-15 Michael Granger <ged@faeriemud.org>
860
-
861
- | _ * Close branch rdolgushin/ideasrdoc-russian-woof-fix-1381879886956
862
- | | [dedc90b70209] <rdolgushin/ideasrdoc-russian-woof-fix-1381879886956>
863
- | |
864
- o | * Merged in rdolgushin/strelka/rdolgushin/ideasrdoc-russian-woof-
865
- |\| fix-1381879886956 (pull request #2)
866
- | |
867
- | | IDEAS.rdoc: Russian 'woof' fix
868
- | | [ac7fea5af58f]
869
- | |
870
- 2013-10-15 Roman Dolgushin <rd@roman-dolgushin.ru>
871
-
872
- | o * IDEAS.rdoc:
873
- |/ IDEAS.rdoc: Russian 'woof' fix
874
- | [639105edf399] <rdolgushin/ideasrdoc-russian-woof-fix-1381879886956>
875
- |
876
- 2013-10-15 Michael Granger <ged@FaerieMUD.org>
877
-
878
- o * Manifest.txt, bin/strelka, lib/strelka/app.rb,
879
- | lib/strelka/app/restresources.rb, lib/strelka/behavior/plugin.rb,
880
- | lib/strelka/httprequest.rb, spec/constants.rb, spec/helpers.rb,
881
- | spec/lib/constants.rb, spec/lib/helpers.rb,
882
- | spec/strelka/app/auth_spec.rb, spec/strelka/app/errors_spec.rb,
883
- | spec/strelka/app/filters_spec.rb,
884
- | spec/strelka/app/negotiation_spec.rb,
885
- | spec/strelka/app/parameters_spec.rb,
886
- | spec/strelka/app/restresources_spec.rb,
887
- | spec/strelka/app/routing_spec.rb, spec/strelka/app/sessions_spec.rb,
888
- | spec/strelka/app/templating_spec.rb, spec/strelka/app_spec.rb,
889
- | spec/strelka/authprovider/basic_spec.rb,
890
- | spec/strelka/authprovider/hostaccess_spec.rb,
891
- | spec/strelka/authprovider_spec.rb, spec/strelka/cookie_spec.rb,
892
- | spec/strelka/cookieset_spec.rb, spec/strelka/discovery_spec.rb,
893
- | spec/strelka/exceptions_spec.rb,
894
- | spec/strelka/httprequest/acceptparams_spec.rb,
895
- | spec/strelka/httprequest/auth_spec.rb,
896
- | spec/strelka/httprequest/negotiation_spec.rb,
897
- | spec/strelka/httprequest/session_spec.rb,
898
- | spec/strelka/httprequest_spec.rb,
899
- | spec/strelka/httpresponse/negotiation_spec.rb,
900
- | spec/strelka/httpresponse/session_spec.rb,
901
- | spec/strelka/httpresponse_spec.rb, spec/strelka/mixins_spec.rb,
902
- | spec/strelka/multipartparser_spec.rb,
903
- | spec/strelka/paramvalidator_spec.rb, spec/strelka/plugins_spec.rb,
904
- | spec/strelka/router/default_spec.rb,
905
- | spec/strelka/router/exclusive_spec.rb, spec/strelka/router_spec.rb,
906
- | spec/strelka/session/db_spec.rb,
907
- | spec/strelka/session/default_spec.rb, spec/strelka/session_spec.rb,
908
- | spec/strelka/websocketserver/routing_spec.rb,
909
- | spec/strelka/websocketserver_spec.rb, spec/strelka_spec.rb:
910
- | Convert specs to new RSpec syntax.
911
- | [44fa18409c36]
912
- |
913
- o * contrib/hoetemplate/.tm_properties,
914
- | contrib/hoetemplate/data/project/apps/file_name_app,
915
- | contrib/hoetemplate/lib/file_name.rb.erb:
916
- | Update Textmate properties in Hoe template
917
- | [ffc16e8412df]
918
- |
919
- 2013-10-07 Michael Granger <ged@FaerieMUD.org>
920
-
921
- o * .rvm.gems:
922
- | Update rvm gemset
923
- | [004066a49de5]
924
- |
925
- 2013-10-06 Michael Granger <ged@FaerieMUD.org>
926
-
927
- o * Gemfile, Rakefile:
928
- | Don't explicitly depend on RSpec version (use hoe-deveiate's
929
- | version)
930
- | [d0020cb5b3b5]
931
- |
932
- o * examples/Procfile, examples/gen-config.rb:
933
- | Update for latest versions of Mongrel2 and the mongrel2 gem
934
- | [bcb0496f6135]
935
- |
936
- o * lib/strelka/mixins.rb, spec/strelka/mixins_spec.rb:
937
- | Don't dup IOs or Tempfiles while deep-copying
938
- | [307d1a75161c]
939
- |
940
- o * .hgignore, examples/.env:
941
- | Don't include example .env settings or logs
942
- | [76d01cc8ee54]
943
- |
944
- o * Rakefile:
945
- | Fix Rakefile for latest version of Hoe
946
- | [ed5ff1b21eb1]
947
- |
948
- o * .hgignore, Gemfile, Rakefile:
949
- | Add hoe-bundler for generated Gemfile.
950
- | [c2180fd0ac4f]
951
- |
952
- 2013-09-20 Michael Granger <ged@FaerieMUD.org>
953
-
954
- o * lib/strelka/app.rb:
955
- | Update for newest version of Configurability.
956
- | [79b29b4c9079]
957
- |
958
- o * Manifest.txt:
959
- | Update manifest
960
- | [719fbab274b9]
961
- |
962
- 2013-09-10 Michael Granger <ged@FaerieMUD.org>
963
-
964
- o * IDEAS.rdoc, MILESTONES.rdoc, bin/strelka, examples/Procfile,
965
- | examples/apps/hello-world, examples/apps/ws-chat, examples/apps/ws-
966
- | echo, lib/strelka.rb, lib/strelka/app.rb,
967
- | lib/strelka/app/templating.rb, lib/strelka/behavior/plugin.rb,
968
- | lib/strelka/discovery.rb, lib/strelka/websocketserver.rb,
969
- | lib/strelka/websocketserver/routing.rb, spec/lib/constants.rb,
970
- | spec/strelka/app/auth_spec.rb, spec/strelka/app/errors_spec.rb,
971
- | spec/strelka/app/filters_spec.rb,
972
- | spec/strelka/app/negotiation_spec.rb,
973
- | spec/strelka/app/parameters_spec.rb,
974
- | spec/strelka/app/restresources_spec.rb,
975
- | spec/strelka/app/routing_spec.rb, spec/strelka/app/sessions_spec.rb,
976
- | spec/strelka/app/templating_spec.rb, spec/strelka/app_spec.rb,
977
- | spec/strelka/discovery_spec.rb,
978
- | spec/strelka/websocketserver/routing_spec.rb,
979
- | spec/strelka/websocketserver_spec.rb:
980
- | Adding a websocket service base class
981
- | [dc4b69988131]
982
- |
983
- o * lib/strelka/app.rb, lib/strelka/httpresponse/negotiation.rb,
984
- | spec/strelka/httpresponse/negotiation_spec.rb:
985
- | Treat exceptions raised from negotiated content blocks as a failed
986
- | format
987
- | [48fb08c7a2a3]
988
- |
989
- o * spec/strelka/httpresponse/negotiation_spec.rb:
990
- | Convert httpresponse/negotiation spec to expect syntax
991
- | [f727ec415c0d]
992
- |
993
- 2013-06-19 Michael Granger <ged@FaerieMUD.org>
994
-
995
- o * .hgtags:
996
- | Added tag v0.6.0 for changeset 25c5569e585b
997
- | [db22abb5e332]
998
- |
999
- o * .hgsigs:
1000
- | Added signature for changeset a043d61c759c
1001
- | [25c5569e585b] [v0.6.0]
1002
- |
1003
- 2013-06-12 Michael Granger <ged@FaerieMUD.org>
1004
-
1005
- o * History.rdoc, lib/strelka.rb:
1006
- | Bump the minor version, update history.
1007
- | [a043d61c759c]
1008
- |
1009
- o * Rakefile:
1010
- | Add Mahlon (finally) as an author
1011
- | [d0a7eba63c10]
1012
- |
1013
- o * lib/strelka/httprequest.rb, spec/strelka/httprequest_spec.rb:
1014
- | Make HTTPRequest#params always return a Hash
1015
- | [ad9220ddef52]
1016
- |
1017
- o * .rvm.gems:
1018
- | Bump the safe_yaml version to the latest.
1019
- | [dbac1c7bdd06]
1020
- |
1021
- 2013-06-07 Michael Granger <ged@FaerieMUD.org>
1022
-
1023
- o * .rvm.gems, Rakefile:
1024
- | Bump dependency on Loggability and Configurability
1025
- | [9ec05ec558e5]
1026
- |
1027
- 2013-05-31 Michael Granger <ged@FaerieMUD.org>
1028
-
1029
- o * lib/strelka/app/restresources.rb:
1030
- | Add some planned features to restresources
1031
- | [c068b5d7039e]
1032
- |
1033
- o * .rvm.gems:
1034
- | Fix the rspec version in the RMV gemset
1035
- | [da790bc36db7]
1036
- |
1037
- o * .rvm.gems, Rakefile, lib/strelka/httprequest.rb,
1038
- | lib/strelka/session/db.rb, spec/strelka/httprequest_spec.rb:
1039
- | Use the safe_yaml gem for loading untrusted request bodies.
1040
- | [ce0387824c10]
1041
- |
1042
- o * lib/strelka/paramvalidator.rb, spec/strelka/paramvalidator_spec.rb:
1043
- | Fix validator for literal "false" (via JSON)
1044
- | [b59828d371a8]
1045
- |
1046
- 2013-05-17 Michael Granger <ged@FaerieMUD.org>
1047
-
1048
- o * .hgtags:
1049
- | Added tag v0.5.0 for changeset 600f4e4d8f65
1050
- | [762c320af7d0]
1051
- |
1052
- o * .hgsigs:
1053
- | Added signature for changeset 80db7acd42dc
1054
- | [600f4e4d8f65] [v0.5.0]
1055
- |
1056
- o * History.rdoc, lib/strelka.rb:
1057
- | Bump the minor version and update history.
1058
- | [80db7acd42dc]
1059
- |
1060
- o * experiments/codeobjects.rb:
1061
- | Add an experiment
1062
- | [96d7a4bdc444]
1063
- |
1064
- o * lib/strelka/paramvalidator.rb, spec/strelka/paramvalidator_spec.rb:
1065
- | Add :datetime builtin validator
1066
- | [54367e5f3cee]
1067
- |
1068
- o * lib/strelka/app/restresources.rb:
1069
- | Add checklist for planned features to restresource header
1070
- | [a12acfcd0108]
1071
- |
1072
- 2013-05-08 Michael Granger <ged@FaerieMUD.org>
1073
-
1074
- o * lib/strelka/paramvalidator.rb, spec/strelka/paramvalidator_spec.rb:
1075
- | Add builtin validators for various checksums.
1076
- | [6d2e2cfbd5f3]
1077
- |
1078
- 2013-05-02 Michael Granger <ged@FaerieMUD.org>
1079
-
1080
- o * lib/strelka/app/negotiation.rb,
1081
- | lib/strelka/httpresponse/negotiation.rb,
1082
- | spec/strelka/app/negotiation_spec.rb,
1083
- | spec/strelka/httpresponse/negotiation_spec.rb:
1084
- | Wire up custom mediatype handlers to content negotiation. Fixes #5.
1085
- | [6a0e777a42ad]
1086
- |
1087
- 2013-03-28 Michael Granger <ged@FaerieMUD.org>
1088
-
1089
- o * .rvm.gems, Rakefile:
1090
- | Bump Pluggability dependency
1091
- | [cae6b252a20b]
1092
- |
1093
- 2013-03-26 Michael Granger <ged@FaerieMUD.org>
1094
-
1095
- o * .hgtags:
1096
- | Added tag v0.4.0 for changeset bf131e4f535c
1097
- | [84261d71f9ac]
1098
- |
1099
- o * .hgsigs:
1100
- | Added signature for changeset 49ae27e4588e
1101
- | [bf131e4f535c] [v0.4.0]
1102
- |
1103
- o * History.rdoc, lib/strelka.rb:
1104
- | Bump minor version, update history.
1105
- | [49ae27e4588e]
1106
- |
1107
- o * lib/strelka.rb, lib/strelka/app.rb, spec/strelka/app_spec.rb,
1108
- | spec/strelka_spec.rb:
1109
- | Handle Strelka::App subclass inheritance, add Strelka::App syntactic
1110
- | sugar.
1111
- | [e43f773141e5]
1112
- |
1113
- o * bin/strelka, lib/strelka/app.rb:
1114
- | Pull app finder code from bin/strelka up into a Strelka::App class
1115
- | method.
1116
- | [715de56560f6]
1117
- |
1118
- o * .rvm.gems, Rakefile:
1119
- | Update deps, add fivefish doc option only in development
1120
- | [eb616144eb14]
1121
- |
1122
- 2013-03-11 Michael Granger <ged@FaerieMUD.org>
1123
-
1124
- o * .hgtags:
1125
- | Added tag v0.3.0 for changeset 3583acf73860
1126
- | [beebeb914629]
1127
- |
1128
- o * .hgsigs:
1129
- | Added signature for changeset 01ab7adefccf
1130
- | [3583acf73860] [v0.3.0]
1131
- |
1132
- o * History.rdoc, lib/strelka.rb:
1133
- | Bump the minor version, update history.
1134
- | [01ab7adefccf]
1135
- |
1136
- o * lib/strelka/app/restresources.rb, lib/strelka/httprequest/auth.rb,
1137
- | lib/strelka/httpresponse.rb, lib/strelka/paramvalidator.rb,
1138
- | lib/strelka/router.rb, spec/strelka/app/auth_spec.rb,
1139
- | spec/strelka/app/restresources_spec.rb:
1140
- | Whitespace cleanup
1141
- | [f0f47fdd0fc1]
1142
- |
1143
- o * .rvm.gems, Rakefile, lib/strelka/app/auth.rb,
1144
- | lib/strelka/app/parameters.rb, lib/strelka/authprovider.rb,
1145
- | lib/strelka/router.rb, lib/strelka/session.rb,
1146
- | spec/strelka/authprovider_spec.rb, spec/strelka/router_spec.rb,
1147
- | spec/strelka/session_spec.rb:
1148
- | Swap PluginFactory for Pluggability
1149
- | [2b5ec3707092]
1150
- |
1151
- 2013-03-01 Michael Granger <ged@FaerieMUD.org>
1152
-
1153
- o * .hgtags:
1154
- | Added tag v0.2.1 for changeset 3e0b98108f3f
1155
- | [b697fcf0bf33]
1156
- |
1157
- o * .hgsigs:
1158
- | Added signature for changeset c973cb926a4d
1159
- | [3e0b98108f3f] [v0.2.1]
1160
- |
1161
- o * History.rdoc, lib/strelka.rb:
1162
- | Bump patch version, update history.
1163
- | [c973cb926a4d]
1164
- |
1165
- o * Rakefile:
1166
- | Dont include formatter in RDoc options, bump simplecov dependency
1167
- | too.
1168
- | [bf325e88fc06]
1169
- |
1170
- o * .rvm.gems, Rakefile, lib/strelka/app/auth.rb,
1171
- | lib/strelka/app/templating.rb:
1172
- | Update dependencies, add Ruby version to the default template
1173
- | variables.
1174
- | [b5f34be87274]
1175
- |
1176
- 2013-02-27 Mahlon E. Smith <mahlon@martini.nu>
1177
-
1178
- o * .rvm.gems, Rakefile:
1179
- | Update dependency for configurability.
1180
- | [8e7f432be135]
1181
- |
1182
- 2013-02-27 Michael Granger <ged@FaerieMUD.org>
1183
-
1184
- o * .hgtags:
1185
- | Added tag v0.2.0 for changeset b2024cae0fef
1186
- | [b784fce014cc]
1187
- |
1188
- o * .hgsigs:
1189
- | Added signature for changeset 8b384ec6defa
1190
- | [b2024cae0fef] [v0.2.0]
1191
- |
1192
- o * History.rdoc:
1193
- | Update the History file for release
1194
- | [8b384ec6defa]
1195
- |
1196
- 2013-02-25 Michael Granger <ged@FaerieMUD.org>
1197
-
1198
- o * .rvmrc, lib/strelka/paramvalidator.rb:
1199
- | Add fix for Ruby 2.0.
1200
- | [609fca72559e]
1201
- |
1202
- o * lib/strelka/paramvalidator.rb:
1203
- | Fix API documentation
1204
- | [5471a055ac2e]
1205
- |
1206
- o * lib/strelka/app/restresources.rb:
1207
- | Add some documentation to the REST Resources plugin
1208
- | [bfbbcdf9ebe8]
1209
- |
1210
- o * lib/strelka/paramvalidator.rb:
1211
- | Remove accidentally-committed code.
1212
- | [0875b2988d81]
1213
- |
1214
- 2013-02-22 Michael Granger <ged@FaerieMUD.org>
1215
-
1216
- o * lib/strelka/httprequest.rb, spec/strelka/httprequest_spec.rb:
1217
- | Guard against malformed URI query
1218
- | [2e56a22dac4a]
1219
- |
1220
- o * lib/strelka/httpresponse.rb:
1221
- | Whitespace fix
1222
- | [ebe06cfc1695]
1223
- |
1224
- 2013-02-06 Michael Granger <ged@FaerieMUD.org>
1225
-
1226
- o * lib/strelka/app/auth.rb, spec/strelka/app/auth_spec.rb:
1227
- | Fix multiple permission criteria in the auth plugin (fixes #2)
1228
- | [d661773e0781]
1229
- |
1230
- 2013-02-01 Michael Granger <ged@FaerieMUD.org>
1231
-
1232
- o * History.rdoc, lib/strelka/app/restresources.rb,
1233
- | lib/strelka/paramvalidator.rb,
1234
- | spec/strelka/app/restresources_spec.rb,
1235
- | spec/strelka/paramvalidator_spec.rb:
1236
- | Remove pending status from specs for multiple parameters support
1237
- |
1238
- | This was apparently implemented (by me) in 49716850bd29. Fixes #1.
1239
- | [2c41e18bc237]
1240
- |
1241
- 2013-01-29 Michael Granger <ged@FaerieMUD.org>
1242
-
1243
- o * lib/strelka/app/parameters.rb, lib/strelka/paramvalidator.rb,
1244
- | spec/strelka/app/parameters_spec.rb,
1245
- | spec/strelka/paramvalidator_spec.rb:
1246
- | Add a paramvalidator constraint for JSON fields
1247
- | [ac11b12f9366]
1248
- |
1249
- 2013-01-25 Michael Granger <ged@FaerieMUD.org>
1250
-
1251
- o * lib/strelka/httprequest.rb, lib/strelka/httpresponse.rb,
1252
- | spec/strelka/app/filters_spec.rb, spec/strelka/httprequest_spec.rb:
1253
- | Remove HTTP{Request,Response}#notes multi-level autovivification
1254
- | [0dc702f6eacc]
1255
- |
1256
- o * bin/strelka:
1257
- | Add support for --requires to bin/strelka
1258
- | [c844fb419c83]
1259
- |
1260
- o * lib/strelka.rb, lib/strelka/app/parameters.rb,
1261
- | spec/strelka/app/parameters_spec.rb,
1262
- | spec/strelka/app/restresources_spec.rb:
1263
- | Allow declaration of parameters with block constraints
1264
- | [afb6cec9add0]
1265
- |
1266
- o * .rvm.gems, .tm_properties, Rakefile,
1267
- | lib/strelka/app/restresources.rb, lib/strelka/paramvalidator.rb,
1268
- | spec/strelka/app/restresources_spec.rb:
1269
- | Modify the restresources app plugin for new versions of Sequel
1270
- | [543c22d3050e]
1271
- |
1272
- 2013-01-24 Michael Granger <ged@FaerieMUD.org>
1273
-
1274
- o * lib/strelka/app/routing.rb, spec/strelka/app/routing_spec.rb:
1275
- | Fix the routing plugin to super with a block like the other plugins
1276
- | [9ac7a036f54a]
1277
- |
1278
- 2013-01-18 Michael Granger <ged@FaerieMUD.org>
1279
-
1280
- o * .pryrc:
1281
- | Fix the .pryrc for recent versions of pry
1282
- | [779190d1cc55]
1283
- |
1284
- 2013-01-09 Michael Granger <ged@FaerieMUD.org>
1285
-
1286
- o * .rvm.gems:
1287
- | Update rvm gemset file
1288
- | [2bedace701fe]
1289
- |
1290
- 2013-01-02 Michael Granger <ged@FaerieMUD.org>
1291
-
1292
- o * lib/strelka/paramvalidator.rb:
1293
- | Remove spurious return in ParamValidator#[]=
1294
- | [39c9459daa02]
1295
- |
1296
- 2013-01-02 Mahlon E. Smith <mahlon@martini.nu>
1297
-
1298
- o * lib/strelka/paramvalidator.rb, spec/strelka/paramvalidator_spec.rb:
1299
- | Revalidate parameters when using the index operator.
1300
- | [1d71e22f5f6e]
1301
- |
1302
- 2012-12-27 Michael Granger <ged@FaerieMUD.org>
1303
-
1304
- o * .hgtags:
1305
- | Added tag v0.1.0 for changeset 943a0502da20
1306
- | [43c3f7dddf0d]
1307
- |
1308
- o * .hgsigs:
1309
- | Added signature for changeset a6be71c3d94d
1310
- | [943a0502da20] [v0.1.0]
1311
- |
1312
- o * History.rdoc, lib/strelka.rb:
1313
- | Bump the minor version, update history.
1314
- | [a6be71c3d94d]
1315
- |
1316
- o * spec/strelka/app_spec.rb:
1317
- | Fix a spec for newer versions of Mongrel2
1318
- | [ee1b3bcf1664]
1319
- |
1320
- 2012-11-02 Michael Granger <ged@FaerieMUD.org>
1321
-
1322
- o * bin/strelka:
1323
- | Add --version to the command line tool
1324
- | [4581498edfaa]
1325
- |
1326
- o * lib/strelka/paramvalidator.rb:
1327
- | Fix documentation
1328
- | [6523f90b76ac]
1329
- |
1330
- o * lib/strelka/app/parameters.rb:
1331
- | Remove accidentally-committed require.
1332
- | [e98f2b302f1d]
1333
- |
1334
- o * lib/strelka/app/parameters.rb, lib/strelka/app/restresources.rb,
1335
- | lib/strelka/mixins.rb, lib/strelka/paramvalidator.rb,
1336
- | lib/strelka/plugins.rb, spec/strelka/paramvalidator_spec.rb:
1337
- | Rewrite ParamValidator to simplify, remove dependency on
1338
- | FormValidator.
1339
- | [49716850bd29]
1340
- |
1341
- 2012-11-02 Mahlon E. Smith <mahlon@martini.nu>
1342
-
1343
- o * lib/strelka/httprequest.rb, spec/strelka/httprequest_spec.rb:
1344
- | Allow entity-bodies for HTTP verbs that don't explicitly forbid them
1345
- | in RFC.
1346
- | [a733dfe529a4]
1347
- |
1348
- 2012-10-23 Michael Granger <ged@FaerieMUD.org>
1349
-
1350
- o * .hgtags:
1351
- | Added tag v0.0.3 for changeset d30a7dfea73a
1352
- | [a0f594ed081c]
1353
- |
1354
- o * .hgsigs:
1355
- | Added signature for changeset 4cb76b1531ef
1356
- | [d30a7dfea73a] [v0.0.3]
1357
- |
1358
- o * History.rdoc, lib/strelka.rb:
1359
- | Bump patch version, update history.
1360
- | [4cb76b1531ef]
1361
- |
1362
- o * lib/strelka/app.rb, spec/strelka/app_spec.rb:
1363
- | Fix the template-path auto-discovery for some configurations.
1364
- | [a4e246d895cf]
1365
- |
1366
- 2012-10-17 Michael Granger <ged@FaerieMUD.org>
1367
-
1368
- o * .hgtags:
1369
- | Added tag v0.0.2 for changeset f4507caebfb7
1370
- | [e163f60cfa3d]
1371
- |
1372
- o * .hgsigs:
1373
- | Added signature for changeset 485638c9ec10
1374
- | [f4507caebfb7] [v0.0.2]
1375
- |
1376
- o * contrib/hoetemplate/lib/file_name.rb.erb:
1377
- | Obfuscate the VERSION constant in the Hoe template
1378
- | [485638c9ec10]
1379
- |
1380
- o * Rakefile:
1381
- | Depend on Ruby >= 1.9.3
1382
- | [16f36e7a3e02]
1383
- |
1384
- o * History.rdoc, lib/strelka.rb:
1385
- | Bump the patch version, update history.
1386
- | [4a75dc02587a]
1387
- |
1388
- o * .rvm.gems, Rakefile:
1389
- | Bump dependency on mongrel2
1390
- | [c2c4dc90ab68]
1391
- |
1392
- o * lib/strelka/httprequest.rb, spec/strelka/httprequest_spec.rb:
1393
- | Handle versions of Mongrel2 that didn't set a url-scheme header.
1394
- | [f650ce318441]
1395
- |
1396
- o * .hgtags:
1397
- | Added tag v0.0.1 for changeset d94fd9d65253
1398
- | [50a0890beebb]
1399
- |
1400
- o * .hgsigs:
1401
- | Added signature for changeset c269a6bf5704
1402
- | [d94fd9d65253] [v0.0.1]
1403
- |
1404
- o * History.rdoc:
1405
- | Fixing date in History.rdoc
1406
- | [c269a6bf5704]
1407
- |
1408
- 2012-10-16 Michael Granger <ged@FaerieMUD.org>
1409
-
1410
- o * examples/gen-config.rb, lib/strelka/httprequest.rb,
1411
- | spec/strelka/httprequest_spec.rb:
1412
- | Fix Strelka::HTTPRequest#uri for HTTPS requests.
1413
- | [4c080bf67d4f]
1414
- |
1415
- 2012-10-12 Michael Granger <ged@FaerieMUD.org>
1416
-
1417
- o * Manifest.txt, spec/strelka/paramvalidator_spec.rb:
1418
- | Update the manifest, add specs for the multi-params issue (refs #1).
1419
- | [01e7d80f9999]
1420
- |
1421
- 2012-10-11 Michael Granger <ged@FaerieMUD.org>
1422
-
1423
- o * lib/strelka/app.rb, lib/strelka/app/templating.rb,
1424
- | spec/lib/helpers.rb, spec/strelka/app/templating_spec.rb,
1425
- | spec/strelka/app_spec.rb:
1426
- | Add template-directory discovery to the :templating plugin.
1427
- | [cde8aaae8b47]
1428
- |
1429
- 2012-10-03 Michael Granger <ged@FaerieMUD.org>
1430
-
1431
- o * Rakefile:
1432
- | Don't load the manualgen Hoe plugin
1433
- | [da2c8cd59ba9]
1434
- |
1435
- 2012-10-09 Michael Granger <ged@FaerieMUD.org>
1436
-
1437
- o * bin/leash, contrib/hoetemplate/.autotest.erb,
1438
- |\ contrib/hoetemplate/data/file_name/apps/file_name_app,
1439
- | | contrib/hoetemplate/data/file_name/templates/layout.tmpl.erb,
1440
- | | contrib/hoetemplate/data/file_name/templates/top.tmpl.erb,
1441
- | | data/strelka/apps/hello-world, lib/strelka/app/defaultrouter.rb,
1442
- | | lib/strelka/app/exclusiverouter.rb,
1443
- | | lib/strelka/app/paramvalidator.rb, lib/strelka/app/plugins.rb,
1444
- | | lib/strelka/app/router.rb, lib/strelka/logging.rb,
1445
- | | manual/layouts/default.erb, manual/lib/api-filter.rb, manual/lib
1446
- | | /editorial-filter.rb, manual/lib/examples-filter.rb, manual/lib
1447
- | | /links-filter.rb, manual/resources/css/manual.css,
1448
- | | manual/resources/fonts/GraublauWeb.otf,
1449
- | | manual/resources/fonts/GraublauWebBold.otf,
1450
- | | manual/resources/fonts/Inconsolata.otf,
1451
- | | manual/resources/images/arrow_225_small.png,
1452
- | | manual/resources/images/arrow_315_small.png,
1453
- | | manual/resources/images/arrow_skip.png, manual/resources/images/cc-
1454
- | | by.png, manual/resources/images/dialog-error.png,
1455
- | | manual/resources/images/dialog-information.png,
1456
- | | manual/resources/images/dialog-warning.png, manual/resources/images
1457
- | | /emblem-important.png, manual/resources/images/help.png,
1458
- | | manual/resources/images/information.png,
1459
- | | manual/resources/images/magnifier.png,
1460
- | | manual/resources/images/magnifier_left.png,
1461
- | | manual/resources/images/page_white_code.png,
1462
- | | manual/resources/images/page_white_copy.png,
1463
- | | manual/resources/images/printer.png, manual/resources/images
1464
- | | /project-layout.png, manual/resources/images/question.png,
1465
- | | manual/resources/images/scripts_code.png, manual/resources/images
1466
- | | /strelka-dogs/doggie6.svg, manual/resources/images/strelka-
1467
- | | dogs/doggie7.svg, manual/resources/images/wrap.png,
1468
- | | manual/resources/images/wrapping.png,
1469
- | | manual/resources/js/jquery-1.4.4.min.js,
1470
- | | manual/resources/js/manual.js, manual/resources/js/sh.js,
1471
- | | manual/resources/swf/clipboard.swf, manual/src/cookbook.page,
1472
- | | manual/src/deploying.page, manual/src/index.page,
1473
- | | manual/src/plugins.page, manual/src/writing.page,
1474
- | | spec/strelka/app/defaultrouter_spec.rb,
1475
- | | spec/strelka/app/exclusiverouter_spec.rb,
1476
- | | spec/strelka/app/paramvalidator_spec.rb,
1477
- | | spec/strelka/app/plugins_spec.rb, spec/strelka/app/router_spec.rb,
1478
- | | spec/strelka/logging_spec.rb:
1479
- | | Merge: Resurrect the strelka doggies under contrib/
1480
- | | [a38210d27bbd]
1481
- | |
1482
- | o * contrib/strelka-dogs/doggie6.svg, contrib/strelka-dogs/doggie7.svg:
1483
- | | Oops, didn't mean to delete these
1484
- | | [d9cde3c8a778]
1485
- | |
1486
- 2012-10-08 Michael Granger <ged@FaerieMUD.org>
1487
-
1488
- o | * lib/strelka/authprovider.rb, spec/strelka/authprovider_spec.rb:
1489
- | | Fix the documentation and specs for AuthProvider#authorize.
1490
- | | [accb655c57b4]
1491
- | |
1492
- 2012-10-03 Michael Granger <ged@FaerieMUD.org>
1493
-
1494
- o | * .rvm.gems, Rakefile:
1495
- | | Bump dependency to the latest version of Mongrel2.
1496
- | | [a11bf994ae39]
1497
- | |
1498
- 2012-10-02 Michael Granger <ged@FaerieMUD.org>
1499
-
1500
- o | * bin/strelka:
1501
- | | Don't fork for 'strelka start'.
1502
- | | [8882a71efc41]
1503
- | |
1504
- 2012-09-28 Michael Granger <ged@FaerieMUD.org>
1505
-
1506
- o | * lib/strelka/cookie.rb:
1507
- | | Removed a bunch of chatty debugging from Strelka::Cookie.
1508
- | | [57be160cf261]
1509
- | |
1510
- o | * lib/strelka/authprovider.rb, lib/strelka/authprovider/basic.rb,
1511
- | | spec/strelka/authprovider_spec.rb:
1512
- | | Add a hook to Strelka::AuthProvider for authentication being
1513
- | | established.
1514
- | | [e76e4c04bdaf]
1515
- | |
1516
- o | * lib/strelka/cookie.rb:
1517
- | | Remove some chatty debugging from Strelka::Cookie
1518
- | | [d85c5f7728fe]
1519
- | |
1520
- o | * Rakefile, manual/layouts/default.erb, manual/lib/api-filter.rb,
1521
- | | manual/lib/editorial-filter.rb, manual/lib/examples-filter.rb,
1522
- | | manual/lib/links-filter.rb, manual/resources/css/manual.css,
1523
- | | manual/resources/fonts/GraublauWeb.otf,
1524
- | | manual/resources/fonts/GraublauWebBold.otf,
1525
- | | manual/resources/fonts/Inconsolata.otf,
1526
- | | manual/resources/images/arrow_225_small.png,
1527
- | | manual/resources/images/arrow_315_small.png,
1528
- | | manual/resources/images/arrow_skip.png, manual/resources/images/cc-
1529
- | | by.png, manual/resources/images/dialog-error.png,
1530
- | | manual/resources/images/dialog-information.png,
1531
- | | manual/resources/images/dialog-warning.png, manual/resources/images
1532
- | | /emblem-important.png, manual/resources/images/help.png,
1533
- | | manual/resources/images/information.png,
1534
- | | manual/resources/images/magnifier.png,
1535
- | | manual/resources/images/magnifier_left.png,
1536
- | | manual/resources/images/page_white_code.png,
1537
- | | manual/resources/images/page_white_copy.png,
1538
- | | manual/resources/images/printer.png, manual/resources/images
1539
- | | /project-layout.png, manual/resources/images/question.png,
1540
- | | manual/resources/images/scripts_code.png, manual/resources/images
1541
- | | /strelka-dogs/doggie6.svg, manual/resources/images/strelka-
1542
- | | dogs/doggie7.svg, manual/resources/images/wrap.png,
1543
- | | manual/resources/images/wrapping.png,
1544
- | | manual/resources/js/jquery-1.4.4.min.js,
1545
- | | manual/resources/js/manual.js, manual/resources/js/sh.js,
1546
- | | manual/resources/swf/clipboard.swf, manual/src/index.page,
1547
- | | manual/src/starting.page:
1548
- | | Removing the manual, as everything is now in the API docs
1549
- | | [c1625574779f]
1550
- | |
1551
- o | * lib/strelka/cookie.rb, spec/strelka/cookie_spec.rb:
1552
- | | Add a guard against nil options hash in Strelka::Cookie#initialize
1553
- | | [cfddc50a05c8]
1554
- | |
1555
- 2012-09-27 Michael Granger <ged@FaerieMUD.org>
1556
-
1557
- o | * lib/strelka/cookie.rb, spec/strelka/cookie_spec.rb:
1558
- | | Fix dotted domain and allow max_age and domain to be reset.
1559
- | | [34039ead3f43]
1560
- | |
1561
- o | * lib/strelka/cookie.rb, spec/strelka/cookie_spec.rb:
1562
- | | Add Strelka::Cookie#options method.
1563
- | | [4278d5128b6a]
1564
- | |
1565
- 2012-09-26 Michael Granger <ged@FaerieMUD.org>
1566
-
1567
- o | * Deploying.rdoc, Plugins.rdoc, README.rdoc, Rakefile:
1568
- | | A few more fixups to documentation.
1569
- | | [53fcc16af3a6]
1570
- | |
1571
- 2012-09-26 Michael B. Hix <mhix@laika.com>
1572
-
1573
- o | * Deploying.rdoc:
1574
- | | Convert Deploying.rdoc.
1575
- | | [97e69307bb0c]
1576
- | |
1577
- o | * Branch merge.
1578
- |\ \ [06f595677069]
1579
- | | |
1580
- | o | * Plugins.rdoc:
1581
- | | | Plugins.rdoc corrections.
1582
- | | | [2be9f81193f0]
1583
- | | |
1584
- 2012-09-25 Michael B. Hix <mhix@laika.com>
1585
-
1586
- | o | * Plugins.rdoc:
1587
- | | | Plugins.rdoc conversion.
1588
- | | | [c5ee423330e3]
1589
- | | |
1590
- 2012-09-25 Michael Granger <ged@FaerieMUD.org>
1591
-
1592
- o | | * lib/strelka/constants.rb, lib/strelka/cookie.rb,
1593
- |/ / lib/strelka/exceptions.rb, spec/strelka/cookie_spec.rb:
1594
- | | Updating Strelka::Cookie to adhere to rfc6265
1595
- | | [04568539aa83]
1596
- | |
1597
- 2012-09-21 Michael Granger <ged@FaerieMUD.org>
1598
-
1599
- o | * Manifest.txt, lib/strelka/testing.rb, spec/lib/helpers.rb:
1600
- | | Split out some testing helper functions and RSpec matchers.
1601
- | |
1602
- | | Put them into 'strelka/testing' ala 'mongrel2/testing'.
1603
- | | [c58b05ad837b]
1604
- | |
1605
- o | * lib/strelka/constants.rb:
1606
- | | Header fix
1607
- | | [44a9b3386915]
1608
- | |
1609
- o | * lib/strelka/cookie.rb:
1610
- | | Added reference docs to Strelka::Cookie
1611
- | | [91dc69268b9b]
1612
- | |
1613
- 2012-09-18 Michael Granger <ged@FaerieMUD.org>
1614
-
1615
- o | * .rvm.gems, Rakefile:
1616
- | | Bump mongrel2 dependency.
1617
- | | [8d94f8575209]
1618
- | |
1619
- o | * .rvm.gems:
1620
- | | Update rvm gems to match gem dependencies
1621
- | | [f5ffb135b975]
1622
- | |
1623
- o | * lib/strelka/authprovider/basic.rb,
1624
- | | spec/strelka/authprovider/basic_spec.rb:
1625
- | | Simplified Strelka::AuthProvider::Basic.
1626
- | |
1627
- | | - removed the pbkdf2_hmac stuff for simplicity
1628
- | | - made it easier to use it as a base class for other auth providers.
1629
- | | [dbb4523ad258]
1630
- | |
1631
- o | * Rakefile:
1632
- | | Update dependencies
1633
- | | [1962465c2c92]
1634
- | |
1635
- 2012-09-05 Michael Granger <ged@FaerieMUD.org>
1636
-
1637
- o | * lib/strelka/cookie.rb:
1638
- | | Pull up cookie value method into a protected method for overriding.
1639
- | |
1640
- | | This was done to facilitate the creation of specialized cookie
1641
- | | classes.
1642
- | | [6f6203c7f0aa]
1643
- | |
1644
- o | * README.rdoc:
1645
- | | Small README fixes
1646
- | | [0c7cd9948e64]
1647
- | |
1648
- 2012-08-24 Michael Granger <ged@FaerieMUD.org>
1649
-
1650
- o | * Deploying.rdoc, Manifest.txt, Plugins.rdoc, README.rdoc,
1651
- | | Tutorial.rdoc, manual/src/deploying.page, manual/src/plugins.page,
1652
- | | manual/src/tutorial.page:
1653
- | | Documentation update.
1654
- | |
1655
- | | Got most of the default plugins covered at least minimally. Split
1656
- | | out the rest of the manual into RDoc pages.
1657
- | | [41ef7a20e7cb]
1658
- | |
1659
- 2012-08-24 Mahlon E. Smith <mahlon@martini.nu>
1660
-
1661
- o | * examples/strelka.conf.example:
1662
- | | Add a documented example configuration file.
1663
- | | [9d8ce0e99016]
1664
- | |
1665
- 2012-08-23 Mahlon E. Smith <mahlon@martini.nu>
1666
-
1667
- o | * spec/strelka/paramvalidator_spec.rb:
1668
- | | Oop, fix test copy/paste.
1669
- | | [59ad6d4842e2]
1670
- | |
1671
- o | * lib/strelka/paramvalidator.rb, spec/strelka/paramvalidator_spec.rb:
1672
- | | Finish the uuid built-in for ParamValidator.
1673
- | | [f854a54dda0b]
1674
- | |
1675
- 2012-08-16 Michael Granger <ged@FaerieMUD.org>
1676
-
1677
- o | * lib/strelka/app/restresources.rb:
1678
- | | Don't try to auto-create restresource routes for no-param datasets,
1679
- | | either.
1680
- | | [10af8924212c]
1681
- | |
1682
- 2012-08-13 Michael Granger <ged@FaerieMUD.org>
1683
-
1684
- o | * lib/strelka/multipartparser.rb:
1685
- | | Fix a debugging statement on Strelka::MultipartParser (Mike Hix)
1686
- | | [329ce8f7c57c]
1687
- | |
1688
- 2012-08-10 Michael Granger <ged@FaerieMUD.org>
1689
-
1690
- o | * lib/strelka/app/errors.rb:
1691
- | | Make the error-handler info log less spammy
1692
- | | [39a1afa23a17]
1693
- | |
1694
- o | * lib/strelka/httprequest.rb:
1695
- | | Make the debugging log for non-form entity bodies a bit less scary
1696
- | | [6cb5ec6cefe0]
1697
- | |
1698
- 2012-08-08 Michael Granger <ged@FaerieMUD.org>
1699
-
1700
- o | * lib/strelka/httprequest.rb, spec/strelka/httprequest_spec.rb,
1701
- | | spec/strelka/router/default_spec.rb:
1702
- | | Un-escape the HTTPRequest#path, #app_path, etc.
1703
- | | [5bd7bcb8e1ae]
1704
- | |
1705
- o | * lib/strelka/httprequest.rb, spec/data/forms/testform.form,
1706
- | | spec/strelka/httprequest_spec.rb:
1707
- | | Don't error when looking for form data in non-form request types.
1708
- | | [29a3489d80a4]
1709
- | |
1710
- 2012-08-03 Mahlon E. Smith <mahlon@martini.nu>
1711
-
1712
- o | * lib/strelka/paramvalidator.rb:
1713
- | | Add a paramvalidator built-in for matching UUIDs.
1714
- | | [3e38478b3f4d]
1715
- | |
1716
- 2012-07-27 Michael Granger <ged@FaerieMUD.org>
1717
-
1718
- o | * .rvm.gems, Rakefile:
1719
- | | Bumping mongrel2 dependency
1720
- | | [c098284fe5df]
1721
- | |
1722
- o | * bin/strelka:
1723
- | | Load apps before loading configs so app dependencies contribute to
1724
- | | config defaults
1725
- | | [40f1a13a41d7]
1726
- | |
1727
- o | * lib/strelka/mixins.rb:
1728
- | | Fix documentation for Strelka::MethodUtilities
1729
- | | [d4a1f8b96550]
1730
- | |
1731
- 2012-07-18 Michael Granger <ged@FaerieMUD.org>
1732
-
1733
- o | * lib/strelka/app/restresources.rb:
1734
- | | Fix type on error message
1735
- | | [67379f896726]
1736
- | |
1737
- 2012-07-17 Michael Granger <ged@FaerieMUD.org>
1738
-
1739
- o | * bin/strelka, lib/strelka/app/restresources.rb,
1740
- | | lib/strelka/httpresponse/negotiation.rb,
1741
- | | lib/strelka/paramvalidator.rb, spec/lib/helpers.rb,
1742
- | | spec/strelka/app/restresources_spec.rb,
1743
- | | spec/strelka/paramvalidator_spec.rb:
1744
- | | Clean up some :restresources behavior
1745
- | | [153e65a22805]
1746
- | |
1747
- 2012-07-16 Michael Granger <ged@FaerieMUD.org>
1748
-
1749
- o | * lib/strelka/httpresponse.rb, spec/strelka/httpresponse_spec.rb:
1750
- | | Bugfix for content-type-less responses
1751
- | | [3540a46a9b25]
1752
- | |
1753
- 2012-07-13 Michael Granger <ged@FaerieMUD.org>
1754
-
1755
- o | * lib/strelka/httpresponse/negotiation.rb:
1756
- | | Add a default stringifier (#to_s) to
1757
- | | Strelka::HTTPResponse::Negotiation
1758
- | | [4fe7c945616b]
1759
- | |
1760
- o | * lib/strelka/app/restresources.rb:
1761
- | | Fix the OPTIONS action in the :restresources plugin
1762
- | | [b832003605e0]
1763
- | |
1764
- o | * .rvm.gems, Rakefile:
1765
- | | Bump mongrel2 dependency
1766
- | | [6149242307af]
1767
- | |
1768
- 2012-07-12 Michael Granger <ged@FaerieMUD.org>
1769
-
1770
- o | * .rvm.gems, Rakefile:
1771
- | | Bump the mongrel2 dependency
1772
- | | [389401bb6480]
1773
- | |
1774
- o | * lib/strelka/app/restresources.rb:
1775
- | | Fix a buggy log message.
1776
- | | [75f9be31cb8c]
1777
- | |
1778
- 2012-07-06 Michael Granger <ged@FaerieMUD.org>
1779
-
1780
- o | * .rvm.gems, Rakefile, lib/strelka/app/templating.rb:
1781
- | | Set encoding on loaded templates.
1782
- | |
1783
- | | - bump Inversion dependency for encoding support
1784
- | | - Use the default_internal encoding or UTF-8 if that isn't set as the
1785
- | | encoding of templates loaded by the :templating plugin.
1786
- | | [4f7bb0f3a8f7]
1787
- | |
1788
- o | * Manifest.txt:
1789
- | | Add multipart-form support files to the manifest
1790
- | | [b3367292cf3f]
1791
- | |
1792
- o | * bin/strelka:
1793
- | | Fix the wording of the header from the "start" command in
1794
- | | bin/strelka
1795
- | | [5d677093466d]
1796
- | |
1797
- 2012-07-03 Michael Granger <ged@FaerieMUD.org>
1798
-
1799
- o | * lib/strelka/paramvalidator.rb, manual/src/starting.page,
1800
- | | manual/src/tutorial.page:
1801
- | | Documentation/manual updates
1802
- | | [75c75043ad29]
1803
- | |
1804
- 2012-07-03 Mahlon E. Smith <mahlon@martini.nu>
1805
-
1806
- o | * manual/src/plugins.page:
1807
- | | First round documentation for 'Writing Your Own Strelka Plugin'
1808
- | | manual page.
1809
- | | [e1c56057be7a]
1810
- | |
1811
- o | * .rvm.gems, Rakefile, manual/src/starting.page:
1812
- | | Fix bootstrap missing quote. Update mongrel2 dependency to 0.27.
1813
- | | [6ea74939d550]
1814
- | |
1815
- 2012-07-03 Michael Granger <ged@FaerieMUD.org>
1816
-
1817
- o | * bin/strelka:
1818
- | | Make the default bin/strelka command "help"
1819
- | | [c82aa0ae98c9]
1820
- | |
1821
- o | * README.rdoc:
1822
- | | Fix the command-line tool name
1823
- | | [b6ae193c24e9]
1824
- | |
1825
- 2012-06-27 Mahlon E. Smith <mahlon@martini.nu>
1826
-
1827
- o | * lib/strelka/mixins.rb, spec/strelka/mixins_spec.rb:
1828
- | | Don't deep copy modules/classes.
1829
- | | [d6cf8e4ac02f]
1830
- | |
1831
- 2012-06-25 Michael Granger <ged@FaerieMUD.org>
1832
-
1833
- o | * .hgignore, .rvm.gems, .tm_properties, Rakefile, examples/.env,
1834
- | | examples/Procfile, examples/apps/upload-demo, examples/config.yml,
1835
- | | examples/gen-config.rb, examples/static/examples.html,
1836
- | | examples/templates/upload-form.tmpl, examples/templates/upload-
1837
- | | success.tmpl, lib/strelka/app.rb, lib/strelka/exceptions.rb,
1838
- | | lib/strelka/httprequest.rb, lib/strelka/multipartparser.rb,
1839
- | | spec/data/forms/2_images.form, spec/data/forms/singleupload.form,
1840
- | | spec/data/forms/testform.form, spec/data/forms/testform_bad.form,
1841
- | | spec/data/forms/testform_badheaders.form,
1842
- | | spec/data/forms/testform_metadataonly.form,
1843
- | | spec/data/forms/testform_msie.form,
1844
- | | spec/data/forms/testform_multivalue.form,
1845
- | | spec/data/forms/testform_truncated_metadata.form,
1846
- | | spec/lib/helpers.rb, spec/strelka/app_spec.rb,
1847
- | | spec/strelka/multipartparser_spec.rb:
1848
- | | Added support for multipart/form-data entity bodies
1849
- | |
1850
- | | - Add a multipart mime document parser, as well as support for
1851
- | | Mongrel2 asynchronous uploads.
1852
- | | - Hook up the multipart parser for form data of type 'multipart/form-
1853
- | | data'.
1854
- | | - Added an example of async upload and multipart/form-data to the
1855
- | | examples.
1856
- | | - Include the Ruby engine + version in the process name
1857
- | | [cfae502bcec1]
1858
- | |
1859
- o | * spec/lib/helpers.rb:
1860
- | | Remove extra include from spec helpers
1861
- | | [abc12d87868e]
1862
- | |
1863
- o | * .rvm.gems, Rakefile:
1864
- | | Bumping Loggability dependency
1865
- | | [6039fcf3a3e0]
1866
- | |
1867
- 2012-06-22 Michael Granger <ged@FaerieMUD.org>
1868
-
1869
- o | * lib/strelka/httpresponse/negotiation.rb,
1870
- | | spec/strelka/httpresponse/negotiation_spec.rb:
1871
- | | Fix the entity body for negotiated responses.
1872
- | | [d2c4f8ac4e07]
1873
- | |
1874
- o | * lib/strelka/httpresponse.rb, spec/strelka/httpresponse_spec.rb:
1875
- | | Don't append a charset for non text/* content-type headers
1876
- | | [4ad96d45bcc2]
1877
- | |
1878
- 2012-06-21 Michael Granger <ged@FaerieMUD.org>
1879
-
1880
- o | * Rakefile:
1881
- | | Depend on mongrel2 0.25.0
1882
- | | [0f6b09255386]
1883
- | |
1884
- o | * lib/strelka/app/negotiation.rb, lib/strelka/httprequest.rb,
1885
- | | lib/strelka/httpresponse.rb,
1886
- | | lib/strelka/httpresponse/negotiation.rb,
1887
- | | spec/strelka/app/errors_spec.rb,
1888
- | | spec/strelka/app/restresources_spec.rb,
1889
- | | spec/strelka/app/templating_spec.rb, spec/strelka/app_spec.rb,
1890
- | | spec/strelka/httpresponse/negotiation_spec.rb:
1891
- | | Mongrel2 stream API fixes
1892
- | | [6d267b848e8a]
1893
- | |
1894
- 2012-06-20 Michael Granger <ged@FaerieMUD.org>
1895
-
1896
- o | * lib/strelka/httprequest/session.rb,
1897
- | | lib/strelka/httpresponse/session.rb:
1898
- | | Remove the session from the request when it's destroyed, too.
1899
- | | [e0f2e2a0e4b8]
1900
- | |
1901
- o | * lib/strelka/httprequest/session.rb,
1902
- | | lib/strelka/httpresponse/session.rb, lib/strelka/session.rb,
1903
- | | lib/strelka/session/default.rb,
1904
- | | spec/strelka/httprequest/session_spec.rb,
1905
- | | spec/strelka/httpresponse/session_spec.rb,
1906
- | | spec/strelka/session/default_spec.rb:
1907
- | | Fix session expiration for cookie-based persistance
1908
- | | * * * Conversion to stream-based Mongrel2 API
1909
- | | [7389c2f1e8e3]
1910
- | |
1911
- 2012-06-20 Mahlon E. Smith <mahlon@martini.nu>
1912
-
1913
- o | * lib/strelka/httprequest.rb:
1914
- | | Ignore possible Content-Type charsets when parsing form data.
1915
- | | [432d88e45c15]
1916
- | |
1917
- 2012-06-19 Mahlon E. Smith <mahlon@laika.com>
1918
-
1919
- o | * lib/strelka/paramvalidator.rb, spec/strelka/paramvalidator_spec.rb:
1920
- | | Don't use the raw_form to determine if the ParamValidator required
1921
- | | revalidation, just keep track of that ourselves.
1922
- | | [4d71cc097677]
1923
- | |
1924
- 2012-06-04 Mahlon E. Smith <mahlon@martini.nu>
1925
-
1926
- o | * lib/strelka/app/auth.rb, lib/strelka/authprovider/hostaccess.rb,
1927
- | | spec/strelka/authprovider/hostaccess_spec.rb:
1928
- | | Fix required arguments for the hostaccess auth provider.
1929
- | | [4a20533a0551]
1930
- | |
1931
- 2012-06-01 Michael Granger <ged@FaerieMUD.org>
1932
-
1933
- o | * examples/Procfile, examples/config.yml,
1934
- | | examples/static/examples.html, lib/strelka/authprovider/basic.rb:
1935
- | | Applied fixes for the examples/.
1936
- | | [d52a6f2ddc3d]
1937
- | |
1938
- 2012-06-01 Mahlon E. Smith <mahlon@martini.nu>
1939
-
1940
- o | * lib/strelka/app/auth.rb, lib/strelka/session/db.rb,
1941
- | | lib/strelka/session/default.rb, spec/strelka/app/auth_spec.rb,
1942
- | | spec/strelka/session/db_spec.rb:
1943
- | | Allow the configured auth provider to work with inherited
1944
- | | subhandlers. Require connection string configuration for the DB
1945
- | | session class.
1946
- | | [c1bb99c6ba36]
1947
- | |
1948
- 2012-05-31 Michael Granger <ged@FaerieMUD.org>
1949
-
1950
- o | * lib/strelka/session/db.rb, lib/strelka/session/default.rb:
1951
- | | Move .configure method to the bottom of class methods to avoid
1952
- | | calling them before they're defined.
1953
- | | [b80079d190c2]
1954
- | |
1955
- o | * lib/strelka.rb, lib/strelka/app.rb, lib/strelka/app/auth.rb,
1956
- | | lib/strelka/app/sessions.rb:
1957
- | | Load-order bugfixes for Configurability API.
1958
- | | [3c639d92e751]
1959
- | |
1960
- o | * Manifest.txt:
1961
- | | Updating the manifest
1962
- | | [b4fcae2e5d2b]
1963
- | |
1964
- o | * .tm_properties, lib/strelka/app/auth.rb,
1965
- | | lib/strelka/authprovider/basic.rb,
1966
- | | lib/strelka/authprovider/hostaccess.rb,
1967
- | | spec/strelka/app/auth_spec.rb,
1968
- | | spec/strelka/authprovider/basic_spec.rb:
1969
- | | Rewriting auth plugin to work app-agnostically
1970
- | | [f569df3baa60]
1971
- | |
1972
- o | * lib/strelka/app/sessions.rb, lib/strelka/cookie.rb,
1973
- | | lib/strelka/session/db.rb, lib/strelka/session/default.rb,
1974
- | | spec/strelka/app/sessions_spec.rb,
1975
- | | spec/strelka/httprequest/session_spec.rb,
1976
- | | spec/strelka/httpresponse/session_spec.rb,
1977
- | | spec/strelka/session/db_spec.rb,
1978
- | | spec/strelka/session/default_spec.rb:
1979
- | | Made session configuration consistent
1980
- | | [0b493098c008]
1981
- | |
1982
- 2012-05-30 Michael Granger <ged@FaerieMUD.org>
1983
-
1984
- o | * data/strelka/apps/hello-world, examples/.env, examples/Procfile,
1985
- | | examples/apps/auth-demo, examples/apps/auth-demo2, examples/apps
1986
- | | /hello-world, examples/apps/sessions-demo, examples/apps/ws-echo,
1987
- | | examples/config.yml, examples/gen-config.rb, examples/templates
1988
- | | /auth-form.tmpl, examples/templates/auth-success.tmpl:
1989
- | | Consolidated examples into a more-cohesive environment
1990
- | | [a594decb869b]
1991
- | |
1992
- o | * bin/strelka, lib/strelka.rb, lib/strelka/app.rb,
1993
- | | lib/strelka/constants.rb, lib/strelka/logging.rb,
1994
- | | spec/strelka/app_spec.rb, spec/strelka/logging_spec.rb:
1995
- | | Modify local discovery to be configurable
1996
- | | [c3b2a812c363]
1997
- | |
1998
- 2012-05-29 Michael Granger <ged@FaerieMUD.org>
1999
-
2000
- o | * .rvm.gems:
2001
- | | Update the inversion depenedency in RVM gemset, too
2002
- | | [6d2b72cb478f]
2003
- | |
2004
- 2012-05-30 Michael Granger <ged@FaerieMUD.org>
2005
-
2006
- o | * lib/strelka/httpresponse/negotiation.rb:
2007
- | | Dup the negotiated content type in case it's frozen.
2008
- | | [dcc8fd6d6c76]
2009
- | |
2010
- 2012-05-21 Michael Granger <ged@FaerieMUD.org>
2011
-
2012
- o | * Rakefile:
2013
- | | Updating Inversion dependency
2014
- | | [8309cf9a784a]
2015
- | |
2016
- 2012-05-27 Michael Granger <ged@FaerieMUD.org>
2017
-
2018
- o | * .rvm.gems, Rakefile, spec/lib/helpers.rb:
2019
- | | Update to Loggability 0.3 and use its spec helpers.
2020
- | | [dff6dc0f1b19]
2021
- | |
2022
- 2012-05-23 Michael Granger <ged@FaerieMUD.org>
2023
-
2024
- o | * lib/strelka/router/default.rb, lib/strelka/router/exclusive.rb,
2025
- | | spec/strelka/router/default_spec.rb,
2026
- | | spec/strelka/router/exclusive_spec.rb:
2027
- | | Reversed the order of verb and path in router lookup to fix routing
2028
- | | [43f8d7c4ded0]
2029
- | |
2030
- o | * lib/strelka/router/default.rb, spec/strelka/router/default_spec.rb:
2031
- | | Route HEAD requests through the GET route
2032
- | | [db73c6d49ea3]
2033
- | |
2034
- 2012-05-18 Michael Granger <ged@FaerieMUD.org>
2035
-
2036
- o | * .rvm.gems:
2037
- | | Bumping Loggability dependency for inheritance bugfix
2038
- | | [81bfb789b2d2]
2039
- | |
2040
- 2012-05-18 Mahlon E. Smith <mahlon@martini.nu>
2041
-
2042
- o | * lib/strelka/paramvalidator.rb:
2043
- | | Normalize parameter hash keys, so they function identically between
2044
- | | different serialization formats (via #parse_form_data)
2045
- | | [05faa86f9d4c]
2046
- | |
2047
- 2012-05-17 Michael Granger <ged@FaerieMUD.org>
2048
-
2049
- o | * bin/strelka:
2050
- | | Load the apps in bin/strelka before dumping the config so
2051
- | | Configurability defaults for them show up
2052
- | | [726ed30cb34e]
2053
- | |
2054
- o | * .rvm.gems, Rakefile:
2055
- | | Add dependency on Foreman
2056
- | | [9b7850d0f0f6]
2057
- | |
2058
- o | * lib/strelka/app.rb:
2059
- | | Remove code that sets logging level in devmode now that Loggability
2060
- | | has Configurabilty
2061
- | | [ea607e1e204b]
2062
- | |
2063
- 2012-05-11 Michael Granger <ged@FaerieMUD.org>
2064
-
2065
- o | * lib/strelka/authprovider.rb:
2066
- | | Correct some cut-and-paste errors in the Strelka::AuthProvider docs
2067
- | | [22477b16ae53]
2068
- | |
2069
- o | * lib/strelka.rb:
2070
- | | Log the sections with defaults
2071
- | | [5288bf325ace]
2072
- | |
2073
- o | * lib/strelka.rb:
2074
- | | Use the Configurability defaults API when loading the config.
2075
- | | [c67001fb4ad1]
2076
- | |
2077
- 2012-05-10 Michael Granger <ged@FaerieMUD.org>
2078
-
2079
- o | * .rvm.gems, Rakefile:
2080
- | | Bump Loggability dependency to 0.2.
2081
- | | [5de83bdaab31]
2082
- | |
2083
- 2012-05-09 Michael Granger <ged@FaerieMUD.org>
2084
-
2085
- o | * bin/strelka:
2086
- | | Updates for bin/strelka:
2087
- | | - Adding a 'config' subcommand to dump Configurability defaults for
2088
- | | discovered apps.
2089
- | | - Update for Loggability changes.
2090
- | | [f5c63705cd79]
2091
- | |
2092
- o | * lib/strelka/app.rb, lib/strelka/app/auth.rb:
2093
- | | Adding support for config-discovery
2094
- | | [a7352e61d5f5]
2095
- | |
2096
- o | * lib/strelka/app/routing.rb, spec/strelka/app/routing_spec.rb,
2097
- | | spec/strelka/router/default_spec.rb:
2098
- | | Adding support for regexp-only routes
2099
- | | [f74278523338]
2100
- | |
2101
- o | * lib/strelka/httprequest/session.rb,
2102
- | | lib/strelka/httpresponse/session.rb, spec/lib/helpers.rb,
2103
- | | spec/strelka/app/sessions_spec.rb,
2104
- | | spec/strelka/httprequest/session_spec.rb,
2105
- | | spec/strelka/httpresponse/session_spec.rb:
2106
- | | Prevent unnecessary session loading and saving.
2107
- | | [1242808d64a6]
2108
- | |
2109
- o | * lib/strelka/cookieset.rb, spec/strelka/cookieset_spec.rb:
2110
- | | Add delegation for some more Set methods to CookieSet
2111
- | | [c88faf6871e7]
2112
- | |
2113
- 2012-05-08 Michael Granger <ged@FaerieMUD.org>
2114
-
2115
- o | * .rvm.gems, Rakefile, lib/strelka/app.rb, lib/strelka/app/auth.rb,
2116
- | | lib/strelka/app/negotiation.rb, lib/strelka/app/parameters.rb,
2117
- | | lib/strelka/app/restresources.rb, lib/strelka/app/routing.rb,
2118
- | | lib/strelka/app/sessions.rb, lib/strelka/authprovider/basic.rb,
2119
- | | lib/strelka/cookie.rb, lib/strelka/cookieset.rb,
2120
- | | lib/strelka/plugins.rb, lib/strelka/session/db.rb,
2121
- | | lib/strelka/session/default.rb, spec/lib/helpers.rb,
2122
- | | spec/strelka/app/filters_spec.rb,
2123
- | | spec/strelka/app/restresources_spec.rb,
2124
- | | spec/strelka/app/routing_spec.rb, spec/strelka/app/sessions_spec.rb,
2125
- | | spec/strelka/httprequest/session_spec.rb:
2126
- | | Convert class-/module-level logging to Loggability API.
2127
- | | [751512af4f1f]
2128
- | |
2129
- 2012-05-07 Mahlon E. Smith <mahlon@martini.nu>
2130
-
2131
- o | * lib/strelka/app/templating.rb:
2132
- | | Provide access to the request during layout template wrapping, so
2133
- | | handlers can potentially override the method and attach arbitrary
2134
- | | request attributes to the layout.
2135
- | | [1fc0cf040a1e]
2136
- | |
2137
- 2012-05-07 Michael Granger <ged@FaerieMUD.org>
2138
-
2139
- o | * spec/lib/helpers.rb:
2140
- | | Removed some leftover logging code from pre-Loggability.
2141
- | | [60fdf52af868]
2142
- | |
2143
- 2012-05-07 Mahlon E. Smith <mahlon@martini.nu>
2144
-
2145
- o | * lib/strelka/httprequest.rb, spec/strelka/httprequest_spec.rb:
2146
- | | Add a simple shortcut method for URI redirection.
2147
- | | [eb22b0f1372c]
2148
- | |
2149
- o | * lib/strelka/httprequest/session.rb,
2150
- | | spec/strelka/httprequest/session_spec.rb:
2151
- | | Add a method to completely purge a session, from the request object.
2152
- | | [b8ed17e550e2]
2153
- | |
2154
- 2012-05-07 Michael Granger <ged@FaerieMUD.org>
2155
-
2156
- o | * lib/strelka/app.rb:
2157
- | | Move Strelka::App.devmode? above ::configure.
2158
- | |
2159
- | | This is required when the App config is loaded by the deferred
2160
- | | loader.
2161
- | | [09e467f68dca]
2162
- | |
2163
- o | * .rvm.gems, Rakefile, bin/strelka, lib/strelka.rb,
2164
- | | lib/strelka/app.rb, lib/strelka/app/auth.rb,
2165
- | | lib/strelka/app/routing.rb, lib/strelka/app/sessions.rb,
2166
- | | lib/strelka/authprovider.rb, lib/strelka/authprovider/basic.rb,
2167
- | | lib/strelka/authprovider/hostaccess.rb, lib/strelka/cookie.rb,
2168
- | | lib/strelka/httprequest.rb, lib/strelka/httprequest/acceptparams.rb,
2169
- | | lib/strelka/httpresponse.rb, lib/strelka/mixins.rb,
2170
- | | lib/strelka/paramvalidator.rb, lib/strelka/router.rb,
2171
- | | lib/strelka/router/default.rb, lib/strelka/router/exclusive.rb,
2172
- | | lib/strelka/session.rb, lib/strelka/session/db.rb,
2173
- | | lib/strelka/session/default.rb, spec/lib/helpers.rb,
2174
- | | spec/strelka/mixins_spec.rb:
2175
- | | Convert to Loggability for logging.
2176
- | | [4f0cbd7b3070]
2177
- | |
2178
- 2012-05-03 Michael Granger <ged@FaerieMUD.org>
2179
-
2180
- o | * bin/strelka:
2181
- | | Run started apps directly instead of counting on the app to run
2182
- | | itself
2183
- | | [7a2694d364b3]
2184
- | |
2185
- o | * lib/strelka/app/errors.rb:
2186
- | | Extract a method from the status response part of the :errors
2187
- | | plugin.
2188
- | | [2b827b37bae5]
2189
- | |
2190
- o | * lib/strelka/app/templating.rb:
2191
- | | Make the #layout method an accessor in the :templating plugin
2192
- | | [b3dc560d0863]
2193
- | |
2194
- o | * lib/strelka/mixins.rb:
2195
- | | Log uses of finish_with
2196
- | | [01cd0a6edde9]
2197
- | |
2198
- o | * MILESTONES.rdoc:
2199
- | | Add another task to MILESTONES
2200
- | | [22e60aaebaea]
2201
- | |
2202
- o | * .rvm.gems, MILESTONES.rdoc, README.rdoc, lib/strelka.rb,
2203
- | | lib/strelka/app.rb, lib/strelka/app/templating.rb,
2204
- | | lib/strelka/httprequest/acceptparams.rb:
2205
- | | Add some documentation
2206
- | | [5bd05add55ad]
2207
- | |
2208
- 2012-05-02 Michael Granger <ged@FaerieMUD.org>
2209
-
2210
- o | * MILESTONES.rdoc, Manifest.txt:
2211
- | | Adding a MILESTONES file.
2212
- | |
2213
- | | We'll use this as a checklist of what needs to be done for the next
2214
- | | release.
2215
- | | [d8e74e3bf97b]
2216
- | |
2217
- o | * lib/strelka/logging.rb:
2218
- | | Change fatal output color to be more readable
2219
- | | [403cf0ef01f0]
2220
- | |
2221
- 2012-04-25 Michael Granger <ged@FaerieMUD.org>
2222
-
2223
- o | * lib/strelka/app.rb, lib/strelka/plugins.rb,
2224
- | | spec/strelka/httpresponse/negotiation_spec.rb,
2225
- | | spec/strelka/plugins_spec.rb:
2226
- | | Add an #application_stack method to the PluginLoader mixin
2227
- | | [7427a74ae313]
2228
- | |
2229
- o | * lib/strelka/app.rb, spec/strelka/app_spec.rb:
2230
- | | Add configurable ::devmode? setting to Strelka::App
2231
- | | [c94cf810fdf7]
2232
- | |
2233
- o | * lib/strelka/plugins.rb, spec/strelka/plugins_spec.rb:
2234
- | | Fix plugins clobbering their Class ivars if registered more than
2235
- | | once
2236
- | | [d9ff6bdd0177]
2237
- | |
2238
- o | * lib/strelka/mixins.rb:
2239
- | | Add a 'singleton_method_alias' declarative to MethodUtilities
2240
- | | [e33e97ad96bd]
2241
- | |
2242
- o | * lib/strelka/app/errors.rb, lib/strelka/mixins.rb,
2243
- | | spec/strelka/app/errors_spec.rb:
2244
- | | Add an exception-handler to the :errors plugin.
2245
- | | [53001e8ff327]
2246
- | |
2247
- 2012-04-24 Michael Granger <ged@FaerieMUD.org>
2248
-
2249
- o | * lib/strelka/app/templating.rb, spec/strelka/app/templating_spec.rb:
2250
- | | Refactored on of the big methods in :templating.
2251
- | | [f933118fb9db]
2252
- | |
2253
- 2012-04-23 Michael Granger <ged@FaerieMUD.org>
2254
-
2255
- o | * .rvm.gems:
2256
- | | Bumped hoe-deveiate in the dev gemset
2257
- | | [2a0529c51350]
2258
- | |
2259
- o | * Rakefile:
2260
- | | Activate deveiate Hoe plugin
2261
- | | [74927b62af8f]
2262
- | |
2263
- o | * lib/strelka/app/parameters.rb, lib/strelka/paramvalidator.rb,
2264
- | | spec/strelka/paramvalidator_spec.rb:
2265
- | | Clean up ParamValidator specs,
2266
- | | [90ca23f958cd]
2267
- | |
2268
- 2012-04-21 Mahlon E. Smith <mahlon@martini.nu>
2269
-
2270
- o | * lib/strelka/paramvalidator.rb, spec/strelka/app/parameters_spec.rb,
2271
- | | spec/strelka/paramvalidator_spec.rb:
2272
- | | Ensure form data is revalidated when its profile is changed.
2273
- | |
2274
- | | This also fixes some Symbol/String bugs in the internals.
2275
- | | [f343990cae18]
2276
- | |
2277
- 2012-04-21 Michael Granger <ged@FaerieMUD.org>
2278
-
2279
- o | * lib/strelka/mixins.rb, spec/lib/helpers.rb,
2280
- | | spec/strelka/authprovider/basic_spec.rb,
2281
- | | spec/strelka/authprovider_spec.rb, spec/strelka/httprequest_spec.rb,
2282
- | | spec/strelka/router/default_spec.rb,
2283
- | | spec/strelka/router/exclusive_spec.rb:
2284
- | | Add the backtrace to the finish_with status_info.
2285
- | |
2286
- | | This release also adds a 'finish_with' matcher that will eliminate
2287
- | | the need to duplicate the status_info struct exactly to test
2288
- | | abnormal status responses.
2289
- | | [8f6441fd0751]
2290
- | |
2291
- o | * lib/strelka/app/parameters.rb:
2292
- | | Add some better docs for the :parameters plugin
2293
- | | [f0c8f37e24d7]
2294
- | |
2295
- 2012-04-20 Michael Granger <ged@FaerieMUD.org>
2296
-
2297
- o | * lib/strelka/app.rb, lib/strelka/app/errors.rb,
2298
- | | spec/strelka/app/errors_spec.rb, spec/strelka/app_spec.rb:
2299
- | | Set the status info in the transaction notes on status responses.
2300
- | | [cd78c839f328]
2301
- | |
2302
- o | * lib/strelka/httprequest.rb, lib/strelka/httpresponse.rb,
2303
- | | lib/strelka/mixins.rb, spec/strelka/app/filters_spec.rb,
2304
- | | spec/strelka/httpresponse_spec.rb:
2305
- | | Make HTTPResponse share the request's notes Hash.
2306
- | | [9d7fb3d16c12]
2307
- | |
2308
- o | * lib/strelka/app/errors.rb:
2309
- | | Allow re-throwing with the status_info struct
2310
- | | [90e1c9e72ae7]
2311
- | |
2312
- o | * bin/strelka, lib/strelka/app.rb:
2313
- | | Add the local 'lib' directory to the discovery path.
2314
- | |
2315
- | | This makes it easier to use the 'strelka' command to interact with
2316
- | | apps during development, and also some kinds of deployment
2317
- | | environments like 'supervise'-style ones.
2318
- | | [612140994e8b]
2319
- | |
2320
- 2012-04-19 Michael Granger <ged@FaerieMUD.org>
2321
-
2322
- o | * bin/strelka, lib/strelka.rb, lib/strelka/app.rb:
2323
- | | Use a local data/<something> directory as the Strelka datadir for
2324
- | | the 'strelka' command.
2325
- | | [c3e9ce4035b6]
2326
- | |
2327
- o | * lib/strelka/plugins.rb:
2328
- | | Moving application stack dump function to the PluginLoader mixin
2329
- | | [3c35f0dd2089]
2330
- | |
2331
- 2012-04-18 Michael Granger <ged@FaerieMUD.org>
2332
-
2333
- o | * examples/gen-config.rb, lib/strelka/plugins.rb,
2334
- | | spec/strelka/plugins_spec.rb:
2335
- | | Fix plugin loading, add a spec for coverage.
2336
- | | [0b6ed1f75d7b]
2337
- | |
2338
- o | * Manifest.txt:
2339
- | | Updated the manifest
2340
- | | [0233fbbfabd9]
2341
- | |
2342
- o | * examples/apps/ws-echo, experiments/reflective-module.rb,
2343
- | | lib/strelka/app.rb, lib/strelka/app/auth.rb,
2344
- | | lib/strelka/app/errors.rb, lib/strelka/app/filters.rb,
2345
- | | lib/strelka/app/negotiation.rb, lib/strelka/app/parameters.rb,
2346
- | | lib/strelka/app/plugins.rb, lib/strelka/app/restresources.rb,
2347
- | | lib/strelka/app/routing.rb, lib/strelka/app/sessions.rb,
2348
- | | lib/strelka/app/templating.rb, lib/strelka/behavior/plugin.rb,
2349
- | | lib/strelka/plugins.rb, spec/strelka/app/auth_spec.rb,
2350
- | | spec/strelka/app/errors_spec.rb, spec/strelka/app/filters_spec.rb,
2351
- | | spec/strelka/app/negotiation_spec.rb,
2352
- | | spec/strelka/app/parameters_spec.rb,
2353
- | | spec/strelka/app/plugins_spec.rb,
2354
- | | spec/strelka/app/restresources_spec.rb,
2355
- | | spec/strelka/app/routing_spec.rb, spec/strelka/app/sessions_spec.rb,
2356
- | | spec/strelka/app/templating_spec.rb, spec/strelka/app_spec.rb,
2357
- | | spec/strelka/plugins_spec.rb:
2358
- | | Generalize the plugin system.
2359
- | |
2360
- | | This change pulls the plugin system out of App and makes it a
2361
- | | generic system that can extend any class with a plugin system. This
2362
- | | was done in anticipation of a new WebSocket server class, which will
2363
- | | also have App-style plugins, but with a different API, and loaded
2364
- | | from a different place in the filesystem.
2365
- | |
2366
- | | This change requires code changes to plugins and the classes that
2367
- | | are extended by them:
2368
- | |
2369
- | | * Strelka::App::Plugin is now Strelka::Plugin
2370
- | | * Strelka::App::Plugins is now Strelka::PluginLoader
2371
- | | [ea4c4358a943]
2372
- | |
2373
- 2012-04-16 Mahlon E. Smith <mahlon@martini.nu>
2374
-
2375
- o | * lib/strelka/app/sessions.rb, lib/strelka/httprequest/session.rb,
2376
- | | lib/strelka/httpresponse/session.rb, lib/strelka/session.rb,
2377
- | | lib/strelka/session/db.rb, lib/strelka/session/default.rb,
2378
- | | manual/src/starting.page, spec/lib/helpers.rb,
2379
- | | spec/strelka/app/sessions_spec.rb,
2380
- | | spec/strelka/httprequest/session_spec.rb,
2381
- | | spec/strelka/httpresponse/session_spec.rb,
2382
- | | spec/strelka/session/db_spec.rb,
2383
- | | spec/strelka/session/default_spec.rb:
2384
- | | Make Request#session? ask the session store if a session exists.
2385
- | | [a351bc3b9528]
2386
- | |
2387
- o | * lib/strelka/httprequest.rb, spec/strelka/httprequest_spec.rb,
2388
- | | spec/strelka/router/default_spec.rb:
2389
- | | Explicitly handle nil content-types during form data parsing.
2390
- | | [59b791e4bfbe]
2391
- | |
2392
- o | * lib/strelka/app.rb, lib/strelka/authprovider.rb,
2393
- | | lib/strelka/mixins.rb, lib/strelka/router/default.rb,
2394
- | | spec/strelka/router/default_spec.rb,
2395
- | | spec/strelka/router/exclusive_spec.rb:
2396
- | | Return an HTTP::METHOD_NOT_ALLOWED if the request route is valid,
2397
- | | but the method is not.
2398
- | | [5d62cb4be772]
2399
- | |
2400
- 2012-04-11 Michael Granger <ged@FaerieMUD.org>
2401
-
2402
- o | * lib/strelka/app/routing.rb, lib/strelka/app/templating.rb,
2403
- | | spec/strelka/app/routing_spec.rb:
2404
- | | Add Router#routerclass to subclasses. nil guard for
2405
- | | layout_templates.
2406
- | | [279f2399ad4a]
2407
- | |
2408
- o | * Rakefile:
2409
- | | Remove outdated Rakefile cruft.
2410
- | | [02441af05e37]
2411
- | |
2412
- 2012-04-11 Mahlon E. Smith <mahlon@martini.nu>
2413
-
2414
- o | * lib/strelka/app/auth.rb, lib/strelka/app/errors.rb,
2415
- | | lib/strelka/app/filters.rb, lib/strelka/app/negotiation.rb,
2416
- | | lib/strelka/app/plugins.rb, lib/strelka/app/restresources.rb,
2417
- | | lib/strelka/app/sessions.rb, lib/strelka/app/templating.rb,
2418
- | | lib/strelka/mixins.rb, spec/strelka/app/auth_spec.rb,
2419
- | | spec/strelka/app/errors_spec.rb, spec/strelka/app/filters_spec.rb,
2420
- | | spec/strelka/app/negotiation_spec.rb,
2421
- | | spec/strelka/app/parameters_spec.rb,
2422
- | | spec/strelka/app/restresources_spec.rb,
2423
- | | spec/strelka/app/sessions_spec.rb,
2424
- | | spec/strelka/app/templating_spec.rb, spec/strelka/mixins_spec.rb:
2425
- | | Add inheritance support to plugins.
2426
- | |
2427
- | | Currently, this is done manually by defining an inherited hook in
2428
- | | each plugin's ClassMethods, but we'll likely try to find some way to
2429
- | | automate it or at least refacter it into a declarative or two.
2430
- | | [4217deb1952c]
2431
- | |
2432
- 2012-04-11 Michael Granger <ged@FaerieMUD.org>
2433
-
2434
- o | * IDEAS.rdoc, Manifest.txt, bin/leash, bin/strelka, lib/strelka.rb,
2435
- | | lib/strelka/app.rb, lib/strelka/constants.rb:
2436
- | | Rename bin/leash to bin/strelka and allow overriding the DATADIR.
2437
- | | [195b7937f42a]
2438
- | |
2439
- o | * Rakefile, lib/strelka/app.rb, lib/strelka/app/auth.rb,
2440
- | | lib/strelka/app/errors.rb, lib/strelka/app/filters.rb,
2441
- | | lib/strelka/app/negotiation.rb, lib/strelka/app/parameters.rb,
2442
- | | lib/strelka/app/plugins.rb, lib/strelka/app/restresources.rb,
2443
- | | lib/strelka/app/routing.rb, lib/strelka/app/sessions.rb,
2444
- | | spec/strelka/app/auth_spec.rb, spec/strelka/app/errors_spec.rb,
2445
- | | spec/strelka/app/filters_spec.rb, spec/strelka/app/plugins_spec.rb,
2446
- | | spec/strelka/app/restresources_spec.rb,
2447
- | | spec/strelka/app/routing_spec.rb:
2448
- | | Fixing specs broken by the deferred plugins change. Ugh, I suck.
2449
- | | [d762ebcce3a6]
2450
- | |
2451
- o | * Merging with ssh://hg@deveiate.org/Strelka@8f1c27819e70
2452
- |\ \ [5fcd76455aad]
2453
- | | |
2454
- | o | * Manifest.txt:
2455
- | | | Updating the manifest
2456
- | | | [35165b3d01cc]
2457
- | | |
2458
- 2012-04-11 Mahlon E. Smith <mahlon@martini.nu>
2459
-
2460
- o | | * lib/strelka/session/default.rb:
2461
- |/ / Use the built-in securerandom method for obtaining a hex value.
2462
- | | [8f1c27819e70]
2463
- | |
2464
- 2012-04-10 Michael Granger <ged@FaerieMUD.org>
2465
-
2466
- o | * lib/strelka/app/auth.rb, lib/strelka/app/parameters.rb,
2467
- | | lib/strelka/app/restresources.rb, lib/strelka/app/routing.rb,
2468
- | | lib/strelka/paramvalidator.rb, spec/strelka/app/auth_spec.rb,
2469
- | | spec/strelka/app/parameters_spec.rb,
2470
- | | spec/strelka/app/routing_spec.rb,
2471
- | | spec/strelka/paramvalidator_spec.rb:
2472
- | | Rework the paramvalidator and parameters plugin to allow per-request
2473
- | | overrides
2474
- | | [e7393474988b]
2475
- | |
2476
- o | * bin/leash, examples/apps/auth-demo, examples/apps/auth-demo2,
2477
- | | examples/apps/sessions-demo, examples/auth-demo.rb, examples/auth-
2478
- | | demo2.rb, examples/auth-form.tmpl, examples/auth-success.tmpl,
2479
- | | examples/config.yml, examples/examples.css, examples/examples.html,
2480
- | | examples/layout.tmpl, examples/sessions-demo.rb,
2481
- | | examples/static/examples.css, examples/static/examples.html,
2482
- | | examples/templates/auth-form.tmpl, examples/templates/auth-
2483
- | | success.tmpl, examples/templates/layout.tmpl, lib/strelka/app.rb,
2484
- | | lib/strelka/app/auth.rb, lib/strelka/app/plugins.rb,
2485
- | | lib/strelka/constants.rb, spec/strelka/app/plugins_spec.rb:
2486
- | | Modify the plugins mixin to defer adding the mixin part of plugins
2487
- | | as long as possible.
2488
- | |
2489
- | | This allows someone to call plugin/plugins multiple times without
2490
- | | having to worry about what order they're called in, and makes using
2491
- | | a common Strelka::App subclass for a suite of applications easier.
2492
- | | [546809f3204f]
2493
- | |
2494
- 2012-04-09 Mahlon E. Smith <mahlon@martini.nu>
2495
-
2496
- o | * lib/strelka/app/templating.rb:
2497
- | | Ensure the templating plugin runs before the errors plugin, so
2498
- | | symbols are properly converted to Strelka::HTTPResponse objects
2499
- | | before errors see them.
2500
- | | [9423c8ba3ee0]
2501
- | |
2502
- 2012-04-06 Michael Granger <ged@FaerieMUD.org>
2503
-
2504
- o | * lib/strelka/session/db.rb:
2505
- | | Change the DB session class to default to Mongrel2's in-memory DB.
2506
- | |
2507
- | | Use Mongrel2's in-memory config db for unconfigured db sessions
2508
- | | instead of depending on the sqlite3 gem.
2509
- | | [2a1129fed218]
2510
- | |
2511
- o | * Manifest.txt:
2512
- | | Update the manifest
2513
- | | [54d6bde6cb0c]
2514
- | |
2515
- o | * Merged with 49e538cdee68
2516
- |\ \ [05d72a2ed8cc]
2517
- | | |
2518
- | o | * lib/strelka.rb:
2519
- | | | Set some RDoc metadata from the main module
2520
- | | | [28465ed81190]
2521
- | | |
2522
- | o | * lib/strelka/logging.rb:
2523
- | | | Remove ERB dependency from the HTML logger
2524
- | | | [6e6a14f86dc6]
2525
- | | |
2526
- | o | * spec/lib/helpers.rb:
2527
- | | | Update the setup_config_db helper for Mongrel2-0.20.x
2528
- | | | [9f5393deb2da]
2529
- | | |
2530
- | o | * .hgignore:
2531
- | | | Add the ChangeLog to the ignorefile
2532
- | | | [cc8c30d38652]
2533
- | | |
2534
- | o | * lib/strelka/app/templating.rb:
2535
- | | | Add API docs to the :templating plugin module
2536
- | | | [3c160d996320]
2537
- | | |
2538
- | o | * README.rdoc:
2539
- | | | Add more URLs
2540
- | | | [060962556bd1]
2541
- | | |
2542
- | o | * Rakefile:
2543
- | | | Oops. Fix typo
2544
- | | | [5a8aa207860b]
2545
- | | |
2546
- | o | * .rvm.gems, Rakefile:
2547
- | | | Update dependencies
2548
- | | | [787e523777d1]
2549
- | | |
2550
- 2012-04-06 Mahlon E. Smith <mahlon@martini.nu>
2551
-
2552
- o | | * lib/strelka/app/sessions.rb, lib/strelka/cookie.rb,
2553
- | | | lib/strelka/cookieset.rb, lib/strelka/session.rb,
2554
- | | | lib/strelka/session/db.rb, lib/strelka/session/default.rb,
2555
- | | | spec/strelka/cookie_spec.rb, spec/strelka/session/db_spec.rb,
2556
- | | | spec/strelka/session/default_spec.rb:
2557
- | | | Expose cookie options to the default and db session stores.
2558
- | | | [49e538cdee68]
2559
- | | |
2560
- o | | * Manifest.txt, lib/strelka/app/sessions.rb, lib/strelka/session.rb,
2561
- |/ / lib/strelka/session/db.rb, lib/strelka/session/default.rb,
2562
- | | spec/strelka/session/db_spec.rb,
2563
- | | spec/strelka/session/default_spec.rb:
2564
- | | Add a persistent DB session store, using sequel.
2565
- | | [99f3c3f5d6ca]
2566
- | |
2567
- 2012-04-04 Michael Granger <ged@FaerieMUD.org>
2568
-
2569
- o | * manual/src/tutorial.page:
2570
- | | Add a bit more content to the manual.
2571
- | | [79a26c9e4dd5]
2572
- | |
2573
- 2012-04-02 Michael Granger <ged@FaerieMUD.org>
2574
-
2575
- o | * manual/src/cookbook.page, manual/src/index.page,
2576
- | | manual/src/starting.page, manual/src/tutorial.page,
2577
- | | manual/src/writing.page:
2578
- | | Add some friendly and inspiring content to the manual.
2579
- | | [c6a0cbb13404]
2580
- | |
2581
- o | * lib/strelka/logging.rb, lib/strelka/mixins.rb:
2582
- | | Clean up logging mixin; improve API docs
2583
- | | [b17a609a35e6]
2584
- | |
2585
- 2012-03-28 Michael Granger <ged@FaerieMUD.org>
2586
-
2587
- o | * .rvm.gems, Rakefile:
2588
- | | Bump Ruby-Mongrel2 dependency to 0.19.
2589
- | | [7f79f3fa2ae7]
2590
- | |
2591
- o | * Manifest.txt:
2592
- | | Updating the manifest
2593
- | | [6d68cc07b4db]
2594
- | |
2595
- o | * IDEAS.rdoc:
2596
- | | Add an idea to IDEAS
2597
- | | [3df08e5fdd65]
2598
- | |
2599
- o | * examples/auth-demo.rb, examples/config.yml, examples/examples.css,
2600
- | | examples/examples.html, examples/gen-config.rb:
2601
- | | Updated examples
2602
- | | [78f38fe5f6ea]
2603
- | |
2604
- o | * .rvm.gems, Rakefile:
2605
- | | Depend on the latest version of Ruby-Mongrel2
2606
- | | [51a639c9d025]
2607
- | |
2608
- o | * lib/strelka/app/auth.rb, spec/strelka/app/auth_spec.rb:
2609
- | | Set the authenticated_user on the request if authentication succeeds
2610
- | | [ccda5fdfb280]
2611
- | |
2612
- o | * lib/strelka/authprovider/basic.rb,
2613
- | | spec/strelka/authprovider/basic_spec.rb:
2614
- | | Fix configuration for the basic auth provider
2615
- | | [525d0418a4bf]
2616
- | |
2617
- 2012-03-27 Michael Granger <ged@FaerieMUD.org>
2618
-
2619
- o | * examples/auth-demo.rb, lib/strelka/app/auth.rb,
2620
- |\ \ lib/strelka/authprovider.rb, spec/strelka/app/auth_spec.rb:
2621
- | | | Merging with accidentally-committed auth patch on Github
2622
- | | | [3025b5711352]
2623
- | | |
2624
- 2012-03-20 Michael Granger <ged@FaerieMUD.org>
2625
-
2626
- | o | * examples/auth-demo.rb, examples/config.yml, lib/strelka/app/auth.rb,
2627
- | | | lib/strelka/authprovider.rb, spec/strelka/app/auth_spec.rb:
2628
- | | | Adding authentication system
2629
- | | | [d4977be37d42]
2630
- | | |
2631
- 2012-03-27 Michael Granger <ged@FaerieMUD.org>
2632
-
2633
- o | | * spec/strelka/httprequest/session_spec.rb:
2634
- | | | Add specs for Strelka::HTTPRequest::Session.
2635
- | | | [b26dc16fb80c]
2636
- | | |
2637
- o | | * Manifest.txt:
2638
- | | | Update the manifest
2639
- | | | [f2f01654058b]
2640
- | | |
2641
- o | | * examples/auth-demo.rb, examples/auth-demo2.rb, examples/auth-
2642
- |/ / form.tmpl, examples/auth-success.tmpl, examples/config.yml,
2643
- | | examples/layout.tmpl, lib/strelka/app.rb, lib/strelka/app/auth.rb,
2644
- | | lib/strelka/app/templating.rb, lib/strelka/authprovider.rb,
2645
- | | lib/strelka/authprovider/basic.rb,
2646
- | | lib/strelka/authprovider/hostaccess.rb,
2647
- | | lib/strelka/httprequest/auth.rb, lib/strelka/mixins.rb,
2648
- | | spec/lib/helpers.rb, spec/strelka/app/auth_spec.rb,
2649
- | | spec/strelka/authprovider/basic_spec.rb,
2650
- | | spec/strelka/authprovider/hostaccess_spec.rb,
2651
- | | spec/strelka/authprovider_spec.rb,
2652
- | | spec/strelka/httprequest/auth_spec.rb:
2653
- | | Adding authentication system
2654
- | | [a59f16e2a574]
2655
- | |
2656
- 2012-03-19 Michael Granger <ged@FaerieMUD.org>
2657
-
2658
- o | * README.rdoc:
2659
- | | Update README
2660
- | | [5301f1af2165]
2661
- | |
2662
- o | * lib/strelka/app/errors.rb, spec/strelka/app/errors_spec.rb:
2663
- | | Add documentation for the Errors plugin, improve test coverage.
2664
- | | [ff3ef6e5a7a1]
2665
- | |
2666
- o | * Manifest.txt:
2667
- | | Add session files to the manifest
2668
- | | [f1f2a5e7ca5d]
2669
- | |
2670
- o | * .tm_properties, Rakefile, examples/config.yml, examples/gen-
2671
- | | config.rb, examples/sessions-demo.rb, lib/strelka/app/sessions.rb,
2672
- | | lib/strelka/httprequest/session.rb,
2673
- | | lib/strelka/httpresponse/session.rb, lib/strelka/mixins.rb,
2674
- | | lib/strelka/session.rb, lib/strelka/session/default.rb,
2675
- | | spec/lib/helpers.rb, spec/strelka/app/sessions_spec.rb,
2676
- | | spec/strelka/httprequest/session_spec.rb,
2677
- | | spec/strelka/mixins_spec.rb, spec/strelka/session/default_spec.rb,
2678
- | | spec/strelka/session_spec.rb:
2679
- | | Add session support
2680
- | | [90988bc30afc]
2681
- | |
2682
- o | * lib/strelka/app.rb, lib/strelka/app/plugins.rb,
2683
- | | lib/strelka/mixins.rb:
2684
- | | Adding a MethodUtilities mixin for class_attr_* declaratives
2685
- | | [5901ddde20f8]
2686
- | |
2687
- o | * lib/strelka/cookie.rb, spec/strelka/cookie_spec.rb:
2688
- | | Updated Strelka::Cookie to use the new URI API
2689
- | | [67afa2cc22d9]
2690
- | |
2691
- o | * lib/strelka/app.rb:
2692
- | | Fix the logging setup in App.run
2693
- | | [3b2e499e7c3b]
2694
- | |
2695
- 2012-03-16 Mahlon E. Smith <mahlon@martini.nu>
2696
-
2697
- o | * lib/strelka/app/templating.rb:
2698
- | | Auto-reload the layout template if it changed, mimicing the behavior
2699
- | | already present in other templates.
2700
- | | [152883524fe1]
2701
- | |
2702
- 2012-03-16 Michael Granger <ged@FaerieMUD.org>
2703
-
2704
- o | * lib/strelka/app.rb:
2705
- | | Install the color logger if outputting to a TTY
2706
- | | [bb26271e08fa]
2707
- | |
2708
- 2012-03-15 Michael Granger <ged@FaerieMUD.org>
2709
-
2710
- o | * lib/strelka/app/parameters.rb:
2711
- | | More whitespace fixes
2712
- | | [1e95a909eb71]
2713
- | |
2714
- o | * bin/leash, lib/strelka.rb, lib/strelka/app.rb,
2715
- | | lib/strelka/app/errors.rb, lib/strelka/app/filters.rb,
2716
- | | lib/strelka/app/negotiation.rb, lib/strelka/app/parameters.rb,
2717
- | | lib/strelka/app/plugins.rb, lib/strelka/app/restresources.rb,
2718
- | | lib/strelka/app/routing.rb, lib/strelka/app/templating.rb,
2719
- | | lib/strelka/behavior/plugin.rb, lib/strelka/cookie.rb,
2720
- | | lib/strelka/cookieset.rb, lib/strelka/httprequest.rb,
2721
- | | lib/strelka/httprequest/acceptparams.rb,
2722
- | | lib/strelka/httprequest/negotiation.rb, lib/strelka/httpresponse.rb,
2723
- | | lib/strelka/httpresponse/negotiation.rb, lib/strelka/logging.rb,
2724
- | | lib/strelka/mixins.rb, lib/strelka/paramvalidator.rb,
2725
- | | lib/strelka/router.rb, lib/strelka/router/default.rb,
2726
- | | lib/strelka/router/exclusive.rb, manual/lib/api-filter.rb,
2727
- | | manual/lib/editorial-filter.rb, manual/lib/examples-filter.rb,
2728
- | | manual/lib/links-filter.rb, spec/lib/constants.rb,
2729
- | | spec/strelka/app/errors_spec.rb, spec/strelka/app/filters_spec.rb,
2730
- | | spec/strelka/app/negotiation_spec.rb,
2731
- | | spec/strelka/app/parameters_spec.rb,
2732
- | | spec/strelka/app/plugins_spec.rb,
2733
- | | spec/strelka/app/restresources_spec.rb,
2734
- | | spec/strelka/app/routing_spec.rb,
2735
- | | spec/strelka/app/templating_spec.rb, spec/strelka/app_spec.rb,
2736
- | | spec/strelka/cookie_spec.rb, spec/strelka/cookieset_spec.rb,
2737
- | | spec/strelka/exceptions_spec.rb,
2738
- | | spec/strelka/httprequest/acceptparams_spec.rb,
2739
- | | spec/strelka/httprequest/negotiation_spec.rb,
2740
- | | spec/strelka/httprequest_spec.rb,
2741
- | | spec/strelka/httpresponse/negotiation_spec.rb,
2742
- | | spec/strelka/logging_spec.rb, spec/strelka/mixins_spec.rb,
2743
- | | spec/strelka/router/default_spec.rb,
2744
- | | spec/strelka/router/exclusive_spec.rb, spec/strelka/router_spec.rb:
2745
- | | Replace bangheaders, clean up whitespace.
2746
- | |
2747
- | | * Replace the bangheader with a better editor header.
2748
- | | * Remove Mahlonspace (trailing whitespace)
2749
- | | [fa6133ac407d]
2750
- | |
2751
- o | * lib/strelka/router.rb, spec/strelka/router_spec.rb:
2752
- | | Fix Strelka::Router documentation and spec.
2753
- | | [0a9de4c5e5fc]
2754
- | |
2755
- o | * Manifest.txt, lib/strelka/app/defaultrouter.rb,
2756
- | | lib/strelka/app/exclusiverouter.rb, lib/strelka/app/parameters.rb,
2757
- | | lib/strelka/app/paramvalidator.rb, lib/strelka/app/router.rb,
2758
- | | lib/strelka/app/routing.rb, lib/strelka/paramvalidator.rb,
2759
- | | lib/strelka/router.rb, lib/strelka/router/default.rb,
2760
- | | lib/strelka/router/exclusive.rb,
2761
- | | spec/strelka/app/defaultrouter_spec.rb,
2762
- | | spec/strelka/app/exclusiverouter_spec.rb,
2763
- | | spec/strelka/app/parameters_spec.rb,
2764
- | | spec/strelka/app/paramvalidator_spec.rb,
2765
- | | spec/strelka/app/router_spec.rb, spec/strelka/app/routing_spec.rb,
2766
- | | spec/strelka/paramvalidator_spec.rb,
2767
- | | spec/strelka/router/default_spec.rb,
2768
- | | spec/strelka/router/exclusive_spec.rb, spec/strelka/router_spec.rb:
2769
- | | Rearrange the namespace so only plugins appear under strelka/app.
2770
- | |
2771
- | | * Strelka::App::DefaultRouter -> Strelka::Router::Default
2772
- | | * Strelka::App::ExclusiveRouter -> Strelka::Router::Exclusive
2773
- | | * Strelka::App::Router -> Strelka::Router
2774
- | | * Strelka::App::ParamValidator -> Strelka::ParamValidator
2775
- | | [e084536ddf41]
2776
- | |
2777
- 2012-03-14 Michael Granger <ged@FaerieMUD.org>
2778
-
2779
- o | * Manifest.txt, lib/strelka/cookie.rb, lib/strelka/cookieset.rb,
2780
- | | lib/strelka/httprequest.rb, lib/strelka/httpresponse.rb,
2781
- | | spec/strelka/cookie_spec.rb, spec/strelka/cookieset_spec.rb,
2782
- | | spec/strelka/httprequest_spec.rb, spec/strelka/httpresponse_spec.rb:
2783
- | | Add cookie support.
2784
- | | [398dcb53d5e5]
2785
- | |
2786
- 2012-03-12 Michael Granger <ged@FaerieMUD.org>
2787
-
2788
- o | * contrib/hoetemplate/.autotest.erb,
2789
- | | contrib/hoetemplate/README.rdoc.erb,
2790
- | | contrib/hoetemplate/data/file_name/apps/file_name_app,
2791
- | | contrib/hoetemplate/data/file_name/templates/layout.tmpl.erb,
2792
- | | contrib/hoetemplate/data/file_name/templates/top.tmpl.erb,
2793
- | | contrib/hoetemplate/data/project/apps/file_name_app,
2794
- | | contrib/hoetemplate/data/project/templates/layout.tmpl.erb,
2795
- | | contrib/hoetemplate/data/project/templates/top.tmpl.erb:
2796
- | | Update the hoe template for recent versions
2797
- | | [4061e3f2d2cf]
2798
- | |
2799
- 2012-03-10 Michael Granger <ged@FaerieMUD.org>
2800
-
2801
- o | * .rvm.gems, Rakefile:
2802
- |/ Bump Ruby-Mongrel2 dependency to 0.16.
2803
- | [95b64a8ed952]
2804
- |
2805
- 2012-03-05 Michael Granger <ged@FaerieMUD.org>
2806
-
2807
- o * manual/resources/images/strelka-dogs/doggie6.svg,
2808
- | manual/resources/images/strelka-dogs/doggie7.svg:
2809
- | Add some awesome logos!
2810
- | [305d215c3db3]
2811
- |
2812
- o * IDEAS.rdoc, README.rdoc:
2813
- | Rework documentation to take strelka-admin extraction into account
2814
- | [b8172819264c]
2815
- |
2816
- 2012-03-02 Michael Granger <ged@FaerieMUD.org>
2817
-
2818
- o * lib/strelka/app.rb, lib/strelka/constants.rb,
2819
- | spec/strelka/app_spec.rb:
2820
- | Include apps that are included with Strelka in discovery
2821
- | [582fcbf6e4fc]
2822
- |
2823
- o * bin/leash:
2824
- | Add whitespace to "leash discover" output
2825
- | [e25ae760db53]
2826
- |
2827
- o * .rvm.gems:
2828
- | Bump the mongrel2 version in rvm gems list
2829
- | [3bfe5ebb7fa9]
2830
- |
2831
- o * README.rdoc:
2832
- | Clean up the README
2833
- | [27eea54aab38]
2834
- |
2835
- 2012-02-29 Michael Granger <ged@FaerieMUD.org>
2836
-
2837
- o * lib/strelka/runner.rb, spec/strelka/runner_spec.rb:
2838
- | Actually remove the runner class and spec
2839
- | [4756cd871fab]
2840
- |
2841
- o * Manifest.txt:
2842
- | Remove the unfinished runner class.
2843
- | [d18749c17bce]
2844
- |
2845
- o * bin/leash:
2846
- | Strip out obsolete code from leash
2847
- | [015d0121b4ca]
2848
- |
2849
- o * lib/strelka.rb:
2850
- | Combine Loggers by default.
2851
- |
2852
- | Set the Configurability and Mongrel2 loggers to Strelka's logger so
2853
- | they all show up in the same place.
2854
- | [dd54849bf817]
2855
- |
2856
- o * data/strelka/apps/hello-world:
2857
- | Remove (unnecessary) config-loading from hello-world app
2858
- | [aea26d8d7f49]
2859
- |
2860
- o * README.rdoc:
2861
- | Update the README to reflect leash changes.
2862
- | [3ede2825fde0]
2863
- |
2864
- o * lib/strelka.rb, lib/strelka/app.rb, lib/strelka/constants.rb:
2865
- | Remove some more admin app stuff.
2866
- | [12de3b855bf0]
2867
- |
2868
- o * Manifest.txt:
2869
- | Remove admin app stuff from the manifest
2870
- | [a7c2bf7b8ab2]
2871
- |
2872
- o * AdminAppUI.graffle, data/strelka/admin.conf, data/strelka/apps
2873
- | /config-service, data/strelka/apps/strelka-admin, data/strelka/apps
2874
- | /strelka-setup, data/strelka/bootstrap-config.rb,
2875
- | data/strelka/static/css/bootstrap-responsive.css,
2876
- | data/strelka/static/css/bootstrap-responsive.min.css,
2877
- | data/strelka/static/css/bootstrap.css,
2878
- | data/strelka/static/css/bootstrap.min.css,
2879
- | data/strelka/static/css/master.css,
2880
- | data/strelka/static/css/reset.css, data/strelka/static/fonts
2881
- | /IstokWeb-Bold.ttf, data/strelka/static/fonts/IstokWeb-
2882
- | BoldItalic.ttf, data/strelka/static/fonts/IstokWeb-Italic.ttf,
2883
- | data/strelka/static/fonts/IstokWeb-Regular.ttf,
2884
- | data/strelka/static/fonts/OFL.txt,
2885
- | data/strelka/static/images/21d1-16.png,
2886
- | data/strelka/static/images/21d1.png, data/strelka/static/images
2887
- | /glyphicons-halflings-white.png, data/strelka/static/images
2888
- | /glyphicons-halflings.png,
2889
- | data/strelka/static/images/icons/blank.png,
2890
- | data/strelka/static/images/icons/cross-button.png,
2891
- | data/strelka/static/images/icons/tick-button.png,
2892
- | data/strelka/static/images/icons/tick-circle-frame.png,
2893
- | data/strelka/static/images/icons/tick-circle.png,
2894
- | data/strelka/static/images/icons/tick-octagon-frame.png,
2895
- | data/strelka/static/images/icons/tick-octagon.png,
2896
- | data/strelka/static/images/icons/tick-red.png,
2897
- | data/strelka/static/images/icons/tick-shield.png,
2898
- | data/strelka/static/images/icons/tick-small-circle.png,
2899
- | data/strelka/static/images/icons/tick-small-red.png,
2900
- | data/strelka/static/images/icons/tick-small-white.png,
2901
- | data/strelka/static/images/icons/tick-small.png,
2902
- | data/strelka/static/images/icons/tick-white.png,
2903
- | data/strelka/static/images/icons/tick.png,
2904
- | data/strelka/static/images/noise.jpg,
2905
- | data/strelka/static/images/noise.png,
2906
- | data/strelka/static/js/admin/app.js,
2907
- | data/strelka/static/js/vendor/backbone.js,
2908
- | data/strelka/static/js/vendor/bootstrap.js,
2909
- | data/strelka/static/js/vendor/bootstrap.min.js,
2910
- | data/strelka/static/js/vendor/jquery-1.7.1.js,
2911
- | data/strelka/static/js/vendor/jquery.jeditable.mini.js,
2912
- | data/strelka/static/js/vendor/jquery.tmpl.min.js,
2913
- | data/strelka/static/js/vendor/jquery.tmplPlus.min.js,
2914
- | data/strelka/static/js/vendor/jquery.tools.min.js,
2915
- | data/strelka/static/js/vendor/json2.js,
2916
- | data/strelka/static/js/vendor/underscore.js,
2917
- | data/strelka/templates/admin/console.tmpl,
2918
- | data/strelka/templates/admin/host.tmpl,
2919
- | data/strelka/templates/admin/message.tmpl,
2920
- | data/strelka/templates/admin/server.tmpl,
2921
- | data/strelka/templates/layout.tmpl:
2922
- | Split out the admin app into a separate gem
2923
- | [c8355bb281bf]
2924
- |
2925
- o * data/strelka/apps/config-service, data/strelka/apps/strelka-admin,
2926
- | data/strelka/static/css/bootstrap-responsive.css,
2927
- | data/strelka/static/css/bootstrap-responsive.min.css,
2928
- | data/strelka/static/css/bootstrap.css,
2929
- | data/strelka/static/css/bootstrap.min.css,
2930
- | data/strelka/static/images/glyphicons-halflings-white.png,
2931
- | data/strelka/static/images/glyphicons-halflings.png,
2932
- | data/strelka/static/js/admin/app.js,
2933
- | data/strelka/static/js/jquery.jeditable.mini.js,
2934
- | data/strelka/static/js/jquery.tmpl.min.js,
2935
- | data/strelka/static/js/jquery.tmplPlus.min.js,
2936
- | data/strelka/static/js/jquery.tools.min.js,
2937
- | data/strelka/static/js/strelka.js,
2938
- | data/strelka/static/js/vendor/backbone.js,
2939
- | data/strelka/static/js/vendor/bootstrap.js,
2940
- | data/strelka/static/js/vendor/bootstrap.min.js,
2941
- | data/strelka/static/js/vendor/jquery-1.7.1.js,
2942
- | data/strelka/static/js/vendor/jquery.jeditable.mini.js,
2943
- | data/strelka/static/js/vendor/jquery.tmpl.min.js,
2944
- | data/strelka/static/js/vendor/jquery.tmplPlus.min.js,
2945
- | data/strelka/static/js/vendor/jquery.tools.min.js,
2946
- | data/strelka/static/js/vendor/json2.js,
2947
- | data/strelka/static/js/vendor/underscore.js,
2948
- | data/strelka/templates/admin/console.tmpl,
2949
- | data/strelka/templates/layout.tmpl:
2950
- | Backbone backend experiment
2951
- | [b55b742478e7]
2952
- |
2953
- o * IDEAS.rdoc, bin/leash, data/strelka/bootstrap-config.rb,
2954
- | lib/strelka/app.rb, lib/strelka/app/restresources.rb,
2955
- | lib/strelka/runner.rb, spec/strelka/app_spec.rb,
2956
- | spec/strelka/runner_spec.rb:
2957
- | Added the first parts of the runtime environment
2958
- | [84f87dbd7e67]
2959
- |
2960
- 2012-02-27 Michael Granger <ged@FaerieMUD.org>
2961
-
2962
- o * lib/strelka/app/restresources.rb,
2963
- | spec/strelka/app/restresources_spec.rb:
2964
- | Adding composite resources to the RestResources plugin
2965
- | [a4c0cb6af36e]
2966
- |
2967
- o * .rvm.gems, Rakefile, bin/leash, data/strelka/apps/strelka-admin:
2968
- | Mongrel 0.15 change
2969
- | [d7ca621c2650]
2970
- |
2971
- o * .rvm.gems, Rakefile:
2972
- | Bump required mongrel2 version to 0.14
2973
- | [faf5bc4c5393]
2974
- |
2975
- o * lib/strelka/app/paramvalidator.rb:
2976
- | Add a parameter pattern for 'string' type fields
2977
- | [b24533d7f3ba]
2978
- |
2979
- o * lib/strelka/app/routing.rb:
2980
- | Add a new has_route? predicate to Strelka::App::Routing
2981
- | [087bee0a6cd4]
2982
- |
2983
- 2012-02-26 Michael Granger <ged@FaerieMUD.org>
2984
-
2985
- o * IDEAS.rdoc, README.rdoc, lib/strelka/app/errors.rb,
2986
- | lib/strelka/app/filters.rb, lib/strelka/app/negotiation.rb,
2987
- | lib/strelka/app/parameters.rb, lib/strelka/app/plugins.rb,
2988
- | lib/strelka/app/router.rb, lib/strelka/app/routing.rb,
2989
- | lib/strelka/app/templating.rb:
2990
- | API documentation updates/fixes
2991
- | [ddc633dd6ee9]
2992
- |
2993
- 2012-02-25 Michael Granger <ged@FaerieMUD.org>
2994
-
2995
- o * data/strelka/apps/hello-world, data/strelka/apps/strelka-admin,
2996
- | data/strelka/bootstrap-config.rb, lib/strelka.rb:
2997
- | Update apps to use the Configurability config.
2998
- | [86fdc1e4e120]
2999
- |
3000
- o * data/strelka/admin.conf:
3001
- | Add the mongrel2 config to admin.conf
3002
- | [e9beeea34234]
3003
- |
3004
- o * bin/leash:
3005
- | Leash command-line tool updates.
3006
- |
3007
- | - Use Strelka.load_config
3008
- | - Prompt to replace the existing config if it exists when doing 'leash
3009
- | setup'
3010
- | - Fix renamed constant
3011
- | [8d36fde80203]
3012
- |
3013
- 2012-02-24 Michael Granger <ged@FaerieMUD.org>
3014
-
3015
- o * .rvm.gems, Rakefile:
3016
- | Require Mongrel2 0.13
3017
- | [a981f69db584]
3018
- |
3019
- o * bin/leash, lib/strelka.rb, lib/strelka/app.rb,
3020
- | lib/strelka/constants.rb:
3021
- | Add convenience methods for loading the Configurability config
3022
- | [a056b6ec888c]
3023
- |
3024
- o * spec/strelka/httprequest_spec.rb:
3025
- | Improving spec coverage
3026
- | [873c448dea0b]
3027
- |
3028
- o * .rvm.gems, .tm_properties, manual/lib/api-filter.rb,
3029
- | manual/src/cookbook.page, manual/src/deploying.page,
3030
- | manual/src/distributing.page, manual/src/index.page,
3031
- | manual/src/plugins.page, manual/src/writing.page:
3032
- | More manual work
3033
- | [325a2b5347fe]
3034
- |
3035
- 2012-02-22 Mahlon E. Smith <mahlon@martini.nu>
3036
-
3037
- o * lib/strelka/httprequest.rb, spec/strelka/httprequest_spec.rb:
3038
- | Make slice! operate on a copy of the uri path.
3039
- | [9cde015ae2ad]
3040
- |
3041
- 2012-02-22 Michael Granger <ged@FaerieMUD.org>
3042
-
3043
- o * Manifest.txt, data/strelka/apps/strelka-admin, lib/strelka/app.rb,
3044
- | lib/strelka/app/defaultrouter.rb, lib/strelka/app/errors.rb,
3045
- | lib/strelka/app/exclusiverouter.rb, lib/strelka/app/plugins.rb,
3046
- | lib/strelka/app/routing.rb, lib/strelka/app/templating.rb,
3047
- | spec/data/error.tmpl, spec/lib/helpers.rb,
3048
- | spec/strelka/app/defaultrouter_spec.rb,
3049
- | spec/strelka/app/errors_spec.rb,
3050
- | spec/strelka/app/exclusiverouter_spec.rb,
3051
- | spec/strelka/app/routing_spec.rb, spec/strelka/app_spec.rb:
3052
- | Add a custom error-handler plugin.
3053
- |
3054
- | - Add Strelka::App::Errors module.
3055
- | - Encapsulate the routing data in a hash instead of making the Router
3056
- | responsible for doing things like setting the route in the notes
3057
- | field. (Routing plugin)
3058
- | - Don't propagate the exception message to the browser; instead just
3059
- | display a generic 'internal server error' message
3060
- | - Add a few useful objects to all templates (Templating plugin)
3061
- | [aa8cfa8f450a]
3062
- |
3063
- o * .rvm.gems:
3064
- | Add simplecov to the list of dev gems
3065
- | [e3d2478550d1]
3066
- |
3067
- 2012-02-21 Michael Granger <ged@FaerieMUD.org>
3068
-
3069
- o * lib/strelka/app/router.rb:
3070
- | Replace explicit abstractness of Strelka::App:Router with the
3071
- | AbstractClass mixin
3072
- | [a207dbd09084]
3073
- |
3074
- o * data/strelka/apps/strelka-admin, lib/strelka/app/filters.rb,
3075
- | lib/strelka/app/templating.rb:
3076
- | Fix ordering for the filters plugin
3077
- | [8d17a86b0aa7]
3078
- |
3079
- 2012-02-20 Michael Granger <ged@FaerieMUD.org>
3080
-
3081
- o * data/strelka/apps/strelka-admin, data/strelka/static/js/strelka.js,
3082
- | data/strelka/templates/admin/console.tmpl,
3083
- | lib/strelka/app/restresources.rb:
3084
- | Tweak the admin app to use the REST plugin instead of explicit
3085
- | service routes.
3086
- | [e1bfc6aa107f]
3087
- |
3088
- o * .rvm.gems, Manifest.txt, data/strelka/apps/strelka-admin,
3089
- | lib/strelka/app/paramvalidator.rb, lib/strelka/app/plugins.rb,
3090
- | lib/strelka/app/restresources.rb, spec/lib/helpers.rb,
3091
- | spec/strelka/app/restresources_spec.rb:
3092
- | Add an App plugin for easily creating REST services from
3093
- | Sequel::Models.
3094
- |
3095
- | - Add Strelka::App::RestReources module and specs.
3096
- | - Alias ParamValidator#match_printable to #match_string to support
3097
- | validation of Sequel :string columns.
3098
- | - Require Ruby-Mongrel 0.12+
3099
- | - This is just the initial implementation. Yet to be added:
3100
- | configuration options for enabling/disabling stuff, automatic
3101
- | composite services mapped from association reflections, mass- create
3102
- | option, and lots more I'm forgetting.
3103
- | [23acdb6e9afc]
3104
- |
3105
- o * data/strelka/bootstrap-config.rb:
3106
- | Make sure strelka is loaded in the bootstrap config
3107
- | [db2b7d20b62a]
3108
- |
3109
- o * lib/strelka/app/negotiation.rb,
3110
- | lib/strelka/httpresponse/negotiation.rb:
3111
- | Fixed response negotiation for empty-body responses
3112
- | [0a194e88cc0b]
3113
- |
3114
- o * lib/strelka/app/paramvalidator.rb:
3115
- | ParamValidator whitespace cleanup
3116
- | [abafe62d3b76]
3117
- |
3118
- o * lib/strelka/app/paramvalidator.rb:
3119
- | Fixing a ParamValidator duplication bug
3120
- | [21bde3caffc3]
3121
- |
3122
- o * lib/strelka/httprequest.rb:
3123
- | Parse body parameters from POST requests, too
3124
- | [8a70815fa134]
3125
- |
3126
- o * lib/strelka/httprequest.rb,
3127
- | spec/strelka/app/exclusiverouter_spec.rb,
3128
- | spec/strelka/httprequest_spec.rb:
3129
- | Don't include the query string in HTTPRequest#app_path or #base_uri
3130
- |
3131
- | - This fixes the ExclusiveRouter not routing requests with query
3132
- | arguments.
3133
- | [42882771b205]
3134
- |
3135
- o * Manifest.txt:
3136
- | Add the new routing classes to the manifest
3137
- | [11580d42c861]
3138
- |
3139
- o * .rvm.gems, Rakefile, lib/strelka/app/defaultrouter.rb,
3140
- | lib/strelka/app/exclusiverouter.rb, lib/strelka/app/router.rb,
3141
- | lib/strelka/app/routing.rb, spec/strelka/app/defaultrouter_spec.rb,
3142
- | spec/strelka/app/exclusiverouter_spec.rb,
3143
- | spec/strelka/app/router_spec.rb, spec/strelka/app/routing_spec.rb:
3144
- | Make routing strategy pluggable, add an alternative exclusive
3145
- | strategy.
3146
- |
3147
- | - Add PluginFactory dependency.
3148
- | - Factor interface up into Strelka::App::Router and make that a
3149
- | PluginFactory.
3150
- | - Make Strelka::App::DefaultRouter inherit from ::App::Router.
3151
- | - Add a Strelka::App::ExclusiveRouter strategy class that inherits
3152
- | from DefaultRouter.
3153
- | - Fix a bug in the DefaultRouter: route patterns weren't bound to the
3154
- | beginning of the path, so the presence of the path elements anywhere
3155
- | in the URL would route to the longest such match.
3156
- | [fa295f05697f]
3157
- |
3158
- 2012-02-18 Michael Granger <ged@FaerieMUD.org>
3159
-
3160
- o * Rakefile, lib/strelka/constants.rb:
3161
- | Refactor BODILESS_HTTP_RESPONSE_CODES up into Mongrel2
3162
- | [5d429779f85a]
3163
- |
3164
- 2012-02-17 Michael Granger <ged@FaerieMUD.org>
3165
-
3166
- o * lib/strelka/app/templating.rb:
3167
- | Fix documentation for Strelka::App::Templating#handle_request.
3168
- | [09ed8d8f5c0f]
3169
- |
3170
- o * Manifest.txt:
3171
- | Updated the Manifest
3172
- | [703660677f74]
3173
- |
3174
- 2012-02-17 Mahlon E. Smith <mahlon@martini.nu>
3175
-
3176
- o * Rakefile, lib/strelka/app.rb, spec/strelka/app_spec.rb:
3177
- | Respect the Content-Type header if set in a finish_with() response.
3178
- | Bump the mongrel2 dependency version to 0.10.
3179
- | [9701313fde63]
3180
- |
3181
- 2012-02-16 Michael Granger <ged@FaerieMUD.org>
3182
-
3183
- o * .rvmrc:
3184
- | Omit patchlevel from rvmrc Ruby version
3185
- | [b1ab47664438]
3186
- |
3187
- 2012-02-14 Michael Granger <ged@FaerieMUD.org>
3188
-
3189
- o * lib/strelka/app/filters.rb, spec/strelka/app/filters_spec.rb:
3190
- | Add specs for and fix the filters plugin
3191
- | [2ab39c598c11]
3192
- |
3193
- o * .rvm.gems:
3194
- | Update rvm gem list
3195
- | [688267700ee2]
3196
- |
3197
- o * .tm_properties:
3198
- | Use rvm-auto-ruby from TextMate2
3199
- | [b9327fb8573d]
3200
- |
3201
- 2012-02-13 Michael Granger <ged@FaerieMUD.org>
3202
-
3203
- o * README.rdoc, manual/src/app-howto.page, manual/src/deploy-
3204
- | howto.page, manual/src/deploying.page, manual/src/distributing.page,
3205
- | manual/src/index.page, manual/src/writing.page:
3206
- | More work on the manual
3207
- | [bccf1f2e0483]
3208
- |
3209
- 2012-02-06 Michael Granger <ged@FaerieMUD.org>
3210
-
3211
- o * .rvmrc:
3212
- | Cleaned up the .rvmrc
3213
- | [bf5488440c81]
3214
- |
3215
- 2012-01-27 Michael Granger <ged@FaerieMUD.org>
3216
-
3217
- o * .tm_properties:
3218
- | Removing spec section from project settings.
3219
- | [e454e4935561]
3220
- |
3221
- 2012-01-10 Michael Granger <ged@FaerieMUD.org>
3222
-
3223
- o * Manifest.txt:
3224
- | Updating the manifest
3225
- | [d093e0c719d3]
3226
- |
3227
- o * lib/strelka/app/plugins.rb, lib/strelka/httprequest.rb,
3228
- | lib/strelka/httprequest/acceptparams.rb:
3229
- | API documentation cleanup
3230
- | [a80347dd40d4]
3231
- |
3232
- 2012-01-05 Michael Granger <ged@FaerieMUD.org>
3233
-
3234
- o * History.rdoc:
3235
- | Fixing version tag in history file
3236
- | [037d3b5645d2]
3237
- |
3238
- o * .tm_properties:
3239
- | Adding my TextMate2 properties file
3240
- | [e781b8c46b83]
3241
- |
3242
- o * bin/leash:
3243
- | Fix typo: status.signal? -> status.signaled?
3244
- | [ae2ab648ffe8]
3245
- |
3246
- 2011-12-21 Michael Granger <ged@FaerieMUD.org>
3247
-
3248
- o * Rakefile:
3249
- |\ Automated merge with ssh://deveiate.org/Strelka
3250
- | | [1c4ffb7aa78b]
3251
- | |
3252
- 2011-12-09 Michael Granger <ged@FaerieMUD.org>
3253
-
3254
- | o * Rakefile:
3255
- | | Adding missing sysexits dependency
3256
- | | [223d28106e72]
3257
- | |
3258
- | o * .rvm.gems, .rvmrc:
3259
- | | Updating rvmrc and adding exported gemset
3260
- | | [bd23f67d2998]
3261
- | |
3262
- 2011-12-15 Michael Granger <ged@FaerieMUD.org>
3263
-
3264
- o | * Rakefile:
3265
- |\ \ Merged with 246b2ead48d5
3266
- | | | [c2fa945b0435]
3267
- | | |
3268
- | o | * Merged with 0f57bc5c44dd
3269
- | |\| [af64f9618fd7]
3270
- | | |
3271
- 2011-12-05 Michael Granger <ged@FaerieMUD.org>
3272
-
3273
- | o | * .pryrc:
3274
- | | | Adding a .pryrc
3275
- | | | [6ef2923b88e8]
3276
- | | |
3277
- 2011-11-02 Michael Granger <ged@FaerieMUD.org>
3278
-
3279
- o | | * Rakefile:
3280
- | | | Adding check_history and check_manifest prerequisites to the
3281
- | | | precheckin task
3282
- | | | [246b2ead48d5]
3283
- | | |
3284
- 2011-12-07 Michael Granger <ged@FaerieMUD.org>
3285
-
3286
- | | o * .rvmrc:
3287
- | |/ Switch to 1.9.3 with a gemset in the .rvmrc.
3288
- | | [0f57bc5c44dd]
3289
- | |
3290
- 2011-11-30 Michael Granger <ged@FaerieMUD.org>
3291
-
3292
- | o * spec/strelka/httprequest_spec.rb:
3293
- | | Fixing renamed method in spec for HTTPRequest#base_uri.
3294
- | | [f89ce89067b0]
3295
- | |
3296
- | o * .hgignore:
3297
- | | Add the manual output directory to the ignorefile
3298
- | | [ca9b233e1bbe]
3299
- | |
3300
- | o * Manifest.txt, manual/resources/images/project-layout.png, manual/src
3301
- | | /app-howto.page, manual/src/deploy-howto.page:
3302
- | | A bit of work on the manual
3303
- | | [f4bfb3ffe608]
3304
- | |
3305
- | o * contrib/hoetemplate/Manifest.txt.erb,
3306
- | | contrib/hoetemplate/data/file_name/apps/file_name_app:
3307
- | | Updating the hoe template
3308
- | | [1bd22fc837ff]
3309
- | |
3310
- 2011-11-21 Michael Granger <ged@FaerieMUD.org>
3311
-
3312
- | o * AdminAppUI.graffle:
3313
- | | Updating diagrams
3314
- | | [4f0ae932b410]
3315
- | |
3316
- | o * contrib/hoetemplate/.autotest.erb,
3317
- | | contrib/hoetemplate/History.rdoc.erb,
3318
- | | contrib/hoetemplate/Manifest.txt.erb,
3319
- | | contrib/hoetemplate/README.rdoc.erb,
3320
- | | contrib/hoetemplate/Rakefile.erb,
3321
- | | contrib/hoetemplate/data/file_name/apps/file_name_app,
3322
- | | contrib/hoetemplate/data/file_name/templates/layout.tmpl.erb,
3323
- | | contrib/hoetemplate/data/file_name/templates/top.tmpl.erb,
3324
- | | contrib/hoetemplate/lib/file_name.rb.erb,
3325
- | | contrib/hoetemplate/spec/file_name_spec.rb.erb:
3326
- | | Adding a Hoe template for Strelka app gems
3327
- | | [c21afe9776d3]
3328
- | |
3329
- | o * Rakefile, manual/layouts/default.erb, manual/lib/api-filter.rb,
3330
- | | manual/lib/editorial-filter.rb, manual/lib/examples-filter.rb,
3331
- | | manual/lib/links-filter.rb, manual/resources/css/manual.css,
3332
- | | manual/resources/fonts/GraublauWeb.otf,
3333
- | | manual/resources/fonts/GraublauWebBold.otf,
3334
- | | manual/resources/fonts/Inconsolata.otf,
3335
- | | manual/resources/images/arrow_225_small.png,
3336
- | | manual/resources/images/arrow_315_small.png,
3337
- | | manual/resources/images/arrow_skip.png, manual/resources/images/cc-
3338
- | | by.png, manual/resources/images/dialog-error.png,
3339
- | | manual/resources/images/dialog-information.png,
3340
- | | manual/resources/images/dialog-warning.png, manual/resources/images
3341
- | | /emblem-important.png, manual/resources/images/help.png,
3342
- | | manual/resources/images/information.png,
3343
- | | manual/resources/images/magnifier.png,
3344
- | | manual/resources/images/magnifier_left.png,
3345
- | | manual/resources/images/page_white_code.png,
3346
- | | manual/resources/images/page_white_copy.png,
3347
- | | manual/resources/images/printer.png,
3348
- | | manual/resources/images/question.png,
3349
- | | manual/resources/images/scripts_code.png,
3350
- | | manual/resources/images/wrap.png,
3351
- | | manual/resources/images/wrapping.png,
3352
- | | manual/resources/js/jquery-1.4.4.min.js,
3353
- | | manual/resources/js/manual.js, manual/resources/js/sh.js,
3354
- | | manual/resources/swf/clipboard.swf, manual/src/app-howto.page,
3355
- | | manual/src/index.page:
3356
- | | Adding a manual
3357
- | | [af0709152a71]
3358
- | |
3359
- 2011-10-28 Michael Granger <ged@FaerieMUD.org>
3360
-
3361
- | o * data/strelka/apps/strelka-admin, data/strelka/static/js/strelka.js,
3362
- |/ data/strelka/templates/admin/console.tmpl,
3363
- | lib/strelka/httprequest.rb:
3364
- | Touchups on the admin app
3365
- | [5b697faaf717]
3366
- |
3367
- 2011-10-26 Michael Granger <ged@FaerieMUD.org>
3368
-
3369
- o * data/strelka/apps/strelka-admin, data/strelka/bootstrap-config.rb,
3370
- | data/strelka/static/css/master.css,
3371
- | data/strelka/static/js/strelka.js,
3372
- | data/strelka/templates/admin/console.tmpl,
3373
- | data/strelka/templates/admin/server.tmpl,
3374
- | data/strelka/templates/layout.tmpl, lib/strelka/app/parameters.rb,
3375
- | lib/strelka/httprequest.rb, spec/strelka/httprequest_spec.rb:
3376
- | Add the ability to add a server to strelka-admin.
3377
- | - Add parameter validations for server fields
3378
- | - Reset the name of the control_port, as it's global across all
3379
- | servers.
3380
- | - Lots of CSS additions
3381
- | - Lots of additions to the client-side scripting
3382
- | - Use HTML5 data-* fields to track the column-mapping when
3383
- | creating/updating servers.
3384
- | - Fix the layout template, which was missing the opening <html> tag.
3385
- | - Strelka::HTTPRequest
3386
- | * add method #app_uri
3387
- | * make #uri method return a full URI instead of the just the path.
3388
- | * support JSON or YAML body for #params, too.
3389
- | [3f08fbb2b1c2]
3390
- |
3391
- 2011-10-24 Michael Granger <ged@FaerieMUD.org>
3392
-
3393
- o * bin/leash:
3394
- | Changing the runtime environment of the admin mongrel2 server to the
3395
- | gem's datadir
3396
- | [32d0a82da883]
3397
- |
3398
- 2011-10-19 Michael Granger <ged@FaerieMUD.org>
3399
-
3400
- o * data/strelka/static/js/jquery-1.6.4.min.js,
3401
- | data/strelka/static/js/jquery.tools.min.js,
3402
- | data/strelka/templates/layout.tmpl:
3403
- | Swap solo jQuery for jQuery tools+jQuery
3404
- | [86495a28976a]
3405
- |
3406
- o * bin/leash:
3407
- | Allow overriding the mongrel2 path for the leash command
3408
- | [be65f6b93615]
3409
- |
3410
- 2011-10-18 Michael Granger <ged@FaerieMUD.org>
3411
-
3412
- o * data/strelka/apps/strelka-admin, lib/strelka/app.rb,
3413
- | lib/strelka/app/filters.rb, lib/strelka/app/negotiation.rb,
3414
- | lib/strelka/app/plugins.rb, lib/strelka/app/templating.rb,
3415
- | lib/strelka/httprequest/acceptparams.rb,
3416
- | lib/strelka/httpresponse/negotiation.rb, spec/strelka/app_spec.rb,
3417
- | spec/strelka/httpresponse/negotiation_spec.rb:
3418
- | Alterations to the plugin system to reflect dogfood discoveries.
3419
- | - Rearranged the lifecycle of the request to all happen inside the
3420
- | try/catch to allow fixup hooks to finish with an error status, too.
3421
- | - Moved the negotiation plugin closer to the router so negotation
3422
- | callbacks can return responses that will be further altered by later
3423
- | plugins. Moved the acceptable check into the response fixup hook to
3424
- | accomplish this.
3425
- | - Made the response fixup hook only take a response object since
3426
- | responses can now know what their request is.
3427
- | - Made language-negotiation short-circuit whenever there aren't any
3428
- | languages set.
3429
- | - Added warnings to the accept predicates to make it easier to track
3430
- | down why a 406 happened.
3431
- | - Made response mediatype negotiation less eager to stringify
3432
- | everything.
3433
- | [c62a0c305681]
3434
- |
3435
- o * lib/strelka/app/filters.rb, lib/strelka/httpresponse/negotiation.rb:
3436
- | Cleaned up a shadowed variable and a misnamed method in the Filters
3437
- | plugin.
3438
- | [aa521eaff4a9]
3439
- |
3440
- o * lib/strelka/app/defaultrouter.rb:
3441
- | Fix shadowed variable.
3442
- | [137c08cf89b3]
3443
- |
3444
- o * Rakefile:
3445
- | Fixed uuidtools dependency version.
3446
- | [fd311b1440af]
3447
- |
3448
- o * lib/strelka/app/filters.rb, lib/strelka/app/plugins.rb,
3449
- | spec/strelka/app/plugins_spec.rb:
3450
- | Reworked app plugin ordering using tsort instead of Comparable, as
3451
- | Comparable doesn't work for derived ordering dependency.
3452
- | [e5be26e7c88b]
3453
- |
3454
- 2011-10-17 Michael Granger <ged@FaerieMUD.org>
3455
-
3456
- o * lib/strelka/app/negotiation.rb, lib/strelka/app/plugins.rb,
3457
- | lib/strelka/app/templating.rb,
3458
- | lib/strelka/httpresponse/negotiation.rb,
3459
- | spec/strelka/httpresponse/negotiation_spec.rb:
3460
- | Fixed language-negotiation for the no accept-language header case.
3461
- | [a6aedf224d11]
3462
- |
3463
- o * lib/strelka/httpresponse.rb,
3464
- | lib/strelka/httpresponse/negotiation.rb,
3465
- | spec/strelka/httpresponse/negotiation_spec.rb:
3466
- | More negotiation fixes:
3467
- | - Reset negotiation methods and data on HTTPReponse#reset
3468
- | - Move negotiation calls into a dedicated method so it isn't (just) a
3469
- | side-effect of fetching the body.
3470
- | - Support charset negotiation for 'application/*' content-types, too
3471
- | (application/json, application/x-yaml)
3472
- | [8eb21fa8b68c]
3473
- |
3474
- o * lib/strelka/app/negotiation.rb,
3475
- | lib/strelka/httprequest/negotiation.rb:
3476
- | Include missing constants, adding debugging to the negotiation
3477
- | header-parsing method
3478
- | [02892445edd4]
3479
- |
3480
- o * data/strelka/apps/strelka-admin:
3481
- | Add beginnings of negotiated service API to the admin app
3482
- | [7180e24ee13b]
3483
- |
3484
- o * Rakefile:
3485
- | Add uuidtools dependency
3486
- | [ce74c6a4bdf3]
3487
- |
3488
- o * lib/strelka/httprequest/negotiation.rb,
3489
- | lib/strelka/httpresponse/negotiation.rb,
3490
- | spec/strelka/httprequest/negotiation_spec.rb,
3491
- | spec/strelka/httpresponse/negotiation_spec.rb:
3492
- | Refactor negotiation to use "better" transform logic
3493
- | [8dfc33509ab1]
3494
- |
3495
- o * lib/strelka/app/negotiation.rb,
3496
- | lib/strelka/httprequest/negotiation.rb,
3497
- | lib/strelka/httpresponse/negotiation.rb,
3498
- | spec/strelka/httpresponse/negotiation_spec.rb:
3499
- | More work on content-negotiation: language finished, encoding close
3500
- | to being finished.
3501
- | [36bd2e365b1c]
3502
- |
3503
- 2011-10-14 Michael Granger <ged@FaerieMUD.org>
3504
-
3505
- o * data/strelka/apps/strelka-admin, lib/strelka.rb, lib/strelka/app.rb,
3506
- | lib/strelka/app/negotiation.rb, lib/strelka/app/paramvalidator.rb,
3507
- | lib/strelka/app/plugins.rb, lib/strelka/app/routing.rb,
3508
- | lib/strelka/exceptions.rb, lib/strelka/httprequest/acceptparams.rb,
3509
- | lib/strelka/httprequest/negotiation.rb, lib/strelka/httpresponse.rb,
3510
- | lib/strelka/httpresponse/negotiation.rb,
3511
- | spec/strelka/app/paramvalidator_spec.rb,
3512
- | spec/strelka/app/routing_spec.rb, spec/strelka/app_spec.rb,
3513
- | spec/strelka/exceptions_spec.rb,
3514
- | spec/strelka/httprequest/acceptparams_spec.rb,
3515
- | spec/strelka/httprequest/negotiation_spec.rb,
3516
- | spec/strelka/httpresponse/negotiation_spec.rb:
3517
- | Added content-negotiation callbacks to HTTPReponse::Negotiation
3518
- | [38d97263b1cb]
3519
- |
3520
- 2011-10-12 Michael Granger <ged@FaerieMUD.org>
3521
-
3522
- o * Rakefile, lib/strelka/httpresponse.rb,
3523
- | lib/strelka/httpresponse/negotiation.rb,
3524
- | spec/strelka/httpresponse/negotiation_spec.rb:
3525
- | Fixed specs and implementation of HTTPResponse transparent
3526
- | negotiation predicates.
3527
- | [bf66bc52adad]
3528
- |
3529
- o * Rakefile, lib/strelka/app/negotiation.rb, lib/strelka/exceptions.rb,
3530
- | lib/strelka/httprequest/negotiation.rb, lib/strelka/httpresponse.rb,
3531
- | lib/strelka/httpresponse/negotiation.rb,
3532
- | spec/strelka/httprequest/negotiation_spec.rb,
3533
- | spec/strelka/httpresponse/negotiation_spec.rb,
3534
- | spec/strelka/httpresponse_spec.rb:
3535
- | More HTTP content negotiation work.
3536
- | - Finished up content-type acceptability predicates in
3537
- | HTTPResponse::Negotiation
3538
- | - Added content-type charset setting to HTTPResponse
3539
- | - Added encoding and language header setting to HTTPResponse
3540
- | [f7af2a3b5bbd]
3541
- |
3542
- 2011-10-11 Michael Granger <ged@FaerieMUD.org>
3543
-
3544
- o * lib/strelka/httprequest/negotiation.rb,
3545
- | spec/strelka/httpresponse/negotiation_spec.rb:
3546
- | Refactored the implementation of the negotiation-header-parsing code
3547
- | from HTTPRequest::Negotiation into a new method,
3548
- | #parse_negotiation_header.
3549
- | [8f21e99dd049]
3550
- |
3551
- o * Rakefile, lib/strelka/app/negotiation.rb, lib/strelka/exceptions.rb,
3552
- | lib/strelka/httprequest.rb, lib/strelka/httprequest/acceptparams.rb,
3553
- | lib/strelka/httprequest/negotiation.rb, lib/strelka/httpresponse.rb,
3554
- | lib/strelka/httpresponse/negotiation.rb, spec/lib/constants.rb,
3555
- | spec/strelka/app/negotiation_spec.rb,
3556
- | spec/strelka/httprequest/acceptparams_spec.rb,
3557
- | spec/strelka/httprequest/negotiation_spec.rb,
3558
- | spec/strelka/httpresponse/negotiation_spec.rb:
3559
- | Started work on transparent HTTP content negotiation plugin.
3560
- | [e8ee412b3a67]
3561
- |
3562
- o * lib/strelka/mixins.rb, spec/strelka/mixins_spec.rb:
3563
- | Adding a Strelka::AbstractClass mixin.
3564
- | [9c28f84e6441]
3565
- |
3566
- 2011-10-09 Michael Granger <ged@FaerieMUD.org>
3567
-
3568
- o * lib/strelka/app/parameters.rb, spec/strelka/app/routing_spec.rb:
3569
- | Fixed beginning-of-line binding pattern (\A instead of \a).
3570
- | [f7dfe0aeabe7]
3571
- |
3572
- o * bin/leash, data/strelka/apps/strelka-admin, data/strelka/bootstrap-
3573
- | config.rb, data/strelka/static/css/master.css,
3574
- | data/strelka/static/images/icons/blank.png,
3575
- | data/strelka/static/images/icons/cross-button.png,
3576
- | data/strelka/static/images/icons/tick-button.png,
3577
- | data/strelka/static/images/icons/tick-circle-frame.png,
3578
- | data/strelka/static/images/icons/tick-circle.png,
3579
- | data/strelka/static/images/icons/tick-octagon-frame.png,
3580
- | data/strelka/static/images/icons/tick-octagon.png,
3581
- | data/strelka/static/images/icons/tick-red.png,
3582
- | data/strelka/static/images/icons/tick-shield.png,
3583
- | data/strelka/static/images/icons/tick-small-circle.png,
3584
- | data/strelka/static/images/icons/tick-small-red.png,
3585
- | data/strelka/static/images/icons/tick-small-white.png,
3586
- | data/strelka/static/images/icons/tick-small.png,
3587
- | data/strelka/static/images/icons/tick-white.png,
3588
- | data/strelka/static/images/icons/tick.png,
3589
- | data/strelka/static/js/jquery.tmpl.min.js,
3590
- | data/strelka/static/js/jquery.tmplPlus.min.js,
3591
- | data/strelka/static/js/strelka.js,
3592
- | data/strelka/templates/admin/console.tmpl,
3593
- | data/strelka/templates/layout.tmpl:
3594
- | Started work on the UI scripting
3595
- | [d5644cdffd4e]
3596
- |
3597
- 2011-10-07 Michael Granger <ged@FaerieMUD.org>
3598
-
3599
- o * bin/leash:
3600
- | Split the "setup" and "start" commands
3601
- | [a4aadbbd97e4]
3602
- |
3603
- 2011-10-06 Michael Granger <ged@FaerieMUD.org>
3604
-
3605
- o * .hgignore, bin/leash, data/strelka/admin.conf, data/strelka/apps
3606
- | /strelka-admin, data/strelka/bootstrap-config.rb,
3607
- | data/strelka/static/css/master.css,
3608
- | data/strelka/static/images/21d1-16.png,
3609
- | data/strelka/static/images/21d1.png,
3610
- | data/strelka/static/images/noise.jpg,
3611
- | data/strelka/static/images/noise.png,
3612
- | data/strelka/static/js/jquery-1.6.4.min.js,
3613
- | data/strelka/static/js/jquery.jeditable.mini.js,
3614
- | data/strelka/static/js/strelka.js,
3615
- | data/strelka/templates/admin/console.tmpl,
3616
- | data/strelka/templates/admin/host.tmpl,
3617
- | data/strelka/templates/admin/server.tmpl,
3618
- | data/strelka/templates/layout.tmpl, lib/strelka/app.rb,
3619
- | lib/strelka/app/parameters.rb, lib/strelka/app/paramvalidator.rb,
3620
- | lib/strelka/app/routing.rb, lib/strelka/constants.rb,
3621
- | spec/strelka/app/parameters_spec.rb,
3622
- | spec/strelka/app/paramvalidator_spec.rb:
3623
- | More work on the admin-console app
3624
- | [4f4f48ec1868]
3625
- |
3626
- 2011-10-05 Michael Granger <ged@FaerieMUD.org>
3627
-
3628
- o * lib/strelka/app/defaultrouter.rb, lib/strelka/app/parameters.rb,
3629
- | lib/strelka/app/paramvalidator.rb, lib/strelka/app/routing.rb,
3630
- | lib/strelka/httprequest.rb, spec/strelka/app/defaultrouter_spec.rb,
3631
- | spec/strelka/app/routing_spec.rb, spec/strelka/httprequest_spec.rb:
3632
- | Finishing work on parameterized routes (routing + parameters)
3633
- | [8331d1bb1936]
3634
- |
3635
- o * Merged with http://repo.deveiate.org/Strelka
3636
- |\ [1fa10c5765a7]
3637
- | |
3638
- 2011-10-04 Michael Granger <ged@FaerieMUD.org>
3639
-
3640
- | o * lib/strelka/app/paramvalidator.rb,
3641
- | | spec/strelka/app/paramvalidator_spec.rb:
3642
- | | Adding ParamValidator#merge and #merge!
3643
- | | [2544e75e4a88]
3644
- | |
3645
- o | * Rakefile:
3646
- |/ Bumped Mongrel2 dependency.
3647
- | [a5415c517121]
3648
- |
3649
- 2011-10-03 Michael Granger <ged@FaerieMUD.org>
3650
-
3651
- o * spec/strelka/app/templating_spec.rb:
3652
- | Fix object thrash in the templating specs
3653
- | [9631cde1680d]
3654
- |
3655
- o * lib/strelka/app/parameters.rb, lib/strelka/app/paramvalidator.rb,
3656
- | lib/strelka/httprequest.rb, spec/strelka/app/parameters_spec.rb,
3657
- | spec/strelka/app/paramvalidator_spec.rb:
3658
- | Parameter fixes
3659
- | [66b9e356f7e4]
3660
- |
3661
- 2011-09-30 Michael Granger <ged@FaerieMUD.org>
3662
-
3663
- o * Rakefile:
3664
- | Adding missing dependency on FormValidator.
3665
- | [897328bcbfe4]
3666
- |
3667
- o * .DS_Store, .hgignore, Rakefile, bin/leash, data/.DS_Store,
3668
- | data/strelka/.DS_Store, data/strelka/apps/strelka-admin,
3669
- | data/strelka/static/.DS_Store,
3670
- | data/strelka/templates/admin/console.tmpl,
3671
- | data/strelka/templates/admin/message.tmpl,
3672
- | lib/strelka/app/parameters.rb, lib/strelka/app/paramvalidator.rb,
3673
- | lib/strelka/app/routing.rb, lib/strelka/constants.rb,
3674
- | lib/strelka/httprequest.rb, spec/strelka/app/paramvalidator_spec.rb,
3675
- | spec/strelka/app_spec.rb, spec/strelka/httprequest_spec.rb:
3676
- | Finishing up the parameters plugin
3677
- | * * * Removing/ignoring .DS_Store files
3678
- | * * * more params work
3679
- | [ddd0c0cd9506]
3680
- |
3681
- o * lib/strelka/exceptions.rb:
3682
- | Adding an exceptions module, add Strelka::Error class
3683
- | [b742c901a9c1]
3684
- |
3685
- o * README.rdoc, data/strelka/apps/hello-world, data/strelka/apps
3686
- | /strelka-admin, lib/strelka/app.rb, spec/strelka/app_spec.rb:
3687
- | Change Strelka::App.default_content_type to .default_type
3688
- | [2965f557257e]
3689
- |
3690
- o * README.rdoc, data/strelka/apps/hello-world:
3691
- | Adding the first example to the README
3692
- | [664ea9d098c0]
3693
- |
3694
- o * data/strelka/bootstrap-config.rb, lib/strelka/app.rb,
3695
- | lib/strelka/logging.rb, spec/strelka/app_spec.rb:
3696
- | Make startup a little more default-ey
3697
- | [68dd0e3d5398]
3698
- |
3699
- 2011-09-29 Michael Granger <ged@FaerieMUD.org>
3700
-
3701
- o * AdminAppUI.graffle:
3702
- | Adding diagrams for the admin app UI
3703
- | [b12d9dc451ab]
3704
- |
3705
- o * IDEAS.rdoc, README.rdoc, Rakefile:
3706
- | Removed redundant section from the IDEAS doc.
3707
- | [a52fd4c58a8f]
3708
- |
3709
- o * IDEAS.rdoc, IDEAS.textile:
3710
- | Converted IDEAS doc to RDoc format, updated.
3711
- | [07af273f67cd]
3712
- |
3713
- 2011-09-27 Michael Granger <ged@FaerieMUD.org>
3714
-
3715
- o * Rakefile, lib/strelka/process.rb:
3716
- |\ Merged with 85ce309f672c
3717
- | | [4fd0d091bd98]
3718
- | |
3719
- 2011-09-23 Michael Granger <ged@FaerieMUD.org>
3720
-
3721
- | o * Rakefile:
3722
- | | Fixed dependency
3723
- | | [85ce309f672c]
3724
- | |
3725
- 2011-09-27 Michael Granger <ged@FaerieMUD.org>
3726
-
3727
- o | * README.rdoc, Rakefile:
3728
- | | Started fleshing out the README in preparation for release.
3729
- | | [46e2340d47f2]
3730
- | |
3731
- o | * data/strelka/apps/strelka-setup:
3732
- | | Add a note to the strelka-setup app explaining that it's not
3733
- | | functional.
3734
- | | [4373981037b5]
3735
- | |
3736
- o | * Manifest.txt, data/strelka/apps/strelka-setup,
3737
- | | lib/strelka/process.rb:
3738
- | | Remove the (as-yet) unimplemented 'process' style app code.
3739
- | | [416ebaa5c4cb]
3740
- | |
3741
- o | * bin/leash, data/strelka/bootstrap-config.rb,
3742
- | | lib/strelka/constants.rb:
3743
- | | Added a bit more bootstrapping to 'leash setup' so it'll start from
3744
- | | a gem install.
3745
- | | [2f04f648f0b0]
3746
- | |
3747
- o | * .gemtest:
3748
- | | Add gemtesters marker file
3749
- | | [3294d2b7a652]
3750
- | |
3751
- o | * Rakefile:
3752
- | | Add testing artifacts to CLOBBER, update deps
3753
- | | [414df1602680]
3754
- | |
3755
- o | * Manifest.txt:
3756
- | | Add static content to the Manifest
3757
- | | [b6364d316aa6]
3758
- | |
3759
- o | * .DS_Store, bin/leash, data/.DS_Store, data/strelka/.DS_Store,
3760
- |/ data/strelka/apps/strelka-admin, data/strelka/static/.DS_Store,
3761
- | data/strelka/static/css/master.css,
3762
- | data/strelka/static/css/reset.css, data/strelka/static/fonts
3763
- | /IstokWeb-Bold.ttf, data/strelka/static/fonts/IstokWeb-
3764
- | BoldItalic.ttf, data/strelka/static/fonts/IstokWeb-Italic.ttf,
3765
- | data/strelka/static/fonts/IstokWeb-Regular.ttf,
3766
- | data/strelka/static/fonts/OFL.txt,
3767
- | data/strelka/templates/admin/console.tmpl,
3768
- | data/strelka/templates/layout.tmpl, lib/strelka/app.rb:
3769
- | Added a rudimentary admin application console view.
3770
- | [7856ba635d54]
3771
- |
3772
- 2011-09-23 Michael Granger <ged@FaerieMUD.org>
3773
-
3774
- o * .autotest, .hgignore, Manifest.txt, Rakefile:
3775
- | Update deps, build system.
3776
- | [cddb7bfa942c]
3777
- |
3778
- o * .hgignore, Rakefile, bin/leash, data/strelka/apps/strelka-admin,
3779
- | data/strelka/apps/strelka-setup, data/strelka/bootstrap-config.rb,
3780
- | data/strelka/templates/admin/console.tmpl,
3781
- | lib/strelka/app/defaultrouter.rb, lib/strelka/app/routing.rb,
3782
- | lib/strelka/app/templating.rb:
3783
- | Added the "setup" command to leash
3784
- | [edc407dc31aa]
3785
- |
3786
- o * .hgignore, .irbrc, .rvmrc, IDEAS.rdoc, IDEAS.textile, README.rdoc,
3787
- | Rakefile, data/strelka/apps/strelka-admin, data/strelka/apps
3788
- | /strelka-setup, data/strelka/bootstrap-config.rb,
3789
- | data/strelka/templates/admin/console.tmpl,
3790
- | data/strelka/templates/layout.tmpl, lib/strelka.rb,
3791
- | lib/strelka/app.rb, lib/strelka/app/defaultrouter.rb,
3792
- | lib/strelka/app/filters.rb, lib/strelka/app/parameters.rb,
3793
- | lib/strelka/app/plugins.rb, lib/strelka/app/routing.rb,
3794
- | lib/strelka/app/templating.rb, lib/strelka/behavior/plugin.rb,
3795
- | lib/strelka/constants.rb, lib/strelka/httprequest.rb,
3796
- | lib/strelka/process.rb, spec/data/layout.tmpl, spec/data/main.tmpl,
3797
- | spec/lib/constants.rb, spec/lib/helpers.rb,
3798
- | spec/strelka/app/defaultrouter_spec.rb,
3799
- | spec/strelka/app/parameters_spec.rb,
3800
- | spec/strelka/app/plugins_spec.rb, spec/strelka/app/routing_spec.rb,
3801
- | spec/strelka/app/templating_spec.rb, spec/strelka/app_spec.rb,
3802
- | spec/strelka/httprequest_spec.rb:
3803
- | Initial handler, request, and response classes.
3804
- | [1e34f33f76af]
3805
- |
3806
- 2011-09-01 Michael Granger <ged@FaerieMUD.org>
3807
-
3808
- o * .rvmrc, spec/lib/helpers.rb, spec/strelka/logging_spec.rb,
3809
- | spec/strelka_spec.rb:
3810
- | Adding initial specs.
3811
- | [e642e876d152]
3812
- |
3813
- 2011-08-31 Michael Granger <ged@FaerieMUD.org>
3814
-
3815
- o * IDEAS.rdoc, README.rdoc:
3816
- | Documentation update.
3817
- | [dc2a59037c67]
3818
- |
3819
- o * .autotest, History.rdoc, IDEAS.rdoc, Manifest.txt, README.rdoc,
3820
- Rakefile, bin/leash, lib/strelka.rb, lib/strelka/constants.rb,
3821
- lib/strelka/logging.rb, lib/strelka/mixins.rb,
3822
- spec/lib/constants.rb, spec/lib/helpers.rb, spec/strelka_spec.rb:
3823
- Initial project skeleton
3824
- [9cae59fec4a2]