aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
blob: 65a1d769f2d465a48a5f2b7e1a5206ec40ccc0ed (plain)
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
1001
2006-03-19  Sergey Poznyakoff  <gray@gnu.org.ua>

	* xml/Makefile.am (conf.sed): Fixed rule
	* xml/pl/arthra.xml, xml/pl/k_arthra.xml: Finished translation

2006-03-18  Sergey Poznyakoff  <gray@gnu.org.ua>

	* configure.ac (AC_CONFIG_FILES): Add xml/pl/Makefile
	* xml/Makefile.am: Add pl
	
	* cgi-bin/dict.cgi.in (get-topic-list): Update to match new db
	structure
	* data/db.struct: Finished i18n support
	* scm/dictrans.scm: Update to match new db structure

	* xml/pl: New directory
	* xml/pl/Makefile.am: New file
	* xml/pl/alfabhta.xml: New file
	* xml/pl/antonimies.xml: New file
	* xml/pl/arithmi.xml: New file
	* xml/pl/arthra.xml: New file
	* xml/pl/ellinika.xml: New file
	* xml/pl/epirrhmata.xml: New file
	* xml/pl/epitheta.xml: New file
	* xml/pl/intro.xml: New file
	* xml/pl/istoria.xml: New file
	* xml/pl/k_antonimies.xml: New file
	* xml/pl/k_arithmi.xml: New file
	* xml/pl/k_arthra.xml: New file
	* xml/pl/k_epirrhmata.xml: New file
	* xml/pl/k_epitheta.xml: New file
	* xml/pl/k_intro.xml: New file
	* xml/pl/k_oysiastika.xml: New file
	* xml/pl/k_rhmata.xml: New file
	* xml/pl/oysiastika.xml: New file
	* xml/pl/paroimies.xml: New file
	* xml/pl/profora.xml: New file
	* xml/pl/rhmata.xml: New file
	* xml/pl/tonos.xml: New file

	* xml/Makefile.am (lingua.conf): New goal
	* xml/pl/Makefile.am, xml/ru/Makefile.am (lingua.conf): Remove
	goal
	(stamp-lingua): Use configuration file from the parent directory
	* xml/lingua.conf.in: New file
	
2006-03-17  Sergey Poznyakoff  <gray@gnu.org.ua>

	* Makefile.am (install-html): Bugfix
	* mainstyle.css (table.news-summary): Minor fix
	* cgi-bin/dict.cgi.in: Improve i18n support. Translate all
	messages to Greek
	* cgi-bin/nea.cgi.in: Improve i18n support. Implement RSS generation.

	* data/0.xml, data/1.xml, data/2.xml, data/3.xml, data/4.xml,
	data/5.xml, data/7.xml, data/Ba.xml, data/Bae.xml, data/Be.xml,
	data/eg11.xml, data/eg8.xml, data/eg9.xml, data/iliada.xml,
	data/setup.xml (DICT): Add LANG attribute.

	* data/db.struct: Changes to allow for multi-lingual dictionaries
	and news lists.

	* po/LINGUAS: Add pl.
	* po/ru.po: Update
	* po/pl.po: New translation
	* po/POTFILES.in: Refer to source files

	* scm/dictrans.scm (DICT): Mandatory attribute LANG.
	(update-stat): Rewrite to match new table structure.
	(check-node,insert-node): Take destination language code as 
	3rd argument. All callers changed.

2006-03-01  Sergey Poznyakoff  <gray@gnu.org.ua>

	* mainstyle.css: Menu list classes

2006-01-29  Sergey Poznyakoff  <gray@gnu.org.ua>

	* xml/ru/ellinika.xml: Update copyright year.
	* graphics/parthenon-gnu.png: New file
	* cgi-bin/dict.cgi.in: Enable set names UTF-8.
	* xml/ru/lingua.conf.in (LOGO): Use parthenon-gnu.png

