File: ChangeLog

package info (click to toggle)
gaphor 0.13.0-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 3,692 kB
  • ctags: 2,971
  • sloc: python: 19,981; xml: 247; makefile: 54; sh: 40
file content (1566 lines) | stat: -rw-r--r-- 60,374 bytes parent folder | download | duplicates (2)
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
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566

[ for detailed log entries, see svn log ]

2006-11-20  arjan <arjan at yirdis dot nl>

        * gaphor/storage.py: loading/saving works
        * gaphor/adapters/connector.py: added connector for
          commentline-diagramline.
        * gaphor/diaram/diagramitem.py: made delete operation work.

2006-11-14  arjan <arjan at yirdis dot nl>

        * setup.py: incremented version to 0.9.0

2006-10-30  arjan <arjan at yirdis dot nl>

        * gaphor/storage.py: some updates, time to get it working again.
        * gaphor/tests/test_storage.py: unit tests for storage.py
        * tests/*: moved several tests to gaphor/*/tests directory

2006-10-24  arjan <arjan at yirdis dot nl>

        * gaphor/diagram/association.py: Made direction and name drawing work.
        * gaphor/diagram/diagramline.py: make lines easier to select (fuzzyness)

2006-10-17  arjan <arjan at yirdis dot nl>

        * gaphor/adapters/editor.py: Added Association editor.

2006-09-29  arjan <arjan at yirdis dot nl>

        * gaphor/actions/placementactions.py: enabled Association
        * gaphor/diagram/association.py: partly works w/ gaphas
        * gaphor/diagram/items.py: added association

2006-09-27  arjan <arjan at yirdis dot nl>

        * gaphor/diagram/artifact.py: works now
        * gaphor/diagram/component.py: works now
        * gaphor/diagram/node.py: works now

2006-09-26  arjan <arjan at yirdis dot nl>

        * gaphor/UML/elementfactory.py: select() now returns an iterator
        * gaphor/actions/itemactions.py:
        * gaphor/actions/placementactions.py: placement for ExtensionItem
        * gaphor/actions/tests/test_placementactions.py: ... and tests
        * gaphor/adapters/connectors.py: Connector for ExtensionItem
        * gaphor/adapters/tests/test_connector.py:
        * gaphor/diagram/diagramitem.py: removed set_subject()
        * gaphor/diagram/extension.py: works
        * setup.py: added unittest

2006-09-20  arjan <arjan at yirdis dot nl>

        * utils/genUML.py: Removed.
        * gaphor/ui/objectinspector.py: Use classes for adaption, in stead
        of interfaces. Also removed interfaces from
        gaphor/diagram/interfaces.py.
        * gaphor/diagram/interfaces.py: cleaned up IDiagramElement interfaces.
        * gaphor/ui/objectinspector.py: Updated to use classes iso interfaces

2006-09-19  arjan <arjan at yirdis dot nl>

        * gaphor/diagram/items.py: New file. Gathered all *Item imports here
        (used to be in gaphor/diagram/__init__.py)
        * gaphor/actions/placementactions.py: Added actions for Include/Extends
        * gaphor/actions/tests/test_placementactions.py: .. and tests
        * gaphor/adapters/connectors.py: added connectors for Generalization,
        Inlcude, Extend.
        * gaphor/diagram/dependency.py: Cleanup
        * gaphor/diagram/extend.py: Converted to new canvas
        * gaphor/diagram/generalization.py: idem
        * gaphor/diagram/implementation.py: idem
        * gaphor/diagram/include.py: idem

2006-09-14  arjan <arjan at yirdis dot nl>

        * gaphor/UML/tests/__init__.py: New file.
        * gaphor/actions/tests/__init__.py: New file.
        * gaphor/adapters/tests/__init__.py: New file.
        * gaphor/diagram/tests/__init__.py: New file.
        * gaphor/ui/tests/__init__.py: New file.
        * setup.py: Implemented 'tests' target - runs all unit tests
        * gaphor/*/tests/test_*.py: Updated to work well with overall test suite

2006-09-13  arjan <arjan at yirdis dot nl>

        * updcl: New file. use this for easy updating of the changelog file.
        Add a .developer to this directory with name and email.

2006-09-13  arjan <arjan at yirdis dot nl>

        * gaphor/diagram/comment.py: fixed text rendering (mutiline)
        * gaphor/diagram/interface.py: changed some code (box drawing now works)

2006-09-11  arjan <arjan at yirdis dot nl>

        * gaphor/adapters: moved adapters from gaphor.diagram to this
        separate package.
        * gaphor/actions: collected all Action classes in one package.

2006-09-05  arjan <arjan at yirdis dot nl>

        * gaphor/diagram/classifier.py, gaphor/diagram/klass.py: works
        * gaphor/diagram/package.py: works

2006-09-03  arjan <arjan at yirdis dot nl>

        * gaphor/diagram/classifier.py: cleanup
        * gaphor.diagram/klass.py: is now placeable
        * several fixes, cleanup and improved unit tests

2006-08-21  arjan <arjan at yirdis dot nl>

        * gaphor/diagram/usecase.py: drawing works

2006-07-27  arjan <arjan at yirdis dot nl>

        * Connect/disconnect works for comment-commentline
        * gaphor/diagram/tool.py: Handle tool in place
        * gaphor/diagram/interfaces.py: IConnect interface
        * gaphor/diagram/actor.py: works

2006-07-21  arjan <arjan at yirdis dot nl>

        * gaphor/diagram/comment.py: text editining working
        * gaphor/diagram/actor.py: draws

2006-07-19  arjan <arjan at yirdis dot nl>

	* gaphor/diagram/placementtool.py: works with Gaphas
	* gaphor/diagram/comment.py: can be placed on new canvas
	* gaphor/ui/*, gaphor/UML/*: use gaphas instead of diacanvas

2006-07-07  arjan <arjan at yirdis dot nl>

	* utils/coverage.py: new module for code coverage.
	* setup.py: added --coverage option ro the run command, allowing for
	code coverage output.

2006-06-07  arjan <arjan at yirdis dot nl>

        * Changed Canvas and View to Gaphas. Items should still be converted.
        In other words, the application does nothing from this point.

2006-06-06  arjan <arjan at yirdis dot nl>

	* Merged Stereotypes branch.

2006-06-01  arjan <arjan at yirdis dot nl>

        * some cleanup, added TODO: comments for conversion to Gaphas.

2006-05-29  arjan <arjan at yirdis dot nl>

	* setup.py: added languages Swedish and Catalan.

2006-05-23  arjan <arjan at yirdis dot nl>

        * gaphor/undomanager.py: disconnected from diacanvas.UndoManager
        * */*actions.py: use new undoable descriptior in stead of aspects

2006-05-18  arjan <arjan at yirdis dot nl>
	* po/es.po: updated by Jordi Vilalta Prat.
	* po/ca.po: Catalan translation thanks to Jordi Vilalta Prat.

2006-05-12  arjan <arjan at yirdis dot nl>
	* po/sv.po: new language file, thanks to Daniel Nylander.

