bluecloth 2.0.5-x86-mingw32 → 2.0.6.pre120-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.
- data/ChangeLog +242 -663
- data/LICENSE +1 -1
- data/README +2 -2
- data/Rakefile +40 -37
- data/Rakefile.local +21 -41
- data/ext/VERSION +1 -1
- data/ext/bluecloth.c +17 -3
- data/ext/bluecloth.h +19 -0
- data/ext/config.h +4 -0
- data/ext/cstring.h +3 -2
- data/ext/extconf.rb +5 -1
- data/ext/generate.c +148 -27
- data/ext/markdown.c +135 -27
- data/ext/markdown.h +3 -2
- data/ext/mkdio.h +1 -0
- data/lib/1.8/bluecloth_ext.so +0 -0
- data/lib/1.9/bluecloth_ext.so +0 -0
- data/lib/bluecloth.rb +11 -8
- data/rake/helpers.rb +23 -1
- data/rake/hg.rb +70 -11
- data/rake/manual.rb +1 -1
- data/rake/packaging.rb +25 -34
- data/rake/publishing.rb +15 -67
- data/spec/bluecloth/blockquotes_spec.rb +24 -22
- data/spec/bluecloth_spec.rb +31 -0
- data/spec/bugfix_spec.rb +37 -1
- data/spec/discount_spec.rb +117 -0
- data/spec/markdowntest_spec.rb +8 -8
- metadata +11 -135
data/ChangeLog
CHANGED
@@ -1,784 +1,363 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
120[tip] 5bae8ff5846f 2010-01-15 20:06 -0800 ged
|
2
|
+
Add version-specific extension-loading for native gems.
|
3
3
|
|
4
|
-
|
4
|
+
119 e04eccd695ee 2010-01-14 09:00 -0800 ged
|
5
|
+
Encoding bugfix for Ruby 1.9.1.
|
5
6
|
|
7
|
+
118 7c15c9beb634 2010-01-05 05:39 -0800 ged
|
8
|
+
Enable native/cross-compilation, add pending Markdown-Extra table specs.
|
6
9
|
|
7
|
-
|
8
|
-
|
9
|
-
experiments/old-bluecloth.rb
|
10
|
-
spec/bluecloth_spec.rb
|
11
|
-
lib/bluecloth.rb
|
12
|
-
spec/bugfix_spec.rb
|
10
|
+
117 e04270524114 2010-01-04 08:18 -0800 ged
|
11
|
+
Removing old files, updated build system.
|
13
12
|
|
14
|
-
|
15
|
-
|
16
|
-
* Set the top-level 'Markdown' constant as an alias for BlueCloth if it's not
|
17
|
-
already set by something else.
|
13
|
+
116 f2af577b2cc0 2010-01-03 11:17 -0800 ged
|
14
|
+
Updated benchmark to include kramdown.
|
18
15
|
|
16
|
+
115 b715702c19f7 2010-01-02 15:08 -0800 ged
|
17
|
+
Adding a minimal test case for #60.
|
19
18
|
|
20
|
-
|
21
|
-
|
19
|
+
114:112,113 617e767c1331 2010-01-02 14:49 -0800 ged
|
20
|
+
Added spec for #56 so I can close it.
|
22
21
|
|
23
|
-
|
22
|
+
113:111 8be386ec10a8 2009-11-04 15:56 -0800 ged
|
23
|
+
Updated build files.
|
24
24
|
|
25
|
+
112 5c81c9a5012f 2010-01-01 10:54 -0800 ged
|
26
|
+
Build with rake-compiler, fix some bugs.
|
25
27
|
|
26
|
-
|
27
|
-
|
28
|
-
ext/VERSION
|
29
|
-
ext/markdown.h
|
30
|
-
ext/generate.c
|
28
|
+
111 ce4fb0ebf7c0 2009-08-03 12:58 -0700 ged
|
29
|
+
* Updated to Discount 1.5 (+bugfixes)
|
31
30
|
|
32
|
-
|
31
|
+
110 79aeab070db6 2009-08-03 05:59 -0700 ged
|
32
|
+
* Updated build system
|
33
33
|
|
34
|
+
109 2f1e2866f511 2009-07-29 09:31 -0700 ged
|
35
|
+
* Adding an .hgignore
|
34
36
|
|
35
|
-
|
36
|
-
|
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)
|
37
|
+
108 ca59ad11e08f 2009-07-29 23:56 +0000 convert-repo
|
38
|
+
update tags
|
43
39
|
|
44
|
-
|
45
|
-
|
46
|
-
* Added support for the MKD_AUTOLINK and MKD_SAFELINK.
|
40
|
+
107 c4984d0f836b 2009-07-16 07:18 +0000 ged
|
41
|
+
Test for bzero (used in generate.c), and if it isn't defined (e.g., Windows using VC), define it
|
47
42
|
|
43
|
+
106 fc2e0f28ccab 2009-07-16 00:22 +0000 ged
|
44
|
+
Fixing extra release files in the Rakefile
|
48
45
|
|
49
|
-
|
50
|
-
|
51
|
-
ext/xmlpage.c (new)
|
52
|
-
ext/xml.c (new)
|
53
|
-
ext/css.c (new)
|
54
|
-
Changed: spec/markdowntest_spec.rb
|
46
|
+
105[2.0.5] 2cc7a3180ee8 2009-07-16 00:18 +0000 ged
|
47
|
+
Bumping version to 2.0.5.
|
55
48
|
|
56
|
-
|
57
|
-
|
49
|
+
104 6164b7b34474 2009-07-15 23:52 +0000 ged
|
50
|
+
* Updated the build system
|
58
51
|
|
52
|
+
103 6d52ea6e383b 2009-07-06 23:57 +0000 ged
|
53
|
+
Adding a spec to test out the DoS reported by Ben Sandofsky (refs #57).
|
59
54
|
|
60
|
-
|
61
|
-
|
55
|
+
102[2.0.4] 824e2d6eab4c 2009-06-30 01:33 +0000 ged
|
56
|
+
* Updated with Discount 1.4.4.
|
62
57
|
|
63
|
-
|
58
|
+
101 70e807c1eead 2009-06-15 13:15 +0000 ged
|
59
|
+
* Updated to Discount 1.4.2.
|
64
60
|
|
61
|
+
100[2.0.3] 4e24d4de383f 2009-05-26 05:08 +0000 ged
|
62
|
+
* Fixing tests under Ruby 1.9.1. Thanks to Diego Elio Pettenò for the fix.
|
65
63
|
|
66
|
-
|
67
|
-
|
68
|
-
ext/bluecloth.c
|
69
|
-
ext/markdown.c
|
70
|
-
ext/mkdio.c
|
71
|
-
ext/VERSION
|
72
|
-
spec/bluecloth_spec.rb (and 6 other/s)
|
64
|
+
99[2.0.2] 68e2db2b0c94 2009-05-14 15:26 +0000 ged
|
65
|
+
Bumping version to 2.0.2.
|
73
66
|
|
74
|
-
|
75
|
-
|
67
|
+
98 824864e57182 2009-05-14 15:21 +0000 ged
|
68
|
+
* Updated to Discount 1.4.0.
|
76
69
|
|
70
|
+
97[2.0.1] bbd194b2caca 2009-04-07 22:07 +0000 ged
|
71
|
+
* Updated build system.
|
77
72
|
|
78
|
-
|
79
|
-
|
80
|
-
experiments/benchmark.rb
|
81
|
-
/trunk
|
82
|
-
Rakefile
|
73
|
+
96[2.0.0]:93 90ca87312078 2009-03-25 14:42 +0000 ged
|
74
|
+
Merged build system update and README changes from the [log:branches/spec-and-19-fixes@109:110 spec-and-19-fixes branch].
|
83
75
|
|
84
|
-
|
85
|
-
|
86
|
-
email.
|
87
|
-
* Added BlueFeather and TartanMarkdown to the benchmark script
|
76
|
+
95 93546826fa39 2009-03-25 14:35 +0000 ged
|
77
|
+
Updated build system.
|
88
78
|
|
79
|
+
94:91 7920ff5c7aed 2009-03-25 14:32 +0000 ged
|
80
|
+
README wording fix.
|
89
81
|
|
90
|
-
|
91
|
-
|
92
|
-
-> copied from /trunk/LICENSE@r101
|
93
|
-
Changed: README
|
94
|
-
ext
|
95
|
-
Rakefile
|
96
|
-
ChangeLog
|
82
|
+
93 2bde45351ad8 2009-03-13 23:26 +0000 ged
|
83
|
+
* Updated build system
|
97
84
|
|
98
|
-
|
85
|
+
92:86 2d482bf2a096 2009-03-13 22:56 +0000 ged
|
86
|
+
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].
|
99
87
|
|
88
|
+
91 f95cdb6af413 2009-03-13 22:44 +0000 ged
|
89
|
+
* Fixes for 1.9.1.
|
100
90
|
|
101
|
-
|
102
|
-
|
103
|
-
Rakefile
|
104
|
-
ChangeLog
|
91
|
+
90 f575c3ddbe33 2009-03-13 22:39 +0000 ged
|
92
|
+
* Finished splitting out the old auto-generated specs into explicit ones.
|
105
93
|
|
106
|
-
|
107
|
-
|
94
|
+
89 7edafd943312 2009-03-13 21:21 +0000 ged
|
95
|
+
* Updated build system
|
108
96
|
|
97
|
+
88 529efba157cd 2009-03-13 20:42 +0000 ged
|
98
|
+
Checkpoint commit
|
109
99
|
|
110
|
-
|
111
|
-
|
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)
|
100
|
+
87 bea54f3c8ad0 2009-03-13 20:42 +0000 ged
|
101
|
+
Branching to split out the specs and add fixes for 1.9.
|
129
102
|
|
130
|
-
|
103
|
+
86 9a5ad2923bb3 2009-02-23 14:16 +0000 ged
|
104
|
+
* Trying to fix whitespace differences in generated output.
|
131
105
|
|
106
|
+
85 7d9d7867dcd2 2009-02-23 06:58 +0000 ged
|
107
|
+
Started work on fixes for 1.9.1.
|
132
108
|
|
133
|
-
|
134
|
-
|
135
|
-
spec/bluecloth_spec.rb
|
136
|
-
spec/lib/matchers.rb
|
109
|
+
84 20aece07667c 2009-01-07 21:43 +0000 ged
|
110
|
+
Fixed the VERSION
|
137
111
|
|
138
|
-
|
112
|
+
83 4e4704585c05 2009-01-02 23:46 +0000 ged
|
113
|
+
Made the benchmark run with no additional prep (other than installing the requisite alternative implementations).
|
139
114
|
|
115
|
+
82 312e1b089c11 2009-01-02 17:56 +0000 ged
|
116
|
+
* Updated build system
|
140
117
|
|
141
|
-
|
142
|
-
|
143
|
-
spec/lib/helpers.rb
|
144
|
-
project.yml
|
145
|
-
spec/markdowntest_spec.rb
|
118
|
+
81 50d73df53a75 2008-12-30 08:16 +0000 ged
|
119
|
+
Updated to Discount 1.3.1.
|
146
120
|
|
147
|
-
|
121
|
+
80 98738523209f 2008-12-28 06:19 +0000 ged
|
122
|
+
* Removed some chatty memory-allocation debugging.
|
148
123
|
|
124
|
+
79 fb5abd6b80f0 2008-12-28 03:04 +0000 ged
|
125
|
+
* Include the ext/VERSION file in the gem, as it's required for building.
|
149
126
|
|
150
|
-
|
151
|
-
|
127
|
+
78 a6a8b77ebeea 2008-12-27 02:28 +0000 ged
|
128
|
+
Added support for Discount Markdown extensions and Pandoc header.
|
152
129
|
|
153
|
-
|
130
|
+
77 f0d9a3b66167 2008-12-25 09:53 +0000 ged
|
131
|
+
Handle the 'tidy' library not being installed.
|
154
132
|
|
133
|
+
76 1c01a3186b0f 2008-12-25 09:41 +0000 ged
|
134
|
+
Forgot to change the libtidy name hack to the spec itself.
|
155
135
|
|
156
|
-
|
157
|
-
|
158
|
-
Changed: experiments/benchmark.rb
|
159
|
-
/trunk
|
136
|
+
75 1afe9dd6b2b1 2008-12-25 09:37 +0000 ged
|
137
|
+
* Cleaned up a bunch of stuff from the first version.
|
160
138
|
|
161
|
-
|
139
|
+
74 d6a67116703f 2008-12-25 03:29 +0000 ged
|
140
|
+
First working commit of Discount-backed BlueCloth 2.0.
|
162
141
|
|
142
|
+
73 f7692e282fe6 2008-09-01 22:24 +0000 ged
|
143
|
+
* Checkpoint commit of MarkdownTest integration
|
163
144
|
|
164
|
-
|
165
|
-
|
166
|
-
Rakefile
|
167
|
-
ChangeLog
|
168
|
-
docs
|
169
|
-
ext/extconf.rb
|
170
|
-
bin/bluecloth (and 1 other/s)
|
145
|
+
72:65 10001a99c611 2008-08-20 21:46 +0000 ged
|
146
|
+
Adding MarkdownTest tests, new build system. [broken build]
|
171
147
|
|
172
|
-
|
173
|
-
|
174
|
-
* Fixed bug in bin/bluecloth.
|
148
|
+
71 8fde110be755 2008-08-01 19:12 +0000 ged
|
149
|
+
Checkpoint commit -- build system + markdowntest + Ragel grammar stub
|
175
150
|
|
151
|
+
70:65 68c7658d9537 2008-08-01 19:01 +0000 ged
|
152
|
+
Making a branch for the experimental Ragel parser work
|
176
153
|
|
177
|
-
|
178
|
-
|
179
|
-
ext/generate.c
|
154
|
+
69 4a618585d44a 2005-11-09 01:38 +0000 ged
|
155
|
+
* Fixed bug #12, and cleaned up warnings from changes to StringScanner. [fixes #12]
|
180
156
|
|
181
|
-
|
157
|
+
68 a7c5084bb2c6 2005-11-09 01:34 +0000 ged
|
158
|
+
* Adding a standalone testcase for bug #12. Current Ruby only issues a warning
|
182
159
|
|
160
|
+
67 752e33cb18b9 2005-11-09 01:28 +0000 ged
|
161
|
+
- Updated to point to my own Trac site.
|
183
162
|
|
184
|
-
|
185
|
-
|
186
|
-
ext/bluecloth.c
|
163
|
+
66 8f3203640ccd 2005-11-09 01:24 +0000 ged
|
164
|
+
* Branching for bugfixes + internals rewrite.
|
187
165
|
|
188
|
-
|
189
|
-
|
166
|
+
65 f4a61eededf5 2005-05-12 21:31 +0000 ged
|
167
|
+
- Renamed tests without goofy numbers.
|
190
168
|
|
169
|
+
64 d604e9fe1a4a 2005-05-12 20:31 +0000 ged
|
170
|
+
- Updated license to BSD/Ruby's; included LICENSE.txt from Ruby dist.
|
191
171
|
|
192
|
-
|
193
|
-
|
194
|
-
experiments/benchmark.txt (new)
|
195
|
-
Changed: /trunk
|
196
|
-
Rakefile
|
197
|
-
project.yml
|
198
|
-
ChangeLog
|
172
|
+
63 3e785abfc186 2005-05-12 19:48 +0000 ged
|
173
|
+
- Added tests to make sure I dont break lists trying to fix #15
|
199
174
|
|
200
|
-
|
201
|
-
|
175
|
+
62 e008c4845aef 2005-05-12 19:26 +0000 ged
|
176
|
+
- Added new tests for bug #17 (two-character bold/italic bug)
|
202
177
|
|
178
|
+
61 bac992099396 2004-08-31 05:19 +0000 ged
|
179
|
+
- Updated for 1.0.0fc3 release.
|
203
180
|
|
204
|
-
|
205
|
-
|
206
|
-
spec/bluecloth_spec.rb
|
181
|
+
60 7eb11846096d 2004-08-25 05:27 +0000 ged
|
182
|
+
- Fixed bug introduced by the last bugfix, fixed tests that missed the new bug.
|
207
183
|
|
208
|
-
|
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.
|
184
|
+
59 324685ac4010 2004-08-25 05:14 +0000 ged
|
185
|
+
- Tracked down and fixed another regexp engine overflow bug; added a new test,
|
215
186
|
|
187
|
+
58 a33c5eac1856 2004-08-24 14:57 +0000 ged
|
188
|
+
- Updated to v1.0.0.
|
216
189
|
|
217
|
-
|
218
|
-
|
190
|
+
57 e233c9f93105 2004-08-24 14:56 +0000 ged
|
191
|
+
- Updated to v1.0.0.
|
219
192
|
|
220
|
-
|
193
|
+
56 c793933d4599 2004-08-24 14:53 +0000 ged
|
194
|
+
- Updated to 20040824.
|
221
195
|
|
196
|
+
55 992586b37e73 2004-08-24 14:52 +0000 ged
|
197
|
+
- Added CHANGES.xml to ignore property for root directory.
|
222
198
|
|
223
|
-
|
224
|
-
|
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
|
199
|
+
54 976267f8ce12 2004-08-24 14:48 +0000 ged
|
200
|
+
- Brought list of block-level tags up to date with Markdown 1.0's list
|
234
201
|
|
235
|
-
|
236
|
-
|
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.
|
202
|
+
53 0e3f0bc95714 2004-08-22 19:28 +0000 ged
|
203
|
+
- Fixed re-engine overflow for all tested cases (thanks to Martin Chase
|
245
204
|
|
205
|
+
52 5278657f5319 2004-08-22 19:26 +0000 ged
|
206
|
+
- Removed skip of overflow test.
|
246
207
|
|
247
|
-
|
248
|
-
|
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)
|
208
|
+
51 71617cbac5be 2004-08-22 19:24 +0000 ged
|
209
|
+
- "Fixed" the test case so it overflows again.
|
260
210
|
|
261
|
-
|
211
|
+
50 0b2eafa02561 2004-08-09 05:12 +0000 ged
|
212
|
+
- Updated to 20040808.
|
262
213
|
|
214
|
+
49 8c26c74594e1 2004-08-09 01:16 +0000 ged
|
215
|
+
- Modified to work from wherever the test is run (RPA compat).
|
263
216
|
|
264
|
-
|
265
|
-
|
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
|
217
|
+
48 f7c3d9f3f7a1 2004-08-09 01:15 +0000 ged
|
218
|
+
- Modified to work from wherever the test is run (RPA compat).
|
274
219
|
|
275
|
-
|
220
|
+
47 93abf238a8a7 2004-08-09 01:15 +0000 ged
|
221
|
+
- Updated version attribute.
|
276
222
|
|
223
|
+
46 94b0fc3111a3 2004-08-09 01:14 +0000 ged
|
224
|
+
- Brought markdown syntax up to date with Markdown 1.0fc1.
|
277
225
|
|
278
|
-
|
279
|
-
|
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)
|
226
|
+
45 687a5882b6ab 2004-08-09 01:13 +0000 ged
|
227
|
+
- Made the require-header work wherever the test is run from (RPA compat).
|
296
228
|
|
297
|
-
|
229
|
+
44 b701148f1078 2004-06-21 15:20 +0000 ged
|
230
|
+
- Brought up to date with Markdown 1.0b7.
|
298
231
|
|
232
|
+
43 28fbfd30ae84 2004-06-02 13:37 +0000 ged
|
233
|
+
- Commented out non-functional --output option for now.
|
299
234
|
|
300
|
-
|
301
|
-
|
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
|
235
|
+
42 c6015bf41ec7 2004-06-02 03:30 +0000 ged
|
236
|
+
Initial checkin.
|
313
237
|
|
314
|
-
-
|
238
|
+
41 d595be427a40 2004-06-02 03:29 +0000 ged
|
239
|
+
- Added test for bug #574.
|
315
240
|
|
241
|
+
40 6caececb7a82 2004-06-02 03:21 +0000 ged
|
242
|
+
- Test for bug #620 - Unresolved reference-style links doubled the character
|
316
243
|
|
317
|
-
|
318
|
-
|
319
|
-
Changed: README
|
244
|
+
39 78dfd775cec9 2004-06-02 03:19 +0000 ged
|
245
|
+
- Fix for bug #620 - Unresolved reference-style links doubled the character
|
320
246
|
|
321
|
-
-
|
247
|
+
38 0fb4d975113a 2004-05-14 02:43 +0000 ged
|
248
|
+
- Added tests for bug #568 (Two sets of bold text on one line doesn't render
|
322
249
|
|
250
|
+
37 de0cec95ba63 2004-05-14 02:41 +0000 ged
|
251
|
+
- Fixed bug with bolding of single characters (bug #568).
|
323
252
|
|
324
|
-
|
325
|
-
|
253
|
+
36 3dd2e20acd6a 2004-05-04 14:35 +0000 ged
|
254
|
+
- Additional fixes and tests for bug #537.
|
326
255
|
|
327
|
-
-
|
328
|
-
|
256
|
+
35 a63aa4091662 2004-04-30 03:40 +0000 ged
|
257
|
+
- Added bin/ directory.
|
329
258
|
|
259
|
+
34 bf3492418bf7 2004-04-30 03:40 +0000 ged
|
260
|
+
- Set date.
|
330
261
|
|
331
|
-
|
332
|
-
|
262
|
+
33 0fa434ed6ee6 2004-04-30 03:39 +0000 ged
|
263
|
+
- Added test for Bug #543 (Safe mode does not work when there are no left
|
333
264
|
|
334
|
-
-
|
335
|
-
|
265
|
+
32 70d5a794edc9 2004-04-30 03:38 +0000 ged
|
266
|
+
- Added test for email address encoding (Bug #537).
|
336
267
|
|
268
|
+
31 c39cd62dc023 2004-04-30 03:35 +0000 ged
|
269
|
+
- Fix for bug #543 (Safe mode does not work when there are no left
|
337
270
|
|
338
|
-
|
339
|
-
|
340
|
-
CHANGES
|
271
|
+
30 89ae174bf6eb 2004-04-30 03:33 +0000 ged
|
272
|
+
- Fix for bug #541 (Leading line of codeblock with more than one tab
|
341
273
|
|
342
|
-
-
|
274
|
+
29 146a20279a49 2004-04-30 03:31 +0000 ged
|
275
|
+
- Fix for bug #537. Fix suggested by Marek Janukowicz.
|
343
276
|
|
277
|
+
28 9751c45529de 2004-04-23 04:47 +0000 ged
|
278
|
+
- Temporary fixes until I have time to integrate SVN stuff.
|
344
279
|
|
345
|
-
|
346
|
-
|
347
|
-
tests/05_Markdown.tests.rb
|
280
|
+
27 04fa7e0e035c 2004-04-23 04:46 +0000 ged
|
281
|
+
- Version bump.
|
348
282
|
|
349
|
-
-
|
283
|
+
26 8dd949521598 2004-04-23 04:46 +0000 ged
|
284
|
+
- Brought in line with most-recent release.
|
350
285
|
|
286
|
+
25 9cd965756b2c 2004-04-23 04:40 +0000 ged
|
287
|
+
- Version bump.
|
351
288
|
|
352
|
-
|
353
|
-
|
354
|
-
tests/data/re-overflow2.txt (new)
|
355
|
-
Changed: tests/10_Bug.tests.rb
|
356
|
-
lib/bluecloth.rb
|
289
|
+
24 7e81348df6c0 2004-04-23 04:39 +0000 ged
|
290
|
+
- Bugfixes for bugs 524 and 525. Thanks to David Heinemeier Hansson and Javier
|
357
291
|
|
358
|
-
-
|
359
|
-
|
292
|
+
23 ca4b54166276 2004-04-23 04:34 +0000 ged
|
293
|
+
- Test for bugs 524 and 525
|
360
294
|
|
295
|
+
22 496d7f7a4cdc 2004-04-16 01:55 +0000 ged
|
296
|
+
- Corrected version
|
361
297
|
|
362
|
-
|
363
|
-
|
298
|
+
21 b51c6840bc49 2004-04-16 01:53 +0000 ged
|
299
|
+
- Brought Version up to date.
|
364
300
|
|
365
|
-
-
|
301
|
+
20 f2718c29f536 2004-04-16 01:52 +0000 ged
|
302
|
+
- Updated ignore metadata.
|
366
303
|
|
304
|
+
19 f82fd20371ad 2004-04-16 01:51 +0000 ged
|
305
|
+
Initial checkin.
|
367
306
|
|
368
|
-
|
369
|
-
|
307
|
+
18 f403c21157cc 2004-04-16 01:50 +0000 ged
|
308
|
+
- Changed tests/ pattern to catch all tests.
|
370
309
|
|
371
|
-
-
|
310
|
+
17 f4112232595f 2004-04-16 01:49 +0000 ged
|
311
|
+
- Added missing dependency check for devel-logger.
|
372
312
|
|
313
|
+
16 8690a971eb59 2004-04-16 01:49 +0000 ged
|
314
|
+
- Added contributors section to the header.
|
373
315
|
|
374
|
-
|
375
|
-
|
316
|
+
15 492797ca9f09 2004-04-16 01:48 +0000 ged
|
317
|
+
- Added contributors section to the header.
|
376
318
|
|
377
|
-
-
|
319
|
+
14 0649b1f16ee8 2004-04-12 06:02 +0000 ged
|
320
|
+
- Added keywords.
|
378
321
|
|
322
|
+
13 9fe4c26b72e0 2004-04-12 06:01 +0000 ged
|
323
|
+
- Updated comments/added to-do marker.
|
379
324
|
|
380
|
-
|
381
|
-
|
325
|
+
12 64b1e11c97ff 2004-04-12 05:47 +0000 ged
|
326
|
+
- Updated ignore list.
|
382
327
|
|
383
|
-
-
|
328
|
+
11 6a8aed04e890 2004-04-12 05:46 +0000 ged
|
329
|
+
Initial checkin.
|
384
330
|
|
331
|
+
10 0fc13fe6e6c7 2004-04-12 05:45 +0000 ged
|
332
|
+
- Added a time() function for timing bits of code.
|
385
333
|
|
386
|
-
|
387
|
-
|
388
|
-
tests/05_Markdown.tests.rb
|
334
|
+
9 3abdc2f04959 2004-04-12 05:43 +0000 ged
|
335
|
+
- Changed keyword constants from CVS to SVN keywords.
|
389
336
|
|
390
|
-
-
|
391
|
-
|
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.
|
337
|
+
8 e5db5380cfaf 2004-04-12 05:29 +0000 ged
|
338
|
+
- Changed location of keyword stuff, added URL keyword.
|
396
339
|
|
340
|
+
7 f3c8521ac045 2004-04-12 05:26 +0000 ged
|
341
|
+
- Added the rest of the content.
|
397
342
|
|
398
|
-
|
399
|
-
|
400
|
-
tests/05_Markdown.tests.rb
|
343
|
+
6 8b6eb6e814ad 2004-04-12 05:21 +0000 ged
|
344
|
+
- Fixed license in header
|
401
345
|
|
402
|
-
-
|
403
|
-
|
404
|
-
- Wrote some additional tests to be sure the block-level html escaper is working
|
405
|
-
after the above fix.
|
346
|
+
5 80efe23904b2 2004-04-12 05:17 +0000 ged
|
347
|
+
- Renamed to reflect repurposing.
|
406
348
|
|
349
|
+
4 d0414fcb9d46 2004-04-12 05:17 +0000 ged
|
350
|
+
- Converted to bug-testing testcase.
|
407
351
|
|
408
|
-
|
409
|
-
|
352
|
+
3 7cacdc1638d5 2004-04-12 05:15 +0000 ged
|
353
|
+
- Added some mode code span tests to catch bugs.
|
410
354
|
|
411
|
-
-
|
355
|
+
2 50ad59f16116 2004-04-11 04:40 +0000 ged
|
356
|
+
- Updated dist/install utilities/libs.
|
412
357
|
|
358
|
+
1 47d5847f4c84 2004-04-10 20:36 +0000 ged
|
359
|
+
Removed markdown reference source
|
413
360
|
|
414
|
-
|
415
|
-
|
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
|
-
|
361
|
+
0 08a749d2dd7f 2004-04-10 20:35 +0000 ged
|
362
|
+
Initial checkin
|
784
363
|
|