2005-09-30  Sergey Poznyakoff  <gray@gnu.org.ua>

	* .emacsrc, data/0.xml, data/1.xml, data/2.xml, data/3.xml,
	data/4.xml, data/5.xml, data/7.xml, data/Ba.xml, data/Bae.xml,
	data/Be.xml, data/eg11.xml, data/eg8.xml, data/eg9.xml,
	data/iliada.xml, data/setup.xml, data/iliada/2.3.xml,
	data/iliada/2.4.xml, xml/ru/alfabhta.xml, xml/ru/antonimies.xml,
	xml/ru/arithmi.xml, xml/ru/arthra.xml, xml/ru/ellinika.xml,
	xml/ru/epirrhmata.xml, xml/ru/epitheta.xml, xml/ru/intro.xml,
	xml/ru/istoria.xml, xml/ru/k_antonimies.xml, xml/ru/k_arithmi.xml,
	xml/ru/k_arthra.xml, xml/ru/k_epirrhmata.xml,
	xml/ru/k_epitheta.xml, xml/ru/k_intro.xml,
	xml/ru/k_oysiastika.xml, xml/ru/k_rhmata.xml,
	xml/ru/oysiastika.xml, xml/ru/paroimies.xml, xml/ru/profora.xml,
	xml/ru/rhmata.xml, xml/ru/tonos.xml: Change the alternative input
	method to cyrillic-jcuken.

2005-06-27  Sergey Poznyakoff  <gray@Noldor.runasimi.org>

	* mainstyle.css: Added new classes
	* cgi-bin/dict.cgi.in: Rewritten using new Gamma.
	* cgi-bin/nea.cgi.in: updated
	* po/POTFILES.in: Add nea.cgi
	* xml/ru/arthra.xml: Fix typo
	* xml/ru/ellinika.xml: Updated
	* xml/ru/lingua.conf.in: New tags.

2005-06-26  Sergey Poznyakoff  <gray@Noldor.runasimi.org>

	* cgi-bin/nea.cgi.in: Mostly rewritten

	* ellinika/cgi.scmi (monima-nea-template-file-name): New
	variable. Keeps the template name for a "permanent link" news
	article.
	* xml/ru/ellinika.xml: Initial provisions for news page.

2005-06-16  Sergey Poznyakoff  <gray@Ulysses.farlep.net>

	* data/0.xml: Updated
	* data/Ba.xml: Updated
	* data/db.struct: Set default collation to utf8_bin (until greek
	is available for utf)

2005-06-15  Sergey Poznyakoff  <gray@Noldor.runasimi.org>

	* data/Ba.xml: New file
	* data/Be.xml: New file
	* data/Bae.xml: New file
	* data/setup.xml: Updated
	* data/0.xml: Updated
	* data/1.xml: Updated
	* data/7.xml: Updated
	* data/eg11.xml: Updated
	* data/iliada/2.3.xml: Updated

2005-03-29  Sergey Poznyakoff  <gray@Noldor.runasimi.org>

	* data/0.xml: Spell check and other fixes
	* data/1.xml: Likewise
	* data/2.xml: Likewise
	* data/4.xml: Likewise
	* data/5.xml: Likewise
	* data/7.xml: Likewise
	* data/db.struct: Likewise
	* data/eg11.xml: Likewise
	* data/setup.xml: Likewise
	* data/iliada/2.3.xml: Likewise

2005-03-29  Sergey Poznyakoff  <gray@Ulysses.farlep.net>

	* cgi-bin/dict.cgi.in: Set utf8 mode (for mysql >= 4.1.10)
	(my-sql-query): New function. Wrapper over sql-query. All callers
	updated
	(fuzzy-search): Rewritten
	* scm/dictrans.scm: Set utf8 mode (for mysql >= 4.1.10)
	* data/db.struct: Updated for mysql >= 4.1.10
	
2005-02-15  Sergey Poznyakoff  <gray@Ulysses.farlep.net>

	* cgi-bin/dict.cgi.in (fuzzy-search): YABF: Yet another bugfix
	in dict.pos comparison
	(dict-html): Rewritten using (expand-template)
	* ellinika/cgi.scmi (expand-template): New function
	* xml/ru/antonimies.xml: Fixed typo
	* xml/ru/ellinika.xml: Add copyright tag. Modify dict page to
	match the new usage.
	* xml/ru/lingua.conf.in (KATHAREVUSA): Return #f

2005-02-14  Sergey Poznyakoff  <gray@Noldor.runasimi.org>

	* cgi-bin/nea.cgi.in: New file
	* cgi-bin/Makefile.am: Add nea.cgi
	* cgi-bin/dict.cgi.in: Moved common init part to (ellinika cgi)
	module
	(load-pos): Bugfix
	(fuzzy-search): Use = in dict.pos comparison
	* ellinika/cgi.scmi: New file
	* ellinika/xlat.scm (ellinika:translate-input): Check argument
	* ellinika/Makefile.am: Add cgi.scm
	* scm/dictrans.scm (current-article-set): Handle case when
	p-article is #f, i.e. after <P ID="">..</P>.

	* data/eg8.xml: New file.
	* data/eg9.xml: New file.
	* data/eg11.xml: New file.
	* data/Makefile.am: Added new files

	* data/0.xml: Updated
	* data/1.xml: Updated
	* data/2.xml: Updated
	* data/3.xml: Updated
	* data/4.xml: Updated
	* data/5.xml: Updated
	* data/7.xml: Updated
	* data/setup.xml: Updated

	* data/db.struct (news): New table

	* elisp/ellinika-dict-mode.el (ellinika-dict-guess-syntax): Handle
	<P ID..> tags
	(ellinika-dict-begin-article): Allow an article in node and pos modes.

	* xml/ru/istoria.xml: Minor fix
	
