bluecloth 2.0.5-x86-mingw32

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