strelka 0.0.1.pre148 → 0.0.1.pre177

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 (43) hide show
  1. data/ChangeLog +1294 -0
  2. data/IDEAS.rdoc +6 -0
  3. data/Manifest.txt +20 -0
  4. data/README.rdoc +8 -2
  5. data/Rakefile +9 -7
  6. data/examples/auth-demo.rb +32 -0
  7. data/examples/auth-demo2.rb +37 -0
  8. data/examples/auth-form.tmpl +10 -0
  9. data/examples/auth-success.tmpl +3 -0
  10. data/examples/config.yml +12 -0
  11. data/examples/examples.css +4 -0
  12. data/examples/examples.html +31 -0
  13. data/examples/gen-config.rb +5 -2
  14. data/examples/layout.tmpl +31 -0
  15. data/lib/strelka/app/auth.rb +480 -0
  16. data/lib/strelka/app/sessions.rb +8 -6
  17. data/lib/strelka/app/templating.rb +78 -17
  18. data/lib/strelka/app.rb +13 -5
  19. data/lib/strelka/authprovider/basic.rb +134 -0
  20. data/lib/strelka/authprovider/hostaccess.rb +91 -0
  21. data/lib/strelka/authprovider.rb +122 -0
  22. data/lib/strelka/cookie.rb +1 -1
  23. data/lib/strelka/cookieset.rb +1 -1
  24. data/lib/strelka/httprequest/auth.rb +31 -0
  25. data/lib/strelka/logging.rb +69 -14
  26. data/lib/strelka/mixins.rb +35 -65
  27. data/lib/strelka/session/db.rb +115 -0
  28. data/lib/strelka/session/default.rb +38 -49
  29. data/lib/strelka/session.rb +1 -1
  30. data/lib/strelka.rb +4 -1
  31. data/spec/lib/helpers.rb +8 -3
  32. data/spec/strelka/app/auth_spec.rb +367 -0
  33. data/spec/strelka/authprovider/basic_spec.rb +192 -0
  34. data/spec/strelka/authprovider/hostaccess_spec.rb +70 -0
  35. data/spec/strelka/authprovider_spec.rb +99 -0
  36. data/spec/strelka/cookie_spec.rb +1 -1
  37. data/spec/strelka/httprequest/auth_spec.rb +55 -0
  38. data/spec/strelka/httprequest/session_spec.rb +63 -3
  39. data/spec/strelka/session/db_spec.rb +85 -0
  40. data/spec/strelka/session/default_spec.rb +5 -51
  41. data.tar.gz.sig +0 -0
  42. metadata +88 -57
  43. metadata.gz.sig +0 -0