2006-02-14  wrobell <wrobell@pld-linux.org>
	* gaphor/diagram/*.py: get rid of initialize_item function, use
	metaclass instead; use __uml__ attribute for UML classes assignement;
	no need for Groupable metaclass anymore
	* gaphor/diagram/diagramline.py: added FreeLine diagram line (abstract
	class) with one disabled handle
	* gaphor/diagram/connector.py: ConnectorEndItem uses FreeLine,
	saving/loading not implemented yet
	* gaphor/diagram/lifeline.py: LifelineItem and its lifetime
	(LifetimeItem class) is separated now
	* gaphor/diagram/message.py: message name reimplemented using
	TextElement

2006-02-06  wrobell <wrobell@pld-linux.org>
	* gaphor/UML/uml2.override: provided and required interfaces of
	component realizing classifiers are visible in Component.{provided,required}
	derived associations
	* gaphor/UML/util.py: added utility functions for getting provided and
	required interfaces of classifier/component
	* gaphor/diagram/dependency.py: support for automatic realization
	dependencies between components and interfaces

2006-01-16  wrobell <wrobell@pld-linux.org>
	* gaphor/diagram/commentline.py: allow_connect_handle does not throw an
	exception in some cases, now
	* gaphor/diagram/interface.py, gaphor/diagram/interfaceicon.py: use
	on_glue method to determine to which point of interface item handles of
	usage and implementation lines should be connected to in case of
	interface icon; interface icon provided and required points are always
	the same for all types of icons

2006-01-10  wrobell <wrobell@pld-linux.org>
	* gaphor/UML/uml2.override: Components.{required,provided} basic
	implementation
	* gaphor/diagram/dependency.py: determine dependency type before
	connecting items
	* gaphor/ui/diagramactions.py: added zoom tooltips
	* gaphor/diagram/node.py: use proper UML element for node item
	* gaphor/ui/mainactions.py, gaphor/ui/mainwindow.py,
	gaphor/ui/abstractwindow.py: ask for permission to quit gaphor
	* gaphor/diagram/connector.py, gaphor/diagram/interface.py
	gaphor/diagram/interfaceicon.py gaphor/diagram/itemactions.py:
	connect assembly connector end items to components and allow to choose
	provided/required interfaces from menu; this way we kill dotted
	interface icon and speed up component diagram creation

2006-01-09  wrobell <wrobell@pld-linux.org>
	* gaphor/plugin.py: ask user if existing file can be overwritten during
	diagram export
	* gaphor/diagram/nameditem.py, gaphor/diagram/activitynodes.py: flow
	final and activity final nodes can have names, now

2006-01-03  wrobell <wrobell@pld-linux.org>
	* data/plugins/pdfexport/__init__.py,
	data/plugins/pdfexport/plugin.xml: PDF export plugin created

2006-01-03  wrobell <wrobell@pld-linux.org>
	* data/plugins/svgexport/__init__.py,
	data/plugins/pngexport/pngexport.py, gaphor/plugin.py: use common code
	for export a diagram into a file

2005-12-29  wrobell <wrobell@pld-linux.org>
	* bin/gaphorconvert, setup.py: added gaphorconvert utility, which
	allows to convert gaphor files into svg and pdf

2005-12-19  wrobell <wrobell@pld-linux.org>
	* gaphor/diagram/__init__.py, gaphor/diagram/flow.py,
	gaphor/diagram/itemactions.py: allow to split flows using activity edge
	connector

2005-12-19  wrobell <wrobell@pld-linux.org>
	* gaphor/diagram/placementactions.py: assign names for actions and
	object nodes

2005-12-13  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/ui/mainwindow.py: make position of objectInspector persistent.

2005-12-05  wrobell <wrobell@pld-linux.org>
	* gaphor/diagram/__init__.py gaphor/diagram/connector.py: use grouping
	interface properly to maintain connector end items;
	free connector end items are created and destroyed by assembly
	connector;
	assembly connector is saved and loaded properly

2005-12-05  wrobell <wrobell@pld-linux.org>
	* gaphor/diagram/interface.py: update connected connector end items
	when updating interface in folded mode

2005-12-05  wrobell <wrobell@pld-linux.org>
	* gaphor/diagram/placementtool.py: invoke can_contain method on
	grouping items (like interaction)

2005-11-02  Arjan Molenaar  <arjanmolenaar@hetnet.nl>
	* setup.py: require GTK+ version 2.8 or newer

2005-11-01  wrobell <wrobell@pld-linux.org>
	* gaphor/diagram/diagramitem.py: added support for persistent
	properties

	* gaphor/diagram/activitynodes.py, gaphor/diagram/flow.py,
	gaphor/diagram/objectnode.py, gaphor/diagram/util.py,
	gaphor/diagram/itemactions.py, tests/test-activitynodes.py: use
	persistent properties where possible; refer to properties with
	self.props

2005-11-01  wrobell <wrobell@pld-linux.org>
	* gaphor/UML/elementfactory.py: added __getitem__ method (live object
	browser works again)

2005-10-28  wrobell <wrobell@pld-linux.org>
	* gaphor/diagram/activitynodes.py, gaphor/diagram/objectnode.py: moved
	ObjectNodeItem class to gaphor.diagram.objectnode package

2005-10-27  wrobell <wrobell@pld-linux.org>
	* gaphor/diagram/activitynodes.py, gaphor/diagram/flow.py,
	gaphor/diagram/groupable.py, gaphor/diagram/__item__.py: added
	Groupable metaclass to automate development of groupable classes

2005-10-27 Jeroen Vlootuis <jeroen@vloothuis.net>
	* Added new object inspector panel at bottom of diagram. This makes use
	of the Zope 3 component architecture. Therefore Gaphor now depends on
	Zope 3. This dependency should be diminshed to component and
	interface. At the moment there is no seperate package for component.

	* Made Kid export handle tagged values. 

2005-10-27  wrobell <wrobell@pld-linux.org>
	* gaphor/diagram/activitynodes.py: object node has upper bound
	specification; join node has join specification; initial node naming
	reimplemented with text element and grouping
	* gaphor/diagram/flow.py: flow has name and guard implemented with text
	element (since now flows can have names)
	* gaphor/diagram/nameditem.py: added sided named elements base class
	and text element class
	* gaphor/diagram/groupable.py: added basic class for grouping different
	diagram items

2005-10-26  wrobell <wrobell@pld-linux.org>
	* gaphor/UML/uml2.gaphor: added control nodes diagram from complete
	activities

2005-10-25 Arjan Molenaar  <arjanmolenaar@hetnet.nl>
	* gaphor/UML/uml2.gaphor: added TaggedValue class in Expressions
	diagram.

2005-10-24  wrobell <wrobell@pld-linux.org>
	* gaphor/diagram/flow.py: forbid flow source to connect to final node;
	forbid flow target to connect to initial nodes

2005-10-24 Arjan Molenaar  <arjanmolenaar@hetnet.nl>
	* setup.py: bumped version to 0.7.2, since data model has undergone some
	changes.
	* gaphor/UML/uml2.gaphor: added taggedValue to NamedElement as 0..*.
	* gaphor/storage.py, gaphor/UML/umllex.py,
	gaphor/diagram/association.py, gaphor/diagram/attribute.py,
	gaphor/diagram/diagramline.py, gaphor/diagram/operation.py:
	Changed to support NamedElement.taggedValue[*].
	* utils/genUML2.py: parse new taggedValues properly.

2005-10-24  wrobell <wrobell@pld-linux.org>
	* gaphor/diagram/util.py: added functions which
		- determine subject's class of fork and decision UI elements
		- combine or decombine fork/join and decision/merge nodes in case
		  of many incoming and outgoig flows
	* gaphor/diagram/activitynodes.py: store information about combined
	fork/decision nodes; support for ordering of object nodes
	* gaphor/diagram/flow.py: determine fork/decision node subject's class
	and/or combine/decombine nodes according to UML specs
	* gaphor/UML/uml2.gaphor: added complete activities package with
	object nodes diagram to support ordering of object nodes

2005-10-17  wrobell <wrobell@pld-linux.org>
	* gaphor/diagram/activitynodes.py: implemented object node
	* gaphor/diagram/flow.py: change control flow to object flow
	when source or target is connected to object node
	* gaphor/diagram/nameditem.py, gaphor/diagram/usecase.py: created
	SimpleNamedItem for named item UI elements, which contain just name
	and border (like use case, object, etc.)

2005-10-11  Arjan Molenaar  <arjanmolenaar@hetnet.nl>
	* gaphor/data/plugins/kidexport/plugin.xml: added module dependency kid.

2005-10-10  wrobell <wrobell@pld-linux.org>
	* gaphor/UML/uml2.gaphor: added Flow Final, Fork and Join nodes to
	Control nodes diagram
	* gaphor/diagram/activitynodes.py: implemented Flow Final and Fork
	nodes

2005-10-09  Jeroen Vloothuis  <jeroen@vloothuis.net>
	* gaphor/data/plugins/kidexport: New template based exported for XMI

2005-10-07  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* Released version 0.7.1

2005-10-07  wrobell <wrobell@pld-linux.org>
	* gaphor/UML/uml2.gaphor: ConnectableElement derives from TypedElement
	according to UML 2.0 specification; Interface derives from
	ConnectableElement; kill Property multiple incarnations

2005-10-06  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/UML/uml2.gaphor: fixed bug with multiple ConnectableElement
	classes.
	* data/plugins/checkmodel/checkmodel(gui).py: Added check to search for
	duplicate class names.

2005-09-12  wrobell <wrobell@pld-linux.org>
	* gaphor/UML/uml2.gaphor: extended Internal Structures diagram to
	support delegation and assembly connectors

2005-06-26  wrobell <wrobell@pld-linux.org>
	* setup.py, gaphor/storage.py, gaphor/UML/uml2.gaphor: use unkown
	navigability state of UML 2.0, when converting from UML 1.x association
	non-navigability (UML 2.0 metamodel fixed, too); gaphor file format
	version increased to 0.7.1

2005-06-24  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/misc/console.py, gaphor/ui/diagramtab.py,
	gaphor/ui/namespace.py: s/gtk.TRUE/True/, s/gtk.FALSE/False/.

2005-05-28  wrobell <wrobell@pld-linux.org>
	* gaphor/diagram/itemactions.py, gaphor/ui/diagramactions.py:
	capitalize menu labels, tooltips first word capitalized

2005-05-25  wrobell <wrobell@pld-linux.org>
	* gaphor/diagram/itemactions.py, gaphor/diagram/operation.py,
	gaphor/ui/namespace.py: allow to set class operation to be abstract
		
2005-05-25  wrobell <wrobell@pld-linux.org>
	* gaphor/ui/namespace.py: change font of diagram names to bold and
	abstract classifiers to italic in tree view

2005-05-24  wrobell <wrobell@pld-linux.org>
	* gaphor/diagram/itemactions.py: check if item and item.subject exist
	when executing AbstractClassAction

2005-05-24  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram.association.py: Make association redraw when setting
	navigability.

2005-05-23  wrobell <wrobell@pld-linux.org>
	* gaphor/diagram/itemactions.py gaphor/diagram/association.py: UML 2.0
	navigability support is back with fixed bug which caused problems when
	loading large UML model

2005-05-23  wrobell <wrobell@pld-linux.org>
	* gaphor/UML/uml2.override: while loading model, the association can be
	not loaded when accessing opposite property

2005-04-18  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/mainactions.py, po/es.po, po/nl.po:
	Updated. More translations.

2005-04-18  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* po/es.po: Espanish translation, thanks to David Roguin.

2005-04-11  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/itemactions.py: reverted to version 1.41.

2005-03-23  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/association.py: reverted to version 1.60.

2005-01-24  wrobell <wrobell@pld-linux.org>
	* gaphor/diagram/association.py: use one rotation function (update_dir
	method and xs rotation refactorized), show direction arrow on proper
	side of association name

2005-01-24  wrobell <wrobell@pld-linux.org>
	* gaphor/diagram/itemactions.py gaphor/diagram/association.py: UML 2.0
	navigability support

2005-01-18  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/pluginmanager.py: use modutils in favor of imp.
	Now actions can be nested in packages!
	Load plugins under namespace gaphor.plugins.

2005-01-17  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* data/plugins/*/plugin.xml: changed toplevel plugin tag to
	'gaphor-plugin'
	* gaphor/pluginmanager.py: changed xml parser to load new tag.