2005-02-09  Sergey Poznyakoff  <gray@Noldor.runasimi.org>

	* configure.ac: Require gettext 1.14.1
	(AUTOGENERATED): New variable
	
	* cgi-bin/Makefile.am (dict.sed): Replace AUTOGENERATED variable
	* scm/Makefile.am: Likewise
	
	* cgi-bin/dict.cgi.in (get-topic-list,fuzzy-search): Rewritten following the
	new scheme.
	* data/setup.xml: New file
	* data/Makefile.am (dict): New rule
	* data/db.struct (topic.category): New column
	(category): New table
	* po/ru.po: Updated

	* scm/dictrans.scm (insert-categories): New function. Fills
	category table.
	(CLASS,D,TD): New tags
	(check-node): Bail out if the topic is not declared.

	* graphics/button-powered_by_gnu.png: New file
	* graphics/left.png: New file
	* graphics/right.png: New file
	* graphics/up.png: New file

	* xml/ru/antonimies.xml: Section about using two pronouns with a
	verb
	* xml/ru/tonos.xml: Added anchors
	
2004-12-01  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* xml/ru/k_oysiastika.xml: Updated
	* xml/ru/oysiastika.xml: Updated

2004-11-29  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* xml/ru/ellinika.xml: Temporarily commented out empty pages.
	* xml/ru/epitheta.xml: Removed SPAN attributes from separators
	* xml/ru/k_intro.xml: Added 'notready' marker
	* xml/ru/k_oysiastika.xml: Updated
	* xml/ru/oysiastika.xml: Updated

2004-11-27  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* mainstyle.css: Updated
	* elisp/ellinika-mode.el (greek-input,ancient-greek-input): Minor
	fixes
	
	* xml/ru/k_intro.xml: New file ('k' stands for καθαρευούσα)
	* xml/ru/k_arthra.xml: Likewise
	* xml/ru/k_oysiastika.xml: Likewise
	* xml/ru/k_epitheta.xml: Likewise
	* xml/ru/k_epirrhmata.xml: Likewise
	* xml/ru/k_arithmi.xml: Likewise
	* xml/ru/k_antonimies.xml: Likewise
	* xml/ru/k_rhmata.xml: Likewise
	* xml/ru/Makefile.am: Added new files

	* xml/ru/alfabhta.xml: Moved kathareuousa parts to a separate file
	* xml/ru/arthra.xml: Likewise
	* xml/ru/arithmi.xml: Updated
	* xml/ru/ellinika.xml: New group "Кафаревуса"
	* xml/ru/istoria.xml: Minor fixes.
	* xml/ru/rhmata.xml: Minor fixes.
	
2004-10-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* mainstyle.css (footnote,katharevusa): New classes
	* elisp/ellinika-mode.el (greek-input): Allow to override default
	greek input method using buffer-local variable greek-input-method.
	(ancient-greek-input): New function. Enables greek-ibycus4 input
	method by default. Can be overridden using buffer-local variable
	ancient-greek-input-method.
	
	* xml/ru/alfabhta.xml: Updated. Added some info about katharevusa
	* xml/ru/arithmi.xml: Likewise.
	* xml/ru/arthra.xml: Likewise.
	* xml/ru/epitheta.xml: Likewise.
	* xml/ru/oysiastika.xml: Likewise.
	* xml/ru/profora.xml: Likewise.
	
	* xml/ru/lingua.conf.in (KATAHREVUSA): New tag.
	
2004-10-26  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* mainstyle.css: Updated
	* xml/ru/epitheta.xml: Fixed use of FLECT
	* xml/ru/profora.xml: New file
	* xml/ru/Makefile.am: Add profora.xml
	* xml/ru/ellinika.xml: Likewise
	* xml/ru/alfabhta.xml: Updated
	
