ruwiki 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (96) hide show
  1. data/Readme.rubygems +86 -0
  2. data/Readme.tarfile +65 -0
  3. data/bin/ruwiki +58 -0
  4. data/bin/ruwiki.cgi +87 -0
  5. data/bin/ruwiki_convert +56 -0
  6. data/bin/ruwiki_service.rb +82 -0
  7. data/bin/ruwiki_servlet +53 -0
  8. data/contrib/enscript-token.rb +55 -0
  9. data/contrib/rublog_integrator.rb +68 -0
  10. data/data/Default/ProjectIndex.ruwiki +49 -0
  11. data/data/Ruwiki/Antispam.ruwiki +65 -0
  12. data/data/Ruwiki/BugTracking.ruwiki +33 -0
  13. data/data/Ruwiki/ChangeLog.ruwiki +102 -0
  14. data/data/Ruwiki/Configuring_Ruwiki.ruwiki +151 -0
  15. data/data/Ruwiki/Extending_Ruwiki.ruwiki +317 -0
  16. data/data/Ruwiki/LicenseAndAuthorInfo.ruwiki +30 -0
  17. data/data/Ruwiki/ProjectIndex.ruwiki +84 -0
  18. data/data/Ruwiki/Roadmap.ruwiki +225 -0
  19. data/data/Ruwiki/RuwikiTemplatingLibrary.ruwiki +156 -0
  20. data/data/Ruwiki/RuwikiUtilities.ruwiki +157 -0
  21. data/data/Ruwiki/SandBox.ruwiki +9 -0
  22. data/data/Ruwiki/To_Do.ruwiki +51 -0
  23. data/data/Ruwiki/TroubleShooting.ruwiki +33 -0
  24. data/data/Ruwiki/WikiFeatures.ruwiki +17 -0
  25. data/data/Ruwiki/WikiMarkup.ruwiki +261 -0
  26. data/data/Tutorial/AddingPages.ruwiki +16 -0
  27. data/data/Tutorial/AddingProjects.ruwiki +16 -0
  28. data/data/Tutorial/ProjectIndex.ruwiki +11 -0
  29. data/data/Tutorial/SandBox.ruwiki +9 -0
  30. data/data/agents.banned +60 -0
  31. data/data/agents.readonly +321 -0
  32. data/data/hostip.banned +30 -0
  33. data/data/hostip.readonly +28 -0
  34. data/lib/ruwiki.rb +622 -0
  35. data/lib/ruwiki/auth.rb +56 -0
  36. data/lib/ruwiki/auth/gforge.rb +73 -0
  37. data/lib/ruwiki/backend.rb +318 -0
  38. data/lib/ruwiki/backend/flatfiles.rb +217 -0
  39. data/lib/ruwiki/config.rb +244 -0
  40. data/lib/ruwiki/exportable.rb +192 -0
  41. data/lib/ruwiki/handler.rb +342 -0
  42. data/lib/ruwiki/lang/de.rb +339 -0
  43. data/lib/ruwiki/lang/en.rb +334 -0
  44. data/lib/ruwiki/lang/es.rb +339 -0
  45. data/lib/ruwiki/page.rb +262 -0
  46. data/lib/ruwiki/servlet.rb +38 -0
  47. data/lib/ruwiki/template.rb +553 -0
  48. data/lib/ruwiki/utils.rb +24 -0
  49. data/lib/ruwiki/utils/command.rb +102 -0
  50. data/lib/ruwiki/utils/converter.rb +297 -0
  51. data/lib/ruwiki/utils/manager.rb +639 -0
  52. data/lib/ruwiki/utils/servletrunner.rb +295 -0
  53. data/lib/ruwiki/wiki.rb +147 -0
  54. data/lib/ruwiki/wiki/tokens.rb +136 -0
  55. data/lib/ruwiki/wiki/tokens/00default.rb +211 -0
  56. data/lib/ruwiki/wiki/tokens/01wikilinks.rb +166 -0
  57. data/lib/ruwiki/wiki/tokens/02actions.rb +63 -0
  58. data/lib/ruwiki/wiki/tokens/abbreviations.rb +40 -0
  59. data/lib/ruwiki/wiki/tokens/calendar.rb +147 -0
  60. data/lib/ruwiki/wiki/tokens/headings.rb +43 -0
  61. data/lib/ruwiki/wiki/tokens/lists.rb +112 -0
  62. data/lib/ruwiki/wiki/tokens/rubylists.rb +48 -0
  63. data/ruwiki.conf +22 -0
  64. data/ruwiki.pkg +0 -0
  65. data/templates/default/body.tmpl +19 -0
  66. data/templates/default/content.tmpl +7 -0
  67. data/templates/default/controls.tmpl +23 -0
  68. data/templates/default/edit.tmpl +27 -0
  69. data/templates/default/error.tmpl +14 -0
  70. data/templates/default/footer.tmpl +23 -0
  71. data/templates/default/ruwiki.css +297 -0
  72. data/templates/default/save.tmpl +8 -0
  73. data/templates/sidebar/body.tmpl +19 -0
  74. data/templates/sidebar/content.tmpl +8 -0
  75. data/templates/sidebar/controls.tmpl +8 -0
  76. data/templates/sidebar/edit.tmpl +27 -0
  77. data/templates/sidebar/error.tmpl +13 -0
  78. data/templates/sidebar/footer.tmpl +22 -0
  79. data/templates/sidebar/ruwiki.css +347 -0
  80. data/templates/sidebar/save.tmpl +10 -0
  81. data/templates/simple/body.tmpl +13 -0
  82. data/templates/simple/content.tmpl +7 -0
  83. data/templates/simple/controls.tmpl +8 -0
  84. data/templates/simple/edit.tmpl +25 -0
  85. data/templates/simple/error.tmpl +10 -0
  86. data/templates/simple/footer.tmpl +10 -0
  87. data/templates/simple/ruwiki.css +192 -0
  88. data/templates/simple/save.tmpl +8 -0
  89. data/tests/harness.rb +52 -0
  90. data/tests/tc_backend_flatfile.rb +103 -0
  91. data/tests/tc_bugs.rb +74 -0
  92. data/tests/tc_exportable.rb +64 -0
  93. data/tests/tc_template.rb +145 -0
  94. data/tests/tc_tokens.rb +335 -0
  95. data/tests/testall.rb +20 -0
  96. metadata +182 -0