2005-01-11  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/UML/uml2.gaphor: fixed bug in Lifeline diagram.

2005-01-11  wrobell <wrobell@pld-linux.org>

	* gaphor/UML/uml2.gaphor: added InternalStructures diagrams

2005-01-09  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/ui/menufactory.py: Use gtk.AccelMap to store accelerator
	keys. Now accelerators can be configured at runtime.
	* gaphor/__init__.py, gaphor/ui/__init__.py: load/save accelmap at
	start/end of application.

2005-01-05  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/ui/mainactions.py: fixed small bug, now recent-files also
	works with an empty recent-files list.

2005-01-04  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/misc/action.py: fixed ObjectAction for use with slots.
	Added ActionPool.set_action().
	* gaphor/ui/mainactions.py: added Recent files slot
	* gaphor/ui/mainwindow.py: (set_filename) add file to recent files.

2005-01-04  wrobell <wrobell@pld-linux.org>

	* gaphor/ui/mainactions.py: set default name for created diagram and
	allow user to edit it immediately

2005-01-04  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/UML/uml2.gaphor: added parse() and render operations to
	Lifeline.
	* gaphor/misc/action.py: added better support for Slots. Now a
	slot can be represented by a class. A slot can be rebuild (so the
	menu is rebuild).
	* gaphor/ui/menufactory.py: extented for use of slots.
	* tests/menu.py: added test for slots.

2005-01-03  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/pluginmanager.py: raise exceptions when a wrong xml-tag is
	found in the plugin.xml file.

2004-12-23  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/message.py: added message text.

2004-12-20  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/implementation.py: removed recursive import of
	InterfaceItem.

2004-12-02  Arjan Molenaar  <arjanmolenaar@hetnet.nl>
	
	* gaphor/diagram/association.py (unlink): explicitly unlink()
	AssociationEnds.
	* gaphor/diagram/interaction.py: New class, a sequence diagram
	interaction.
	* gaphor/diagram/lifeline.py: New class, a sequence diagram lifeline
	* gaphor/diagram/message.py: New class, a Message (seq. diagram).

2004-11-23  Arjan Molenaar  <arjanmolenaar@hetnet.nl>
	
	* gaphor/ui/mainwindow.py: Allow mainwindow to shrink.