2004-10-25  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
	
	Reorganized directory structure:

	xml/
	xml/ru
	xml/el

	etc.

	* configure.ac: Updated
	* xml/Makefile.am: Updated
	* xml/ru/ellinika.xml: Moved from ../ellinika.ru.xml. Sorry, some
	intermediate revisions were lost due to my negligence :(
	* xml/ru/Makefile.am: New file
	* xml/ru/alfabhta.xml: Moved from ..
	* xml/ru/istoria.xml: Likewise.
	* xml/ru/rhmata.xml: Likewise.
	* xml/ru/antonimies.xml: Likewise.
	* xml/ru/epirrhmata.xml: Likewise.
	* xml/ru/lingua.conf.in: Likewise.
	* xml/ru/tonos.xml: Likewise.
	* xml/ru/arithmi.xml: Likewise.
	* xml/ru/epitheta.xml: Likewise.
	* xml/ru/oysiastika.xml: Likewise.
	* xml/ru/arthra.xml: Likewise.
	* xml/ru/intro.xml: Likewise.
	* xml/ru/paroimies.xml: Likewise.

	* xml/el/ellinika.xml: Moved from ../ellinika.el.xml
	
2004-10-23  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* elisp/Makefile.am: Updated
	* xml/Makefile.am: Updated
	* xml/alfabhta.xml: New file
	* xml/intro.xml: New file
	* xml/istoria.xml: New file
	* xml/ellinika.ru.xml: Updated

2004-10-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* elisp/Makefile.am: forgotten to add ellinika-mode.el
	* xml/Makefile.am: Use xmlt to translate the pages

2004-10-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* elisp/ellinika-mode.el: Base mode for editing Ellinika XML files
	* elisp/ellinika-dict-mode.el: Derive ellinika-dict-mode from
	ellinika-mode
	* .emacsrc: Updated

	* xml/antonimies.xml: Set up for Ellinika-mode
	* xml/arithmi.xml: Likewise
	* xml/arthra.xml: Likewise
	* xml/ellinika.el.xml: Likewise
	* xml/ellinika.ru.xml: Likewise
	* xml/epirrhmata.xml: Likewise
	* xml/epitheta.xml: Likewise
	* xml/oysiastika.xml: Likewise
	* xml/paroimies.xml: Likewise
	* xml/rhmata.xml: Likewise
	* xml/tonos.xml: Likewise

2004-10-15  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* .emacsrc: Set up for spell checking
	* elisp/ellinika-dict-mode.el: Set up for spell checking
	* cgi-bin/dict.cgi.in (get-topic-list): Order topics
	alphabetically

	* data/0.xml: Checked spelling
	* data/1.xml: Likewise
	* data/2.xml: Likewise
	* data/3.xml: Likewise
	* data/4.xml: Likewise
	* data/5.xml: Likewise
	* data/7.xml: Likewise
	* data/Makefile.am: Likewise
	* data/iliada.xml: Likewise
	* data/iliada/2.3.xml: Likewise
	* data/iliada/2.4.xml: Likewise
	* xml/antonimies.xml: Likewise
	* xml/arithmi.xml: Likewise
	* xml/oysiastika.xml: Likewise
	* xml/rhmata.xml: Likewise

2004-10-14  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* data/0.xml
	* data/7.xml
	* data/iliada.xml
	* data/iliada/2.3.xml
	* data/iliada/2.4.xml: New file
	* data/Makefile.am: Updated
	* elisp/ellinika-dict-mode.el: Heavily modified
	* scm/dictrans.scm (cleanup-db): Cleanup locus table

2004-10-13  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* cgi-bin/dict.cgi.in (make-cgi-name): Fixed html-4.01 conformance
	* scm/dictrans.scm: #:topic was handled incorrectly.
	Improved --help output
	* data/iliada/2.3.xml: Fixed typo.

	* .emacsrc: Load ellinika-dict-mode.el
	* Makefile.am: Added elisp
	* configure.ac: Added elisp
	* cgi-bin/Makefile.am: Added copyleft statement.

	* elisp: New dir
	* elisp/Makefile.am: New file.
	* elisp/.cvsignore: New file.
	* elisp/ellinika-dict-mode.el: Emacs mode for editing dictionaries
	
	* data/0.xml: Updated 
	* data/1.xml: Updated
	* data/2.xml: Updated
	* data/3.xml: Updated
	* data/4.xml: Updated
	* data/5.xml: Updated
	* data/7.xml: Updated
	* data/Makefile.am: Updated EXTRA_DIST
	* data/db.struct (locus): New table
	* data/iliada.xml: New file
	* data/iliada: New dir
	* data/iliada/2.3.xml: New file

	* scm/dictrans.scm: Added INCLUDE support.
	Diagnose duplicate entries.
	Fixed bug in NODE.

2004-10-12  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* configure.ac: Avoid duplicating elements in %load-path
	* scm/Makefile.am (dictrans.sed): Updated rule
	* scm/dictrans.scm: Updated

	* configure.ac: Use the new MU_CHECK_GUILE.
	* cgi-bin/Makefile.am: Create a separate sed program file.
	* cgi-bin/dict.cgi.in: Use modules from gamma
	* m4/guile.m4: Updated from xmltrans.
	* scm/dictrans.scm: Use (gamma sql)

2004-10-08  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* Makefile.am: Reorganized
	* configure.ac: Likewise.
	* cgi-bin/dict.cgi.in: Use (xmltools dict) and (ellinika xlat)
	* ellinika: New directory
	* ellinika/Makefile.am: New file
	* ellinika/xlat.scm: transliteration module
	* dictrans.scm: Moved to ...
	* scm/dictrans.scm: ... here
	* scm/Makefile.am: Updated
	* scm/.cvsignore: New file
	
	* data/dict.0: Removed
	* data/dict.1: Removed
	* data/dict.2: Removed
	* data/dict.3: Removed
	* data/dict.4: Removed
	* data/dict.5: Removed
	* data/dict.7: Removed
	* data/dict.m4: Removed
	
	* src/.cvsignore: Removed
	* src/.gdbinit: Removed
	* src/Makefile.am: Removed
	* src/emit.c: Removed
	* src/gram.y: Removed
	* src/input.l: Removed
	* src/list.c: Removed
	* src/list.h: Removed
	* src/main.c: Removed
	* src/mem.h: Removed
	* src/sql.c: Removed
	* src/trans.h: Removed
	* src/xcript.c: Removed

2004-10-08  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
	
	* dictrans.scm: Mostly finished :^)

