linkparser 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog +526 -0
- data/LICENSE +27 -0
- data/README +88 -0
- data/Rakefile +315 -0
- data/Rakefile.local +60 -0
- data/ext/dictionary.c +269 -0
- data/ext/extconf.rb +53 -0
- data/ext/linkage.c +894 -0
- data/ext/linkparser.c +120 -0
- data/ext/linkparser.h +112 -0
- data/ext/parseoptions.c +1188 -0
- data/ext/sentence.c +536 -0
- data/lib/linkparser.rb +38 -0
- data/lib/linkparser/linkage.rb +248 -0
- data/lib/linkparser/sentence.rb +106 -0
- data/rake/dependencies.rb +76 -0
- data/rake/helpers.rb +395 -0
- data/rake/manual.rb +755 -0
- data/rake/packaging.rb +112 -0
- data/rake/publishing.rb +308 -0
- data/rake/rdoc.rb +47 -0
- data/rake/style.rb +62 -0
- data/rake/svn.rb +602 -0
- data/rake/testing.rb +202 -0
- data/rake/verifytask.rb +64 -0
- data/spec/bugfixes_spec.rb +42 -0
- data/spec/linkparser/dictionary_spec.rb +90 -0
- data/spec/linkparser/linkage_spec.rb +434 -0
- data/spec/linkparser/parseoptions_spec.rb +78 -0
- data/spec/linkparser/sentence_spec.rb +117 -0
- data/spec/linkparser_spec.rb +30 -0
- metadata +219 -0
data/ChangeLog
ADDED
@@ -0,0 +1,526 @@
|
|
1
|
+
-- Sat, 20 Dec 2008 19:51:24 -0000 by deveiant (r49) -----
|
2
|
+
Changed: Rakefile
|
3
|
+
project.yml
|
4
|
+
ChangeLog
|
5
|
+
|
6
|
+
* Removed some more unnecessary files from the gem distribution to reduce size.
|
7
|
+
|
8
|
+
|
9
|
+
-- Fri, 19 Dec 2008 18:30:33 -0000 by deveiant (r48) -----
|
10
|
+
Added: link-grammar-4.4.1.tar.gz (new)
|
11
|
+
spec/linkparser (new)
|
12
|
+
spec/linkparser/parseoptions_spec.rb
|
13
|
+
-> renamed from /trunk/spec/parseoptions_spec.rb@r46
|
14
|
+
spec/linkparser_spec.rb (new)
|
15
|
+
spec/linkparser/sentence_spec.rb
|
16
|
+
-> renamed from /trunk/spec/sentence_spec.rb@r46
|
17
|
+
spec/linkparser/dictionary_spec.rb
|
18
|
+
-> renamed from /trunk/spec/dictionary_spec.rb@r46 (and 2 other/s)
|
19
|
+
Changed: README
|
20
|
+
spec/TEMPLATE.rb.tpl
|
21
|
+
project.yml
|
22
|
+
experiments/pps.rb
|
23
|
+
experiments/diagram_sentences.rb
|
24
|
+
spec/bugfixes_spec.rb (and 13 other/s)
|
25
|
+
Deleted: experiments/free_stuff.rb
|
26
|
+
link-grammar-4.3.9.tar.gz
|
27
|
+
spec/sentence_spec.rb
|
28
|
+
spec/dictionary_spec.rb
|
29
|
+
spec/linkage_spec.rb
|
30
|
+
loadpath.rb (and 6 other/s)
|
31
|
+
|
32
|
+
* Updated build system
|
33
|
+
* Updated for link-grammar 4.4.1
|
34
|
+
* Removed the (now-obsolete) patch to link-grammar
|
35
|
+
* Removed a bunch of other old cruft
|
36
|
+
* Reorganized the specs into the standard mirrored layout
|
37
|
+
* Added LinkParser.link_grammar_version
|
38
|
+
* LinkParser::ParseOptions
|
39
|
+
- Added spec coverage for #all_short_connectors?
|
40
|
+
- Added implementations for #timer_expired?, #memory_exhausted?, #resources_exhausted?,
|
41
|
+
and #reset_resources.
|
42
|
+
* Documentation cleanup for the upcoming RDoc 2.3.x
|
43
|
+
|
44
|
+
|
45
|
+
-- Thu, 18 Dec 2008 17:03:32 -0000 by deveiant (r47) -----
|
46
|
+
Changed: Rakefile
|
47
|
+
ext/sentence.c
|
48
|
+
ext/dictionary.c
|
49
|
+
project.yml
|
50
|
+
ext/parseoptions.c
|
51
|
+
ext/linkage.c (and 1 other/s)
|
52
|
+
|
53
|
+
* Updated build system
|
54
|
+
* Removed some spammy debugging.
|
55
|
+
|
56
|
+
|
57
|
+
-- Thu, 20 Nov 2008 19:34:55 -0000 by deveiant (r46) -----
|
58
|
+
Changed: Rakefile
|
59
|
+
INSTALL
|
60
|
+
project.yml
|
61
|
+
|
62
|
+
Updated the minimum version in the link-grammar gem requirement to 4.3.9.
|
63
|
+
|
64
|
+
|
65
|
+
-- Wed, 19 Nov 2008 23:42:43 -0000 by deveiant (r45) -----
|
66
|
+
Changed: README
|
67
|
+
|
68
|
+
Ye gods. Re-re-undoing clobbered README, hopefully for the last time.
|
69
|
+
|
70
|
+
|
71
|
+
-- Wed, 19 Nov 2008 23:34:01 -0000 by deveiant (r44) -----
|
72
|
+
Changed: README
|
73
|
+
/trunk
|
74
|
+
Rakefile
|
75
|
+
project.yml
|
76
|
+
ChangeLog
|
77
|
+
|
78
|
+
Updated build system.
|
79
|
+
|
80
|
+
|
81
|
+
-- Wed, 19 Nov 2008 23:01:25 -0000 by deveiant (r43) -----
|
82
|
+
Changed: spec/linkage_spec.rb
|
83
|
+
ChangeLog
|
84
|
+
ext/extconf.rb
|
85
|
+
|
86
|
+
* Revert an accidentally-clobbered fix for linkage_spec.rb.
|
87
|
+
* Rearranged ext/extconf.rb to hopefully fix the build for FreeBSD.
|
88
|
+
|
89
|
+
|
90
|
+
-- Wed, 19 Nov 2008 22:43:39 -0000 by deveiant (r42) -----
|
91
|
+
Changed: README
|
92
|
+
Rakefile.local
|
93
|
+
|
94
|
+
* Reverted accidentally-overwritten README
|
95
|
+
* Cleaned up the local rakefile a bit
|
96
|
+
|
97
|
+
|
98
|
+
-- Tue, 18 Nov 2008 17:00:35 -0000 by deveiant (r41) -----
|
99
|
+
Changed: ChangeLog
|
100
|
+
Rakefile.local
|
101
|
+
|
102
|
+
Fixed a build message.
|
103
|
+
|
104
|
+
|
105
|
+
-- Tue, 18 Nov 2008 16:53:56 -0000 by deveiant (r40) -----
|
106
|
+
Changed: Rakefile
|
107
|
+
INSTALL
|
108
|
+
|
109
|
+
Updated the build system to fix the problems with building the Gem.
|
110
|
+
|
111
|
+
|
112
|
+
-- Tue, 18 Nov 2008 16:18:11 -0000 by deveiant (r39) -----
|
113
|
+
Added: ext/extconf.rb (new)
|
114
|
+
Changed: README
|
115
|
+
ext/linkparser.h
|
116
|
+
ext
|
117
|
+
ext/parseoptions.c
|
118
|
+
spec/sentence_spec.rb
|
119
|
+
Rakefile.local (and 13 other/s)
|
120
|
+
Deleted: misc/monkeypatches.rb
|
121
|
+
ext/TEMPLATE.c.tpl
|
122
|
+
|
123
|
+
* Ditched Mkrf for mkmf. This makes me sad, but Mkrf just failed on too many
|
124
|
+
systems, and was hard to integrate into gem.
|
125
|
+
* Updated build system.
|
126
|
+
* Fixed gem packaging (I think).
|
127
|
+
* Updated copyright and other header stuff.
|
128
|
+
* Fixed a bunch of RDoc comments
|
129
|
+
* Converted a bunch of K&R-style functions to ANSI-style.
|
130
|
+
|
131
|
+
|
132
|
+
-- Mon, 17 Nov 2008 16:10:41 -0000 by deveiant (r38) -----
|
133
|
+
Changed: INSTALL
|
134
|
+
|
135
|
+
Updated build instructions.
|
136
|
+
|
137
|
+
|
138
|
+
-- Sun, 16 Nov 2008 02:17:49 -0000 by deveiant (r37) -----
|
139
|
+
Changed: ext/linkparser.h
|
140
|
+
ext/dictionary.c
|
141
|
+
ChangeLog
|
142
|
+
ext/linkparser.c
|
143
|
+
|
144
|
+
Replaced my naive initialization of the locale system with the recommended code from the docs.
|
145
|
+
|
146
|
+
|
147
|
+
-- Sat, 15 Nov 2008 19:54:11 -0000 by deveiant (r36) -----
|
148
|
+
Changed: lib/linkparser.rb
|
149
|
+
ChangeLog
|
150
|
+
|
151
|
+
Bumping the version, fixing docs.
|
152
|
+
|
153
|
+
|
154
|
+
-- Sat, 15 Nov 2008 19:44:37 -0000 by deveiant (r35) -----
|
155
|
+
Added: link-grammar-4.3.9.tar.gz (new)
|
156
|
+
link-grammar-4.3.9.patch
|
157
|
+
-> renamed from /trunk/link-grammar-4.3.5.patch@r34
|
158
|
+
Changed: README
|
159
|
+
spec/linkage_spec.rb
|
160
|
+
Rakefile
|
161
|
+
project.yml
|
162
|
+
ChangeLog
|
163
|
+
misc/monkeypatches.rb (and 4 other/s)
|
164
|
+
Deleted: link-grammar-4.3.5.patch
|
165
|
+
link-grammar-4.3.5.tar.gz
|
166
|
+
|
167
|
+
* Updated the binding to build against 4.3.9.
|
168
|
+
* Removed the necessity of building against a patched link-grammar library. Removed the stuff
|
169
|
+
from the patch that was no longer necessary since 4.3.9 now include the necessary
|
170
|
+
memory-freeing functions, and no longer printf()s warnings without adhering to the warning
|
171
|
+
level.
|
172
|
+
* Updated the build system.
|
173
|
+
* Still needs more work before it can be gemmed up, but it's close.
|
174
|
+
* Thanks, as always, to Martin Chase for many useful suggestions and help.
|
175
|
+
|
176
|
+
|
177
|
+
-- Wed, 20 Aug 2008 07:22:59 -0000 by deveiant (r34) -----
|
178
|
+
Changed: ChangeLog
|
179
|
+
Rakefile.local
|
180
|
+
Deleted: ext/extconf.rb
|
181
|
+
|
182
|
+
* Removed the old extension config script
|
183
|
+
* Updated Rakefile.local with the right extension, and added the .so to the
|
184
|
+
CLOBBER files.
|
185
|
+
|
186
|
+
|
187
|
+
-- Wed, 20 Aug 2008 07:13:27 -0000 by deveiant (r33) -----
|
188
|
+
Changed: lib/linkparser.rb
|
189
|
+
Deleted: makedist.rb
|
190
|
+
|
191
|
+
* Removed the makedist.rb script.
|
192
|
+
* Bumped version to 1.0.2.
|
193
|
+
|
194
|
+
|
195
|
+
-- Wed, 20 Aug 2008 07:04:09 -0000 by deveiant (r32) -----
|
196
|
+
Changed: README
|
197
|
+
LICENSE
|
198
|
+
|
199
|
+
Updated README and LICENSE files.
|
200
|
+
|
201
|
+
|
202
|
+
-- Wed, 20 Aug 2008 06:51:27 -0000 by deveiant (r31) -----
|
203
|
+
Changed: README
|
204
|
+
Rakefile
|
205
|
+
INSTALL
|
206
|
+
project.yml
|
207
|
+
ChangeLog
|
208
|
+
Rakefile.local (and 1 other/s)
|
209
|
+
|
210
|
+
Updated the build system.
|
211
|
+
|
212
|
+
|
213
|
+
-- Wed, 13 Aug 2008 05:23:33 -0000 by deveiant (r30) -----
|
214
|
+
Added: loadpath.rb
|
215
|
+
-> renamed from /trunk/linkparser-path.rb@r29
|
216
|
+
project.yml (new)
|
217
|
+
Rakefile.local (new)
|
218
|
+
LICENSE (new)
|
219
|
+
ChangeLog (new)
|
220
|
+
Changed: /trunk
|
221
|
+
spec/TEMPLATE.rb.tpl
|
222
|
+
MANIFEST
|
223
|
+
experiments/pps.rb
|
224
|
+
spec/sentence_spec.rb
|
225
|
+
spec/dictionary_spec.rb (and 8 other/s)
|
226
|
+
Deleted: linkparser-path.rb
|
227
|
+
LinkParser Project.tmproj
|
228
|
+
misc/rake
|
229
|
+
|
230
|
+
* Updated to the latest build system.
|
231
|
+
* Updated to New BSD license
|
232
|
+
* Renamed 'linkparser-path.rb' to 'loadpath.rb'
|
233
|
+
|
234
|
+
|
235
|
+
-- Mon, 23 Jun 2008 22:05:57 -0000 by deveiant (r29) -----
|
236
|
+
Changed: Rakefile
|
237
|
+
|
238
|
+
Turning off Darkfish until I can port it to RDoc 2.
|
239
|
+
|
240
|
+
|
241
|
+
-- Tue, 27 May 2008 00:17:43 -0000 by deveiant (r27) -----
|
242
|
+
Changed: README
|
243
|
+
Rakefile
|
244
|
+
MANIFEST
|
245
|
+
docs
|
246
|
+
Deleted: docs/makedocs.rb
|
247
|
+
docs/CATALOG
|
248
|
+
extconf.rb
|
249
|
+
|
250
|
+
* Cleaned up some old documentation cruft
|
251
|
+
* Fixed the link-grammar version mentioned in the README file
|
252
|
+
|
253
|
+
|
254
|
+
-- Mon, 26 May 2008 23:40:31 -0000 by deveiant (r24) -----
|
255
|
+
Changed: Rakefile
|
256
|
+
INSTALL
|
257
|
+
|
258
|
+
* Added better handling of missing 'mkrf' dependency.
|
259
|
+
* Added some more instructions to INSTALL.
|
260
|
+
|
261
|
+
|
262
|
+
-- Mon, 26 May 2008 23:17:59 -0000 by deveiant (r22) -----
|
263
|
+
Added: misc/readme-example.rb (new)
|
264
|
+
misc/monkeypatches.rb (new)
|
265
|
+
Changed: README
|
266
|
+
.irbrc
|
267
|
+
/trunk
|
268
|
+
spec/linkage_spec.rb
|
269
|
+
Rakefile
|
270
|
+
INSTALL (and 3 other/s)
|
271
|
+
|
272
|
+
* Fixed the Mkrf-generated Rakefile so it'll actually install the extension; this
|
273
|
+
requires a monkeypatch currently, but I'll upstream the fix to the Mkrf guys.
|
274
|
+
* Fixed some warnings in linkage.c
|
275
|
+
* Fixed the INSTALL instructions
|
276
|
+
* Fixed up the example in the README and extracted the code to ease future
|
277
|
+
testing.
|
278
|
+
* Fixed a bug in the suffix-stripping in the Linkage#subject and #object methods.
|
279
|
+
|
280
|
+
|
281
|
+
-- Mon, 26 May 2008 21:49:02 -0000 by deveiant (r21) -----
|
282
|
+
Added: spec/sentence_spec.rb
|
283
|
+
-> renamed from /trunk/spec/sentence.tests.rb@r20
|
284
|
+
misc/rake/helpers.rb (new)
|
285
|
+
misc/rake/svn.rb (new)
|
286
|
+
misc/rake/verifytask.rb (new)
|
287
|
+
misc/rake (new)
|
288
|
+
link-grammar-4.3.5.patch (new) (and 3 other/s)
|
289
|
+
Changed: experiments/free_stuff.rb
|
290
|
+
/trunk
|
291
|
+
makedist.rb
|
292
|
+
linkparser-path.rb
|
293
|
+
experiments/pps.rb
|
294
|
+
extconf.rb (and 26 other/s)
|
295
|
+
Deleted: spec/sentence.tests.rb
|
296
|
+
install.rb
|
297
|
+
link-grammar-4.2.4.patch
|
298
|
+
link-grammar-4.2.4.tar.gz
|
299
|
+
|
300
|
+
* Finished conversion of test::unit tests to RSpec.
|
301
|
+
* Fleshed out Rake-based build system
|
302
|
+
* Updated to work with the latest Abiword link-grammar library (4.3.5)
|
303
|
+
|
304
|
+
|
305
|
+
-- Sun, 10 Feb 2008 21:48:54 -0000 by deveiant (r20) -----
|
306
|
+
Added: spec/parseoptions_spec.rb
|
307
|
+
-> renamed from /trunk/spec/parseoptions.tests.rb@r19
|
308
|
+
Changed: ext
|
309
|
+
ext/linkparser.h
|
310
|
+
spec/sentence.tests.rb
|
311
|
+
ext/parseoptions.c
|
312
|
+
ext/extconf.rb
|
313
|
+
spec/dictionary_spec.rb (and 13 other/s)
|
314
|
+
Deleted: spec/parseoptions.tests.rb
|
315
|
+
|
316
|
+
* Updated copyright date.
|
317
|
+
* Converted ParseOptions tests to RSpec.
|
318
|
+
|
319
|
+
|
320
|
+
-- Fri, 19 Oct 2007 01:06:25 -0000 by deveiant (r19) -----
|
321
|
+
Changed: docs/makedocs.rb
|
322
|
+
Rakefile
|
323
|
+
docs/CATALOG
|
324
|
+
ext/sentence.c
|
325
|
+
ext/dictionary.c
|
326
|
+
lib/linkparser/sentence.rb (and 6 other/s)
|
327
|
+
Deleted: test.rb
|
328
|
+
|
329
|
+
Documentation fixes; converted to Darkfish RDoc generator
|
330
|
+
|
331
|
+
|
332
|
+
-- Fri, 27 Jul 2007 07:40:13 -0000 by deveiant (r17) -----
|
333
|
+
Added: README (new)
|
334
|
+
Changed: docs/CATALOG
|
335
|
+
ext/sentence.c
|
336
|
+
lib/linkparser/sentence.rb
|
337
|
+
ext/parseoptions.c
|
338
|
+
ext/linkage.c
|
339
|
+
|
340
|
+
Checkpoint commit
|
341
|
+
|
342
|
+
|
343
|
+
-- Wed, 25 Jul 2007 02:00:32 -0000 by deveiant (r16) -----
|
344
|
+
Added: experiments/dumplinks.rb (new)
|
345
|
+
spec/dictionary_spec.rb (new)
|
346
|
+
spec/linkage_spec.rb (new)
|
347
|
+
Rakefile (new)
|
348
|
+
spec/bugfixes_spec.rb (new)
|
349
|
+
spec
|
350
|
+
-> renamed from /trunk/tests@r15 (and 1 other/s)
|
351
|
+
Changed: ext/linkparser.h
|
352
|
+
spec/sentence.tests.rb
|
353
|
+
utils.rb
|
354
|
+
spec/TEMPLATE.rb.tpl
|
355
|
+
linkparser-path.rb
|
356
|
+
ext/parseoptions.c (and 11 other/s)
|
357
|
+
Deleted: spec/dictionary.tests.rb
|
358
|
+
tests
|
359
|
+
spec/linkage.tests.rb
|
360
|
+
|
361
|
+
|
362
|
+
* Started converting build system, test::unit -> rspec, etc.
|
363
|
+
|
364
|
+
|
365
|
+
-- Mon, 11 Jun 2007 14:55:34 -0000 by deveiant (r15) -----
|
366
|
+
Changed: INSTALL
|
367
|
+
|
368
|
+
Added some stuff to the build instructions
|
369
|
+
|
370
|
+
|
371
|
+
-- Mon, 11 Jun 2007 14:52:19 -0000 by deveiant (r14) -----
|
372
|
+
Changed: /trunk
|
373
|
+
|
374
|
+
Adding project-name and project-version svn attributes
|
375
|
+
|
376
|
+
|
377
|
+
-- Mon, 30 Oct 2006 07:04:23 -0000 by stillflame (r12) -----
|
378
|
+
Added: INSTALL (new)
|
379
|
+
Changed: link-grammar-4.2.4.patch
|
380
|
+
|
381
|
+
- added installation instructions
|
382
|
+
- added patching to link-grammar to pass tests
|
383
|
+
|
384
|
+
|
385
|
+
-- Sun, 29 Oct 2006 02:01:56 -0000 by stillflame (r11) -----
|
386
|
+
Changed: tests/linkage.tests.rb
|
387
|
+
|
388
|
+
- added test that breaks with version 4.2.4 of link-parser due to lack of "linkage_get_current_sublinkage" function
|
389
|
+
|
390
|
+
|
391
|
+
-- Wed, 11 Oct 2006 05:40:31 -0000 by ged (r10) -----
|
392
|
+
Changed: tests/linkage.tests.rb
|
393
|
+
ext/sentence.c
|
394
|
+
lib/linkparser/sentence.rb
|
395
|
+
tests/sentence.tests.rb
|
396
|
+
LinkParser Project.tmproj
|
397
|
+
|
398
|
+
|
399
|
+
* More documentation cleanup.
|
400
|
+
|
401
|
+
* Fixed Sentence#[]
|
402
|
+
|
403
|
+
* Added some more Sentence tests.
|
404
|
+
|
405
|
+
|
406
|
+
-- Wed, 11 Oct 2006 00:46:49 -0000 by ged (r9) -----
|
407
|
+
Changed: tests/linkage.tests.rb
|
408
|
+
ext/sentence.c
|
409
|
+
ext/dictionary.c
|
410
|
+
ext/parseoptions.c
|
411
|
+
ext/linkage.c
|
412
|
+
|
413
|
+
|
414
|
+
* Fixes for documentation
|
415
|
+
|
416
|
+
* Fixed constituent_tree_string's mode argument.
|
417
|
+
|
418
|
+
|
419
|
+
-- Wed, 11 Oct 2006 00:14:38 -0000 by ged (r8) -----
|
420
|
+
Added: MANIFEST (new)
|
421
|
+
|
422
|
+
|
423
|
+
*Added MANIFEST file for makedist.rb.
|
424
|
+
|
425
|
+
|
426
|
+
-- Tue, 10 Oct 2006 23:31:51 -0000 by ged (r7) -----
|
427
|
+
Changed: /trunk
|
428
|
+
utils.rb
|
429
|
+
makedist.rb
|
430
|
+
|
431
|
+
|
432
|
+
* Dist-script fixes.
|
433
|
+
|
434
|
+
|
435
|
+
-- Tue, 10 Oct 2006 23:16:33 -0000 by ged (r6) -----
|
436
|
+
Added: install.rb (new)
|
437
|
+
Changed: test.rb
|
438
|
+
ext/extconf.rb
|
439
|
+
extconf.rb
|
440
|
+
|
441
|
+
|
442
|
+
* Finished up installation/build/test utility scripts.
|
443
|
+
|
444
|
+
|
445
|
+
-- Fri, 29 Sep 2006 14:14:55 -0000 by ged (r5) -----
|
446
|
+
Added: lib (new)
|
447
|
+
linkparser-path.rb (new)
|
448
|
+
experiments/pps.rb (new)
|
449
|
+
lib/linkparser (new)
|
450
|
+
lib/linkparser.rb (new)
|
451
|
+
lib/linkparser/sentence.rb (new) (and 2 other/s)
|
452
|
+
Changed: ext/linkparser.h
|
453
|
+
ext/extconf.rb
|
454
|
+
tests/sentence.tests.rb
|
455
|
+
tests/dictionary.tests.rb
|
456
|
+
LinkParser Project.tmproj
|
457
|
+
tests/linkage.tests.rb (and 8 other/s)
|
458
|
+
Deleted: link-grammar-4.2.2.patch
|
459
|
+
|
460
|
+
|
461
|
+
* Mostly all of the low-level function wrapped.
|
462
|
+
|
463
|
+
* Added some high-level methods on Linkages.
|
464
|
+
|
465
|
+
|
466
|
+
-- Mon, 18 Sep 2006 00:19:12 -0000 by ged (r4) -----
|
467
|
+
Added: link-grammar-4.2.4.patch (new)
|
468
|
+
link-grammar-4.2.4.tar.gz (new)
|
469
|
+
Changed: tests/linkage.tests.rb
|
470
|
+
extconf.rb
|
471
|
+
LinkParser Project.tmproj
|
472
|
+
ext/linkage.c
|
473
|
+
|
474
|
+
|
475
|
+
* Updated for and included LinkGrammar 4.2.4
|
476
|
+
|
477
|
+
* Fixed weird typo
|
478
|
+
|
479
|
+
|
480
|
+
-- Sat, 29 Jul 2006 21:59:11 -0000 by ged (r3) -----
|
481
|
+
Added: .irbrc (new)
|
482
|
+
docs/link-includes.h (new)
|
483
|
+
tests/linkage.tests.rb (new)
|
484
|
+
test.rb (new)
|
485
|
+
LinkParser Project.tmproj (new)
|
486
|
+
Changed: /trunk
|
487
|
+
ext
|
488
|
+
extconf.rb
|
489
|
+
tests/sentence.tests.rb
|
490
|
+
ext/linkage.c
|
491
|
+
|
492
|
+
|
493
|
+
Checkpoint commit:
|
494
|
+
|
495
|
+
* Fleshed out LinkParser::Linkage a bit more (not yet complete)
|
496
|
+
|
497
|
+
* Gave up on running tests with testrb and imported test.rb from
|
498
|
+
|
499
|
+
project-utils.
|
500
|
+
|
501
|
+
* Added TextMate project file
|
502
|
+
|
503
|
+
* Added an .irbrc
|
504
|
+
|
505
|
+
|
506
|
+
-- Fri, 21 Jul 2006 18:23:49 -0000 by ged (r2) -----
|
507
|
+
Added: experiments/free_stuff.rb (new)
|
508
|
+
ext (new)
|
509
|
+
ext/linkparser.h (new)
|
510
|
+
utils.rb (new)
|
511
|
+
tests (new)
|
512
|
+
docs/CATALOG (new) (and 21 other/s)
|
513
|
+
Changed: /trunk
|
514
|
+
|
515
|
+
|
516
|
+
* Checkpoint: First semi-useful version.
|
517
|
+
|
518
|
+
|
519
|
+
-- Sun, 02 Jul 2006 05:43:02 -0000 by ged (r1) -----
|
520
|
+
Added: /trunk (new)
|
521
|
+
/branches (new)
|
522
|
+
/tags (new)
|
523
|
+
|
524
|
+
- Initial repository structure import
|
525
|
+
|
526
|
+
|