arrow 1.0.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (198) hide show
  1. data/ChangeLog +1590 -0
  2. data/LICENSE +28 -0
  3. data/README +75 -0
  4. data/Rakefile +366 -0
  5. data/Rakefile.local +63 -0
  6. data/data/arrow/applets/TEMPLATE.rb.tpl +53 -0
  7. data/data/arrow/applets/args.rb +50 -0
  8. data/data/arrow/applets/config.rb +55 -0
  9. data/data/arrow/applets/error.rb +63 -0
  10. data/data/arrow/applets/files.rb +46 -0
  11. data/data/arrow/applets/inspect.rb +46 -0
  12. data/data/arrow/applets/nosuchapplet.rb +31 -0
  13. data/data/arrow/applets/status.rb +92 -0
  14. data/data/arrow/applets/test.rb +133 -0
  15. data/data/arrow/applets/tutorial/counter.rb +96 -0
  16. data/data/arrow/applets/tutorial/dingus.rb +67 -0
  17. data/data/arrow/applets/tutorial/hello.rb +34 -0
  18. data/data/arrow/applets/tutorial/hello2.rb +73 -0
  19. data/data/arrow/applets/tutorial/imgtext.rb +90 -0
  20. data/data/arrow/applets/tutorial/imgtext2.rb +286 -0
  21. data/data/arrow/applets/tutorial/index.rb +36 -0
  22. data/data/arrow/applets/tutorial/logo.rb +98 -0
  23. data/data/arrow/applets/tutorial/memcache.rb +61 -0
  24. data/data/arrow/applets/tutorial/missing.rb +37 -0
  25. data/data/arrow/applets/tutorial/protected.rb +100 -0
  26. data/data/arrow/applets/tutorial/redirector.rb +52 -0
  27. data/data/arrow/applets/tutorial/rndimages.rb +159 -0
  28. data/data/arrow/applets/tutorial/sharenotes.rb +83 -0
  29. data/data/arrow/applets/tutorial/subclassed-hello.rb +32 -0
  30. data/data/arrow/applets/tutorial/superhello.rb +72 -0
  31. data/data/arrow/applets/tutorial/timeclock.rb +78 -0
  32. data/data/arrow/applets/view-applet.rb +123 -0
  33. data/data/arrow/applets/view-template.rb +85 -0
  34. data/data/arrow/applets/wiki.rb +274 -0
  35. data/data/arrow/templates/TEMPLATE.tmpl.tpl +36 -0
  36. data/data/arrow/templates/applet-status.tmpl +153 -0
  37. data/data/arrow/templates/args-display.tmpl +120 -0
  38. data/data/arrow/templates/config/display-table.tmpl +36 -0
  39. data/data/arrow/templates/config/display.tmpl +36 -0
  40. data/data/arrow/templates/counter-deleted.tmpl +33 -0
  41. data/data/arrow/templates/counter.tmpl +59 -0
  42. data/data/arrow/templates/dingus.tmpl +55 -0
  43. data/data/arrow/templates/enumtable.tmpl +8 -0
  44. data/data/arrow/templates/error-display.tmpl +92 -0
  45. data/data/arrow/templates/filemap.tmpl +89 -0
  46. data/data/arrow/templates/hello-world-src.tmpl +34 -0
  47. data/data/arrow/templates/hello-world.tmpl +60 -0
  48. data/data/arrow/templates/imgtext/fontlist.tmpl +46 -0
  49. data/data/arrow/templates/imgtext/form.tmpl +70 -0
  50. data/data/arrow/templates/imgtext/reload-error.tmpl +40 -0
  51. data/data/arrow/templates/imgtext/reload.tmpl +55 -0
  52. data/data/arrow/templates/inspect/display.tmpl +80 -0
  53. data/data/arrow/templates/loginform.tmpl +64 -0
  54. data/data/arrow/templates/logout.tmpl +32 -0
  55. data/data/arrow/templates/memcache/display.tmpl +41 -0
  56. data/data/arrow/templates/navbar.incl +27 -0
  57. data/data/arrow/templates/nosuchapplet.tmpl +32 -0
  58. data/data/arrow/templates/printsource.tmpl +35 -0
  59. data/data/arrow/templates/protected.tmpl +36 -0
  60. data/data/arrow/templates/rndimages.tmpl +38 -0
  61. data/data/arrow/templates/service-response.tmpl +13 -0
  62. data/data/arrow/templates/sharenotes/display.tmpl +38 -0
  63. data/data/arrow/templates/status.tmpl +120 -0
  64. data/data/arrow/templates/templateviewer.tmpl +43 -0
  65. data/data/arrow/templates/test/harness.tmpl +57 -0
  66. data/data/arrow/templates/test/list.tmpl +48 -0
  67. data/data/arrow/templates/test/problem.tmpl +42 -0
  68. data/data/arrow/templates/tutorial/index.tmpl +37 -0
  69. data/data/arrow/templates/tutorial/missingapplet.tmpl +29 -0
  70. data/data/arrow/templates/view-applet-nosuch.tmpl +32 -0
  71. data/data/arrow/templates/view-applet.tmpl +40 -0
  72. data/data/arrow/templates/view-template.tmpl +83 -0
  73. data/data/arrow/templates/wiki/formerror.tmpl +47 -0
  74. data/data/arrow/templates/wiki/markup_help.incl +6 -0
  75. data/data/arrow/templates/wiki/new.tmpl +56 -0
  76. data/data/arrow/templates/wiki/new_system.tmpl +122 -0
  77. data/data/arrow/templates/wiki/sectionlist.tmpl +43 -0
  78. data/data/arrow/templates/wiki/show.tmpl +34 -0
  79. data/docs/manual/layouts/default.page +43 -0
  80. data/docs/manual/lib/api-filter.rb +81 -0
  81. data/docs/manual/lib/editorial-filter.rb +64 -0
  82. data/docs/manual/lib/examples-filter.rb +244 -0
  83. data/docs/manual/lib/links-filter.rb +117 -0
  84. data/lib/apache/fakerequest.rb +448 -0
  85. data/lib/apache/logger.rb +33 -0
  86. data/lib/arrow.rb +51 -0
  87. data/lib/arrow/acceptparam.rb +207 -0
  88. data/lib/arrow/applet.rb +725 -0
  89. data/lib/arrow/appletmixins.rb +218 -0
  90. data/lib/arrow/appletregistry.rb +590 -0
  91. data/lib/arrow/applettestcase.rb +503 -0
  92. data/lib/arrow/broker.rb +255 -0
  93. data/lib/arrow/cache.rb +176 -0
  94. data/lib/arrow/config-loaders/yaml.rb +75 -0
  95. data/lib/arrow/config.rb +615 -0
  96. data/lib/arrow/constants.rb +24 -0
  97. data/lib/arrow/cookie.rb +359 -0
  98. data/lib/arrow/cookieset.rb +108 -0
  99. data/lib/arrow/dispatcher.rb +368 -0
  100. data/lib/arrow/dispatcherloader.rb +50 -0
  101. data/lib/arrow/exceptions.rb +61 -0
  102. data/lib/arrow/fallbackhandler.rb +48 -0
  103. data/lib/arrow/formvalidator.rb +631 -0
  104. data/lib/arrow/htmltokenizer.rb +343 -0
  105. data/lib/arrow/logger.rb +488 -0
  106. data/lib/arrow/logger/apacheoutputter.rb +69 -0
  107. data/lib/arrow/logger/arrayoutputter.rb +63 -0
  108. data/lib/arrow/logger/coloroutputter.rb +111 -0
  109. data/lib/arrow/logger/fileoutputter.rb +96 -0
  110. data/lib/arrow/logger/htmloutputter.rb +54 -0
  111. data/lib/arrow/logger/outputter.rb +123 -0
  112. data/lib/arrow/mixins.rb +425 -0
  113. data/lib/arrow/monkeypatches.rb +94 -0
  114. data/lib/arrow/object.rb +117 -0
  115. data/lib/arrow/path.rb +196 -0
  116. data/lib/arrow/service.rb +447 -0
  117. data/lib/arrow/session.rb +289 -0
  118. data/lib/arrow/session/dbstore.rb +100 -0
  119. data/lib/arrow/session/filelock.rb +160 -0
  120. data/lib/arrow/session/filestore.rb +132 -0
  121. data/lib/arrow/session/id.rb +98 -0
  122. data/lib/arrow/session/lock.rb +253 -0
  123. data/lib/arrow/session/md5id.rb +42 -0
  124. data/lib/arrow/session/nulllock.rb +42 -0
  125. data/lib/arrow/session/posixlock.rb +166 -0
  126. data/lib/arrow/session/sha1id.rb +54 -0
  127. data/lib/arrow/session/store.rb +366 -0
  128. data/lib/arrow/session/usertrackid.rb +52 -0
  129. data/lib/arrow/spechelpers.rb +73 -0
  130. data/lib/arrow/template.rb +713 -0
  131. data/lib/arrow/template/attr.rb +31 -0
  132. data/lib/arrow/template/call.rb +31 -0
  133. data/lib/arrow/template/comment.rb +33 -0
  134. data/lib/arrow/template/container.rb +118 -0
  135. data/lib/arrow/template/else.rb +41 -0
  136. data/lib/arrow/template/elsif.rb +44 -0
  137. data/lib/arrow/template/escape.rb +53 -0
  138. data/lib/arrow/template/export.rb +87 -0
  139. data/lib/arrow/template/for.rb +145 -0
  140. data/lib/arrow/template/if.rb +78 -0
  141. data/lib/arrow/template/import.rb +119 -0
  142. data/lib/arrow/template/include.rb +206 -0
  143. data/lib/arrow/template/iterator.rb +208 -0
  144. data/lib/arrow/template/nodes.rb +734 -0
  145. data/lib/arrow/template/parser.rb +571 -0
  146. data/lib/arrow/template/prettyprint.rb +53 -0
  147. data/lib/arrow/template/render.rb +191 -0
  148. data/lib/arrow/template/selectlist.rb +94 -0
  149. data/lib/arrow/template/set.rb +87 -0
  150. data/lib/arrow/template/timedelta.rb +81 -0
  151. data/lib/arrow/template/unless.rb +78 -0
  152. data/lib/arrow/template/urlencode.rb +51 -0
  153. data/lib/arrow/template/yield.rb +139 -0
  154. data/lib/arrow/templatefactory.rb +125 -0
  155. data/lib/arrow/testcase.rb +567 -0
  156. data/lib/arrow/transaction.rb +608 -0
  157. data/rake/191_compat.rb +26 -0
  158. data/rake/dependencies.rb +76 -0
  159. data/rake/documentation.rb +114 -0
  160. data/rake/helpers.rb +502 -0
  161. data/rake/hg.rb +282 -0
  162. data/rake/manual.rb +787 -0
  163. data/rake/packaging.rb +129 -0
  164. data/rake/publishing.rb +278 -0
  165. data/rake/style.rb +62 -0
  166. data/rake/svn.rb +668 -0
  167. data/rake/testing.rb +187 -0
  168. data/rake/verifytask.rb +64 -0
  169. data/spec/arrow/acceptparam_spec.rb +157 -0
  170. data/spec/arrow/applet_spec.rb +575 -0
  171. data/spec/arrow/appletmixins_spec.rb +409 -0
  172. data/spec/arrow/appletregistry_spec.rb +294 -0
  173. data/spec/arrow/broker_spec.rb +153 -0
  174. data/spec/arrow/config_spec.rb +224 -0
  175. data/spec/arrow/cookieset_spec.rb +164 -0
  176. data/spec/arrow/dispatcher_spec.rb +137 -0
  177. data/spec/arrow/dispatcherloader_spec.rb +65 -0
  178. data/spec/arrow/formvalidator_spec.rb +781 -0
  179. data/spec/arrow/logger_spec.rb +346 -0
  180. data/spec/arrow/mixins_spec.rb +120 -0
  181. data/spec/arrow/service_spec.rb +645 -0
  182. data/spec/arrow/session_spec.rb +121 -0
  183. data/spec/arrow/template/iterator_spec.rb +222 -0
  184. data/spec/arrow/templatefactory_spec.rb +185 -0
  185. data/spec/arrow/transaction_spec.rb +319 -0
  186. data/spec/arrow_spec.rb +37 -0
  187. data/spec/lib/appletmatchers.rb +281 -0
  188. data/spec/lib/constants.rb +77 -0
  189. data/spec/lib/helpers.rb +41 -0
  190. data/spec/lib/matchers.rb +44 -0
  191. data/tests/cookie.tests.rb +310 -0
  192. data/tests/path.tests.rb +157 -0
  193. data/tests/session.tests.rb +111 -0
  194. data/tests/session_id.tests.rb +82 -0
  195. data/tests/session_lock.tests.rb +191 -0
  196. data/tests/session_store.tests.rb +53 -0
  197. data/tests/template.tests.rb +1360 -0
  198. metadata +339 -0