2004-10-07  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* dictrans.scm: Dictionary parser
	* data/0.xml: Converted dictionary file
	* data/1.xml: Converted dictionary file 
	* data/2.xml: Converted dictionary file
	* data/3.xml: Converted dictionary file
	* data/4.xml: Converted dictionary file
	* data/5.xml: Converted dictionary file
	* data/7.xml: Converted dictionary file

2004-10-04  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* xml/COPYING.FDL: New file
	* xml/Makefile.am (EXTRA_DIST): Added COPYING.FDL
	* xml/antonimies.xml: Use Emacs sgml-mode. Added copylieft
	header.
	* xml/arithmi.xml: Likewise
	* xml/arthra.xml: Likewise
	* xml/ellinika.el.xml: Likewise
	* xml/ellinika.ru.xml: Likewise
	* xml/epirrhmata.xml: Likewise
	* xml/epitheta.xml: Likewise
	* xml/oysiastika.xml: Likewise
	* xml/paroimies.xml: Likewise
	* xml/rhmata.xml: Likewise
	* xml/tonos.xml: Likewise
	
2004-10-03  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* mainstyle.css (div.example): New class
	* xml/Makefile.am: Added tonos.xml
	* xml/ellinika.ru.xml: Likewise
	* xml/tonos.xml: New file.
	* xml/oysiastika.xml: Improved sectioning
	* xml/rhmata.xml: Likewise

2004-10-02  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* xml/ellinika.ru.xml: Added new MSGSTR
	* mainstyle.css: Updated.

2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* xml/ellinika.ru.xml: Updated homepage URL
	* xml/rhmata.xml: Fixed sectioning elements
	* xml/oysiastika.xml: Fixed spelling errors

2004-09-29  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* xml/antonimies.xml: Updated syntax
	* xml/arithmi.xml: Likewise
	* xml/arthra.xml: Likewise
	* xml/ellinika.el.xml: Likewise
	* xml/ellinika.ru.xml: Likewise
	* xml/epirrhmata.xml: Likewise
	* xml/epitheta.xml: Likewise
	* xml/oysiastika.xml: Likewise
	* xml/paroimies.xml: Likewise
	* xml/rhmata.xml: Likewise

