bluecloth 2.0.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 (103) hide show
  1. data/ChangeLog +629 -0
  2. data/LICENSE +27 -0
  3. data/LICENSE.discount +47 -0
  4. data/README +71 -0
  5. data/Rakefile +319 -0
  6. data/Rakefile.local +63 -0
  7. data/bin/bluecloth +84 -0
  8. data/ext/VERSION +1 -0
  9. data/ext/amalloc.h +29 -0
  10. data/ext/bluecloth.c +373 -0
  11. data/ext/config.h +47 -0
  12. data/ext/cstring.h +73 -0
  13. data/ext/docheader.c +43 -0
  14. data/ext/extconf.rb +45 -0
  15. data/ext/generate.c +1387 -0
  16. data/ext/markdown.c +939 -0
  17. data/ext/markdown.h +135 -0
  18. data/ext/mkdio.c +241 -0
  19. data/ext/mkdio.h +66 -0
  20. data/ext/resource.c +169 -0
  21. data/ext/version.c +28 -0
  22. data/lib/bluecloth.rb +148 -0
  23. data/rake/191_compat.rb +26 -0
  24. data/rake/dependencies.rb +76 -0
  25. data/rake/helpers.rb +412 -0
  26. data/rake/manual.rb +782 -0
  27. data/rake/packaging.rb +116 -0
  28. data/rake/publishing.rb +321 -0
  29. data/rake/rdoc.rb +40 -0
  30. data/rake/style.rb +62 -0
  31. data/rake/svn.rb +639 -0
  32. data/rake/testing.rb +204 -0
  33. data/rake/verifytask.rb +64 -0
  34. data/rake/win32.rb +186 -0
  35. data/spec/bluecloth/101_changes_spec.rb +141 -0
  36. data/spec/bluecloth/autolinks_spec.rb +49 -0
  37. data/spec/bluecloth/blockquotes_spec.rb +143 -0
  38. data/spec/bluecloth/code_spans_spec.rb +164 -0
  39. data/spec/bluecloth/emphasis_spec.rb +164 -0
  40. data/spec/bluecloth/entities_spec.rb +65 -0
  41. data/spec/bluecloth/hrules_spec.rb +90 -0
  42. data/spec/bluecloth/images_spec.rb +92 -0
  43. data/spec/bluecloth/inline_html_spec.rb +238 -0
  44. data/spec/bluecloth/links_spec.rb +171 -0
  45. data/spec/bluecloth/lists_spec.rb +294 -0
  46. data/spec/bluecloth/paragraphs_spec.rb +75 -0
  47. data/spec/bluecloth/titles_spec.rb +305 -0
  48. data/spec/bluecloth_spec.rb +209 -0
  49. data/spec/bugfix_spec.rb +123 -0
  50. data/spec/contributions_spec.rb +85 -0
  51. data/spec/data/antsugar.txt +34 -0
  52. data/spec/data/markdowntest/Amps and angle encoding.html +17 -0
  53. data/spec/data/markdowntest/Amps and angle encoding.text +21 -0
  54. data/spec/data/markdowntest/Auto links.html +18 -0
  55. data/spec/data/markdowntest/Auto links.text +13 -0
  56. data/spec/data/markdowntest/Backslash escapes.html +118 -0
  57. data/spec/data/markdowntest/Backslash escapes.text +120 -0
  58. data/spec/data/markdowntest/Blockquotes with code blocks.html +15 -0
  59. data/spec/data/markdowntest/Blockquotes with code blocks.text +11 -0
  60. data/spec/data/markdowntest/Code Blocks.html +18 -0
  61. data/spec/data/markdowntest/Code Blocks.text +14 -0
  62. data/spec/data/markdowntest/Code Spans.html +5 -0
  63. data/spec/data/markdowntest/Code Spans.text +5 -0
  64. data/spec/data/markdowntest/Hard-wrapped paragraphs with list-like lines.html +8 -0
  65. data/spec/data/markdowntest/Hard-wrapped paragraphs with list-like lines.text +8 -0
  66. data/spec/data/markdowntest/Horizontal rules.html +71 -0
  67. data/spec/data/markdowntest/Horizontal rules.text +67 -0
  68. data/spec/data/markdowntest/Inline HTML (Advanced).html +15 -0
  69. data/spec/data/markdowntest/Inline HTML (Advanced).text +15 -0
  70. data/spec/data/markdowntest/Inline HTML (Simple).html +72 -0
  71. data/spec/data/markdowntest/Inline HTML (Simple).text +69 -0
  72. data/spec/data/markdowntest/Inline HTML comments.html +13 -0
  73. data/spec/data/markdowntest/Inline HTML comments.text +13 -0
  74. data/spec/data/markdowntest/Links, inline style.html +11 -0
  75. data/spec/data/markdowntest/Links, inline style.text +12 -0
  76. data/spec/data/markdowntest/Links, reference style.html +52 -0
  77. data/spec/data/markdowntest/Links, reference style.text +71 -0
  78. data/spec/data/markdowntest/Links, shortcut references.html +9 -0
  79. data/spec/data/markdowntest/Links, shortcut references.text +20 -0
  80. data/spec/data/markdowntest/Literal quotes in titles.html +3 -0
  81. data/spec/data/markdowntest/Literal quotes in titles.text +7 -0
  82. data/spec/data/markdowntest/Markdown Documentation - Basics.html +314 -0
  83. data/spec/data/markdowntest/Markdown Documentation - Basics.text +306 -0
  84. data/spec/data/markdowntest/Markdown Documentation - Syntax.html +942 -0
  85. data/spec/data/markdowntest/Markdown Documentation - Syntax.text +888 -0
  86. data/spec/data/markdowntest/Nested blockquotes.html +9 -0
  87. data/spec/data/markdowntest/Nested blockquotes.text +5 -0
  88. data/spec/data/markdowntest/Ordered and unordered lists.html +148 -0
  89. data/spec/data/markdowntest/Ordered and unordered lists.text +131 -0
  90. data/spec/data/markdowntest/Strong and em together.html +7 -0
  91. data/spec/data/markdowntest/Strong and em together.text +7 -0
  92. data/spec/data/markdowntest/Tabs.html +25 -0
  93. data/spec/data/markdowntest/Tabs.text +21 -0
  94. data/spec/data/markdowntest/Tidyness.html +8 -0
  95. data/spec/data/markdowntest/Tidyness.text +5 -0
  96. data/spec/data/ml-announce.txt +17 -0
  97. data/spec/data/re-overflow.txt +67 -0
  98. data/spec/data/re-overflow2.txt +281 -0
  99. data/spec/lib/constants.rb +5 -0
  100. data/spec/lib/helpers.rb +137 -0
  101. data/spec/lib/matchers.rb +235 -0
  102. data/spec/markdowntest_spec.rb +76 -0
  103. metadata +305 -0