2004-11-23  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/UML/uml2.gaphor: implemented Interaction diagrams.
	* utils/genUML2.py: let code generator support Sort suffix.
	* gaphor/misc/resource.py: Added resource file backend.
	* gaphor/__init__.py: save resources when the program exits
	* gaphor/ui/mainwindow.py: Added persistent property for window size.
	* gaphor/diagram/placementactions.py: made reset-tool property
	persistent.

2004-11-22  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/misc/resource.py: added persistent property to resource values.
	This should allow us to store specific properties to a persistent
	storage.
	* gaphor/ui/toolbox.py: added persistent properties that should tell the
	box to be open or closed at startup.

2004-11-20  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/activitynodes.py: Renamed node.py to this file.
	* gaphor/diagram/artifact.py: Implemented Artifact item.
	* gaphor/diagram/node.py: Implemented Node item.
	* data/pixmaps/node24.png, artifact24.png: new icons.

2004-11-19  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/ui/namespace.py: added DND support when renaming in tree view.

2004-11-18  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/package.py: Packages now support stereotypes.

2004-11-17  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* setup.py: bumped version to 0.7.0.
	* data/plugins/xmiexport/__init__.py,
	data/plugins/svgexport/__init__.py,
	data/plugins/pngexport/pngexport.py: add FileChooserDialog. PNG export
	marked as experimental.

2004-11-16  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/association.py: do no longer draw arrows if the
	association is drawn between an Actor and a UseCase.

2004-11-15  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/misc/errorhandler.py: Error handler (+ aspect) for Gaphor.
	Shows a dialog when an exception occured and allows for debuging.
	* gaphor/ui/mainactions.py: implemented error handler for file
	open/save actions.
	* gaphor/diagram/diagramline.py: No longer save properties cap, join
	and line_width, since they are not changed anyway.

2004-11-13  Jeroen Vloothuis  <jeroen@vloothuis.net>

        * gaphor/data/plugins/xmiexport/exportmodel.py: Added support for
        stereotypes.
        * gaphor/data/plugins/xmiexport/exportmodel.py: Added support for
        association names.

2004-11-12  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/association.py: Implemented find_relationship().
	* gaphor/diagram/itemactions.py: Implemented CreateLinks action. This
	action is called after a DND action to that canvas and re-creates
	existing relationships.
	* gaphor/ui/diagramtab.py: DND a diagram to the diagram notebook opens
	the diagram (may be: create shortcut from one diagram to another).

2004-11-11  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/klass.py: save width/height when
	subject.ownedAttribute and subject.ownedOperation change.
	* gaphor/ui/mainactions.py: Use new-style file chooser if possible
	(else fall back to the old-and-less-usable version)

