-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmyv.diff
1445 lines (1445 loc) · 76.5 KB
/
myv.diff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
555d554
< Updated ignore patterns. 2019-10-23T18:40:46+00:00
564,568d562
< ignore *.fomabin. 2019-10-08T06:35:05+00:00
< ign 2019-10-07T21:32:11+00:00
< ign 2019-10-07T21:15:15+00:00
< ign 2019-10-07T21:13:09+00:00
< Force unix line endings, to make sure it works ok also on the Windows subsystem for Linux. 2019-10-07T17:16:53+00:00
581d574
< Updating svn ignores for tools/analysers/. 2019-06-14T06:38:51+00:00
587,588d579
< Updating svn ignores. 2019-05-24T09:55:04+00:00
< Updating svn ignores. 2019-05-24T09:44:55+00:00
604d594
< Updated svn ignores. 2019-02-27T10:18:02+00:00
624,625d613
< Ignore compiled cg3 files in tools/tokenisers/. 2019-01-08T07:08:34+00:00
< Ignore more files, including files that are automatically added to svn when populating a new language. This is done to avoid them showing up as noise for external languages, in which case these files might not be in our svn (but in the external svn repo instead). 2019-01-08T06:55:51+00:00
641,642d628
< ignore for bin 2018-10-14T13:31:01+00:00
< added korp.cg3 to svn ignore. 2018-10-14T12:56:20+00:00
662,663d647
< svn ignore update 2018-09-20T08:44:05+00:00
< updated svn ignore. 2018-09-20T08:28:11+00:00
670d653
< More general ignore pattern for tools/mt/apertium/tagsets/. 2018-09-10T11:16:40+00:00
673d655
< Updated svn ignore patterns. 2018-09-08T05:26:27+00:00
683d664
< Updated svn ignores. 2018-08-30T16:00:09+00:00
688d668
< Updated svn ignores. 2018-08-29T05:25:34+00:00
690d669
< Updating svn ignores. 2018-08-28T10:47:06+00:00
711d689
< More things to ignore. 2018-05-14T10:33:30+00:00
727,730d704
< Added ignore pattern for in.txt 2018-03-01T07:09:50+00:00
< More ignores 2018-03-01T06:52:33+00:00
< More svn ignores. 2018-03-01T06:25:59+00:00
< Added svnignore pattern for sigma.txt. 2018-02-21T09:49:57+00:00
733d706
< Two more files to ignore. 2018-02-06T09:44:18+00:00
746d718
< Updated svn ignores. 2018-01-31T12:13:59+00:00
788d759
< Updated svn ignores. 2017-12-11T12:55:46+00:00
820,821d790
< Updated svn ignores for tokenisers and grammar checkers + subdirs. 2017-10-11T11:47:18+00:00
< Updated svn ignores for tokenisers and grammar checkers + subdirs. 2017-10-11T11:22:45+00:00
837d805
< Updating svn ignores. 2017-08-25T10:22:58+00:00
866,867d833
< Updated svn ignores. 2017-06-28T23:37:25+00:00
< Updated svn ignores. 2017-06-28T23:08:42+00:00
886d851
< ign 2017-03-21T19:49:19+00:00
903d867
< Updated svn ignores. 2017-03-01T12:02:48+00:00
919d882
< Updated svn ignores. 2017-01-30T10:04:48+00:00
923a887
> After inspection of kom and myv. Removing from svn. 2017-01-25T10:11:16+00:00
931a896
> moved to biggies 2017-01-23T11:49:22+00:00
1020d984
< Updated svn ignores. 2016-06-09T20:11:13+00:00
1049d1012
< Setting svn ignore patterns on tools/spellcheckers/filters/. 2016-05-10T01:00:11+00:00
1070d1032
< Ignore more preprocessor files = fst’s. 2016-04-14T16:01:04+00:00
1075d1036
< Updated svn ignores. 2016-03-15T19:54:49+00:00
1081d1041
< Use a more general svn ignore pattern in src/morphology/. 2016-03-07T17:10:12+00:00
1112d1071
< Updated the svn ignore property for recent changes in the infrastructure. 2016-02-16T22:36:51+00:00
1119d1077
< Updating svn:ignore’s. 2016-02-02T15:34:45+00:00
1124,1125d1081
< Updated svn:ignore’s. 2016-02-02T10:33:44+00:00
< Updated svn:ignore’s. 2016-02-02T10:16:28+00:00
1129d1084
< Updated svn ignores. 2016-01-25T08:11:45+00:00
1143d1097
< Updated svn:ignore’s. 2015-11-18T23:05:40+00:00
1181d1134
< Updated svn ignores. 2015-10-20T07:50:38+00:00
1212d1164
< Ignore temporary files generated by the speller suggestion test script. 2015-09-03T04:23:51+00:00
1278d1229
< Ignore txt files in speller dirs. 2015-04-09T11:55:38+00:00
1291d1241
< Updated svn ignores. 2015-03-14T10:46:39+00:00
1296d1245
< Updated svn ignores. 2015-03-12T08:28:02+00:00
1302d1250
< Updated svn ignores. 2015-03-09T10:41:02+00:00
1304d1251
< Updated svn ignores. 2015-03-06T15:56:54+00:00
1307d1253
< Updated svn ignores. 2015-03-06T09:24:00+00:00
1314d1259
< Update svn ignores. 2015-02-27T12:55:53+00:00
1367d1311
< Special svn:ignore on src/orthography/. 2015-01-26T10:30:36+00:00
1374d1317
< Setting svn:ignore for Bashkir, updating the other ignores. 2015-01-19T06:20:12+00:00
1382d1324
< Updated svn:ignore's. 2015-01-12T21:50:15+00:00
1384d1325
< svn:ignore also for *.service. 2015-01-12T15:58:08+00:00
1451d1391
< Update ignores for src/morphology/. 2014-10-23T08:25:38+00:00
1511d1450
< Updated svn:ignore's. 2014-09-08T21:51:28+00:00
1527d1465
< ignore 2014-08-16T15:52:40+00:00
1551d1488
< Updated svn:ignore for all languages. 2014-06-11T09:37:23+00:00
1557d1493
< Ignore cg3 files in the tools/mt/apertium/ dir. 2014-06-02T14:02:42+00:00
1563d1498
< Ignore the generated pkg-config files. 2014-05-12T20:27:01+00:00
1603d1537
< Extra ignores on tools/mt/apertium/filters/. 2014-04-16T05:45:32+00:00
1608d1541
< Updated svn ignores. 2014-04-15T13:30:11+00:00
1614d1546
< Updated svn ignore. 2014-04-10T15:16:59+00:00
1631d1562
< Updated svn ignores. 2014-04-03T10:10:45+00:00
1636d1566
< Updated svn ignore. 2014-04-02T10:58:00+00:00
1654d1583
< Update svn ignores on test/src/phonology/. 2014-03-20T07:32:24+00:00
1663d1591
< Updated ignore patterns for test/tools/spellcheckers/. 2014-03-14T10:26:24+00:00
1676d1603
< Updated svn ignores. 2014-02-28T06:46:07+00:00
1752d1678
< Ignore mk-files in the preprocess/ dir. 2014-01-14T14:20:40+00:00
1763d1688
< Ignore generated easteregg files. 2014-01-12T11:44:07+00:00
1766d1690
< Ignore functions.cg3 and dependency.cg3 if they are copied from a shared location (these files will not be ignored if already in svn). 2014-01-10T10:24:56+00:00
1769d1692
< Updated the ignore pattern for morphology/stems/. 2014-01-09T13:45:44+00:00
1800d1722
< Ignore generated regex files in the src/filters/ dir. 2013-12-03T11:56:43+00:00
1808,1809d1729
< Extra ignores in the filters/ dir. 2013-11-24T15:25:17+00:00
< igno 2013-11-24T15:13:39+00:00
1815d1734
< Ignore the generated, concatenated lexc file. 2013-11-22T13:37:46+00:00
1861d1779
< Ignore generated documents in tools/shellscripts/. 2013-10-18T11:47:12+00:00
1871,1872d1788
< One more ignore on the grammar checker dir. 2013-10-10T09:06:26+00:00
< Update svn ignores. 2013-10-09T11:01:58+00:00
1874d1789
< Updated svn ignores. 2013-10-09T07:04:36+00:00
1902d1816
< Ignore zipped files (built for apertium). 2013-08-19T07:13:39+00:00
1905d1818
< Ignore *.att files in src/ (produced by the apertium targets). 2013-08-17T12:30:28+00:00
1928d1840
< Ignore extra generated files in the tagsets dir. 2013-06-13T14:40:56+00:00
1940d1851
< Updated the svn ignores. 2013-06-06T08:10:31+00:00
1950a1862
> Completing deletion after removal. 2013-05-22T11:51:59+00:00
2020a1933
> These items are no longer needed, and they have been removed from the old infra. 2013-04-16T06:24:03+00:00
2025d1937
< [ignore] Also ignore generated foma transducers. 2013-04-11T16:57:19+00:00
2068d1979
< Ignore the generated voikko-3 dir. 2013-03-18T09:43:22+00:00
2088d1998
< More extensive ignores on src/morphology/. 2013-03-12T08:07:27+00:00
2108d2017
< Ignore top-level build dir. 2013-02-27T07:18:08+00:00
2110d2018
< Update svn ignores. 2013-02-27T00:08:32+00:00
2114d2021
< Ignore the build/ dir within doc/. 2013-02-26T17:02:56+00:00
2191,2192d2097
< The ignore pattern was wrong - now correct. 2013-01-23T22:34:12+00:00
< Ignore generated yaml tests. 2013-01-23T22:28:44+00:00
2197a2103
> synmlink 2013-01-23T14:54:15+00:00
2212d2117
< Updated svn:ignore with the latest modifications to the ignore patterns. 2013-01-14T19:34:16+00:00
2371c2276,2297
< Moved gtcore/ and langs/ out of newinfra/ - the experiment period is over, and the new infra should grow up and become a full member of the GT home. The newinfra/ dir is now gone. 2012-09-25T15:30:19+00:00
---
> Adding to svn. 2012-09-25T14:45:54+00:00
> Added warning about missing YAML testing, with short instructions on how to enable them. Template update. 2012-09-25T06:19:32+00:00
> Declared LPGL. 2012-09-23T14:34:30+00:00
> The top-level syntax include AM file had not been changed to reflect the rle->cg3 suffix change. Merge from template. 2012-09-21T10:37:43+00:00
> Changed the path to the analyzer and generator fst's, such that the tests can be run stand-alone as well (with default transducers. It also removes irrelevant paths from and remnants of the old infrastructure. 2012-09-21T05:54:29+00:00
> Corrected a bug in the default generate-noun-lemmas.sh test script. Made file references more robust. Update from template. This also clears any warnings left over from the cg3 file renaming, such that we get a clean merge in the next template update. 2012-09-20T09:26:56+00:00
> The VislCG3 team has lately switched to a *.cg3 suffix. Now we do the same in the new infra - the new suffix is definitely more transparent. 2012-09-19T18:26:12+00:00
> Adding files. 2012-09-18T10:41:34+00:00
> Variables=cleaner code. Update from the template. 2012-09-18T06:56:51+00:00
> Updated the yaml test runner to properly report the exit value of the yaml tests, and also to give directions for how to see the details of each test if it failed. Update from the template. 2012-09-17T14:10:42+00:00
> Added generated lexc files to svn - to avoid compilation issues for people without java & saxon. This way the dependencies on external tools to build our linguistic tools is reduced, which is a good thing™. 2012-09-17T11:55:40+00:00
> Corrected typo in shell scripts. 2012-09-17T11:03:08+00:00
> Several testing shell script updates: correct exit value when data files are not found, proper use of Autoconf-made variables (will free the test scripts from relying on the user setting up environment variables), and better checks on the availability of test data for the lemma and replaced all hard-coded file refs with variables in the noun generation test. 2012-09-17T09:30:31+00:00
> Added check for the Xerox lookup tool, which also defines the LOOKUP variable. Update from template. 2012-09-17T08:14:29+00:00
> Reorganised AC processing of shell scripts to be more future-proof and avoid annoying (and useless) warning from chmod. Added AC variable to the AC-processed shell script to make casual by-lookers aware of the fact that the resulting shell script file is generated by AC. 2012-09-17T07:37:40+00:00
> Corrected error in previous commit. Finally things are working as they should. It might be necessary to run ./autogen.sh and ./configure before compilation is running smoothly again. 2012-09-15T12:52:14+00:00
> Forgot to update configure.ac. 2012-09-15T10:43:23+00:00
> Refined the yaml test runner: more informative banner, ignore extra analyses (= removes false alarms). Merge from template. 2012-09-15T08:17:53+00:00
> Added basic setup for running YAML tests in the test/src/morphology/ dir. The default setup will run all *.yaml files found in this dir, but this can be modified in the shell (*.sh.in) script. If there are yaml files in that dir, they will be automatically run by 'make check'. 2012-09-14T19:28:03+00:00
> Enable yaml tests by magic. Merge from the template. 2012-09-14T11:54:49+00:00
> Added conditional support for running python-based tests in test/src/morphology. 2012-09-14T11:27:52+00:00
> Added checks for Python 3.1+ and py-yaml, and defined CAN_YAML_TEST. The idea is that we will run the python-based tests only if the prerequisites are available to us, and skip them if not. 2012-09-14T10:54:10+00:00
2372a2299,2300
> File has been copied to _newinfra_. It has now been deleted. 2012-09-10T14:26:06+00:00
> File has been copied to _newinfra_. It has now been deleted. 2012-09-10T14:25:53+00:00
2374a2303
> File has been copied to _newinfra_. It has now been deleted. 2012-09-10T14:25:41+00:00
2375a2305,2306
> File has been copied to _newinfra_. It has now been deleted. 2012-09-10T14:25:29+00:00
> File has been copied to _newinfra_. It has now been deleted. 2012-09-10T14:25:16+00:00
2377a2309
> File has been copied to _newinfra_. It has now been deleted. 2012-09-10T14:24:59+00:00
2378a2311,2312
> File has been copied to _newinfra_. It has now been deleted. 2012-09-10T14:24:49+00:00
> File has been copied to _newinfra_. It has now been deleted. 2012-09-10T14:24:34+00:00
2380a2315
> File has been copied to _newinfra_. It has now been deleted. 2012-09-10T14:24:22+00:00
2381a2317,2318
> File has been copied to _newinfra_. It has now been deleted. 2012-09-10T14:24:06+00:00
> File has been copied to _newinfra_. It has now been deleted. 2012-09-10T14:23:53+00:00
2383a2321
> File has been copied to _newinfra_. It has now been deleted. 2012-09-10T14:23:40+00:00
2384a2323,2324
> File has been copied to _newinfra_. It has now been deleted. 2012-09-10T14:23:30+00:00
> File has been copied to _newinfra_. It has now been deleted. 2012-09-10T14:23:15+00:00
2386a2327
> File has been copied to _newinfra_. It has now been deleted. 2012-09-10T14:22:54+00:00
2387a2329,2330
> File has been copied to _newinfra_. It has now been deleted. 2012-09-10T14:21:32+00:00
> File has been copied to _newinfra_. It has now been deleted. 2012-09-10T14:21:21+00:00
2389a2333
> File has been copied to _newinfra_. It has now been deleted. 2012-09-10T14:20:55+00:00
2390a2335,2336
> File has been copied to _newinfra_. It has now been deleted. 2012-09-10T14:20:38+00:00
> File has been copied to _newinfra_. It has now been deleted. 2012-09-10T14:20:29+00:00
2392a2339,2340
> File has been copied to _newinfra_. It has now been deleted. 2012-09-10T14:20:19+00:00
> File has been copied to _newinfra_. It has now been deleted. 2012-09-10T14:19:59+00:00
2394a2343
> File has been copied to _newinfra_. It has now been deleted. 2012-09-10T14:18:53+00:00
2395a2345,2346
> File has been copied to _newinfra_. It has now been deleted. 2012-09-10T14:18:34+00:00
> File has been copied to _newinfra_. It has now been deleted. 2012-09-10T14:18:27+00:00
2397a2349
> File has been copied to _newinfra_. It has now been deleted. 2012-09-10T14:18:09+00:00
2398a2351,2352
> File has been copied to _newinfra_. It has now been deleted. 2012-09-10T14:17:54+00:00
> File has been copied to _newinfra_. It has now been deleted. 2012-09-10T14:17:37+00:00
2400a2355
> File has been copied to _newinfra_. It has now been deleted. 2012-09-10T14:17:23+00:00
2401a2357,2358
> File has been copied to _newinfra_. It has now been deleted. 2012-09-10T14:16:58+00:00
> File has been copied to _newinfra_. It has now been deleted. 2012-09-10T14:16:42+00:00
2403a2361,2362
> File has been copied to _newinfra_. It has now been deleted. 2012-09-10T14:16:35+00:00
> File has been copied to _newinfra_. It has now been deleted. 2012-09-10T14:16:26+00:00
2405a2365
> The file has been deleted 2012-09-10T14:13:58+00:00
2406a2367,2368
> The file has been deleted 2012-09-10T14:13:51+00:00
> The file has been deleted 2012-09-10T14:13:36+00:00
2408a2371
> The codes have been copied to the _newinfra_. Now they can be removed from the old. 2012-09-10T14:10:03+00:00
2409a2373,2374
> The codes have been copied to the _newinfra_. Now they can be removed from the old. 2012-09-10T14:09:54+00:00
> The codes have been copied to the _newinfra_. Now they can be removed from the old. 2012-09-10T14:09:44+00:00
2411a2377
> The yaml files have been copied to _newinfra_ and have then been deleted from the old infra. 2012-09-10T14:08:06+00:00
2412a2379,2380
> The yaml files have been copied to _newinfra_ and have then been deleted from the old infra. 2012-09-10T14:07:51+00:00
> The yaml files have been copied to _newinfra_ and have then been deleted from the old infra. 2012-09-10T14:07:44+00:00
2414a2383,2384
> The yaml files have been copied to _newinfra_ and have then been deleted from the old infra. 2012-09-10T14:07:36+00:00
> The yaml files have been copied to _newinfra_ and have then been deleted from the old infra. 2012-09-10T14:07:18+00:00
2416a2387,2434
> The yaml files have been copied to _newinfra_ and have then been deleted from the old infra. 2012-09-10T14:07:07+00:00
> Added support for transcribing transducers, ie transducers that change the input from one orthographical representation to another, e.g. date and time expressions as strings or digits to the opposite form. 2012-09-10T10:37:35+00:00
> Renamed the default error model file, to follow the naming scheme used in the zhfst guidelines. 2012-09-10T09:30:47+00:00
> Renamed the default error model file, to follow the naming scheme used in the zhfst guidelines. This makes compilation much easier, and should cause the present makefile to actually build spellers. Tommi already did this for FIN. 2012-09-10T09:25:01+00:00
> Don't remove the *.tmp files - that destroys the dependency relationships for (auto)make, which forces a full recompilation of all target fst's, and a lot of extra waiting time. 2012-09-10T09:00:36+00:00
> Actual dialect tags have been added. 2012-09-08T16:05:12+00:00
> Add missing src to hfst spellchecker automaton path. Merge from template. 2012-09-08T13:00:22+00:00
> Added missing reference to dialect tag filter. Update from the template. 2012-09-08T08:42:58+00:00
> Updated my simplistic noun generation script to be aware of its new location. 2012-09-07T14:48:50+00:00
> Reorganised the test dir, in anticipation of a larger set of tools and source types in need of testing. Merge from the template. 2012-09-07T13:49:17+00:00
> Added test/data/typos.txt to hold a list of collected typos. The list is used both for testing spellers, and as part of the preprocessor used with the Xerox lookup tool. 2012-09-07T06:27:36+00:00
> After merge. 2012-09-06T15:30:44+00:00
> After merge. 2012-09-06T09:17:19+00:00
> After merge. 2012-09-05T13:36:51+00:00
> After merge. 2012-09-05T13:36:43+00:00
> After merge. 2012-09-05T13:36:27+00:00
> The _Working-_ files have been merged with the appropriate part-of-speech. Finally the _Working-_ files have been reverted 2012-09-04T07:28:08+00:00
> The _Working-_ files have been merged with the appropriate part-of-speech. Finally the _Working-_ files have been reverted 2012-09-04T07:25:38+00:00
> A duplicate LEXICON has been removed. 2012-09-04T07:04:09+00:00
> _st_ text values have been adjusted for Adj-nachko type entries. 2012-09-02T09:43:53+00:00
> Correcting contlex values. 2012-08-31T13:41:04+00:00
> removing double definition of LEXICON. 2012-08-31T12:13:37+00:00
> In the source .lexc file enumeration there was no back-slash after the first 3 or 4 files. 2012-08-31T11:41:43+00:00
> Continuation lexica in _LEXICON Root_ have been renamed to correlate with the source files in newinfra/langs/myv/src/morphology/stems and ...morphology/affixes. 2012-08-30T16:19:53+00:00
> Adding and adjusting contlexes. 2012-08-30T15:56:24+00:00
> The fst=__exclude__ has been changed to exclude=__exclude=fst__. 2012-08-30T07:51:03+00:00
> Autoconf updates from the template. Intended goal: better hfst testing before enabling it. 2012-08-30T05:39:16+00:00
> The .xml file names have been removed as well as the .lexc result file names. 2012-08-29T14:45:41+00:00
> Converting all _myvContlex_ attributes in the xml files to the form _Contlex_. 2012-08-29T14:09:58+00:00
> Added border removal to the basic analyser and generator, such that they become useful. Also changed the order of the dir processing in src/, to ensure that the filters are built before they are needed. 2012-08-29T03:12:39+00:00
> Added border removal to the basic analyser and generator, such that they become useful. Also changed the order of the dir processing in src/, to ensure that the filters are built before they are needed. 2012-08-29T03:06:20+00:00
> Corrected syntax error. 2012-08-29T01:46:18+00:00
> Made the first test script more robust: it bails out if no transducer is found, and gives basic feedback to whether it is testing Xerox or Hfst. The test data files are not deleted after the test run, so that they can be easily inspected if needed, even after a successful test run. 2012-08-29T01:34:20+00:00
> Added the first test script: it tests whether noun lemmas do generate. The script does contain some language-specific bits, and must thus be adapted to the requirements of each language. 2012-08-29T00:17:53+00:00
> Corrected reference to inituppercase.?fst. Template update. 2012-08-28T19:34:40+00:00
> Corrected compilation of hyphenation rules. Template update. 2012-08-28T18:44:51+00:00
> Corrected compilation of phonetic/orth2ipa rules. Merge from the template. 2012-08-28T17:41:58+00:00
> Added basic structure for hyphenation and conversion to IPA. Merge from the template. 2012-08-28T05:45:14+00:00
> correcting spelling in stem. 2012-08-28T05:00:28+00:00
> Added Hunspell dir. Merge from templates. 2012-08-27T16:44:43+00:00
> Two template updates at once: 2012-08-27T15:59:31+00:00
> Added build support for xml source files. Updates from the template. 2012-08-27T07:33:38+00:00
> Listed all source files. Now things should build. 2012-08-26T18:56:29+00:00
> Changing names of xml files to lower-case and explicit. 2012-08-25T11:36:16+00:00
> Changing names of xml files to lower-case and explicit. 2012-08-25T11:21:05+00:00
> Added initial support for xml source files. NB! The support isn't fully according to GNU (autotools) standards yet, but will have to do for the moment. 2012-08-25T07:24:18+00:00
> Removing some tags. 2012-08-24T17:37:59+00:00
> A lot of cleanup and corrections: * suffix rules in more places (although not in all - that is not possible) * removed automake warning about pattern rules - we need them * checked all *-include.am files for consistency, added missing Xerox and HFST targets were needed, corrected vars to HFST tools, added comments and generally made the files easier to maintain (I hope). 2012-08-24T13:39:05+00:00
2417a2436,2455
> Removing semicolon on line 47. 2012-08-24T10:28:59+00:00
> File merging has been done. 2012-08-24T05:14:33+00:00
> File merging has been done. 2012-08-24T05:14:02+00:00
> File merging has been done. 2012-08-24T05:13:34+00:00
> Added Autoconf processing of the Makefile.am files in test/. Update from the template. 2012-08-22T18:08:58+00:00
> Updated Test dir with subdirs and make-files. Updates from the template. 2012-08-22T13:36:55+00:00
> +Ani and +Anim are now distinguished. The former means _animal name_, and the latter means _animate_. 2012-08-22T12:36:01+00:00
> Some translations are missing. The Russian version deviates from the English in that parallel terms are provided. The parallel terms are separated with _ <- _, which reveals that the source was gtsvn/kt/myv/src/tag-rus.regex. 2012-08-22T10:44:26+00:00
> There are still a few tags to work with. 2012-08-21T19:35:03+00:00
> This has been adapted to Erzya. 2012-08-21T15:25:04+00:00
> Work on POS values and fst=_exclude_. 2012-08-21T14:50:23+00:00
> This file was copied after make complained about the absence of the stem/abbr.lexc file. 2012-08-21T13:45:54+00:00
> Content has been copied from files in gtsvn/kt/myv/src . 2012-08-21T13:30:22+00:00
> Content has been inserted from POS-myv-morph.txt files in gtsvn/kt/myv/src . 2012-08-21T13:18:34+00:00
> Inserting content from gtsvn/kt/myv/src/myv-lex.txt . Unable to use _svn cp_ for copying. 2012-08-21T13:08:47+00:00
> Two examples have been added to indicate pair-test checking pattern for two of the rules. 2012-08-21T11:08:31+00:00
> This is a copy from gtsvn/kt/myv/src/twol-myv.twolc . 2012-08-21T11:00:52+00:00
> All content was copied from gtsvn/kt/myv/src/verb-myv-morph.txt . 2012-08-21T10:54:40+00:00
> Initial addition of working_file content has been added 2012-08-21T09:38:08+00:00
> LANG-dict-schemaS allow for language specific detail. _fiu_ stands for _Finno-Ugrian_. These will be modeled in the _newinfra_ 2012-08-21T06:23:07+00:00
2419a2458
> Changing schemaLocation to language specific with fiu-dict-schema.xsd included in myv-dict-schema.xsd. 2012-08-21T06:08:09+00:00
2420a2460,2461
> Adding tCtn element 2012-08-17T07:08:02+00:00
> Adding pos PRC for conversion from PTC 2012-08-15T10:30:10+00:00
2422a2464
> Changing according to Vodyasova, with the exception of case names 2012-08-14T07:35:12+00:00
2423a2466,2467
> Removing tags of the type _+Temp-1Arg_, whereas +Po+Temp will suffice 2012-08-13T08:32:21+00:00
> Ready to a new commit to the Russian-language morphological parser of Erzya 2012-08-13T08:31:05+00:00
2425a2470,2471
> Addjusting TAG: +Pred >> +Der/Pr 2012-08-10T13:11:47+00:00
> Adjusting more translations 2012-08-10T12:56:42+00:00
2427a2474
> Working with Sort 2012-08-10T10:49:06+00:00
2428a2476,2477
> Adding _contlex tag_ for _Qnt-kudo_ 2012-08-10T10:48:28+00:00
> Adding _contlex tag_ for _Qnt-kudo_ 2012-08-10T10:47:58+00:00
2430a2480
> Adding necessary _%_ before _-_ in combination _/-_ >> _%+Use/%-Spell_ 2012-08-10T10:47:00+00:00
2431a2482,2483
> Making further adjustments to the _+TAG_ marking 2012-08-10T10:09:31+00:00
> Adding _+TAGS_ and beginning translation 2012-08-09T16:07:21+00:00
2433a2486
> Continuing reduction of _+TAGS_ 2012-08-09T14:28:38+00:00
2434a2488,2489
> Reducing the number of _+TAGS_ 2012-08-09T12:34:17+00:00
> Adjusting _+TAGS_ for anological alignment with work on gt/sma 2012-08-09T10:36:59+00:00
2436a2492,2493
> Adapting to Erzya 2012-08-08T09:47:44+00:00
> This list was made by: - Taking all tags from Multichar_Symbols in myv-lex.txt - running them through the transducer made from tag-rus.regex 2012-08-08T09:00:44+00:00
2438a2496
> Removed doublet multichar symbol definition. 2012-08-08T08:47:15+00:00
2439a2498,2499
> Adding entries 2012-08-08T05:35:57+00:00
> Flags 2012-08-08T05:35:30+00:00
2441a2502
> Flags 2012-08-08T05:35:15+00:00
2442a2504,2505
> Particles in verbs 2012-08-08T05:34:28+00:00
> Particles in verbs 2012-08-08T05:34:10+00:00
2444a2508
> Particles in verbs 2012-08-08T05:33:49+00:00
2445a2510,2511
> Standardizing lexc in Flags. The xfst compiler gives a warning _*** Warning: Label @U.CONJ-INF.NO@:@U.CONJ-MX.CONJ@ is illegal: flag diacritics on both sides of the symbol pair._ 2012-08-07T08:56:37+00:00
> Converting to standard lexc 2012-08-07T06:18:28+00:00
2447a2514,2515
> Completing work with standard lexc in verbs 2012-08-06T18:41:59+00:00
> Don't rely on Foma for lexc compilation anymore, and be explicit about the transducer format. 2012-08-06T10:04:49+00:00
2449a2518
> Adding PROP LEXICON 2012-08-06T09:03:12+00:00
2450a2520,2521
> Changed HFST compilation of MYV to not depend on FOMA. This could make lexc compilation slower, but at the present size that is no issue. Using the hfst-native lexc compiler, several syntax errors are found, which are all ignored by Xfst and Foma. It might be that hfst-lexc is wrong (i.e. has a bug), but it might also be that Xfst (and thus Foma) is more forgiving in some cases. Further investigation is needed. 2012-08-03T08:50:17+00:00
> Correcting error where contlex mentioned but no defined 2012-07-31T10:25:30+00:00
2452a2524
> work in MOrdovia 2012-07-31T09:41:36+00:00
2453a2526,2527
> minor adaptations 2012-06-28T16:48:00+00:00
> To begin with these animate names consist of deities an mythological personages 2012-06-28T16:47:26+00:00
2455a2530
> erzContlex adaptations 2012-06-28T16:41:43+00:00
2456a2532,2533
> removing Komi elements 2012-06-28T16:40:09+00:00
> Making individual alterations to contlex 2012-06-27T08:07:03+00:00
2458a2536,2537
> Extending quantifiers 2012-06-27T08:06:29+00:00
> working with contlex in postpositions 2012-06-27T08:05:47+00:00
2460a2540
> Dealing with _тона_ and _весеме_ 2012-06-27T08:04:25+00:00
2461a2542,2543
> Making _молемеде_ and _косо-бути_ possible 2012-06-27T08:03:02+00:00
> +Sc1Sg types have been converted to ScSg1 types 2012-06-21T15:09:10+00:00
2463a2546
> Changing PROP contlex for easier use in XML EDITOR 2012-06-21T14:57:16+00:00
2464a2548,2549
> Finishing Oc1Sg type to OcSg1 type conversion 2012-06-21T14:14:47+00:00
> Converting Px1Sg types to PxSg1 types. Also Sc1Sg to ScSg1 and Oc1Sg to OcSg1 2012-06-21T14:08:15+00:00
2468a2554
> converting simple space to tab 2012-05-26T13:32:54+00:00
2469a2556,2557
> specifying a noun 2012-05-23T10:52:48+00:00
> Removing multiple-tag strategies and reordering 2012-05-23T10:51:22+00:00
2471a2560
> Removing multiple-tag strategies and reordering 2012-05-23T10:51:06+00:00
2472a2562,2563
> Removing multiple-tag strategies and reordering 2012-05-23T10:50:51+00:00
> Removing multiple-tag strategies 2012-05-23T10:49:46+00:00
2474a2566
> Reordering tags: POS + NB Case Decl 2012-05-23T09:25:36+00:00
2475a2568,2569
> Reordering tags: POS + NB Case Decl 2012-05-23T09:22:18+00:00
> Adding Khanty kcaContlex 2012-05-21T18:04:02+00:00
2477a2572
> Updating to N-PATTERN contlex 2012-05-19T13:07:52+00:00
2478a2574,2575
> Updating to N-PATTERN contlex 2012-05-19T13:07:05+00:00
> Updating to N-PATTERN contlex 2012-05-19T13:06:52+00:00
2480a2578
> Updating to N-PATTERN contlex 2012-05-19T13:06:32+00:00
2481a2580,2581
> Updating to N-PATTERN contlex 2012-05-19T13:06:20+00:00
> Updating to N-PATTERN contlex 2012-05-19T13:06:01+00:00
2483a2584,2585
> Updating to N-PATTERN contlex 2012-05-19T13:05:35+00:00
> Updating to N-PATTERN contlex 2012-05-19T13:05:18+00:00
2485a2588
> Updating to N-PATTERN contlex 2012-05-19T13:05:04+00:00
2486a2590,2591
> Updating to N-PATTERN contlex 2012-05-19T13:04:54+00:00
> Adding extra attribute values to cope with Komi. 2012-05-18T13:48:58+00:00
2488a2594
> Corrections made to language name 2012-05-09T14:00:31+00:00
2489a2596,2597
> Corrections made to language name 2012-05-09T14:00:21+00:00
> Adapting for Hill Mari 2012-05-09T05:40:25+00:00
2491a2600
> Small adjustment for Veps 2012-05-06T17:51:56+00:00
2492a2602,2603
> Working with flags up to 80% 2012-05-06T17:50:54+00:00
> single entry 2012-05-06T17:50:01+00:00
2494a2606,2607
> Removing duplicate entries 2012-05-06T17:49:17+00:00
> Removing duplicate entries 2012-05-06T17:48:48+00:00
2496a2610
> working on serial verbs 2012-05-05T14:56:02+00:00
2497a2612,2613
> working on serial verbs 2012-05-05T14:55:45+00:00
> working on serial verbs 2012-05-05T14:55:28+00:00
2499a2616
> working on serial verbs 2012-05-05T14:55:15+00:00
2500a2618,2619
> Correcting continuation lexica so that +Nom+Pl+Px... and +Gen+..+Px do not take plural marking in _T_; There is no plural marker following possessor indices 2012-05-03T09:03:11+00:00
> The first appr. 1050 of possible noun inflexion 2012-05-03T08:16:53+00:00
2502a2622
> Dealing with abessive case 2012-05-03T08:14:49+00:00
2503a2624,2625
> Working with some Veps. 2012-04-30T09:27:29+00:00
> Working with MWN inflections 2012-04-30T08:53:15+00:00
2505a2628,2629
> responding to questions for minimized conflict 2012-04-30T05:49:05+00:00
> comments wrt the merging task 2012-04-29T22:00:47+00:00
2507a2632
> added todo issue discussed with Jack couple of days ago 2012-04-29T21:47:52+00:00
2508a2634,2635
> indenting xml structure to get a rough idea of it 2012-04-29T21:41:44+00:00
> Added -f foma to force hfst to use the foma compilation. This avoids problems with parsing xfst regex expressions in lexc files. 2012-04-25T11:44:06+00:00
2510a2638
> The file is not executable, and linefeeds should be native. 2012-04-25T11:38:58+00:00
2511a2640,2641
> Updating list to correspond to generation and analysis 2012-04-25T10:05:03+00:00
> Adding +Pred tag to verbs 2012-04-25T09:13:55+00:00
2513a2644
> small change 2012-04-25T09:12:32+00:00
2514a2646,2647
> Adding +Pred tag to verbs 2012-04-25T09:11:49+00:00
> Changing +Imp to +Imprt to comply with practice at gtsvn. 2012-04-25T09:10:40+00:00
2516a2650,2651
> Test 0 - Passes: 255, Fails: 2, Total: 257, Test 1 - Passes: 528, Fails: 0, Total: 528 2012-04-25T06:17:48+00:00
> No failures in either Verb test. Adj and Noun do not seem to work 2012-04-24T18:47:00+00:00
2518a2654
> Adjusting for Test 0 - Passes: 879, Fails: 0, Total: 879, Test 1 - Passes: 2463, Fails: 0, Total: 2463 2012-04-24T18:45:24+00:00
2519a2656,2657
> Test 1: Verb - марямс (Surface/Analysis) 2012-04-24T17:25:48+00:00
> There are still multiple form derived that are not dealt with here 2012-04-24T17:24:52+00:00
2521a2660
> Correcting tags 2012-04-24T14:19:29+00:00
2522a2662,2663
> Work in consolidation of Contlex and yaml testing 2012-04-24T14:14:44+00:00
> Correcting tags 2012-04-24T14:12:37+00:00
2524a2666
> Whitespace changes to make the code readable and debuggable. 2012-04-24T11:14:12+00:00
2525a2668,2669
> Replaced LexC regular expressions with the equivalent plain LexC code, to work around HFST parser errors. 2012-04-24T10:42:22+00:00
> Removing arrow brackets from around FLAG with no other info 2012-04-24T09:43:55+00:00
2527a2672,2673
> More corrections to tags 2012-04-24T09:35:28+00:00
> Corrections for tags 2012-04-24T09:29:59+00:00
2529a2676
> Consolidation 2012-04-24T09:29:17+00:00
2530a2678,2679
> Adding required +TAGS and removing nano-likelihood word forms in +Tra 2012-04-23T09:47:31+00:00
> Comparing results of speller with Bryzhinski text 2012-04-23T04:48:45+00:00
2532a2682
> Correcting O1:ye and O1:o rules to accept +Inf+Abl variants. 2012-04-23T04:37:41+00:00
2533a2684,2685
> Changing erzContlex values 2012-04-23T04:36:17+00:00
> Working with words and word forms in Bryzhinski: Kirdazht 2012-04-21T08:31:26+00:00
2535a2688
> Addressing O1K3 and j:0 2012-04-21T08:30:13+00:00
2536a2690,2691
> Continuing consolidation of lexica 2012-04-20T11:39:26+00:00
> Continuing consolidation of lexica 2012-04-20T11:39:08+00:00
2538a2694,2695
> Continuing consolidation of lexica 2012-04-20T11:38:55+00:00
> Continuing consolidation of lexica 2012-04-20T11:38:41+00:00
2540a2698
> Consolidation and Bahuvrihi 2012-04-20T06:49:11+00:00
2541a2700,2701
> Consolidation and Bahuvrihi 2012-04-20T06:48:51+00:00
> Consolidation 2012-04-20T06:37:03+00:00
2543a2704
> Consolidation 2012-04-20T06:35:03+00:00
2544a2706,2707
> Consolidation 2012-04-20T06:34:41+00:00
> Consolidation 2012-04-20T06:34:22+00:00
2546a2710
> Consolidation 2012-04-20T06:34:10+00:00
2547a2712,2713
> Consolidation 2012-04-20T06:33:55+00:00
> Consolidation 2012-04-20T06:33:41+00:00
2549a2716,2717
> Consolidation. Placing restriction on %>VLoss 2012-04-20T06:33:21+00:00
> Consolidation 2012-04-20T06:31:15+00:00
2551a2720
> minor change 2012-04-19T13:52:53+00:00
2552a2722,2723
> Correcting continuation lexicon 2012-04-19T13:52:24+00:00
> Adding ObjAll to verbs that take objects 2012-04-19T13:50:27+00:00
2554a2726
> Showing the existence of PHRASE-N_myv-lex.xml and PHRASE-V_myv-lex.xml 2012-04-19T11:14:46+00:00
2555a2728,2729
> sorting verb entries 2012-04-19T10:52:13+00:00
> Establishing mwe for N 2012-04-19T10:51:33+00:00
2557a2732
> Removing +VLoss 2012-04-19T08:55:28+00:00
2558a2734,2735
> Removing +VLoss 2012-04-19T08:55:13+00:00
> Removing +VLoss 2012-04-19T08:55:00+00:00
2560a2738
> Adapting 2012-04-18T14:46:09+00:00
2561a2740,2741
> Adapting 2012-04-18T14:45:50+00:00
> Adapting 2012-04-18T14:45:36+00:00
2563a2744
> Consolidation 2012-04-18T14:44:55+00:00
2564a2746,2747
> Consolidation 2012-04-18T14:44:43+00:00
> Consolidation 2012-04-18T14:44:29+00:00
2566a2750
> Consolidation 2012-04-18T14:44:17+00:00
2567a2752,2753
> Consolidating of more deriration continuation lexica. 2012-04-18T12:18:07+00:00
> Consolidating of more deriration continuation lexica. 2012-04-18T12:17:55+00:00
2569a2756
> removing duplicity 2012-04-18T09:44:34+00:00
2570a2758,2759
> Consolidating some Px marking. 2012-04-18T09:43:23+00:00
> Correcting +Px... tags 2012-04-18T07:36:27+00:00
2572a2762,2763
> Correcting 6 tags 2012-04-18T07:22:36+00:00
> reassigning one indefinite pronoun. 2012-04-18T06:08:07+00:00
2574a2766
> Adding Finnish 2012-04-17T20:20:13+00:00
2575a2768,2769
> Adapting to mutual tagging 2012-04-17T20:19:37+00:00
> Adapting to mutual tagging 2012-04-17T20:19:20+00:00
2577a2772
> Adapting to mutual tagging 2012-04-17T20:19:10+00:00
2578a2774,2775
> Adapting to mutual tagging 2012-04-17T20:19:02+00:00
> Adapting to mutual tagging 2012-04-17T20:18:42+00:00
2580a2778
> Adapting to mutual tagging 2012-04-17T20:18:23+00:00
2581a2780,2781
> slightly better. 2012-04-17T14:07:38+00:00
> adding some POS and erzContlex 2012-04-17T13:02:48+00:00
2583a2784,2785
> Introducing an idea for POS values when an indefinite case form is used as a modifier in the NP. _N.GEN_ means that the genitive form is derived from a noun. This will help in syntax and CG. 2012-04-17T13:02:06+00:00
> Removing doubles 2012-04-17T12:46:47+00:00
2585a2788
> Removing doubles 2012-04-17T12:46:34+00:00
2586a2790,2791
> Moving out of N_ 2012-04-17T12:45:55+00:00
> Working with more Finn in small POS. 2012-04-17T12:45:07+00:00
2588a2794
> Working with more Finn in small POS. 2012-04-17T12:44:54+00:00
2589a2796,2797
> Working with more Finn in small POS. 2012-04-17T12:44:42+00:00
> Working with more Finn in small POS. 2012-04-17T12:44:03+00:00
2591a2800
> Working with more Finn in small POS. 2012-04-17T12:43:41+00:00
2592a2802,2803
> Working with more Finn in small POS. 2012-04-17T12:43:29+00:00
> Working with more Finn in small POS. 2012-04-17T12:43:16+00:00
2594a2806,2807
> Working with more Finn in small POS. 2012-04-17T12:43:04+00:00
> Working with more Finn in small POS. 2012-04-17T12:42:46+00:00
2596a2810
> Working with more Finn in small POS. 2012-04-17T12:42:31+00:00
2597a2812,2813
> Working with more Finn in small POS. 2012-04-17T12:42:15+00:00
> Slight modifications 2012-04-17T09:18:49+00:00
2599a2816
> Slight modifications 2012-04-17T09:18:36+00:00
2600a2818,2819
> Working with Finnish translations in minor POS. 2012-04-17T09:17:09+00:00
> Working with Finnish translations in minor POS. 2012-04-17T09:16:56+00:00
2602a2822
> Working with Finnish translations in minor POS. 2012-04-17T09:16:35+00:00
2603a2824,2825
> Working with Finnish translations in minor POS. 2012-04-17T09:16:23+00:00
> Working with Finnish translations in minor POS. 2012-04-17T09:16:08+00:00
2605a2828,2829
> Working with Finnish translations in minor POS. 2012-04-17T09:15:53+00:00
> Working with Finnish translations in minor POS. 2012-04-17T09:15:41+00:00
2607a2832
> Working with Finnish translations in minor POS. 2012-04-17T09:15:27+00:00
2608a2834,2835
> Cleaning up nouns so there are no double entries. 2012-04-17T09:13:54+00:00
> Introducing Bahuvrihi. 2012-04-17T09:12:55+00:00
2610a2838
> Introducing Bahuvrihi. 2012-04-17T09:12:28+00:00
2611a2840,2841
> This is a set of Erzya nouns with Finnish translations. For each _entry_ element in _AddTgFin2N_MyvLexXml.xml_ there is an _entry_ element in working_files/N_myv-lex.xml. It should be simple to make a python script (1) to match the entries, (2) to insert the _tg_ element after _entry/e/mg[1]/m_. 2012-04-17T08:46:04+00:00
> Moving word articles to their correct POS documents. 2012-04-17T05:34:25+00:00
2613a2844
> Moving word articles to their correct POS documents. 2012-04-17T05:34:07+00:00
2614a2846,2847
> Replacing lost end of document 2012-04-17T05:02:19+00:00
> Reducing Working files to complimentary distribution 2012-04-16T15:31:57+00:00
2616a2850,2851
> Reducing Working files to complimentary distribution 2012-04-16T15:31:33+00:00
> Reducing content to complimentary level. This cannot be done with N and V . 2012-04-16T14:12:07+00:00
2618a2854
> Still incomplete. +Person-Number is a problem 2012-04-14T21:40:20+00:00
2619a2856,2857
> Still incomplete. +Person-Number is a problem 2012-04-14T21:40:06+00:00
> Still working on tag correlation. 2012-04-14T21:23:40+00:00
2621a2860
> Derivation marking +Der/MWN followed by +N 2012-04-14T21:12:42+00:00
2622a2862,2863
> Derivation marking +Der/MWN followed by +N 2012-04-14T21:12:16+00:00
> Making +Def.Sg into +Def+Sg 2012-04-14T18:28:16+00:00
2624a2866
> Making +DefSg into +Def+Sg 2012-04-14T18:27:47+00:00
2625a2868,2869
> Making +DefSg into +Def+Sg 2012-04-14T18:25:40+00:00
> Working on correlation between output and testing/myv-test.yaml 2012-04-14T18:18:58+00:00
2627a2872,2873
> Working on correlation between output and testing/myv-test.yaml 2012-04-14T18:18:23+00:00
> Working on correlation between output and testing/myv-test.yaml 2012-04-14T18:18:10+00:00
2629a2876
> Working on correlation between output and testing/myv-test.yaml 2012-04-14T18:17:58+00:00
2630a2878,2879
> correcting +Sg and +Pl tags 2012-04-14T17:55:20+00:00
> Adding tags for +Sc.. and +Oc.. 2012-04-14T17:54:37+00:00
2632a2882
> Converting to +Sc... 2012-04-14T17:18:09+00:00
2633a2884,2885
> there are problems with myv-tests.yaml on lines 204, 267, 307, 319 and 338. 2012-04-14T10:54:17+00:00
> Adpating to myv 2012-04-14T10:52:51+00:00
2635a2888
> This is Erzya yaml without NbAmb and Default tags. It is nearly twice the size. 2012-04-14T10:40:35+00:00
2636a2890,2891
> Paradigm, perhaps? 2012-04-13T22:29:46+00:00
> Adding on contlex 2012-04-13T21:30:58+00:00
2638a2894,2895
> Correcting contlex values 2012-04-13T20:22:36+00:00
> Reducing the duplicity of verbs ending in кшнемс and кшнэмс 2012-04-13T16:55:33+00:00
2640a2898
> Adding constraint that removes excess white space. 2012-04-13T16:18:08+00:00
2641a2900,2901
> Beginning to adapt tags in res 2012-04-13T16:16:47+00:00
> Beginning to adapt tags in testing 2012-04-13T16:16:23+00:00
2643a2904
> Converting morphological tagging to something appropriate to syntax work with CG. 2012-04-13T16:15:29+00:00
2644a2906,2907
> Providing actual names of scripts and source files 2012-04-13T07:40:42+00:00
> modifying to correlate with java script in 2. transformation 2012-04-13T07:40:01+00:00
2646a2910
> adding more parts of speech to the output. 2012-04-13T06:59:35+00:00
2647a2912,2913
> Continuation lexica with mnemonic letter combinations or actual word forms for paradigm association are quite good. If we use XML Editor, however, alphabetical order plays a role of its own, and therefore we should have continuation lexica POS-WORDFORM. This change has been made for verbs. 2012-04-12T20:10:18+00:00
> Continuation lexica with mnemonic letter combinations or actual word forms for paradigm association are quite good. If we use XML Editor, however, alphabetical order plays a role of its own, and therefore we should have continuation lexica POS-WORDFORM. This change has been made for verbs. 2012-04-12T20:10:01+00:00
2649a2916
> Continuation lexica with mnemonic letter combinations or actual word forms for paradigm association are quite good. If we use XML Editor, however, alphabetical order plays a role of its own, and therefore we should have continuation lexica POS-WORDFORM. This change has been made for verbs. 2012-04-12T20:09:48+00:00
2650a2918,2919
> Continuation lexica with mnemonic letter combinations or actual word forms for paradigm association are quite good. If we use XML Editor, however, alphabetical order plays a role of its own, and therefore we should have continuation lexica POS-WORDFORM. This change has been made for verbs. 2012-04-12T20:09:34+00:00
> Continuation lexica with mnemonic letter combinations or actual word forms for paradigm association are quite good. If we use XML Editor, however, alphabetical order plays a role of its own, and therefore we should have continuation lexica POS-WORDFORM. This change has been made for verbs. 2012-04-12T20:09:18+00:00
2652a2922
> Making a small adaptation for the Moksha-Finnish dictionary. 2012-04-12T18:43:53+00:00
2653a2924,2925
> This is an initial adpatation for Erzya 2012-04-10T04:50:20+00:00
> Continued unification work on continuation lexica 2012-04-10T04:38:06+00:00
2655a2928
> Continued unification work on continuation lexica 2012-04-10T04:37:54+00:00
2656a2930,2931
> Continued unification work on continuation lexica 2012-04-10T04:37:38+00:00
> Adding continuation lexica 2012-04-07T17:51:32+00:00
2658a2934
> working around pronouns with flags for each person 2012-04-07T17:50:19+00:00
2659a2936,2937
> working around pronouns with flags for each person 2012-04-07T17:50:05+00:00
> working around pronouns with flags for each person 2012-04-07T17:49:51+00:00
2661a2940,2941
> working around pronouns with flags for each person 2012-04-07T17:49:39+00:00
> working around pronouns with flags for each person 2012-04-07T17:49:26+00:00
2663a2944
> Working on deverbal derivations and words from Mikhail Bryzhinskis _Kirdazht_. 2012-04-07T11:19:29+00:00
2664a2946,2947
> Now it is possible to generate Vowel loss and T loss such as that found in _чувтнэ_ 2012-04-07T11:18:51+00:00
> Now it is possible to generate Vowel loss and T loss such as that found in _чувтнэ_ 2012-04-07T11:17:17+00:00
2666a2950
> Working on deverbal derivations and words from Mikhail Bryzhinskis _Kirdazht_. 2012-04-07T10:10:52+00:00
2667a2952,2953
> Working on deverbal derivations and words from Mikhail Bryzhinskis _Kirdazht_. 2012-04-07T10:10:38+00:00
> Working on deverbal derivations and words from Mikhail Bryzhinskis _Kirdazht_. 2012-04-07T10:10:18+00:00
2669a2956
> Working on deverbal derivations and words from Mikhail Bryzhinskis _Kirdazht_. 2012-04-07T10:10:02+00:00
2670a2958,2959
> Working on deverbal derivations and words from Mikhail Bryzhinskis _Kirdazht_. 2012-04-07T10:09:45+00:00
> Working on deverbal derivations 2012-04-07T10:08:58+00:00
2672a2962,2963
> Working on deverbal derivations 2012-04-07T10:08:39+00:00
> Making alteration to all DefPl- continuation lexica. %> passed one segment earlier to allow for pango-N in, e.g., chuvtU2>VLosstne 2012-04-06T15:47:55+00:00
2674a2966
> Suggesting default errors that might cope with dialect forms 2012-04-06T15:07:21+00:00
2675a2968,2969
> Working with +ConNeg and +Clt 2012-04-06T15:01:52+00:00
> Working on vowel harmony realization of O1:ye 2012-04-06T14:29:03+00:00
2677a2972
> Coping with pango-N and VLoss 2012-04-06T14:27:57+00:00
2678a2974,2975
> Working on d:t. Fixed. 2012-04-06T07:08:52+00:00
> Correcting problems with tne for ozks>tne 2012-04-05T22:27:05+00:00
2680a2978
> Correcting for иезэнзэ in O1:e. 2012-04-05T22:06:47+00:00
2681a2980,2981
> Working with plural definite marking and separating morphemes, where necessary, with _%>_ to make the twol rules work. 2012-04-05T21:48:13+00:00
> Working with plural definite marking and separating morphemes, where necessary, with _%>_ to make the twol rules work. 2012-04-05T21:47:56+00:00
2683a2984,2985
> Cleaning out LEXICA 2012-04-05T16:49:56+00:00
> Working out lembe and pango type stems 2012-04-05T16:49:22+00:00
2685a2988
> Working out lembe and pango type stems 2012-04-05T16:49:06+00:00
2686a2990,2991
> Introducing work vocabularies that are not included in the Erzya dictionary. 2012-04-05T13:25:56+00:00
> Work continuation lexica 2012-04-05T13:25:13+00:00
2688a2994
> Doing correlation work on twol and continuation lexica 2012-04-05T13:23:33+00:00
2689a2996,2997
> Doing correlation work on twol and continuation lexica 2012-04-05T13:23:22+00:00
> Doing correlation work on twol and continuation lexica 2012-04-05T13:23:09+00:00
2691a3000
> Introducing work vocabularies that are not included in the Erzya dictionary. 2012-04-05T13:20:51+00:00
2692a3002,3003
> Introducing work vocabularies that are not included in the Erzya dictionary. 2012-04-05T13:20:28+00:00
> Introducing work vocabularies that are not included in the Erzya dictionary. 2012-04-05T13:20:13+00:00
2694a3006,3007
> Introducing work vocabularies that are not included in the Erzya dictionary. 2012-04-05T13:19:20+00:00
> Working with umyv and voikko for locating frequency and word forms. 2012-04-04T13:06:42+00:00
2696a3010
> Working with umyv and voikko for locating frequency and word forms. 2012-04-04T13:06:00+00:00
2697a3012,3013
> Working with umyv and voikko for locating frequency and word forms. 2012-04-04T13:05:45+00:00
> Working with umyv and voikko for locating frequency and word forms. 2012-04-04T13:05:31+00:00
2699a3016
> Working with umyv and voikko for locating frequency and word forms. 2012-04-04T13:05:18+00:00
2700a3018,3019
> Working with umyv and voikko for locating frequency and word forms. 2012-04-04T13:05:03+00:00
> Working with umyv and voikko for locating frequency and word forms. 2012-04-04T13:04:39+00:00
2702a3022
> Working with umyv and voikko for locating frequency and word forms. 2012-04-04T13:04:25+00:00
2703a3024,3025
> Working with umyv and voikko for locating frequency and word forms. 2012-04-04T13:04:10+00:00
> Working with umyv and voikko for locating frequency and word forms. 2012-04-04T13:03:58+00:00
2705a3028,3029
> Working with umyv and voikko for locating frequency and word forms. 2012-04-04T13:03:40+00:00
> Working with umyv and voikko for locating frequency and word forms. 2012-04-04T13:03:29+00:00
2707a3032
> Working with umyv and voikko for locating frequency and word forms. 2012-04-04T13:03:18+00:00
2708a3034,3035
> Working with umyv and voikko for locating frequency and word forms. 2012-04-04T13:03:06+00:00
> Working with umyv and voikko for locating frequency and word forms. 2012-04-04T13:02:55+00:00
2710a3038
> Working with umyv and voikko for locating frequency and word forms. 2012-04-04T13:02:43+00:00
2711a3040,3041
> Working with isaType 2012-04-04T09:48:52+00:00
> These are still the Komi files. 2012-04-04T08:51:47+00:00
2713a3044,3045
> For paradigm testing. 2012-04-04T08:45:37+00:00
> Testing myv, not kom. 2012-04-04T08:41:26+00:00
2716a3049
> This is Erzya, not Komi. 2012-04-04T07:51:09+00:00
2717a3051,3052
> Working version files for Komi and Erzya. 2012-04-04T07:49:33+00:00
> Basic dirs and files for speller compilation. Copied from Komi. 2012-04-04T07:47:55+00:00
2719a3055
> Moved the temporary lexc file "$(GTLANG)-lex-xmlsrc.txt" to the tmp directory (out of src/), to keep the src/ dir cleaner. 2012-04-04T07:36:14+00:00
2720a3057,3058
> Better cleaning. 2012-04-04T07:35:04+00:00
> Better cleaning. 2012-04-04T07:34:50+00:00
2722a3061
> Replaced the "translate" function (which is similar to the *nix "tr" function) with the "replace" function, which replaces a pattern with a string, and which is what we need. Now stems and lemmas containing spaces are correctly converted to LexC. 2012-04-04T07:25:54+00:00
2723a3063,3064
> Trying to cope with white space in stem and lemma values 2012-04-04T07:01:06+00:00
> Trying to cope with white space in stem and lemma values 2012-04-04T07:00:57+00:00
2725a3067
> Fixed intersecting-composition of twolc rules and lexical transducer - must be done using the lexc tool. 2012-04-04T05:52:52+00:00
2727a3070,3071
> working with tag values 2012-04-03T21:54:29+00:00
> working with tag values 2012-04-03T21:54:16+00:00
2729a3074,3075
> working with tag values 2012-04-03T21:53:59+00:00
> working with tag values 2012-04-03T21:53:46+00:00
2731a3078
> working with tag values 2012-04-03T21:53:35+00:00
2732a3080,3081
> working with tag values 2012-04-03T21:53:18+00:00
> Removing more duplicates 2012-04-03T21:33:25+00:00
2734a3084
> Removing more duplicates 2012-04-03T21:33:09+00:00
2735a3086,3087
> Removing more duplicates 2012-04-03T21:32:55+00:00
> I have removed this Document 2012-04-03T21:18:50+00:00
2737a3090
> I have removed this Document 2012-04-03T21:18:39+00:00
2738a3092,3093
> I have removed this Document 2012-04-03T21:18:26+00:00
> I have removed this Document 2012-04-03T21:18:17+00:00
2740a3096
> I have removed this Document 2012-04-03T21:18:05+00:00
2741a3098,3099
> I have removed this Document 2012-04-03T21:17:54+00:00
> I have removed this Document 2012-04-03T21:17:41+00:00
2743a3102
> I have removed this Document 2012-04-03T21:17:31+00:00
2744a3104,3105
> I have removed this Document 2012-04-03T21:17:21+00:00
> I have removed this Document 2012-04-03T21:17:10+00:00
2746a3108
> I have removed this Document 2012-04-03T21:16:52+00:00
2747a3110,3111
> I have removed this Document 2012-04-03T21:16:38+00:00
> I have removed this Document 2012-04-03T21:16:27+00:00
2749a3114
> I have removed this Document 2012-04-03T21:16:15+00:00
2750a3116,3117
> I have removed this Document 2012-04-03T21:16:04+00:00
> I have removed this Document 2012-04-03T21:15:52+00:00
2752a3120,3121
> I have removed this Document 2012-04-03T21:15:33+00:00
> I have removed this Document 2012-04-03T21:15:19+00:00
2754a3124
> I have removed this Document 2012-04-03T21:15:07+00:00
2755a3126,3127
> I have removed this Document 2012-04-03T21:14:56+00:00
> I have removed this Document 2012-04-03T21:14:42+00:00
2757a3130
> I have removed this Document 2012-04-03T21:14:30+00:00
2758a3132,3133
> I have removed this Document 2012-04-03T21:14:19+00:00
> I have removed this Document 2012-04-03T21:14:03+00:00
2760a3136
> I have removed this Document 2012-04-03T21:13:47+00:00
2761a3138,3139
> I have removed this Document 2012-04-03T21:13:35+00:00
> I have removed this Document 2012-04-03T21:13:24+00:00
2763a3142,3143
> I have removed this Document 2012-04-03T21:12:14+00:00
> I have removed this Document 2012-04-03T21:12:01+00:00
2765a3146
> I have removed this Document 2012-04-03T21:09:18+00:00
2766a3148,3149
> I have removed this Document 2012-04-03T21:09:09+00:00
> I have removed this Document 2012-04-03T21:08:55+00:00
2768a3152
> I have removed this Document 2012-04-03T21:08:41+00:00
2769a3154,3155
> I have removed this Document 2012-04-03T21:08:15+00:00
> Dealing with duplicate LEXICA 2012-04-03T21:03:58+00:00
2771a3158
> Adjusting before deletion 2012-04-03T20:40:35+00:00
2796a3184,3185
> Correcting tags 2012-04-03T19:30:00+00:00
> Correcting tags 2012-04-03T19:29:48+00:00
2798a3188,3189
> Correcting erzContlex 2012-04-03T19:28:36+00:00
> Cleaning up more duplicate LEXICA 2012-04-03T19:26:38+00:00
2800a3192
> Cleaning up more duplicate LEXICA 2012-04-03T19:26:27+00:00
2801a3194,3195
> Cleaning up double LEXICA. More work needed. 2012-04-03T17:19:35+00:00
> Cleaning up double LEXICA. More work needed. 2012-04-03T17:19:16+00:00
2803a3198
> Cleaning up double LEXICA. More work needed. 2012-04-03T17:19:01+00:00
2804a3200,3201
> Cleaning up double LEXICA. More work needed. 2012-04-03T17:18:48+00:00
> Cleaning up double LEXICA. More work needed. 2012-04-03T17:18:33+00:00
2806a3204
> xerox-compilation 2012-04-03T14:09:49+00:00
2807a3206,3207
> Still error msg. make: *** No rule to make target ../bin/myv-lex.save'. 2012-04-03T14:03:13+00:00
> mainly erzContlex corrections 2012-04-03T13:58:54+00:00
2809a3210,3211
> mainly erzContlex corrections 2012-04-03T13:58:32+00:00
> mainly erzContlex corrections 2012-04-03T13:57:48+00:00
2811a3214
> mainly erzContlex corrections 2012-04-03T13:57:39+00:00
2812a3216,3217
> mainly erzContlex corrections 2012-04-03T13:57:30+00:00
> mainly erzContlex corrections 2012-04-03T13:57:19+00:00
2814a3220
> mainly erzContlex corrections 2012-04-03T13:56:59+00:00
2815a3222,3223
> mainly erzContlex corrections 2012-04-03T13:56:26+00:00
> mainly erzContlex corrections 2012-04-03T13:56:15+00:00
2817a3226
> mainly erzContlex corrections 2012-04-03T13:56:02+00:00
2818a3228,3229
> Cleaning up a little 2012-04-03T13:55:34+00:00
> Remove the language-specific twolc target. It does not match any actual source files (all twolc sources end in *.twolc and are covered by another target). 2012-04-03T12:34:52+00:00
2820a3232,3233
> i po-russkij tozhe. 2012-04-03T10:56:13+00:00
> Changes and updates, now we have a running xerox-compiled erzya fst. 2012-04-03T10:55:56+00:00
2822a3236
> icentical to the .twolc file. 2012-04-03T10:55:27+00:00
2823a3238,3239
> casing 2012-04-03T10:54:56+00:00
> Note!!! 2012-04-03T10:54:38+00:00
2825a3242
> No num- file, comment in if a num file is checked in. 2012-04-03T10:20:13+00:00
2826a3244,3245
> Working on erzContlex 2012-04-03T07:18:02+00:00
> Working on +TAGS 2012-04-03T07:16:50+00:00
2828a3248
> Working on +TAGS 2012-04-03T07:16:36+00:00
2829a3250,3251
> Working on erzContlex 2012-04-03T07:15:54+00:00
> Working on erzContlex 2012-04-03T07:15:34+00:00
2831a3254,3255
> Working on erzContlex 2012-04-03T07:15:18+00:00
> Working on erzContlex 2012-04-03T07:14:41+00:00
2833a3258
> Working on erzContlex 2012-04-03T07:14:24+00:00
2834a3260,3261
> Working on erzContlex 2012-04-03T07:09:54+00:00
> Working on erzContlex 2012-04-03T07:09:41+00:00
2836a3264
> Working on erzContlex 2012-04-03T07:09:27+00:00