2004-09-28  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* Makefile.am: Use lingua instead of eXtrans
	* autogen.sh: Likewise
	* configure.ac: Likewise
	* xml/ellinika.ru.xml: Likewise
	* xml/Makefile.am: Likewise

	* xml/antonimies.xml: New file
	* xml/arithmi.xml: New file
	* xml/arthra.xml: New file
	* xml/epirrhmata.xml: New file
	* xml/epitheta.xml: New file
	* xml/oysiastika.xml: New file
	* xml/paroimies.xml: New file
	* xml/rhmata.xml: New file
	* xml/lingua.conf.in: New file

	* xtrans/LINGUA.html.xtrans: Removed
	* xtrans/Makefile.am: Removed
	* xtrans/i18n.inc: Removed
	* xtrans/.cvsignore: Removed 
	* lingua.xtrans: Removed

	* cgi-bin/.cvsignore: Updated
	* src/.cvsignore: Updated
	* xml/.cvsignore: Updated
	
2004-09-20  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* xml/ellinika.ru.xml: Several spelling fixes.

2004-06-27  Sergey Poznyakoff  <gray@Noldor.runasimi.org>

	* src/main.c (cleanup_db): Purge pending_links
	(main): Properly handle --cleanup.

2004-06-23  Sergey Poznyakoff  <gray@Noldor.runasimi.org>

	* src/main.c (main): Bugfix

2004-06-22  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
	
	* src/main.c (main): Switched to getopt_long.
	* src/trans.h: Include config.h
	* src/Makefile.am: Added copyleft header
	* src/gram.y: Likewise.
	* src/input.l: Likewise.
	* src/sql.c: Likewise.
	* src/xcript.c: Likewise

2004-06-21  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* xml/ellinika.ru.xml: Bugfixes.

2004-06-21  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
	
	Initial implementation of incremental updates.
	
	* data/db.struct (antonym,xref): Replaced by 'links'
	(pending_links): New table. Keeps unresolved links.
	* data/dict.0: Updated
	* cgi-bin/dict.cgi.in: Reflect changes to the database
	structure.
	* src/main.c: Use pending_links for resolving antonym and
	cross-reference links.
	* src/sql.c (sql_num_tuples): New (kludgy) function.
	* src/trans.h: Updated

2004-06-21  Sergey Poznyakoff  <gray@Noldor.runasimi.org>

	* xtrans/LINGUA.html.xtrans (Endtag: ITEM): Removed incorrect
	condition that prevented rowheading class from being issued for
	item 0,0
	* data/dict.0: Updated
	* data/dict.1: Updated
	* data/dict.2: Updated
	* data/dict.4: Updated
	* data/dict.5: Updated
	* data/dict.7: Updated

2004-06-20  Sergey Poznyakoff  <gray@Noldor.runasimi.org>

	* mainstyle.css (TD.std): New class
	* xml/ellinika.ru.xml: Updated
	* xtrans/LINGUA.html.xtrans (ITEM,TABULAR): Handle ROWSPAN
	attribute
	(TABULAR): New attribute COLALIGN sets default alignment of
	table columns.
	(SEPARATOR): Inherit INITCOUNT from the parent TABULAR tag.

2004-06-19  Sergey Poznyakoff  <gray@Noldor.runasimi.org>

	* data/db.struct: New table 'pos' keeps information about
	parts of speech. Dict.pos changed: the part of speech of
	each dictionary entry is stored as a bitmask, e.g.
	verb|transitive or substanive|masculine, etc. This facilitates
	searches and makes the database more flexible.
	* data/dict.0: Lots of fixes.
	* data/dict.1: Likewise
	* data/dict.2: Likewise
	* data/dict.3: Likewise
	* data/dict.4: Likewise
	* data/dict.5: Likewise

	* src/gram.y: Reflect changes to the database structure.
	* src/main.c: Likewise
	* src/trans.h: Likewise
	
	* src/dict.cgi.in: Likewise
	
2004-06-19  Sergey Poznyakoff  <gray@Noldor.runasimi.org>

	* data/dict.0: Updated
	* data/dict.m4 (SAMP): New macro

2004-06-18  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* Makefile.am: Pass configuration variables to eXtrans
	using -D command line option (requires my last update to eXtrans).
	* xtrans/LINGUA.html.xtrans: Use xtrans environment to get
	the configuration parameters.
	(PageTemplate): Removed erroneous double-percent signs.
	
	* data/dict.0: Removed duplicates
	* data/dict.1: Likewise
	* data/dict.2: Likewise
	* data/dict.3: Likewise
	* data/dict.5: Likewise
	
	* src/sql.c: Minor formatting changes

	* xml/ellinika.ru.xml: Minor update
	