2004-11-10  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* data/plugins/xmiexport/__init__.py: Added action with save dialog.
	* data/plugins/xmiexport/exportmodel.py: Added timestamp, use
	XMLWriter.
	* FAQ: new file.
	* gaphor/ui/diagramview.py: Focus item that is DND'd to the canvas.
	* gaphor/*/*: replaced tabs by spaces.
	* gaphor/diagram/placementactions.py: renamed actions.py to
	placementactions.py to avoid ambiguity with action.py (used for
	state diagrams)
	* gaphor/ui/diagramtab.py: moved DND code from diagramview.py to
	DiagramTab. This will make it easy to run actions when an item is
	DND'd.

2004-11-09  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/attribute.py: added listener for 'association', so
	undo can work properly.
        * data/plugins/alignment: Make only sensitive if items are selected.
	* data/plugins/svgexport: New plugin.
	* gaphor/ui/diagramactions.py: Moved SVG export code to svgexport
	plugin.
	* gaphor/diagram/association.py: Moved the Side A/B submenu's in
	separate sub menu's that can be activated when the mouse pointer is
	at the end of the association.

2004-11-07  Jeroen Vloothuis  <jeroen@vloothuis.net>

        * data/plugins/alignment: Added a plugin for adjusting the
        alignment of diagram items. Currentyl does horizontal and
        vertical alignment.

2004-11-05  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/ui/diagramactions.py: Made a start if simple copy/paste
	functionality.

2004-11-04  Jeroen Vloothuis  <jeroen@vloothuis.net>
        * gaphor/ui/diagramactions.py: Implemented a confirmation dialog for
        the delete action.

2004-11-04  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/misc/xmlwriter.py: new file. XMLGenerator with CDATA handling
	following the SAX standard.
	* gaphor/storage.py: (save_generator) use XMLWriter for saving, no
	longer produces XML statement itself. NOTE: also accepts the writer
	as argument, no more filename!

2004-11-03  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/association.py: added direction arrow.
	* gaphor/diagram/itemactions.py: added two new actions:
	AssociationShowDirection: show/hide direction arrow (default = hide)
	AssociationInvertDirection: invert the association direction.

2004-11-02  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/association.py: added name and made a start with
	direction.
	* gaphor/ui/mainactions.py: confirmation dialog when starting a new
	model.

2004-10-29  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/feature.py: fixed bug that didn't render attributes
	when they have to.
	* gaphor/diagram/__init__.py: make register_item accept more default
	classes. (fixes DND of Stereotype item).
	* gaphor/diagram/diagramitem.py: bug fix: UML elements were no longer
	removed when all presentations were removed.
	* gaphor/UML/uml2.gaphor: added Classifier.appliedStereotype (in stead
	of Class.appliedStereotype).
	* gaphor/storage.py: made conversion from ClassItem to InterfaceItem
	for pre-0.6.2 classes
	* setup.py: bump version to 0.6.2 to ensure the conversion works.

2004-10-26  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/classifier.py: new class. Generic subclass for
	Class, Interface, Component, Actor, etc.
	* gaphor/diagram/actor.py: made subclass of ClassifierItem.
	* gaphor/diagram/klass.py: made subclass of ClassifierItem.
	* gaphor/diagram/interface.py: made subclass of ClassItem.
	* gaphor/diagram/itemactions.py: Made changes to Fold/Unfold actions.

2004-10-23  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/UML/properties/py: refactored association code. made
	undo/redo really work.
	* gaphor/diagram/itemactions.py: made lots of actions undo-aware.
	* As of here, Gaphor has one application wide undo manager (no longer
	one per diagram).
	* setup.py: bumped version to 0.6.1.
	
2004-10-22  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/diagramitem.py: do no longer automatically unlink
	in diagramassociation. unlink in DiagramItem.unlink() instead.

2004-10-15  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/association.py: arrow heads were drawn in the wrong
	direction. corrected
	* gaphor/*: got complete rid of the __relink__ signal.
	* gaphor/diagram/itemactions.py: added undo transactions to actions.
	* gaphor/UML/properties/py: implemented undo awareness for attributes,
	enumerations and associations.
	* gaphor/diagram/association.py, nameditem.py, feature.py: added
	undo awareness to on_editing_done() methods.

2004-10-11  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/diagramitem.py: fixed bug in on_subject_notify(),
	that kept old references around.
	* gaphor/ui/mainactions.py: added action that switches the
	reset-to-default-tool behavior of the toolbox.
	* gaphor/diagram/actions.py: classes, packages, etc. are assigned a
	unique name on creation.
	* gaphor/ui/mainwindow.py: added toolbox items to the menu.
	* gaphor/ui/diagramtab.py: 'Delete' has the same meaning as Ctrl-d
	from now on.

2004-10-07  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/itemtool.py, gaphor/ui/*: updated to use new
	UndoManager interface of DiaCanvas2 0.14.0. Requires CVS version
	of diacanvas2 to work.

2004-10-01  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	Release 0.6.0

2004-09-28  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/itemtool.py, itemactions.py, nameditem.py:
	Added compatibility layer for Diacanvas 0.13.0.

2004-09-27  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* data/plugins/pynsource: created nice Dialog for loading files
	* data/plugins/liveobjectbrowser: Use AbstractWindow as mediator

2004-09-26  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* data/plugins/diagramlayout: new plugin, layout elements in a diagram
	* data/plugins/pynsource: new plugin. Create diagrams from Python
	code. Uses Andy Bulka's PyNSource code.
	# During creation of the plugin I noticed a bug in Associations:
	# The aggregation attribute of the wrong Property instance is used.
	# This behavior has been fixed:
	* gaphor/storage.py: added workaround in load_elements_generator()
	* gaphor/diagram/association.py: updated code to show aggregation on
	the right end.
	* gaphor/UML/uml2.gaphor: loaded and saved (bug no longer in data
	model)
	* utils/genUML2.py: updated.

2004-09-14  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/itemactions.py: Support new Editable interface.
	* gaphor/diagram/*.py: updated diagram items.

2004-09-05  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/ui/mainactions.py: Removed multithread stuff.
	* gaphor/misc/gidlethread.py: new file. A speudo-thread implementation
	based on the GObject main loop.
	* gaphor/storage.py, gaphor/parser.py: rewrote the load and save
	functions to generators, to be used by the GIdleThread.

2004-09-03  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* setup.py: always do config check before build
	* gaphor/pluginmanager.py: Fixed plugin loading (no longer change
	sys.path). Patch by Cedric Delfosse.

2004-09-01  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* utils/install_mo.py: fixed bug in installation
	* gaphor/i18n.py: make i18n support work

2004-08-31  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* setup.py: fix bug in plugin installation.
	* gaphor/pluginmanager.py: add the plugin directories to sys.path,
	the plugins will not be loaded after installing gaphor.
	* data/plugins/plugineditor: new. was pluginmanager, but that gives
	naming conflicts with the gaphor.pluginmanager module.
	* gaphor/ui/mainwindow.py: do not put the main window's accel group
	on any transient window.

2004-07-22  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/ui/mainactions.py: Added DeleteDiagram action.

2004-07-20  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/dependency.py: Added a new property auto_dependency,
	this will try to automatically set the dependency type (Usage is set
	if the head is connected to an Interface).
	* gaphor/misc/actions.py (ActionPool.execute): added extra optional
	parameter 'active', this can set the state for check- and
	radio-actions.
	* gaphor/diagram/itemactions.py: Added new action AutoDependency.

2004-07-19  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/ui/mainactions.py: Added authors to the About dialog.
	* gaphor/diagram/interface.py: fixed small bug that prohibited a
	required interface to be shown on the bottom.

2004-07-16  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/interface.py: Fixed to use Usage and Implementation
	dependencies. Now a half-a circle is shown on for required Interfaces
	(using the Usage dependency).
	& gaphor/ui/namespace.py: Treeview DnD for classes and packages works
	again.

2004-07-15  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/itemactions.py: Newly created attributes and
	operations will be directly editable.

2004-07-09  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/UML/uml2.gaphor: Added association UseCase <-> Property and
	Actor <-> Property, so associations can work right (there was no
	possible relationship possible between Actors and UseCases.
	* gaphor/ui/mainwindow.py: Added toolbox entries for usecase assoc.
	and metaclass.
	* gaphor/diagram/actions.py: Added UseCaseAssociation and MetaClass actions.
2004-07-02  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	Intermediate Windows Release 20040702

	* gaphor/ui/mainwindow.py: moved use case toolbox down.
	* gaphor/diagram/klass.py: fixed bug that prohibited popup menu
	from popping up.

2004-06-23  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/ui/mainwindow.py, gaphor/ui/toolbox.py: explicitly import
	actions.
	* doc/plugin.txt: explenation how plugins work
	* setup.py: Boost version to 0.5.0.

2004-06-22  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/plugin.py: new file. provided stuff needed by possible
	plugins.
	* gaphor/pluginmanager.py: new file. Plugin loading facility.
	* data/plugins/*: added (demo) plugin.
	* setup.py: reordered some code, so version.py is properly generated
	on FreeBSD.
	
2004-06-20  wrobell

	* gaphor/diagram/interface.py: - change look of interface depending
	on connected associations and implementations, nfy
	* gaphor/diagram/implementation.py: - change look into solid line
	when connected to folded interface   (InterfaceItem)

2004-06-17  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/klass.py: Made stereotypes work. Added a menu entry
	that allows the user to apply a stereotype to a class.
	* data/pixmaps/profile24.png: new icon for Profile.

2004-06-15  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/misc/action.py: Added register_action_for_slot() and
	get_actions_for_slot().
	* gaphor/diagram/klass.py: added support for stereotypes.
	* gaphor/ui/mainwindow.py: added stereotype box
	* gaphor/UML/uml2.gaphor: added association appliedStereotype to
	Class, Package and Interface.
	
2004-06-12  wrobell

	* gaphor/ui/mainwindow.py: - use cases enabled, since associations work now

2004-06-10  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/UML/__init__.py: do the resource initialization of the
	ElementFactory. Added some functions that make it more easy to access
	the default element factory.

2004-06-09  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/UML/uml2.gaphor: fixed typo: implementingClassifier ->
	implementatingClassifier.
	
2004-06-05  wrobell
	* gaphor/diagram/: interface.py, itemactions.py, klass.py: - first
	steps to add folding/unfolding of interfaces
	* data/icons.xml, data/pixmaps/implementation24.png,
	gaphor/diagram/__init__.py, gaphor/diagram/actions.py,
	gaphor/diagram/implementation.py, gaphor/ui/mainwindow.py,
	gaphor/ui/stock.py: - added implementation element

2004-06-04  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/UML/uml2.gaphor: changed Interfaces diagram, so namespaces
	work properly.
	TODO: should write integrety checks for the data model (check if
	derived unions are propertly subsetted everywhere, typos, etc.)
	* gaphor/ui/namespace.py: do not allow properties and operations to
	be dnd'ed from one class to another (will cause problems with
	properties connected to associations)
	* gaphor/diagram/klass.py: added a line "(from ...)" to classes that
	come from another package than the diagrams one.
	* gaphor/diagram/itemactions.py: make CreateAttributeAction work
	for interfaces.

2004-06-03  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/ui/namespace.py: Added DND for elements within the tree view.

2004-06-03  wrobell

	* gaphor/: UML/collection.py, diagram/attribute.py,
	diagram/itemactions.py, diagram/klass.py, diagram/operation.py: -
	added support for moving up/down operations and attributes
	* gaphor/UML/uml2.gaphor: - UML 2.0 (03-08-02), page 137, component
	attribute   isIndirectlyInstantiated is set to true by default

2004-06-01  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/association.py: added hollow diamond end for shared
	* gaphor/diagram/itemactions.py: Added MoveUp action (for attributes
	and operations)
	* gaphor/UML/collection.py: added method moveUp().
	* gaphor/diagram/(attribute|operation).py: added MoveUp action to
	popup menu.

2004-05-27  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	Applied patches from wrobell@pld-linux.org
	* gaphor/misc/odict.py: new file. Ordered dictionary
	* gaphor/diagram/component.py, data/pixmaps/component24.png: new
	item: Component.
	* several small changes in itemactions, actions.py and mainwindow.py.

2004-05-27  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	RELEASE 0.4.0

        * gaphor/storage.py: Be more verbose wrt load status.
	* gaphor/UML/elementfactory.py: Added method size().
	* gaphor/UML/uml2.gaphor: change in Interfaces diagram
	* gaphor/ui/mainactions.py: made load/save
	window look prettier.

2004-05-26  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* data/icons.xml: contains descriptions of icons, rather than
	hardcoding them in gaphor/ui/stock.py.
	* setup.py, MANIFEST.in: added icons.xml
	* gaphor/ui/stock.py: use icons.xml. Added an XML parser.
	* gaphor/ui/mainwindow.py, mainactions.py: added About dialog.
	* gaphor/diagram/interface.py: make it work
	* gaphor/diagram/actions.py: added placement tool and action for
	interfaces (creates both an interface and an Implementation
	dependency.
	* data/pixmaps/interface24.png: added icon for Interface.

2004-05-25  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/ui/mainactions.py: Do loading and saving in a separate
	thread. This makes the UI react more smoothly (and we can do some
	progress indicating in the near future).
	* gaphor/misc/aspects.py: Added TimerAspect (a per function profiler)
	* gaphor/ui/namespace.py: Now sorting works okay. Implemented faster
	sorting algorithm.
	* gaphor/diagram/dependency.py: Added load/save instructions for
	dependency_type.
	* gaphor/diagram/interface.py: new file, representing an Interface.

2004-05-24  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/ui/menufactory.py: fixed a few bugs
	* gaphor/diagram/relationship.py: made a generic find_relationship()
	function.
	* gaphor/diagram/(dependency|generalization|flow).py: use this
	function.

2004-05-17  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/misc/action.py: no longer register actions as stock items.
	* gaphor/ui/menufactory.py: make accelerators work for menu items.

2004-05-13  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* data/pixmaps/extension24.png initalnode24.png,
	activityfinalnode24.png, activityfinalnode.xcf: added
	* gaphor/ui/stock.py: added the new icons as stock icons.
	* data/pixmaps/: removed unused (old) icons. Added icons for Actions,
	stereotype, extension, etc.
	

2004-05-12  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/extension.py: new file. Used to create stereotypes
	* gaphor/diagram/klass.py: started implementing stereotypes.
	* gaphor/diagram/dependency.py: Now one can add several dependency
	types, such as Usage and Realization (the dependency may not be
	connected on both sides for this option to work).

2004-05-10  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/dependency.py, generalization.py: fixed bug which
	avoids adding multiple dependencies/generalizations between two
	classes.
	* gaphor/ui/wrapbox.py: new file. replaces the C GtkWrapBox library.
	* gaphor/ui/stereotypewindow.py: new file. This dialog should be used
	to add/edit stereotypes.

2004-05-07  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/ui/menufactory.py: reordered some code, added function
	create_button()

2004-05-03  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/UML/properties.py: added upper, lower, _get, _set and _set2
	to redefine.

2004-04-27  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/placementtool.py: use new PlacementTool from
	diacanvas (CVS).
	* gaphor/diagram/itemtool.py: New file. Handles items the *new* way.
	* gaphor/diagram/klass.py: Added isAbstract handling.
	* gaphor/diagram/itemactions.py: added action for isAbstract.
	* gaphor/diagram/association.py: small updates.
	* gaphor/diagram/diagramitem.py: emit action on the main window
	if a subject is (un)set.
	* gaphor/__init__.py: Now a new diagram is created on startup
	* gaphor/ui/mainactions.py: Open the "main" diagram when creating
	a new model.

2004-04-16  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/flow.py: New file, ControlFlow item.

2004-04-15  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* utils/install_mo.py: fixed bug that made the installation crash.
	* gaphor/diagram/elementitem.py: renamed modelelement.py to this file,
	  changed dependent files.
	* gaphor/diagram/nameditem.py: renamed classifier.py to this file,
	  changed dependent files.
	* gaphor/diagram/actions.py: added create actions for InitialNode,
	  ActivityFinalNode and Action.
	* gaphor/diagram/action.py: New file, representing an Action.
	* gaphor/diagram/node.py: New file, containing initial and final nodes.
	* gaphor/ui/mainwindow.py: added items for new node types.

2004-04-13  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	RELEASE 0.3.0

	* Several small changes

2004-03-26  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/attribute.py, operation.py: Added popup menu.
	* gaphor/ui/diagramactions.py: Added action ShowGrid. Made actions non
	sensitive when no diagram is shown
	* gaphor/ui/mainwindow.py: Added ShowGrid to menu. fixed TabChange.

2004-03-11  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/ui/diagramtab.py: New File. A tab containing a diagram
	within the main window.
	* A lot of changes to make the diagram tabs work. all actions have
	been changed to support new layout.

2004-03-03  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* Removed GNOME dependencies from (almost) all of Gaphor
	* gaphor/diagram/actions.py, gaphor/diagram/itemactions.py,
	gaphor/misc/action.py, gaphor/ui/diagramactions.py,
	gaphor/ui/editoractions.py, gaphor/ui/mainactions.py,
	gaphor/ui/menufactory.py, tests/menu.py:
	Introduced new Action structure for menus, toolbars and popups
	* tests/test-association.py, tests/test-diagram.py,
	tests/test-modelelement.py: Added some tests
	* Lots of changes in the ui and diagram department

2004-02-26  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/ui/consolewindow.py: added

2004-02-01  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/diagramitem.py: added code so you can easely connect
	to properties like subject.lowerValue.value.
	* gaphor/diagram/association.py, gaphor/diagram/attribute.py,
	gaphor/diagram/feature.py, gaphor/diagram/operation.py:
	makes use of those new features.

2004-01-20  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* moved model definitions from doc/UML2.gaphor to
	gaphor/UML/uml2.gaphor.
	* setup.py: updated.
	* utils/install_mo.py: fixed some path related stuff so we can do a
	bdist now.
	* utils/genUML2.py: updated to reflect latest changes in the model.

2004-01-18  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/diagramitem.py: fixed loading.
	* gaphor/diagram/comment.py, association.py, classifier.py,
	feature.py: disable markup for text.

2003-12-31  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/UML/umllex.py: Added parser and renderer for association
	ends.
	* gaphor/diagram/association.py: use the association end parser.

2003-12-05  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/storage.py: Store data in new format (see doc/xml-format.txt)
	* gaphor/parser.py: New data is parsed. utils/genUML2.py and
	gaphor/UML/element.py should be altered.

2003-11-26  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/UML/umllex.py: fixed some stuff.

2003-11-24  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/ui/consolewindow.py: new file. Adds a GtkInterpreterConsole
	to gaphor.
	* gaphor/ui/command/mainpy, data/gaphor-main-ui.xml: added entry
	for console.

2003-11-03  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/__init__.py: remove class Gaphor, instead just defined some
	modules. the function resource(r) works also for version, name, etc.
	* gaphor/diagram/klass.py: fixes and cleanup for attribute/operation
	add/remove functionality.

2003-09-25  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* setup.py: Changed. the datadir is now added to gaphor/version.py.
	* gaphor/__init__.py: changed to use new data_dir location.

2003-09-20  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/association.py: made multiplicity work again.
	* setup.py: bumped version to 0.3.0

2003-09-01  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* doc/UML2.gaphor: UML model is now based on new data model
	* gaphor/diagram/association.py: make it work
	* Loads of work to get the conversion done.

2003-08-19  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/operation.py, gaphor/diagram/attribute.py: new files
	* gaphor/diagram/klass.py: works with new data model
	* gaphor/diagram/association.py: works with new data model (kinda)
	* Several changes...

2003-06-03  Arjan Molenaar  <arjanmolenaar@hetnet.nl>
	
	* setup.py: first do a pygtk.require() before config_Gaphor.

2003-06-01  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	(here, only the most important changes are noted)
	* gaphor/diagram/classifier.py, diagramline.py: new class
	* gaphor/diagram/*.py: updated Actor, Package, Dependency, Comment,
	CommentLine, Generalization, UseCase: now work with the new datamodel
	* gaphor/UML/element.py: Notify signals are send using GTK+ like
	signals (element, param_spec). All other objects are updated to work
	with it.
	
2003-05-30  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* setup.py: added run --testfile option
	* gaphor/ui/namespace.py: fix ownedMember remove actions
	* tests/test-ns.py: added tests for NamespaceModel
	* tests/test-properties.py: fixed tests.
	
2003-05-19  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/actor.py, modelelement.py, diagramitem.py:
	make ActorItem kinda work...

2003-05-03  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* updated doc/UML2.gaphor to third release of UML 2.0 proposal.
	* did lots of other updates.

2003-05-03  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* all files: Implementing UML2 data model based on the data
	in doc/UML2.gaphor (use gaphor-0.2.0 to read it).

2003-03-31  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* setup.py: check versions of modules.

2003-03-22  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/association.py: fixed bug that didn't show
	aggregation properly when a diagram was loaded.

2003-03-02  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* setup.py, setup.cfg: Distutils setup scripts.
	* utils/build_mo.py, utils/install_mo.py, utils/dist_mo.py,
	utils/build_pot.py:
	Distutils commands for supporting gettext files (.pot/po, .mo)
	* autogen.sh, configure.in, */Files */Makefile.am:
	These files are obsolete now.
	* run-gaphor.sh: Run Gaphor, replaces gaphor.sh.
	* gaphor/config.py.in: obsolete and removed.