data/ChangeLog ADDED
@@ -0,0 +1,1294 @@
1
+ 2012-04-06 Mahlon E. Smith <mahlon@martini.nu>
2
+
3
+ * lib/strelka/app/sessions.rb, lib/strelka/cookie.rb,
4
+ lib/strelka/cookieset.rb, lib/strelka/session.rb,
5
+ lib/strelka/session/db.rb, lib/strelka/session/default.rb,
6
+ spec/strelka/cookie_spec.rb, spec/strelka/session/db_spec.rb,
7
+ spec/strelka/session/default_spec.rb:
8
+ Expose cookie options to the default and db session stores.
9
+ [49e538cdee68] [tip]
10
+
11
+ * Manifest.txt, lib/strelka/app/sessions.rb, lib/strelka/session.rb,
12
+ lib/strelka/session/db.rb, lib/strelka/session/default.rb,
13
+ spec/strelka/session/db_spec.rb,
14
+ spec/strelka/session/default_spec.rb:
15
+ Add a persistent DB session store, using sequel.
16
+ [99f3c3f5d6ca]
17
+
18
+ 2012-04-06 Michael Granger <ged@FaerieMUD.org>
19
+
20
+ * lib/strelka/app/templating.rb:
21
+ Add API docs to the :templating plugin module
22
+ [3c160d996320]
23
+
24
+ * README.rdoc:
25
+ Add more URLs
26
+ [060962556bd1]
27
+
28
+ * Rakefile:
29
+ Oops. Fix typo
30
+ [5a8aa207860b]
31
+
32
+ * .rvm.gems, Rakefile:
33
+ Update dependencies
34
+ [787e523777d1]
35
+
36
+ 2012-04-04 Michael Granger <ged@FaerieMUD.org>
37
+
38
+ * manual/src/tutorial.page:
39
+ Add a bit more content to the manual.
40
+ [79a26c9e4dd5] [github/master]
41
+
42
+ 2012-04-02 Michael Granger <ged@FaerieMUD.org>
43
+
44
+ * manual/src/cookbook.page, manual/src/index.page,
45
+ manual/src/starting.page, manual/src/tutorial.page,
46
+ manual/src/writing.page:
47
+ Add some friendly and inspiring content to the manual.
48
+ [c6a0cbb13404]
49
+
50
+ * lib/strelka/logging.rb, lib/strelka/mixins.rb:
51
+ Clean up logging mixin; improve API docs
52
+ [b17a609a35e6]
53
+
54
+ 2012-03-28 Michael Granger <ged@FaerieMUD.org>
55
+
56
+ * .rvm.gems, Rakefile:
57
+ Bump Ruby-Mongrel2 dependency to 0.19.
58
+ [7f79f3fa2ae7]
59
+
60
+ * Manifest.txt:
61
+ Updating the manifest
62
+ [6d68cc07b4db]
63
+
64
+ * IDEAS.rdoc:
65
+ Add an idea to IDEAS
66
+ [3df08e5fdd65]
67
+
68
+ * examples/auth-demo.rb, examples/config.yml, examples/examples.css,
69
+ examples/examples.html, examples/gen-config.rb:
70
+ Updated examples
71
+ [78f38fe5f6ea]
72
+
73
+ * .rvm.gems, Rakefile:
74
+ Depend on the latest version of Ruby-Mongrel2
75
+ [51a639c9d025]
76
+
77
+ * lib/strelka/app/auth.rb, spec/strelka/app/auth_spec.rb:
78
+ Set the authenticated_user on the request if authentication succeeds
79
+ [ccda5fdfb280]
80
+
81
+ * lib/strelka/authprovider/basic.rb,
82
+ spec/strelka/authprovider/basic_spec.rb:
83
+ Fix configuration for the basic auth provider
84
+ [525d0418a4bf]
85
+
86
+ 2012-03-27 Michael Granger <ged@FaerieMUD.org>
87
+
88
+ * examples/auth-demo.rb, lib/strelka/app/auth.rb,
89
+ lib/strelka/authprovider.rb, spec/strelka/app/auth_spec.rb:
90
+ Merging with accidentally-committed auth patch on Github
91
+ [3025b5711352]
92
+
93
+ 2012-03-20 Michael Granger <ged@FaerieMUD.org>
94
+
95
+ * examples/auth-demo.rb, examples/config.yml, lib/strelka/app/auth.rb,
96
+ lib/strelka/authprovider.rb, spec/strelka/app/auth_spec.rb:
97
+ Adding authentication system
98
+ [d4977be37d42]
99
+
100
+ 2012-03-27 Michael Granger <ged@FaerieMUD.org>
101
+
102
+ * spec/strelka/httprequest/session_spec.rb:
103
+ Add specs for Strelka::HTTPRequest::Session.
104
+ [b26dc16fb80c]
105
+
106
+ * Manifest.txt:
107
+ Update the manifest
108
+ [f2f01654058b]
109
+
110
+ * examples/auth-demo.rb, examples/auth-demo2.rb, examples/auth-
111
+ form.tmpl, examples/auth-success.tmpl, examples/config.yml,
112
+ examples/layout.tmpl, lib/strelka/app.rb, lib/strelka/app/auth.rb,
113
+ lib/strelka/app/templating.rb, lib/strelka/authprovider.rb,
114
+ lib/strelka/authprovider/basic.rb,
115
+ lib/strelka/authprovider/hostaccess.rb,
116
+ lib/strelka/httprequest/auth.rb, lib/strelka/mixins.rb,
117
+ spec/lib/helpers.rb, spec/strelka/app/auth_spec.rb,
118
+ spec/strelka/authprovider/basic_spec.rb,
119
+ spec/strelka/authprovider/hostaccess_spec.rb,
120
+ spec/strelka/authprovider_spec.rb,
121
+ spec/strelka/httprequest/auth_spec.rb:
122
+ Adding authentication system
123
+ [a59f16e2a574]
124
+
125
+ 2012-03-19 Michael Granger <ged@FaerieMUD.org>
126
+
127
+ * README.rdoc:
128
+ Update README
129
+ [5301f1af2165]
130
+
131
+ * lib/strelka/app/errors.rb, spec/strelka/app/errors_spec.rb:
132
+ Add documentation for the Errors plugin, improve test coverage.
133
+ [ff3ef6e5a7a1] [github/master@default]
134
+
135
+ * Manifest.txt:
136
+ Add session files to the manifest
137
+ [f1f2a5e7ca5d]
138
+
139
+ * .tm_properties, Rakefile, examples/config.yml, examples/gen-
140
+ config.rb, examples/sessions-demo.rb, lib/strelka/app/sessions.rb,
141
+ lib/strelka/httprequest/session.rb,
142
+ lib/strelka/httpresponse/session.rb, lib/strelka/mixins.rb,
143
+ lib/strelka/session.rb, lib/strelka/session/default.rb,
144
+ spec/lib/helpers.rb, spec/strelka/app/sessions_spec.rb,
145
+ spec/strelka/httprequest/session_spec.rb,
146
+ spec/strelka/mixins_spec.rb, spec/strelka/session/default_spec.rb,
147
+ spec/strelka/session_spec.rb:
148
+ Add session support
149
+ [90988bc30afc]
150
+
151
+ * lib/strelka/app.rb, lib/strelka/app/plugins.rb,
152
+ lib/strelka/mixins.rb:
153
+ Adding a MethodUtilities mixin for class_attr_* declaratives
154
+ [5901ddde20f8]
155
+
156
+ * lib/strelka/cookie.rb, spec/strelka/cookie_spec.rb:
157
+ Updated Strelka::Cookie to use the new URI API
158
+ [67afa2cc22d9]
159
+
160
+ * lib/strelka/app.rb:
161
+ Fix the logging setup in App.run
162
+ [3b2e499e7c3b]
163
+
164
+ 2012-03-16 Mahlon E. Smith <mahlon@martini.nu>
165
+
166
+ * lib/strelka/app/templating.rb:
167
+ Auto-reload the layout template if it changed, mimicing the behavior
168
+ already present in other templates.
169
+ [152883524fe1]
170
+
171
+ 2012-03-16 Michael Granger <ged@FaerieMUD.org>
172
+
173
+ * lib/strelka/app.rb:
174
+ Install the color logger if outputting to a TTY
175
+ [bb26271e08fa]
176
+
177
+ 2012-03-15 Michael Granger <ged@FaerieMUD.org>
178
+
179
+ * lib/strelka/app/parameters.rb:
180
+ More whitespace fixes
181
+ [1e95a909eb71]
182
+
183
+ * bin/leash, lib/strelka.rb, lib/strelka/app.rb,
184
+ lib/strelka/app/errors.rb, lib/strelka/app/filters.rb,
185
+ lib/strelka/app/negotiation.rb, lib/strelka/app/parameters.rb,
186
+ lib/strelka/app/plugins.rb, lib/strelka/app/restresources.rb,
187
+ lib/strelka/app/routing.rb, lib/strelka/app/templating.rb,
188
+ lib/strelka/behavior/plugin.rb, lib/strelka/cookie.rb,
189
+ lib/strelka/cookieset.rb, lib/strelka/httprequest.rb,
190
+ lib/strelka/httprequest/acceptparams.rb,
191
+ lib/strelka/httprequest/negotiation.rb, lib/strelka/httpresponse.rb,
192
+ lib/strelka/httpresponse/negotiation.rb, lib/strelka/logging.rb,
193
+ lib/strelka/mixins.rb, lib/strelka/paramvalidator.rb,
194
+ lib/strelka/router.rb, lib/strelka/router/default.rb,
195
+ lib/strelka/router/exclusive.rb, manual/lib/api-filter.rb,
196
+ manual/lib/editorial-filter.rb, manual/lib/examples-filter.rb,
197
+ manual/lib/links-filter.rb, spec/lib/constants.rb,
198
+ spec/strelka/app/errors_spec.rb, spec/strelka/app/filters_spec.rb,
199
+ spec/strelka/app/negotiation_spec.rb,
200
+ spec/strelka/app/parameters_spec.rb,
201
+ spec/strelka/app/plugins_spec.rb,
202
+ spec/strelka/app/restresources_spec.rb,
203
+ spec/strelka/app/routing_spec.rb,
204
+ spec/strelka/app/templating_spec.rb, spec/strelka/app_spec.rb,
205
+ spec/strelka/cookie_spec.rb, spec/strelka/cookieset_spec.rb,
206
+ spec/strelka/exceptions_spec.rb,
207
+ spec/strelka/httprequest/acceptparams_spec.rb,
208
+ spec/strelka/httprequest/negotiation_spec.rb,
209
+ spec/strelka/httprequest_spec.rb,
210
+ spec/strelka/httpresponse/negotiation_spec.rb,
211
+ spec/strelka/logging_spec.rb, spec/strelka/mixins_spec.rb,
212
+ spec/strelka/router/default_spec.rb,
213
+ spec/strelka/router/exclusive_spec.rb, spec/strelka/router_spec.rb:
214
+ Replace bangheaders, clean up whitespace.
215
+
216
+ * Replace the bangheader with a better editor header.
217
+ * Remove Mahlonspace (trailing whitespace)
218
+ [fa6133ac407d]
219
+
220
+ * lib/strelka/router.rb, spec/strelka/router_spec.rb:
221
+ Fix Strelka::Router documentation and spec.
222
+ [0a9de4c5e5fc]
223
+
224
+ * Manifest.txt, lib/strelka/app/defaultrouter.rb,
225
+ lib/strelka/app/exclusiverouter.rb, lib/strelka/app/parameters.rb,
226
+ lib/strelka/app/paramvalidator.rb, lib/strelka/app/router.rb,
227
+ lib/strelka/app/routing.rb, lib/strelka/paramvalidator.rb,
228
+ lib/strelka/router.rb, lib/strelka/router/default.rb,
229
+ lib/strelka/router/exclusive.rb,
230
+ spec/strelka/app/defaultrouter_spec.rb,
231
+ spec/strelka/app/exclusiverouter_spec.rb,
232
+ spec/strelka/app/parameters_spec.rb,
233
+ spec/strelka/app/paramvalidator_spec.rb,
234
+ spec/strelka/app/router_spec.rb, spec/strelka/app/routing_spec.rb,
235
+ spec/strelka/paramvalidator_spec.rb,
236
+ spec/strelka/router/default_spec.rb,
237
+ spec/strelka/router/exclusive_spec.rb, spec/strelka/router_spec.rb:
238
+ Rearrange the namespace so only plugins appear under strelka/app.
239
+
240
+ * Strelka::App::DefaultRouter -> Strelka::Router::Default
241
+ * Strelka::App::ExclusiveRouter -> Strelka::Router::Exclusive
242
+ * Strelka::App::Router -> Strelka::Router
243
+ * Strelka::App::ParamValidator -> Strelka::ParamValidator
244
+ [e084536ddf41]
245
+
246
+ 2012-03-14 Michael Granger <ged@FaerieMUD.org>
247
+
248
+ * Manifest.txt, lib/strelka/cookie.rb, lib/strelka/cookieset.rb,
249
+ lib/strelka/httprequest.rb, lib/strelka/httpresponse.rb,
250
+ spec/strelka/cookie_spec.rb, spec/strelka/cookieset_spec.rb,
251
+ spec/strelka/httprequest_spec.rb, spec/strelka/httpresponse_spec.rb:
252
+ Add cookie support.
253
+ [398dcb53d5e5]
254
+
255
+ 2012-03-12 Michael Granger <ged@FaerieMUD.org>
256
+
257
+ * contrib/hoetemplate/.autotest.erb,
258
+ contrib/hoetemplate/README.rdoc.erb,
259
+ contrib/hoetemplate/data/file_name/apps/file_name_app,
260
+ contrib/hoetemplate/data/file_name/templates/layout.tmpl.erb,
261
+ contrib/hoetemplate/data/file_name/templates/top.tmpl.erb,
262
+ contrib/hoetemplate/data/project/apps/file_name_app,
263
+ contrib/hoetemplate/data/project/templates/layout.tmpl.erb,
264
+ contrib/hoetemplate/data/project/templates/top.tmpl.erb:
265
+ Update the hoe template for recent versions
266
+ [4061e3f2d2cf]
267
+
268
+ 2012-03-10 Michael Granger <ged@FaerieMUD.org>
269
+
270
+ * .rvm.gems, Rakefile:
271
+ Bump Ruby-Mongrel2 dependency to 0.16.
272
+ [95b64a8ed952]
273
+
274
+ 2012-03-05 Michael Granger <ged@FaerieMUD.org>
275
+
276
+ * manual/resources/images/strelka-dogs/doggie6.svg,
277
+ manual/resources/images/strelka-dogs/doggie7.svg:
278
+ Add some awesome logos!
279
+ [305d215c3db3]
280
+
281
+ * IDEAS.rdoc, README.rdoc:
282
+ Rework documentation to take strelka-admin extraction into account
283
+ [b8172819264c]
284
+
285
+ 2012-03-02 Michael Granger <ged@FaerieMUD.org>
286
+
287
+ * lib/strelka/app.rb, lib/strelka/constants.rb,
288
+ spec/strelka/app_spec.rb:
289
+ Include apps that are included with Strelka in discovery
290
+ [582fcbf6e4fc]
291
+
292
+ * bin/leash:
293
+ Add whitespace to "leash discover" output
294
+ [e25ae760db53]
295
+
296
+ * .rvm.gems:
297
+ Bump the mongrel2 version in rvm gems list
298
+ [3bfe5ebb7fa9]
299
+
300
+ * README.rdoc:
301
+ Clean up the README
302
+ [27eea54aab38]
303
+
304
+ 2012-02-29 Michael Granger <ged@FaerieMUD.org>
305
+
306
+ * lib/strelka/runner.rb, spec/strelka/runner_spec.rb:
307
+ Actually remove the runner class and spec
308
+ [4756cd871fab]
309
+
310
+ * Manifest.txt:
311
+ Remove the unfinished runner class.
312
+ [d18749c17bce]
313
+
314
+ * bin/leash:
315
+ Strip out obsolete code from leash
316
+ [015d0121b4ca]
317
+
318
+ * lib/strelka.rb:
319
+ Combine Loggers by default.
320
+
321
+ Set the Configurability and Mongrel2 loggers to Strelka's logger so
322
+ they all show up in the same place.
323
+ [dd54849bf817]
324
+
325
+ * data/strelka/apps/hello-world:
326
+ Remove (unnecessary) config-loading from hello-world app
327
+ [aea26d8d7f49]
328
+
329
+ * README.rdoc:
330
+ Update the README to reflect leash changes.
331
+ [3ede2825fde0]
332
+
333
+ * lib/strelka.rb, lib/strelka/app.rb, lib/strelka/constants.rb:
334
+ Remove some more admin app stuff.
335
+ [12de3b855bf0]
336
+
337
+ * Manifest.txt:
338
+ Remove admin app stuff from the manifest
339
+ [a7c2bf7b8ab2]
340
+
341
+ * AdminAppUI.graffle, data/strelka/admin.conf, data/strelka/apps
342
+ /config-service, data/strelka/apps/strelka-admin, data/strelka/apps
343
+ /strelka-setup, data/strelka/bootstrap-config.rb,
344
+ data/strelka/static/css/bootstrap-responsive.css,
345
+ data/strelka/static/css/bootstrap-responsive.min.css,
346
+ data/strelka/static/css/bootstrap.css,
347
+ data/strelka/static/css/bootstrap.min.css,
348
+ data/strelka/static/css/master.css,
349
+ data/strelka/static/css/reset.css, data/strelka/static/fonts
350
+ /IstokWeb-Bold.ttf, data/strelka/static/fonts/IstokWeb-
351
+ BoldItalic.ttf, data/strelka/static/fonts/IstokWeb-Italic.ttf,
352
+ data/strelka/static/fonts/IstokWeb-Regular.ttf,
353
+ data/strelka/static/fonts/OFL.txt,
354
+ data/strelka/static/images/21d1-16.png,
355
+ data/strelka/static/images/21d1.png, data/strelka/static/images
356
+ /glyphicons-halflings-white.png, data/strelka/static/images
357
+ /glyphicons-halflings.png,
358
+ data/strelka/static/images/icons/blank.png,
359
+ data/strelka/static/images/icons/cross-button.png,
360
+ data/strelka/static/images/icons/tick-button.png,
361
+ data/strelka/static/images/icons/tick-circle-frame.png,
362
+ data/strelka/static/images/icons/tick-circle.png,
363
+ data/strelka/static/images/icons/tick-octagon-frame.png,
364
+ data/strelka/static/images/icons/tick-octagon.png,
365
+ data/strelka/static/images/icons/tick-red.png,
366
+ data/strelka/static/images/icons/tick-shield.png,
367
+ data/strelka/static/images/icons/tick-small-circle.png,
368
+ data/strelka/static/images/icons/tick-small-red.png,
369
+ data/strelka/static/images/icons/tick-small-white.png,
370
+ data/strelka/static/images/icons/tick-small.png,
371
+ data/strelka/static/images/icons/tick-white.png,
372
+ data/strelka/static/images/icons/tick.png,
373
+ data/strelka/static/images/noise.jpg,
374
+ data/strelka/static/images/noise.png,
375
+ data/strelka/static/js/admin/app.js,
376
+ data/strelka/static/js/vendor/backbone.js,
377
+ data/strelka/static/js/vendor/bootstrap.js,
378
+ data/strelka/static/js/vendor/bootstrap.min.js,
379
+ data/strelka/static/js/vendor/jquery-1.7.1.js,
380
+ data/strelka/static/js/vendor/jquery.jeditable.mini.js,
381
+ data/strelka/static/js/vendor/jquery.tmpl.min.js,
382
+ data/strelka/static/js/vendor/jquery.tmplPlus.min.js,
383
+ data/strelka/static/js/vendor/jquery.tools.min.js,
384
+ data/strelka/static/js/vendor/json2.js,
385
+ data/strelka/static/js/vendor/underscore.js,
386
+ data/strelka/templates/admin/console.tmpl,
387
+ data/strelka/templates/admin/host.tmpl,
388
+ data/strelka/templates/admin/message.tmpl,
389
+ data/strelka/templates/admin/server.tmpl,
390
+ data/strelka/templates/layout.tmpl:
391
+ Split out the admin app into a separate gem
392
+ [c8355bb281bf]
393
+
394
+ * data/strelka/apps/config-service, data/strelka/apps/strelka-admin,
395
+ data/strelka/static/css/bootstrap-responsive.css,
396
+ data/strelka/static/css/bootstrap-responsive.min.css,
397
+ data/strelka/static/css/bootstrap.css,
398
+ data/strelka/static/css/bootstrap.min.css,
399
+ data/strelka/static/images/glyphicons-halflings-white.png,
400
+ data/strelka/static/images/glyphicons-halflings.png,
401
+ data/strelka/static/js/admin/app.js,
402
+ data/strelka/static/js/jquery.jeditable.mini.js,
403
+ data/strelka/static/js/jquery.tmpl.min.js,
404
+ data/strelka/static/js/jquery.tmplPlus.min.js,
405
+ data/strelka/static/js/jquery.tools.min.js,
406
+ data/strelka/static/js/strelka.js,
407
+ data/strelka/static/js/vendor/backbone.js,
408
+ data/strelka/static/js/vendor/bootstrap.js,
409
+ data/strelka/static/js/vendor/bootstrap.min.js,
410
+ data/strelka/static/js/vendor/jquery-1.7.1.js,
411
+ data/strelka/static/js/vendor/jquery.jeditable.mini.js,
412
+ data/strelka/static/js/vendor/jquery.tmpl.min.js,
413
+ data/strelka/static/js/vendor/jquery.tmplPlus.min.js,
414
+ data/strelka/static/js/vendor/jquery.tools.min.js,
415
+ data/strelka/static/js/vendor/json2.js,
416
+ data/strelka/static/js/vendor/underscore.js,
417
+ data/strelka/templates/admin/console.tmpl,
418
+ data/strelka/templates/layout.tmpl:
419
+ Backbone backend experiment
420
+ [b55b742478e7]
421
+
422
+ * IDEAS.rdoc, bin/leash, data/strelka/bootstrap-config.rb,
423
+ lib/strelka/app.rb, lib/strelka/app/restresources.rb,
424
+ lib/strelka/runner.rb, spec/strelka/app_spec.rb,
425
+ spec/strelka/runner_spec.rb:
426
+ Added the first parts of the runtime environment
427
+ [84f87dbd7e67]
428
+
429
+ 2012-02-27 Michael Granger <ged@FaerieMUD.org>
430
+
431
+ * lib/strelka/app/restresources.rb,
432
+ spec/strelka/app/restresources_spec.rb:
433
+ Adding composite resources to the RestResources plugin
434
+ [a4c0cb6af36e]
435
+
436
+ * .rvm.gems, Rakefile, bin/leash, data/strelka/apps/strelka-admin:
437
+ Mongrel 0.15 change
438
+ [d7ca621c2650]
439
+
440
+ * .rvm.gems, Rakefile:
441
+ Bump required mongrel2 version to 0.14
442
+ [faf5bc4c5393]
443
+
444
+ * lib/strelka/app/paramvalidator.rb:
445
+ Add a parameter pattern for 'string' type fields
446
+ [b24533d7f3ba]
447
+
448
+ * lib/strelka/app/routing.rb:
449
+ Add a new has_route? predicate to Strelka::App::Routing
450
+ [087bee0a6cd4]
451
+
452
+ 2012-02-26 Michael Granger <ged@FaerieMUD.org>
453
+
454
+ * IDEAS.rdoc, README.rdoc, lib/strelka/app/errors.rb,
455
+ lib/strelka/app/filters.rb, lib/strelka/app/negotiation.rb,
456
+ lib/strelka/app/parameters.rb, lib/strelka/app/plugins.rb,
457
+ lib/strelka/app/router.rb, lib/strelka/app/routing.rb,
458
+ lib/strelka/app/templating.rb:
459
+ API documentation updates/fixes
460
+ [ddc633dd6ee9]
461
+
462
+ 2012-02-25 Michael Granger <ged@FaerieMUD.org>
463
+
464
+ * data/strelka/apps/hello-world, data/strelka/apps/strelka-admin,
465
+ data/strelka/bootstrap-config.rb, lib/strelka.rb:
466
+ Update apps to use the Configurability config.
467
+ [86fdc1e4e120]
468
+
469
+ * data/strelka/admin.conf:
470
+ Add the mongrel2 config to admin.conf
471
+ [e9beeea34234]
472
+
473
+ * bin/leash:
474
+ Leash command-line tool updates.
475
+
476
+ - Use Strelka.load_config
477
+ - Prompt to replace the existing config if it exists when doing 'leash
478
+ setup'
479
+ - Fix renamed constant
480
+ [8d36fde80203]
481
+
482
+ 2012-02-24 Michael Granger <ged@FaerieMUD.org>
483
+
484
+ * .rvm.gems, Rakefile:
485
+ Require Mongrel2 0.13
486
+ [a981f69db584]
487
+
488
+ * bin/leash, lib/strelka.rb, lib/strelka/app.rb,
489
+ lib/strelka/constants.rb:
490
+ Add convenience methods for loading the Configurability config
491
+ [a056b6ec888c]
492
+
493
+ * spec/strelka/httprequest_spec.rb:
494
+ Improving spec coverage
495
+ [873c448dea0b]
496
+
497
+ * .rvm.gems, .tm_properties, manual/lib/api-filter.rb,
498
+ manual/src/cookbook.page, manual/src/deploying.page,
499
+ manual/src/distributing.page, manual/src/index.page,
500
+ manual/src/plugins.page, manual/src/writing.page:
501
+ More manual work
502
+ [325a2b5347fe]
503
+
504
+ 2012-02-22 Mahlon E. Smith <mahlon@martini.nu>
505
+
506
+ * lib/strelka/httprequest.rb, spec/strelka/httprequest_spec.rb:
507
+ Make slice! operate on a copy of the uri path.
508
+ [9cde015ae2ad]
509
+
510
+ 2012-02-22 Michael Granger <ged@FaerieMUD.org>
511
+
512
+ * Manifest.txt, data/strelka/apps/strelka-admin, lib/strelka/app.rb,
513
+ lib/strelka/app/defaultrouter.rb, lib/strelka/app/errors.rb,
514
+ lib/strelka/app/exclusiverouter.rb, lib/strelka/app/plugins.rb,
515
+ lib/strelka/app/routing.rb, lib/strelka/app/templating.rb,
516
+ spec/data/error.tmpl, spec/lib/helpers.rb,
517
+ spec/strelka/app/defaultrouter_spec.rb,
518
+ spec/strelka/app/errors_spec.rb,
519
+ spec/strelka/app/exclusiverouter_spec.rb,
520
+ spec/strelka/app/routing_spec.rb, spec/strelka/app_spec.rb:
521
+ Add a custom error-handler plugin.
522
+
523
+ - Add Strelka::App::Errors module.
524
+ - Encapsulate the routing data in a hash instead of making the Router
525
+ responsible for doing things like setting the route in the notes
526
+ field. (Routing plugin)
527
+ - Don't propagate the exception message to the browser; instead just
528
+ display a generic 'internal server error' message
529
+ - Add a few useful objects to all templates (Templating plugin)
530
+ [aa8cfa8f450a]
531
+
532
+ * .rvm.gems:
533
+ Add simplecov to the list of dev gems
534
+ [e3d2478550d1]
535
+
536
+ 2012-02-21 Michael Granger <ged@FaerieMUD.org>
537
+
538
+ * lib/strelka/app/router.rb:
539
+ Replace explicit abstractness of Strelka::App:Router with the
540
+ AbstractClass mixin
541
+ [a207dbd09084]
542
+
543
+ * data/strelka/apps/strelka-admin, lib/strelka/app/filters.rb,
544
+ lib/strelka/app/templating.rb:
545
+ Fix ordering for the filters plugin
546
+ [8d17a86b0aa7]
547
+
548
+ 2012-02-20 Michael Granger <ged@FaerieMUD.org>
549
+
550
+ * data/strelka/apps/strelka-admin, data/strelka/static/js/strelka.js,
551
+ data/strelka/templates/admin/console.tmpl,
552
+ lib/strelka/app/restresources.rb:
553
+ Tweak the admin app to use the REST plugin instead of explicit
554
+ service routes.
555
+ [e1bfc6aa107f]
556
+
557
+ * .rvm.gems, Manifest.txt, data/strelka/apps/strelka-admin,
558
+ lib/strelka/app/paramvalidator.rb, lib/strelka/app/plugins.rb,
559
+ lib/strelka/app/restresources.rb, spec/lib/helpers.rb,
560
+ spec/strelka/app/restresources_spec.rb:
561
+ Add an App plugin for easily creating REST services from
562
+ Sequel::Models.
563
+
564
+ - Add Strelka::App::RestReources module and specs.
565
+ - Alias ParamValidator#match_printable to #match_string to support
566
+ validation of Sequel :string columns.
567
+ - Require Ruby-Mongrel 0.12+
568
+ - This is just the initial implementation. Yet to be added:
569
+ configuration options for enabling/disabling stuff, automatic
570
+ composite services mapped from association reflections, mass-
571
+ create option, and lots more I'm forgetting.
572
+ [23acdb6e9afc]
573
+
574
+ * data/strelka/bootstrap-config.rb:
575
+ Make sure strelka is loaded in the bootstrap config
576
+ [db2b7d20b62a]
577
+
578
+ * lib/strelka/app/negotiation.rb,
579
+ lib/strelka/httpresponse/negotiation.rb:
580
+ Fixed response negotiation for empty-body responses
581
+ [0a194e88cc0b]
582
+
583
+ * lib/strelka/app/paramvalidator.rb:
584
+ ParamValidator whitespace cleanup
585
+ [abafe62d3b76]
586
+
587
+ * lib/strelka/app/paramvalidator.rb:
588
+ Fixing a ParamValidator duplication bug
589
+ [21bde3caffc3]
590
+
591
+ * lib/strelka/httprequest.rb:
592
+ Parse body parameters from POST requests, too
593
+ [8a70815fa134]
594
+
595
+ * lib/strelka/httprequest.rb,
596
+ spec/strelka/app/exclusiverouter_spec.rb,
597
+ spec/strelka/httprequest_spec.rb:
598
+ Don't include the query string in HTTPRequest#app_path or #base_uri
599
+
600
+ - This fixes the ExclusiveRouter not routing requests with query
601
+ arguments.
602
+ [42882771b205]
603
+
604
+ * Manifest.txt:
605
+ Add the new routing classes to the manifest
606
+ [11580d42c861]
607
+
608
+ * .rvm.gems, Rakefile, lib/strelka/app/defaultrouter.rb,
609
+ lib/strelka/app/exclusiverouter.rb, lib/strelka/app/router.rb,
610
+ lib/strelka/app/routing.rb, spec/strelka/app/defaultrouter_spec.rb,
611
+ spec/strelka/app/exclusiverouter_spec.rb,
612
+ spec/strelka/app/router_spec.rb, spec/strelka/app/routing_spec.rb:
613
+ Make routing strategy pluggable, add an alternative exclusive
614
+ strategy.
615
+
616
+ - Add PluginFactory dependency.
617
+ - Factor interface up into Strelka::App::Router and make that a
618
+ PluginFactory.
619
+ - Make Strelka::App::DefaultRouter inherit from ::App::Router.
620
+ - Add a Strelka::App::ExclusiveRouter strategy class that inherits
621
+ from DefaultRouter.
622
+ - Fix a bug in the DefaultRouter: route patterns weren't bound to the
623
+ beginning of the path, so the presence of the path elements anywhere
624
+ in the URL would route to the longest such match.
625
+ [fa295f05697f]
626
+
627
+ 2012-02-18 Michael Granger <ged@FaerieMUD.org>
628
+
629
+ * Rakefile, lib/strelka/constants.rb:
630
+ Refactor BODILESS_HTTP_RESPONSE_CODES up into Mongrel2
631
+ [5d429779f85a]
632
+
633
+ 2012-02-17 Michael Granger <ged@FaerieMUD.org>
634
+
635
+ * lib/strelka/app/templating.rb:
636
+ Fix documentation for Strelka::App::Templating#handle_request.
637
+ [09ed8d8f5c0f]
638
+
639
+ * Manifest.txt:
640
+ Updated the Manifest
641
+ [703660677f74]
642
+
643
+ 2012-02-17 Mahlon E. Smith <mahlon@martini.nu>
644
+
645
+ * Rakefile, lib/strelka/app.rb, spec/strelka/app_spec.rb:
646
+ Respect the Content-Type header if set in a finish_with() response.
647
+ Bump the mongrel2 dependency version to 0.10.
648
+ [9701313fde63]
649
+
650
+ 2012-02-16 Michael Granger <ged@FaerieMUD.org>
651
+
652
+ * .rvmrc:
653
+ Omit patchlevel from rvmrc Ruby version
654
+ [b1ab47664438]
655
+
656
+ 2012-02-14 Michael Granger <ged@FaerieMUD.org>
657
+
658
+ * lib/strelka/app/filters.rb, spec/strelka/app/filters_spec.rb:
659
+ Add specs for and fix the filters plugin
660
+ [2ab39c598c11]
661
+
662
+ * .rvm.gems:
663
+ Update rvm gem list
664
+ [688267700ee2]
665
+
666
+ * .tm_properties:
667
+ Use rvm-auto-ruby from TextMate2
668
+ [b9327fb8573d]
669
+
670
+ 2012-02-13 Michael Granger <ged@FaerieMUD.org>
671
+
672
+ * README.rdoc, manual/src/app-howto.page, manual/src/deploy-
673
+ howto.page, manual/src/deploying.page, manual/src/distributing.page,
674
+ manual/src/index.page, manual/src/writing.page:
675
+ More work on the manual
676
+ [bccf1f2e0483]
677
+
678
+ 2012-02-06 Michael Granger <ged@FaerieMUD.org>
679
+
680
+ * .rvmrc:
681
+ Cleaned up the .rvmrc
682
+ [bf5488440c81]
683
+
684
+ 2012-01-27 Michael Granger <ged@FaerieMUD.org>
685
+
686
+ * .tm_properties:
687
+ Removing spec section from project settings.
688
+ [e454e4935561]
689
+
690
+ 2012-01-10 Michael Granger <ged@FaerieMUD.org>
691
+
692
+ * Manifest.txt:
693
+ Updating the manifest
694
+ [d093e0c719d3]
695
+
696
+ * lib/strelka/app/plugins.rb, lib/strelka/httprequest.rb,
697
+ lib/strelka/httprequest/acceptparams.rb:
698
+ API documentation cleanup
699
+ [a80347dd40d4]
700
+
701
+ 2012-01-05 Michael Granger <ged@FaerieMUD.org>
702
+
703
+ * History.rdoc:
704
+ Fixing version tag in history file
705
+ [037d3b5645d2]
706
+
707
+ * .tm_properties:
708
+ Adding my TextMate2 properties file
709
+ [e781b8c46b83]
710
+
711
+ * bin/leash:
712
+ Fix typo: status.signal? -> status.signaled?
713
+ [ae2ab648ffe8]
714
+
715
+ 2011-12-21 Michael Granger <ged@FaerieMUD.org>
716
+
717
+ * Rakefile:
718
+ Automated merge with ssh://deveiate.org/Strelka
719
+ [1c4ffb7aa78b]
720
+
721
+ 2011-12-09 Michael Granger <ged@FaerieMUD.org>
722
+
723
+ * Rakefile:
724
+ Adding missing sysexits dependency
725
+ [223d28106e72]
726
+
727
+ * .rvm.gems, .rvmrc:
728
+ Updating rvmrc and adding exported gemset
729
+ [bd23f67d2998]
730
+
731
+ 2011-12-15 Michael Granger <ged@FaerieMUD.org>
732
+
733
+ * Rakefile:
734
+ Merged with 246b2ead48d5
735
+ [c2fa945b0435]
736
+
737
+ * Merged with 0f57bc5c44dd
738
+ [af64f9618fd7]
739
+
740
+ 2011-12-05 Michael Granger <ged@FaerieMUD.org>
741
+
742
+ * .pryrc:
743
+ Adding a .pryrc
744
+ [6ef2923b88e8]
745
+
746
+ 2011-11-02 Michael Granger <ged@FaerieMUD.org>
747
+
748
+ * Rakefile:
749
+ Adding check_history and check_manifest prerequisites to the
750
+ precheckin task
751
+ [246b2ead48d5]
752
+
753
+ 2011-12-07 Michael Granger <ged@FaerieMUD.org>
754
+
755
+ * .rvmrc:
756
+ Switch to 1.9.3 with a gemset in the .rvmrc.
757
+ [0f57bc5c44dd]
758
+
759
+ 2011-11-30 Michael Granger <ged@FaerieMUD.org>
760
+
761
+ * spec/strelka/httprequest_spec.rb:
762
+ Fixing renamed method in spec for HTTPRequest#base_uri.
763
+ [f89ce89067b0]
764
+
765
+ * .hgignore:
766
+ Add the manual output directory to the ignorefile
767
+ [ca9b233e1bbe]
768
+
769
+ * Manifest.txt, manual/resources/images/project-layout.png, manual/src
770
+ /app-howto.page, manual/src/deploy-howto.page:
771
+ A bit of work on the manual
772
+ [f4bfb3ffe608]
773
+
774
+ * contrib/hoetemplate/Manifest.txt.erb,
775
+ contrib/hoetemplate/data/file_name/apps/file_name_app:
776
+ Updating the hoe template
777
+ [1bd22fc837ff]
778
+
779
+ 2011-11-21 Michael Granger <ged@FaerieMUD.org>
780
+
781
+ * AdminAppUI.graffle:
782
+ Updating diagrams
783
+ [4f0ae932b410]
784
+
785
+ * contrib/hoetemplate/.autotest.erb,
786
+ contrib/hoetemplate/History.rdoc.erb,
787
+ contrib/hoetemplate/Manifest.txt.erb,
788
+ contrib/hoetemplate/README.rdoc.erb,
789
+ contrib/hoetemplate/Rakefile.erb,
790
+ contrib/hoetemplate/data/file_name/apps/file_name_app,
791
+ contrib/hoetemplate/data/file_name/templates/layout.tmpl.erb,
792
+ contrib/hoetemplate/data/file_name/templates/top.tmpl.erb,
793
+ contrib/hoetemplate/lib/file_name.rb.erb,
794
+ contrib/hoetemplate/spec/file_name_spec.rb.erb:
795
+ Adding a Hoe template for Strelka app gems
796
+ [c21afe9776d3]
797
+
798
+ * Rakefile, manual/layouts/default.erb, manual/lib/api-filter.rb,
799
+ manual/lib/editorial-filter.rb, manual/lib/examples-filter.rb,
800
+ manual/lib/links-filter.rb, manual/resources/css/manual.css,
801
+ manual/resources/fonts/GraublauWeb.otf,
802
+ manual/resources/fonts/GraublauWebBold.otf,
803
+ manual/resources/fonts/Inconsolata.otf,
804
+ manual/resources/images/arrow_225_small.png,
805
+ manual/resources/images/arrow_315_small.png,
806
+ manual/resources/images/arrow_skip.png, manual/resources/images/cc-
807
+ by.png, manual/resources/images/dialog-error.png,
808
+ manual/resources/images/dialog-information.png,
809
+ manual/resources/images/dialog-warning.png, manual/resources/images
810
+ /emblem-important.png, manual/resources/images/help.png,
811
+ manual/resources/images/information.png,
812
+ manual/resources/images/magnifier.png,
813
+ manual/resources/images/magnifier_left.png,
814
+ manual/resources/images/page_white_code.png,
815
+ manual/resources/images/page_white_copy.png,
816
+ manual/resources/images/printer.png,
817
+ manual/resources/images/question.png,
818
+ manual/resources/images/scripts_code.png,
819
+ manual/resources/images/wrap.png,
820
+ manual/resources/images/wrapping.png,
821
+ manual/resources/js/jquery-1.4.4.min.js,
822
+ manual/resources/js/manual.js, manual/resources/js/sh.js,
823
+ manual/resources/swf/clipboard.swf, manual/src/app-howto.page,
824
+ manual/src/index.page:
825
+ Adding a manual
826
+ [af0709152a71]
827
+
828
+ 2011-10-28 Michael Granger <ged@FaerieMUD.org>
829
+
830
+ * data/strelka/apps/strelka-admin, data/strelka/static/js/strelka.js,
831
+ data/strelka/templates/admin/console.tmpl,
832
+ lib/strelka/httprequest.rb:
833
+ Touchups on the admin app
834
+ [5b697faaf717]
835
+
836
+ 2011-10-26 Michael Granger <ged@FaerieMUD.org>
837
+
838
+ * data/strelka/apps/strelka-admin, data/strelka/bootstrap-config.rb,
839
+ data/strelka/static/css/master.css,
840
+ data/strelka/static/js/strelka.js,
841
+ data/strelka/templates/admin/console.tmpl,
842
+ data/strelka/templates/admin/server.tmpl,
843
+ data/strelka/templates/layout.tmpl, lib/strelka/app/parameters.rb,
844
+ lib/strelka/httprequest.rb, spec/strelka/httprequest_spec.rb:
845
+ Add the ability to add a server to strelka-admin.
846
+ - Add parameter validations for server fields
847
+ - Reset the name of the control_port, as it's global across all
848
+ servers.
849
+ - Lots of CSS additions
850
+ - Lots of additions to the client-side scripting
851
+ - Use HTML5 data-* fields to track the column-mapping when
852
+ creating/updating servers.
853
+ - Fix the layout template, which was missing the opening <html> tag.
854
+ - Strelka::HTTPRequest
855
+ * add method #app_uri
856
+ * make #uri method return a full URI instead of the just the path.
857
+ * support JSON or YAML body for #params, too.
858
+ [3f08fbb2b1c2]
859
+
860
+ 2011-10-24 Michael Granger <ged@FaerieMUD.org>
861
+
862
+ * bin/leash:
863
+ Changing the runtime environment of the admin mongrel2 server to the
864
+ gem's datadir
865
+ [32d0a82da883]
866
+
867
+ 2011-10-19 Michael Granger <ged@FaerieMUD.org>
868
+
869
+ * data/strelka/static/js/jquery-1.6.4.min.js,
870
+ data/strelka/static/js/jquery.tools.min.js,
871
+ data/strelka/templates/layout.tmpl:
872
+ Swap solo jQuery for jQuery tools+jQuery
873
+ [86495a28976a]
874
+
875
+ * bin/leash:
876
+ Allow overriding the mongrel2 path for the leash command
877
+ [be65f6b93615]
878
+
879
+ 2011-10-18 Michael Granger <ged@FaerieMUD.org>
880
+
881
+ * data/strelka/apps/strelka-admin, lib/strelka/app.rb,
882
+ lib/strelka/app/filters.rb, lib/strelka/app/negotiation.rb,
883
+ lib/strelka/app/plugins.rb, lib/strelka/app/templating.rb,
884
+ lib/strelka/httprequest/acceptparams.rb,
885
+ lib/strelka/httpresponse/negotiation.rb, spec/strelka/app_spec.rb,
886
+ spec/strelka/httpresponse/negotiation_spec.rb:
887
+ Alterations to the plugin system to reflect dogfood discoveries.
888
+ - Rearranged the lifecycle of the request to all happen inside the
889
+ try/catch to allow fixup hooks to finish with an error status,
890
+ too.
891
+ - Moved the negotiation plugin closer to the router so negotation
892
+ callbacks can return responses that will be further altered by
893
+ later plugins. Moved the acceptable check into the response fixup
894
+ hook to accomplish this.
895
+ - Made the response fixup hook only take a response object since
896
+ responses can now know what their request is.
897
+ - Made language-negotiation short-circuit whenever there aren't any
898
+ languages set.
899
+ - Added warnings to the accept predicates to make it easier to track
900
+ down why a 406 happened.
901
+ - Made response mediatype negotiation less eager to stringify
902
+ everything.
903
+ [c62a0c305681]
904
+
905
+ * lib/strelka/app/filters.rb, lib/strelka/httpresponse/negotiation.rb:
906
+ Cleaned up a shadowed variable and a misnamed method in the Filters
907
+ plugin.
908
+ [aa521eaff4a9]
909
+
910
+ * lib/strelka/app/defaultrouter.rb:
911
+ Fix shadowed variable.
912
+ [137c08cf89b3]
913
+
914
+ * Rakefile:
915
+ Fixed uuidtools dependency version.
916
+ [fd311b1440af]
917
+
918
+ * lib/strelka/app/filters.rb, lib/strelka/app/plugins.rb,
919
+ spec/strelka/app/plugins_spec.rb:
920
+ Reworked app plugin ordering using tsort instead of Comparable, as
921
+ Comparable doesn't work for derived ordering dependency.
922
+ [e5be26e7c88b]
923
+
924
+ 2011-10-17 Michael Granger <ged@FaerieMUD.org>
925
+
926
+ * lib/strelka/app/negotiation.rb, lib/strelka/app/plugins.rb,
927
+ lib/strelka/app/templating.rb,
928
+ lib/strelka/httpresponse/negotiation.rb,
929
+ spec/strelka/httpresponse/negotiation_spec.rb:
930
+ Fixed language-negotiation for the no accept-language header case.
931
+ [a6aedf224d11]
932
+
933
+ * lib/strelka/httpresponse.rb,
934
+ lib/strelka/httpresponse/negotiation.rb,
935
+ spec/strelka/httpresponse/negotiation_spec.rb:
936
+ More negotiation fixes:
937
+ - Reset negotiation methods and data on HTTPReponse#reset
938
+ - Move negotiation calls into a dedicated method so it isn't (just) a
939
+ side-effect of fetching the body.
940
+ - Support charset negotiation for 'application/*' content-types, too
941
+ (application/json, application/x-yaml)
942
+ [8eb21fa8b68c]
943
+
944
+ * lib/strelka/app/negotiation.rb,
945
+ lib/strelka/httprequest/negotiation.rb:
946
+ Include missing constants, adding debugging to the negotiation
947
+ header-parsing method
948
+ [02892445edd4]
949
+
950
+ * data/strelka/apps/strelka-admin:
951
+ Add beginnings of negotiated service API to the admin app
952
+ [7180e24ee13b]
953
+
954
+ * Rakefile:
955
+ Add uuidtools dependency
956
+ [ce74c6a4bdf3]
957
+
958
+ * lib/strelka/httprequest/negotiation.rb,
959
+ lib/strelka/httpresponse/negotiation.rb,
960
+ spec/strelka/httprequest/negotiation_spec.rb,
961
+ spec/strelka/httpresponse/negotiation_spec.rb:
962
+ Refactor negotiation to use "better" transform logic
963
+ [8dfc33509ab1]
964
+
965
+ * lib/strelka/app/negotiation.rb,
966
+ lib/strelka/httprequest/negotiation.rb,
967
+ lib/strelka/httpresponse/negotiation.rb,
968
+ spec/strelka/httpresponse/negotiation_spec.rb:
969
+ More work on content-negotiation: language finished, encoding close
970
+ to being finished.
971
+ [36bd2e365b1c]
972
+
973
+ 2011-10-14 Michael Granger <ged@FaerieMUD.org>
974
+
975
+ * data/strelka/apps/strelka-admin, lib/strelka.rb, lib/strelka/app.rb,
976
+ lib/strelka/app/negotiation.rb, lib/strelka/app/paramvalidator.rb,
977
+ lib/strelka/app/plugins.rb, lib/strelka/app/routing.rb,
978
+ lib/strelka/exceptions.rb, lib/strelka/httprequest/acceptparams.rb,
979
+ lib/strelka/httprequest/negotiation.rb, lib/strelka/httpresponse.rb,
980
+ lib/strelka/httpresponse/negotiation.rb,
981
+ spec/strelka/app/paramvalidator_spec.rb,
982
+ spec/strelka/app/routing_spec.rb, spec/strelka/app_spec.rb,
983
+ spec/strelka/exceptions_spec.rb,
984
+ spec/strelka/httprequest/acceptparams_spec.rb,
985
+ spec/strelka/httprequest/negotiation_spec.rb,
986
+ spec/strelka/httpresponse/negotiation_spec.rb:
987
+ Added content-negotiation callbacks to HTTPReponse::Negotiation
988
+ [38d97263b1cb]
989
+
990
+ 2011-10-12 Michael Granger <ged@FaerieMUD.org>
991
+
992
+ * Rakefile, lib/strelka/httpresponse.rb,
993
+ lib/strelka/httpresponse/negotiation.rb,
994
+ spec/strelka/httpresponse/negotiation_spec.rb:
995
+ Fixed specs and implementation of HTTPResponse transparent
996
+ negotiation predicates.
997
+ [bf66bc52adad]
998
+
999
+ * Rakefile, lib/strelka/app/negotiation.rb, lib/strelka/exceptions.rb,
1000
+ lib/strelka/httprequest/negotiation.rb, lib/strelka/httpresponse.rb,
1001
+ lib/strelka/httpresponse/negotiation.rb,
1002
+ spec/strelka/httprequest/negotiation_spec.rb,
1003
+ spec/strelka/httpresponse/negotiation_spec.rb,
1004
+ spec/strelka/httpresponse_spec.rb:
1005
+ More HTTP content negotiation work.
1006
+ - Finished up content-type acceptability predicates in
1007
+ HTTPResponse::Negotiation
1008
+ - Added content-type charset setting to HTTPResponse
1009
+ - Added encoding and language header setting to HTTPResponse
1010
+ [f7af2a3b5bbd]
1011
+
1012
+ 2011-10-11 Michael Granger <ged@FaerieMUD.org>
1013
+
1014
+ * lib/strelka/httprequest/negotiation.rb,
1015
+ spec/strelka/httpresponse/negotiation_spec.rb:
1016
+ Refactored the implementation of the negotiation-header-parsing code
1017
+ from HTTPRequest::Negotiation into a new method,
1018
+ #parse_negotiation_header.
1019
+ [8f21e99dd049]
1020
+
1021
+ * Rakefile, lib/strelka/app/negotiation.rb, lib/strelka/exceptions.rb,
1022
+ lib/strelka/httprequest.rb, lib/strelka/httprequest/acceptparams.rb,
1023
+ lib/strelka/httprequest/negotiation.rb, lib/strelka/httpresponse.rb,
1024
+ lib/strelka/httpresponse/negotiation.rb, spec/lib/constants.rb,
1025
+ spec/strelka/app/negotiation_spec.rb,
1026
+ spec/strelka/httprequest/acceptparams_spec.rb,
1027
+ spec/strelka/httprequest/negotiation_spec.rb,
1028
+ spec/strelka/httpresponse/negotiation_spec.rb:
1029
+ Started work on transparent HTTP content negotiation plugin.
1030
+ [e8ee412b3a67]
1031
+
1032
+ * lib/strelka/mixins.rb, spec/strelka/mixins_spec.rb:
1033
+ Adding a Strelka::AbstractClass mixin.
1034
+ [9c28f84e6441]
1035
+
1036
+ 2011-10-09 Michael Granger <ged@FaerieMUD.org>
1037
+
1038
+ * lib/strelka/app/parameters.rb, spec/strelka/app/routing_spec.rb:
1039
+ Fixed beginning-of-line binding pattern (\A instead of \a).
1040
+ [f7dfe0aeabe7]
1041
+
1042
+ * bin/leash, data/strelka/apps/strelka-admin, data/strelka/bootstrap-
1043
+ config.rb, data/strelka/static/css/master.css,
1044
+ data/strelka/static/images/icons/blank.png,
1045
+ data/strelka/static/images/icons/cross-button.png,
1046
+ data/strelka/static/images/icons/tick-button.png,
1047
+ data/strelka/static/images/icons/tick-circle-frame.png,
1048
+ data/strelka/static/images/icons/tick-circle.png,
1049
+ data/strelka/static/images/icons/tick-octagon-frame.png,
1050
+ data/strelka/static/images/icons/tick-octagon.png,
1051
+ data/strelka/static/images/icons/tick-red.png,
1052
+ data/strelka/static/images/icons/tick-shield.png,
1053
+ data/strelka/static/images/icons/tick-small-circle.png,
1054
+ data/strelka/static/images/icons/tick-small-red.png,
1055
+ data/strelka/static/images/icons/tick-small-white.png,
1056
+ data/strelka/static/images/icons/tick-small.png,
1057
+ data/strelka/static/images/icons/tick-white.png,
1058
+ data/strelka/static/images/icons/tick.png,
1059
+ data/strelka/static/js/jquery.tmpl.min.js,
1060
+ data/strelka/static/js/jquery.tmplPlus.min.js,
1061
+ data/strelka/static/js/strelka.js,
1062
+ data/strelka/templates/admin/console.tmpl,
1063
+ data/strelka/templates/layout.tmpl:
1064
+ Started work on the UI scripting
1065
+ [d5644cdffd4e]
1066
+
1067
+ 2011-10-07 Michael Granger <ged@FaerieMUD.org>
1068
+
1069
+ * bin/leash:
1070
+ Split the "setup" and "start" commands
1071
+ [a4aadbbd97e4]
1072
+
1073
+ 2011-10-06 Michael Granger <ged@FaerieMUD.org>
1074
+
1075
+ * .hgignore, bin/leash, data/strelka/admin.conf, data/strelka/apps
1076
+ /strelka-admin, data/strelka/bootstrap-config.rb,
1077
+ data/strelka/static/css/master.css,
1078
+ data/strelka/static/images/21d1-16.png,
1079
+ data/strelka/static/images/21d1.png,
1080
+ data/strelka/static/images/noise.jpg,
1081
+ data/strelka/static/images/noise.png,
1082
+ data/strelka/static/js/jquery-1.6.4.min.js,
1083
+ data/strelka/static/js/jquery.jeditable.mini.js,
1084
+ data/strelka/static/js/strelka.js,
1085
+ data/strelka/templates/admin/console.tmpl,
1086
+ data/strelka/templates/admin/host.tmpl,
1087
+ data/strelka/templates/admin/server.tmpl,
1088
+ data/strelka/templates/layout.tmpl, lib/strelka/app.rb,
1089
+ lib/strelka/app/parameters.rb, lib/strelka/app/paramvalidator.rb,
1090
+ lib/strelka/app/routing.rb, lib/strelka/constants.rb,
1091
+ spec/strelka/app/parameters_spec.rb,
1092
+ spec/strelka/app/paramvalidator_spec.rb:
1093
+ More work on the admin-console app
1094
+ [4f4f48ec1868]
1095
+
1096
+ 2011-10-05 Michael Granger <ged@FaerieMUD.org>
1097
+
1098
+ * lib/strelka/app/defaultrouter.rb, lib/strelka/app/parameters.rb,
1099
+ lib/strelka/app/paramvalidator.rb, lib/strelka/app/routing.rb,
1100
+ lib/strelka/httprequest.rb, spec/strelka/app/defaultrouter_spec.rb,
1101
+ spec/strelka/app/routing_spec.rb, spec/strelka/httprequest_spec.rb:
1102
+ Finishing work on parameterized routes (routing + parameters)
1103
+ [8331d1bb1936]
1104
+
1105
+ * Merged with http://repo.deveiate.org/Strelka
1106
+ [1fa10c5765a7]
1107
+
1108
+ 2011-10-04 Michael Granger <ged@FaerieMUD.org>
1109
+
1110
+ * lib/strelka/app/paramvalidator.rb,
1111
+ spec/strelka/app/paramvalidator_spec.rb:
1112
+ Adding ParamValidator#merge and #merge!
1113
+ [2544e75e4a88]
1114
+
1115
+ * Rakefile:
1116
+ Bumped Mongrel2 dependency.
1117
+ [a5415c517121]
1118
+
1119
+ 2011-10-03 Michael Granger <ged@FaerieMUD.org>
1120
+
1121
+ * spec/strelka/app/templating_spec.rb:
1122
+ Fix object thrash in the templating specs
1123
+ [9631cde1680d]
1124
+
1125
+ * lib/strelka/app/parameters.rb, lib/strelka/app/paramvalidator.rb,
1126
+ lib/strelka/httprequest.rb, spec/strelka/app/parameters_spec.rb,
1127
+ spec/strelka/app/paramvalidator_spec.rb:
1128
+ Parameter fixes
1129
+ [66b9e356f7e4]
1130
+
1131
+ 2011-09-30 Michael Granger <ged@FaerieMUD.org>
1132
+
1133
+ * Rakefile:
1134
+ Adding missing dependency on FormValidator.
1135
+ [897328bcbfe4]
1136
+
1137
+ * .DS_Store, .hgignore, Rakefile, bin/leash, data/.DS_Store,
1138
+ data/strelka/.DS_Store, data/strelka/apps/strelka-admin,
1139
+ data/strelka/static/.DS_Store,
1140
+ data/strelka/templates/admin/console.tmpl,
1141
+ data/strelka/templates/admin/message.tmpl,
1142
+ lib/strelka/app/parameters.rb, lib/strelka/app/paramvalidator.rb,
1143
+ lib/strelka/app/routing.rb, lib/strelka/constants.rb,
1144
+ lib/strelka/httprequest.rb, spec/strelka/app/paramvalidator_spec.rb,
1145
+ spec/strelka/app_spec.rb, spec/strelka/httprequest_spec.rb:
1146
+ Finishing up the parameters plugin
1147
+ * * * Removing/ignoring .DS_Store files
1148
+ * * * more params work
1149
+ [ddd0c0cd9506]
1150
+
1151
+ * lib/strelka/exceptions.rb:
1152
+ Adding an exceptions module, add Strelka::Error class
1153
+ [b742c901a9c1]
1154
+
1155
+ * README.rdoc, data/strelka/apps/hello-world, data/strelka/apps
1156
+ /strelka-admin, lib/strelka/app.rb, spec/strelka/app_spec.rb:
1157
+ Change Strelka::App.default_content_type to .default_type
1158
+ [2965f557257e]
1159
+
1160
+ * README.rdoc, data/strelka/apps/hello-world:
1161
+ Adding the first example to the README
1162
+ [664ea9d098c0]
1163
+
1164
+ * data/strelka/bootstrap-config.rb, lib/strelka/app.rb,
1165
+ lib/strelka/logging.rb, spec/strelka/app_spec.rb:
1166
+ Make startup a little more default-ey
1167
+ [68dd0e3d5398]
1168
+
1169
+ 2011-09-29 Michael Granger <ged@FaerieMUD.org>
1170
+
1171
+ * AdminAppUI.graffle:
1172
+ Adding diagrams for the admin app UI
1173
+ [b12d9dc451ab]
1174
+
1175
+ * IDEAS.rdoc, README.rdoc, Rakefile:
1176
+ Removed redundant section from the IDEAS doc.
1177
+ [a52fd4c58a8f]
1178
+
1179
+ * IDEAS.rdoc, IDEAS.textile:
1180
+ Converted IDEAS doc to RDoc format, updated.
1181
+ [07af273f67cd]
1182
+
1183
+ 2011-09-27 Michael Granger <ged@FaerieMUD.org>
1184
+
1185
+ * Rakefile, lib/strelka/process.rb:
1186
+ Merged with 85ce309f672c
1187
+ [4fd0d091bd98]
1188
+
1189
+ 2011-09-23 Michael Granger <ged@FaerieMUD.org>
1190
+
1191
+ * Rakefile:
1192
+ Fixed dependency
1193
+ [85ce309f672c]
1194
+
1195
+ 2011-09-27 Michael Granger <ged@FaerieMUD.org>
1196
+
1197
+ * README.rdoc, Rakefile:
1198
+ Started fleshing out the README in preparation for release.
1199
+ [46e2340d47f2]
1200
+
1201
+ * data/strelka/apps/strelka-setup:
1202
+ Add a note to the strelka-setup app explaining that it's not
1203
+ functional.
1204
+ [4373981037b5]
1205
+
1206
+ * Manifest.txt, data/strelka/apps/strelka-setup,
1207
+ lib/strelka/process.rb:
1208
+ Remove the (as-yet) unimplemented 'process' style app code.
1209
+ [416ebaa5c4cb]
1210
+
1211
+ * bin/leash, data/strelka/bootstrap-config.rb,
1212
+ lib/strelka/constants.rb:
1213
+ Added a bit more bootstrapping to 'leash setup' so it'll start from
1214
+ a gem install.
1215
+ [2f04f648f0b0]
1216
+
1217
+ * .gemtest:
1218
+ Add gemtesters marker file
1219
+ [3294d2b7a652]
1220
+
1221
+ * Rakefile:
1222
+ Add testing artifacts to CLOBBER, update deps
1223
+ [414df1602680]
1224
+
1225
+ * Manifest.txt:
1226
+ Add static content to the Manifest
1227
+ [b6364d316aa6]
1228
+
1229
+ * .DS_Store, bin/leash, data/.DS_Store, data/strelka/.DS_Store,
1230
+ data/strelka/apps/strelka-admin, data/strelka/static/.DS_Store,
1231
+ data/strelka/static/css/master.css,
1232
+ data/strelka/static/css/reset.css, data/strelka/static/fonts
1233
+ /IstokWeb-Bold.ttf, data/strelka/static/fonts/IstokWeb-
1234
+ BoldItalic.ttf, data/strelka/static/fonts/IstokWeb-Italic.ttf,
1235
+ data/strelka/static/fonts/IstokWeb-Regular.ttf,
1236
+ data/strelka/static/fonts/OFL.txt,
1237
+ data/strelka/templates/admin/console.tmpl,
1238
+ data/strelka/templates/layout.tmpl, lib/strelka/app.rb:
1239
+ Added a rudimentary admin application console view.
1240
+ [7856ba635d54]
1241
+
1242
+ 2011-09-23 Michael Granger <ged@FaerieMUD.org>
1243
+
1244
+ * .autotest, .hgignore, Manifest.txt, Rakefile:
1245
+ Update deps, build system.
1246
+ [cddb7bfa942c]
1247
+
1248
+ * .hgignore, Rakefile, bin/leash, data/strelka/apps/strelka-admin,
1249
+ data/strelka/apps/strelka-setup, data/strelka/bootstrap-config.rb,
1250
+ data/strelka/templates/admin/console.tmpl,
1251
+ lib/strelka/app/defaultrouter.rb, lib/strelka/app/routing.rb,
1252
+ lib/strelka/app/templating.rb:
1253
+ Added the "setup" command to leash
1254
+ [edc407dc31aa]
1255
+
1256
+ * .hgignore, .irbrc, .rvmrc, IDEAS.rdoc, IDEAS.textile, README.rdoc,
1257
+ Rakefile, data/strelka/apps/strelka-admin, data/strelka/apps
1258
+ /strelka-setup, data/strelka/bootstrap-config.rb,
1259
+ data/strelka/templates/admin/console.tmpl,
1260
+ data/strelka/templates/layout.tmpl, lib/strelka.rb,
1261
+ lib/strelka/app.rb, lib/strelka/app/defaultrouter.rb,
1262
+ lib/strelka/app/filters.rb, lib/strelka/app/parameters.rb,
1263
+ lib/strelka/app/plugins.rb, lib/strelka/app/routing.rb,
1264
+ lib/strelka/app/templating.rb, lib/strelka/behavior/plugin.rb,
1265
+ lib/strelka/constants.rb, lib/strelka/httprequest.rb,
1266
+ lib/strelka/process.rb, spec/data/layout.tmpl, spec/data/main.tmpl,
1267
+ spec/lib/constants.rb, spec/lib/helpers.rb,
1268
+ spec/strelka/app/defaultrouter_spec.rb,
1269
+ spec/strelka/app/parameters_spec.rb,
1270
+ spec/strelka/app/plugins_spec.rb, spec/strelka/app/routing_spec.rb,
1271
+ spec/strelka/app/templating_spec.rb, spec/strelka/app_spec.rb,
1272
+ spec/strelka/httprequest_spec.rb:
1273
+ Initial handler, request, and response classes.
1274
+ [1e34f33f76af]
1275
+
1276
+ 2011-09-01 Michael Granger <ged@FaerieMUD.org>
1277
+
1278
+ * .rvmrc, spec/lib/helpers.rb, spec/strelka/logging_spec.rb,
1279
+ spec/strelka_spec.rb:
1280
+ Adding initial specs.
1281
+ [e642e876d152]
1282
+
1283
+ 2011-08-31 Michael Granger <ged@FaerieMUD.org>
1284
+
1285
+ * IDEAS.rdoc, README.rdoc:
1286
+ Documentation update.
1287
+ [dc2a59037c67]
1288
+
1289
+ * .autotest, History.rdoc, IDEAS.rdoc, Manifest.txt, README.rdoc,
1290
+ Rakefile, bin/leash, lib/strelka.rb, lib/strelka/constants.rb,
1291
+ lib/strelka/logging.rb, lib/strelka/mixins.rb,
1292
+ spec/lib/constants.rb, spec/lib/helpers.rb, spec/strelka_spec.rb:
1293
+ Initial project skeleton
1294
+ [9cae59fec4a2]