2004-06-18  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* xtrans/LINGUA.html.xtrans: Use 'span' instead
	of 'repeat' to conform to 4.01 transitional.

2004-06-15  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* data/dict.0: Updated
	* data/dict.5: Updated

2004-06-14  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* data/dict.0: Updated
	* data/dict.1: Updated
	* data/dict.3: Updated
	* data/dict.4: Updated

2004-06-14  Sergey Poznyakoff  <gray@Noldor.runasimi.org>

	* cgi-bin/dict.cgi.in: Updated 
	* data/dict.0: Updated 
	* data/dict.1: Updated 
	* xml/ellinika.ru.xml: Updated

2004-06-13  Sergey Poznyakoff  <gray@Noldor.runasimi.org>

	* mainstyle.css (comment,expl): New styles

	* cgi-bin/dict.cgi.in: Display dictionary stats

	* data/db.struct (stat): New table
	* data/dict.m4: New file	
	* data/dict.0: New file
	* data/dict.1: Use m4 macros
	* data/dict.2: Likewise
	* data/dict.3: Likewise
	* data/dict.4: Likewise
	* data/dict.5: Likewise
	* data/dict.7: Likewise
	* po/ru.po: Updated

	* scm/conj.scm: Updated
	* scm/xlat.scm: Updated
	
	* src/gram.y (parse): Change declaration
	(yyerror): file_name can be NULL
	* src/input.l: Hande LINE statement
	(make_m4_args,yywrap,set_location): New functions
	(open_input): Preprocess sources using m4
	* src/main.c: Update call to parse(). New command line
	options: -I passes include dir to m4, -m sets full path
	to m4 binary
	(update_stat): Updated stat table.
	* src/trans.h: Updated

	* xml/ellinika.ru.xml (dict): Provide dictionary statistics
	* xtrans/LINGUA.html.xtrans (BOTTOM): New tag
	(ClosePage): Add BOTTOM info, if available

2004-06-11  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* scm: New directory
	* scm/xlat.scm: New file. Handles translations from Greek to
	internal representation and vice-versa.
	* scm/conj.scm: New file. Verb conjugator.

2004-06-10  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* cgi-bin/dict.cgi.in (transcription-list): Bugfix.

2004-05-31  Sergey Poznyakoff  <gray@Noldor.runasimi.org>

	* mainstyle.css (.example): Changed background-color
	(.sample): New style
	* xml/ellinika.ru.xml: Finished chapter 'indefinite
	adjectives.'
	Use <SAMP> instead of <GR>
	Use new tabular environment 'TYPE=EXAMPLE' for examples.
	* xtrans/LINGUA.html.xtrans (TABULAR): New attribute 'TYPE'.
	The only value implemented currently is 'EXAMPLE'
	(SAMP): New tag
	(NOTREADY): Rewritten
	* graphics/construction.jpg: New file

2004-05-30  Sergey Poznyakoff  <gray@Noldor.runasimi.org>

	* mainstyle.css (.translation): New class
	* cgi-bin/dict.cgi.in (part-of-speech): Fixed typo.
	* xml/ellinika.ru.xml: Added section about indefinite
	adjectives.
	Use <SUBSCRIPT> wherever necessary.
	Use quoted tags.
	* xtrans/LINGUA.html.xtrans (expand_text): New function. Expands
	quoted tags.
	(PageTemplate,ITEM,put_menu_item,menu_map): Use expand_text
	(SECTION): Output <HR>
	(SUBSCRIPT): New tag
	(EXAMPLE): Rewritten
	(TRANS): New tag
	
2004-05-29  Sergey Poznyakoff  <gray@Noldor.runasimi.org>

	* mainstyle.css (.example): Changed background color
	
2004-05-29  Sergey Poznyakoff  <gray@Noldor.runasimi.org>

	* xml/ellinika.ru.xml: Added B1 and B2 conjugation.
	* mainstyle.css (THEAD.std): Added background color.

2004-05-26  Sergey Poznyakoff  <gray@Noldor.runasimi.org>

	* mainstyle.css (notready): New style
	* data/dict.5: Updated
	* data/dict.7: New file.
	* xml/ellinika.ru.xml: Updated. Written chapter about adjectives.
	* xtrans/LINGUA.html.xtrans: Moved navigation bar to the right
	side of the page.
	(EMPH,DFN,IT,EXAMPLE): Use nostrip
	(TABULAR): New attribute SPACE
	(SEPARATOR): New attributes SPAN and INITCOUNT
	(NOTREADY): New tag.