2003-03-02  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/ui/diagramwindow.py, mainwindow.py: create popup menu on
	event-after event.

2003-02-24  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/ui/command/diagrampopup.py: Added popup menu items for
	Associations (Navigable, aggregation kind).
	* gaphor/ui/diagramwindow.py: look for item specific popup menu
	* data/gaphor-diagram-ui.xml: Added menu for Association.
	* gaphor/misc/command.py: Added StatefulCommand.
	* gaphor/diagram/association.py: several fixes.
	* gaphor/ui/commandregistry.py: handle StatefulCommands right.

2003-02-21  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/ui/command/diagrampopup.py: Added commands for segment
	addition and removal.

2003-02-16  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/misc/logger.py: Added all_logger() and remove_logger()
	* gaphor/ui/abstractwindow.py: on focus in/out add/remove a logger
	that writes messages to the active window's status bar.
	* gaphor/diagram/association.py: make association end name and
	multiplicity work.

2003-02-16  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* utils/genUML.py: new generation script.
	* gaphor/UML/element.py: reorganized. Overall more readable.
	* gaphor/diagram/association.py: Added multiplicity and association
	end name.
	* *: several updates and fixes.

2003-01-11  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/ui/mainwindow.py, gaphor/ui/command/main.py: added
	capabilities for main window.