@@ -0,0 +1,1590 @@
1
+ 529[tip] ca345acdab30 2010-01-15 09:04 -0800 ged
2
+ Various Manual fixes.
3
+
4
+ 528 2b0574b71274 2010-01-15 08:36 -0800 ged
5
+ Changing the backticked rev to an expanded keyword
6
+
7
+ 527 47e5e6da5462 2010-01-15 08:32 -0800 ged
8
+ Checkpointing manual work for Mahlon
9
+
10
+ 526 0d0c73c32b40 2010-01-15 08:32 -0800 ged
11
+ Don't try to dup immediate objects
12
+
13
+ 525 b38b110ce832 2010-01-15 08:08 -0800 ged
14
+ Moving data into an "arrow" subdirectory so Rubygems can find them
15
+
16
+ 524 e6dfb1835a25 2010-01-15 08:06 -0800 ged
17
+ Fix the local Rakefile
18
+
19
+ 523 bb155ebaf15e 2010-01-15 08:06 -0800 ged
20
+ Updated build system
21
+
22
+ 522:520 2ddbc307e613 2009-11-30 09:25 -0800 ged
23
+ Updated build system, documentation, bumped version to 1.0.6, fixed hash-order test screwups.
24
+
25
+ 521:508 26b84a79860d 2009-11-04 15:54 -0800 ged
26
+ Updating build files
27
+
28
+ 520 da4020271597 2009-09-10 18:15 -0700 ged
29
+ Reload gems when the config changes as well as regular applets.
30
+
31
+ 519 057e90b2e3e7 2009-09-02 18:29 -0700 ged
32
+ Expose Arrow::Broker#run_applet, #run_missing_applet_handler, and
33
+
34
+ 518:510 37f075336bd5 2009-09-01 18:40 -0700 ged
35
+ Whitespace and dependency cleanup
36
+
37
+ 517:466 73078e64c775 2009-07-31 07:14 -0700 ged
38
+ Closing old branches.
39
+
40
+ 516:370 b71c8b22954b 2009-07-31 07:13 -0700 ged
41
+ Closing old branches.
42
+
43
+ 515:363 86af6a55c44e 2009-07-31 07:13 -0700 ged
44
+ Closing old branches.
45
+
46
+ 514:361 fcb005711469 2009-07-31 07:13 -0700 ged
47
+ Closing old branches.
48
+
49
+ 513:326 6ae73a5096b3 2009-07-31 07:12 -0700 ged
50
+ Closing old branches.
51
+
52
+ 512:285 e46442a927d2 2009-07-31 07:12 -0700 ged
53
+ Closing old branches.
54
+
55
+ 511:30 6a47091270ae 2009-07-31 07:12 -0700 ged
56
+ Closing old branches.
57
+
58
+ 510:509,507 0037a6a98b9f 2009-07-31 06:04 -0700 ged
59
+ Merged 507:cdba71a0a6ae
60
+
61
+ 509:506 37a42e54d9f8 2009-07-31 06:00 -0700 ged
62
+ * Updated build system
63
+
64
+ 508 ad98c603dc8f 2009-07-29 08:54 -0700 ged
65
+ Checkpoint of initial conversion of template tests
66
+
67
+ 507 cdba71a0a6ae 2009-07-29 08:53 -0700 ged
68
+ * Ruby 1.9.1 fixes
69
+
70
+ 506:503,505 a085a9128170 2009-07-29 06:25 -0700 ged
71
+ Merging the service-options branch.
72
+
73
+ 505 20b7348fd77c 2009-07-29 06:11 -0700 ged
74
+ Adding ignore file
75
+
76
+ 504:502 0dd6977b9dcf 2009-07-29 06:11 -0700 ged
77
+ Committing some stuff left over in a svn working copy on the new service branch
78
+
79
+ 503:501 8ed0ff775350 2009-07-29 20:55 +0000 convert-repo
80
+ update tags
81
+
82
+ 502:499 5525c06ca659 2009-07-07 23:57 +0000 ged
83
+ * Updated build system.
84
+
85
+ 501 42e68b070402 2009-06-04 15:50 +0000 ged
86
+ * Fixed some logging issues.
87
+
88
+ 500:497 b7892ca61663 2009-06-01 23:50 +0000 ged
89
+ * Updated build system to fix the CC build
90
+
91
+ 499 3967313031d8 2009-06-01 19:20 +0000 ged
92
+ Checkpoint commit
93
+
94
+ 498 9ca36bae4e24 2009-06-01 19:17 +0000 ged
95
+ Branching for work on Arrow::Service OPTIONS implementation
96
+
97
+ 497 de96d392a9dc 2009-06-01 19:13 +0000 ged
98
+ Committing some work on the manual and build system update
99
+
100
+ 496 564e903558d7 2009-04-29 17:03 +0000 ged
101
+ * Brought the example configs up to date with Arrow::Config.
102
+
103
+ 495 fedd163650f9 2009-04-29 15:20 +0000 mahlon
104
+ Add dependency requires to the logger outputter.
105
+
106
+ 494 c98c5bf55353 2009-04-28 23:09 +0000 ged
107
+ * Updated build system; added dev dependencies. Thanks to Mahlon for the heads-up.
108
+
109
+ 493 193f2626ac1f 2009-04-28 14:59 +0000 ged
110
+ * Updated manual filters.
111
+
112
+ 492 d14573774b1f 2009-04-28 14:40 +0000 ged
113
+ * Updated build system.
114
+
115
+ 491[1.0.5] fb7eed25b0ef 2009-03-12 21:19 +0000 ged
116
+ * Made Arrow::Service JSON body deserialization unwrap a hash with a single key-value pair
117
+
118
+ 490[1.0.4] d2c16c6389f6 2009-03-08 23:14 +0000 ged
119
+ * Set up the configuration before the broker loads. This will mean that other configurable
120
+
121
+ 489 f93eff5307c6 2009-03-06 15:36 +0000 ged
122
+ * Added (the implementation of) the Arrow::SpecHelpers module
123
+
124
+ 488[1.0.3] f4d94dc870ea 2009-03-05 23:52 +0000 ged
125
+ Bumping version to 1.0.3.
126
+
127
+ 487 9fcdd4971f59 2009-03-05 20:41 +0000 ged
128
+ * Added multipart/form-data to the request body deserializers
129
+
130
+ 486[1.0.2] f0591a2c2ec4 2009-03-04 19:08 +0000 ged
131
+ * Adding a fix to the templatefactory spec for a load-order problem (I think?)
132
+
133
+ 485 7bea75919276 2009-03-04 18:46 +0000 ged
134
+ * Updated build system.
135
+
136
+ 484 7af92164622c 2009-02-20 04:37 +0000 ged
137
+ * Made the failures in Arrow::AppletAuthentication#login_action and #deny_access_action
138
+
139
+ 483 01cadca26786 2009-02-19 19:18 +0000 ged
140
+ Don't pass arguments from the original action to the :access_denied action.
141
+
142
+ 482 239a6e706ef3 2009-02-19 03:09 +0000 ged
143
+ * Converted some more Arrow::Applet tests to specs.
144
+
145
+ 481 f8d475e9371d 2009-02-18 18:35 +0000 ged
146
+ * Arrow::HTMLUtilities
147
+
148
+ 480 b8261f87ea18 2009-02-18 00:06 +0000 ged
149
+ * Updated keywords props on manual pages
150
+
151
+ 479 883a2436b925 2009-02-14 02:01 +0000 ged
152
+ * More work on the auth mixins
153
+
154
+ 478 b1516843db16 2009-02-13 15:52 +0000 ged
155
+ * Tweaked the Textmate logging helper to distinguish between debug-/info- and notice-level
156
+
157
+ 477 fdf04c6d1833 2009-02-05 02:37 +0000 ged
158
+ Arrow::Service
159
+
160
+ 476 fab7e6bc01dc 2009-02-04 18:10 +0000 ged
161
+ * Arrow::Service
162
+
163
+ 475 2e8ee7d245fb 2009-01-31 01:41 +0000 ged
164
+ * Laika::Service
165
+
166
+ 474 617a3eac1d13 2009-01-30 22:11 +0000 ged
167
+ * Started work on HTTP content negotiation for Arrow::Service
168
+
169
+ 473 e7769db5a28a 2009-01-28 01:11 +0000 ged
170
+ * Added Arrow::Service, an Arrow::Applet derivative for making REST services.
171
+
172
+ 472 84a6141b6370 2009-01-27 02:22 +0000 ged
173
+ * Added support for HTTP content-negotiation checks.
174
+
175
+ 471 de59e0b20eaa 2009-01-27 01:33 +0000 ged
176
+ Imported Arrow::AcceptParam from [http://opensource.laika.com/wiki/ThingFish Thingfish] for upcoming HTTP content-negotiation work.
177
+
178
+ 470 32d88cb64670 2009-01-23 23:04 +0000 ged
179
+ Added weird gem-related directories that keep appearing to the svn:ignore list, as I've grown tired of trying to figure out where the hell they're coming from.
180
+
181
+ 469 a4301e36e66c 2009-01-23 22:55 +0000 ged
182
+ * Converted Arrow::Template::Iterator test to spec
183
+
184
+ 468 da314beb1f39 2009-01-14 23:39 +0000 ged
185
+ * Updated build system
186
+
187
+ 467:456 be163ca57052 2008-12-10 01:01 +0000 ged
188
+ Merged RubyGem integration from [log:branches/gem-applet-experiment@463:482 from the Gem Applet experiment branch].
189
+
190
+ 466 32b2cc9b46eb 2008-12-10 00:55 +0000 ged
191
+ Cleaned up for merge back to trunk.
192
+
193
+ 465 6c8455f2c46f 2008-12-04 21:54 +0000 ged
194
+ Updated build system.
195
+
196
+ 464 7c506ac61da5 2008-12-04 21:44 +0000 ged
197
+ Decrementing version until I get the TemplateFactory stuff figured out for 1.0.0.
198
+
199
+ 463 99dbd96b5cd2 2008-12-04 21:43 +0000 ged
200
+ Adding missing require.
201
+
202
+ 462 8f5f3ea8fccc 2008-12-04 08:10 +0000 ged
203
+ * Removed some old RDoc cruft
204
+
205
+ 461 9ff858b08564 2008-12-03 22:46 +0000 ged
206
+ Recommented debugging calls.
207
+
208
+ 460 dc7b52fb2317 2008-12-03 21:55 +0000 ged
209
+ * Added Arrow::Logger#forced_level to allow loggers to rewrite the level of any messages passed to
210
+
211
+ 459 9558ea85671e 2008-12-03 21:23 +0000 ged
212
+ Rewrote Arrow::Logger to propagate log messages via class hierarchy instead of containment
213
+
214
+ 458 616dddcd8754 2008-12-02 07:35 +0000 ged
215
+ * Fixed some require-order problems
216
+
217
+ 457:454 8cf2736e66ec 2008-11-12 06:01 +0000 ged
218
+ Fixed some load-order issues.
219
+
220
+ 456[0.9.5] 4e6de6b2236a 2008-11-11 16:15 +0000 ged
221
+ Removing old tarball
222
+
223
+ 455:449 1c433c4859d0 2008-11-11 16:15 +0000 ged
224
+ Exchanging formvalidator tarball for the equivalent Rubygem
225
+
226
+ 454 4aacefa5adba 2008-11-04 21:45 +0000 ged
227
+ Trying to clean up dependency-order fragility a bit.
228
+
229
+ 453 ae9c69ede40f 2008-10-15 23:23 +0000 ged
230
+ Documentation tweaks.
231
+
232
+ 452 9f5fac63501d 2008-10-15 17:47 +0000 ged
233
+ First working version.
234
+
235
+ 451 6508ebc0b63c 2008-10-08 00:42 +0000 ged
236
+ Initial work done -- just need to monkeypatch RubyGems to work under $SAFE = 1 now. Grrr...
237
+
238
+ 450:448 3dba3094f2c3 2008-10-03 18:30 +0000 ged
239
+ Merged [changeset:464 build system changes from trunk].
240
+
241
+ 449:447 4b643214aa97 2008-10-03 18:22 +0000 ged
242
+ Updated build system.
243
+
244
+ 448 0433c10c9091 2008-10-03 18:11 +0000 ged
245
+ Branching for experimentation with deploying applets as gems
246
+
247
+ 447 a4e50e67cd35 2008-10-03 17:56 +0000 ged
248
+ * Updated build system
249
+
250
+ 446 e62825cbab90 2008-08-28 00:24 +0000 ged
251
+ * Added some more javascript stuff to the manual resources dir
252
+
253
+ 445 f32aa77a86ac 2008-08-20 01:46 +0000 ged
254
+ Updated build system.
255
+
256
+ 444 afbbd148a654 2008-08-16 02:28 +0000 ged
257
+ * Updated the build system
258
+
259
+ 443 62bfdac8432b 2008-07-25 02:53 +0000 ged
260
+ * Updated intro page of the manual with more detail about templates, and clarified how
261
+
262
+ 442 cc3f296d551a 2008-07-18 16:56 +0000 ged
263
+ Synced build system with the latest tasklibs
264
+
265
+ 441 efa2f869ec76 2008-07-15 20:56 +0000 ged
266
+ Tweaked for presentation
267
+
268
+ 440 6b4b3eba9373 2008-07-12 01:00 +0000 ged
269
+ * Started conversion to unified cross-project rake-based build system
270
+
271
+ 439 81cfba9ab57a 2008-06-24 17:46 +0000 ged
272
+ * Added another component to the untainting of keys in the form validator
273
+
274
+ 438 ef0c4c33927f 2008-06-23 05:47 +0000 ged
275
+ Merged hotfix from the 0.9.3 [log:branches/Arrow-0.9.3@450:451 release branch].
276
+
277
+ 437 ad0662012763 2008-06-22 21:21 +0000 ged
278
+ * Merged publication task from PluginFactory
279
+
280
+ 436 88adc0a25cf6 2008-06-18 23:17 +0000 ged
281
+ * Reorganized Rakefile and merged some fixes from other projects to the
282
+
283
+ 435 7676c37878d5 2008-06-16 22:44 +0000 ged
284
+ Updated dependency list, added better diagnostics of task load failures.
285
+
286
+ 434 5e6501a5195f 2008-05-29 22:20 +0000 ged
287
+ * Merged some manual stuff back from ThingFish
288
+
289
+ 433 8ef0c0032da5 2008-05-03 03:01 +0000 ged
290
+ * Merged some improvements back from ThingFish. Paired with Mahlon.
291
+
292
+ 432 3e13ce089ec2 2008-04-29 13:35 +0000 ged
293
+ * Committing some more work on the manual.
294
+
295
+ 431 c78d8923ae7a 2008-04-18 06:04 +0000 ged
296
+ Fixed the rdoc-generation task I broke by passing fully-qualified paths to RDoc. Grrr...
297
+
298
+ 430 486d53b72a26 2008-04-17 16:46 +0000 ged
299
+ Checkpoint of some docs work last night.
300
+
301
+ 429 8c27c86f035d 2008-04-17 06:52 +0000 ged
302
+ Checkpointing manual work.
303
+
304
+ 428 66cedb9559c7 2008-04-16 14:59 +0000 ged
305
+ * Added the 'install' task to the Rakefile. Thanks to Mahlon and Ben for bugging
306
+
307
+ 427 772f025b42e1 2008-04-10 23:27 +0000 ged
308
+ * Lots of work on the manual, including a new Rake-based generation system.
309
+
310
+ 426 13cca9897379 2008-03-30 03:48 +0000 ged
311
+ Added an attribute to the Manual::Page object for relative paths in generated
312
+
313
+ 425 fedee67fed18 2008-03-28 00:49 +0000 ged
314
+ * Removed the test.rb file now that testing has been converted to Rake tasks
315
+
316
+ 424 e31c81bafa7b 2008-03-20 18:01 +0000 ged
317
+ * removed unnecessary breakpoint dependency
318
+
319
+ 423 e5cc1d882b01 2008-03-03 14:03 +0000 ged
320
+ * Added a subtask to copy resources to the output when generating the manual.
321
+
322
+ 422 98c5ebcccda4 2008-03-02 08:30 +0000 ged
323
+ * Split tasks out of the toplevel Rakefile into tasklibs in rake/.
324
+
325
+ 421 989e4c16d612 2008-03-01 18:30 +0000 ged
326
+ * Added manual-generation system.
327
+
328
+ 420 bf98546282e1 2008-02-20 19:26 +0000 ged
329
+ * Updated the Arrow::Session::ActiveRecordStore to work under ActiveRecord 2.x.
330
+
331
+ 419 1a1c88f7c2cb 2008-02-14 08:10 +0000 ged
332
+ * Merged some of the stuff I like from the ThingFish Rakefile, started trying to
333
+
334
+ 418 401363703aeb 2008-01-18 20:36 +0000 ged
335
+ * Changed docs to use Darkfish instead of the default RDoc template.
336
+
337
+ 417[Arrow-0.9.2] fca1ef2d67c2 2007-08-21 20:56 +0000 ged
338
+ Preparing for 0.9.2 release
339
+
340
+ 416 68e537fdc247 2007-08-21 20:54 +0000 ged
341
+ Clarified some debugging statements in Arrow::Injectable
342
+
343
+ 415 ea947a97eda7 2007-08-20 20:54 +0000 phaedrus
344
+ Changed self::load in config.rb so that it tries to untaint a copy of the source name, instead of the actual one (which is a frozen object in some cases).
345
+
346
+ 414 f819e1bbbda7 2007-08-15 18:50 +0000 ged
347
+ * Fixed the bug that caused an inappropriate exception to be raised when an invalid
348
+
349
+ 413 96abfbac1141 2007-08-15 06:22 +0000 ged
350
+ * Fixed a bug in Proc constraints in Arrow::FormValidator spotted by
351
+
352
+ 412 2c7322b9644a 2007-08-13 21:58 +0000 phaedrus
353
+ Added PUT & DELETE functionality.
354
+
355
+ 411 de091e56b8c4 2007-08-13 19:39 +0000 ged
356
+ Fixed the unexpected behavior of returning a single-item Array for a
357
+
358
+ 410 c3901b685acd 2007-08-09 21:00 +0000 ged
359
+ * Adding new validator constraint types: 'alpha', 'alphanumeric', and
360
+
361
+ 409 fb71ea8e98fa 2007-07-31 18:21 +0000 ged
362
+ * Factor out validator name lookup from #make_validator for easy
363
+
364
+ 408 7af2e9f482bd 2007-07-26 00:49 +0000 ged
365
+ * Fixed method docs. Thanks to Kim again for the critical eye.
366
+
367
+ 407 ee1752212abc 2007-07-25 18:22 +0000 ged
368
+ Merged patch from Kimberly Wallmark <kim (at) arlim (dot) org> that modifies
369
+
370
+ 406 5087fa454866 2007-07-25 17:59 +0000 ged
371
+ Adding build system tasklibs
372
+
373
+ 405 a08b1bc4b713 2007-07-25 17:47 +0000 ged
374
+ * Bugfix: Allow calling #run and #subrun with Symbol actions.
375
+
376
+ 404 5c5a23523085 2007-07-25 01:04 +0000 ged
377
+ Fixed a bug in the formvalidator regexp constraint matcher
378
+
379
+ 403 853c3d92501c 2007-07-24 17:13 +0000 ged
380
+ source:trunk/spec/applet_spec.rb
381
+
382
+ 402 ac2595eeb395 2007-07-19 20:07 +0000 ged
383
+ source:trunk/lib/arrow/dispatcher.rb
384
+
385
+ 401 04393d94c15e 2007-07-19 18:55 +0000 ged
386
+ * Cleaned up constants in Apache::FakeRequest
387
+
388
+ 400 265cda8e5208 2007-07-19 01:58 +0000 bbleything
389
+ * remove require arrow from arrow/config
390
+
391
+ 399 d5b46a986e3a 2007-07-18 18:27 +0000 bbleything
392
+ * remove orphaned require of diff/lcs
393
+
394
+ 398 187963ea6f5b 2007-07-18 18:15 +0000 ged
395
+ source:trunk/lib/arrow/dispatcher.rb
396
+
397
+ 397 ce2b19a5523f 2007-07-18 17:01 +0000 bbleything
398
+ * switch shebangs to /usr/bin/env ruby
399
+
400
+ 396 4dc6780c8a87 2007-07-18 04:08 +0000 ged
401
+ Bumping version and RSpec requirements
402
+
403
+ 395 65c7baea94f5 2007-07-18 04:06 +0000 ged
404
+ * Updated gem task
405
+
406
+ 394 9e89400fdfc9 2007-07-18 03:03 +0000 ged
407
+ source:trunk/.irbrc
408
+
409
+ 393 b360452610b2 2007-07-17 20:30 +0000 ged
410
+ source:trunk/Rakefile
411
+
412
+ 392 573989e635d4 2007-06-26 18:20 +0000 ged
413
+ Again, d'oh.
414
+
415
+ 391 6f9c677f01bf 2007-06-26 18:17 +0000 ged
416
+ Forgot to commit this with the changes to session-handling in the dispatcher
417
+
418
+ 390 604394d63243 2007-06-19 18:22 +0000 ged
419
+ Added template rendering benchmark to the log (thanks to Jeff Davis for the suggestion)
420
+
421
+ 389 059cf85b0a54 2007-03-29 19:01 +0000 ged
422
+ source:trunk/arrow.css
423
+
424
+ 388 049d22bd15a5 2007-03-28 19:24 +0000 bbleything
425
+ * add bin directory for little tools
426
+
427
+ 387 4a5a7824d5e9 2007-03-27 17:47 +0000 bbleything
428
+ * alias Transaction#applet to Transaction#applet_uri
429
+
430
+ 386 91601967b533 2007-03-21 17:02 +0000 ged
431
+ * Added a start_time attribute to Arrow::Broker for uptime statistics
432
+
433
+ 385 76cd123f60f4 2007-03-13 21:11 +0000 phaedrus
434
+ Okay, I finally figured out how to reproduce it (so slow of brain), so now this should actually work well.
435
+
436
+ 384 375293f65e53 2007-03-13 19:19 +0000 phaedrus
437
+ *sigh* I love bugs that only occur on staging
438
+
439
+ 383 2ad5594768c3 2007-03-13 19:14 +0000 phaedrus
440
+ * Okay, this time I am actually trapping the exception. It should work, or my name isnt Joey McScmoey.
441
+
442
+ 382 3c5a6bf07873 2007-03-13 18:54 +0000 phaedrus
443
+ * Added fix for transition between file based sessions and database based ones, basically I did not check for a nil value from the db, which was breaking on a YAML::load.
444
+
445
+ 381 5bde82a9694c 2007-03-08 12:09 +0000 ged
446
+ * Corrected documentation for the #create_recommended_lock method.
447
+
448
+ 380 aa8f36bae20f 2007-03-07 00:31 +0000 phaedrus
449
+ * Added a PluginFactory plugin to store session in an active record object.
450
+
451
+ 379 6c103b6cc5f8 2007-03-02 01:34 +0000 ged
452
+ source:trunk/tests/session.tests.rb
453
+
454
+ 378 4d20e60f9eb9 2007-03-02 01:06 +0000 ged
455
+ source:trunk/lib/arrow/cookieset.rb
456
+
457
+ 377 ac2e5112e6d9 2007-02-28 19:46 +0000 ged
458
+ * Fixed a bug in signature inheritance (thanks to Jeremiah Jordan for
459
+
460
+ 376 56eaa04beb70 2007-02-27 23:01 +0000 ged
461
+ * Fixed another case with Symbol cookie names
462
+
463
+ 375 0ecc2ea81b2d 2007-02-27 19:42 +0000 ged
464
+ source:trunk/spec/cookieset_spec.rb
465
+
466
+ 374 2ec6bfabface 2007-02-27 18:54 +0000 ged
467
+ * Fixed broken dispatcher spec that was committed in the last rev.
468
+
469
+ 373 e8c2d44c9acb 2007-02-27 18:20 +0000 phaedrus
470
+ changed the tests/applet.tests.rb:test_run_should_track_run_times test to use a function that caused system usage, and hence system time. As the former array test was only counted as usertime on my machine
471
+
472
+ 372 63f2858eaadf 2007-02-27 17:58 +0000 ged
473
+ source:trunk/Rakefile
474
+
475
+ 371:367 c6ef3ceacfd5 2007-02-26 19:41 +0000 ged
476
+ source:trunk/lib/arrow/applettestcase.rb
477
+
478
+ 370 c1853fb2e3b4 2007-02-26 19:10 +0000 ged
479
+ * Adding experimental ruby template directive.
480
+
481
+ 369 aec38bcdd216 2007-02-26 19:08 +0000 ged
482
+ * Adding experimental formvalidator diagnostics
483
+
484
+ 368 e5fe8f835529 2007-02-26 19:06 +0000 ged
485
+ * Creating a branch for experimental features.
486
+
487
+ 367 0be10d867a5b 2007-02-14 19:35 +0000 phaedrus
488
+ * lib/arrow/template/urlencode.rb
489
+
490
+ 366 8dbc11861f56 2007-02-06 20:31 +0000 phaedrus
491
+ I added a few method overrides for buggy formvalidator methods: Arrow::FormValidator::filters, FormValidator::ConstraintHelpers
492
+
493
+ 365 bd9e5619de9a 2007-01-08 18:23 +0000 ged
494
+ * New method: Arrow::Transaction#is_ajax_request?
495
+
496
+ 364:362 acb616a43541 2007-01-03 21:11 +0000 ged
497
+ * Make multi-level enclosing templates get exports too, not just the immediate one.
498
+
499
+ 363 5c7d64c8da68 2006-12-19 20:10 +0000 ged
500
+ BRANCH: Branching for work on a dispatcher that will run under Mongrel
501
+
502
+ 362:359 6dbf9f769685 2006-12-19 20:04 +0000 ged
503
+ MERGE: Merged export-directive branch @370 into trunk.
504
+
505
+ 361 17747d63a5be 2006-12-19 19:48 +0000 ged
506
+ MERGE: Merging HEAD changes @369 to branches/export-directive/
507
+
508
+ 360:358 d6950a37af5f 2006-12-19 16:30 +0000 ged
509
+ * Delegate some of Arrow::Cache's inner hash's methods for compatibility with Hash
510
+
511
+ 359:357 d25c93b5c114 2006-12-19 16:28 +0000 ged
512
+ * Finished initial implementation of the 'export' directive.
513
+
514
+ 358:348 0421976ad430 2006-12-19 16:28 +0000 ged
515
+ * Finished initial implementation of the 'export' directive.
516
+
517
+ 357 d5b4343c3919 2006-11-28 07:41 +0000 ged
518
+ * Committing tests mistakenly uncommitted with [365].
519
+
520
+ 356 0d42941f104e 2006-11-28 07:39 +0000 ged
521
+ * Added logging overrides and accessors for stats ivars to Arrow::Cache
522
+
523
+ 355 7db59691bdba 2006-11-28 00:32 +0000 ged
524
+ * Fixed bugs in the new auto-generated field description code.
525
+
526
+ 354 ca7672dd1f2b 2006-11-25 08:40 +0000 ged
527
+ * Forgot to commit the test changes for the previous commit to FormValidator.
528
+
529
+ 353 9704b94bf078 2006-11-25 06:15 +0000 ged
530
+ * Added date and float validators.
531
+
532
+ 352 16f96ac02486 2006-11-25 05:58 +0000 ged
533
+ * Made default descriptions a bit more readable, especially for hash fields.
534
+
535
+ 351 4e93a4615cd5 2006-11-25 04:03 +0000 ged
536
+ * Simplified/corrected the way the trace part of log messages is built in
537
+
538
+ 350 6b806405076d 2006-11-22 00:33 +0000 phaedrus
539
+ we were untainting the wrong thing, path instead of @dirs
540
+
541
+ 349:345 99a65b73f537 2006-11-16 22:33 +0000 ged
542
+ * Non-existant config key methods now return nil instead of raising a NameError.
543
+
544
+ 348 0a9a60e652a6 2006-10-27 17:33 +0000 ged
545
+ * (Re-)fixed broken selectlist test.
546
+
547
+ 347 a5a4de73460b 2006-10-27 17:26 +0000 ged
548
+ Accidentally removed tests in merge from trunk.
549
+
550
+ 346:322 0082609c4cb6 2006-10-27 17:20 +0000 ged
551
+ MERGE: Merging HEAD changes @355 to branches/export-directive/
552
+
553
+ 345 357d58559239 2006-10-17 23:58 +0000 ged
554
+ * Fixed config reloading based on timestamp.
555
+
556
+ 344 a447cf444abe 2006-10-17 23:47 +0000 ged
557
+ * Fixed some path tests that became broken somehow
558
+
559
+ 343 d9064f726fdd 2006-10-17 23:33 +0000 ged
560
+ * Adding dependency "breakpoint" library
561
+
562
+ 342 011a189631b7 2006-10-12 16:33 +0000 ged
563
+ * Bugfix: quotes weren't being escaped.
564
+
565
+ 341 f9203bfed16f 2006-10-05 03:41 +0000 ged
566
+ * Added an Apache::Table analog to the fakerequest utilities.
567
+
568
+ 340 6e15bcb5c24b 2006-09-28 20:44 +0000 ged
569
+ * Updated redist with new version of FlexMock, posixlock
570
+
571
+ 339 242e3f908e4e 2006-09-20 00:11 +0000 ged
572
+ * Oops. Fixed bug in my fix for #subrun.
573
+
574
+ 338 c742f193642c 2006-09-19 17:16 +0000 ged
575
+ * Handle swapped action and transaction in Arrow::Applet#subrun.
576
+
577
+ 337 347a7522718a 2006-09-09 15:48 +0000 ged
578
+ * Removed mistakenly-included #match_email from the canonical FormValidator
579
+
580
+ 336 dae5a755eed0 2006-09-03 07:02 +0000 ged
581
+ * Overrode #construct_url so proxied requests generate correct self-referential URLs.
582
+
583
+ 335 5ca95281fdad 2006-09-03 04:21 +0000 ged
584
+ * Updated copyright date in COPYRIGHT file.
585
+
586
+ 334 69996688cd32 2006-08-24 23:30 +0000 ged
587
+ * Added require for superclass module.
588
+
589
+ 333 10f2544d2f0c 2006-08-24 03:10 +0000 ged
590
+ * Added RFC822-compliant email address validation
591
+
592
+ 332 f7b0b0fc64a5 2006-08-23 22:00 +0000 ged
593
+ * Added 'appicon' member to the applet signature
594
+
595
+ 331 6875bd8f1fdc 2006-08-23 02:09 +0000 ged
596
+ * Made cookie time in GMT instead of localtime.
597
+
598
+ 330 6d6c33eee5fb 2006-08-23 02:03 +0000 ged
599
+ * Fixed cookie date format.
600
+
601
+ 329 a1cd2abd083f 2006-08-23 01:17 +0000 ged
602
+ * Added debugging of headers to both ends of the content handler.
603
+
604
+ 328 f03ed0774b20 2006-08-17 22:51 +0000 ged
605
+ * Added :integer FormValidator constraint
606
+
607
+ 327:325 a05e6271a0ee 2006-08-15 16:44 +0000 ged
608
+ * Fixed bug in transaction setup through #subrun - when #subrun was called via #delegate or some other entry point than #run, the transaction wasn't set up so #vargs and friends were still nil.
609
+
610
+ 326 f154e73d8a1c 2006-08-15 07:37 +0000 ged
611
+ * Branching for work on DBI session types (store and lock).
612
+
613
+ 325 ff3722df209b 2006-08-15 07:28 +0000 ged
614
+ * Fixed selectlist parsing.
615
+
616
+ 324 404411abfcbf 2006-08-15 07:25 +0000 ged
617
+ * Moved 'export' directive into a branch.
618
+
619
+ 323:321 2ca8bddf3c74 2006-08-12 18:00 +0000 ged
620
+ * Fixed use of deprecated StringScanner method.
621
+
622
+ 322 247c2f640152 2006-08-12 17:42 +0000 ged
623
+ * Copying to a branch for work on the export directive
624
+
625
+ 321 7ed506765fd3 2006-08-09 21:01 +0000 ged
626
+ * Added beginnings of new 'selectlist' directive
627
+
628
+ 320 c21f0d543eba 2006-07-25 03:32 +0000 ged
629
+ * Added an :approot_url alias to match the :approot one.
630
+
631
+ 319 eda0b71f58f0 2006-07-20 22:38 +0000 ged
632
+ * Oops. This was supposed to be part of the last commit.
633
+
634
+ 318 3cd1a9adda1b 2006-07-20 22:35 +0000 ged
635
+ * Fixed bug in the template parser that would catch recursive includes when there wasn't one.
636
+
637
+ 317 b3aef51fc04b 2006-07-12 17:14 +0000 ged
638
+ * Added new conditional template directory 'unless'
639
+
640
+ 316 256c67f70278 2006-07-12 01:42 +0000 ged
641
+ * Removed non-functional default proc from applet signature -- Apache::Server isn't loaded at ChildInit, so applets can't ever load .server.admin.
642
+
643
+ 315 643b8c0c61ce 2006-07-10 18:38 +0000 ged
644
+ * Some browsers don't grok quoted values for attributes in Set-Cookie: headers. (e.g., Safari)
645
+
646
+ 314 bcf4721a6d79 2006-07-08 01:32 +0000 ged
647
+ * Created Arrow::Cookie to work around libapreq cookie corruption bug.
648
+
649
+ 313 539b8248f1d3 2006-07-06 20:37 +0000 ged
650
+ * Arrow::Loaderror -> Arrow::LoadError
651
+
652
+ 312 a78535e6a8c7 2006-06-22 05:42 +0000 ged
653
+ * Added some stuff to FlexMock to provide useful error messages under some
654
+
655
+ 311 df537bd4a13e 2006-06-21 02:10 +0000 ged
656
+ * Added missing require of 'flexmock'
657
+
658
+ 310 0a6c5ed9ec0d 2006-06-21 01:55 +0000 ged
659
+ * Fixed the documentation/defaults to match the new logging config.
660
+
661
+ 309 cf22a3fd316e 2006-06-21 01:43 +0000 ged
662
+ * Rewrote logging to use Arrow::Configurable.
663
+
664
+ 308 c3dd9d05c702 2006-06-21 00:45 +0000 ged
665
+ - Updated dependencies
666
+
667
+ 307 ef890b7bfd52 2006-06-17 00:31 +0000 ged
668
+ Moving the experimental Arrow wiki applet out of lib/
669
+
670
+ 306 ede5e8088636 2006-06-14 19:19 +0000 ged
671
+ * Made ::configure take a second argument for dispatcher-keyed configuration.
672
+
673
+ 305 97086c5cc23e 2006-06-14 17:57 +0000 ged
674
+ * parseUri -> parse_uri
675
+
676
+ 304 22de9f02f99d 2006-06-14 07:20 +0000 ged
677
+ * Initial checkin of Arrow::Configurable.
678
+
679
+ 303 054a67f04cd4 2006-06-13 22:12 +0000 ged
680
+ * Added Apache::Server#loglevel
681
+
682
+ 302 4a5b500869ab 2006-06-13 22:03 +0000 ged
683
+ * Removed unnecessary requirement of 'breakpoint' from the Broker tests.
684
+
685
+ 301 259749c3ba18 2006-06-13 22:02 +0000 ged
686
+ * Removed unnecessary requirement of 'breakpoint' from the apacheconstants test helper lib.
687
+
688
+ 300 38241c222a5d 2006-06-13 21:50 +0000 ged
689
+ * Added logging diagram to Structural Overview
690
+
691
+ 299 6bc2edbda6a0 2006-06-13 21:44 +0000 ged
692
+ * Bringing test suite back into line.
693
+
694
+ 298 488bdbe8e8b7 2006-06-13 21:42 +0000 ged
695
+ * Finally got tests around most of Arrow::Logger, discovered some bugs,
696
+
697
+ 297 95aa6d6a96ab 2006-06-12 19:06 +0000 ged
698
+ * Cleaned up API documentation output. Removed template directive classes and
699
+
700
+ 296 486f2ca1c508 2006-06-12 19:04 +0000 ged
701
+ * Moved all applets which weren't generally useful into the applets/tutorial
702
+
703
+ 295 daa398dd5e70 2006-06-09 23:24 +0000 ged
704
+ * Added a workaround for Apache not setting the path_info of requests handled
705
+
706
+ 294 a8f7ef3600f8 2006-06-07 18:33 +0000 ged
707
+ * Fixed bug in app_root: returned "/" instead of an empty string for an applet installed at the base URL.
708
+
709
+ 293 12674f08a4b4 2006-06-07 08:01 +0000 ged
710
+ * Miscellaneous cleanup and documentation improvements.
711
+
712
+ 292 39aa43bbd206 2006-06-07 07:59 +0000 ged
713
+ * Session cleanup and documentation improvements.
714
+
715
+ 291 fddbf8335ece 2006-06-07 06:16 +0000 ged
716
+ * Made logger objects more compact in inspected objects.
717
+
718
+ 290 6ec3550336d0 2006-06-07 06:15 +0000 ged
719
+ * Fixed/tested FormValidator#error_fields
720
+
721
+ 289 228cd57d422d 2006-06-07 06:08 +0000 ged
722
+ * Modified log configuration parsing to allow debugging classes which don't
723
+
724
+ 288 84bd5b967ef7 2006-06-07 06:07 +0000 ged
725
+ * Changed default applet glob pattern to recurse into subdirectories.
726
+
727
+ 287 58490903cd72 2006-06-02 05:54 +0000 ged
728
+ * Added new SHA1 session id class
729
+
730
+ 286:270 804ee6fa8219 2006-05-31 20:56 +0000 ged
731
+ ** Merged changes from broker-rewrite branch
732
+
733
+ 285 2d83e3475933 2006-05-31 20:46 +0000 ged
734
+ * More camelCase to under_barred conversion.
735
+
736
+ 284 7e65e908fa4c 2006-05-15 23:31 +0000 ged
737
+ * Final cleanup of comments, logging, etc. before merging back into the trunk.
738
+
739
+ 283 f7aa39bd932f 2006-05-15 23:27 +0000 ged
740
+ * Cleanup of field description handling.
741
+
742
+ 282 d1312a1d9c6f 2006-05-10 19:18 +0000 ged
743
+ * Fixed a bug which was causing applets which were related by inheritance to
744
+
745
+ 281 7052bf92f27d 2006-05-08 21:07 +0000 ged
746
+ * Changes to the class's load path should no longer affect the load paths
747
+
748
+ 280 02868fc58103 2006-04-29 00:21 +0000 ged
749
+ * Idiomatic fixes:
750
+
751
+ 279 f9e4306d48b9 2006-04-29 00:19 +0000 ged
752
+ * Added #approot alias for #app_root
753
+
754
+ 278 4571b27ed707 2006-04-29 00:17 +0000 ged
755
+ * Added #readable_level method.
756
+
757
+ 277 fcde180a7a4a 2006-04-28 23:54 +0000 ged
758
+ * Refactored lookup of the action method out of #run, which was getting to be
759
+
760
+ 276 844a6fc9eaf1 2006-04-24 13:19 +0000 ged
761
+ * Changed Applet::applet_default_action to default_action
762
+
763
+ 275 f2823935e1cd 2006-04-21 21:29 +0000 ged
764
+ * Changed broker's applet-lookup logic a bit.
765
+
766
+ 274 3ab5fc47961e 2006-04-21 20:50 +0000 ged
767
+ * More camelCase to under_barred renaming.
768
+
769
+ 273 ba7f5336cdec 2006-04-13 00:48 +0000 ged
770
+ * Removed SVNUrl constants
771
+
772
+ 272 8781f230b196 2006-04-07 22:05 +0000 ged
773
+ - Made TemplateFactory use the path from the config object at loadtime rather
774
+
775
+ 271:268 423b02a657c3 2006-04-07 20:51 +0000 ged
776
+ * Moved applet update checking into the appletregistry.
777
+
778
+ 270 9a9bc172e821 2006-04-04 21:59 +0000 ged
779
+ * Removing old FormValidator lib
780
+
781
+ 269:266 e7894bbc4a30 2006-04-04 21:58 +0000 ged
782
+ * Updating included FormValidator library
783
+
784
+ 268 9f07e9a79152 2006-04-04 01:24 +0000 ged
785
+ * Checkpoint commit: First stab at the extraction of the management of applet
786
+
787
+ 267 84cadc5f18ce 2006-04-04 00:38 +0000 ged
788
+ * Branching for Arrow::Broker rewrite.
789
+
790
+ 266 898e27814228 2005-10-14 05:36 +0000 ged
791
+ - Tag cleared.
792
+
793
+ 265 5e93b442c863 2005-10-14 01:27 +0000 ged
794
+ - Snapshot commit.
795
+
796
+ 264 455c5f2443e3 2005-10-14 00:29 +0000 ged
797
+ - Changed Arrow::Path#to_yaml to reflect changes in 1.8.3's YAML::Syck::Seq.
798
+
799
+ 263 0c5a058f29ef 2005-09-18 07:11 +0000 ged
800
+ - Lots of miscellanous work and tweaks committed.
801
+
802
+ 262 9675042e3a31 2005-03-07 05:03 +0000 ged
803
+ - Make ::load() parse the template after setting the file and loadPath ivars for
804
+
805
+ 261 6ab5c0da7fb7 2005-03-06 16:10 +0000 ged
806
+ - Initial checkin of the 'render' directive and tests for it.
807
+
808
+ 260 25c5d6b1db08 2005-03-06 16:09 +0000 ged
809
+ - Made #parseDirectiveContents a protected method.
810
+
811
+ 259 7f15c834eee9 2005-03-06 16:08 +0000 ged
812
+ - Fixed #inspect output when the 'methodchain' is just whitespace
813
+
814
+ 258 ce80fbb3e339 2005-03-06 16:07 +0000 ged
815
+ - Flattened class declaration.
816
+
817
+ 257 c4d96a61774a 2005-03-06 16:06 +0000 ged
818
+ - Fully-qualified TemplateError in raise.
819
+
820
+ 256 65c18b7966a4 2005-03-06 16:05 +0000 ged
821
+ - Brought into line with the changes in this directory.
822
+
823
+ 255 8ff5e6861dd3 2005-03-05 08:58 +0000 ged
824
+ - Flattened class declaration and unindented.
825
+
826
+ 254 57335e9f5e17 2005-03-05 00:07 +0000 ged
827
+ - Added test for "unknown PI" bug.
828
+
829
+ 253 33c528527d2d 2005-03-05 00:05 +0000 ged
830
+ - Made rescue clauses specify fully-qualified exception classes.
831
+
832
+ 252 4d91b7df671a 2005-03-05 00:00 +0000 ged
833
+ - Removed extemporaneous description section from test profile.
834
+
835
+ 251 f6b525d90680 2005-03-04 23:53 +0000 ged
836
+ - Fixed the "changed" status so it's actually sensitive to changes from the
837
+
838
+ 250 739549ee1376 2005-03-04 22:50 +0000 ged
839
+ - Added an #each_section alias for #each.
840
+
841
+ 249 2667e1d156cd 2005-02-22 06:00 +0000 ged
842
+ - BUGFIX: Fixed constant reference in arrow/datasource.rb.
843
+
844
+ 248 273a4e4d4f0d 2005-02-22 05:59 +0000 ged
845
+ - BUGFIX: Fixed class method declarations in arrow/datasource.rb.
846
+
847
+ 247 828473549a92 2005-02-22 05:57 +0000 ged
848
+ - BUGFIX: Moved exception definitions from arrow/datasource.rb into
849
+
850
+ 246 ffe40b840953 2005-02-22 05:46 +0000 ged
851
+ - Aesthetic fixes to testing validator profile.
852
+
853
+ 245 5b2d200a1558 2005-02-22 05:45 +0000 ged
854
+ - Prettyify server display a bit.
855
+
856
+ 244 edc6bfa52caa 2005-02-22 05:44 +0000 ged
857
+ - Cleaned up form field headers.
858
+
859
+ 243 afb7d0014522 2005-02-22 05:43 +0000 ged
860
+ - Ignore unpacked formvalidator directory.
861
+
862
+ 242 07aeda45e900 2005-02-22 05:42 +0000 ged
863
+ - Deindented and merged namespaces.
864
+
865
+ 241 696128965f5f 2005-02-22 05:40 +0000 ged
866
+ - Converted image struct to anonymous struct.
867
+
868
+ 240 37a52c03621c 2005-02-22 05:30 +0000 ged
869
+ - Better comments in applet.rb for validator code.
870
+
871
+ 239 d2367f61200b 2005-02-22 05:25 +0000 ged
872
+ - Added field descriptions to the validator profile.
873
+
874
+ 238 c14618e166dd 2005-02-22 05:23 +0000 ged
875
+ - Added some Usage docs to the header.
876
+
877
+ 237 43143294dfc1 2004-12-02 04:46 +0000 ged
878
+ - Updated the "current status" section of the tutorial.
879
+
880
+ 236 21eef72b07e5 2004-12-02 04:42 +0000 ged
881
+ - Changed wording in "Why another web framework?" section of the tutorial to
882
+
883
+ 235 e19e0997264b 2004-12-01 19:03 +0000 ged
884
+ Removed some unnecessary CVS cruft.
885
+
886
+ 234 f521b5df12bf 2004-12-01 19:00 +0000 ged
887
+ - Updated/fleshed out Arrow config tests a bit.
888
+
889
+ 233 07c6098dc53c 2004-12-01 18:56 +0000 ged
890
+ - Switched to composite class declaration, updated indentation.
891
+
892
+ 232 cb920a93961d 2004-10-26 17:47 +0000 ged
893
+ Updated ignored file prop.
894
+
895
+ 231 dc02ace09701 2004-10-26 17:45 +0000 ged
896
+ Initial checkin of request inspector applet.
897
+
898
+ 230 23c8733cb74a 2004-10-26 17:45 +0000 ged
899
+ Checkpoint commit of Instiki applet.
900
+
901
+ 229 0476aa3b5e59 2004-10-26 17:44 +0000 ged
902
+ Initial checkin.
903
+
904
+ 228 451896b82a41 2004-10-26 17:43 +0000 ged
905
+ -- Added new convenience methods: #referringApplet, #referringAction, #remoteIp,
906
+
907
+ 227 5e695320f71d 2004-10-26 17:40 +0000 ged
908
+ -- Fix the handling of unknown PIs.
909
+
910
+ 226 d5dbf885ef28 2004-10-26 17:40 +0000 ged
911
+ -- Fix the #warn/#warning bug.
912
+
913
+ 225 bd32394459f3 2004-10-26 17:09 +0000 ged
914
+ Initial checkin.
915
+
916
+ 224 00e170492094 2004-10-26 17:08 +0000 ged
917
+ -- Broke out formvalidator changes into a separate class.
918
+
919
+ 223 a8eb41ce8480 2004-10-24 16:18 +0000 ged
920
+ -- Switched CVS constants to SVN ones.
921
+
922
+ 222 45821aaa18f8 2004-10-22 15:12 +0000 ged
923
+ -- COMPAT: Deprecated #action in favor of #applet, as the path returned has
924
+
925
+ 221 d73d2c4cbb90 2004-10-22 02:13 +0000 ged
926
+ Initial checkin of RubyForge HTML.
927
+
928
+ 220 d0e65b9ce5de 2004-10-22 02:11 +0000 ged
929
+ Initial checkin of memcache applet w/templates.
930
+
931
+ 219 af2b8a780cef 2004-09-21 13:22 +0000 ged
932
+ - Removed unnecessary link to applet source view, as there's an applet that
933
+
934
+ 218 e8d780f0d013 2004-09-21 07:03 +0000 ged
935
+ - Added diagnostics to dropped path members.
936
+
937
+ 217 6fe579c08e6a 2004-09-21 07:02 +0000 ged
938
+ - Added Arrow version to transaction class/demo applet navbar. Thanks to Mark
939
+
940
+ 216 dcb3f42cd7e8 2004-09-21 06:20 +0000 ged
941
+ - Added project-name property.
942
+
943
+ 215 36e9887fc90e 2004-09-21 06:19 +0000 ged
944
+ - Made rndimages pick only a limited number from the feed to display at a time.
945
+
946
+ 214 249f7cef6f8d 2004-09-20 10:42 +0000 stillflame
947
+ - tutorial-templates.html got some corrections for accuracy
948
+
949
+ 213 220901862e48 2004-09-08 18:20 +0000 ged
950
+ - Fixed upload URL and Webcvs URL.
951
+
952
+ 212 fc54791219b8 2004-09-08 14:33 +0000 ged
953
+ Updated for release
954
+
955
+ 211 afad9139ad72 2004-09-08 14:30 +0000 ged
956
+ - Checkpointing for beta release tag.
957
+
958
+ 210 7a4c654684e0 2004-09-08 14:29 +0000 ged
959
+ - Introduced some diagnostics into #findAppletFiles.
960
+
961
+ 209 05fd89e54ff5 2004-09-08 14:28 +0000 ged
962
+ - Upgraded PluginFactory URL.
963
+
964
+ 208 ba6ba583d924 2004-09-08 14:27 +0000 ged
965
+ - Turned debugging on by default for the demo installation. Hopefully this will
966
+
967
+ 207 05388ce5b187 2004-09-08 14:26 +0000 ged
968
+ - Added missing templates/navbar.incl
969
+
970
+ 206 891d5ec72b8d 2004-09-08 14:08 +0000 ged
971
+ - On second thought, removed the stuff from the manual. A README should be
972
+
973
+ 205 4ae6cc02229a 2004-09-08 08:00 +0000 ged
974
+ - Fixed the tainting bug which happened when an Arrow::Path was loaded out of a
975
+
976
+ 204 a5684f0ce70d 2004-09-08 06:23 +0000 ged
977
+ - Updated the requirements section.
978
+
979
+ 203 bc5704d9c7cc 2004-09-08 06:22 +0000 ged
980
+ - Fixed indentation so it renders correctly.
981
+
982
+ 202 47b4387d3f74 2004-09-08 06:20 +0000 ged
983
+ - Upgraded dist utilities/merged from project-utils.
984
+
985
+ 201 292b1b368b7a 2004-09-08 06:19 +0000 ged
986
+ - Upgraded distributed version of PluginFactory.
987
+
988
+ 200 f56ced3549c2 2004-09-07 03:43 +0000 stillflame
989
+ - fixed incorrect definitions of escape and urlencode in tutorial-templates
990
+
991
+ 199 88e9b4ab49d8 2004-09-07 03:35 +0000 ged
992
+ - Made it possible to both preload via ChildInitHandler and have a location
993
+
994
+ 198 a52e7a94f9ec 2004-09-07 03:33 +0000 ged
995
+ - Whitespace fix.
996
+
997
+ 197 362848e8eef4 2004-09-07 03:33 +0000 ged
998
+ - Added some more tutorial applets and templates.
999
+
1000
+ 196 fd195e52c815 2004-09-07 02:19 +0000 stillflame
1001
+ - filled in missing text and example, still not very thorough
1002
+
1003
+ 195 1b27de335019 2004-09-07 02:08 +0000 ged
1004
+ - Merged changes from project-utils.
1005
+
1006
+ 194 52c8b5641af0 2004-09-07 02:06 +0000 stillflame
1007
+ - minor grammar and syntax changes
1008
+
1009
+ 193 a1f186417fe2 2004-09-07 00:36 +0000 stillflame
1010
+ - minor grammatical changes to tutorial-intro.html
1011
+
1012
+ 192 6f202a422382 2004-09-06 22:57 +0000 ged
1013
+ - Fixed 'webcvs' attribute of the docs CATALOG file.
1014
+
1015
+ 191 46345e4177b4 2004-09-06 22:56 +0000 ged
1016
+ Initial commit of LJ random-image feed browser.
1017
+
1018
+ 190 bcc9491bb634 2004-09-06 22:55 +0000 ged
1019
+ - Added Test::Unit::Mock distribution to redist/
1020
+
1021
+ 189 5b0ad0cae903 2004-09-06 22:54 +0000 ged
1022
+ - Documentation updates/fixes for some of the template node types and
1023
+
1024
+ 188 1e5ad00ff3c7 2004-09-06 22:53 +0000 ged
1025
+ - More work on apps and templates sections of the tutorial
1026
+
1027
+ 187 0fa06e295412 2004-09-06 22:11 +0000 ged
1028
+ - Cleaned up and finalized for release.
1029
+
1030
+ 186 f6f73a88ac20 2004-09-02 06:33 +0000 stillflame
1031
+ - corrected, expounded, and touched up documentation
1032
+
1033
+ 185 4ec741d521a2 2004-09-02 05:04 +0000 stillflame
1034
+ - removed server side includes and made linkboxes inline
1035
+
1036
+ 184 f86a70de2afe 2004-09-01 02:37 +0000 ged
1037
+ Initial checkin of tutorial applet code.
1038
+
1039
+ 183 f7ecfab3124d 2004-09-01 02:36 +0000 ged
1040
+ - Brought up to date for impending release.
1041
+
1042
+ 182 078855b819c4 2004-09-01 02:36 +0000 ged
1043
+ - No sense in having an rBuild.rb without the corresponding module tool.
1044
+
1045
+ 181 a88803a6078f 2004-09-01 02:35 +0000 ged
1046
+ Initial checkin and revision of tutorial screenshots.
1047
+
1048
+ 180 8f3badd469d6 2004-09-01 02:34 +0000 ged
1049
+ - Brought up to date for impending release.
1050
+
1051
+ 179 862572de6b7b 2004-09-01 02:33 +0000 ged
1052
+ - Brought up to date for impending release.
1053
+
1054
+ 178 ac7d9d4c50c7 2004-08-24 02:40 +0000 ged
1055
+ - Removed old CVS cruft.
1056
+
1057
+ 177 86df805fef71 2004-08-23 06:10 +0000 ged
1058
+ - Set keyword/executable properties.
1059
+
1060
+ 176 7b3560594501 2004-08-23 06:02 +0000 ged
1061
+ - Made debugging not quite so verbose.
1062
+
1063
+ 175 29c01d7aa823 2004-08-23 06:02 +0000 ged
1064
+ - Added redirect support to Arrow::Transaction.
1065
+
1066
+ 174 749a1fb91c92 2004-08-23 03:31 +0000 ged
1067
+ - Added tests for Arrow::Session::PosixLock if the 'posixlock' library is
1068
+
1069
+ 173 22f6249a8244 2004-08-23 03:30 +0000 ged
1070
+ - Modified tests of to reflect changes in the way applet chains are built:
1071
+
1072
+ 172 f0a4dc728c22 2004-08-23 03:29 +0000 ged
1073
+ Initial checkin of test applets directory and 'setup' test applet.
1074
+
1075
+ 171 30ef50478edd 2004-08-23 03:28 +0000 ged
1076
+ - Chopped the namespace-module part off the application class, as it took up too
1077
+
1078
+ 170 ba04410e1b91 2004-08-23 03:27 +0000 ged
1079
+ Initial checkin of Arrow::Session::PosixLock.
1080
+
1081
+ 169 1b5742d90502 2004-08-23 03:26 +0000 ged
1082
+ - Added support for the new method Arrow::Session::Lock#finish method.
1083
+
1084
+ 168 68262ec5a21f 2004-08-23 03:26 +0000 ged
1085
+ - Added a new method Arrow::Session::Lock#finish to allow cleanup once session
1086
+
1087
+ 167 c7a09a0b090e 2004-08-23 03:24 +0000 ged
1088
+ - Make the default revision-extractor for Subversion constants replace the 'Rev:
1089
+
1090
+ 166 1d04a8695fa1 2004-08-23 03:23 +0000 ged
1091
+ - Use true alpha-channel output only if supported by the GD library that's
1092
+
1093
+ 165 66316e42bf10 2004-08-21 06:08 +0000 ged
1094
+ - Added links to examples
1095
+
1096
+ 164 37241bd7a79b 2004-08-21 06:08 +0000 ged
1097
+ - Fixed alpha channel, added min/max checks.
1098
+
1099
+ 163 602aa2a3cf99 2004-08-21 05:39 +0000 ged
1100
+ - Removed explicit version from signature.
1101
+
1102
+ 162 623706f365ea 2004-08-21 05:35 +0000 ged
1103
+ - Combined error.rb (error handler demo) and errorHandler.rb (the default error
1104
+
1105
+ 161 7132602c659b 2004-08-21 05:34 +0000 ged
1106
+ - Combined error.rb (error handler demo) and errorHandler.rb (the default error
1107
+
1108
+ 160 ed17ed63e37c 2004-08-21 05:33 +0000 ged
1109
+ - Combined error.rb (error handler demo) and errorHandler.rb (the default error
1110
+
1111
+ 159 b24afa217f58 2004-08-19 02:28 +0000 ged
1112
+ - Revised to be more useful from the URL line.
1113
+
1114
+ 158 053c829568ea 2004-08-19 00:16 +0000 ged
1115
+ - Clarified and fixed some problems in the Synopsis docs.
1116
+
1117
+ 157 0e066e51795f 2004-08-19 00:01 +0000 ged
1118
+ Initial checkin of templates/test/problem.tmpl.
1119
+
1120
+ 156 6616260448dc 2004-08-19 00:00 +0000 ged
1121
+ Initial checkin of experiments/stagelogger.rb.
1122
+
1123
+ 155 ae63a3a04f78 2004-08-19 00:00 +0000 ged
1124
+ - Small addition to the applet tutorial of the manual.
1125
+
1126
+ 154 22939599433d 2004-08-18 23:59 +0000 ged
1127
+ - :nodoc:'ed the deprecated #templates accessor.
1128
+
1129
+ 153 2fa9ad3bee33 2004-08-18 23:58 +0000 ged
1130
+ - Setting a logger to a non-existant logging level now raises an error.
1131
+
1132
+ 152 c877e83f2db4 2004-08-18 23:57 +0000 ged
1133
+ - Added support for startup in RubyChildInitHandler. Require mod_ruby 1.2.1 or
1134
+
1135
+ 151 d453ad3551f1 2004-08-18 23:54 +0000 ged
1136
+ - Added support for applets registered under '/'.
1137
+
1138
+ 150 444ab841b300 2004-08-18 23:21 +0000 ged
1139
+ - Brought Applet#delegate up to date re: the Broker's calling convention.
1140
+
1141
+ 149 8b596bcc39f2 2004-08-13 15:06 +0000 ged
1142
+ Simplifying repository
1143
+
1144
+ 148 12e843eb1e16 2004-08-04 05:01 +0000 ged
1145
+ Initial checkin
1146
+
1147
+ 147 e1b2657256cd 2004-08-04 00:57 +0000 ged
1148
+ - Added ignore prop for the html dir
1149
+
1150
+ 146 87e1d55430e1 2004-08-04 00:53 +0000 ged
1151
+ - Added auto-untainting to the validator profile
1152
+
1153
+ 145 316a411fd9ac 2004-08-04 00:52 +0000 ged
1154
+ - Added more useful output.
1155
+
1156
+ 144 58e9958f9b2a 2004-08-04 00:50 +0000 ged
1157
+ - Changed XML mode to NXML mode
1158
+
1159
+ 143 ae63152c3717 2004-08-03 18:09 +0000 ged
1160
+ - CVS->SVN constants.
1161
+
1162
+ 142 99d58cdc7baf 2004-08-03 18:08 +0000 ged
1163
+ - Fixed comment header.
1164
+
1165
+ 141 e061ae2edf11 2004-08-03 18:07 +0000 ged
1166
+ - Fixed a bug when defining actions via a Symbol. Thanks to Aidan Rogers
1167
+
1168
+ 140 4a154c1b9bc5 2004-07-29 06:28 +0000 ged
1169
+ - Commented out the damned failing scope-bleed test until I can track down the
1170
+
1171
+ 139 7b779ca7fb99 2004-07-29 06:27 +0000 ged
1172
+ - Added applet-source link.
1173
+
1174
+ 138 494762e97edd 2004-07-29 06:24 +0000 ged
1175
+ - Added filename attribute to applet class.
1176
+
1177
+ 137 4066d61eb070 2004-07-29 06:20 +0000 ged
1178
+ Initial checkin.
1179
+
1180
+ 136 ba6d21eab367 2004-07-28 21:08 +0000 stillflame
1181
+ added example for templated applets
1182
+
1183
+ 135 9dec65317099 2004-07-28 17:14 +0000 stillflame
1184
+ corrected and clarified directive descriptions
1185
+
1186
+ 134 162110c5f1f3 2004-07-27 01:03 +0000 ged
1187
+ - Changed CVS tags to Subversion tags.
1188
+
1189
+ 133 503ad946508c 2004-07-26 23:50 +0000 ged
1190
+ - Set svn:keywords.
1191
+
1192
+ 132 5262071ad138 2004-07-26 23:49 +0000 ged
1193
+ - Fixed missing PIDs in applet-status view.
1194
+
1195
+ 131 8f4729ec0bef 2004-07-26 23:49 +0000 ged
1196
+ - Updated to reflect changes in rev 132 of imgtext2.rb.
1197
+
1198
+ 130 d58f59959aae 2004-07-26 23:46 +0000 ged
1199
+ - Replaced CVS tags with SVN ones.
1200
+
1201
+ 129 1cb6a5b8ea11 2004-07-26 17:37 +0000 ged
1202
+ Initial checkin.
1203
+
1204
+ 128 b71cefeddee1 2004-07-26 17:37 +0000 ged
1205
+ - Removed the FactoryError exception class to fix a bug in the templating system.
1206
+
1207
+ 127 a16fbadfb1fe 2004-07-26 17:37 +0000 ged
1208
+ - Commented out debugging log spam.
1209
+
1210
+ 126 6e3a29484424 2004-07-26 17:36 +0000 ged
1211
+ - Fixes for XHTML validity.
1212
+
1213
+ 125 0abd05b74bc4 2004-07-26 17:35 +0000 ged
1214
+ - Commented out some debugging log messages.
1215
+
1216
+ 124 9b11f1879a0e 2004-07-26 17:25 +0000 ged
1217
+ - Added the 'uri' attribute to applets so they know where they're being
1218
+
1219
+ 123 0336fdf8e096 2004-07-26 17:24 +0000 ged
1220
+ - Removed some old cruft/unimplemented features from the docs.
1221
+
1222
+ 122 d9876dac08a4 2004-07-26 17:22 +0000 ged
1223
+ - Removed some cruft and cleaned up.
1224
+
1225
+ 121 f6f57044795c 2004-07-26 17:21 +0000 ged
1226
+ - Additions and updates. Integrated some stuff from OSCon presentation.
1227
+
1228
+ 120 f062fb2176f4 2004-07-26 17:18 +0000 ged
1229
+ Initial checkin.
1230
+
1231
+ 119 f01b7210ebbd 2004-07-26 17:18 +0000 ged
1232
+ - Added explanatory comment.
1233
+
1234
+ 118 1c1bceb2ce12 2004-07-24 05:30 +0000 stillflame
1235
+ tutorial - added short descriptions of each directive i could figure out.
1236
+
1237
+ 117 9cd7b9b71cb5 2004-07-24 00:04 +0000 stillflame
1238
+ stubs for the directives in the tutorial, and simple syntax blurbs where i could
1239
+
1240
+ 116 b488e2be8ee0 2004-07-17 16:41 +0000 stillflame
1241
+ added introductory paragraph
1242
+
1243
+ 115 b67a1132d64b 2004-06-28 06:36 +0000 ged
1244
+ - Reverted mistakenly-changed call to .templateFactory.getTemplate().
1245
+
1246
+ 114 870a41451fc8 2004-06-28 06:17 +0000 ged
1247
+ - Moved last vestiges of template-loading out of the transaction into the applet
1248
+
1249
+ 113 6e5971d485b3 2004-06-28 05:14 +0000 ged
1250
+ - Fixed identifier pattern to match single-character identifiers. Thanks to Mark
1251
+
1252
+ 112 6daf0fc4a0cb 2004-06-28 04:49 +0000 ged
1253
+ - Added a 'data' attribute for passing free-form data around between applets in
1254
+
1255
+ 111 c704c9a1b2f6 2004-06-28 04:46 +0000 ged
1256
+ - Edits to the templates for the testing applet.
1257
+
1258
+ 110 59e713033f0e 2004-06-28 03:42 +0000 ged
1259
+ - Moved test templates into a subdir of their own, as there's going to be quite
1260
+
1261
+ 109 532d52f6aa8a 2004-06-28 03:20 +0000 ged
1262
+ - Fixed javascript ordering bug which caused the 'expand' control to not work on
1263
+
1264
+ 108 e2b62d805440 2004-06-27 23:36 +0000 ged
1265
+ - Removed some old cruft.
1266
+
1267
+ 107 bc9a23807fc3 2004-06-27 01:33 +0000 ged
1268
+ - Corrections courtesy of Aaron Son <reltuk@FaerieMUD.org>.
1269
+
1270
+ 106 fba2bf046aee 2004-06-27 01:00 +0000 ged
1271
+ - Brought config description up to date with changes to Arrow::Config and the
1272
+
1273
+ 105 b764fe10086f 2004-06-20 23:58 +0000 ged
1274
+ - Updated download instructions.
1275
+
1276
+ 104 84661988201e 2004-06-13 00:57 +0000 ged
1277
+ - Added several new tests. Thanks to Aaron Son <reltuk at FaerieMUD dot org> for
1278
+
1279
+ 103 071d63ac3f9c 2004-06-13 00:53 +0000 ged
1280
+ - Added per-testcase debugging (e.g., test.rb -d nameOfTestCase) so tracking
1281
+
1282
+ 102 4768e54a8e4c 2004-06-13 00:24 +0000 ged
1283
+ - Changed call to Template#withOverriddenAttributes to match the new argument
1284
+
1285
+ 101 bd6ff7ae0cea 2004-06-13 00:24 +0000 ged
1286
+ - Changed call to Template#withOverriddenAttributes to match the new argument
1287
+
1288
+ 100 8efd5ed856e1 2004-06-13 00:24 +0000 ged
1289
+ - Changed call to Template#withOverriddenAttributes to match the new argument
1290
+
1291
+ 99 779feb9a8bb1 2004-06-13 00:23 +0000 ged
1292
+ - Commented out the debugging in #each I was using to eliminate Iterators from
1293
+
1294
+ 98 db26beb0d9a1 2004-06-13 00:22 +0000 ged
1295
+ - Cleaned up handling of attributes and definitions in rendering scope
1296
+
1297
+ 97 55500dd7a233 2004-06-13 00:17 +0000 ged
1298
+ - Added ScopeError exception class.
1299
+
1300
+ 96 0a29603979c9 2004-06-07 18:43 +0000 reltuk
1301
+ Changed occurrences of txn.args to txn.vargs
1302
+
1303
+ 95 88f04496ceff 2004-06-05 19:13 +0000 ged
1304
+ - Uncommented the Arrow::Applet#delegate method, and added a new #delegable?
1305
+
1306
+ 94 a4c52d0db8e5 2004-06-05 19:08 +0000 ged
1307
+ - Bugfix for illegal comment reported by Aaron Son.
1308
+
1309
+ 93 c8f05a8b0690 2004-06-02 16:41 +0000 ged
1310
+ - Added keywords property
1311
+
1312
+ 92 30bebd8a1cf8 2004-06-02 13:01 +0000 ged
1313
+ - Made the AppletError default message a bit more useful.
1314
+
1315
+ 91 8626ddd3179e 2004-06-02 13:01 +0000 ged
1316
+ - Added BlueCloth module revision message to the bottom of the page.
1317
+
1318
+ 90 5f892acba364 2004-06-02 03:04 +0000 ged
1319
+ - Updated keywords property.
1320
+
1321
+ 89 0f17a01a1b2b 2004-06-02 03:03 +0000 ged
1322
+ - Fixed initial bugs. Now in working form.
1323
+
1324
+ 88 b8b3ca82055f 2004-06-02 03:01 +0000 ged
1325
+ - Fixed up two old-style invocations of #runAppletChain.
1326
+
1327
+ 87 bd9622439bd4 2004-06-02 02:20 +0000 ged
1328
+ Initial checkin
1329
+
1330
+ 86 ebcda9faf9c8 2004-05-31 18:35 +0000 ged
1331
+ - Property changes.
1332
+
1333
+ 85 5f7779387631 2004-05-31 18:34 +0000 ged
1334
+ - CVS -> Subversion
1335
+
1336
+ 84 d6e593bca702 2004-05-31 18:33 +0000 ged
1337
+ Initial checkin.
1338
+
1339
+ 83 a9ec599379be 2004-05-31 18:32 +0000 ged
1340
+ - Updated to match latest config changes.
1341
+
1342
+ 82 84c31e961df4 2004-05-31 18:28 +0000 ged
1343
+ - Added a runcount in the comments to help debug the transient
1344
+
1345
+ 81 65d2a20304f1 2004-05-31 18:27 +0000 ged
1346
+ - Added the child server's PID to the stats table.
1347
+
1348
+ 80 6907c04ca7c0 2004-05-31 18:25 +0000 ged
1349
+ - Added a new exception type for applet chain errors, since they're now exposed
1350
+
1351
+ 79 60884e9274d0 2004-05-31 18:23 +0000 ged
1352
+ - Made changes to the order of execution of output rendering and saving of
1353
+
1354
+ 78 38f3f8c77f6c 2004-05-31 18:20 +0000 ged
1355
+ - Made delegation pass the remaining links in the applet chain to
1356
+
1357
+ 77 65510401243f 2004-05-31 17:46 +0000 ged
1358
+ - Fixed the double-return bug that happened when the default handler was invoked
1359
+
1360
+ 76 6df4293ed6d4 2004-05-31 17:43 +0000 ged
1361
+ - Modified to work with altered delegation model.
1362
+
1363
+ 75 b09a2efd98b7 2004-05-31 17:43 +0000 ged
1364
+ - Modified to work with altered delegation model.
1365
+
1366
+ 74 93eec318364a 2004-05-29 20:53 +0000 ged
1367
+ - Added filemap classes.
1368
+
1369
+ 73 24ebf6f0ec73 2004-05-29 20:46 +0000 ged
1370
+ Initial checkin.
1371
+
1372
+ 72 c5c8db1baea3 2004-05-29 20:44 +0000 ged
1373
+ - Fixed reference to old config key.
1374
+
1375
+ 71 6c9244e37692 2004-05-29 20:43 +0000 ged
1376
+ - Added debugging to eliminate the Continuation in iterators as the cause of the
1377
+
1378
+ 70 1580b6dbebaa 2004-05-29 20:43 +0000 ged
1379
+ - Added debugging to track down the session-lock problem.
1380
+
1381
+ 69 c0f62c8b5ce3 2004-05-29 20:43 +0000 ged
1382
+ - Added debugging to track down the session-lock problem.
1383
+
1384
+ 68 8bb5ef4882de 2004-05-29 20:42 +0000 ged
1385
+ - Changed Symbol config values to Strings for symmetry.
1386
+
1387
+ 67 f1c1c59854c9 2004-05-29 20:41 +0000 ged
1388
+ - Added some debugging to help track down the double-return bug.
1389
+
1390
+ 66 899d1edfbe15 2004-05-29 20:41 +0000 ged
1391
+ - Modified #delegate to match the signature of delegation-with-chain.
1392
+
1393
+ 65 4d03020d173c 2004-05-29 20:40 +0000 ged
1394
+ - Made session setup for delegated requests a bit more resilient in the face of
1395
+
1396
+ 64 cf3996470895 2004-05-29 20:38 +0000 ged
1397
+ Initial checkin. Just a skeleton at this point.
1398
+
1399
+ 63 ddb40b56c9c2 2004-05-29 20:34 +0000 ged
1400
+ - Added debugging for the mysterious double-return bug.
1401
+
1402
+ 62 03bc53e60459 2004-05-29 20:32 +0000 ged
1403
+ Initial checkin. Just a skeleton at this point.
1404
+
1405
+ 61 7a144462b5b2 2004-05-22 07:02 +0000 ged
1406
+ Initial checkin.
1407
+
1408
+ 60 d805ebe0b32a 2004-05-22 07:00 +0000 ged
1409
+ - Removed default layout, as it merged with the user's config.
1410
+
1411
+ 59 4c76797f61c1 2004-05-22 06:58 +0000 ged
1412
+ - Modified file logging to apply to more than just Arrow::Template.
1413
+
1414
+ 58 ba477afcfa61 2004-05-22 06:54 +0000 ged
1415
+ - Made changes to reflect changes in the applet-loading and organization code in
1416
+
1417
+ 57 4dee5363773b 2004-05-22 06:52 +0000 ged
1418
+ - Fixed debugging message with no arguments to its placeholders.
1419
+
1420
+ 56 af0aabb87e72 2004-05-22 06:52 +0000 ged
1421
+ - Moved applet config stuff into the applet section of the config object.
1422
+
1423
+ 55 5cbe27f03b2f 2004-05-22 06:50 +0000 ged
1424
+ - Rewrote applet registry code to support the URL hierarchy being built from
1425
+
1426
+ 54 8d279778847b 2004-05-22 06:47 +0000 ged
1427
+ - Applets are no longer responsible for their own mapping into the URL
1428
+
1429
+ 53 fee8f24846da 2004-05-22 06:43 +0000 ged
1430
+ Initial checkin.
1431
+
1432
+ 52 dd06a9d339ed 2004-05-22 06:42 +0000 ged
1433
+ - Moved back out of the Arrow:: namespace, as Kernel::load apparently doesn't
1434
+
1435
+ 51 26b6809b3a28 2004-05-04 15:33 +0000 ged
1436
+ - Converted more CVS-style version constants to Subversion-style ones.
1437
+
1438
+ 50 877935378f7b 2004-05-04 05:05 +0000 ged
1439
+ - Fixed message bug
1440
+
1441
+ 49 35df62f2d69a 2004-05-04 05:04 +0000 ged
1442
+ - Handle Hash objects separately from ConfigStructs when comparing configs.
1443
+
1444
+ 48 ac6620026d97 2004-05-04 05:04 +0000 ged
1445
+ Initial checkin.
1446
+
1447
+ 47 c470af07d3fe 2004-05-04 05:03 +0000 ged
1448
+ - Converted CVS-style constants/comments to Subversion-style ones.
1449
+
1450
+ 46 f88f74384165 2004-05-04 05:02 +0000 ged
1451
+ - Fixed template name -- RDoc 'css' template was renamed to 'html'.
1452
+
1453
+ 45 92518cf27ecc 2004-05-04 05:01 +0000 ged
1454
+ - Updated to match lib/arrow/config.rb changes.
1455
+
1456
+ 44 218874835ad0 2004-05-04 05:00 +0000 ged
1457
+ - Credit where credit is due.
1458
+
1459
+ 43 c473ec681dd1 2004-05-04 04:59 +0000 ged
1460
+ - Converted CVS-style constants/comments to Subversion-style ones.
1461
+
1462
+ 42 b71581d47cb2 2004-05-04 04:46 +0000 ged
1463
+ - Removed, since the purpose they served can now be accomplished by mapping
1464
+
1465
+ 41 4e63cfd75085 2004-05-04 04:44 +0000 ged
1466
+ - Changed CVS-style constants over to Subversion-style ones.
1467
+
1468
+ 40 63e576c684e0 2004-05-04 04:41 +0000 ged
1469
+ - Fixed closing comment.
1470
+
1471
+ 39 22de845a8812 2004-04-30 14:27 +0000 ged
1472
+ - Renamed tests to non-numbered files.
1473
+
1474
+ 38 03b98597848b 2004-04-22 17:43 +0000 ged
1475
+ - Fixed bug that prevented actions being defined with Symbols as names.
1476
+
1477
+ 37 7344fb945baa 2004-04-22 17:42 +0000 ged
1478
+ - Masked kernel methods away from config object to prevent collision.
1479
+
1480
+ 36 1babb865aa07 2004-04-22 17:41 +0000 ged
1481
+ - Updated to new diagram graphic.
1482
+
1483
+ 35 e45293da13cf 2004-04-22 17:38 +0000 ged
1484
+ Initial checkin.
1485
+
1486
+ 34 7b0e52e2aece 2004-04-22 16:53 +0000 ged
1487
+ Set keywords for manual
1488
+
1489
+ 33 35e6f18d8b7a 2004-04-21 23:17 +0000 stillflame
1490
+ added more dependancies to the installation docs - pluginfactory, test-unit-mock, and diff
1491
+
1492
+ 32 22c970274ce8 2004-04-19 21:22 +0000 stillflame
1493
+ filled in a bit of the sessions tutorial
1494
+
1495
+ 31:1 b9880bcb2e23 2004-03-23 16:37 +0000 ged
1496
+ Merged applet-conversion branch [3:31]
1497
+
1498
+ 30 f0e77217c177 2004-03-23 07:34 +0000 ged
1499
+ - Recovered/updated tutorial graphics.
1500
+
1501
+ 29 49c3026baa51 2004-03-23 06:47 +0000 ged
1502
+ - Converted .cvsignore to svn:ignore property.
1503
+
1504
+ 28 22ca8fb238f8 2004-03-23 06:46 +0000 ged
1505
+ - Updated syntax.
1506
+
1507
+ 27 9896513ebdac 2004-03-23 06:44 +0000 ged
1508
+ - Finished replacing Arrow::Factory with PluginFactory.
1509
+
1510
+ 26 a5f6f2befe47 2004-03-23 06:44 +0000 ged
1511
+ - Fixed some erroring tests caused by Arrow::Paths not loading from a dumped
1512
+
1513
+ 25 251825806d56 2004-03-22 22:11 +0000 ged
1514
+ Converted .cvsignore to svn:ignore prop
1515
+
1516
+ 24 061c8a5863ee 2004-03-22 20:08 +0000 ged
1517
+ Initial checkin
1518
+
1519
+ 23 d85436d25f5e 2004-03-22 18:29 +0000 ged
1520
+ Initial checkin.
1521
+
1522
+ 22 dff285c57616 2004-03-22 08:43 +0000 ged
1523
+ - Added functionality to allow tests to be skipped.
1524
+
1525
+ 21 48445f4ab5fa 2004-03-22 08:42 +0000 ged
1526
+ - Reworked inheritance/instantiation tests.
1527
+
1528
+ 20 8abafd08dba8 2004-03-22 08:41 +0000 ged
1529
+ - Wrapped code that won't work for anyone but Martin in conditionals
1530
+
1531
+ 19 f39e5abfafd0 2004-03-22 08:40 +0000 ged
1532
+ - Added skip for hosts that don't have Ripper installed.
1533
+
1534
+ 18 a31bc495182c 2004-03-22 08:39 +0000 ged
1535
+ - Reworded descriptions/titles.
1536
+
1537
+ 17 2dac16dac4a4 2004-03-22 08:39 +0000 ged
1538
+ - Reworded description of URI assignment.
1539
+
1540
+ 16 9719302a0f25 2004-03-22 08:38 +0000 ged
1541
+ - Added code to defer raising an exception until instantiation if Ripper is not
1542
+
1543
+ 15 d972e5bcd329 2004-03-22 08:37 +0000 ged
1544
+ - Removed two unused exception classes.
1545
+
1546
+ 14 188318485f98 2004-03-22 08:36 +0000 ged
1547
+ - Eliminated redundant declaration of exception classes.
1548
+
1549
+ 13 6acdc6aadb95 2004-03-22 08:34 +0000 ged
1550
+ - Removed the ':config' Signature item, as I don't think it's generally useful.
1551
+
1552
+ 12 c80ffb42e19a 2004-03-22 08:27 +0000 ged
1553
+ Reworded description to fit the renamed parts.
1554
+
1555
+ 11 1626fd097c11 2004-03-21 18:19 +0000 ged
1556
+ Renamed from "40_application.tests.rb"
1557
+
1558
+ 10 8a4043a29559 2004-03-21 18:19 +0000 ged
1559
+ Renamed to "40_applet.tests.rb"
1560
+
1561
+ 9 d7bf6fe4c5e3 2004-03-21 17:49 +0000 ged
1562
+ Renamed from "nosuchapp.tmpl"
1563
+
1564
+ 8 4e0148770e5c 2004-03-21 17:49 +0000 ged
1565
+ Renamed to "nosuchapplet.tmpl"
1566
+
1567
+ 7 f9b764d7e748 2004-03-21 17:48 +0000 ged
1568
+ Renamed from "app-status.tmpl"
1569
+
1570
+ 6 cc855eac0352 2004-03-21 17:48 +0000 ged
1571
+ Renamed to "applet-status.tmpl"
1572
+
1573
+ 5 166d92efa23e 2004-03-21 10:02 +0000 ged
1574
+ - Renamed to "applets".
1575
+
1576
+ 4 a50772335408 2004-03-21 09:53 +0000 ged
1577
+ - Renamed to "applets".
1578
+
1579
+ 3 087b90c4cc17 2004-03-21 09:47 +0000 ged
1580
+ - Initial stab at converting all references to 'app' and 'application' which
1581
+
1582
+ 2 ffeec9398b2c 2004-03-21 09:35 +0000 ged
1583
+
1584
+
1585
+ 1 ff59451b10f1 2004-03-20 23:17 +0000 ged
1586
+ Initial import of CVS-controlled sources
1587
+
1588
+ 0 9dde83d8469a 2004-03-20 23:15 +0000 ged
1589
+ Initial repository layout
1590
+