File: 10-change-paths-names.patch

package info (click to toggle)
ferret 0.7-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,828 kB
  • sloc: tcl: 22,364; makefile: 112
file content (1417 lines) | stat: -rw-r--r-- 31,680 bytes parent folder | download | duplicates (3)
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
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
Description: Change paths to use ferret name instead of gerwin.
Author: Mònica Ramírez Arceda <monica@debian.org>
Last-Update: 2017-05-29

--- a/ferret
+++ b/ferret
@@ -1,2 +1,2 @@
 #!/usr/bin/wish
-source src/gerwin.tcl
+source /usr/share/ferret/ferret.tcl
--- a/ferret.bat
+++ b/ferret.bat
@@ -1 +1 @@
-wishrun.exe gerwin.tcl
+wishrun.exe ferret.tcl
--- /dev/null
+++ b/ferretml/gerwinml.dtd
@@ -0,0 +1,98 @@
+<!-- GerwinML DTD - Gerwin Table Markup Language -->
+<!-- Public ID: "-//Jose E. Marchesi//DTD GewinML XML V0.1//EN" -->
+<!-- Copyright (C) 2003 Jose E. Marchesi jemarch@gnu.org -->
+
+<!-- 
+  This program is free software; you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation; either version 2 of the License, or
+  (at your option) any later version.
+
+  This program is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with this program; if not, write to the Free Software
+  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+-->
+
+
+<!-- root element -->
+<!ELEMENT gerwinml (project)>
+
+<!-- project element -->
+<!ELEMENT project (tables | er)>
+
+   <!ATTLIST project name    CDATA #REQUIRED
+	             file CDATA #REQUIRED
+                     author CDATA #REQUIRED
+		     >		     
+
+<!-- tables element -->
+<!ELEMENT tables (table*)>
+
+<!-- table element -->
+<!ELEMENT table (table_attributes,table_restrictions?)>
+
+    <!ATTLIST table name CDATA #REQUIRED>
+
+<!-- table_attributes element -->
+<!ELEMENT table_attributes (table_attribute+)>
+
+
+<!-- table_attribute element -->
+<!ELEMENT table_attribute>
+
+  <!ATTLIST table_attribute name        CDATA        #REQUIRED
+                            domain      CDATA        #REQUIRED
+			    >		   
+
+<!-- table_restrictions element -->
+<!ELEMENT table_restrictions (primary_key*,not_nulleable*,foreign_keys*)>
+
+
+<!-- primary_key element -->
+<!ELEMENT primary_key (primary_key_attributes)>
+
+<!-- primary_key_attributes element -->
+<!ELEMENT primary_key_attributes (primary_key_attribute+)>
+
+<!-- primary_key_attribute element -->
+<!ELEMENT primary_key_attribute>
+
+  <!ATTLIST primary_key_attribute name CDATA #REQUIRED>
+
+
+<!-- not_nulleable element -->
+<!ELEMENT not_nulleable (not_nulleable_attributes+)>
+
+<!-- not_nulleable_attributes element -->
+<!ELEMENT not_nulleable_attributes (not_nulleable_attribute+)>
+
+<!-- not_nulleable_attribute -->
+<!ELEMENT not_nulleable_attribute>
+
+   <!ATTLIST not_nulleable_attribute name CDATA #REQUIRED>
+
+<!-- foreign_keys element -->
+<!ELEMENT foreign_keys (foreign_key+)>
+
+<!-- foreign_key element -->
+<!ELEMENT foreign_key (foreign_key_attributes)>
+
+   <!ATTLIST foreign_key reference_table CDATA #REQUIRED>
+
+<!-- foreign_key_attributes element -->
+<!ELEMENT foreign_key_attributes (foreign_key_attribute+)>
+
+<!-- foreign_key_attribute element -->
+<!ELEMENT foreign_key_attribute>
+
+   <!ATTLIST foreign_key_attribute name CDATA #REQUIRED
+                                   rattribute CDATA #REQUIRED
+				   >				   
+
+
+
--- a/gerwinml/gerwinml.dtd
+++ /dev/null
@@ -1,98 +0,0 @@
-<!-- GerwinML DTD - Gerwin Table Markup Language -->
-<!-- Public ID: "-//Jose E. Marchesi//DTD GewinML XML V0.1//EN" -->
-<!-- Copyright (C) 2003 Jose E. Marchesi jemarch@gnu.org -->
-
-<!-- 
-  This program is free software; you can redistribute it and/or modify
-  it under the terms of the GNU General Public License as published by
-  the Free Software Foundation; either version 2 of the License, or
-  (at your option) any later version.
-
-  This program is distributed in the hope that it will be useful,
-  but WITHOUT ANY WARRANTY; without even the implied warranty of
-  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-  GNU General Public License for more details.
-
-  You should have received a copy of the GNU General Public License
-  along with this program; if not, write to the Free Software
-  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
--->
-
-
-<!-- root element -->
-<!ELEMENT gerwinml (project)>
-
-<!-- project element -->
-<!ELEMENT project (tables | er)>
-
-   <!ATTLIST project name    CDATA #REQUIRED
-	             file CDATA #REQUIRED
-                     author CDATA #REQUIRED
-		     >		     
-
-<!-- tables element -->
-<!ELEMENT tables (table*)>
-
-<!-- table element -->
-<!ELEMENT table (table_attributes,table_restrictions?)>
-
-    <!ATTLIST table name CDATA #REQUIRED>
-
-<!-- table_attributes element -->
-<!ELEMENT table_attributes (table_attribute+)>
-
-
-<!-- table_attribute element -->
-<!ELEMENT table_attribute>
-
-  <!ATTLIST table_attribute name        CDATA        #REQUIRED
-                            domain      CDATA        #REQUIRED
-			    >		   
-
-<!-- table_restrictions element -->
-<!ELEMENT table_restrictions (primary_key*,not_nulleable*,foreign_keys*)>
-
-
-<!-- primary_key element -->
-<!ELEMENT primary_key (primary_key_attributes)>
-
-<!-- primary_key_attributes element -->
-<!ELEMENT primary_key_attributes (primary_key_attribute+)>
-
-<!-- primary_key_attribute element -->
-<!ELEMENT primary_key_attribute>
-
-  <!ATTLIST primary_key_attribute name CDATA #REQUIRED>
-
-
-<!-- not_nulleable element -->
-<!ELEMENT not_nulleable (not_nulleable_attributes+)>
-
-<!-- not_nulleable_attributes element -->
-<!ELEMENT not_nulleable_attributes (not_nulleable_attribute+)>
-
-<!-- not_nulleable_attribute -->
-<!ELEMENT not_nulleable_attribute>
-
-   <!ATTLIST not_nulleable_attribute name CDATA #REQUIRED>
-
-<!-- foreign_keys element -->
-<!ELEMENT foreign_keys (foreign_key+)>
-
-<!-- foreign_key element -->
-<!ELEMENT foreign_key (foreign_key_attributes)>
-
-   <!ATTLIST foreign_key reference_table CDATA #REQUIRED>
-
-<!-- foreign_key_attributes element -->
-<!ELEMENT foreign_key_attributes (foreign_key_attribute+)>
-
-<!-- foreign_key_attribute element -->
-<!ELEMENT foreign_key_attribute>
-
-   <!ATTLIST foreign_key_attribute name CDATA #REQUIRED
-                                   rattribute CDATA #REQUIRED
-				   >				   
-
-
-
--- /dev/null
+++ b/src/ferret.tcl
@@ -0,0 +1,910 @@
+;# gerwin.tcl -- Gerwin
+;#
+;# Main file.
+;#
+;# Copyright (C) 2002-2008 Jose E. Marchesi
+;#
+;# Time-stamp: "08/11/16 19:20:26 jemarch"
+
+;# This program is free software; you can redistribute it and/or
+;# modify it under the terms of the GNU General Public License as
+;# published by the Free Software Foundation; either version 3 of
+;# the License, or (at your option) any later version.
+
+;# This program is distributed in the hope that it will be useful,
+;# but WITHOUT ANY WARRANTY; without even the implied warranty of
+;# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;# GNU General Public License for more details.
+
+;# You should have received a copy of the GNU General Public License
+;# along with this program.  If not, see
+;# <http://www.gnu.org/licenses/>.
+
+;#
+;# gerwin_init
+;#
+;# Initializes gerwin
+
+
+proc gerwin_init {} {
+
+    ;# Initialize the gui
+    gui_init .gerwin
+
+    ;# Initialize the bitmap library
+    ;#Bitmap::_init
+
+
+    ;# Set the initial state: Moving
+    ;#gerwin_set_state Editing
+
+}
+
+
+;#
+;# gerwin_set_state STATE
+;#
+;# Set STATE as the new STATE for gerwin
+
+proc gerwin_set_state {state} {
+
+    global gmainframe
+    global gerwin_state
+    global gcanvas
+
+    set userframe [${gmainframe} getframe]
+
+    set gerwin_state $state
+    gui_change_state $state
+
+
+    ;# Change the bindings if necessary
+    switch $state {
+
+
+	"Inserting entity" -
+	"Inserting label" {
+
+	    ;# Destroy the binding on all the canvas objects
+	    ${gcanvas} bind all <Button-1> {}
+	    ;# Bind on the entire widget
+	    bind ${gcanvas} <Button-1> {gui_mark %x %y}
+	}
+	
+	default {
+	    ;# Destroy the binding on the canvas
+	    bind ${gcanvas} <Button-1> {}
+
+	    ;# Bind on all the canvas elements
+	    gui_launch_bindings
+	    
+	}
+    }
+}
+
+
+;#
+;# gerwin_quit
+;#
+;# Quits Gerwin
+
+proc gerwin_quit {} {
+
+    exit
+
+}
+
+
+;#
+;# gerwin_print_TD
+;#
+;# Print the gcanvas_td into a postscript file
+
+proc gerwin_print_TD {} {
+
+    global gcanvas_td
+
+    ;# Get the file where put the postscrip
+
+    set filetypes {{"PostScript" {.ps}}}
+
+    set f [tk_getSaveFile -initialdir "." \
+	       -filetypes $filetypes -title "Print to a PostScript file"]
+
+    ;# Switch over the result
+    switch $f {
+
+	"" {
+	    ;# Do nothing
+	    return
+	}
+	default {
+	    ;# Put the .ps suffix if it is not done
+	    if {! [string match "*.ps" $f] } then {
+		append f ".ps"
+	    }
+	    ;# Ok, save the postscript into f
+	    ;# Get the bounding box
+	    set bbox [${gcanvas_td} bbox all]
+	    set x [lindex $bbox 0]
+	    set y [lindex $bbox 1]
+	    set height [lindex $bbox 3]
+	    set width [lindex $bbox 2]
+	    
+	    ${gcanvas_td} postscript -file $f -colormode color \
+		-pageanchor c -width $width -height $height \
+		-x $x -y $y
+
+
+
+	}
+    }
+
+}
+
+
+;#
+;# gerwin_print_ER
+;#
+;# Print the gcanvas into a postscript file
+
+proc gerwin_print_ER {} {
+
+    global gcanvas
+
+    ;# Get the file where put the postscrip
+
+    set filetypes {{"PostScript" {.ps}}}
+
+    set f [tk_getSaveFile -initialdir "." \
+	       -filetypes $filetypes -title "Print to a PostScript file"]
+
+    ;# Switch over the result
+    switch $f {
+
+	"" {
+	    ;# Do nothing
+	    return
+	}
+	default {
+	    ;# Put the .ps suffix if it is not done
+	    if {! [string match "*.ps" $f] } then {
+		append f ".ps"
+	    }
+
+	    ;# Ok, save the postscript into f
+	    ;# Get the bounding box
+	    set bbox [${gcanvas} bbox all]
+	    set x [lindex $bbox 0]
+	    set y [lindex $bbox 1]
+	    set height [lindex $bbox 3]
+	    set width [lindex $bbox 2]
+	    
+	    ${gcanvas} postscript -file $f -colormode color \
+		-pageanchor c -width $width -height $height \
+		-x $x -y $y
+	    
+
+	}
+    }
+
+}
+
+
+;#
+;# gerwin_save_sql
+;# 
+;# Saves the current SQL on a file
+
+proc gerwin_save_sql {} {
+
+    global gmainframe
+    global gerwin_cproject_sqlfile
+    global gtext_sql
+
+    if {($gerwin_cproject_sqlfile == "none")} then {
+
+	MessageDlg ${gmainframe}.notice -title "Saving project" \
+	    -message "You must assign a SQL file to the project before saving it!" \
+	    -type ok
+
+	return
+
+    }
+    
+    set res [MessageDlg ${gmainframe}.notice -title "Saving SQL" \
+		 -message "Are you sure you want to save the SQL listing into ${gerwin_cproject_sqlfile}?" \
+		 -type yesno]
+
+    switch $res {
+
+	0 {
+	    ;# Yes, save it
+	    set fout [open ${gerwin_cproject_sqlfile} w]
+	    puts $fout [${gtext_sql} get 1.0 end]
+	    close $fout
+	} 
+	1 {
+	    ;# No
+	    return
+	}
+	    
+    }
+
+}
+
+
+
+;#
+;# gerwin_save_project
+;#
+;# Project saving dialog
+
+proc gerwin_save_project {} {
+
+    global gmainframe
+    global gerwin_cproject_name
+    global gerwin_cproject_file
+    
+    if {($gerwin_cproject_file == "none") || ($gerwin_cproject_file == "")} then {
+
+	MessageDlg ${gmainframe}.notice -title "Saving project" \
+	    -message "You must assign a file to the project before saving it!" \
+	    -type ok
+
+	return
+
+    }
+
+    set res [MessageDlg ${gmainframe}.notice -title "Saving project" \
+		 -message "Are you sure you want to save $gerwin_cproject_name into ${gerwin_cproject_file}?" \
+		 -type yesno]
+
+    switch $res {
+
+	0 {
+	    ;# Yes, save it
+	    gerwin_save_project_file
+	} 
+	1 {
+	    ;# No
+	    return
+	}
+	    
+    }
+
+}
+
+
+;# 
+;# gerwin_get_default_project_name
+;#
+
+proc gerwin_get_default_project_name {} {
+
+    global gerwin_project_counter 
+
+    return "Project$gerwin_project_counter"
+
+    incr gerwin_project_counter
+}
+
+;#
+;# gerwin_close_project
+;#
+;# Closes the current project
+
+proc gerwin_close_project {} {
+    
+    global gerwin_cproject_name
+    global gmainframe
+
+    global gcanvas
+    global gcanvas_td
+
+    ;# Do nothing if there is not any project open
+    if {${gerwin_cproject_name} == "none"} then {
+	return 
+    }
+
+    ;# Make sure we want to close the project
+    set res [MessageDlg ${gmainframe}.notice -title "Closing the project" \
+		 -message "Are you sure you want to close ${gerwin_cproject_name}?" \
+		 -type yesno]
+
+    switch $res {
+
+	0 {
+	    ;# Yes, close it
+	    gerwin_purge_project
+
+	    ;# Disable some buttons
+	    gui_no_project_opened
+
+	    ;# Resize the canvas
+# 	    ${gcanvas} configure -scrollregion {}
+# 	    ${gcanvas_td} configure -scrollregion {}
+
+	}
+	1 {
+	    ;# No, coward
+	    return
+	}
+
+    }
+
+}
+
+
+;#
+;# gerwin_open_project
+;#
+;# Select a project file and then make that project the current one
+
+proc gerwin_open_project {} {
+
+    global gmainframe
+    global gerwin_cproject_name
+
+    ;# Warning if there is another project opened
+    if {$gerwin_cproject_name != "none"} then {
+
+	set res [MessageDlg ${gmainframe}.notice -title "Open a new project?" \
+		     -message "There is another project opened. You must close it and then open a new one." \
+		     -type ok]
+	return
+    }
+		     
+
+    set filetypes {{"Gerwin Project" {.ger}}}
+    set f [tk_getOpenFile -initialdir "." \
+	       -filetypes $filetypes -title "Open a gerwin file"]
+
+    ;# switch over the result
+    switch $f {
+
+	"" {
+	    ;# Do nothing
+	    return
+	}
+	default {
+
+
+	    ;# Now we can edit
+	    gui_project_opened
+
+	    ;# Load the project from $f
+	    gerwin_load_project_file $f
+
+	}
+
+    }
+
+
+}
+
+
+;#
+;# gerwin_purge_project
+;#
+;# Purges all the gerwin state
+
+proc gerwin_purge_project {} {
+
+    global gerwin_entities
+    global gerwin_relations
+    global gerwin_tables
+    global gerwin_cproject_name 
+    global gerwin_cproject_file
+    global gerwin_cproject_sqlfile
+    global gerwin_cproject_author
+    global gerwin_entity_seq
+    global gerwin_output_active_format
+
+    global output_pages
+
+
+    set gerwin_cproject_name none
+    set gerwin_cproject_file none
+    set gerwin_cproject_author none
+
+    set gerwin_entity_seq 1
+
+
+    ;# Purge all relations
+    foreach r $gerwin_relations {
+
+	gob_delete_relation $r
+	gm_delete_relation $r
+	gui_edition_area_delete_page $r
+
+
+    }
+
+    set gerwin_relations {}
+
+    ;# Purge all entities
+    foreach e $gerwin_entities {
+
+	gob_delete_entity $e
+	gm_delete_entity $e
+	gui_edition_area_delete_page $e
+
+    }
+
+    set gerwin_entities {}
+
+    ;# Purge all tables
+    foreach t $gerwin_tables {
+
+	gob_delete_table $t
+	gm_delete_table $t
+    }
+
+    set gerwin_tables {}
+
+
+    ;# Purge project variables
+    set gerwin_cproject_file none
+    set gerwin_cproject_sqlfile none
+
+    ;# Purge the output pages
+    foreach op $output_pages {
+
+	gui_destroy_output_page $op
+
+    }
+
+    ;# Destroy the app area Domain page
+    ;#gui_app_area_destroy_Domain_page
+    ;# Destroy the app area Project page
+    gui_app_area_destroy_Project_page
+
+    ;# Destroy the rest of the app areas
+    gui_app_area_destroy_Output_page
+    gui_app_area_destroy_TD_page
+    gui_app_area_destroy_ER_page
+
+    ;# Delete the active format
+    set gerwin_output_active_format {}
+}
+
+
+;#
+;# gerwin_save_output_file FORMAT
+;#
+;# Save the FORMAT output to a file
+
+proc gerwin_save_output_file {format} {
+
+    global gmainframe
+    global gtext_output
+
+    set filename [tk_getSaveFile -initialdir "." \
+		      -title "Saving an output file"]
+
+    ;# Switch over the result
+    switch $filename {
+
+	"" {
+	    ;# Do nothing
+	    return
+
+	} 
+
+	default {
+
+	    ;# Make sure we want to save
+	    set res [MessageDlg ${gmainframe}.notice -title "Saving SQL" \
+			 -message "Are you sure you want to save this $format output into ${filename}?" \
+			 -type yesno]
+
+	    switch $res {
+
+		0 {
+		    ;# Yes, save it
+		    set fout [open ${filename} w]
+		    puts $fout [$gtext_output($format) get 1.0 end]
+		    close $fout
+
+		}
+		1 {
+		    ;# No
+		    return 
+
+		}
+	    }
+
+	}
+    }
+}
+
+
+;#
+;# gerwin_new_project
+;#
+;# Creates a new project, named after the project count
+
+proc gerwin_new_project {} {
+
+    global gerwin_cproject_name
+    global gerwin_cproject_file
+    global gerwin_cproject_author
+
+    global gcanvas
+
+    ;# Make sure the user really want to get a new project
+    if {$gerwin_cproject_name != "none"} then {
+
+	set answer [gui_yes_no_cancel "Another project is already opened.\nAre you sure \
+you want to discard the old project and start another one?"]
+
+
+	switch $answer {
+
+	    0 {
+		;# Purge the old project
+		gerwin_purge_project
+		
+	    }
+
+	    1 -
+	    2 {
+
+		return 
+	    }
+
+	}
+
+    }
+
+
+    ;# Set the default values for project attributes
+    set gerwin_cproject_name [gerwin_get_default_project_name]
+    set gerwin_cproject_file none
+    set gerwin_cproject_author "Anonymous GNUdist"
+
+
+
+    ;# Activate the buttons
+    gui_project_opened
+
+    ;# Scale the canvas
+    ${gcanvas} configure -scrollregion {0 0 1024 768}
+
+}
+
+
+;#
+;# gerwin_load_project_file FILENAME
+;# 
+;# Load a project from FILENAME
+
+proc gerwin_load_project_file {filename} {
+
+    global gerwin_cproject_name
+    global gerwin_cproject_file
+    global gerwin_cproject_author
+
+    global gerwin_entities
+    global gerwin_relations
+    global gerwin_entity
+    global gerwin_relation
+
+    global gm_entity
+    global gm_relation
+
+    global gerwin_relation_seq 
+    global gerwin_entity_seq
+
+    global gcanvas
+
+
+    ;# Open the input channel
+    ;# We suppose the file exist
+    set fin [open $filename r]
+
+    ;##
+    ;## Load in project information
+    ;##
+
+    gets $fin gerwin_cproject_name
+    gets $fin gerwin_cproject_file
+    gets $fin gerwin_cproject_author
+    gets $fin gerwin_entity_seq
+    gets $fin gerwin_relation_seq
+
+    ;##
+    ;## Load canvas information
+    ;##
+    gets $fin sreg
+    ${gcanvas} configure -scrollregion $sreg
+
+
+    ;##
+    ;## Load entity information
+    ;##
+
+    gets $fin numentities
+
+    for {set x 0} {$x < $numentities} {incr x} {
+
+	gets $fin ename ;# Entity name
+
+
+	gets $fin xpos ;# Get geometry information
+	gets $fin ypos
+
+	gob_create_entity $ename {} {} {} ;# Create the entity
+
+	;# Load in the attributes
+	gets $fin numattributes 
+
+	for {set y 0} {$y < $numattributes} {incr y} {
+
+	    gets $fin aline ;# Read the attribute line
+
+	    ;# Add the new attribute to the entity
+	    gob_entity_add_attribute $ename [lindex $aline 0] [lindex $aline 1]
+
+	}
+
+	;# Load in the keys
+	gets $fin numkeys
+	for {set y 0} {$y < $numkeys} {incr y} {
+
+	    gets $fin key ;# Read the key
+
+	    ;# Add the key to the entity
+	    gob_entity_add_attribute_to_key $ename $key
+	}
+
+
+	;# Load in the relations
+	gets $fin numrelations
+	for {set y 0} {$y < $numrelations} {incr y} {
+
+	    gets $fin relation ;# Read the relation
+
+	    ;# Add the relation to the entity
+	    gob_entity_add_relation $ename $relation
+
+	}
+
+	;# Ok, draw the entity
+	gm_draw_entity $ename $xpos $ypos
+    }
+
+    ;##
+    ;## Load in the relations
+    ;##
+
+    gets $fin numrelations
+
+    for {set x 0} {$x < $numrelations} {incr x} {
+
+	gets $fin rname ;# Relation name
+	gets $fin temp_reflexive ;# Reflexive relation?
+
+	gets $fin xpos ;# Geometry information
+	gets $fin ypos 
+
+	;# Create the relation
+	gob_create_relation $rname {} {}
+	set gerwin_relation($rname,reflexive) $temp_reflexive
+
+	;# Load in the attributes
+	gets $fin numattributes ;# Number of attributes
+
+	for {set y 0} {$y < $numattributes} {incr y} {
+
+	    gets $fin aline ;# Read the attribute line
+
+	    gob_relation_add_attribute $rname [lindex $aline 0] [lindex $aline 1]
+	}
+
+	;# Load in the entities
+	gets $fin numentities ;# Number of entities
+
+	for {set y 0} {$y < $numentities} {incr y} {
+
+	    gets $fin ename ;# Entity name
+	    gets $fin emincard ;# Entity minimal cardinality
+	    gets $fin emaxcard ;# Entity maximal cardinality
+
+	    gob_relation_add_entity $rname $ename $emincard $emaxcard
+
+	}
+
+	;# Ok, draw the relation
+	gm_draw_relation $rname $xpos $ypos
+
+	if {$gerwin_relation($rname,reflexive)} then {
+	    gm_relation_update_links_reflexive $rname
+	} else {
+	    gm_relation_update_links $rname
+	}
+
+    }
+
+    ;# Set some internal state
+
+    ;#set gerwin_entity_seq [expr $numentities]
+    ;#set gerwin_relation_seq [expr $numrelations]
+
+}
+
+
+;#
+;# gerwin_save_project_file
+;#
+;# Save the current project
+
+proc gerwin_save_project_file {} {
+
+    global gerwin_cproject_name
+    global gerwin_cproject_file
+    global gerwin_cproject_author
+
+    global gerwin_entities
+    global gerwin_relations
+    global gerwin_entity
+    global gerwin_relation
+
+    global gm_entity
+    global gm_relation
+
+    global gerwin_entity_seq
+    global gerwin_relation_seq
+    
+    global gcanvas
+
+    ;# Open the out channel
+    ;# We suposse the file exist
+    set filename $gerwin_cproject_file
+    set fout [open $filename w]
+
+
+    ;##
+    ;## Write out project information
+    ;##
+
+    puts $fout $gerwin_cproject_name
+    puts $fout $gerwin_cproject_file
+    puts $fout $gerwin_cproject_author
+    puts $fout $gerwin_entity_seq
+    puts $fout $gerwin_relation_seq
+
+    ;##
+    ;## Write out canvas size information
+    ;##
+    set sreg [${gcanvas} cget -scrollregion]
+    puts $fout $sreg
+
+
+    ;## 
+    ;## Write out entity information
+    ;##
+
+    set nentities [llength $gerwin_entities]
+
+    puts $fout $nentities   ;# Number of entities
+
+    foreach e $gerwin_entities {
+
+	puts $fout $e  ;# Entity name
+
+	;# Geometry attributes
+	puts $fout $gm_entity($e,xpos)
+	puts $fout $gm_entity($e,ypos)
+
+	set nattributes [llength $gerwin_entity($e,attributes)]
+	puts $fout $nattributes ;# Number of attributes
+
+	foreach a $gerwin_entity($e,attributes) {
+
+	    puts $fout $a   ;# Attributes
+
+	}
+
+	set nkeys [llength $gerwin_entity($e,key)]
+	puts $fout $nkeys ;# Number of key attributes
+
+	foreach k $gerwin_entity($e,key) {
+
+	    puts $fout $k  ;# Keys
+
+	}
+
+	set nrelations [llength $gerwin_entity($e,relations)]
+	puts $fout $nrelations ;# Number of relations
+
+	foreach r $gerwin_entity($e,relations) {
+
+	    puts $fout $r  ;# Relations
+
+	}
+
+    }
+
+    ;# Output relations
+    
+    set nrelations [llength $gerwin_relations]
+    puts $fout $nrelations ;# Number of relations
+
+    foreach r $gerwin_relations {
+
+	puts $fout $r  ;# Relation name
+	puts $fout $gerwin_relation($r,reflexive) ;# It is a reflexive relation?
+
+	;# Output geometry information
+	puts $fout $gm_relation($r,xpos)
+	puts $fout $gm_relation($r,ypos)
+
+	set nattributes [llength [gob_relation_get_attributes $r]]
+	puts $fout $nattributes ;# Number of attributes
+
+	foreach a [gob_relation_get_attributes $r] {
+
+	    puts $fout $a
+
+	}
+
+	set nentities [llength [gob_relation_get_entities $r]]
+	puts $fout $nentities ;# Number of entities
+
+	foreach e [gob_relation_get_entities $r] {
+
+	    set e [lindex $e 0]
+	    puts $fout $e ;# Entity name
+	    puts $fout [gob_relation_get_entity_min_card $r $e] ;# Entity min card
+	    puts $fout [gob_relation_get_entity_max_card $r $e] ;# Entity max card
+
+	}
+
+
+    }
+    
+    close $fout
+}
+
+
+
+;##### Load external packages
+
+lappend auto-path [file join /usr share ferret widgets]
+
+puts "Loading external megawidget libraries:"
+puts ""
+
+puts "     BWidget 1.6"
+lappend auto_path [file join . widgets bwidget]
+package require BWidget 1.6
+
+puts "     Icons 1.0"
+lappend auto_path [file join /usr share ferret widgets icons]
+package require icons 1.0    
+
+
+puts "     Tablelist 2.7"
+lappend auto_path [file join /usr share ferret widgets tablelist]
+package require Tablelist 2.7
+
+puts ""
+;###### Done loading libraries
+
+
+source /usr/share/ferret/globals.tcl
+source /usr/share/ferret/gob.tcl
+source /usr/share/ferret/gui.tcl
+source /usr/share/ferret/gm.tcl
+source /usr/share/ferret/gen.tcl
+source /usr/share/ferret/postgresql.tcl
+source /usr/share/ferret/mysql.tcl
+source /usr/share/ferret/sql92.tcl
+source /usr/share/ferret/gerwinml.tcl
+
+
+;# Ok, start!
+gerwin_init
+
--- /dev/null
+++ b/src/ferretml.tcl
@@ -0,0 +1,260 @@
+;# gerwinml.tcl -- Gerwin
+;#
+;# GerwinML tables generation routine
+;#
+;# Copyright (C) 2002-2008 Jose E. Marchesi
+;#
+;# Time-stamp: "08/11/16 19:20:07 jemarch"
+
+;# This program is free software; you can redistribute it and/or
+;# modify it under the terms of the GNU General Public License as
+;# published by the Free Software Foundation; either version 3 of
+;# the License, or (at your option) any later version.
+
+;# This program is distributed in the hope that it will be useful,
+;# but WITHOUT ANY WARRANTY; without even the implied warranty of
+;# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;# GNU General Public License for more details.
+
+;# You should have received a copy of the GNU General Public License
+;# along with this program.  If not, see
+;# <http://www.gnu.org/licenses/>.
+
+;# Register the format
+lappend gerwin_output_formats GerwinML
+
+;# Set the color scheme for this output format
+set output_colors(GerwinML) {
+
+    {{<!--.*} red}
+    {{.*-->} red}
+
+    {{<[a-zA-Z_]+} blue}
+    {{</[a-zA-Z_]+} blue}
+    {{>} blue}
+    {{/>} blue}
+    {{=} blue}
+    {{\".*?\"} orange}
+
+}
+
+;# Set the type scheme for this output format
+
+set gerwin_output_format_types(GerwinML) {
+
+    {{DYNAMIC_STRING(%d)}  {DYNAMIC_STRING(%d)}}
+    {{FIXED_STRING(%d)} {FIXED_STRING(%d)}}
+    {INTEGER INTEGER}
+    {FLOAT FLOAT}
+    {NATURAL INTEGER}
+    {CHARACTER CHARACTER}
+}
+
+
+
+;# The generation routine
+
+proc gen_TD_to_format_GerwinML {} {
+
+    global gerwin_cproject_name
+    global gerwin_cproject_author
+    global gerwin_cproject_file
+    global gerwin_output_active_format
+    global gerwin_tables
+    global gerwin_table
+
+    ;# Ok, generate the GerwinML
+    omit_line "<gerwinml>"
+    omit_line ""
+    omit_line "  <project name=\"$gerwin_cproject_name\" file=\"$gerwin_cproject_file\" author=\"$gerwin_cproject_author\">"
+    omit_line ""
+    omit_line "    <tables>"
+    ;# Iterate on the tables
+    foreach t $gerwin_tables {
+
+	set table_name $t
+
+	;# Some blank space before each table
+	omit_line ""
+	omit_line ""
+
+	omit_line "      <table name=\"$t\">"
+	omit_line ""
+
+	;# Emit the table attributes
+	omit_line "        <table_attributes>"      
+	omit_line ""
+
+	set nattributes [gob_table_get_nattributes $t]
+	set i 0
+	foreach a [gob_table_get_attributes $t] {
+	    incr i
+
+	    ;# See if the name contain any %
+	    ;# If it is the case, then this is a repeated foreign key
+	    ;# and the name in gob_table_get_foreign_keys is without the #!
+
+	    if {[regexp \% $a]} then {
+
+		;# Convert the # to an underscore
+		set nname [string map {% _} $a]
+
+	    } else {
+		set nname $a
+	    }
+
+	    ;# Write the attribute name and the attribute domain
+	    append line  "          <table_attribute name=\"$nname\" domain=\"[gob_table_get_attribute_domain $t $a]\"/>"
+
+	    ;# Ok, omit the line
+	    omit_line $line
+	    set line {}
+	}
+
+	omit_line ""
+	omit_line "        </table_attributes>"      
+
+
+	;# Now, emit the table restrictions
+	omit_line ""
+
+	;# Begin of table restrictions
+	omit_line ""
+	omit_line "        <table_restrictions>"
+
+	;# Begin of primary key
+	omit_line ""
+	omit_line "          <primary_key>"
+
+	;# Begin of primary_key_attributes
+	omit_line "            <primary_key_attributes>"
+
+	;# Generate primary key attributes
+	omit_line ""
+	foreach a [gob_table_get_key $t] {
+	    ;# Obtain the original name
+	    ;#regsub {.+%([^%]+)} $a "\\1" a
+	    set a [string map "% _" $a]
+	    omit_line "              <primary_key_attribute name=\"$a\"/>"
+	}
+
+	omit_line ""
+	omit_line "            </primary_key_attributes>"
+	;# End of primary_key_attributes
+
+	omit_line "          </primary_key>"
+	;# End of primary key
+
+	;# Begin of not_nulleable
+	omit_line ""
+	omit_line "          <not_nulleable>"
+
+	;# Begin of not_nulleable_attributes
+	omit_line "            <not_nulleable_attributes>"
+
+	;# Generate not-nulleable attributes
+	omit_line ""
+	foreach a [gob_table_get_attributes $t] {
+	    if {![gob_table_get_attribute_null $t $a]} then {
+		;# Normalize the name
+		;#regsub {.+%([^%]+)} $a "\\1" a
+		set a [string map "% _" $a]
+		
+		omit_line "              <not_nulleable_attribute name=\"$a\"/>"
+	    }
+	}
+
+
+	omit_line ""
+	omit_line "            </not_nulleable_attributes>"
+	;# End of not _nulleable_attributes
+
+	omit_line ""
+	omit_line "          </not_nulleable>"
+	;# End of not_nulleable
+
+	;# Begin of foreign_keys
+	omit_line ""
+	omit_line "          <foreign_keys>"
+	omit_line ""
+
+	;# Generate foreign_key elements
+	set rtables {}
+	foreach fkd [gob_table_get_foreign_keys $t] {
+
+	    set rtable [lindex $fkd 1]
+
+	    if {[lsearch $rtables $rtable] == -1} then {
+		lappend rtables $rtable
+	    }
+	}
+	;# Ok, now we have all the rtables into $rtables
+	
+	foreach rtable $rtables {
+
+	    ;# Begin of foreign_key
+	    omit_line "            <foreign_key reference_table=\"$rtable\">"
+	    omit_line ""
+
+	    ;# Begin of foreign_key_attributes
+	    omit_line "              <foreign_key_attributes>"
+	    omit_line ""
+
+	    ;# Emit the foreign keys for this rtable
+	    foreach a [gob_table_get_attributes $t] {
+
+		;# Get the remote name for the attribute
+		regsub {.+%([^%]+)} $a "\\1" nname
+		set nname [string map "% _" $nname]
+
+
+		if {[gob_table_is_foreign_key $t $a]} then {
+
+
+		    ;# Get the foreign key for the attribute
+		    set art [gob_table_get_foreign_key_rtable $t $a]
+
+		    if {$art == $rtable} then {
+
+			set a [string map "% _" $a]
+			;# Begin foreign_key_attribute
+			omit_line "                <foreign_key_attribute name=\"$a\" rattribute=\"$nname\"/>"
+
+		    }
+		}
+	    }
+
+
+	    omit_line ""
+	    omit_line "              </foreign_key_attributes>"
+	    ;# End of foreign_key_attributes
+
+	    omit_line ""
+	    omit_line "            </foreign_key>"
+	    ;# End of foreign_key
+	    omit_line ""
+
+	}
+
+
+	omit_line ""
+	omit_line "          </foreign_keys>"
+	;# End of foreign_keys
+
+	omit_line ""
+	omit_line "        </table_restrictions>"
+	;# End of table restrictions
+
+	omit_line ""
+	omit_line "      </table>"
+	omit_line ""
+	
+    }
+
+    omit_line "    </tables>"
+    omit_line ""
+    omit_line "  </project>"
+    omit_line ""
+    omit_line "</gerwinml>"
+}
+	
\ No newline at end of file
--- a/src/gui.tcl
+++ b/src/gui.tcl
@@ -117,7 +117,7 @@
     set gmainframe ${widget}
     
     ;# Title
-    wm title . "Gerwin $gerwin_version"
+    wm title . "Ferret $gerwin_version"
 
     ;# Create the fonts
     gui_create_fonts
@@ -921,9 +921,9 @@
 
     ;# Prepare the menu
     set mainmenu {
-	"&Gerwin" {} {} 0 {
+	"&Ferret" {} {} 0 {
 	    {separator}
-	    {command "&Exit Gerwin" {} "exit the application" {Ctrl e} -command gerwin_quit}
+	    {command "&Exit Ferret" {} "exit the application" {Ctrl e} -command gerwin_quit}
 	}
          
 	"&Project" {} {} 0 {