@@ -0,0 +1,347 @@
1
+ /* $Id: ruwiki.css,v 1.4 2004/11/22 04:53:41 austin Exp $ */
2
+ /*
3
+ * The fixed positioning for what we're doing is based on:
4
+ * http://www.456bereastreet.com/lab/cssframes/
5
+ */
6
+ body, html { margin: 0; padding: 0; }
7
+ /* Prevents content from becoming unreachable in Gecko */
8
+ body { min-width: 720px; }
9
+
10
+ /*
11
+ * position: absolute - scrolls the whole page for all browsers. This also
12
+ * makes the background invisible, so the text doesn't appear between tabs.
13
+ */
14
+ div#rw_header
15
+ {
16
+ position: absolute;
17
+ width: 100%;
18
+ top: 0;
19
+ left: 0;
20
+ height: 2.25em;
21
+ background-color: #F7FEFF;
22
+ }
23
+
24
+ /* position: fixed - header and footer don't scroll; modern browsers */
25
+ body > div#rw_header { position: fixed; }
26
+
27
+ .rw_titlebar
28
+ {
29
+ margin: 0 auto;
30
+ height: 0.5em;
31
+ }
32
+
33
+ /* Normal styling from here on out. */
34
+ body
35
+ {
36
+ color: black;
37
+ font-size: medium;
38
+ font-family: "Trebuchet MS", "Verdana", sans-serif;
39
+ background-color: #F7FEFF;
40
+ }
41
+
42
+ .rw_titlebar
43
+ {
44
+ font-size: 0.7em;
45
+ border: 1px solid #059;
46
+ color: white;
47
+ background-color: #5C9;
48
+ height: 0.5em;
49
+ width: 100%;
50
+ }
51
+
52
+ .rw_titlebar a
53
+ {
54
+ color: white;
55
+ border-bottom: 1px dashed white;
56
+ font-weight: bold;
57
+ }
58
+
59
+ .rw_titlebar a:visited
60
+ {
61
+ color: #A11;
62
+ font-weight: bold;
63
+ border-bottom: 1px dashed #A00;
64
+ }
65
+
66
+ .rw_titlebar a:hover
67
+ {
68
+ text-decoration: none;
69
+ }
70
+
71
+ .rw_titlebar_tab
72
+ {
73
+ float: left;
74
+ background-color: #595;
75
+ padding-left: 0.8em;
76
+ padding-right: 0.8em;
77
+ padding-top: 0.3em;
78
+ border: 1px solid #059;
79
+ margin: 0 0.3em;
80
+ height: 2em;
81
+ vertical-align: center;
82
+ }
83
+
84
+ .rw_titlebar_tab:hover
85
+ {
86
+ background-color: #4E9;
87
+ }
88
+
89
+ div.rw_footer
90
+ {
91
+ position: fixed;
92
+ left: 72%;
93
+ width: 20%;
94
+ height: 100%;
95
+ padding: 0.2em;
96
+ padding-top: 0.5em;
97
+ //background-color: #95C;
98
+ font-size: 0.9em;
99
+ }
100
+
101
+ .rw_footer
102
+ {
103
+ }
104
+
105
+ .rw_footer a
106
+ {
107
+ color: white;
108
+ border-bottom: 1px dashed white;
109
+ font-weight: bold;
110
+ }
111
+
112
+ .rw_footer a:visited
113
+ {
114
+ color: #A11;
115
+ font-weight: bold;
116
+ border-bottom: 1px dashed #A00;
117
+ }
118
+
119
+ .rw_footer a:hover
120
+ {
121
+ text-decoration: none;
122
+ }
123
+
124
+ .rw_footer_tab
125
+ {
126
+ color: yellow;
127
+ background-color: #595;
128
+ padding-left: 0.8em;
129
+ padding-right: 0.8em;
130
+ padding-top: 0.3em;
131
+ border: 1px solid #059;
132
+ margin: 0.3em;
133
+ min-height: 2em;
134
+ clear: both;
135
+ }
136
+
137
+ .rw_footer_tab div
138
+ {
139
+ text-align: right;
140
+ }
141
+
142
+ div#rw_content
143
+ {
144
+ padding: 50px 0 0 0;
145
+ margin-left: 0;
146
+ voice-family: "\"}\""; /* fake out IE5/Win */
147
+ voice-family: inherit;
148
+ margin-left: 16px;
149
+ }
150
+
151
+ body > div#rw_content
152
+ {
153
+ margin-left: 0;
154
+ }
155
+
156
+ .rw_content
157
+ {
158
+ padding-top: 0;
159
+ margin-left: 3em;
160
+ width: 65%;
161
+ float: left;
162
+ }
163
+
164
+ .rw_content_edit
165
+ {
166
+ width: 90%;
167
+ margin: 0 auto;
168
+ padding: 2em;
169
+ padding-top: 0;
170
+ float: left;
171
+ }
172
+
173
+ .rw_message
174
+ {
175
+ background-color: #fab;
176
+ border: 3px dotted red;
177
+ float: left;
178
+ font-weight: bolder;
179
+ font-size: 90%;
180
+ padding: 0.5em;
181
+ width: 65%;
182
+ margin-top: 3em;
183
+ }
184
+
185
+ .rw_edit_content
186
+ {
187
+ border: 1px dashed #059;
188
+ padding: 0.3em;
189
+ width: 100%;
190
+ min-height: 20.5em;
191
+ }
192
+
193
+ .rw_accelerator { text-decoration: underline; }
194
+
195
+ .rw_edit_content textarea
196
+ {
197
+ border: 1px dashed #059;
198
+ padding: 0.3em;
199
+ width: 100%;
200
+ min-height: 20.5em;
201
+ height: 20.5em;
202
+ }
203
+
204
+ .rw_edit_comment
205
+ {
206
+ clear: both;
207
+ margin-top: 1em;
208
+ }
209
+
210
+ .rw_edit_comment input
211
+ {
212
+ border: 1px dashed #059;
213
+ min-width: 50%;
214
+ width: 70%;
215
+ max-width: 80%;
216
+ }
217
+
218
+ .rw_edit_form_button
219
+ {
220
+ font-size: 0.8em;
221
+ border: 1px dotted #59C;
222
+ }
223
+
224
+ .rw_edit_raw
225
+ {
226
+ font-size: 0.8em;
227
+ float: left;
228
+ max-width: 48%;
229
+ width: 48%;
230
+ margin: 0;
231
+ }
232
+
233
+ .rw_edit_raw pre
234
+ {
235
+ border: 3px double #72C;
236
+ overflow: scroll;
237
+ clear: right;
238
+ }
239
+
240
+ .rw_edit_format
241
+ {
242
+ font-size: 0.8em;
243
+ float: right;
244
+ max-width: 48%;
245
+ width: 48%;
246
+ margin: 0;
247
+ }
248
+
249
+ .rw_edit_title
250
+ {
251
+ margin: 0;
252
+ }
253
+
254
+ .rw_edit_format div
255
+ {
256
+ border: 3px double #59C;
257
+ }
258
+
259
+ .rw_search_button
260
+ {
261
+ border: 1px dotted #59C;
262
+ margin: 0.1em;
263
+ }
264
+
265
+ .rw_search_box
266
+ {
267
+ border: 1px dotted #59C;
268
+ width: 100%;
269
+ margin: 0.1em;
270
+ }
271
+
272
+ .rw_search_box:hover
273
+ {
274
+ background-color: #999;
275
+ }
276
+
277
+ li { margin-top: 0.25em; margin-bottom: 0.25em; }
278
+
279
+ .rw_minilink { font-size: 0.5em; font-weight: bold; }
280
+
281
+ #rw_editing_tab
282
+ {
283
+ background-color: #C72;
284
+ text-align: right;
285
+ margin-right: 2em;
286
+ float: right;
287
+ }
288
+
289
+ #rw_saved_page_announcement { border-bottom: 1px solid black; }
290
+
291
+ /* Token Classes */
292
+ .rwtk_Paragraph { }
293
+ .rwtk_Code
294
+ {
295
+ border-left: 1em solid #999;
296
+ }
297
+ .rwtk_Image { }
298
+ .rwtk_NumberedLinks
299
+ {
300
+ border: 1px dashed #72C;
301
+ background-color: #C7CECF;
302
+ }
303
+ .rwtk_NamedLinks
304
+ {
305
+ border: 1px dashed #72C;
306
+ background-color: #C7CECF;
307
+ }
308
+ .rwtk_ExternalLinks
309
+ {
310
+ border: 1px dashed #72C;
311
+ background-color: #C7CECF;
312
+ }
313
+ .rwtk_RubyTalkLinks
314
+ {
315
+ border: 1px dashed #72C;
316
+ background-color: #C7CECF;
317
+ }
318
+ .rwtk_OtherRubyLinks
319
+ {
320
+ border: 1px dashed #72C;
321
+ background-color: #C7CECF;
322
+ }
323
+ .rwtk_HRule { }
324
+
325
+ .rwtk_Abbreviations { }
326
+
327
+ div.rwtk_Calendar {
328
+ border: 1px solid black;
329
+ float: right;
330
+ clear: none;
331
+ }
332
+ .rwtk_Calendar_current_month { }
333
+ .rwtk_Calendar_prev_month { }
334
+ .rwtk_Calendar_next_month { }
335
+ .rwtk_Calendar_weekend { }
336
+ .rwtk_Calendar_weekday { }
337
+ .rwtk_Calendar_day { }
338
+ .rwtk_Calendar_today { background-color: #FFFFA7; }
339
+
340
+ .rwtk_EditWikiLink { border: 1px dotted blue }
341
+ .rwtk_WikiLink { }
342
+
343
+ .rwtk_Headings { }
344
+ .rwtk_Lists { }
345
+ .rwtk_Blockquotes { }
346
+ .rwtk_Definitions { }
347
+ .rwtk_Definitions dt { font-weight: bold; }
@@ -0,0 +1,10 @@
1
+ <!-- header -->!INCLUDE!<!-- /header -->
2
+ <!-- content --><div id="rw_content">
3
+ <div class="rw_content" id="rw_saved_page_announcement">
4
+ #label_saved_page# <a href="%cgi_url%/%page_project%/%page_raw_topic%">%page_project%::%page_topic_name%</a>
5
+ </div>
6
+ <div class="rw_content">
7
+ %content%
8
+ </div>
9
+ <!-- footer -->!INCLUDE!<!-- /footer -->
10
+ </div><!-- /content -->
@@ -0,0 +1,13 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
2
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4
+ <head>
5
+ <title>%wiki_title%</title>
6
+ <meta http-equiv="Content-Type" content="text/html; charset=#charset_encoding#" />
7
+ [!indexable|<meta name="robots" content="noindex,nofollow" />?]
8
+ %css_link%
9
+ </head>
10
+ <body>
11
+ !INCLUDE!
12
+ </body>
13
+ </html>
@@ -0,0 +1,7 @@
1
+ <!-- header -->!INCLUDE!<!-- /header -->
2
+ <!-- content -->
3
+ [?message|<div class="rw_message">%message%</div>?]
4
+ <div class="rw_content">
5
+ %content%
6
+ </div><!-- /content -->
7
+ <!-- footer -->!INCLUDE!<!-- /footer -->
@@ -0,0 +1,8 @@
1
+ <div class="rw_navbar">
2
+ %home_link%
3
+ &raquo;
4
+ <a href="%cgi_url%/%page_project%/">%page_project%</a>
5
+ &raquo;
6
+ %page_topic%
7
+ [?editable|<a href="%cgi_url%/%page_project%/%page_raw_topic%/_edit">[#label_edit#]</a>?]
8
+ </div>
@@ -0,0 +1,25 @@
1
+ <div class="rw_navbar">
2
+ %home_link%
3
+ &raquo;
4
+ <strong>%page_topic%</strong>
5
+ &raquo;
6
+ <strong>%page_project%</strong>
7
+ [<strong><em>#label_editing#</em> #%page_version%</strong>]
8
+ </div>
9
+
10
+ <div class="rw_content">
11
+ [?message|<div class="rw_message">%message%</div>?]
12
+ <form class="rw_edit_form" action="%cgi_url%/%page_project%/%page_raw_topic%" method="post">
13
+ <span class="rw_accelerator">(#label_text_accelerator#)</span> #label_text#<br /><textarea accesskey="#label_text_accelerator#" class="rw_edit_content" rows="15" name="newpage">%page_content%</textarea>
14
+ <div class="rw_edit_comment"><span class="rw_accelerator">(#label_comment_accelerator#)</span> #label_edit_comment#<input accesskey="#label_comment_accelerator#" type="text" name="edcomment" value="%edit_comment%" /></div>
15
+ <input type="hidden" name="topic" value="%page_raw_topic%" />
16
+ <input type="hidden" name="project" value="%page_project%" />
17
+ <input type="hidden" name="version" value="%page_version%" /><br />
18
+ <button class="rw_edit_form_button" accesskey="#label_save_accelerator#" type="submit" name="save"><span class="rw_accelerator">(#label_save_accelerator#)</span> #label_save#</button>
19
+ <button class="rw_edit_form_button" accesskey="#label_cancel_accelerator#" type="submit" name="cancel"><span class="rw_accelerator">(#label_cancel_accelerator#)</span> #label_cancel#</button>
20
+ <button class="rw_edit_form_button" accesskey="#label_preview_accelerator#" type="submit" name="preview"><span class="rw_accelerator">(#label_preview_accelerator#)</span> #label_preview#</button>
21
+ </form>
22
+ <h2 style="border-bottom: 1px solid black">#label_original_text#</h2>
23
+ <div class="rw_edit_raw"><h2 class="rw_edit_title">#label_raw#</h2><pre>%pre_page_content%</pre></div>
24
+ <div class="rw_edit_format"><h2 class="rw_edit_title">#label_formatted#</h2><div>%unedited_page_content%</div></div>
25
+ </div>
@@ -0,0 +1,10 @@
1
+ <div class="rw_navbar">
2
+ %home_link%
3
+ |
4
+ <strong><em>%name%</em></strong>
5
+ </div>
6
+ <div class="rw_content">
7
+ <h1>%name%</h1>
8
+ <p>#label_send_report_by# <a href="mailto:%webmaster%?subject=%name%[?backtrace_email|&amp;body=%backtrace_email%?]">#label_send_report#</a></p>
9
+ <p>%backtrace%</p>
10
+ </div>
@@ -0,0 +1,10 @@
1
+ <form class="rw_navbar" action="_search">
2
+ <a href="%cgi_url%/_projects">#label_projects#</a>
3
+ |
4
+ %page_project%::<a href="%cgi_url%/%page_project%/_topics">#label_topics#</a>,
5
+ <a href="%cgi_url%/%page_project%/RecentChanges">#label_recent_changes#</a>
6
+ |
7
+ <input class="rw_search_box" type="text" name="q" size="10" />
8
+ <button class="rw_search_button" type="submit">#label_search_project#</button>
9
+ <input class="rw_search_all_check" type="checkbox" name="a">#label_search_all#</input>
10
+ </form>
@@ -0,0 +1,192 @@
1
+ /* $Id: ruwiki.css,v 1.5 2004/11/22 04:53:41 austin Exp $ */
2
+ body
3
+ {
4
+ color: black;
5
+ font-size: medium;
6
+ background-color: #fafafa;
7
+ }
8
+
9
+ .rw_navbar
10
+ {
11
+ font-weight: bold;
12
+ font-size: 1.1em;
13
+ padding: 0.3em;
14
+ }
15
+
16
+ .rw_navbar a
17
+ {
18
+ border-bottom: 1px dashed black;
19
+ font-weight: bold;
20
+ }
21
+ .rw_navbar a:visited
22
+ {
23
+ color: maroon;
24
+ border-bottom: 1px dashed maroon;
25
+ }
26
+ .rw_navbar a:hover { background-color: #afafaf; }
27
+
28
+ .rw_content
29
+ {
30
+ background-color: white;
31
+ border: 1px dashed grey;
32
+ padding: 0.5em;
33
+ margin-left: 1em;
34
+ margin-right: 1em;
35
+ }
36
+
37
+ .rw_message
38
+ {
39
+ background-color: #fab;
40
+ border: 3px dotted red;
41
+ font-weight: bolder;
42
+ font-size: 90%;
43
+ padding: 0.5em;
44
+ margin-left: 3em;
45
+ margin-right: 3em;
46
+ }
47
+
48
+
49
+ .rw_edit_content
50
+ {
51
+ border: 1px solid black;
52
+ padding: 0.3em;
53
+ width: 95%;
54
+ min-height: 20.5em;
55
+ }
56
+
57
+ .rw_accelerator { text-decoration: underline; }
58
+
59
+ .rw_edit_content textarea
60
+ {
61
+ border: 1px solid black;
62
+ padding: 0.3em;
63
+ min-height: 20.5em;
64
+ height: 20.5em;
65
+ }
66
+
67
+ .rw_edit_comment
68
+ {
69
+ clear: both;
70
+ margin-top: 1em;
71
+ }
72
+
73
+ .rw_edit_comment input
74
+ {
75
+ border: 1px solid black;
76
+ min-width: 50%;
77
+ width: 70%;
78
+ max-width: 80%;
79
+ }
80
+
81
+ .rw_edit_form { }
82
+
83
+ .rw_edit_form_button
84
+ {
85
+ font-size: 0.8em;
86
+ border: 1px solid black;
87
+ }
88
+
89
+ .rw_pagelink { text-decoration: none; }
90
+ .rw_projectxlink { }
91
+ .rw_projectindex { }
92
+
93
+ .rw_edit_raw
94
+ {
95
+ font-size: 0.8em;
96
+ float: left;
97
+ max-width: 48%;
98
+ width: 48%;
99
+ margin: 0;
100
+ }
101
+
102
+ .rw_edit_raw pre
103
+ {
104
+ overflow: scroll;
105
+ clear: right;
106
+ }
107
+
108
+ .rw_edit_format
109
+ {
110
+ font-size: 0.8em;
111
+ float: right;
112
+ max-width: 48%;
113
+ width: 48%;
114
+ margin: 0;
115
+ }
116
+
117
+ .rw_edit_title { }
118
+
119
+ .rw_edit_format div
120
+ {
121
+ }
122
+
123
+ .rw_search_button
124
+ {
125
+ border: 1px solid black;
126
+ }
127
+
128
+ .rw_search_box
129
+ {
130
+ border: 1px solid black;
131
+ }
132
+
133
+ .rw_search_box:hover { }
134
+
135
+ li { margin-top: 0.25em; margin-bottom: 0.25em; }
136
+
137
+ .rw_minilink { font-size: 0.5em; font-weight: bold; }
138
+
139
+ #rw_saved_page_announcement { }
140
+
141
+ /* Token Classes */
142
+ .rwtk_Paragraph { }
143
+ .rwtk_Code
144
+ {
145
+ border-left: 1em solid #999;
146
+ }
147
+ .rwtk_Image { border: none; }
148
+ .rwtk_NumberedLinks
149
+ {
150
+ border-bottom: 1px solid #00AA00;
151
+ }
152
+ .rwtk_NamedLinks
153
+ {
154
+ border-bottom: 1px solid #00AA00;
155
+ }
156
+ .rwtk_ExternalLinks
157
+ {
158
+ border-bottom: 1px solid #00AA00;
159
+ }
160
+ .rwtk_RubyTalkLinks
161
+ {
162
+ border-bottom: 1px solid #00AA00;
163
+ }
164
+ .rwtk_OtherRubyLinks
165
+ {
166
+ border-bottom: 1px solid #00AA00;
167
+ }
168
+ .rwtk_HRule { }
169
+
170
+ .rwtk_Abbreviations { }
171
+
172
+ div.rwtk_Calendar {
173
+ border: 1px solid black;
174
+ float: right;
175
+ clear: none;
176
+ }
177
+ .rwtk_Calendar_current_month { }
178
+ .rwtk_Calendar_prev_month { }
179
+ .rwtk_Calendar_next_month { }
180
+ .rwtk_Calendar_weekend { }
181
+ .rwtk_Calendar_weekday { }
182
+ .rwtk_Calendar_day { }
183
+ .rwtk_Calendar_today { background-color: #FFFFA7; }
184
+
185
+ .rwtk_EditWikiLink { border: 1px dashed grey; }
186
+ .rwtk_WikiLink { text-decoration: none; }
187
+
188
+ .rwtk_Headings { }
189
+ .rwtk_Lists { }
190
+ .rwtk_Blockquotes { }
191
+ .rwtk_Definitions { }
192
+ .rwtk_Definitions dt { font-weight: bold; }