2002-12-30  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/ui/abstractwindow.py: hide not-relevant items in popup menus.

2002-12-23  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/ui/abstractwindow.py: added capabilities. moved common parts
	of diagramwindow and mainwindow here.
	* gaphor/ui/editorwindow.py: new.
	* gaphor/diagram/*.py: several changes. Updated code to latest
	DiaCanvas2 code.
	* data/gaphor-ui.xml: renamed to data/gaphor-main-ui.xml.

2002-11-25  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/misc/uniqueid.py: use sys.platform to determine OS.
	* gaphor/diagram/klass.py: Added attributes and operations.

2002-10-28  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* orbit-python-fix.patch: added patch to fix refcounting problem
	in Orbit-Python.
	* gaphor/misc/uniqueid.py: New file. Real unique ID's!
	* gaphor/**/*.py: lots of changes. Most importantly a redesign of
	the load/save code.
	
2002-10-19  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/klass.py,usecase.py,comment.py,actor.py,package.py:
	cleaned up the code.
	* gaphor/ui/namespace.py,diagramview.py: implemented DND from
	tree view to diagram.
	* gaphor/ui/command/diagram.py: added delete command

2002-10-11  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* configure.in: increased release number to 0.2.0
	* gaphor/ui/command/diagramitem.py: Added commands for placing
	diagram items on the canvas.
	* Lots of improvements everywhere.

2002-10-10  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* configure.in, acinclude.m4: updated checks to use
	pygtk.require('2.0').
	* gaphor/diagram/diagramitemfactory.py: removed items can be
	created through gaphor.UML.Diagram.create().
	* gaphor/ui/command/diagramitem.py: new file. commands for creating
	canvas items is stored here.
	* gaphor/diagram/placementtool.py: Use 0.9.0 (CVS) version of
	DiaCanvas2.
	* gaphor/UML/diagram.py: added create() for creating nice model
	elements.

2002-10-08  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/ui/placementtool.py: moved to gaphor/diagram.
	* gaphor/ui/treeview.py, gaphor/ui/windowfactory.py: removed.
	* gaphor/ui/command/file.py: renamed to main.py, commands for the main
	window.
	* gaphor/ui/command/about.py: removed, command is moved to main.py.
	* gaphor/ui/command/tree.py: renamed to mainpopup.py.
	* gaphor/plugin.py: New file. framework for plugins.
	* gaphor/ui/command/commandinfo.py: New file. meta-info for commands.
	* gaphor/ui/commandregistry.py: Registry for commands. UI menus are
	created here.

2002-09-24  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/ui/abstractwindow.py: superclass for all window shells.
	 Now in CVS.
	* autogen.sh, configure.in: Added some small fixes by worbell.

2002-09-23  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/feature.py: checked classmember.py to feature.py.
	  Closer resemblance of the UML metamodel.
	* gaphor/UML/element.py, gaphor/UML/sequence.py: Added OCL methods
	  from SMW <http://www.abo.fi/~iporres/Projects/fog0000000023.html>
	* Several changes to create a Bonobo UI.

