linkparser 1.0.4 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data.tar.gz.sig +0 -0
- data/ChangeLog +134 -506
- data/LICENSE +1 -1
- data/README.md +95 -0
- data/Rakefile +145 -95
- data/Rakefile.local +31 -39
- data/ext/dictionary.c +103 -37
- data/ext/extconf.rb +79 -32
- data/ext/linkage.c +245 -210
- data/ext/linkparser.c +3 -2
- data/ext/linkparser.h +21 -17
- data/ext/parseoptions.c +65 -65
- data/ext/sentence.c +75 -64
- data/lib/linkparser.rb +16 -26
- data/lib/linkparser/linkage.rb +68 -50
- data/lib/linkparser/mixins.rb +38 -0
- data/lib/linkparser/sentence.rb +15 -40
- data/rake/dependencies.rb +1 -1
- data/rake/documentation.rb +123 -0
- data/rake/helpers.rb +400 -310
- data/rake/hg.rb +318 -0
- data/rake/manual.rb +84 -79
- data/rake/packaging.rb +33 -37
- data/rake/publishing.rb +166 -146
- data/rake/style.rb +1 -1
- data/rake/svn.rb +577 -549
- data/rake/testing.rb +55 -106
- data/spec/bugfixes_spec.rb +12 -6
- data/spec/linkparser/dictionary_spec.rb +45 -29
- data/spec/linkparser/linkage_spec.rb +90 -94
- data/spec/linkparser/mixins_spec.rb +67 -0
- data/spec/linkparser/parseoptions_spec.rb +19 -22
- data/spec/linkparser/sentence_spec.rb +19 -17
- data/spec/linkparser_spec.rb +11 -5
- metadata +64 -147
- metadata.gz.sig +0 -0
- data/README +0 -61
- data/rake/rdoc.rb +0 -40
- data/rake/win32.rb +0 -186
data.tar.gz.sig
ADDED
Binary file
|
data/ChangeLog
CHANGED
@@ -1,573 +1,201 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
INSTALL
|
4
|
-
ChangeLog
|
5
|
-
|
6
|
-
* Updated versions of the link-grammar library referenced in the docs.
|
7
|
-
|
8
|
-
|
9
|
-
-- Wed, 03 Jun 2009 14:29:26 -0000 by deveiant (r54) -----
|
10
|
-
Deleted: link-grammar-4.4.3.tar.gz
|
11
|
-
|
12
|
-
Removing old link-grammar library
|
13
|
-
|
14
|
-
|
15
|
-
-- Wed, 03 Jun 2009 12:52:13 -0000 by deveiant (r53) -----
|
16
|
-
Added: link-grammar-4.5.6.tar.gz
|
17
|
-
-> renamed from /trunk/link-grammar-4.4.1.tar.gz@r51
|
18
|
-
Changed: lib/linkparser.rb
|
19
|
-
spec/linkparser/sentence_spec.rb
|
20
|
-
ext/sentence.c
|
21
|
-
lib/linkparser/sentence.rb
|
22
|
-
spec/linkparser/parseoptions_spec.rb
|
23
|
-
ChangeLog (and 5 other/s)
|
24
|
-
|
25
|
-
* Updated to link-grammar-4.5.6.
|
26
|
-
* Added support for ParseOptions#spell_guessing_enabled
|
27
|
-
* Fixed buggy sentence behavior when the underlying Sentence hadn't yet been parsed.
|
28
|
-
* Made the exception raised when a delegated linkage method is called on a Sentence
|
29
|
-
that doesn't have any linkages. Thanks to Michael Bisignani <mbisignani@gmail.com> for
|
30
|
-
bringing this problem to my attention.
|
31
|
-
* Fixed some type-qualifier warnings.
|
32
|
-
* Bumped version to 1.0.4.
|
33
|
-
|
34
|
-
|
35
|
-
-- Wed, 18 Mar 2009 21:51:03 -0000 by deveiant (r52) -----
|
36
|
-
Added: link-grammar-4.4.3.tar.gz
|
37
|
-
-> renamed from /trunk/link-grammar-4.4.1.tar.gz@r51
|
38
|
-
Changed: README
|
39
|
-
LICENSE
|
40
|
-
Rakefile
|
41
|
-
project.yml
|
42
|
-
Deleted: link-grammar-4.4.1.tar.gz
|
1
|
+
66[tip] 19b0db395b94 2010-11-30 20:57 -0800 ged
|
2
|
+
Added tag v1.1.0 for changeset 8d9184b82361
|
43
3
|
|
44
|
-
|
45
|
-
|
4
|
+
65[v1.1.0] 8d9184b82361 2010-11-30 20:57 -0800 ged
|
5
|
+
Added signature for changeset 2f318af09702
|
46
6
|
|
7
|
+
64[github/master,master] 2f318af09702 2010-11-30 20:54 -0800 ged
|
8
|
+
Cleanup in preparation for release.
|
47
9
|
|
48
|
-
|
49
|
-
|
50
|
-
project.yml
|
51
|
-
ChangeLog
|
10
|
+
63 a5e7d9e3cf5c 2010-11-24 16:50 -0800 ged
|
11
|
+
Updated for 4.7.0.
|
52
12
|
|
53
|
-
|
13
|
+
62 880f466ba6f0 2010-11-22 08:03 -0800 ged
|
14
|
+
Adding the rake tasklibs as a subrepo
|
54
15
|
|
16
|
+
61 6c597e731a87 2010-11-22 07:59 -0800 ged
|
17
|
+
Checkpoint commit after updating to 4.7.0
|
55
18
|
|
56
|
-
|
57
|
-
|
58
|
-
spec/linkparser (new)
|
59
|
-
spec/linkparser/parseoptions_spec.rb
|
60
|
-
-> renamed from /trunk/spec/parseoptions_spec.rb@r46
|
61
|
-
spec/linkparser_spec.rb (new)
|
62
|
-
spec/linkparser/sentence_spec.rb
|
63
|
-
-> renamed from /trunk/spec/sentence_spec.rb@r46
|
64
|
-
spec/linkparser/dictionary_spec.rb
|
65
|
-
-> renamed from /trunk/spec/dictionary_spec.rb@r46 (and 2 other/s)
|
66
|
-
Changed: README
|
67
|
-
spec/TEMPLATE.rb.tpl
|
68
|
-
project.yml
|
69
|
-
experiments/pps.rb
|
70
|
-
experiments/diagram_sentences.rb
|
71
|
-
spec/bugfixes_spec.rb (and 13 other/s)
|
72
|
-
Deleted: experiments/free_stuff.rb
|
73
|
-
link-grammar-4.3.9.tar.gz
|
74
|
-
spec/sentence_spec.rb
|
75
|
-
spec/dictionary_spec.rb
|
76
|
-
spec/linkage_spec.rb
|
77
|
-
loadpath.rb (and 6 other/s)
|
19
|
+
60 06598c1de251 2010-10-15 15:46 -0700 ged
|
20
|
+
Make the extconf use pkgconfig, if available, and add support for fat binary gems.
|
78
21
|
|
79
|
-
|
80
|
-
|
81
|
-
* Removed the (now-obsolete) patch to link-grammar
|
82
|
-
* Removed a bunch of other old cruft
|
83
|
-
* Reorganized the specs into the standard mirrored layout
|
84
|
-
* Added LinkParser.link_grammar_version
|
85
|
-
* LinkParser::ParseOptions
|
86
|
-
- Added spec coverage for #all_short_connectors?
|
87
|
-
- Added implementations for #timer_expired?, #memory_exhausted?, #resources_exhausted?,
|
88
|
-
and #reset_resources.
|
89
|
-
* Documentation cleanup for the upcoming RDoc 2.3.x
|
22
|
+
59 53ec62029ee4 2010-10-12 08:45 -0700 ged
|
23
|
+
Memory-management fixes, updated for link-grammar 4.6.7, 1.9.2 fixes.
|
90
24
|
|
25
|
+
58 3e46194ad8d6 2010-04-28 17:45 -0700 ged
|
26
|
+
Updated build system, updated to link-grammar 4.6.7.
|
91
27
|
|
92
|
-
|
93
|
-
|
94
|
-
ext/sentence.c
|
95
|
-
ext/dictionary.c
|
96
|
-
project.yml
|
97
|
-
ext/parseoptions.c
|
98
|
-
ext/linkage.c (and 1 other/s)
|
28
|
+
57 9636870d5a96 2009-12-17 21:58 -0800 ged
|
29
|
+
Version update, switched compilation systems.
|
99
30
|
|
100
|
-
|
101
|
-
|
31
|
+
56 9253ba60c639 2009-10-16 18:34 -0700 ged
|
32
|
+
Added tag 1.0.6 for changeset e9a639fee32a
|
102
33
|
|
34
|
+
55[1.0.6] e9a639fee32a 2009-10-16 18:34 -0700 ged
|
35
|
+
Added signature for changeset ba30bbc8eee2
|
103
36
|
|
104
|
-
|
105
|
-
|
106
|
-
INSTALL
|
107
|
-
project.yml
|
37
|
+
54 ba30bbc8eee2 2009-10-16 06:33 -0700 ged
|
38
|
+
Updated to link-grammar 4.6.4.
|
108
39
|
|
109
|
-
|
40
|
+
53 03529bb7b185 2009-08-20 11:15 -0700 ged
|
41
|
+
* LinkParser::Linkage
|
110
42
|
|
43
|
+
52 800f68bbb492 2009-08-20 08:42 -0700 ged
|
44
|
+
* Added an ignore file for build artifacts
|
111
45
|
|
112
|
-
|
113
|
-
|
46
|
+
51 0352457fc219 2009-08-15 07:20 -0700 ged
|
47
|
+
Updated build system
|
114
48
|
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
-- Wed, 19 Nov 2008 23:34:01 -0000 by deveiant (r44) -----
|
119
|
-
Changed: README
|
120
|
-
/trunk
|
121
|
-
Rakefile
|
122
|
-
project.yml
|
123
|
-
ChangeLog
|
49
|
+
50 4a8ce753a9c3 2009-08-15 22:17 +0000 convert-repo
|
50
|
+
update tags
|
124
51
|
|
125
|
-
|
52
|
+
49 2c8e8cb06c3b 2009-06-23 06:45 +0000 ged
|
53
|
+
Bumping version to 1.0.5.
|
126
54
|
|
55
|
+
48 f5f4594dd39f 2009-06-19 15:09 +0000 ged
|
56
|
+
Fixed problems with the specs run on systems with non-English locales (fixes #7).
|
127
57
|
|
128
|
-
|
129
|
-
|
130
|
-
ChangeLog
|
131
|
-
ext/extconf.rb
|
58
|
+
47 429b51840402 2009-06-19 14:38 +0000 ged
|
59
|
+
* Updated build system
|
132
60
|
|
133
|
-
|
134
|
-
|
61
|
+
46 3874f74ac1c8 2009-06-09 06:21 +0000 ged
|
62
|
+
* Updated versions of the link-grammar library referenced in the docs.
|
135
63
|
|
64
|
+
45 42c88c8e05d8 2009-06-03 14:29 +0000 ged
|
65
|
+
Removing old link-grammar library
|
136
66
|
|
137
|
-
|
138
|
-
|
139
|
-
Rakefile.local
|
67
|
+
44 bf39b0b0cdd8 2009-06-03 12:52 +0000 ged
|
68
|
+
* Updated to link-grammar-4.5.6.
|
140
69
|
|
141
|
-
|
142
|
-
|
70
|
+
43 20736e24100a 2009-03-18 21:51 +0000 ged
|
71
|
+
* Update license year.
|
143
72
|
|
73
|
+
42 7aa8abf83338 2008-12-20 19:51 +0000 ged
|
74
|
+
* Removed some more unnecessary files from the gem distribution to reduce size.
|
144
75
|
|
145
|
-
|
146
|
-
|
147
|
-
Rakefile.local
|
76
|
+
41 5c4731910056 2008-12-19 18:30 +0000 ged
|
77
|
+
* Updated build system
|
148
78
|
|
149
|
-
|
79
|
+
40 c4c13596d339 2008-12-18 17:03 +0000 ged
|
80
|
+
* Updated build system
|
150
81
|
|
82
|
+
39 af56b6e1e3d2 2008-11-20 19:34 +0000 ged
|
83
|
+
Updated the minimum version in the link-grammar gem requirement to 4.3.9.
|
151
84
|
|
152
|
-
|
153
|
-
|
154
|
-
INSTALL
|
85
|
+
38 02bf1158d4a0 2008-11-19 23:42 +0000 ged
|
86
|
+
Ye gods. Re-re-undoing clobbered README, hopefully for the last time.
|
155
87
|
|
156
|
-
|
88
|
+
37 ca0e32083a45 2008-11-19 23:34 +0000 ged
|
89
|
+
Updated build system.
|
157
90
|
|
91
|
+
36 0e3a825361bb 2008-11-19 23:01 +0000 ged
|
92
|
+
* Revert an accidentally-clobbered fix for linkage_spec.rb.
|
158
93
|
|
159
|
-
|
160
|
-
|
161
|
-
Changed: README
|
162
|
-
ext/linkparser.h
|
163
|
-
ext
|
164
|
-
ext/parseoptions.c
|
165
|
-
spec/sentence_spec.rb
|
166
|
-
Rakefile.local (and 13 other/s)
|
167
|
-
Deleted: misc/monkeypatches.rb
|
168
|
-
ext/TEMPLATE.c.tpl
|
94
|
+
35 f08d0eb5d2e8 2008-11-19 22:43 +0000 ged
|
95
|
+
* Reverted accidentally-overwritten README
|
169
96
|
|
170
|
-
|
171
|
-
|
172
|
-
* Updated build system.
|
173
|
-
* Fixed gem packaging (I think).
|
174
|
-
* Updated copyright and other header stuff.
|
175
|
-
* Fixed a bunch of RDoc comments
|
176
|
-
* Converted a bunch of K&R-style functions to ANSI-style.
|
97
|
+
34 27775f8f244b 2008-11-18 17:00 +0000 ged
|
98
|
+
Fixed a build message.
|
177
99
|
|
100
|
+
33 ebbea97b275e 2008-11-18 16:53 +0000 ged
|
101
|
+
Updated the build system to fix the problems with building the Gem.
|
178
102
|
|
179
|
-
|
180
|
-
|
103
|
+
32 e7460a4e3501 2008-11-18 16:18 +0000 ged
|
104
|
+
* Ditched Mkrf for mkmf. This makes me sad, but Mkrf just failed on too many
|
181
105
|
|
182
|
-
|
106
|
+
31 f0ef418ba1ca 2008-11-17 16:10 +0000 ged
|
107
|
+
Updated build instructions.
|
183
108
|
|
109
|
+
30 c22663cd2638 2008-11-16 02:17 +0000 ged
|
110
|
+
Replaced my naive initialization of the locale system with the recommended code from the docs.
|
184
111
|
|
185
|
-
|
186
|
-
|
187
|
-
ext/dictionary.c
|
188
|
-
ChangeLog
|
189
|
-
ext/linkparser.c
|
112
|
+
29 d84122ea3856 2008-11-15 19:54 +0000 ged
|
113
|
+
Bumping the version, fixing docs.
|
190
114
|
|
191
|
-
|
115
|
+
28 bc86861a3c3a 2008-11-15 19:44 +0000 ged
|
116
|
+
* Updated the binding to build against 4.3.9.
|
192
117
|
|
118
|
+
27 5d57cb89e697 2008-08-20 07:22 +0000 ged
|
119
|
+
* Removed the old extension config script
|
193
120
|
|
194
|
-
|
195
|
-
|
196
|
-
ChangeLog
|
121
|
+
26 44ddd3cdfadd 2008-08-20 07:13 +0000 ged
|
122
|
+
* Removed the makedist.rb script.
|
197
123
|
|
198
|
-
|
124
|
+
25 06023c771cf2 2008-08-20 07:04 +0000 ged
|
125
|
+
Updated README and LICENSE files.
|
199
126
|
|
127
|
+
24 4d19b1fbc6ff 2008-08-20 06:51 +0000 ged
|
128
|
+
Updated the build system.
|
200
129
|
|
201
|
-
|
202
|
-
|
203
|
-
link-grammar-4.3.9.patch
|
204
|
-
-> renamed from /trunk/link-grammar-4.3.5.patch@r34
|
205
|
-
Changed: README
|
206
|
-
spec/linkage_spec.rb
|
207
|
-
Rakefile
|
208
|
-
project.yml
|
209
|
-
ChangeLog
|
210
|
-
misc/monkeypatches.rb (and 4 other/s)
|
211
|
-
Deleted: link-grammar-4.3.5.patch
|
212
|
-
link-grammar-4.3.5.tar.gz
|
130
|
+
23 ceda202cef3e 2008-08-13 05:23 +0000 ged
|
131
|
+
* Updated to the latest build system.
|
213
132
|
|
214
|
-
|
215
|
-
|
216
|
-
from the patch that was no longer necessary since 4.3.9 now include the necessary
|
217
|
-
memory-freeing functions, and no longer printf()s warnings without adhering to the warning
|
218
|
-
level.
|
219
|
-
* Updated the build system.
|
220
|
-
* Still needs more work before it can be gemmed up, but it's close.
|
221
|
-
* Thanks, as always, to Martin Chase for many useful suggestions and help.
|
133
|
+
22 c0d61add698a 2008-06-23 22:05 +0000 ged
|
134
|
+
Turning off Darkfish until I can port it to RDoc 2.
|
222
135
|
|
136
|
+
21[SNAPSHOT_20080526.4] db47386fa721 2008-05-27 00:17 +0000 ged
|
137
|
+
* Cleaned up some old documentation cruft
|
223
138
|
|
224
|
-
|
225
|
-
|
226
|
-
Rakefile.local
|
227
|
-
Deleted: ext/extconf.rb
|
139
|
+
20[SNAPSHOT_20080526.2,SNAPSHOT_20080526.3] d62a038de485 2008-05-26 23:40 +0000 ged
|
140
|
+
* Added better handling of missing 'mkrf' dependency.
|
228
141
|
|
229
|
-
|
230
|
-
|
231
|
-
CLOBBER files.
|
142
|
+
19[SNAPSHOT_20080526] a6c768b00af5 2008-05-26 23:17 +0000 ged
|
143
|
+
* Fixed the Mkrf-generated Rakefile so it'll actually install the extension; this
|
232
144
|
|
145
|
+
18 272202feaff9 2008-05-26 21:49 +0000 ged
|
146
|
+
* Finished conversion of test::unit tests to RSpec.
|
233
147
|
|
234
|
-
|
235
|
-
|
236
|
-
Deleted: makedist.rb
|
148
|
+
17 2cb5cdacb930 2008-02-10 21:48 +0000 ged
|
149
|
+
* Updated copyright date.
|
237
150
|
|
238
|
-
|
239
|
-
|
151
|
+
16 5867d7624144 2007-10-19 01:06 +0000 ged
|
152
|
+
Documentation fixes; converted to Darkfish RDoc generator
|
240
153
|
|
154
|
+
15[RELEASE_0_0_3] aa894a3e98fc 2007-07-27 07:40 +0000 ged
|
155
|
+
Checkpoint commit
|
241
156
|
|
242
|
-
|
243
|
-
|
244
|
-
LICENSE
|
245
|
-
|
246
|
-
Updated README and LICENSE files.
|
247
|
-
|
248
|
-
|
249
|
-
-- Wed, 20 Aug 2008 06:51:27 -0000 by deveiant (r31) -----
|
250
|
-
Changed: README
|
251
|
-
Rakefile
|
252
|
-
INSTALL
|
253
|
-
project.yml
|
254
|
-
ChangeLog
|
255
|
-
Rakefile.local (and 1 other/s)
|
256
|
-
|
257
|
-
Updated the build system.
|
258
|
-
|
259
|
-
|
260
|
-
-- Wed, 13 Aug 2008 05:23:33 -0000 by deveiant (r30) -----
|
261
|
-
Added: loadpath.rb
|
262
|
-
-> renamed from /trunk/linkparser-path.rb@r29
|
263
|
-
project.yml (new)
|
264
|
-
Rakefile.local (new)
|
265
|
-
LICENSE (new)
|
266
|
-
ChangeLog (new)
|
267
|
-
Changed: /trunk
|
268
|
-
spec/TEMPLATE.rb.tpl
|
269
|
-
MANIFEST
|
270
|
-
experiments/pps.rb
|
271
|
-
spec/sentence_spec.rb
|
272
|
-
spec/dictionary_spec.rb (and 8 other/s)
|
273
|
-
Deleted: linkparser-path.rb
|
274
|
-
LinkParser Project.tmproj
|
275
|
-
misc/rake
|
276
|
-
|
277
|
-
* Updated to the latest build system.
|
278
|
-
* Updated to New BSD license
|
279
|
-
* Renamed 'linkparser-path.rb' to 'loadpath.rb'
|
280
|
-
|
281
|
-
|
282
|
-
-- Mon, 23 Jun 2008 22:05:57 -0000 by deveiant (r29) -----
|
283
|
-
Changed: Rakefile
|
284
|
-
|
285
|
-
Turning off Darkfish until I can port it to RDoc 2.
|
286
|
-
|
287
|
-
|
288
|
-
-- Tue, 27 May 2008 00:17:43 -0000 by deveiant (r27) -----
|
289
|
-
Changed: README
|
290
|
-
Rakefile
|
291
|
-
MANIFEST
|
292
|
-
docs
|
293
|
-
Deleted: docs/makedocs.rb
|
294
|
-
docs/CATALOG
|
295
|
-
extconf.rb
|
296
|
-
|
297
|
-
* Cleaned up some old documentation cruft
|
298
|
-
* Fixed the link-grammar version mentioned in the README file
|
299
|
-
|
300
|
-
|
301
|
-
-- Mon, 26 May 2008 23:40:31 -0000 by deveiant (r24) -----
|
302
|
-
Changed: Rakefile
|
303
|
-
INSTALL
|
304
|
-
|
305
|
-
* Added better handling of missing 'mkrf' dependency.
|
306
|
-
* Added some more instructions to INSTALL.
|
307
|
-
|
308
|
-
|
309
|
-
-- Mon, 26 May 2008 23:17:59 -0000 by deveiant (r22) -----
|
310
|
-
Added: misc/readme-example.rb (new)
|
311
|
-
misc/monkeypatches.rb (new)
|
312
|
-
Changed: README
|
313
|
-
.irbrc
|
314
|
-
/trunk
|
315
|
-
spec/linkage_spec.rb
|
316
|
-
Rakefile
|
317
|
-
INSTALL (and 3 other/s)
|
318
|
-
|
319
|
-
* Fixed the Mkrf-generated Rakefile so it'll actually install the extension; this
|
320
|
-
requires a monkeypatch currently, but I'll upstream the fix to the Mkrf guys.
|
321
|
-
* Fixed some warnings in linkage.c
|
322
|
-
* Fixed the INSTALL instructions
|
323
|
-
* Fixed up the example in the README and extracted the code to ease future
|
324
|
-
testing.
|
325
|
-
* Fixed a bug in the suffix-stripping in the Linkage#subject and #object methods.
|
326
|
-
|
157
|
+
14 404d5da9a837 2007-07-25 02:00 +0000 ged
|
158
|
+
* Started converting build system, test::unit -> rspec, etc.
|
327
159
|
|
328
|
-
|
329
|
-
|
330
|
-
-> renamed from /trunk/spec/sentence.tests.rb@r20
|
331
|
-
misc/rake/helpers.rb (new)
|
332
|
-
misc/rake/svn.rb (new)
|
333
|
-
misc/rake/verifytask.rb (new)
|
334
|
-
misc/rake (new)
|
335
|
-
link-grammar-4.3.5.patch (new) (and 3 other/s)
|
336
|
-
Changed: experiments/free_stuff.rb
|
337
|
-
/trunk
|
338
|
-
makedist.rb
|
339
|
-
linkparser-path.rb
|
340
|
-
experiments/pps.rb
|
341
|
-
extconf.rb (and 26 other/s)
|
342
|
-
Deleted: spec/sentence.tests.rb
|
343
|
-
install.rb
|
344
|
-
link-grammar-4.2.4.patch
|
345
|
-
link-grammar-4.2.4.tar.gz
|
160
|
+
13 f1f118da86b8 2007-06-11 14:55 +0000 ged
|
161
|
+
Added some stuff to the build instructions
|
346
162
|
|
347
|
-
|
348
|
-
|
349
|
-
* Updated to work with the latest Abiword link-grammar library (4.3.5)
|
163
|
+
12 c577a697ff9a 2007-06-11 14:52 +0000 ged
|
164
|
+
Adding project-name and project-version svn attributes
|
350
165
|
|
166
|
+
11[RELEASE_20061030] eb5d51d7be8e 2006-10-30 07:04 +0000 stillflame
|
167
|
+
- added installation instructions
|
351
168
|
|
352
|
-
|
353
|
-
|
354
|
-
-> renamed from /trunk/spec/parseoptions.tests.rb@r19
|
355
|
-
Changed: ext
|
356
|
-
ext/linkparser.h
|
357
|
-
spec/sentence.tests.rb
|
358
|
-
ext/parseoptions.c
|
359
|
-
ext/extconf.rb
|
360
|
-
spec/dictionary_spec.rb (and 13 other/s)
|
361
|
-
Deleted: spec/parseoptions.tests.rb
|
169
|
+
10 264b76691d9b 2006-10-29 02:01 +0000 stillflame
|
170
|
+
- added test that breaks with version 4.2.4 of link-parser due to lack of "linkage_get_current_sublinkage" function
|
362
171
|
|
363
|
-
|
364
|
-
|
172
|
+
9 e013761045ac 2006-10-11 05:40 +0000 ged
|
173
|
+
* More documentation cleanup.
|
365
174
|
|
175
|
+
8 0b63ffa46d1e 2006-10-11 00:46 +0000 ged
|
176
|
+
* Fixes for documentation
|
366
177
|
|
367
|
-
|
368
|
-
|
369
|
-
Rakefile
|
370
|
-
docs/CATALOG
|
371
|
-
ext/sentence.c
|
372
|
-
ext/dictionary.c
|
373
|
-
lib/linkparser/sentence.rb (and 6 other/s)
|
374
|
-
Deleted: test.rb
|
178
|
+
7 08fee271c73a 2006-10-11 00:14 +0000 ged
|
179
|
+
*Added MANIFEST file for makedist.rb.
|
375
180
|
|
376
|
-
|
181
|
+
6 a78325f8401e 2006-10-10 23:31 +0000 ged
|
182
|
+
* Dist-script fixes.
|
377
183
|
|
184
|
+
5 119a16871bdf 2006-10-10 23:16 +0000 ged
|
185
|
+
* Finished up installation/build/test utility scripts.
|
378
186
|
|
379
|
-
|
380
|
-
|
381
|
-
Changed: docs/CATALOG
|
382
|
-
ext/sentence.c
|
383
|
-
lib/linkparser/sentence.rb
|
384
|
-
ext/parseoptions.c
|
385
|
-
ext/linkage.c
|
187
|
+
4 8a083dc3bab6 2006-09-29 14:14 +0000 ged
|
188
|
+
* Mostly all of the low-level function wrapped.
|
386
189
|
|
387
|
-
|
190
|
+
3 cf1112e9324c 2006-09-18 00:19 +0000 ged
|
191
|
+
* Updated for and included LinkGrammar 4.2.4
|
388
192
|
|
193
|
+
2 77d2e5a3753e 2006-07-29 21:59 +0000 ged
|
194
|
+
Checkpoint commit:
|
389
195
|
|
390
|
-
|
391
|
-
|
392
|
-
spec/dictionary_spec.rb (new)
|
393
|
-
spec/linkage_spec.rb (new)
|
394
|
-
Rakefile (new)
|
395
|
-
spec/bugfixes_spec.rb (new)
|
396
|
-
spec
|
397
|
-
-> renamed from /trunk/tests@r15 (and 1 other/s)
|
398
|
-
Changed: ext/linkparser.h
|
399
|
-
spec/sentence.tests.rb
|
400
|
-
utils.rb
|
401
|
-
spec/TEMPLATE.rb.tpl
|
402
|
-
linkparser-path.rb
|
403
|
-
ext/parseoptions.c (and 11 other/s)
|
404
|
-
Deleted: spec/dictionary.tests.rb
|
405
|
-
tests
|
406
|
-
spec/linkage.tests.rb
|
407
|
-
|
408
|
-
|
409
|
-
* Started converting build system, test::unit -> rspec, etc.
|
410
|
-
|
411
|
-
|
412
|
-
-- Mon, 11 Jun 2007 14:55:34 -0000 by deveiant (r15) -----
|
413
|
-
Changed: INSTALL
|
414
|
-
|
415
|
-
Added some stuff to the build instructions
|
416
|
-
|
417
|
-
|
418
|
-
-- Mon, 11 Jun 2007 14:52:19 -0000 by deveiant (r14) -----
|
419
|
-
Changed: /trunk
|
420
|
-
|
421
|
-
Adding project-name and project-version svn attributes
|
422
|
-
|
423
|
-
|
424
|
-
-- Mon, 30 Oct 2006 07:04:23 -0000 by stillflame (r12) -----
|
425
|
-
Added: INSTALL (new)
|
426
|
-
Changed: link-grammar-4.2.4.patch
|
427
|
-
|
428
|
-
- added installation instructions
|
429
|
-
- added patching to link-grammar to pass tests
|
430
|
-
|
431
|
-
|
432
|
-
-- Sun, 29 Oct 2006 02:01:56 -0000 by stillflame (r11) -----
|
433
|
-
Changed: tests/linkage.tests.rb
|
434
|
-
|
435
|
-
- added test that breaks with version 4.2.4 of link-parser due to lack of "linkage_get_current_sublinkage" function
|
436
|
-
|
437
|
-
|
438
|
-
-- Wed, 11 Oct 2006 05:40:31 -0000 by ged (r10) -----
|
439
|
-
Changed: tests/linkage.tests.rb
|
440
|
-
ext/sentence.c
|
441
|
-
lib/linkparser/sentence.rb
|
442
|
-
tests/sentence.tests.rb
|
443
|
-
LinkParser Project.tmproj
|
444
|
-
|
445
|
-
|
446
|
-
* More documentation cleanup.
|
447
|
-
|
448
|
-
* Fixed Sentence#[]
|
449
|
-
|
450
|
-
* Added some more Sentence tests.
|
451
|
-
|
452
|
-
|
453
|
-
-- Wed, 11 Oct 2006 00:46:49 -0000 by ged (r9) -----
|
454
|
-
Changed: tests/linkage.tests.rb
|
455
|
-
ext/sentence.c
|
456
|
-
ext/dictionary.c
|
457
|
-
ext/parseoptions.c
|
458
|
-
ext/linkage.c
|
459
|
-
|
460
|
-
|
461
|
-
* Fixes for documentation
|
462
|
-
|
463
|
-
* Fixed constituent_tree_string's mode argument.
|
464
|
-
|
465
|
-
|
466
|
-
-- Wed, 11 Oct 2006 00:14:38 -0000 by ged (r8) -----
|
467
|
-
Added: MANIFEST (new)
|
468
|
-
|
469
|
-
|
470
|
-
*Added MANIFEST file for makedist.rb.
|
471
|
-
|
472
|
-
|
473
|
-
-- Tue, 10 Oct 2006 23:31:51 -0000 by ged (r7) -----
|
474
|
-
Changed: /trunk
|
475
|
-
utils.rb
|
476
|
-
makedist.rb
|
477
|
-
|
478
|
-
|
479
|
-
* Dist-script fixes.
|
480
|
-
|
481
|
-
|
482
|
-
-- Tue, 10 Oct 2006 23:16:33 -0000 by ged (r6) -----
|
483
|
-
Added: install.rb (new)
|
484
|
-
Changed: test.rb
|
485
|
-
ext/extconf.rb
|
486
|
-
extconf.rb
|
487
|
-
|
488
|
-
|
489
|
-
* Finished up installation/build/test utility scripts.
|
490
|
-
|
491
|
-
|
492
|
-
-- Fri, 29 Sep 2006 14:14:55 -0000 by ged (r5) -----
|
493
|
-
Added: lib (new)
|
494
|
-
linkparser-path.rb (new)
|
495
|
-
experiments/pps.rb (new)
|
496
|
-
lib/linkparser (new)
|
497
|
-
lib/linkparser.rb (new)
|
498
|
-
lib/linkparser/sentence.rb (new) (and 2 other/s)
|
499
|
-
Changed: ext/linkparser.h
|
500
|
-
ext/extconf.rb
|
501
|
-
tests/sentence.tests.rb
|
502
|
-
tests/dictionary.tests.rb
|
503
|
-
LinkParser Project.tmproj
|
504
|
-
tests/linkage.tests.rb (and 8 other/s)
|
505
|
-
Deleted: link-grammar-4.2.2.patch
|
506
|
-
|
507
|
-
|
508
|
-
* Mostly all of the low-level function wrapped.
|
509
|
-
|
510
|
-
* Added some high-level methods on Linkages.
|
511
|
-
|
512
|
-
|
513
|
-
-- Mon, 18 Sep 2006 00:19:12 -0000 by ged (r4) -----
|
514
|
-
Added: link-grammar-4.2.4.patch (new)
|
515
|
-
link-grammar-4.2.4.tar.gz (new)
|
516
|
-
Changed: tests/linkage.tests.rb
|
517
|
-
extconf.rb
|
518
|
-
LinkParser Project.tmproj
|
519
|
-
ext/linkage.c
|
520
|
-
|
521
|
-
|
522
|
-
* Updated for and included LinkGrammar 4.2.4
|
523
|
-
|
524
|
-
* Fixed weird typo
|
525
|
-
|
526
|
-
|
527
|
-
-- Sat, 29 Jul 2006 21:59:11 -0000 by ged (r3) -----
|
528
|
-
Added: .irbrc (new)
|
529
|
-
docs/link-includes.h (new)
|
530
|
-
tests/linkage.tests.rb (new)
|
531
|
-
test.rb (new)
|
532
|
-
LinkParser Project.tmproj (new)
|
533
|
-
Changed: /trunk
|
534
|
-
ext
|
535
|
-
extconf.rb
|
536
|
-
tests/sentence.tests.rb
|
537
|
-
ext/linkage.c
|
538
|
-
|
539
|
-
|
540
|
-
Checkpoint commit:
|
541
|
-
|
542
|
-
* Fleshed out LinkParser::Linkage a bit more (not yet complete)
|
543
|
-
|
544
|
-
* Gave up on running tests with testrb and imported test.rb from
|
545
|
-
|
546
|
-
project-utils.
|
547
|
-
|
548
|
-
* Added TextMate project file
|
549
|
-
|
550
|
-
* Added an .irbrc
|
551
|
-
|
552
|
-
|
553
|
-
-- Fri, 21 Jul 2006 18:23:49 -0000 by ged (r2) -----
|
554
|
-
Added: experiments/free_stuff.rb (new)
|
555
|
-
ext (new)
|
556
|
-
ext/linkparser.h (new)
|
557
|
-
utils.rb (new)
|
558
|
-
tests (new)
|
559
|
-
docs/CATALOG (new) (and 21 other/s)
|
560
|
-
Changed: /trunk
|
561
|
-
|
562
|
-
|
563
|
-
* Checkpoint: First semi-useful version.
|
564
|
-
|
565
|
-
|
566
|
-
-- Sun, 02 Jul 2006 05:43:02 -0000 by ged (r1) -----
|
567
|
-
Added: /trunk (new)
|
568
|
-
/branches (new)
|
569
|
-
/tags (new)
|
570
|
-
|
571
|
-
- Initial repository structure import
|
196
|
+
1 b6bcea18f1cc 2006-07-21 18:23 +0000 ged
|
197
|
+
* Checkpoint: First semi-useful version.
|
572
198
|
|
199
|
+
0 9b583e704a67 2006-07-02 05:43 +0000 ged
|
200
|
+
- Initial repository structure import
|
573
201
|
|