ruby-web 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (190) hide show
  1. data/ChangeLog +474 -0
  2. data/INSTALL.txt +9 -0
  3. data/InstalledFiles +180 -0
  4. data/LICENSE.txt +74 -0
  5. data/Rakefile +529 -0
  6. data/TODO +65 -0
  7. data/doc/additional.xml +149 -0
  8. data/doc/core.xml +652 -0
  9. data/doc/credits/index.xml +52 -0
  10. data/doc/credits/php.contributors.xml +118 -0
  11. data/doc/credits/php.language-snippets.ent +622 -0
  12. data/doc/install/index.xml +136 -0
  13. data/doc/install/mac/index.xml +21 -0
  14. data/doc/install/ruby-web.install.rb.instructions.xml +7 -0
  15. data/doc/install/unix/index.xml +46 -0
  16. data/doc/install/win/apache1.xml +166 -0
  17. data/doc/install/win/apache2.xml +141 -0
  18. data/doc/install/win/iis.xml +162 -0
  19. data/doc/install/win/index.xml +24 -0
  20. data/doc/install/win/installer.xml +31 -0
  21. data/doc/install/win/manual.xml +43 -0
  22. data/doc/manual.xml +69 -0
  23. data/doc/old/apache_cgi.txt +23 -0
  24. data/doc/old/fastcgi.txt +23 -0
  25. data/doc/old/mod_ruby.txt +21 -0
  26. data/doc/old/snippets.rdoc +183 -0
  27. data/doc/old/webrick.txt +23 -0
  28. data/doc/old/windows_cgi.txt +9 -0
  29. data/doc/tutorial.xml +14 -0
  30. data/doc/xsl/manual-multi.xsl +10 -0
  31. data/doc/xsl/manual-pdf.xsl +6 -0
  32. data/doc/xsl/manual-single.xsl +6 -0
  33. data/doc/xsl/manual.css +22 -0
  34. data/install.rb +1022 -0
  35. data/lib/formatter.rb +314 -0
  36. data/lib/html-parser.rb +429 -0
  37. data/lib/htmlrepair.rb +113 -0
  38. data/lib/htmlsplit.rb +842 -0
  39. data/lib/sgml-parser.rb +332 -0
  40. data/lib/web.rb +68 -0
  41. data/lib/web/assertinclude.rb +129 -0
  42. data/lib/web/config.rb +50 -0
  43. data/lib/web/connection.rb +1070 -0
  44. data/lib/web/convenience.rb +154 -0
  45. data/lib/web/formreader.rb +318 -0
  46. data/lib/web/htmlparser/html-parser.rb +429 -0
  47. data/lib/web/htmlparser/sgml-parser.rb +332 -0
  48. data/lib/web/htmltools/element.rb +296 -0
  49. data/lib/web/htmltools/stparser.rb +276 -0
  50. data/lib/web/htmltools/tags.rb +286 -0
  51. data/lib/web/htmltools/tree.rb +139 -0
  52. data/lib/web/htmltools/xmltree.rb +160 -0
  53. data/lib/web/htmltools/xpath.rb +71 -0
  54. data/lib/web/info.rb +63 -0
  55. data/lib/web/load.rb +210 -0
  56. data/lib/web/mime.rb +87 -0
  57. data/lib/web/phprb.rb +340 -0
  58. data/lib/web/resources/test/cookie.rb +33 -0
  59. data/lib/web/resources/test/counter.rb +20 -0
  60. data/lib/web/resources/test/multipart.rb +14 -0
  61. data/lib/web/resources/test/redirect.rb +8 -0
  62. data/lib/web/resources/test/stock.rb +33 -0
  63. data/lib/web/sapi/apache.rb +129 -0
  64. data/lib/web/sapi/fastcgi.rb +22 -0
  65. data/lib/web/sapi/install/apache.rb +180 -0
  66. data/lib/web/sapi/install/iis.rb +93 -0
  67. data/lib/web/sapi/install/macosx.rb +90 -0
  68. data/lib/web/sapi/webrick.rb +86 -0
  69. data/lib/web/session.rb +83 -0
  70. data/lib/web/shim/cgi.rb +129 -0
  71. data/lib/web/shim/rails.rb +175 -0
  72. data/lib/web/stringio.rb +78 -0
  73. data/lib/web/strscanparser.rb +24 -0
  74. data/lib/web/tagparser.rb +96 -0
  75. data/lib/web/testing.rb +666 -0
  76. data/lib/web/traceoutput.rb +75 -0
  77. data/lib/web/unit.rb +56 -0
  78. data/lib/web/upload.rb +59 -0
  79. data/lib/web/validate.rb +52 -0
  80. data/lib/web/wiki.rb +557 -0
  81. data/lib/web/wiki/linker.rb +72 -0
  82. data/lib/web/wiki/page.rb +201 -0
  83. data/lib/webunit.rb +27 -0
  84. data/lib/webunit/assert.rb +152 -0
  85. data/lib/webunit/converter.rb +154 -0
  86. data/lib/webunit/cookie.rb +118 -0
  87. data/lib/webunit/domwalker.rb +185 -0
  88. data/lib/webunit/exception.rb +14 -0
  89. data/lib/webunit/form.rb +116 -0
  90. data/lib/webunit/frame.rb +37 -0
  91. data/lib/webunit/htmlelem.rb +122 -0
  92. data/lib/webunit/image.rb +26 -0
  93. data/lib/webunit/jscript.rb +31 -0
  94. data/lib/webunit/link.rb +33 -0
  95. data/lib/webunit/params.rb +321 -0
  96. data/lib/webunit/parser.rb +229 -0
  97. data/lib/webunit/response.rb +464 -0
  98. data/lib/webunit/runtest.rb +41 -0
  99. data/lib/webunit/table.rb +148 -0
  100. data/lib/webunit/testcase.rb +45 -0
  101. data/lib/webunit/ui/cui/testrunner.rb +50 -0
  102. data/lib/webunit/utils.rb +68 -0
  103. data/lib/webunit/webunit.rb +28 -0
  104. data/test/dev/action.rb +83 -0
  105. data/test/dev/forms.rb +104 -0
  106. data/test/dev/forms2.rb +104 -0
  107. data/test/dev/parser.rb +17 -0
  108. data/test/dev/scripts/dump.rb +24 -0
  109. data/test/dev/scripts/makedist.rb +62 -0
  110. data/test/dev/scripts/uri.rb +41 -0
  111. data/test/dev/scripts/uri/common.rb +432 -0
  112. data/test/dev/scripts/uri/ftp.rb +149 -0
  113. data/test/dev/scripts/uri/generic.rb +1106 -0
  114. data/test/dev/scripts/uri/http.rb +76 -0
  115. data/test/dev/scripts/uri/https.rb +26 -0
  116. data/test/dev/scripts/uri/ldap.rb +238 -0
  117. data/test/dev/scripts/uri/mailto.rb +260 -0
  118. data/test/dev/scripts/urireg.rb +174 -0
  119. data/test/dev/simpledispatcher.rb +156 -0
  120. data/test/dev/test.action.rb +146 -0
  121. data/test/dev/test.formreader.rb +463 -0
  122. data/test/dev/test.simpledispatcher.rb +186 -0
  123. data/test/dev/webunit/conv/digit-0.rb +21 -0
  124. data/test/dev/webunit/conv/digit-1.rb +17 -0
  125. data/test/dev/webunit/conv/digit.rb +23 -0
  126. data/test/dev/webunit/conv/test_digit-0.rb +16 -0
  127. data/test/dev/webunit/conv/test_digit-1.rb +19 -0
  128. data/test/dev/webunit/conv/test_digit.rb +26 -0
  129. data/test/dev/webunit/conv/test_digit_view-0.rb +76 -0
  130. data/test/dev/webunit/conv/test_digit_view-1.rb +102 -0
  131. data/test/dev/webunit/conv/test_digit_view.rb +134 -0
  132. data/test/installation/htdocs/cgi_test.rb +296 -0
  133. data/test/installation/htdocs/test_install.rb +4 -0
  134. data/test/installation/runwebtest.rb +5 -0
  135. data/test/installation/test_cookie.rb +128 -0
  136. data/test/installation/test_form.rb +47 -0
  137. data/test/installation/test_multipart.rb +51 -0
  138. data/test/installation/test_request.rb +24 -0
  139. data/test/installation/test_response.rb +35 -0
  140. data/test/unit/htdocs/cookie.rb +32 -0
  141. data/test/unit/htdocs/multipart.rb +28 -0
  142. data/test/unit/htdocs/redirect.rb +12 -0
  143. data/test/unit/htdocs/simple.rb +13 -0
  144. data/test/unit/htdocs/stock.rb +33 -0
  145. data/test/unit/test_assert.rb +162 -0
  146. data/test/unit/test_cookie.rb +114 -0
  147. data/test/unit/test_domwalker.rb +77 -0
  148. data/test/unit/test_form.rb +42 -0
  149. data/test/unit/test_frame.rb +40 -0
  150. data/test/unit/test_htmlelem.rb +74 -0
  151. data/test/unit/test_image.rb +45 -0
  152. data/test/unit/test_jscript.rb +57 -0
  153. data/test/unit/test_link.rb +85 -0
  154. data/test/unit/test_multipart.rb +51 -0
  155. data/test/unit/test_params.rb +210 -0
  156. data/test/unit/test_parser.rb +53 -0
  157. data/test/unit/test_response.rb +150 -0
  158. data/test/unit/test_table.rb +70 -0
  159. data/test/unit/test_utils.rb +106 -0
  160. data/test/unit/test_webunit.rb +28 -0
  161. data/test/web/mod_ruby_stub.rb +39 -0
  162. data/test/web/test.assertinclude.rb +109 -0
  163. data/test/web/test.buffer.rb +182 -0
  164. data/test/web/test.code.loader.rb +78 -0
  165. data/test/web/test.config.rb +31 -0
  166. data/test/web/test.error.handling.rb +91 -0
  167. data/test/web/test.formreader-2.0.rb +352 -0
  168. data/test/web/test.load.rb +125 -0
  169. data/test/web/test.mime-type.rb +23 -0
  170. data/test/web/test.narf.cgi.rb +106 -0
  171. data/test/web/test.phprb.rb +239 -0
  172. data/test/web/test.request.rb +368 -0
  173. data/test/web/test.response.rb +637 -0
  174. data/test/web/test.ruby-web.rb +10 -0
  175. data/test/web/test.session.rb +50 -0
  176. data/test/web/test.shim.cgi.rb +96 -0
  177. data/test/web/test.tagparser.rb +65 -0
  178. data/test/web/test.template2.rb +297 -0
  179. data/test/web/test.testing2.rb +318 -0
  180. data/test/web/test.upload.rb +45 -0
  181. data/test/web/test.validate.rb +46 -0
  182. data/test/web/test.web.test.rb +495 -0
  183. data/test/wiki/test.history.rb +297 -0
  184. data/test/wiki/test.illustration_page.rb +287 -0
  185. data/test/wiki/test.linker.rb +197 -0
  186. data/test/wiki/test.tarpit.rb +56 -0
  187. data/test/wiki/test.wiki.rb +300 -0
  188. data/test/wikitestroot/admin.rb +7 -0
  189. data/test/wikitestroot/wiki.rb +6 -0
  190. metadata +234 -0