2002-09-13  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* data: New directory, shared data will be put here.
	* data/pixmaps: New directory, icons have moved from gaphor/ui/icons
	to this directory.
	* data/gaphor-ui.xml: Bonobo XML ui file.
	* gaphor/ui/windowfactory.py: new file. Create windows Bonobo style.
	* gaphor/ui/menufactory.py: new file.
	* gaphor/ui/mainwindow.py: Changed to be used by WindowFactory.
	* gaphor/ui/*: several changes to ease the migration to bonobo.

2002-09-06  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/misc/conf.py: New file. wrapper for GConf.
	* gaphor/gaphor.py (get_resource): added gconf support.
	Renamed gaphorResource to GaphorResource.
	* gaphor/UML/elementfactory.py, gaphor/diagram/diagramitemfactory.py:
	No longer singleton. should be called through GaphorResource
	
2002-09-05  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/gaphor.py: Added GaphorError here. Added a generic resource
	locator here. Added GaphorError and the resource locator
	(gaphorResource) to the builtin namespace.
	* gaphor/diagram/diagramitemfactory.py (register): do no longer
	gobject.type_register(). Let every class take care of that for
	themselves.
	* gaphor/diagram/klass.py: New file. Implementation of Classes
	(named klass, to avoid name conflicts with python).

2002-08-28  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* Makefile.am: Now require Automake 1.6
	* gaphor/ui/mainwindow.py: Created main window

2002-08-26  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/**/Makefile*: removed. Now only define the files needed in
	the file Files. The root Makefile takes care of the rest.
	* gaphor/config.py.in: New file. configure time configuration stuff is
	put here.

2002-08-20  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/*: Added association and package item
	* Added several comments.
	* gaphor/misc/storage_minidom.py: works again
	* configure.in: Gaphor needs DiaCanvas2 0.8.0 (= current CVS version)

2002-07-04  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/tree: Directory removed, namespace.py is moved to gaphor/ui.
	* gaphor/command: moved to gaphor/ui.command
	* gaohor/UML/diagram.py: fixed bug in loading code.

2002-07-03  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/UML/element.py: Fixed bug and changed load() to queue
	signals. Changed postload to flush the queue.
	* gaphor/command: New directory. Here command classes will be stored.
	Simple and more complex operations should be executed through
	commands.
	* *all files*: changed module paths to the project root. So now we
	should include gaphor.UML in stead of UML.

2002-07-02  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* doc/gaphor.dtd: Allow text data in Value tag.
	* gaphor/UML/element.py: Restructured get/set attr stuff. Now it is
	more readable and better usable for e.g. tree models.
	* gaphor/UML/element.py: Changed signal protocol. Now old and new
	values are also parameters.
	* gaphor/diagram/(relationship.py|diagramitem.py|dependency.py):
	new files.
	* gaphor/misc/signal.py: Added signal queueing options (queue(),
	flush())
	* gaphor/misc: Added parsers using both libxml2 or xml.dom.minidom.
	(work in progress).

2002-03-28  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/misc/storage.py: Now use the standard Python XML stuff
	(with expat).
	* Various feature improvements and other nifty things...

2002-03-25  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/registrar.py: renamed to diagramitemfactory.py and
	created a full blown Factory.
	* gaphor/UML/diagram.py: removed create() method
	
2002-03-23  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/diagram.py: moved to the UML module.
	* gaphor/misc/storage.py: now contains the load and save methods of
	ElementFactory.

2002-03-19  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* */Makefile.am: fized path for make install
	* gaphor/UML/*.py: made all files lower case.
	* gaphor/UML/elementfactory.py: New file. Factory for creating model
	elements.
	* gaphor/misc/: New directory. Added Makefile.am, singleton.py and
	command.py.
	* gaphor/UML/element.py: put Enumeration_ and Sequence in separate
	files.
	* configure.in: Added dependency for libxml2.
	* doc/gaphor.dtd: New file. DTD for gaphor files.
	* gaphor/UML/elementfactory.py, gaphor/UML/element.py,
	gaphor/diagram/diagram.py, gaphor/diagram/itemstorage.py:
	Use libxml2 calls rather than xmllib (which is depricated anyway).

2002-03-05  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/relationship.c: (relationship_handle_connect)
	Check if the currently connected subject can be used to set the subject.
	* gaphor/UML/__init__.py: Make dependencies only can connect to 1
	model element.

2002-02-20  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* utils/genUML.py: Changed to make use of the aggregation attribute.
	* gaphor/UML/Element.py: Backup the internal dictionary if no
	presentations are attached to the item.
	* gaphor/UML/__init__.py: Added changes for new genUML.py script.
	* gaphor/diagram/diagramitems.defs: 
	* gaphor/ui/diagramview.py:
	Added items for Dependency, Include, Extend and Realization.
	* gaphor/diagram/diagramitems.override: 
	* gaphor/diagram/generalization.[ch]: Rely on Relationship.
	* gaphor/diagram/model-element.c: Added rules for Dependency and
	Realization.
	* gaphor/diagram/relationship.[ch]: made it work.
	* gaphor/diagram/usecase.c: Added rules for Include and Extend.
	* gaphor/diagram/extend.c: 
	* gaphor/diagram/extend.h: 
	* gaphor/diagram/include.c: 
	* gaphor/diagram/include.h: 
	* gaphor/diagram/realization.c: 
	* gaphor/diagram/realization.h: 
	* gaphor/diagram/dependency.c: 
	* gaphor/diagram/dependency.h:
	New files.
	* gaphor/diagram/itemstorage.py: Storage rules for new elements.

2002-02-14  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/ui/diagramview.py: Added file/load.
	* gaphor/diagram/itemstorage.py: New file. Storage functions for
	the diagram items. Storage format changed: points of lines is now an
	attribute in the item, in stead of a bunch of tags.

2002-02-11  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* doc/storage.txt: Draft about how Relationships should behave... I
	doubt this is the way... but anyway...
	* gaphor/UML/Element.py: Added postload method, will be called after
	load()
	* gaphor/UML/management.py: implemented postload method
	* gaphor/diagram/diagram.py: implemented postload method. Diagrams are
	loaded perfectly!!!
	* gaphor/test-diagram.py: now a diagram is loaded from the file x.xml

2002-02-04  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/UML/Element.py: Added functions add_presentation,
	remove_presentation, remove_presentation_undo, remove_undoability
	and undo_presentation: simple interface for adding and removing diagram
	items from model elements.
	* gaphor/diagram/classifier.c: Now the `namespace' attribute is removed
	from classifiers if they have no items in the subject.presentation list.
	* gaphor/diagram/common.c: works well with classifier stuff, implemented
	changes in UML.Element interface.

2002-01-26  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/UML/Element.py: Added unlink() method. This should be called
	  before the object is destroyed.
	* gaphor/diagram/usecase.c: Added use_case_handle_motion(), so
	  text will remain centered even if the box is resized.

2002-01-26  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/UML/Element.py: Added signals
	* gaphor/diagram/classifier.[ch],
	  gaphor/diagram/relationship.[ch],
	  gaphor/diagram/generalization.[ch]: New files.

2002-01-12  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/comment-line.[ch]: New file: a line that connects a
	  model element with a comment.

2002-01-09  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/diagram/*: implemented Comment class (and actor class
	  basically)
2001-12-29  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor/UML/Element.py: Reimplemented, now all sorts of relations
	  work properly.

2001-10-26  Arjan Molenaar  <arjanmolenaar@hetnet.nl>

	* gaphor: initial version.