2004-04-18  Sergey Poznyakoff  <gray@Noldor.runasimi.org>

	* data/dict.1: Updated
	* data/dict.2: Updated
	* data/dict.5: New file
	* xml/ellinika.ru.xml: Updated
	* xtrans/LINGUA.html.xtrans: Minor changes
	* cgi-bin/dict.cgi.in (display-results): Replace tilde in
	dictionary articles.
	(dict-search): Make the first condition stricter.

2004-04-06  Sergey Poznyakoff  <gray@Noldor.runasimi.org>

	* xml/ellinika.ru.xml: More info on aoristos
	* xtrans/LINGUA.html.xtrans (BOLD): Removed
	(EMPH,DFN): New tags

	* mainstyle.css: Changed separator background
	* xtrans/LINGUA.html.xtrans (SECTION)
	(SUBSECTION, SUBSUBSECTION): New sectioning tags 
	All sectioning commands are able to take ID attribute, indicating
	reference anchor.
	(XREF): New tag.
	(ITEM) SPAN may be 0, indicating the maximum number of itemsm
	detected so far
	(FLECTN): Removed
	(FLECT): Implement the functionality of FLECTN
	* xml/ellinika.ru.xml: Use new sectioning tags, cross references
	and new ROWHEADING semantics.

	* data/dict.1: Updated
	* data/dict.2: Updated
	* data/dict.3: Updated
	* data/dict.4: Updated
	* xml/ellinika.ru.xml: More proverbs
	* xtrans/LINGUA.html.xtrans: Close <P> blocks before opening
	another block tag.
	
2004-03-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* cgi-bin/dict.cgi.in (translate-kbd): Recognize \th, \ks
	and \ps escapes. Translate 'th' to 'thita' when followed by
	a vocal.
	* data/dict.1: Minor spelling fix
	* data/dict.2: Likewise
	* data/dict.3: Likewise 
 	* data/dict.4: Likewise

2004-03-26  Sergey Poznyakoff  <gray@Noldor.runasimi.org>

	* xtrans/LINGUA.html.xtrans (Starttag): COLHEADING argument
	sets the THEAD class
	* xml/ellinika.el.xml: Updated. New chapter 'Irregular verbs'

2004-03-18  Sergey Poznyakoff  <gray@Noldor.runasimi.org>

	* xtrans/i18n.inc: Minor update
	* xtrans/LINGUA.html.xtrans: Lots of changes. Use modified
	version of eXtrans
	* mainstyle.css: Updated
	* xml/ellinika.el.xml: Added numerals and (partially) pronouns
	* Makefile.am (all-local): Modified eXtrans returns correct
	status

2004-03-17  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* xtrans/i18n.inc: Translations are now local to LINGUA tag
	* xtrans/LINGUA.html.xtrans (Endtag LINGUA): Removed call
	to i18cleanup().
	
2004-03-17  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* xtrans/LINGUA.html.xtrans: Translated UTF-8 literals to English
	to facilitate the transition of the Runasimi site to eXtrans 
	* xml/ellinika.el.xml: Updated
	* xml/ellinika.ru.xml: Updated
	
2004-03-17  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* xtrans/LINGUA.html.xtrans: Updated
	* xml/ellinika.ru.xml: Updated

2004-03-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* mainstyle.css: New file
	* Makefile.am: Install mainstyle.css
	* xtrans/LINGUA.html.xtrans: Use stylesheets
	* graphics/valid-css.png: Added to the repository

2004-03-16  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
	
	* autogen.sh: Create db subdirectory 
	* xml/ellinika.ru.xml: Added chapter "proverbs".
	Explicitly generate "Navigation" group
	Chapter "nouns" split into smaller sections
	Chapter "verbs": Started writing
	* xtrans/LINGUA.html.xtrans: Lots of changes

2004-03-09  Sergey Poznyakoff  <gray@Noldor.runasimi.org>

	* cgi-bin/dict.cgi.in (make-cgi-name): Minor fix. Do not print a
	lone ? mark' 

2004-03-09  Sergey Poznyakoff  <gray@Noldor.runasimi.org>
	
	* data/dict.1: Updated
	* data/dict.2: Updated
	* data/dict.3: Updated
	* data/dict.4: New file

2004-03-08  Sergey Poznyakoff  <gray@Noldor.runasimi.org>

	* xml/ellinika.ru.xml: Updated
	* xtrans/LINGUA.html.xtrans: Updated

2004-03-08  Sergey Poznyakoff  <gray@Noldor.runasimi.org>
	
	* src/M