@@ -0,0 +1,474 @@
1
+ ------------------------------------------------------------------------
2
+ rev 122: patsplat | 2005-02-25 23:28:21 -0500 (Fri, 25 Feb 2005) | 2 lines
3
+
4
+ tweaks for narf.c on linux ~ pat
5
+
6
+ ------------------------------------------------------------------------
7
+ rev 121: patsplat | 2005-02-19 02:32:27 -0500 (Sat, 19 Feb 2005) | 1 line
8
+
9
+ made fixes so narf would compile on unix dynamically via rbconfig settings ~ patrick
10
+ ------------------------------------------------------------------------
11
+ rev 120: patsplat | 2005-02-15 22:58:49 -0500 (Tue, 15 Feb 2005) | 1 line
12
+
13
+ tweaked compile rules ~ pat
14
+ ------------------------------------------------------------------------
15
+ rev 119: patsplat | 2005-02-15 22:55:52 -0500 (Tue, 15 Feb 2005) | 1 line
16
+
17
+ added windows cgi documentation ~ pat
18
+ ------------------------------------------------------------------------
19
+ rev 117: patsplat | 2005-02-14 15:31:23 -0500 (Mon, 14 Feb 2005) | 1 line
20
+
21
+ Preparing for 0.7.2 release
22
+ ------------------------------------------------------------------------
23
+ rev 115: patsplat | 2005-02-13 04:09:54 -0500 (Sun, 13 Feb 2005) | 1 line
24
+
25
+ settling in for another release ~ pat
26
+ ------------------------------------------------------------------------
27
+ rev 113: patsplat | 2005-02-13 03:33:38 -0500 (Sun, 13 Feb 2005) | 1 line
28
+
29
+ Preparing for 0.7.0 release
30
+ ------------------------------------------------------------------------
31
+ rev 112: patsplat | 2005-02-13 03:32:11 -0500 (Sun, 13 Feb 2005) | 1 line
32
+
33
+ settling in for another release ~ pat
34
+ ------------------------------------------------------------------------
35
+ rev 111: patsplat | 2005-02-12 02:52:38 -0500 (Sat, 12 Feb 2005) | 1 line
36
+
37
+ calling all platforms: work on the new narf! ~ pat
38
+ ------------------------------------------------------------------------
39
+ rev 110: patsplat | 2005-02-09 00:38:05 -0500 (Wed, 09 Feb 2005) | 1 line
40
+
41
+ made narf runner work for rb and narf files, by extension ~ pat
42
+ ------------------------------------------------------------------------
43
+ rev 109: patsplat | 2005-02-08 04:51:42 -0500 (Tue, 08 Feb 2005) | 1 line
44
+
45
+ cleaned up a bunch of broken tests ~ pat
46
+ ------------------------------------------------------------------------
47
+ rev 108: patsplat | 2005-02-08 01:36:45 -0500 (Tue, 08 Feb 2005) | 1 line
48
+
49
+ spiked out more changes to Web::send_libfile ~ pat
50
+ ------------------------------------------------------------------------
51
+ rev 107: patsplat | 2005-02-08 00:01:24 -0500 (Tue, 08 Feb 2005) | 1 line
52
+
53
+ added hightlight table code; updated cgi.report_err to report to as well as browser ~ pat
54
+ ------------------------------------------------------------------------
55
+ rev 106: patsplat | 2005-02-07 23:46:28 -0500 (Mon, 07 Feb 2005) | 1 line
56
+
57
+ Better error msgs on syntax errors ~ pat
58
+ ------------------------------------------------------------------------
59
+ rev 105: patsplat | 2005-02-05 13:47:29 -0500 (Sat, 05 Feb 2005) | 1 line
60
+
61
+ more tweaks to make .narf files work ~ pat
62
+ ------------------------------------------------------------------------
63
+ rev 104: patsplat | 2005-02-04 01:04:05 -0500 (Fri, 04 Feb 2005) | 1 line
64
+
65
+ more tweaks to narf.c... let's see if it works tomorrow
66
+ ------------------------------------------------------------------------
67
+ rev 103: patsplat | 2005-02-04 01:01:00 -0500 (Fri, 04 Feb 2005) | 1 line
68
+
69
+ maybe this narf.exe is working? ~ pat
70
+ ------------------------------------------------------------------------
71
+ rev 102: patsplat | 2005-01-27 18:17:11 -0500 (Thu, 27 Jan 2005) | 1 line
72
+
73
+ Fixed install instructions to account for rubygem installation ~ patrick
74
+ ------------------------------------------------------------------------
75
+ rev 101: patsplat | 2005-01-21 02:12:21 -0500 (Fri, 21 Jan 2005) | 1 line
76
+
77
+ Narf works on windows, nanny nanny boo boo ~ pat
78
+ ------------------------------------------------------------------------
79
+ rev 100: patsplat | 2005-01-21 01:37:59 -0500 (Fri, 21 Jan 2005) | 1 line
80
+
81
+ narf compiles on windows! Thanks, rubygarden wiki! ~ pat
82
+ ------------------------------------------------------------------------
83
+ rev 99: patsplat | 2005-01-19 00:39:04 -0500 (Wed, 19 Jan 2005) | 72 lines
84
+
85
+ + bin/narf works!
86
+
87
+ I believe that commitment is good. I found this tract, of the horrors of the commitment phobe, at:
88
+
89
+ http://commitment-phobia.com/bookexcerpt.html
90
+
91
+ Please enjoy!
92
+
93
+ ~ patrick
94
+
95
+ HOOK, LINE, AND SINK HER!
96
+
97
+ Falling in love with the commitmentphobe is the easiest thing in the world to do! The thing about the commitmentphobe is that he (or she) usually comes on very strong in the beginning stages of the relationship. They will hold nothing back to win the heart of their 'victim'. They spend money freely, lavish you with gifts, smother you with attention, compliment your every move, rush to help you out, paint your living room, change your oil...etc. They quickly make you feel extremely special - and lovable - and very desirable - and wanted - and attractive - and wonderful - and, well, you get the picture :) It is hard to resist falling in love with the commitmentphobe! How can you resist someone who thinks that you are just so incredibly special and adorable? They will even make references to the future using the 'we' word, making you believe that a future with this man (woman) is indeed possible - and probable! (If you question the commitmentphobe about past relationships, they will probably tell you about many failed relationships - but make you believe it was just because they hadn't found anyone as 'wonderful' and 'special' as you!)
98
+
99
+ Beginning Stages
100
+
101
+ * he comes on strong and shows more interest in you than you do in him
102
+ * he tells you that you are special, or indicates your 'specialness' in other ways
103
+ * even though he has many failed relationships, he makes you feel that it was just because he has never met anyone like you
104
+ * he goes out of his way to impress you
105
+ he comes on as 'needy' and 'vulnerable', you almost feel sorry for him
106
+ * he hints around that he is looking for a more 'permanent' and stable relationship, and drops clues of marriage
107
+ * goes out of his way to be with you, do things for you, even canceling other plans and disrespecting his friends
108
+ * he calls you up just to say 'hi' - often
109
+ * he refers to you both in the future sense, "when 'we' go to Bahamas 'next year', I want to buy you that..."
110
+ * he acts as if you are the number one priority in his life
111
+ * he is sympathetic to women's plights, and often belittles other men who treat women poorly
112
+ * he goes out of his way to earn your trust
113
+ * he tries to convince you to 'commit' to him exclusively or sexually
114
+
115
+ What can I say - by now you're sunk!
116
+
117
+ Once he has won your heart over is when you start getting very subtle hints and clues that there is something very terribly wrong about the relationship. But you are so 'brainwashed' from his massive 'win-you-over' campaign that it doesn't even occur to you that this man has problems. After all, he is MADLY in love with you - he would never leave you !
118
+
119
+ Middle of the Relationship
120
+
121
+ * he seems to be very slowly and gradually diminishing his time, calls, and attentiveness towards you
122
+ * he is sending you mixed messages and confusing his emotions, "come here - go away"
123
+ * he compartmentalizes his life with you and his life without you
124
+ * he is uncomfortable in your 'territory', i.e. your friends, family, and social group
125
+ * he starts to make you less of a priority in his life and he has 'rational' reasons why - which you buy because 'he is just sooooo in love with you'
126
+ * your sex life changes - he may become less aggressive, leaving you to initiate sex more
127
+ * your time together starts to become scheduled. You feel more like a 'duty' or a 'chore' of his, then an actual part of his life. There is *His Life* and then there is *His Life With You*. You are not allowed in *His Life* - you are excluded from meeting/knowing his friends, family, career associates, etc., they are considered 'forbidden territory' to you. You are not included in his hobbies, sports, weekend activities, children, etc.
128
+ * he twists your simple expectations, accusing you of pressuring him with 'demands', and he turns your innocent requests into accusations that you are 'nagging' and 'trying to control' him
129
+ * your needs aren't getting met, and you feel as if he isn't really 'listening' to you, or 'hearing' what you are saying
130
+ * he points out the good things about you, but acts almost resentful and uncomfortable when you display these things
131
+ * there seems to be some issues that make it hard for him to easily visit you or stay with you (i.e. you live too far, he doesn't like your cat)
132
+ * he starts major fault-finding, and blatantly points out your flaws - real or imagined (this is the stage where your ego is crushed and your self-esteem takes a massive nose-dive. He will concentrate on the one thing about you that you CAN'T change - such as your religion, your height, your skin tone, your family, your financial status, etc.) He exaggerates your faults and flaws to enormous proportions
133
+ * you start to suspect he is seeing others
134
+ * he lies to you about his life 'outside' of you
135
+ * he agrees to change and makes a big show of remorse. He acts confused and conflicted - you actually feel sorry for him
136
+ * the relationship stops growing, and he refuses to 'talk' about the relationship, or avoids making committed changes
137
+
138
+ It is at this stage in the relationship that you think you just need to love him stronger, or do even more 'wifely' things for him. You cook his favorite foods, wear your sexiest negligees - etc. BUT the more you love him - the more you end up pushing him away. The more you try to be an 'understanding wife' figure, the more he feels the impending threat of 'commitment'. Your loving intentions only serve to drive the commitmentphobe further away.
139
+
140
+ He will start to find fault in you - this is his way of always having an 'out'. He stores these 'flaws' subconsciously, thinking to himself, "well, I could NEVER marry her - I couldn't possibly spend my life with a woman who is only 5'1" - I love long legs!" He needs these flaws to use as an excuse when the time comes to exit (and the time WILL come!)
141
+
142
+ The problem with the Middle Stage is that in your mind you are still in the Beginning Stage. You still think he is madly head-over-heels in love with you and would never, ever leave you. You are still delusional from the intensity of his 'beginning' love. You start to think that maybe you are doing something wrong, and so you try harder to show him your love. You even do 'wifely' things to show him how good a wife you would be if he were to marry you. All this does is drive the fear of commitment closer to his conscious mind and he starts to panic! He needs to get out of the relationship because he feels like he can't breathe. Being around you causes him anxiety attacks. Unfortunately, since he is a commitmentphobe that means he can't commit - either way. He can't commit to being with you forever, yet he can't commit to not being with you forever, either . So, he can't find the courage to leave you. Thus, he decides that he will make you do the leaving!
143
+
144
+ The End of the Relationship
145
+
146
+ * he finds constant fault with you
147
+ * he starts dating other women, in hopes that you will catch him (yet, surprisingly, if you do catch him he will cry and beg for forgiveness - that's because he still can't commit to not having you!)
148
+ * he spends less and less time with you
149
+ * he ignores your needs and wants
150
+
151
+ The hardest breakup in the world is that with the commitmentphobe. You are left confused, wondering what you did wrong. He loved you so much that you must have done something terribly wrong to kill that love. You have been belittled, insulted, and nit-picked to the point where your ego is crushed, you have low self-esteem, you feel rejected, unloveable, unworthy, unacceptable, and excluded. You wonder how anybody would ever want to be with you - you are just so horrible. And the funny thing is is that you want to get him back because you believe only he can make you feel better. Because it is he who made you feel so bad.
152
+
153
+ The commitmentphobe isn't a bad person - he just simply has a phobia of being 'trapped', much as a claustrophobic fears confinement in small places, or a demophobic fears being in crowds. This fear is so intense that, even though he can love another very much, he feels an intense need to be 'free' of them. Feeling pressured for a commitment can cause him to have a panic attack. He searches for a way out in the end just as hard as he searched for a way 'in' in the beginning.
154
+
155
+ Tigress Luv.
156
+
157
+ ------------------------------------------------------------------------
158
+ rev 98: patsplat | 2005-01-17 17:59:03 -0500 (Mon, 17 Jan 2005) | 1 line
159
+
160
+ more interim changes
161
+ ------------------------------------------------------------------------
162
+ rev 97: patsplat | 2005-01-17 17:58:33 -0500 (Mon, 17 Jan 2005) | 1 line
163
+
164
+ interim commit -- working on narf.c
165
+ ------------------------------------------------------------------------
166
+ rev 96: patsplat | 2005-01-17 00:36:23 -0500 (Mon, 17 Jan 2005) | 3 lines
167
+
168
+ + BIG milestone: got narf to run php style <? ... ?>, using erb
169
+
170
+
171
+ ------------------------------------------------------------------------
172
+ rev 95: patsplat | 2005-01-15 01:38:03 -0500 (Sat, 15 Jan 2005) | 5 lines
173
+
174
+ pulled in ERB, changed percents to questions and renamed to PHPRB. Eventually, I'd like to make both percents and questions work. But I just hate percents and asp.
175
+
176
+ ~ patrick
177
+
178
+
179
+ ------------------------------------------------------------------------
180
+ rev 94: patsplat | 2005-01-15 00:12:41 -0500 (Sat, 15 Jan 2005) | 1 line
181
+
182
+ don't need this test runner anymore
183
+ ------------------------------------------------------------------------
184
+ rev 93: patsplat | 2005-01-15 00:11:06 -0500 (Sat, 15 Jan 2005) | 1 line
185
+
186
+ file system tweaks ~ pat
187
+ ------------------------------------------------------------------------
188
+ rev 92: patsplat | 2005-01-15 00:06:59 -0500 (Sat, 15 Jan 2005) | 1 line
189
+
190
+ more cleanups ~ pat
191
+ ------------------------------------------------------------------------
192
+ rev 91: patsplat | 2005-01-15 00:03:03 -0500 (Sat, 15 Jan 2005) | 1 line
193
+
194
+ cleanups ~ pat
195
+ ------------------------------------------------------------------------
196
+ rev 90: patsplat | 2005-01-15 00:00:02 -0500 (Sat, 15 Jan 2005) | 1 line
197
+
198
+ small tweaks here and there
199
+ ------------------------------------------------------------------------
200
+ rev 89: patsplat | 2005-01-14 22:29:00 -0500 (Fri, 14 Jan 2005) | 1 line
201
+
202
+ + bugfix to info example
203
+ ------------------------------------------------------------------------
204
+ rev 88: patsplat | 2005-01-14 22:26:49 -0500 (Fri, 14 Jan 2005) | 1 line
205
+
206
+ + improved error messages
207
+ ------------------------------------------------------------------------
208
+ rev 87: patsplat | 2005-01-14 20:39:55 -0500 (Fri, 14 Jan 2005) | 1 line
209
+
210
+ tweaks to the previous commit ~ pat
211
+ ------------------------------------------------------------------------
212
+ rev 86: patsplat | 2005-01-14 20:03:20 -0500 (Fri, 14 Jan 2005) | 13 lines
213
+
214
+ + added Web::info function
215
+ + merged install tests behind Web::info,
216
+ aka to test an installation, run Web::info
217
+ on a script, and run the install tests
218
+ against the script's url with
219
+
220
+ ruby build.rb testinstall http://localhost/test_install.cgi
221
+
222
+ + improved template for error reporting
223
+
224
+ ~ patrick
225
+
226
+
227
+ ------------------------------------------------------------------------
228
+ rev 82: patsplat | 2005-01-11 22:43:59 -0500 (Tue, 11 Jan 2005) | 1 line
229
+
230
+ midway through deleting webunit.....
231
+ ------------------------------------------------------------------------
232
+ rev 77: patsplat | 2005-01-04 23:37:25 -0500 (Tue, 04 Jan 2005) | 1 line
233
+
234
+ still moving bits around ~ pat
235
+ ------------------------------------------------------------------------
236
+ rev 76: patsplat | 2005-01-04 23:35:56 -0500 (Tue, 04 Jan 2005) | 1 line
237
+
238
+ more tidying of installation tests... ~ pat
239
+ ------------------------------------------------------------------------
240
+ rev 75: patsplat | 2005-01-04 23:34:33 -0500 (Tue, 04 Jan 2005) | 2 lines
241
+
242
+ Importing webunit tests in a different directory
243
+
244
+ ------------------------------------------------------------------------
245
+ rev 74: patsplat | 2004-12-23 23:37:52 -0500 (Thu, 23 Dec 2004) | 1 line
246
+
247
+ interim commit to get rid of webunit files ~ pat
248
+ ------------------------------------------------------------------------
249
+ rev 69: patsplat | 2004-11-11 00:36:07 -0500 (Thu, 11 Nov 2004) | 1 line
250
+
251
+ Updated ChangeLog for 0.6.2
252
+ ------------------------------------------------------------------------
253
+ rev 68: patsplat | 2004-11-11 00:35:03 -0500 (Thu, 11 Nov 2004) | 1 line
254
+
255
+ updated gemspec for release ~ pat
256
+ ------------------------------------------------------------------------
257
+ rev 67: patsplat | 2004-11-11 00:33:51 -0500 (Thu, 11 Nov 2004) | 1 line
258
+
259
+ fixed wiki save methods to prevent page corruption on yaml errors. ~ pat
260
+ ------------------------------------------------------------------------
261
+ rev 65: patsplat | 2004-11-03 01:15:05 -0500 (Wed, 03 Nov 2004) | 1 line
262
+
263
+ Updated ChangeLog for 0.6.1
264
+ ------------------------------------------------------------------------
265
+ rev 64: patsplat | 2004-11-03 01:03:41 -0500 (Wed, 03 Nov 2004) | 1 line
266
+
267
+ testing code made it too far
268
+ ------------------------------------------------------------------------
269
+ rev 62: patsplat | 2004-11-03 00:39:47 -0500 (Wed, 03 Nov 2004) | 1 line
270
+
271
+ Updated ChangeLog for 0.6.0
272
+ ------------------------------------------------------------------------
273
+ rev 61: patsplat | 2004-11-03 00:35:31 -0500 (Wed, 03 Nov 2004) | 1 line
274
+
275
+ added escapeHTML methods from cgi.rb; setup tarpit to accept IP ranges ~ pat
276
+ ------------------------------------------------------------------------
277
+ rev 60: patsplat | 2004-10-31 17:04:24 -0500 (Sun, 31 Oct 2004) | 1 line
278
+
279
+ fixed multipart bug ~pat
280
+ ------------------------------------------------------------------------
281
+ rev 59: patsplat | 2004-10-04 00:47:29 -0400 (Mon, 04 Oct 2004) | 1 line
282
+
283
+ re-arrangements ~ pat
284
+ ------------------------------------------------------------------------
285
+ rev 58: patsplat | 2004-10-03 11:42:02 -0400 (Sun, 03 Oct 2004) | 1 line
286
+
287
+ documention tweaks ~ pat
288
+ ------------------------------------------------------------------------
289
+ rev 57: patsplat | 2004-10-03 11:27:46 -0400 (Sun, 03 Oct 2004) | 1 line
290
+
291
+ re-arranged documentation ~ pat
292
+ ------------------------------------------------------------------------
293
+ rev 56: patsplat | 2004-10-03 10:45:08 -0400 (Sun, 03 Oct 2004) | 1 line
294
+
295
+ made Web::env case insensitive (because who cares about case anyways?) ~ pat
296
+ ------------------------------------------------------------------------
297
+ rev 55: patsplat | 2004-10-01 20:25:15 -0400 (Fri, 01 Oct 2004) | 1 line
298
+
299
+ added Web::clear & fixed trivial failures in test.assertincludes.rb for 1.6 -> 1.8 ~ pat
300
+ ------------------------------------------------------------------------
301
+ rev 54: patsplat | 2004-09-04 01:06:48 -0400 (Sat, 04 Sep 2004) | 1 line
302
+
303
+ more documentation fixes ~ pat
304
+ ------------------------------------------------------------------------
305
+ rev 52: patsplat | 2004-09-03 18:21:33 -0400 (Fri, 03 Sep 2004) | 1 line
306
+
307
+ Updated ChangeLog for 0.5.1
308
+ ------------------------------------------------------------------------
309
+ rev 51: patsplat | 2004-09-03 18:20:36 -0400 (Fri, 03 Sep 2004) | 1 line
310
+
311
+ added inatallation notes ~ pat
312
+ ------------------------------------------------------------------------
313
+ rev 49: patsplat | 2004-09-03 18:19:24 -0400 (Fri, 03 Sep 2004) | 1 line
314
+
315
+ Updated ChangeLog for 0.5.0
316
+ ------------------------------------------------------------------------
317
+ rev 48: patsplat | 2004-09-03 17:45:52 -0400 (Fri, 03 Sep 2004) | 1 line
318
+
319
+ teaking /narf/sapi ~ pat
320
+ ------------------------------------------------------------------------
321
+ rev 47: patsplat | 2004-09-03 17:45:05 -0400 (Fri, 03 Sep 2004) | 1 line
322
+
323
+ teaking /narf/sapi ~ pat
324
+ ------------------------------------------------------------------------
325
+ rev 46: patsplat | 2004-09-03 08:01:23 -0400 (Fri, 03 Sep 2004) | 1 line
326
+
327
+ made mod_ruby work ~ pat
328
+ ------------------------------------------------------------------------
329
+ rev 45: patsplat | 2004-09-01 01:01:01 -0400 (Wed, 01 Sep 2004) | 1 line
330
+
331
+ fastcgi and webrick down, mod_ruby to go. bleck ~ pat
332
+ ------------------------------------------------------------------------
333
+ rev 44: patsplat | 2004-09-01 00:22:14 -0400 (Wed, 01 Sep 2004) | 1 line
334
+
335
+ blegh. ~ pat
336
+ ------------------------------------------------------------------------
337
+ rev 43: patsplat | 2004-08-29 03:47:38 -0400 (Sun, 29 Aug 2004) | 1 line
338
+
339
+ refactorings towards supporting cgi/cgd ~ pat
340
+ ------------------------------------------------------------------------
341
+ rev 42: patsplat | 2004-08-28 16:09:12 -0400 (Sat, 28 Aug 2004) | 1 line
342
+
343
+ added webrick test site for testing server apis ~ pat
344
+ ------------------------------------------------------------------------
345
+ rev 41: patsplat | 2004-08-28 16:00:01 -0400 (Sat, 28 Aug 2004) | 1 line
346
+
347
+ minor changes, cleaning things up ~ pat
348
+ ------------------------------------------------------------------------
349
+ rev 40: patsplat | 2004-08-28 15:53:08 -0400 (Sat, 28 Aug 2004) | 1 line
350
+
351
+ still fiddling ~ pat
352
+ ------------------------------------------------------------------------
353
+ rev 39: patsplat | 2004-08-28 15:52:24 -0400 (Sat, 28 Aug 2004) | 1 line
354
+
355
+ starting a php style sapi ~ pat
356
+ ------------------------------------------------------------------------
357
+ rev 37: patsplat | 2004-08-24 03:04:37 -0400 (Tue, 24 Aug 2004) | 1 line
358
+
359
+ Updated ChangeLog for 0.4.5
360
+ ------------------------------------------------------------------------
361
+ rev 36: patsplat | 2004-08-24 03:03:02 -0400 (Tue, 24 Aug 2004) | 1 line
362
+
363
+ refactorings and documentation work ~ pat
364
+ ------------------------------------------------------------------------
365
+ rev 35: patsplat | 2004-08-23 05:52:43 -0400 (Mon, 23 Aug 2004) | 1 line
366
+
367
+ refactorings and documentation improvements ~ pat
368
+ ------------------------------------------------------------------------
369
+ rev 34: patsplat | 2004-08-15 03:50:30 -0400 (Sun, 15 Aug 2004) | 1 line
370
+
371
+ added Web[]= ~ pat
372
+ ------------------------------------------------------------------------
373
+ rev 33: patsplat | 2004-08-15 03:37:03 -0400 (Sun, 15 Aug 2004) | 1 line
374
+
375
+ made allowed_actions dynamic ~ pat
376
+ ------------------------------------------------------------------------
377
+ rev 32: patsplat | 2004-08-15 03:25:52 -0400 (Sun, 15 Aug 2004) | 1 line
378
+
379
+ tweaks to how wiki save action works ~ pat
380
+ ------------------------------------------------------------------------
381
+ rev 31: patsplat | 2004-08-15 03:07:44 -0400 (Sun, 15 Aug 2004) | 1 line
382
+
383
+ tweaks to basename default ~ pat
384
+ ------------------------------------------------------------------------
385
+ rev 30: patsplat | 2004-08-15 02:53:55 -0400 (Sun, 15 Aug 2004) | 1 line
386
+
387
+ made changes to the api for testing checkboxes ~ pat
388
+ ------------------------------------------------------------------------
389
+ rev 29: patsplat | 2004-07-04 13:50:50 -0400 (Sun, 04 Jul 2004) | 1 line
390
+
391
+ fixed build process for apache narf runner ~ pat
392
+ ------------------------------------------------------------------------
393
+ rev 28: patsplat | 2004-07-04 03:37:43 -0400 (Sun, 04 Jul 2004) | 1 line
394
+
395
+ doc changes ~ pat
396
+ ------------------------------------------------------------------------
397
+ rev 27: patsplat | 2004-06-30 00:32:28 -0400 (Wed, 30 Jun 2004) | 1 line
398
+
399
+ made Web::Unit work ~ pat
400
+ ------------------------------------------------------------------------
401
+ rev 26: patsplat | 2004-06-27 14:54:51 -0400 (Sun, 27 Jun 2004) | 1 line
402
+
403
+ documentation fixes ~ patrick
404
+ ------------------------------------------------------------------------
405
+ rev 25: patsplat | 2004-06-26 15:27:21 -0400 (Sat, 26 Jun 2004) | 1 line
406
+
407
+ doc changes ~ pat
408
+ ------------------------------------------------------------------------
409
+ rev 23: patsplat | 2004-06-22 00:04:31 -0400 (Tue, 22 Jun 2004) | 1 line
410
+
411
+ Updated ChangeLog for 0.4.4
412
+ ------------------------------------------------------------------------
413
+ rev 22: patsplat | 2004-06-21 23:57:42 -0400 (Mon, 21 Jun 2004) | 1 line
414
+
415
+ more dhtml tweaks
416
+ ------------------------------------------------------------------------
417
+ rev 20: patsplat | 2004-06-21 00:54:04 -0400 (Mon, 21 Jun 2004) | 1 line
418
+
419
+ Updated ChangeLog for 0.4.3
420
+ ------------------------------------------------------------------------
421
+ rev 19: patsplat | 2004-06-21 00:52:40 -0400 (Mon, 21 Jun 2004) | 1 line
422
+
423
+
424
+ ------------------------------------------------------------------------
425
+ rev 18: patsplat | 2004-06-21 00:50:19 -0400 (Mon, 21 Jun 2004) | 1 line
426
+
427
+ I hate DHTML. more fixes ~ patrick
428
+ ------------------------------------------------------------------------
429
+ rev 17: patsplat | 2004-06-21 00:43:49 -0400 (Mon, 21 Jun 2004) | 1 line
430
+
431
+ some more javascript tweaks. htmlarea integration has proved to be bumpy. Things should be better now, though. ~ patrick
432
+ ------------------------------------------------------------------------
433
+ rev 15: patsplat | 2004-06-20 23:42:32 -0400 (Sun, 20 Jun 2004) | 1 line
434
+
435
+ Updated ChangeLog for 0.4.2
436
+ ------------------------------------------------------------------------
437
+ rev 14: patsplat | 2004-06-20 23:33:35 -0400 (Sun, 20 Jun 2004) | 1 line
438
+
439
+ more lil bug fixes ~ pat
440
+ ------------------------------------------------------------------------
441
+ rev 11: patsplat | 2004-06-20 21:01:25 -0400 (Sun, 20 Jun 2004) | 1 line
442
+
443
+ Updated ChangeLog for 0.4.1
444
+ ------------------------------------------------------------------------
445
+ rev 10: patsplat | 2004-06-20 21:01:00 -0400 (Sun, 20 Jun 2004) | 1 line
446
+
447
+ fixed embed image and download links ~ pat
448
+ ------------------------------------------------------------------------
449
+ rev 9: patsplat | 2004-06-20 14:03:04 -0400 (Sun, 20 Jun 2004) | 1 line
450
+
451
+ fixes to makedist.rb ~ pat
452
+ ------------------------------------------------------------------------
453
+ rev 6: patsplat | 2004-06-20 13:42:44 -0400 (Sun, 20 Jun 2004) | 1 line
454
+
455
+ Updated ChangeLog for 0.4.1
456
+ ------------------------------------------------------------------------
457
+ rev 5: patsplat | 2004-06-20 13:16:48 -0400 (Sun, 20 Jun 2004) | 1 line
458
+
459
+ integrated htmlarea, aka added strike-through. ~ pat
460
+ ------------------------------------------------------------------------
461
+ rev 3: patsplat | 2004-05-18 21:54:13 -0400 (Tue, 18 May 2004) | 1 line
462
+
463
+ more work to do to make new web testing formreader stuff work. fixed incompatibilities, but need to rework some stuff
464
+ ------------------------------------------------------------------------
465
+ rev 2: patsplat | 2004-05-18 20:52:51 -0400 (Tue, 18 May 2004) | 2 lines
466
+
467
+ Import of narf. might have problems
468
+
469
+ ------------------------------------------------------------------------
470
+ rev 1: patsplat | 2004-05-18 20:37:26 -0400 (Tue, 18 May 2004) | 2 lines
471
+
472
+ Initial repository layout
473
+
474
+ ------------------------------------------------------------------------