BlueCloth 1.0.1
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.
- data/CHANGES +506 -0
- data/LICENSE +340 -0
- data/README +99 -0
- data/bin/bluecloth +83 -0
- data/install.rb +185 -0
- data/lib/bluecloth.rb +1144 -0
- data/test.rb +117 -0
- data/tests/00_Class.tests.rb +71 -0
- data/tests/05_Markdown.tests.rb +1541 -0
- data/tests/10_Bug.tests.rb +67 -0
- data/tests/15_Contrib.tests.rb +132 -0
- data/tests/bctestcase.rb +283 -0
- data/tests/data/antsugar.txt +34 -0
- data/tests/data/hr-dos.txt +4 -0
- data/tests/data/ml-announce.txt +17 -0
- data/tests/data/re-overflow.txt +67 -0
- data/tests/data/re-overflow2.txt +281 -0
- data/utils.rb +739 -0
- metadata +74 -0
data/CHANGES
ADDED
@@ -0,0 +1,506 @@
|
|
1
|
+
------------------------------------------------------------------------
|
2
|
+
r63 | ged | 2004-08-24 07:52:05 -0700 (Tue, 24 Aug 2004) | 3 lines
|
3
|
+
Changed paths:
|
4
|
+
M /trunk
|
5
|
+
|
6
|
+
- Added CHANGES.xml to ignore property for root directory.
|
7
|
+
|
8
|
+
|
9
|
+
------------------------------------------------------------------------
|
10
|
+
r62 | ged | 2004-08-24 07:48:44 -0700 (Tue, 24 Aug 2004) | 7 lines
|
11
|
+
Changed paths:
|
12
|
+
M /trunk/lib/bluecloth.rb
|
13
|
+
M /trunk/tests/05_Markdown.tests.rb
|
14
|
+
|
15
|
+
- Brought list of block-level tags up to date with Markdown 1.0's list
|
16
|
+
- Propagated fix for overflow to the other two block-match patterns.
|
17
|
+
- Abstracted list-item patterns out into constants to closer match Markdown's
|
18
|
+
code and to expose them for use in other code.
|
19
|
+
- Fixed indentation of <pre> blocks inside blockquotes.
|
20
|
+
- Added new tests for all of the above.
|
21
|
+
|
22
|
+
------------------------------------------------------------------------
|
23
|
+
r61 | ged | 2004-08-22 12:28:23 -0700 (Sun, 22 Aug 2004) | 5 lines
|
24
|
+
Changed paths:
|
25
|
+
M /trunk/lib/bluecloth.rb
|
26
|
+
M /trunk/tests/05_Markdown.tests.rb
|
27
|
+
|
28
|
+
- Fixed re-engine overflow for all tested cases (thanks to Martin Chase
|
29
|
+
<stillflame@FaerieMUD.org> for the fix).
|
30
|
+
- Wrote some additional tests to be sure the block-level html escaper is working
|
31
|
+
after the above fix.
|
32
|
+
|
33
|
+
------------------------------------------------------------------------
|
34
|
+
r60 | ged | 2004-08-22 12:26:25 -0700 (Sun, 22 Aug 2004) | 2 lines
|
35
|
+
Changed paths:
|
36
|
+
M /trunk/tests/10_Bug.tests.rb
|
37
|
+
|
38
|
+
- Removed skip of overflow test.
|
39
|
+
|
40
|
+
------------------------------------------------------------------------
|
41
|
+
r59 | ged | 2004-08-22 12:24:35 -0700 (Sun, 22 Aug 2004) | 2 lines
|
42
|
+
Changed paths:
|
43
|
+
M /trunk/experiments/re-overflow.rb
|
44
|
+
|
45
|
+
- "Fixed" the test case so it overflows again.
|
46
|
+
|
47
|
+
------------------------------------------------------------------------
|
48
|
+
r58 | deveiant | 2004-08-08 22:12:02 -0700 (Sun, 08 Aug 2004) | 2 lines
|
49
|
+
Changed paths:
|
50
|
+
M /trunk/CHANGES
|
51
|
+
|
52
|
+
- Updated to 20040808.
|
53
|
+
|
54
|
+
------------------------------------------------------------------------
|
55
|
+
r57 | deveiant | 2004-08-08 18:16:14 -0700 (Sun, 08 Aug 2004) | 2 lines
|
56
|
+
Changed paths:
|
57
|
+
M /trunk/tests/bctestcase.rb
|
58
|
+
|
59
|
+
- Modified to work from wherever the test is run (RPA compat).
|
60
|
+
|
61
|
+
------------------------------------------------------------------------
|
62
|
+
r56 | deveiant | 2004-08-08 18:15:57 -0700 (Sun, 08 Aug 2004) | 2 lines
|
63
|
+
Changed paths:
|
64
|
+
M /trunk/test.rb
|
65
|
+
|
66
|
+
- Modified to work from wherever the test is run (RPA compat).
|
67
|
+
|
68
|
+
------------------------------------------------------------------------
|
69
|
+
r55 | deveiant | 2004-08-08 18:15:27 -0700 (Sun, 08 Aug 2004) | 2 lines
|
70
|
+
Changed paths:
|
71
|
+
M /trunk/.gemspec
|
72
|
+
|
73
|
+
- Updated version attribute.
|
74
|
+
|
75
|
+
------------------------------------------------------------------------
|
76
|
+
r54 | deveiant | 2004-08-08 18:14:58 -0700 (Sun, 08 Aug 2004) | 2 lines
|
77
|
+
Changed paths:
|
78
|
+
M /trunk/lib/bluecloth.rb
|
79
|
+
M /trunk/tests/05_Markdown.tests.rb
|
80
|
+
|
81
|
+
- Brought markdown syntax up to date with Markdown 1.0fc1.
|
82
|
+
|
83
|
+
------------------------------------------------------------------------
|
84
|
+
r53 | deveiant | 2004-08-08 18:13:16 -0700 (Sun, 08 Aug 2004) | 2 lines
|
85
|
+
Changed paths:
|
86
|
+
M /trunk/tests/00_Class.tests.rb
|
87
|
+
M /trunk/tests/10_Bug.tests.rb
|
88
|
+
M /trunk/tests/15_Contrib.tests.rb
|
89
|
+
M /trunk/tests/TEMPLATE.rb.tpl
|
90
|
+
|
91
|
+
- Made the require-header work wherever the test is run from (RPA compat).
|
92
|
+
|
93
|
+
------------------------------------------------------------------------
|
94
|
+
r51 | deveiant | 2004-06-21 08:20:59 -0700 (Mon, 21 Jun 2004) | 4 lines
|
95
|
+
Changed paths:
|
96
|
+
M /trunk
|
97
|
+
A /trunk/CHANGES
|
98
|
+
M /trunk/README
|
99
|
+
A /trunk/docs
|
100
|
+
A /trunk/docs/CATALOG
|
101
|
+
A /trunk/docs/makedocs.rb
|
102
|
+
A /trunk/experiments/re-overflow.rb
|
103
|
+
M /trunk/lib/bluecloth.rb
|
104
|
+
M /trunk/tests/05_Markdown.tests.rb
|
105
|
+
M /trunk/tests/10_Bug.tests.rb
|
106
|
+
|
107
|
+
- Brought up to date with Markdown 1.0b7.
|
108
|
+
|
109
|
+
- Ignore list properties on the base and docs directories updated.
|
110
|
+
|
111
|
+
------------------------------------------------------------------------
|
112
|
+
r50 | deveiant | 2004-06-02 06:37:15 -0700 (Wed, 02 Jun 2004) | 1 line
|
113
|
+
Changed paths:
|
114
|
+
M /trunk/bin/bluecloth
|
115
|
+
|
116
|
+
- Commented out non-functional --output option for now.
|
117
|
+
------------------------------------------------------------------------
|
118
|
+
r49 | deveiant | 2004-06-01 20:30:18 -0700 (Tue, 01 Jun 2004) | 2 lines
|
119
|
+
Changed paths:
|
120
|
+
A /trunk/tests/data/re-overflow.txt
|
121
|
+
|
122
|
+
Initial checkin.
|
123
|
+
|
124
|
+
------------------------------------------------------------------------
|
125
|
+
r48 | deveiant | 2004-06-01 20:29:31 -0700 (Tue, 01 Jun 2004) | 2 lines
|
126
|
+
Changed paths:
|
127
|
+
M /trunk/tests/10_Bug.tests.rb
|
128
|
+
|
129
|
+
- Added test for bug #574.
|
130
|
+
|
131
|
+
------------------------------------------------------------------------
|
132
|
+
r47 | deveiant | 2004-06-01 20:21:04 -0700 (Tue, 01 Jun 2004) | 8 lines
|
133
|
+
Changed paths:
|
134
|
+
M /trunk/tests/05_Markdown.tests.rb
|
135
|
+
|
136
|
+
- Test for bug #620 - Unresolved reference-style links doubled the character
|
137
|
+
immediately after them.
|
138
|
+
|
139
|
+
- Added additional test email addresses, including ones that use extended latin
|
140
|
+
charset.
|
141
|
+
|
142
|
+
- Added bug reference to a test.
|
143
|
+
|
144
|
+
------------------------------------------------------------------------
|
145
|
+
r46 | deveiant | 2004-06-01 20:19:41 -0700 (Tue, 01 Jun 2004) | 4 lines
|
146
|
+
Changed paths:
|
147
|
+
M /trunk/lib/bluecloth.rb
|
148
|
+
|
149
|
+
- Fix for bug #620 - Unresolved reference-style links doubled the character
|
150
|
+
immediately after them.
|
151
|
+
|
152
|
+
|
153
|
+
------------------------------------------------------------------------
|
154
|
+
r45 | deveiant | 2004-05-13 19:43:17 -0700 (Thu, 13 May 2004) | 4 lines
|
155
|
+
Changed paths:
|
156
|
+
M /trunk/tests/05_Markdown.tests.rb
|
157
|
+
|
158
|
+
- Added tests for bug #568 (Two sets of bold text on one line doesn't render
|
159
|
+
properly). Tests confirmed that two sets of bold text did work, but single
|
160
|
+
characters being bolded does not.
|
161
|
+
|
162
|
+
------------------------------------------------------------------------
|
163
|
+
r44 | deveiant | 2004-05-13 19:41:52 -0700 (Thu, 13 May 2004) | 2 lines
|
164
|
+
Changed paths:
|
165
|
+
M /trunk/lib/bluecloth.rb
|
166
|
+
|
167
|
+
- Fixed bug with bolding of single characters (bug #568).
|
168
|
+
|
169
|
+
------------------------------------------------------------------------
|
170
|
+
r43 | deveiant | 2004-05-04 07:35:11 -0700 (Tue, 04 May 2004) | 2 lines
|
171
|
+
Changed paths:
|
172
|
+
M /trunk/lib/bluecloth.rb
|
173
|
+
M /trunk/tests/05_Markdown.tests.rb
|
174
|
+
|
175
|
+
- Additional fixes and tests for bug #537.
|
176
|
+
|
177
|
+
------------------------------------------------------------------------
|
178
|
+
r41 | deveiant | 2004-04-29 20:40:38 -0700 (Thu, 29 Apr 2004) | 2 lines
|
179
|
+
Changed paths:
|
180
|
+
M /trunk/MANIFEST
|
181
|
+
|
182
|
+
- Added bin/ directory.
|
183
|
+
|
184
|
+
------------------------------------------------------------------------
|
185
|
+
r40 | deveiant | 2004-04-29 20:40:04 -0700 (Thu, 29 Apr 2004) | 2 lines
|
186
|
+
Changed paths:
|
187
|
+
M /trunk/README
|
188
|
+
|
189
|
+
- Set date.
|
190
|
+
|
191
|
+
------------------------------------------------------------------------
|
192
|
+
r39 | deveiant | 2004-04-29 20:39:24 -0700 (Thu, 29 Apr 2004) | 3 lines
|
193
|
+
Changed paths:
|
194
|
+
M /trunk/tests/15_Contrib.tests.rb
|
195
|
+
|
196
|
+
- Added test for Bug #543 (Safe mode does not work when there are no left
|
197
|
+
angle-brackets in the source).
|
198
|
+
|
199
|
+
------------------------------------------------------------------------
|
200
|
+
r38 | deveiant | 2004-04-29 20:38:42 -0700 (Thu, 29 Apr 2004) | 5 lines
|
201
|
+
Changed paths:
|
202
|
+
M /trunk/tests/05_Markdown.tests.rb
|
203
|
+
|
204
|
+
- Added test for email address encoding (Bug #537).
|
205
|
+
|
206
|
+
- Added test for bug #541 (Leading line of codeblock with more than one tab
|
207
|
+
width of indent mistakenly unindented).
|
208
|
+
|
209
|
+
------------------------------------------------------------------------
|
210
|
+
r37 | deveiant | 2004-04-29 20:35:26 -0700 (Thu, 29 Apr 2004) | 5 lines
|
211
|
+
Changed paths:
|
212
|
+
M /trunk/lib/bluecloth.rb
|
213
|
+
|
214
|
+
- Fix for bug #543 (Safe mode does not work when there are no left
|
215
|
+
angle-brackets in the source).
|
216
|
+
|
217
|
+
|
218
|
+
|
219
|
+
------------------------------------------------------------------------
|
220
|
+
r36 | deveiant | 2004-04-29 20:33:01 -0700 (Thu, 29 Apr 2004) | 5 lines
|
221
|
+
Changed paths:
|
222
|
+
M /trunk/lib/bluecloth.rb
|
223
|
+
|
224
|
+
- Fix for bug #541 (Leading line of codeblock with more than one tab
|
225
|
+
width of indent mistakenly unindented)
|
226
|
+
|
227
|
+
|
228
|
+
|
229
|
+
------------------------------------------------------------------------
|
230
|
+
r35 | deveiant | 2004-04-29 20:31:37 -0700 (Thu, 29 Apr 2004) | 3 lines
|
231
|
+
Changed paths:
|
232
|
+
M /trunk/lib/bluecloth.rb
|
233
|
+
|
234
|
+
- Fix for bug #537. Fix suggested by Marek Janukowicz.
|
235
|
+
|
236
|
+
|
237
|
+
------------------------------------------------------------------------
|
238
|
+
r32 | deveiant | 2004-04-22 21:47:42 -0700 (Thu, 22 Apr 2004) | 2 lines
|
239
|
+
Changed paths:
|
240
|
+
M /trunk/makedist.rb
|
241
|
+
|
242
|
+
- Temporary fixes until I have time to integrate SVN stuff.
|
243
|
+
|
244
|
+
------------------------------------------------------------------------
|
245
|
+
r31 | deveiant | 2004-04-22 21:46:51 -0700 (Thu, 22 Apr 2004) | 2 lines
|
246
|
+
Changed paths:
|
247
|
+
M /trunk/.gemspec
|
248
|
+
|
249
|
+
- Version bump.
|
250
|
+
|
251
|
+
------------------------------------------------------------------------
|
252
|
+
r30 | deveiant | 2004-04-22 21:46:15 -0700 (Thu, 22 Apr 2004) | 2 lines
|
253
|
+
Changed paths:
|
254
|
+
M /trunk/README
|
255
|
+
|
256
|
+
- Brought in line with most-recent release.
|
257
|
+
|
258
|
+
------------------------------------------------------------------------
|
259
|
+
r29 | deveiant | 2004-04-22 21:40:50 -0700 (Thu, 22 Apr 2004) | 2 lines
|
260
|
+
Changed paths:
|
261
|
+
M /trunk/lib/bluecloth.rb
|
262
|
+
|
263
|
+
- Version bump.
|
264
|
+
|
265
|
+
------------------------------------------------------------------------
|
266
|
+
r28 | deveiant | 2004-04-22 21:39:05 -0700 (Thu, 22 Apr 2004) | 4 lines
|
267
|
+
Changed paths:
|
268
|
+
M /trunk/lib/bluecloth.rb
|
269
|
+
|
270
|
+
- Bugfixes for bugs 524 and 525. Thanks to David Heinemeier Hansson and Javier
|
271
|
+
Goizueta for bug reports and fixes.
|
272
|
+
|
273
|
+
|
274
|
+
------------------------------------------------------------------------
|
275
|
+
r27 | deveiant | 2004-04-22 21:34:31 -0700 (Thu, 22 Apr 2004) | 2 lines
|
276
|
+
Changed paths:
|
277
|
+
M /trunk/tests/05_Markdown.tests.rb
|
278
|
+
|
279
|
+
- Test for bugs 524 and 525
|
280
|
+
|
281
|
+
------------------------------------------------------------------------
|
282
|
+
r25 | deveiant | 2004-04-15 18:55:19 -0700 (Thu, 15 Apr 2004) | 1 line
|
283
|
+
Changed paths:
|
284
|
+
M /trunk/README
|
285
|
+
|
286
|
+
- Corrected version
|
287
|
+
------------------------------------------------------------------------
|
288
|
+
r24 | deveiant | 2004-04-15 18:53:52 -0700 (Thu, 15 Apr 2004) | 2 lines
|
289
|
+
Changed paths:
|
290
|
+
M /trunk/lib/bluecloth.rb
|
291
|
+
|
292
|
+
- Brought Version up to date.
|
293
|
+
|
294
|
+
------------------------------------------------------------------------
|
295
|
+
r23 | deveiant | 2004-04-15 18:52:17 -0700 (Thu, 15 Apr 2004) | 1 line
|
296
|
+
Changed paths:
|
297
|
+
M /trunk
|
298
|
+
|
299
|
+
- Updated ignore metadata.
|
300
|
+
------------------------------------------------------------------------
|
301
|
+
r22 | deveiant | 2004-04-15 18:51:14 -0700 (Thu, 15 Apr 2004) | 2 lines
|
302
|
+
Changed paths:
|
303
|
+
A /trunk/.gemspec
|
304
|
+
A /trunk/tests/15_Contrib.tests.rb
|
305
|
+
A /trunk/tests/data
|
306
|
+
A /trunk/tests/data/antsugar.txt
|
307
|
+
A /trunk/tests/data/ml-announce.txt
|
308
|
+
A /trunk/web
|
309
|
+
A /trunk/web/base.css
|
310
|
+
A /trunk/web/index.html
|
311
|
+
|
312
|
+
Initial checkin.
|
313
|
+
|
314
|
+
------------------------------------------------------------------------
|
315
|
+
r21 | deveiant | 2004-04-15 18:50:31 -0700 (Thu, 15 Apr 2004) | 6 lines
|
316
|
+
Changed paths:
|
317
|
+
M /trunk/MANIFEST
|
318
|
+
|
319
|
+
- Changed tests/ pattern to catch all tests.
|
320
|
+
|
321
|
+
- Added CHANGES.
|
322
|
+
|
323
|
+
- Dropped MANIFEST.
|
324
|
+
|
325
|
+
------------------------------------------------------------------------
|
326
|
+
r20 | deveiant | 2004-04-15 18:49:46 -0700 (Thu, 15 Apr 2004) | 2 lines
|
327
|
+
Changed paths:
|
328
|
+
M /trunk/install.rb
|
329
|
+
|
330
|
+
- Added missing dependency check for devel-logger.
|
331
|
+
|
332
|
+
------------------------------------------------------------------------
|
333
|
+
r19 | deveiant | 2004-04-15 18:49:12 -0700 (Thu, 15 Apr 2004) | 8 lines
|
334
|
+
Changed paths:
|
335
|
+
M /trunk/lib/bluecloth.rb
|
336
|
+
|
337
|
+
- Added contributors section to the header.
|
338
|
+
|
339
|
+
- Integrated html- and style-filtering patch from Florian Gross <flgr@ccan.de>.
|
340
|
+
|
341
|
+
- Corrections to RedCloth-compatibility.
|
342
|
+
|
343
|
+
- Removed log from renderstate, as it's an attribute of the string itself.
|
344
|
+
|
345
|
+
------------------------------------------------------------------------
|
346
|
+
r18 | deveiant | 2004-04-15 18:48:27 -0700 (Thu, 15 Apr 2004) | 8 lines
|
347
|
+
Changed paths:
|
348
|
+
M /trunk/README
|
349
|
+
|
350
|
+
- Added contributors section to the header.
|
351
|
+
|
352
|
+
- Integrated html- and style-filtering patch from Florian Gross <flgr@ccan.de>.
|
353
|
+
|
354
|
+
- Corrections to RedCloth-compatibility.
|
355
|
+
|
356
|
+
- Removed log from renderstate, as it's an attribute of the string itself.
|
357
|
+
|
358
|
+
------------------------------------------------------------------------
|
359
|
+
r15 | deveiant | 2004-04-11 23:02:54 -0700 (Sun, 11 Apr 2004) | 3 lines
|
360
|
+
Changed paths:
|
361
|
+
M /trunk/tests/10_Bug.tests.rb
|
362
|
+
|
363
|
+
- Added keywords.
|
364
|
+
|
365
|
+
|
366
|
+
------------------------------------------------------------------------
|
367
|
+
r14 | deveiant | 2004-04-11 23:01:40 -0700 (Sun, 11 Apr 2004) | 2 lines
|
368
|
+
Changed paths:
|
369
|
+
M /trunk/tests/10_Bug.tests.rb
|
370
|
+
|
371
|
+
- Updated comments/added to-do marker.
|
372
|
+
|
373
|
+
------------------------------------------------------------------------
|
374
|
+
r13 | deveiant | 2004-04-11 22:47:16 -0700 (Sun, 11 Apr 2004) | 3 lines
|
375
|
+
Changed paths:
|
376
|
+
M /trunk
|
377
|
+
|
378
|
+
- Updated ignore list.
|
379
|
+
|
380
|
+
|
381
|
+
------------------------------------------------------------------------
|
382
|
+
r12 | deveiant | 2004-04-11 22:46:49 -0700 (Sun, 11 Apr 2004) | 3 lines
|
383
|
+
Changed paths:
|
384
|
+
A /trunk/bin
|
385
|
+
A /trunk/bin/bluecloth
|
386
|
+
|
387
|
+
Initial checkin.
|
388
|
+
|
389
|
+
|
390
|
+
------------------------------------------------------------------------
|
391
|
+
r11 | deveiant | 2004-04-11 22:45:07 -0700 (Sun, 11 Apr 2004) | 3 lines
|
392
|
+
Changed paths:
|
393
|
+
M /trunk/utils.rb
|
394
|
+
|
395
|
+
- Added a time() function for timing bits of code.
|
396
|
+
|
397
|
+
|
398
|
+
------------------------------------------------------------------------
|
399
|
+
r10 | deveiant | 2004-04-11 22:43:10 -0700 (Sun, 11 Apr 2004) | 3 lines
|
400
|
+
Changed paths:
|
401
|
+
M /trunk/lib/bluecloth.rb
|
402
|
+
|
403
|
+
- Changed keyword constants from CVS to SVN keywords.
|
404
|
+
|
405
|
+
|
406
|
+
------------------------------------------------------------------------
|
407
|
+
r9 | deveiant | 2004-04-11 22:29:37 -0700 (Sun, 11 Apr 2004) | 3 lines
|
408
|
+
Changed paths:
|
409
|
+
M /trunk/README
|
410
|
+
|
411
|
+
- Changed location of keyword stuff, added URL keyword.
|
412
|
+
|
413
|
+
|
414
|
+
------------------------------------------------------------------------
|
415
|
+
r8 | deveiant | 2004-04-11 22:26:38 -0700 (Sun, 11 Apr 2004) | 3 lines
|
416
|
+
Changed paths:
|
417
|
+
M /trunk/README
|
418
|
+
|
419
|
+
- Added the rest of the content.
|
420
|
+
|
421
|
+
|
422
|
+
------------------------------------------------------------------------
|
423
|
+
r7 | deveiant | 2004-04-11 22:21:47 -0700 (Sun, 11 Apr 2004) | 12 lines
|
424
|
+
Changed paths:
|
425
|
+
M /trunk/lib/bluecloth.rb
|
426
|
+
|
427
|
+
- Fixed license in header
|
428
|
+
|
429
|
+
- Fixed error message in exception class with no second argument.
|
430
|
+
|
431
|
+
- Removed unnecessary (and slllooowww) 'm' flag from HTML block matching
|
432
|
+
patterns.
|
433
|
+
|
434
|
+
- Fixed code-span scanning to match spans that occur at the beginning of the
|
435
|
+
line.
|
436
|
+
|
437
|
+
- Fixed error in code-span exception case.
|
438
|
+
|
439
|
+
------------------------------------------------------------------------
|
440
|
+
r6 | deveiant | 2004-04-11 22:17:45 -0700 (Sun, 11 Apr 2004) | 3 lines
|
441
|
+
Changed paths:
|
442
|
+
A /trunk/tests/10_Bug.tests.rb (from /trunk/tests/10_Output.tests.rb:5)
|
443
|
+
D /trunk/tests/10_Output.tests.rb
|
444
|
+
|
445
|
+
- Renamed to reflect repurposing.
|
446
|
+
|
447
|
+
|
448
|
+
------------------------------------------------------------------------
|
449
|
+
r5 | deveiant | 2004-04-11 22:17:08 -0700 (Sun, 11 Apr 2004) | 2 lines
|
450
|
+
Changed paths:
|
451
|
+
M /trunk/tests/10_Output.tests.rb
|
452
|
+
|
453
|
+
- Converted to bug-testing testcase.
|
454
|
+
|
455
|
+
------------------------------------------------------------------------
|
456
|
+
r4 | deveiant | 2004-04-11 22:15:34 -0700 (Sun, 11 Apr 2004) | 2 lines
|
457
|
+
Changed paths:
|
458
|
+
M /trunk/tests/05_Markdown.tests.rb
|
459
|
+
|
460
|
+
- Added some mode code span tests to catch bugs.
|
461
|
+
|
462
|
+
------------------------------------------------------------------------
|
463
|
+
r3 | deveiant | 2004-04-10 21:40:29 -0700 (Sat, 10 Apr 2004) | 2 lines
|
464
|
+
Changed paths:
|
465
|
+
M /trunk
|
466
|
+
A /trunk/MANIFEST
|
467
|
+
M /trunk/install.rb
|
468
|
+
M /trunk/makedist.rb
|
469
|
+
M /trunk/utils.rb
|
470
|
+
|
471
|
+
- Updated dist/install utilities/libs.
|
472
|
+
|
473
|
+
------------------------------------------------------------------------
|
474
|
+
r2 | deveiant | 2004-04-10 13:36:46 -0700 (Sat, 10 Apr 2004) | 1 line
|
475
|
+
Changed paths:
|
476
|
+
D /trunk/Markdown_1.0b4
|
477
|
+
|
478
|
+
Removed markdown reference source
|
479
|
+
------------------------------------------------------------------------
|
480
|
+
r1 | deveiant | 2004-04-10 13:35:02 -0700 (Sat, 10 Apr 2004) | 1 line
|
481
|
+
Changed paths:
|
482
|
+
A /trunk
|
483
|
+
A /trunk/.irbrc
|
484
|
+
A /trunk/LICENSE
|
485
|
+
A /trunk/Markdown_1.0b4
|
486
|
+
A /trunk/Markdown_1.0b4/Markdown Readme.text
|
487
|
+
A /trunk/Markdown_1.0b4/Markdown.pl
|
488
|
+
A /trunk/README
|
489
|
+
A /trunk/experiments
|
490
|
+
A /trunk/experiments/TEMPLATE.rb.tpl
|
491
|
+
A /trunk/experiments/benchstrscan.rb
|
492
|
+
A /trunk/experiments/tokentest.rb
|
493
|
+
A /trunk/install.rb
|
494
|
+
A /trunk/lib
|
495
|
+
A /trunk/lib/bluecloth.rb
|
496
|
+
A /trunk/makedist.rb
|
497
|
+
A /trunk/test.rb
|
498
|
+
A /trunk/tests
|
499
|
+
A /trunk/tests/00_Class.tests.rb
|
500
|
+
A /trunk/tests/05_Markdown.tests.rb
|
501
|
+
A /trunk/tests/10_Output.tests.rb
|
502
|
+
A /trunk/tests/TEMPLATE.rb.tpl
|
503
|
+
A /trunk/tests/bctestcase.rb
|
504
|
+
A /trunk/utils.rb
|
505
|
+
|
506
|
+
Initial checkin
|