@@ -0,0 +1,629 @@
1
+ -- Fri, 02 Jan 2009 23:46:50 -0000 by deveiant (r98) -----
2
+ Added: experiments/old-bluecloth.rb (new)
3
+ Changed: experiments/benchmark.rb
4
+ /trunk
5
+
6
+ Made the benchmark run with no additional prep (other than installing the requisite alternative implementations).
7
+
8
+
9
+ -- Fri, 02 Jan 2009 17:56:30 -0000 by deveiant (r97) -----
10
+ Changed: /trunk
11
+ Rakefile
12
+ ChangeLog
13
+ docs
14
+ ext/extconf.rb
15
+ bin/bluecloth (and 1 other/s)
16
+
17
+ * Updated build system
18
+ * Added some stuff for building under Windows. Thanks to Daniel J. Berger for the help.
19
+ * Fixed bug in bin/bluecloth.
20
+
21
+
22
+ -- Tue, 30 Dec 2008 08:16:47 -0000 by deveiant (r96) -----
23
+ Changed: ChangeLog
24
+ ext/generate.c
25
+
26
+ Updated to Discount 1.3.1.
27
+
28
+
29
+ -- Sun, 28 Dec 2008 06:19:13 -0000 by deveiant (r95) -----
30
+ Changed: experiments/benchmark.rb
31
+ ext/bluecloth.c
32
+
33
+ * Removed some chatty memory-allocation debugging.
34
+ * Added an explanatory comment in the benchmark script.
35
+
36
+
37
+ -- Sun, 28 Dec 2008 03:04:23 -0000 by deveiant (r94) -----
38
+ Added: experiments/benchmark.rb (new)
39
+ experiments/benchmark.txt (new)
40
+ Changed: /trunk
41
+ Rakefile
42
+ project.yml
43
+ ChangeLog
44
+
45
+ * Include the ext/VERSION file in the gem, as it's required for building.
46
+ * Added a benchmark script
47
+
48
+
49
+ -- Sat, 27 Dec 2008 02:28:32 -0000 by deveiant (r93) -----
50
+ Changed: ext/bluecloth.c
51
+ spec/bluecloth_spec.rb
52
+
53
+ Added support for Discount Markdown extensions and Pandoc header.
54
+
55
+
56
+ -- Thu, 25 Dec 2008 09:53:24 -0000 by deveiant (r92) -----
57
+ Changed: spec/markdowntest_spec.rb
58
+
59
+ Handle the 'tidy' library not being installed.
60
+
61
+
62
+ -- Thu, 25 Dec 2008 09:41:29 -0000 by deveiant (r91) -----
63
+ Changed: spec/markdowntest_spec.rb
64
+
65
+ Forgot to change the libtidy name hack to the spec itself.
66
+
67
+
68
+ -- Thu, 25 Dec 2008 09:37:04 -0000 by deveiant (r90) -----
69
+ Added: ChangeLog (new)
70
+ LICENSE.discount (new)
71
+ Changed: README
72
+ .irbrc
73
+ LICENSE
74
+ ext/bluecloth.c
75
+ spec/bluecloth_spec.rb
76
+ ext/extconf.rb (and 5 other/s)
77
+ Deleted: utils.rb
78
+ CHANGES
79
+
80
+ * Cleaned up a bunch of stuff from the first version.
81
+ * Initial whack at README/RDoc updates
82
+ * Trying a new hack to figure out what file extension libtidy might have on
83
+ any platform. This will work under MacOS X and FreeBSD; needs testing under
84
+ other platforms.
85
+ * Pass the flags to the allocator so MKD_NOHEADER is applied.
86
+ * Removed some options that aren't useful with the way the extension works, or which
87
+ don't seem to behave as advertised.
88
+ * Renamed :strip_html option to :escape_html as it's a more-accurate description of what it's
89
+ actually for.
90
+
91
+
92
+ -- Thu, 25 Dec 2008 03:29:19 -0000 by deveiant (r89) -----
93
+ Added: ext/docheader.c (new)
94
+ ext/resource.c (new)
95
+ Rakefile.local (new)
96
+ ext/mkdio.c (new)
97
+ ext/mkdio.h (new)
98
+ ext/amalloc.h (new) (and 11 other/s)
99
+ Changed: README
100
+ project.yml
101
+ spec/lib/matchers.rb
102
+ experiments/re-overflow.rb
103
+ .irbrc
104
+ Rakefile (and 13 other/s)
105
+
106
+ First working commit of Discount-backed BlueCloth 2.0.
107
+
108
+
109
+ -- Mon, 01 Sep 2008 22:24:13 -0000 by deveiant (r87) -----
110
+ Added: LICENSE (new)
111
+ spec/lib/helpers.rb (new)
112
+ Changed: README
113
+ Rakefile
114
+ spec/bluecloth_spec.rb
115
+ spec/contributions_spec.rb
116
+ spec/lib/matchers.rb
117
+ spec/markdowntest_spec.rb (and 3 other/s)
118
+ Deleted: tests
119
+
120
+ * Checkpoint commit of MarkdownTest integration
121
+
122
+
123
+ -- Wed, 20 Aug 2008 21:46:31 -0000 by deveiant (r86) -----
124
+ Added: project.yml (new)
125
+ spec/data/markdowntest/Markdown Documentation - Syntax.text (new)
126
+ spec/data/re-overflow2.txt (new)
127
+ spec/lib/constants.rb (new)
128
+ spec/data/markdowntest/Auto links.text (new)
129
+ spec/data/markdowntest/Inline HTML comments.text (new) (and 52 other/s)
130
+ Changed: /trunk
131
+ tests/contrib.tests.rb
132
+ web/index.html
133
+ lib/bluecloth.rb
134
+ bin/bluecloth
135
+ Deleted: LICENSE.txt
136
+ MANIFEST
137
+ install.rb
138
+ LICENSE
139
+ docs/CATALOG
140
+ makedist.rb (and 3 other/s)
141
+
142
+ Adding MarkdownTest tests, new build system. [broken build]
143
+
144
+
145
+ -- Thu, 12 May 2005 21:31:59 -0000 by ged (r76) -----
146
+ Added: tests/bug.tests.rb
147
+ -> renamed from /trunk/tests/10_Bug.tests.rb@r74
148
+ tests/contrib.tests.rb
149
+ -> renamed from /trunk/tests/15_Contrib.tests.rb@r74
150
+ tests/markdown.tests.rb
151
+ -> renamed from /trunk/tests/05_Markdown.tests.rb@r74
152
+ tests/class.tests.rb
153
+ -> renamed from /trunk/tests/00_Class.tests.rb@r74
154
+ Deleted: tests/10_Bug.tests.rb
155
+ tests/00_Class.tests.rb
156
+ tests/15_Contrib.tests.rb
157
+ tests/05_Markdown.tests.rb
158
+
159
+ - Renamed tests without goofy numbers.
160
+
161
+
162
+ -- Thu, 12 May 2005 20:31:10 -0000 by ged (r75) -----
163
+ Added: LICENSE.txt (new)
164
+ Changed: README
165
+
166
+ - Updated license to BSD/Ruby's; included LICENSE.txt from Ruby dist.
167
+
168
+
169
+ -- Thu, 12 May 2005 19:48:27 -0000 by ged (r74) -----
170
+ Changed: tests/05_Markdown.tests.rb
171
+
172
+ - Added tests to make sure I dont break lists trying to fix #15
173
+ - Added tests for Markdown 1.0.1 syntax (#18).
174
+
175
+
176
+ -- Thu, 12 May 2005 19:26:33 -0000 by ged (r73) -----
177
+ Changed: tests/10_Bug.tests.rb
178
+
179
+ - Added new tests for bug #17 (two-character bold/italic bug)
180
+ - Added new test for bug #12 (Ruby with warnings enabled causes ArgumentError)
181
+
182
+
183
+ -- Tue, 31 Aug 2004 05:19:45 -0000 by ged (r72) -----
184
+ Changed: MANIFEST
185
+ CHANGES
186
+
187
+ - Updated for 1.0.0fc3 release.
188
+
189
+
190
+ -- Wed, 25 Aug 2004 05:27:15 -0000 by ged (r69) -----
191
+ Changed: lib/bluecloth.rb
192
+ tests/05_Markdown.tests.rb
193
+
194
+ - Fixed bug introduced by the last bugfix, fixed tests that missed the new bug.
195
+
196
+
197
+ -- Wed, 25 Aug 2004 05:14:37 -0000 by ged (r68) -----
198
+ Added: experiments/re-overflow2.rb (new)
199
+ tests/data/re-overflow2.txt (new)
200
+ Changed: tests/10_Bug.tests.rb
201
+ lib/bluecloth.rb
202
+
203
+ - Tracked down and fixed another regexp engine overflow bug; added a new test,
204
+ datafile, and minimal testcase that illustrates it.
205
+
206
+
207
+ -- Tue, 24 Aug 2004 14:57:17 -0000 by ged (r66) -----
208
+ Changed: .gemspec
209
+
210
+ - Updated to v1.0.0.
211
+
212
+
213
+ -- Tue, 24 Aug 2004 14:56:47 -0000 by ged (r65) -----
214
+ Changed: README
215
+
216
+ - Updated to v1.0.0.
217
+
218
+
219
+ -- Tue, 24 Aug 2004 14:53:32 -0000 by ged (r64) -----
220
+ Changed: CHANGES
221
+
222
+ - Updated to 20040824.
223
+
224
+
225
+ -- Tue, 24 Aug 2004 14:52:05 -0000 by ged (r63) -----
226
+ Changed: /trunk
227
+
228
+ - Added CHANGES.xml to ignore property for root directory.
229
+
230
+
231
+ -- Tue, 24 Aug 2004 14:48:44 -0000 by ged (r62) -----
232
+ Changed: lib/bluecloth.rb
233
+ tests/05_Markdown.tests.rb
234
+
235
+ - Brought list of block-level tags up to date with Markdown 1.0's list
236
+ - Propagated fix for overflow to the other two block-match patterns.
237
+ - Abstracted list-item patterns out into constants to closer match Markdown's
238
+ code and to expose them for use in other code.
239
+ - Fixed indentation of <pre> blocks inside blockquotes.
240
+ - Added new tests for all of the above.
241
+
242
+
243
+ -- Sun, 22 Aug 2004 19:28:23 -0000 by ged (r61) -----
244
+ Changed: lib/bluecloth.rb
245
+ tests/05_Markdown.tests.rb
246
+
247
+ - Fixed re-engine overflow for all tested cases (thanks to Martin Chase
248
+ <stillflame@FaerieMUD.org> for the fix).
249
+ - Wrote some additional tests to be sure the block-level html escaper is working
250
+ after the above fix.
251
+
252
+
253
+ -- Sun, 22 Aug 2004 19:26:25 -0000 by ged (r60) -----
254
+ Changed: tests/10_Bug.tests.rb
255
+
256
+ - Removed skip of overflow test.
257
+
258
+
259
+ -- Sun, 22 Aug 2004 19:24:35 -0000 by ged (r59) -----
260
+ Changed: experiments/re-overflow.rb
261
+
262
+ - "Fixed" the test case so it overflows again.
263
+
264
+
265
+ -- Mon, 09 Aug 2004 05:12:02 -0000 by deveiant (r58) -----
266
+ Changed: CHANGES
267
+
268
+ - Updated to 20040808.
269
+
270
+
271
+ -- Mon, 09 Aug 2004 01:16:14 -0000 by deveiant (r57) -----
272
+ Changed: tests/bctestcase.rb
273
+
274
+ - Modified to work from wherever the test is run (RPA compat).
275
+
276
+
277
+ -- Mon, 09 Aug 2004 01:15:57 -0000 by deveiant (r56) -----
278
+ Changed: test.rb
279
+
280
+ - Modified to work from wherever the test is run (RPA compat).
281
+
282
+
283
+ -- Mon, 09 Aug 2004 01:15:27 -0000 by deveiant (r55) -----
284
+ Changed: .gemspec
285
+
286
+ - Updated version attribute.
287
+
288
+
289
+ -- Mon, 09 Aug 2004 01:14:58 -0000 by deveiant (r54) -----
290
+ Changed: lib/bluecloth.rb
291
+ tests/05_Markdown.tests.rb
292
+
293
+ - Brought markdown syntax up to date with Markdown 1.0fc1.
294
+
295
+
296
+ -- Mon, 09 Aug 2004 01:13:16 -0000 by deveiant (r53) -----
297
+ Changed: tests/TEMPLATE.rb.tpl
298
+ tests/10_Bug.tests.rb
299
+ tests/00_Class.tests.rb
300
+ tests/15_Contrib.tests.rb
301
+
302
+ - Made the require-header work wherever the test is run from (RPA compat).
303
+
304
+
305
+ -- Mon, 21 Jun 2004 15:20:59 -0000 by deveiant (r51) -----
306
+ Added: docs/makedocs.rb (new)
307
+ docs/CATALOG (new)
308
+ CHANGES (new)
309
+ docs (new)
310
+ experiments/re-overflow.rb (new)
311
+ Changed: README
312
+ /trunk
313
+ tests/10_Bug.tests.rb
314
+ lib/bluecloth.rb
315
+ tests/05_Markdown.tests.rb
316
+
317
+ - Brought up to date with Markdown 1.0b7.
318
+ - Ignore list properties on the base and docs directories updated.
319
+
320
+
321
+ -- Wed, 02 Jun 2004 13:37:15 -0000 by deveiant (r50) -----
322
+ Changed: bin/bluecloth
323
+
324
+ - Commented out non-functional --output option for now.
325
+
326
+
327
+ -- Wed, 02 Jun 2004 03:30:18 -0000 by deveiant (r49) -----
328
+ Added: tests/data/re-overflow.txt (new)
329
+
330
+ Initial checkin.
331
+
332
+
333
+ -- Wed, 02 Jun 2004 03:29:31 -0000 by deveiant (r48) -----
334
+ Changed: tests/10_Bug.tests.rb
335
+
336
+ - Added test for bug #574.
337
+
338
+
339
+ -- Wed, 02 Jun 2004 03:21:04 -0000 by deveiant (r47) -----
340
+ Changed: tests/05_Markdown.tests.rb
341
+
342
+ - Test for bug #620 - Unresolved reference-style links doubled the character
343
+ immediately after them.
344
+ - Added additional test email addresses, including ones that use extended latin
345
+ charset.
346
+ - Added bug reference to a test.
347
+
348
+
349
+ -- Wed, 02 Jun 2004 03:19:41 -0000 by deveiant (r46) -----
350
+ Changed: lib/bluecloth.rb
351
+
352
+ - Fix for bug #620 - Unresolved reference-style links doubled the character
353
+ immediately after them.
354
+
355
+
356
+ -- Fri, 14 May 2004 02:43:17 -0000 by deveiant (r45) -----
357
+ Changed: tests/05_Markdown.tests.rb
358
+
359
+ - Added tests for bug #568 (Two sets of bold text on one line doesn't render
360
+ properly). Tests confirmed that two sets of bold text did work, but single
361
+ characters being bolded does not.
362
+
363
+
364
+ -- Fri, 14 May 2004 02:41:52 -0000 by deveiant (r44) -----
365
+ Changed: lib/bluecloth.rb
366
+
367
+ - Fixed bug with bolding of single characters (bug #568).
368
+
369
+
370
+ -- Tue, 04 May 2004 14:35:11 -0000 by deveiant (r43) -----
371
+ Changed: lib/bluecloth.rb
372
+ tests/05_Markdown.tests.rb
373
+
374
+ - Additional fixes and tests for bug #537.
375
+
376
+
377
+ -- Fri, 30 Apr 2004 03:40:38 -0000 by deveiant (r41) -----
378
+ Changed: MANIFEST
379
+
380
+ - Added bin/ directory.
381
+
382
+
383
+ -- Fri, 30 Apr 2004 03:40:04 -0000 by deveiant (r40) -----
384
+ Changed: README
385
+
386
+ - Set date.
387
+
388
+
389
+ -- Fri, 30 Apr 2004 03:39:24 -0000 by deveiant (r39) -----
390
+ Changed: tests/15_Contrib.tests.rb
391
+
392
+ - Added test for Bug #543 (Safe mode does not work when there are no left
393
+ angle-brackets in the source).
394
+
395
+
396
+ -- Fri, 30 Apr 2004 03:38:42 -0000 by deveiant (r38) -----
397
+ Changed: tests/05_Markdown.tests.rb
398
+
399
+ - Added test for email address encoding (Bug #537).
400
+ - Added test for bug #541 (Leading line of codeblock with more than one tab
401
+ width of indent mistakenly unindented).
402
+
403
+
404
+ -- Fri, 30 Apr 2004 03:35:26 -0000 by deveiant (r37) -----
405
+ Changed: lib/bluecloth.rb
406
+
407
+ - Fix for bug #543 (Safe mode does not work when there are no left
408
+ angle-brackets in the source).
409
+
410
+
411
+ -- Fri, 30 Apr 2004 03:33:01 -0000 by deveiant (r36) -----
412
+ Changed: lib/bluecloth.rb
413
+
414
+ - Fix for bug #541 (Leading line of codeblock with more than one tab
415
+ width of indent mistakenly unindented)
416
+
417
+
418
+ -- Fri, 30 Apr 2004 03:31:37 -0000 by deveiant (r35) -----
419
+ Changed: lib/bluecloth.rb
420
+
421
+ - Fix for bug #537. Fix suggested by Marek Janukowicz.
422
+
423
+
424
+ -- Fri, 23 Apr 2004 04:47:42 -0000 by deveiant (r32) -----
425
+ Changed: makedist.rb
426
+
427
+ - Temporary fixes until I have time to integrate SVN stuff.
428
+
429
+
430
+ -- Fri, 23 Apr 2004 04:46:51 -0000 by deveiant (r31) -----
431
+ Changed: .gemspec
432
+
433
+ - Version bump.
434
+
435
+
436
+ -- Fri, 23 Apr 2004 04:46:15 -0000 by deveiant (r30) -----
437
+ Changed: README
438
+
439
+ - Brought in line with most-recent release.
440
+
441
+
442
+ -- Fri, 23 Apr 2004 04:40:50 -0000 by deveiant (r29) -----
443
+ Changed: lib/bluecloth.rb
444
+
445
+ - Version bump.
446
+
447
+
448
+ -- Fri, 23 Apr 2004 04:39:05 -0000 by deveiant (r28) -----
449
+ Changed: lib/bluecloth.rb
450
+
451
+ - Bugfixes for bugs 524 and 525. Thanks to David Heinemeier Hansson and Javier
452
+ Goizueta for bug reports and fixes.
453
+
454
+
455
+ -- Fri, 23 Apr 2004 04:34:31 -0000 by deveiant (r27) -----
456
+ Changed: tests/05_Markdown.tests.rb
457
+
458
+ - Test for bugs 524 and 525
459
+
460
+
461
+ -- Fri, 16 Apr 2004 01:55:19 -0000 by deveiant (r25) -----
462
+ Changed: README
463
+
464
+ - Corrected version
465
+
466
+
467
+ -- Fri, 16 Apr 2004 01:53:52 -0000 by deveiant (r24) -----
468
+ Changed: lib/bluecloth.rb
469
+
470
+ - Brought Version up to date.
471
+
472
+
473
+ -- Fri, 16 Apr 2004 01:52:17 -0000 by deveiant (r23) -----
474
+ Changed: /trunk
475
+
476
+ - Updated ignore metadata.
477
+
478
+
479
+ -- Fri, 16 Apr 2004 01:51:14 -0000 by deveiant (r22) -----
480
+ Added: tests/data/antsugar.txt (new)
481
+ web (new)
482
+ web/base.css (new)
483
+ .gemspec (new)
484
+ tests/data/ml-announce.txt (new)
485
+ web/index.html (new) (and 3 other/s)
486
+
487
+ Initial checkin.
488
+
489
+
490
+ -- Fri, 16 Apr 2004 01:50:31 -0000 by deveiant (r21) -----
491
+ Changed: MANIFEST
492
+
493
+ - Changed tests/ pattern to catch all tests.
494
+ - Added CHANGES.
495
+ - Dropped MANIFEST.
496
+
497
+
498
+ -- Fri, 16 Apr 2004 01:49:46 -0000 by deveiant (r20) -----
499
+ Changed: install.rb
500
+
501
+ - Added missing dependency check for devel-logger.
502
+
503
+
504
+ -- Fri, 16 Apr 2004 01:49:12 -0000 by deveiant (r19) -----
505
+ Changed: lib/bluecloth.rb
506
+
507
+ - Added contributors section to the header.
508
+ - Integrated html- and style-filtering patch from Florian Gross <flgr@ccan.de>.
509
+ - Corrections to RedCloth-compatibility.
510
+ - Removed log from renderstate, as it's an attribute of the string itself.
511
+
512
+
513
+ -- Fri, 16 Apr 2004 01:48:27 -0000 by deveiant (r18) -----
514
+ Changed: README
515
+
516
+ - Added contributors section to the header.
517
+ - Integrated html- and style-filtering patch from Florian Gross <flgr@ccan.de>.
518
+ - Corrections to RedCloth-compatibility.
519
+ - Removed log from renderstate, as it's an attribute of the string itself.
520
+
521
+
522
+ -- Mon, 12 Apr 2004 06:02:54 -0000 by deveiant (r15) -----
523
+ Changed: tests/10_Bug.tests.rb
524
+
525
+ - Added keywords.
526
+
527
+
528
+ -- Mon, 12 Apr 2004 06:01:40 -0000 by deveiant (r14) -----
529
+ Changed: tests/10_Bug.tests.rb
530
+
531
+ - Updated comments/added to-do marker.
532
+
533
+
534
+ -- Mon, 12 Apr 2004 05:47:16 -0000 by deveiant (r13) -----
535
+ Changed: /trunk
536
+
537
+ - Updated ignore list.
538
+
539
+
540
+ -- Mon, 12 Apr 2004 05:46:49 -0000 by deveiant (r12) -----
541
+ Added: bin (new)
542
+ bin/bluecloth (new)
543
+
544
+ Initial checkin.
545
+
546
+
547
+ -- Mon, 12 Apr 2004 05:45:07 -0000 by deveiant (r11) -----
548
+ Changed: utils.rb
549
+
550
+ - Added a time() function for timing bits of code.
551
+
552
+
553
+ -- Mon, 12 Apr 2004 05:43:10 -0000 by deveiant (r10) -----
554
+ Changed: lib/bluecloth.rb
555
+
556
+ - Changed keyword constants from CVS to SVN keywords.
557
+
558
+
559
+ -- Mon, 12 Apr 2004 05:29:37 -0000 by deveiant (r9) -----
560
+ Changed: README
561
+
562
+ - Changed location of keyword stuff, added URL keyword.
563
+
564
+
565
+ -- Mon, 12 Apr 2004 05:26:38 -0000 by deveiant (r8) -----
566
+ Changed: README
567
+
568
+ - Added the rest of the content.
569
+
570
+
571
+ -- Mon, 12 Apr 2004 05:21:47 -0000 by deveiant (r7) -----
572
+ Changed: lib/bluecloth.rb
573
+
574
+ - Fixed license in header
575
+ - Fixed error message in exception class with no second argument.
576
+ - Removed unnecessary (and slllooowww) 'm' flag from HTML block matching
577
+ patterns.
578
+ - Fixed code-span scanning to match spans that occur at the beginning of the
579
+ line.
580
+ - Fixed error in code-span exception case.
581
+
582
+
583
+ -- Mon, 12 Apr 2004 05:17:45 -0000 by deveiant (r6) -----
584
+ Added: tests/10_Bug.tests.rb
585
+ -> renamed from /trunk/tests/10_Output.tests.rb@r5
586
+ Deleted: tests/10_Output.tests.rb
587
+
588
+ - Renamed to reflect repurposing.
589
+
590
+
591
+ -- Mon, 12 Apr 2004 05:17:08 -0000 by deveiant (r5) -----
592
+ Changed: tests/10_Output.tests.rb
593
+
594
+ - Converted to bug-testing testcase.
595
+
596
+
597
+ -- Mon, 12 Apr 2004 05:15:34 -0000 by deveiant (r4) -----
598
+ Changed: tests/05_Markdown.tests.rb
599
+
600
+ - Added some mode code span tests to catch bugs.
601
+
602
+
603
+ -- Sun, 11 Apr 2004 04:40:29 -0000 by deveiant (r3) -----
604
+ Added: MANIFEST (new)
605
+ Changed: /trunk
606
+ utils.rb
607
+ makedist.rb
608
+ install.rb
609
+
610
+ - Updated dist/install utilities/libs.
611
+
612
+
613
+ -- Sat, 10 Apr 2004 20:36:46 -0000 by deveiant (r2) -----
614
+ Deleted: Markdown_1.0b4
615
+
616
+ Removed markdown reference source
617
+
618
+
619
+ -- Sat, 10 Apr 2004 20:35:02 -0000 by deveiant (r1) -----
620
+ Added: README (new)
621
+ /trunk (new)
622
+ utils.rb (new)
623
+ tests (new)
624
+ experiments (new)
625
+ makedist.rb (new) (and 18 other/s)
626
+
627
+ Initial checkin
628
+
629
+