-
Notifications
You must be signed in to change notification settings - Fork 1
/
kal.diff
2046 lines (2046 loc) · 97 KB
/
kal.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
2180c2180
< tilføjelse af de linjer, der ved en fejl blev slettet med commit 2ab2725 2020-05-14T14:33:13-02:00
---
> tilføjelse af de linjer, der ved en fejl blev slettet med commit a8b5419 2020-05-14T14:33:13-02:00
2299c2299
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@190171 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2020-04-23T17:46:18+00:00
---
> 2020-04-23T17:46:18+00:00
2328d2327
< kal-analyse etc. får svnignore. 2020-04-19T10:02:38+00:00
2436c2435
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@188970 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2020-03-30T14:21:25+00:00
---
> 2020-03-30T14:21:25+00:00
2565c2564
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@187808 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2020-02-28T12:28:27+00:00
---
> 2020-02-28T12:28:27+00:00
2603c2602
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@187568 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2020-02-17T13:40:57+00:00
---
> 2020-02-17T13:40:57+00:00
2645c2644
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@187006 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2020-01-24T17:10:17+00:00
---
> 2020-01-24T17:10:17+00:00
2662c2661
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@186821 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2020-01-16T19:39:25+00:00
---
> 2020-01-16T19:39:25+00:00
2675c2674
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@186742 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2020-01-14T03:00:45+00:00
---
> 2020-01-14T03:00:45+00:00
2737c2736
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@185942 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2019-12-09T09:30:15+00:00
---
> 2019-12-09T09:30:15+00:00
2749c2748
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@185488 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2019-11-22T16:32:39+00:00
---
> 2019-11-22T16:32:39+00:00
2760c2759
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@185362 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2019-11-18T14:17:53+00:00
---
> 2019-11-18T14:17:53+00:00
2768c2767
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@185024 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2019-11-07T15:33:01+00:00
---
> 2019-11-07T15:33:01+00:00
2816,2817c2815
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@184474 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2019-10-23T19:10:30+00:00
< Updated ignore patterns. 2019-10-23T18:40:46+00:00
---
> 2019-10-23T19:10:30+00:00
2827c2825
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@184365 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2019-10-21T18:01:22+00:00
---
> 2019-10-21T18:01:22+00:00
2829,2830c2827,2828
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@184363 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2019-10-21T17:22:37+00:00
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@184362 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2019-10-21T16:16:10+00:00
---
> 2019-10-21T17:22:37+00:00
> 2019-10-21T16:16:10+00:00
2834c2832
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@184306 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2019-10-19T16:02:31+00:00
---
> 2019-10-19T16:02:31+00:00
2876,2879d2873
< 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
2881d2874
< Force unix line endings, to make sure it works ok also on the Windows subsystem for Linux. 2019-10-07T17:16:53+00:00
2886c2879
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@183751 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2019-10-04T14:45:46+00:00
---
> 2019-10-04T14:45:46+00:00
2903c2896
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@183476 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2019-09-25T19:22:40+00:00
---
> 2019-09-25T19:22:40+00:00
2908,2909c2901,2902
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@183416 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2019-09-24T14:32:37+00:00
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@183415 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2019-09-24T14:30:36+00:00
---
> 2019-09-24T14:32:37+00:00
> 2019-09-24T14:30:36+00:00
2932c2925
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@182843 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2019-09-10T06:20:56+00:00
---
> 2019-09-10T06:20:56+00:00
2943,2944c2936,2937
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@182560 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2019-09-03T14:35:22+00:00
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@182530 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2019-09-02T21:26:38+00:00
---
> 2019-09-03T14:35:22+00:00
> 2019-09-02T21:26:38+00:00
2999d2991
< svnignore 2019-08-05T07:01:11+00:00
3008c3000
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@181755 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2019-07-30T15:08:07+00:00
---
> 2019-07-30T15:08:07+00:00
3012c3004
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@181731 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2019-07-27T08:46:28+00:00
---
> 2019-07-27T08:46:28+00:00
3051c3043
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@181302 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2019-06-25T15:23:08+00:00
---
> 2019-06-25T15:23:08+00:00
3097d3088
< Updating svn ignores for tools/analysers/. 2019-06-14T06:38:51+00:00
3144c3135
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@180225 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2019-05-29T16:11:48+00:00
---
> 2019-05-29T16:11:48+00:00
3164,3165d3154
< Updating svn ignores. 2019-05-24T09:55:04+00:00
< Updating svn ignores. 2019-05-24T09:44:55+00:00
3168c3157
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@179972 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2019-05-23T12:42:10+00:00
---
> 2019-05-23T12:42:10+00:00
3255c3244
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@179132 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2019-04-28T20:16:49+00:00
---
> 2019-04-28T20:16:49+00:00
3267c3256
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@178990 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2019-04-24T13:45:42+00:00
---
> 2019-04-24T13:45:42+00:00
3271c3260
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@178972 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2019-04-24T10:19:30+00:00
---
> 2019-04-24T10:19:30+00:00
3356c3345
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@178038 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2019-03-25T19:16:12+00:00
---
> 2019-03-25T19:16:12+00:00
3362c3351
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@178009 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2019-03-24T18:04:02+00:00
---
> 2019-03-24T18:04:02+00:00
3377c3366
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@177876 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2019-03-20T14:57:46+00:00
---
> 2019-03-20T14:57:46+00:00
3400c3389
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@177532 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2019-03-08T20:22:27+00:00
---
> 2019-03-08T20:22:27+00:00
3422d3410
< Updated svn ignores. 2019-02-27T10:18:02+00:00
3424d3411
< ignorerer genererte scripts 2019-02-26T08:47:03+00:00
3504c3491
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@175855 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2019-01-22T14:32:31+00:00
---
> 2019-01-22T14:32:31+00:00
3540,3541d3526
< 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
3624c3609
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@173510 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2018-11-07T12:50:58+00:00
---
> 2018-11-07T12:50:58+00:00
3649,3651c3634,3636
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@173102 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2018-10-31T09:58:58+00:00
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@173096 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2018-10-31T09:29:25+00:00
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@173094 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2018-10-31T09:27:07+00:00
---
> 2018-10-31T09:58:58+00:00
> 2018-10-31T09:29:25+00:00
> 2018-10-31T09:27:07+00:00
3736,3737d3720
< ignore for bin 2018-10-14T13:31:01+00:00
< added korp.cg3 to svn ignore. 2018-10-14T12:56:20+00:00
3836,3837d3818
< svn ignore update 2018-09-20T08:44:05+00:00
< updated svn ignore. 2018-09-20T08:28:11+00:00
3892d3872
< More general ignore pattern for tools/mt/apertium/tagsets/. 2018-09-10T11:16:40+00:00
3904d3883
< Updated svn ignore patterns. 2018-09-08T05:26:27+00:00
3955d3933
< Updated svn ignores. 2018-08-30T16:00:09+00:00
3971d3948
< Updated svn ignores. 2018-08-29T05:25:34+00:00
3979d3955
< Updating svn ignores. 2018-08-28T10:47:06+00:00
4083,4088c4059,4064
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@169431 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2018-08-08T14:15:16+00:00
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@169429 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2018-08-08T12:08:23+00:00
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@169428 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2018-08-08T12:00:32+00:00
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@169425 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2018-08-08T11:56:21+00:00
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@169424 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2018-08-08T11:40:29+00:00
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@169420 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2018-08-08T10:51:54+00:00
---
> 2018-08-08T14:15:16+00:00
> 2018-08-08T12:08:23+00:00
> 2018-08-08T12:00:32+00:00
> 2018-08-08T11:56:21+00:00
> 2018-08-08T11:40:29+00:00
> 2018-08-08T10:51:54+00:00
4154c4130
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@168907 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2018-07-17T14:26:59+00:00
---
> 2018-07-17T14:26:59+00:00
4166c4142
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@168667 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2018-07-09T09:11:32+00:00
---
> 2018-07-09T09:11:32+00:00
4180c4156
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@168234 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2018-06-19T22:02:35+00:00
---
> 2018-06-19T22:02:35+00:00
4308d4283
< More things to ignore. 2018-05-14T10:33:30+00:00
4508,4510d4482
< 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
4521d4492
< Added svnignore pattern for sigma.txt. 2018-02-21T09:49:57+00:00
4545d4515
< Two more files to ignore. 2018-02-06T09:44:18+00:00
4567d4536
< Updated svn ignores. 2018-01-31T12:13:59+00:00
4624,4625c4593,4594
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@161646 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2018-01-02T19:20:31+00:00
< git-svn-id: https://gtsvn.uit.no/langtech/trunk/langs/kal@161643 c7155fb1-f0a7-4240-a2fc-2600b6f42f90 2018-01-02T18:35:39+00:00
---
> 2018-01-02T19:20:31+00:00
> 2018-01-02T18:35:39+00:00
4654d4622
< Updated svn ignores. 2017-12-11T12:55:46+00:00
4761,4762d4728
< 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
4839d4804
< Updating svn ignores. 2017-08-25T10:22:58+00:00
4954d4918
< Updated svn ignores. 2017-06-28T23:37:25+00:00
4960d4923
< Updated svn ignores. 2017-06-28T23:08:42+00:00
5102d5064
< ign 2017-03-21T19:49:19+00:00
5134d5095
< Updated svn ignores. 2017-03-01T12:02:48+00:00
5174d5134
< Updated svn ignores. 2017-01-30T10:04:48+00:00
5184a5145
> Removed the kal dir from the old infra after verifying that all files and accidental changes in the old infra have been carried over to the new one. 2017-01-24T09:15:43+00:00
5314d5274
< Updated svn ignores. 2016-06-09T20:11:13+00:00
5333d5292
< Setting svn ignore patterns on tools/spellcheckers/filters/. 2016-05-10T01:00:11+00:00
5355d5313
< Ignore more preprocessor files = fst’s. 2016-04-14T16:01:04+00:00
5359d5316
< Updated svn ignores. 2016-03-15T19:54:49+00:00
5363d5319
< Use a more general svn ignore pattern in src/morphology/. 2016-03-07T17:10:12+00:00
5384c5340
< Updated the svn ignore property for recent changes in the infrastructure. 2016-02-16T22:36:51+00:00
---
> Removing files that are now in the new infra. 2016-02-12T23:21:36+00:00
5393d5348
< Updating svn:ignore’s. 2016-02-02T15:34:45+00:00
5398,5399d5352
< Updated svn:ignore’s. 2016-02-02T10:33:44+00:00
< Updated svn:ignore’s. 2016-02-02T10:16:28+00:00
5404d5356
< Updated svn ignores. 2016-01-25T08:11:45+00:00
5416d5367
< Updated svn:ignore’s. 2015-11-18T23:05:40+00:00
5432d5382
< Updated svn ignores. 2015-10-20T07:50:38+00:00
5460d5409
< Ignore temporary files generated by the speller suggestion test script. 2015-09-03T04:23:51+00:00
5531d5479
< Ignore txt files in speller dirs. 2015-04-09T11:55:38+00:00
5545d5492
< Updated svn ignores. 2015-03-14T10:46:39+00:00
5553d5499
< Updated svn ignores. 2015-03-12T08:28:02+00:00
5560d5505
< Updated svn ignores. 2015-03-09T10:41:02+00:00
5562d5506
< Updated svn ignores. 2015-03-06T15:56:54+00:00
5565d5508
< Updated svn ignores. 2015-03-06T09:24:00+00:00
5577d5519
< Update svn ignores. 2015-02-27T12:55:53+00:00
5624d5565
< Special svn:ignore on src/orthography/. 2015-01-26T10:30:36+00:00
5631d5571
< Setting svn:ignore for Bashkir, updating the other ignores. 2015-01-19T06:20:12+00:00
5639d5578
< Updated svn:ignore's. 2015-01-12T21:50:15+00:00
5641d5579
< svn:ignore also for *.service. 2015-01-12T15:58:08+00:00
5662d5599
< Update ignores for src/morphology/. 2014-10-23T08:25:38+00:00
5705d5641
< Updated svn:ignore's. 2014-09-08T21:51:28+00:00
5728d5663
< ignore 2014-08-16T15:52:40+00:00
5743d5677
< Updated svn:ignore for all languages. 2014-06-11T09:37:23+00:00
5750d5683
< Ignore cg3 files in the tools/mt/apertium/ dir. 2014-06-02T14:02:42+00:00
5760d5692
< Ignore the generated pkg-config files. 2014-05-12T20:27:01+00:00
5784d5715
< Extra ignores on tools/mt/apertium/filters/. 2014-04-16T05:45:32+00:00
5786d5716
< Updated svn ignores. 2014-04-15T13:30:11+00:00
5792d5721
< Updated svn ignore. 2014-04-10T15:16:59+00:00
5802d5730
< Updated svn ignores. 2014-04-03T10:10:45+00:00
5805d5732
< Updated svn ignore. 2014-04-02T10:58:00+00:00
5817d5743
< Update svn ignores on test/src/phonology/. 2014-03-20T07:32:24+00:00
5825d5750
< Updated ignore patterns for test/tools/spellcheckers/. 2014-03-14T10:26:24+00:00
5837d5761
< Updated svn ignores. 2014-02-28T06:46:07+00:00
5884d5807
< Ignore mk-files in the preprocess/ dir. 2014-01-14T14:20:40+00:00
5892d5814
< Ignore generated easteregg files. 2014-01-12T11:44:07+00:00
5895d5816
< 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
5899a5821,5822
> moved to new infra. 2014-01-10T09:53:04+00:00
> moved to new infra. 2014-01-10T09:52:09+00:00
5903d5825
< Updated the ignore pattern for morphology/stems/. 2014-01-09T13:45:44+00:00
5921d5842
< Ignore generated regex files in the src/filters/ dir. 2013-12-03T11:56:43+00:00
5930,5931d5850
< Extra ignores in the filters/ dir. 2013-11-24T15:24:39+00:00
< igno 2013-11-24T15:13:39+00:00
5935d5853
< Ignore the generated, concatenated lexc file. 2013-11-22T13:37:46+00:00
5962d5879
< Ignore generated documents in tools/shellscripts/. 2013-10-18T11:47:12+00:00
5973,5974d5889
< 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
5976d5890
< Updated svn ignores. 2013-10-09T07:04:36+00:00
6019d5932
< Ignore zipped files (built for apertium). 2013-08-19T07:13:39+00:00
6022d5934
< Ignore *.att files in src/ (produced by the apertium targets). 2013-08-17T12:30:28+00:00
6041d5952
< Ignore extra generated files in the tagsets dir. 2013-06-13T14:40:56+00:00
6067d5977
< [ignore] Also ignore generated foma transducers. 2013-04-11T16:57:19+00:00
6089c5999
< Ignore the generated voikko-3 dir. 2013-03-18T09:43:22+00:00
---
> En smule opdatering af verber i ny struktur 2013-03-18T19:20:21+00:00
6097d6006
< More extensive ignores on src/morphology/. 2013-03-12T08:07:27+00:00
6103a6013
> Renamed the src dir in the old infra, to make it clear that this src dir is now old, retired, and should not be touched. 2013-03-11T15:36:25+00:00
6113d6022
< Disambiguation file replaced with latest from the old infra. 2013-03-07T22:36:34+00:00
6118d6026
< Ignore top-level build dir. 2013-02-27T07:18:08+00:00
6120d6027
< Update svn ignores. 2013-02-27T00:08:32+00:00
6124d6030
< Ignore the build/ dir within doc/. 2013-02-26T17:02:56+00:00
6143,6144d6048
< 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
6149a6054
> symlink 2013-01-23T14:42:41+00:00
6156d6060
< Updated svn:ignore with the latest modifications to the ignore patterns. 2013-01-14T19:34:16+00:00
6175a6080
> Nov.12 Karen 2012-11-22T12:23:34+00:00
6177a6083
> TikaNov12 2012-11-15T14:33:14+00:00
6182a6089
> verbOkt12Tik 2012-11-06T19:08:30+00:00
6187a6095
> Lidt fejlrettelser i tekstene plus tilføjelse af en hel tekst 2012-11-01T13:09:38+00:00
6188a6097,6098
> Rettelser af stavefejl i basisteksten 2012-11-01T13:06:09+00:00
> Committed a small perl script probably made by Tino May 8 2012, and added to svn at that time, but not committed. The purpose of the script is not entirely clear to Per and Sjur. 2012-11-01T13:00:32+00:00
6198a6109
> CG med Ukiut Trettenit 2012-10-19T07:48:41+00:00
6202a6114,6115
> Oktob12 2012-10-08T14:47:42+00:00
> CG med Ukiut Trettenit 2012-10-05T20:33:46+00:00
6215a6129
> rydde op i verberne 2012-09-28T12:54:18+00:00
6217c6131,6132
< 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
---
> Added warning about missing YAML testing, with short instructions on how to enable them. Template update. 2012-09-25T06:19:32+00:00
> verb240912 2012-09-24T17:01:07+00:00
6219a6135,6137
> verbs 2012-09-24T12:58:20+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
> Ukiut Trettenit og CG 2012-09-20T20:42:01+00:00
6220a6139,6140
> 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
6221a6142,6156
> UTIGE 2012-09-18T16:07:06+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
> 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
> CG med Ukiut Trettenit 2012-09-12T18:33:55+00:00
6223a6159,6169
> CG og Ukiut Trettenit 2012-09-11T19:35:32+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
> 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
> Major template update of all languages (except those already updated by Jack): * proper tag deletion of tags only used for transducer manipulation, not for analysis (manipulations mostly not yet implemented) * making optional some tag sets for the generators * updated README with correct and working instructions for first time installers, also for svn users * added hooks for easily adding language-specific operations on transducers * silenced the und.timestamp message unless you are a GTMAINTAINER (thanks to Tommi) => more synchronized template merges, less noise for regular users * a number of other small fixes 2012-09-06T19:19:58+00:00
6224a6171,6173
> suliat kingulliit 2012-08-31T11:38:52+00:00
> Autoconf updates from the template. Intended goal: better hfst testing before enabling it. 2012-08-30T05:39:16+00:00
> Ny multichar LIVIK retter aqerluusivik m.fl. 2012-08-29T09:56:49+00:00
6225a6175,6188
> 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
> Newest merge 2012-08-28T22:46:26+00:00
> Corrected reference to inituppercase.?fst. Template update. 2012-08-28T19:34:40+00:00
> Updated the timestamp of three languages - they didn't merge for some reason. 2012-08-28T19:02:44+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
> Added Hunspell dir. Merge from templates. 2012-08-27T16:44:43+00:00
> Two template updates at once: 2012-08-27T16:01:48+00:00
> Added build support for xml source files. Updates from the template. 2012-08-27T07:33:38+00:00
6226a6190,6194
> Ukiut Trettenit disamb. fort. 2012-08-25T20:08:54+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
> Merging in the latest changes from the template - this time only the timestamp file got updated. 2012-08-24T12:00:55+00:00
> Merged changes from the template - mostly *-include.am cleanup and cancelled warnings for pattern rules. 2012-08-24T10:52:53+00:00
> Ukiut trettenit fort. 2012-08-24T08:41:48+00:00
6228a6197,6200
> Disambiguering af Ukiut Trettenit 2012-08-23T17:11:08+00:00
> Working my way of getting rid of pattern rule warnings - now orthography (uppercasing) is ok. 2012-08-23T15:14:54+00:00
> Template merge with changes to the phonology compilation: all compilation is now done with suffix rules (more compatible), and the filenames src/phonology/ are updated to follow the filename conventions in the new infra. 2012-08-23T14:50:25+00:00
> Disambiguering og lidt oprydning i kal-lex 2012-08-22T20:26:40+00:00
6229a6202,6205
> Added Autoconf processing of the Makefile.am files in test/. Update from the template. Also added the dir src/filters/ that had been left out of an earlier template update. 2012-08-22T18:06:10+00:00
> Moved files with codes from the old infra into the relevant dir. Don't know whether we will use them in the new infra, but here they are. 2012-08-22T17:32:46+00:00
> Updated Test dir with subdirs and make-files, and older template changes. Updates from the template. 2012-08-22T17:24:43+00:00
> Nom-Akk struktur i DivPron og konsekvensrettet dis-kal.rle 2012-08-19T20:21:37+00:00
6231a6208,6214
> TIP og QQU til intr. 2012-07-06T10:26:16+00:00
> Merge from core: Capital initials for Xerox transducers, more comments. 2012-06-21T21:57:18+00:00
> Updated KAL to include all recent changes. 2012-06-21T10:30:23+00:00
> Added a large number of new exclusion for the error model. This should improve the overall speed of the hfst speller, and also improve the suggestions and speed with which suggestions are returned. 2012-05-10T11:10:33+00:00
> Brought KAL in line with the core template by running the new-language script and manually reverting unwanted changes. Several new standard files were added, and some files just got a final newline. No major changes to the build system, and everything seems to work as intended. KAL is awfully memory-intensive to compile, but we already knew that. 2012-05-10T10:54:04+00:00
> Renamed files and dirs to more generic names. 2012-05-08T05:43:36+00:00
> Ukiut trettenit 2012-05-02T19:55:05+00:00
6233a6217,6219
> Disambiguering i Ukiut Trettenit 2012-05-01T19:21:58+00:00
> Added comments copied from tlh. 2012-04-30T21:21:02+00:00
> Disambiguering UkiutTrettenit 2012-04-25T17:50:07+00:00
6235a6222,6223
> Genoprettet fejlslet i verb-kal-lex 2012-04-24T17:32:01+00:00
> Disambiguering. Slettet +MAAR+nv 2012-04-23T19:29:40+00:00
6237a6226
> Disambiguering UkiutTrettenit 2012-04-22T22:36:46+00:00
6238a6228,6229
> Verbalnominer på UTE 2012-04-21T07:23:57+00:00
> Leksikaliserede verbalnominer på UTE 2012-04-20T08:06:26+00:00
6240a6232,6235
> Disambiguering og lidt fejl i kal-lex 2012-04-16T20:34:46+00:00
> Fix naming of xfst script 2012-04-16T00:45:45+00:00
> Fix kal to copied infra 2012-04-15T22:37:23+00:00
> Disambiguering 2012-04-15T18:55:31+00:00
6242a6238,6239
> Lidt disambiguering 2012-04-14T21:06:34+00:00
> 13.04.12 2012-04-13T16:11:28+00:00
6244a6242,6243
> 11.04.12 2012-04-11T15:44:44+00:00
> conflicting changes 2012-04-04T16:07:52+00:00
6245a6245,6246
> En smule disambiguering 2012-03-29T21:29:19+00:00
> 26.03.12 2012-03-26T15:15:42+00:00
6247a6249,6250
> 21.03.12 2012-03-21T19:29:04+00:00
> 20.03.12 2012-03-20T19:09:22+00:00
6249a6253,6254
> 19.03.12 2012-03-19T18:53:05+00:00
> Marts12Tika 2012-03-14T19:19:42+00:00
6251a6257
> Lidt disambiguering 2012-03-13T01:20:55+00:00
6252a6259,6260
> tassani 2012-03-12T15:25:09+00:00
> Lidt mere disambiguering 2012-03-12T02:08:14+00:00
6254a6263
> disambiguering 2012-03-11T17:18:17+00:00
6255a6265,6266
> Disambiguering 2012-03-09T19:33:11+00:00
> Partikler 2012-03-08T21:06:49+00:00
6257a6269
> Mere disambiguering 2012-03-07T19:38:10+00:00
6258a6271,6272
> kalverb 2012-03-06T18:33:57+00:00
> Pronominer 2012-03-05T13:57:52+00:00
6260a6275,6276
> 03.03.12 2012-03-02T18:26:18+00:00
> Febr12Tika 2012-03-02T17:15:44+00:00
6262a6279,6280
> Pron3 2012-03-01T18:41:42+00:00
> Lidt disamnbiguering 2012-02-29T21:29:26+00:00
6264a6283
> 29.02.12 2012-02-29T16:05:58+00:00
6265a6285,6286
> Lidt disambiguering 2012-02-27T19:52:49+00:00
> Lidt CG 2012-02-23T17:49:12+00:00
6267a6289,6290
> 22.02.12 2012-02-22T18:29:25+00:00
> Semantisk constraint 2012-02-22T16:39:46+00:00
6269a6293,6294
> 20.02.12 2012-02-20T18:19:27+00:00
> 16.02.12 2012-02-20T15:43:08+00:00
6271a6297
> TikaFebr 2012-02-17T17:40:17+00:00
6272a6299,6300
> Slettet de gamle pron og restruktureret transitiv ledsagemåde 2012-02-16T21:19:52+00:00
> 14.02.12 2012-02-14T18:40:57+00:00
6274a6303,6304
> 13.02.12 2012-02-14T16:36:20+00:00
> verb-januar 2012-01-17T17:02:59+00:00
6276a6307,6308
> Tikajanuar 2012-01-16T16:59:04+00:00
> Corrected the definition syntax of two lists (exit OR in one, change the other to SET). 2012-01-15T09:45:49+00:00
6278a6311
> Nyt forsøg fra Iris 2011-12-09T18:53:04+00:00
6279a6313,6314
> Undersøger, om Iris får svn-mail. Får du det, Iris? 2011-12-08T21:24:21+00:00
> La til _Gaup_. Undersøger om iris kan tjække ind. 2011-12-08T21:21:20+00:00
6281a6317
> 08.12.11.JD 2011-12-08T17:39:26+00:00
6282a6319,6320
> 05.12.11.JD 2011-12-05T17:39:53+00:00
> Fortsatte Iris-problemer. Test af Makefile 2011-12-01T18:35:48+00:00
6284a6323
> 30.11.11.JD 2011-11-30T18:33:50+00:00
6285a6325,6326
> Forsøg på fejlretning af Iris 2011-11-30T13:10:24+00:00
> 29.11.11.JD 2011-11-29T16:17:57+00:00
6287a6329,6330
> 28..11.11.JD 2011-11-29T11:42:34+00:00
> 25.11.11.JD 2011-11-25T15:33:40+00:00
6289a6333,6334
> 23.11.11 2011-11-23T18:54:41+00:00
> verb-kal-tika 2011-11-22T19:26:49+00:00
6291a6337
> +SIMA=NAR jd 2011-11-21T17:00:53+00:00
6292a6339,6340
> +NNGIT=NIRAR 2011-11-21T14:15:39+00:00
> verb Tika uge 45 2011-11-11T18:05:57+00:00
6293a6342,6343
> Copy from fao. Needed to establish the symbolic links used to access the shared automake files. 2011-11-08T11:42:08+00:00
> Add kal, only few additions to fao compilations yet, some parts missing 2011-11-08T09:51:09+00:00
6294a6345,6346
> Gamle småtterier 2011-10-31T16:11:22+00:00
> Oktober Tika 2011-10-26T15:38:50+00:00
6296a6349,6350
> ny navne 2011-10-13T16:41:48+00:00
> Tika sept/okt 2011-10-11T18:01:51+00:00
6298a6353
> Bare et par nye navne 2011-09-24T18:33:28+00:00
6299a6355,6356
> Oprydning 2011-09-07T17:27:37+00:00
> Tikas nye tilhæng 2011-09-07T16:12:24+00:00
6301a6359,6360
> opdateringer fra corpus 2011-09-06T17:54:48+00:00
> IR slettet 2011-09-05T21:44:43+00:00
6303a6363,6364
> Formiddagens derivativer mv. 2011-08-11T09:09:37+00:00
> Lidt flere derivativer og justeringer 2011-08-10T18:59:53+00:00
6305a6367
> Flere derivativer og lidt rettelser 2011-08-10T10:22:15+00:00
6306a6369,6370
> symlink 2011-08-08T22:31:22+00:00
> Lidt flere morfemkombinationer 2011-08-08T21:00:14+00:00
6308a6373
> Fortsat oprydning 2011-08-08T16:23:30+00:00
6309a6375,6376
> Fortsat oprydning 2011-08-07T20:01:50+00:00
> Fjernet passiver fra intransitive leksika. Ikke færdig endnu 2011-08-07T16:56:50+00:00
6311a6379
> Oprydning 2011-08-07T05:27:30+00:00
6312a6381,6382
> Fortsatte sonderinger før reorganisering af UTE 2011-06-14T19:37:06+00:00
> Slettet alle HTR= og foretaget et par konsekvensrettelser 2011-06-12T19:50:38+00:00
6314a6385,6386
> Slettet RAAR+vv. Mange fejl især for GE+Ind+1Pl+3SgO 2011-06-12T18:00:18+00:00
> Opdateringer - 10.06.11 2011-06-10T15:07:53+00:00
6316a6389,6390
> Kun smårettelser før oprydning i Pron mv. 2011-06-09T19:53:01+00:00
> Lidt oprydning i mangellisten til Ukiut Trettenit 2011-06-03T21:17:06+00:00
6318a6393
> Fjernet varianterne 'raq' og 'jaraq' fra ARAQ 2011-06-02T21:15:51+00:00
6319a6395,6396
> Tilføjet %TRUNC før intervokalisk q for at blokere for frikativiseringsreglen 2011-06-01T17:18:17+00:00
> Nyt lexicon XIi_utePXmorf og genindført %ProgI 2011-06-01T16:16:39+00:00
6321a6399,6400
> Tilfoejet LIAR+nv+UTE+vv i nominernes fleksionsleksika 2011-05-31T17:35:46+00:00
> Slettet +IT+vv, men tilføjet 5 verber med IT up:down 2011-05-31T15:56:41+00:00
6323a6403,6404
> Torersaaneq 2011-05-06T17:33:49+00:00
> Oprydning 2011-05-03T17:55:25+00:00
6325a6407
> See forthcoming mail. 2011-04-28T21:12:59+00:00
6326a6409,6410
> misiliut 2011-04-18T14:45:03+00:00
> Tika uge 14 2011-04-07T14:51:23+00:00
6328a6413,6414
> Tika uge 13 2011-04-04T12:13:44+00:00
> Tika 22. marts 11 2011-03-22T20:05:13+00:00
6330a6417,6418
> Beatrine - 21.03.11 2011-03-22T11:48:30+00:00
> Tikap suliai uge11 2011-03-21T14:30:13+00:00
6332a6421
> Tika marts 2011 2011-03-18T14:29:00+00:00
6333a6423,6424
> Nye regler for j-epentese 2011-03-09T20:12:39+00:00
> mandagens opdateringer 2011-03-08T12:31:00+00:00
6335a6427,6428
> Opdateringer i verb-kal-lex.txt 2011-03-03T17:21:37+00:00
> Beatrine - 02.03.11 2011-03-03T11:43:12+00:00
6337a6431,6432
> Tikas opdateringer 1. marts 2011-03-01T12:25:38+00:00
> Samlet check-in efter adgangsproblemer 2011-02-23T12:31:32+00:00
6339a6435
> test 2011-02-22T13:58:25+00:00
6340a6437,6438
> Testen undone 2011-02-09T15:30:42+00:00
> Bare en test 2011-02-09T15:29:47+00:00
6342a6441
> 2010-12-30T12:40:35+00:00
6343a6443
> 2010-12-29T12:46:45+00:00
6344a6445
> 2010-12-28T12:07:54+00:00
6345a6447
> 2010-12-22T12:14:45+00:00
6346a6449
> 2010-12-20T12:12:44+00:00
6347a6451
> 2010-12-17T12:32:46+00:00
6348a6453
> 2010-12-16T12:33:46+00:00
6349a6455
> 2010-12-15T17:27:56+00:00
6350a6457,6458
> 2010-12-14T18:16:06+00:00
> Fjærnede 3-4 konflikter i kal-lex og 2 konflikter i verb-kal-lex. 2010-12-13T22:10:20+00:00
6352a6461
> 2010-12-13T16:26:07+00:00
6353a6463
> 2010-12-09T12:19:39+00:00
6354a6465
> 2010-12-08T18:37:34+00:00
6355a6467
> 2010-12-08T12:12:14+00:00
6356a6469
> 2010-12-07T16:34:41+00:00
6357a6471
> 2010-12-07T14:23:54+00:00
6358a6473,6474
> 2010-12-07T11:18:18+00:00
> Tilføjet Nivi og Niviaq i ateq 2010-12-06T15:45:20+00:00
6360a6477
> 2010-12-06T12:18:18+00:00
6361a6479
> 2010-12-03T14:32:54+00:00
6362a6481
> 2010-12-02T11:33:01+00:00
6363a6483
> 2010-11-30T15:02:36+00:00
6364a6485
> 2010-11-30T15:00:44+00:00
6365a6487
> 2010-11-30T14:35:54+00:00
6366a6489,6490
> 2010-11-29T19:19:02+00:00
> Fjernet Pron1 2010-11-29T18:15:45+00:00
6368a6493
> 2010-11-29T13:02:47+00:00
6369a6495
> 2010-11-25T19:07:34+00:00
6370a6497
> 2010-11-25T19:05:50+00:00
6371a6499
> 2010-11-24T20:37:36+00:00
6372a6501
> 2010-11-24T16:52:23+00:00
6373a6503
> 2010-11-23T21:20:01+00:00
6374a6505,6506
> 2010-11-22T19:18:49+00:00
> Mandagens opdateringer - 22112010 2010-11-22T18:54:30+00:00
6376a6509,6510
> 2010-11-22T14:58:46+00:00
> Fredagens opdateringer2 - 19112010 2010-11-19T19:35:37+00:00
6378a6513,6514
> Judithes opdateringer - 19112010 2010-11-19T19:05:47+00:00
> uk13fortsat 2010-11-19T15:40:03+00:00
6380a6517,6518
> annikitsunnguit 2010-11-18T19:09:56+00:00
> Torsdagens opdateringer - 18112010 2010-11-18T15:46:48+00:00
6382a6521,6522
> ajung 2010-11-17T19:03:01+00:00
> aatsaat 2010-11-17T13:31:05+00:00
6384a6525
> Lagt til referanse til pronominer i makefilen. Nu kompilerer grønlandsk igen. 2010-11-17T12:50:42+00:00
6385a6527,6528
> Beatrines check-in 2010-11-16T19:06:13+00:00
> aatsaat 2010-11-16T14:09:24+00:00
6387a6531,6532
> Torsdagens opdateringer - 111110 2010-11-11T18:05:25+00:00
> Tirsdagens opdateringer - 091110 2010-11-09T18:56:07+00:00
6389a6535,6536
> Mandagens opdateringer - 081110 2010-11-08T18:49:50+00:00
> Tirsdagens opdateringer2 - 021110 2010-11-02T18:44:29+00:00
6391a6539
> Tirsdagens opdateringer - 021110 2010-11-02T15:07:57+00:00
6392a6541,6542
> Mandagens opdateringer - 011110 2010-11-01T18:37:32+00:00
> Fredagens opdateringer - 291010 2010-10-29T17:43:32+00:00
6394a6545
> Torsdagens opdateringer - 281010 2010-10-28T17:38:51+00:00
6395a6547,6548
> Onsdagens opdateringer - 271010 2010-10-27T17:54:35+00:00
> Torsdagens opdateringer - 211010 2010-10-21T17:42:12+00:00
6397a6551
> Onsdagens opdateringer - 201010 2010-10-20T17:24:47+00:00
6398a6553,6554
> Tirsdagens opdateringer - 191010 2010-10-20T11:22:45+00:00
> Mandagens opdateringer - 181010 2010-10-19T10:58:18+00:00
6400a6557,6558
> Fredagens opdateringer - 151010 2010-10-15T16:46:37+00:00
> Torsdagens opdateringer - 141010 2010-10-14T17:53:59+00:00
6402a6561,6562
> Ganske små småting 2010-10-13T20:11:03+00:00
> jd 2010-10-04T17:58:02+00:00
6404a6565
> jd 2010-10-01T17:13:19+00:00
6405a6567,6568
> jd 2010-09-30T16:56:03+00:00
> smule 2010-09-29T20:07:39+00:00
6407a6571,6572
> kun lidt 2010-09-28T12:52:14+00:00
> En lus i xfst 2010-09-26T21:33:42+00:00
6409a6575,6576
> jd 2010-09-24T15:11:23+00:00
> jd 2010-09-23T16:19:38+00:00
6411a6579
> j 2010-09-22T10:38:15+00:00
6412a6581,6582
> fra igår 2010-09-22T10:14:50+00:00
> ukiut 13 jd 2010-09-20T17:53:23+00:00
6414a6585,6586
> Kun småting 2010-09-17T14:10:22+00:00
> jude 2010-09-15T17:52:58+00:00
6416a6589,6590
> ukiut13 2010-09-14T18:03:49+00:00
> ukiut13miit jd 2010-09-13T18:09:37+00:00
6418a6593
> ullumi immannguaannaq jd 2010-09-10T17:25:11+00:00
6419a6595,6596
> jd 2010-09-09T13:35:25+00:00
> ukiu13 jd 2010-09-07T17:41:14+00:00
6421a6599
> ukiut13 jd 2010-09-07T15:57:54+00:00
6422a6601,6602
> ukiut13-iaasiit jd 2010-09-06T18:05:59+00:00
> En enkelt korrektion 2010-09-04T19:10:34+00:00
6424a6605
> ukiut13 jd 2010-09-03T17:18:33+00:00
6425a6607,6608
> generalised home dir 2010-09-03T08:52:58+00:00
> uk13 jd 2010-08-31T17:11:04+00:00
6427a6611,6612
> ukiut13 jd 2010-08-27T16:27:17+00:00
> Opdateringer fra Lanas Ornigisaq 2010-08-26T19:29:23+00:00
6429a6615,6616
> ukiut13 jd 2010-08-26T17:53:40+00:00
> Lidt mere Ornigisaq 2010-08-25T21:08:56+00:00
6431a6619
> Opdateringer fra Ornigisaq 2010-08-25T19:21:25+00:00
6432a6621,6622
> ukiut13 jd 2010-08-25T17:09:59+00:00
> Ny tag, TermPart, og lidt derivativer 2010-08-25T10:00:21+00:00
6434a6625,6626
> Lidt flere derivativer 2010-08-25T05:42:42+00:00
> ukiut13 jd 2010-08-24T18:03:21+00:00
6436a6629,6630
> Nu har jeg lavet en minimal Makefile. Hvis den protesterer på abbr.txt, skal __den ene linie__ der er mærket med "kommenter evt. ud." kommenteres ud (linie 82). 2010-08-24T05:29:15+00:00
> ukiut13 jd 2010-08-23T17:22:50+00:00
6438a6633
> Nye lexica V-Loan og C-Loan. Rettet en fejl i xfst-kal. Tilføjet 1PlPoss+SUB 2010-08-22T20:22:03+00:00
6439a6635,6636
> ukiut13 jd 2010-08-20T17:26:41+00:00
> Per had commented out a the goals phon, hyph, dis. They need not be commented entirely out, they only need to be removed from the default target. Now, they are reintroduced as targets called by commands make hyph, make phon, make dis. 2010-08-20T16:41:46+00:00
6441a6639,6640
> fra ukiut13 jd 2010-08-19T17:57:32+00:00
> fra ukiut13 jd 2010-08-18T18:05:41+00:00
6443a6643,6644
> uk13 2010-08-17T17:21:49+00:00
> lidt fra ukiut13 2010-08-16T17:42:11+00:00
6445a6647
> jd 2010-08-16T13:43:06+00:00
6446a6649,6650
> jd 2010-08-13T17:38:02+00:00
> jd 2010-08-13T11:37:40+00:00
6448a6653
> some few additions kal-lex jd 2010-08-10T17:14:56+00:00
6449a6655,6656
> Removed initial (and final, hmm) blanks in order to avoid bug in abbr list creation. 2010-07-02T12:31:02+00:00
> Kompletteringer med ungt sprog igen 2010-06-30T21:29:04+00:00
6451a6659
> Flere kompletteringer fra Lanas bog 2010-06-30T12:40:04+00:00
6452a6661,6662
> Kompletteringer med ungt sprog 2010-06-30T07:28:28+00:00
> oprydning +VALLAAR noun-kal JD 2010-06-03T13:58:14+00:00
6454a6665,6666
> oprydning +GUNNAIR noun-kal jd 2010-06-02T18:04:50+00:00
> oprydning sinnaa noun-kal jd 2010-06-01T17:18:39+00:00
6456a6669,6670
> oprydn. nngor noun-kal 2010-05-31T17:57:27+00:00
> oprydning noun-kal og verb-kal 2010-05-27T17:58:59+00:00
6458a6673
> oprydning sima slut noun-kal 2010-05-26T17:58:09+00:00
6459a6675,6676
> oprydning af sima nomener i noun-kal 2010-05-21T16:07:22+00:00
> oprydn 2010-05-19T18:25:18+00:00
6461a6679,6680
> jd 2010-05-07T17:27:45+00:00
> jd 2010-05-03T17:35:14+00:00
6463a6683,6684
> jd 2010-04-29T17:52:51+00:00
> Oprydning i Lok+Sg+3SgPoss i tup og Z2+rZ 2010-04-28T23:59:07+00:00
6465a6687
> jd 2010-04-28T17:34:24+00:00
6466a6689,6690
> Slettet fejlproducerende Saq fra flex-tv. Nyt lexicon HTR_GAQ_P 2010-04-27T14:40:24+00:00
> jd 2010-04-26T19:54:42+00:00
6468a6693,6694
> jd 2010-04-26T17:53:14+00:00
> jd 2010-04-22T17:58:14+00:00
6470a6697,6698
> Igen blot småting 2010-04-21T21:11:35+00:00
> jd 2010-04-21T17:58:14+00:00
6472a6701
> added script name extension 2010-04-21T17:46:29+00:00
6473a6703,6704
> Now we all are number 3. 2010-04-21T13:42:06+00:00
> jd 2010-04-19T17:54:37+00:00
6475a6707,6708
> sualunnguit 2010-04-16T18:16:50+00:00
> jd 2010-04-15T18:24:35+00:00
6477a6711,6712
> kun lidt idag 2010-04-14T17:57:51+00:00
> Småying 2010-04-12T09:43:28+00:00
6479a6715
> annikikkaluarput 2010-04-09T21:55:00+00:00
6480a6717,6718
> De sidste småtterier 2010-04-09T21:47:05+00:00
> Fortsat oprydning 2010-04-08T20:45:19+00:00
6482a6721,6722
> Slettet IR+nv samt lidt småting 2010-04-07T20:58:35+00:00
> Oprydning i nuleq vs. nuliaq. Nye lexica nuliaqmorf og nuliaq 2010-04-07T15:07:30+00:00
6484a6725,6726
> Lidt oprydning og et forsøg med nye lexica til HTR og TAQ 2010-04-06T21:50:15+00:00
> Ny tag +Coll til proprier med uautoriserede stavemaader 2010-04-06T15:20:06+00:00
6486a6729
> Fjernet et par nominaliseringer fra verbale derivativer 2010-04-06T13:04:46+00:00
6487a6731,6732
> sinnaa oprydn i verb-kal og niar input kal-lex jd 2010-03-26T18:56:44+00:00
> lidt opdatering af sinnaa jd 2010-03-25T18:53:12+00:00
6489a6735,6736
> dagens input 2010-03-24T18:50:59+00:00
> Nye lexica til HTR. Rettelser og tilfoejelser 2010-03-23T21:42:16+00:00
6491a6739,6740
> jd 2010-03-23T18:05:28+00:00
> Slettet QQUTE, da mere end 10 fejl per hit 2010-03-22T21:49:41+00:00
6493a6743
> Lidt rettelser i proprierne 2010-03-19T21:57:55+00:00
6494a6745,6746
> thats it for 2day jd 2010-03-19T18:53:58+00:00
> jd 2010-03-18T18:49:25+00:00
6496a6749,6750
> dagens revision 2010-03-17T18:47:19+00:00
> suunngikkaluarput 2010-03-16T14:47:59+00:00
6498a6753,6754
> halvdags arbejde, en smule oprydning 2010-03-15T18:49:32+00:00
> Added assigmnent rule for multiple possessors (clumsy). 2010-03-14T13:56:19+00:00
6500a6757
> glemte at checke ind igår 2010-03-12T12:32:13+00:00
6501a6759,6760
> dagens oprydning 2010-03-10T17:43:58+00:00
> rettelse af fejl +SUNNIP+vv - fjernet 2010-03-09T15:57:49+00:00
6503a6763
> judithes småting for idag 2010-03-08T19:03:50+00:00
6504a6765,6766
> More script files for analysis. 2010-03-07T12:56:37+00:00
> ullormut suliat 2010-03-04T19:14:30+00:00
6506a6769
> lidt oprydning i verb-kal-lex pallaar-stammer 2010-03-03T19:02:22+00:00
6507a6771,6772
> ippassaq suliakka 2010-03-02T16:06:17+00:00
> Ny mulitichar Comp til de saerlige transitive neq ajor/saper etc. Lidt oprydning i kal-lex 2010-02-28T12:21:35+00:00
6509a6775,6776
> New NIQAR=TUAR NIQAR=TUAR=INNAR NIQAR=TUAR=INNAR=NNGIT NIQAR=TUAR=INNAR=NNGIT=GALUAR 2010-02-28T09:29:04+00:00
> Slettet MA pga heftig overgenering (103 fejl og 0 hit i lille test) 2010-02-28T08:45:22+00:00
6511a6779,6780
> opened up for SVO sentences (Bible syntax), added tags. 2010-02-27T15:07:12+00:00
> MAAR+vv ikke produktiv. Allomorf eller sjaelden archaisk. Slettet 2010-02-27T12:55:22+00:00
6513a6783
> Nye lexica iGaq_NIR og flex-tv_fleksiver forebygger derivativer efter transitive paa NIR 2010-02-27T12:33:51+00:00
6514a6785,6786
> Nye lexica XIiX-og XIiPX_fleksiver forebygger derivativer efter NIR 2010-02-27T11:51:26+00:00
> Mandagens opdateringer - 220210 2010-02-22T18:45:46+00:00
6516a6789,6790
> dagens småting og lidt oprydning i verb-kal 2010-02-19T19:45:14+00:00
> Torsdagens opdateringer - 180210 2010-02-18T18:48:48+00:00
6518a6793,6794
> Tirsdagens opdateringer 2010-02-16T19:06:56+00:00
> dagens småting 2010-02-16T18:56:02+00:00
6520a6797
> Mandagens opdateringer 2010-02-15T19:09:39+00:00
6521a6799,6800
> lidt sima 2010-02-14T20:49:19+00:00
> Fredagens opdateringer - 120210 2010-02-12T18:53:22+00:00
6523a6803,6804
> Torsdagens opdateringer 2010-02-11T18:54:57+00:00
> Onsdagens opdateringer 2010-02-10T18:55:25+00:00
6525a6807,6808
> En enkelt rettelse paa gr. af disambiguitet 2010-02-05T21:13:57+00:00
> +NAR=NGAJAP... 2010-02-05T19:15:33+00:00
6527a6811
> 5/1-2010 fredagens småting 2010-02-05T18:04:09+00:00
6528a6813,6814
> torsdag 4 jan 2010 2010-02-04T18:40:05+00:00
> Rettet QQIP=SSAAR til QQISSAAR 2010-02-04T18:12:17+00:00
6530a6817
> ... 2010-02-04T16:51:42+00:00
6531a6819,6820
> Småting 2010-02-04T14:59:04+00:00
> 1. feb. 2010 2010-02-01T18:17:55+00:00
6533a6823
> kal-lex uden +SUR 2010-01-29T15:45:56+00:00
6534a6825,6826
> Tors 28 jan 2010-01-29T15:17:20+00:00
> Fredag 22/1 - Torsdag 28/1, glemt at sende de andre dage 2010-01-28T15:39:03+00:00
6536a6829,6830
> jd: dagens idiotarbejde 21.01.10 2010-01-21T17:40:38+00:00
> Removed one useless conditional target that caused make to produce 40 warnings of dropped dependencies. 2010-01-18T08:31:47+00:00
6538a6833,6834
> Foma support reinstantiated. Please make sure you update to the latest revision before committing any changes. 2010-01-18T08:16:28+00:00
> Fakultativ progressiv i-assimilation tilfoejet 2010-01-17T21:52:32+00:00
6540a6837
> Renaming caseconv to inituppercase, for consistency. 2010-01-17T18:15:41+00:00
6541a6839,6840
> Rettet case.regex til nyt navn 2010-01-17T17:52:58+00:00
> Tiljoejet GUNNAR og GUNNARSI 2010-01-16T20:19:18+00:00