forked from gnustep/libs-gdl2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
7511 lines (6403 loc) · 288 KB
/
ChangeLog
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
2015-12-24 David Wetzel <[email protected]>
* EOControl/EOFaultHandler.m
* EOControl/EOGenericRecord.m
#include <objc/runtime.h> instead of #include <objc/objc-class.h>
2014-07-24 Manuel Guesdon <[email protected]>
* EOAccess/EODatabase.[hm]
add -forgetSnapshotForSourceGlobalID:relationshipName:
* EOAccess/EODatabaseContext.[hm]
add -forgetSnapshotForSourceGlobalID:relationshipName:
add -refaultObject:withSourceGlobalID:relationshipName:editingContext:
add -clearOriginalSnapshotForObject:sourceGlobalID:relationshipName:editingContext:
add -_turnToArrayFault:sourceGID:relationshipName:editingContext:isComplete:
* EOControl/EOCustomObject.m
fix -validateValue:forKey:
fix -validateValue:forKey:error:
fix -addObject:toPropertyWithKey:
fix -removeObject:object fromPropertyWithKey:
* EOControl/EOEditingContext.[hm]
add -refaultObject:withSourceGlobalID:relationshipName:editingContext:
* EOControl/EONSAddOns.[hm]
add -performSelector:withPointer:
* EOControl/EOObjectStore.[hm]
add -refaultObject:withSourceGlobalID:relationshipName:editingContext:
add -clearOriginalSnapshotForObject:sourceGlobalID:relationshipName:editingContext:
* EOControl/EOObjectStoreCoordinator.m
add -refaultObject:withSourceGlobalID:relationshipName:editingContext:
add -clearOriginalSnapshotForObject:sourceGlobalID:relationshipName:editingContext:
2014-06-03 Manuel Guesdon <[email protected]>
* EOAccess/EOAccessFault.m
remove empty init methods
fix warnings
* EOAccess/EOAdaptor.[hm]
add -expressionFactory
* EOAccess/EOAdaptorChannel.m
clean -performAdaptorOperation:
* EOAccess/EOAdaptorOperation.m
fix warnings
* EOAccess/EODatabase.[hm]
add/handle _timestamp
* EOAccess/EODatabaseChannel.h
remove delegate (moved to EODatabaseContext)
add _currentEditingContextTimestamp
add _refreshedGIDs
* EOAccess/EODatabaseChannel.m
fix warnings
remove delegate (moved to EODatabaseContext)
add _currentEditingContextTimestamp
add _refreshedGIDs
rewrite -setEntity:
rewrite -setCurrentEditingContext:
rewrite -fetchObject
rewrite -cancelFetch
rewrite -_selectWithFetchSpecification:editingContext:
* EOAccess/EODatabaseContext.h
add EODatabaseChannel delegate stuff
* EOAccess/EODatabaseContextPriv.h
add EODatabaseChannel delegate stuff
* EOAccess/EODatabaseContext.m
add EODatabaseChannel delegate stuff
fix EOAdaptor..Operator / EODatabase..Operator mismatch
* EOAccess/EODatabaseOperation.m
fix warnings
* EOAccess/EOEntity.[hm], EOAccess/EOEntityPriv.h
fix warnings
add singleTable... methods
* EOAccess/EOExpressionArray.m
fix warnings
* EOAccess/EOSQLExpression.m
rewrite -prepareInsertExpressionWithRow:
* EOAccess/EOSQLExpressionFactory.[hm]
new class
* EOAccess/EOUtilities.[hm]
remove duplicate methods
* EOAccess/GNUmakefile
add EOSQLExpressionFactory.[hm]
* EOAdaptors/PostgreSQLAdaptor/PostgreSQLChannel.h
remove duplicate _adaptorContext
* EOAdaptors/PostgreSQLAdaptor/PostgreSQLChannel.m
remove duplicate _adaptorContext
remove unused pgResultDictionary()
* EOControl/EOEditingContext.h
handle fetchTimestamp
* EOControl/EOEditingContext.m
handle fetchTimestamp
rewrite -deleteObject:
fix warnings
* EOControl/EOGenericRecord.m
fix warnings
* EOControl/EOMutableKnownKeyDictionary.m
fix warnings
* EOControl/EONSAddOns.[hm]
remove duplicate method
* EOControl/EONull.m
fix warnings
2014-05-30 Sebastian Reitenbach <[email protected]>
* nearly every file
get rid of RCSID/RCS_ID
2014-05-29 Manuel Guesdon <[email protected]>
* EOAdaptors/PostgreSQLAdaptor/PostgreSQLChannel.m:
respect GNUstep coding standard (curly brackets placement, indentation)
use IMP for some -objectAtIndex calls
* EOControl/EONSAddOns.h
add -overrideEntriesWithObjectsFromDictionary:forKeys:
add +diffOldArray:newArray:returnsRemovedValues:addedValues:
* EOControl/EONSAddOns.h
add -overrideEntriesWithObjectsFromDictionary:forKeys:
add +diffOldArray:newArray:returnsRemovedValues:addedValues:
use IMP for some -objectAtIndex calls
use NSUInteger for count and indexes
rewrite -containsIdenticalObjectsWithArray: to use diffOldArray:...
* EOControl/EODetailDataSource.m
fix -editingContext
* EOAccess/EODatabaseContext.m
use IMP for some -objectAtIndex calls
rewrite -faultForGlobalID:editingContext:
optimize -recordChangesInEditingContext:
rewrite part of -databaseOperationForObject:
2014-05-22 Manuel Guesdon <[email protected]>
* EOAccess/EODatabaseContext.m
implement _objectFaultWithSnapshot:relationship:editingContext:
fix -initializeObject:row:entity:editingContext:
finish implementation of -_obtainOpenChannel
implement -_forceDisconnect
fix -_openChannelWithLoginPanel:
implement -_verifyNoChangesToReadonlyEntity:
* EOAccess/EOAttributePriv.h
add -_isNonUpdateable
add -_isPrimaryKeyClassProperty
add _flags.isNonUpdateable
add _flags.isNonUpdateableInitialized
* EOAccess/EOAttribute.m
add -_isNonUpdateable
add -_isPrimaryKeyClassProperty
2014-05-22 Manuel Guesdon <[email protected]>
* EOAdaptors/PostgreSQLAdaptor/PostgreSQLChannel.m:
fix newValueForDateTypeLengthAttribute
* EOAccess/EOEntityPriv.h
declare -_isSingleTableEntity
declare -_assertNoPropagateKeyCycleWithEntities:relationships:
* EOAccess/EOEntity.m
fix _flattenAttribute:relationshipPath:currentAttributes:
use relationshipPathBy...Component
make _addAttributesToFetchForRelationshipPath:atts: more understandable
implement -_assertNoPropagateKeyCycleWithEntities:relationships:
implement -_isSingleTableEntity
fix validateValue:forKey:
* EOAccess/EOExpressionArray.m
implement -valueWithSQLExpressionElement:forSQLExpression:
fix -valueForSQLExpression:
* EOAccess/EODatabaseContext.m
reformat -batchNewPrimaryKeysWithEntity:count:
reformat -prepareForSaveWithCoordinator:editingContext:
reformat and fix -recordChangesInEditingContext:
reformat -recordUpdateForObject:changes:
fix -valuesForKeys:object:
fix -nullifyAttributesInRelationship:sourceObject:destinationObject:
add -_mutableValuesForKeys:object:
add -_recordInsertForIntermediateRowFromSourceObject:...
fix -relayAttributesInRelationship:sourceObject:destinationObject:
fix -relayPrimaryKey:sourceObject:destObject:relationship:
fix -relayPrimaryKey:object:entity:
fix -createAdaptorOperationsForDatabaseOperation:
fix -_buildPrimaryKeyGeneratorListForEditingContext:
* EOAccess/EODatabaseOperation.m
clean code
* EOAccess/EODatabaseChannel.m
fix -_propertiesToFetch
* EOControl/EONSAddOns.[hm]
add NSString (EORelationshipPath)
2014-04-30 Manuel Guesdon <[email protected]>
* EOAdaptors/PostgreSQLAdaptor/PostgreSQLChannel.m:
Handle Custom class in newValueForNumberTypeLengthAttribute()
2014-04-26 Manuel Guesdon <[email protected]>
* EOAccess/EOAdaptorChannel.m
call delegate -adaptorChannel:willPerformOperations:
* EOAccess/EODatabaseContext.m:
propagate delegate to channel
fix objectsForSourceGlobalID:relationshipName:editingContext:
isToManyToOne case
* EOAdaptors/PostgreSQLAdaptor/PostgreSQLChannel.m:
call delegate methods
adding assert to catch bad dates
use adaptor -primaryKeySequenceNameFormat
* EOAccess/EOrelationship.m
implement -isParentRelationship
verify/clean -isReciprocalToRelationship:
implement -qualifierWithSourceRow:
small fix on -removeJoin:
use batch faulting when -setNumberOfToManyFaultsToBatchFetch:
improve -setIsMandatory
fix exception message -validateValue:
clean -_intermediateAttributes
clean -isMultiHop
implement -primaryKeyForTargetRowFromSourceDBSnapshot:
implement -_setSourceToDestinationKeyMap:
implement -qualifierForDBSnapshot:
fix/implement -isToManyToOne
fix -foreignKeyInDestination
implement -isPropagatesPrimaryKeyPossible
implement -qualifierOmittingAuxiliaryQualifierWithSourceRow
implement -auxiliaryQualifier
implement -setAuxiliaryQualifier:
clean -_sourceRowToForeignKeyMapping
add comment in -_sourceAttributeNames
fix -joinForAttribute:
fix -_flushCache
fix -_stringFromDeleteRule:
implement -_rightSideKeyMap
implement -_leftSideKeyMap
implement -_substitutionRelationshipForRow:
fix -isFlattened
remove _componentRelationships
* EOAccess/EORelationship.h
remove _componentRelationships
* EOAccess/EOEntityPriv.[hm]
fix _hiddenRelationships return type
* EOAccess/Entity.m:
implement -_mapAttribute:toDestinationAttributeInLastComponentOfRelationshipPath:
implement -_inverseRelationshipPathForPath:
implement -_relationshipPathHasIdenticalKeys:
rewrite & fix -_keyMapForRelationshipPath:
rewrite & fix -_keyMapForIdenticalKeyRelationshipPath:
implement -valueForSQLExpression:
fix -validateObjectForDelete:
implement -qualifierForDBSnapshot:
fix -_addAttributesToFetchForRelationshipPath:atts:
fix -_parsePropertyName:
implement -fetchSpecificationNamed:
implement +externalNameForInternalName:separatorString:useAllCaps:
implement +nameForExternalName:separatorString:initialCaps:
implement -stringByMarkingUpcaseTransitionsWithDelimiter
implement -snapshotKeyForAttributeName:
implement -_flattenedAttNameToSnapshotKeyMapping
fix -_attributesToFetch
fix -_attributesToSave
* EOAccess/Entity.h:
fix _inverseRelationshipPathForPath:
fix -_relationshipPathHasIdenticalKey:
add _flgas.isSingleTableEntity
* EOAccess/EntityPriv.h:
fix -qualifierForDBSnapshot:
* EOAccess/EOPrivate.[hm]
add GDL2_EORelationshipClass
add GDL2_EOEntityClass
* EOAccess/EOModel.m:
cache [EOEntity class]
add -propertyListForEntity:name: to enable subclassing
* EOAccess/EOAttribute.m
fix -isFlattened
implement -targetAttribute
implement -relationshipPath
fix -_setDefinitionWithoutFlushingCaches:
fix -_normalizeDefinition:path:
fix -isReadOnly
implement -_setOverrideForKeyEnum:
implement -_hasAnyOverrides
implement -_isKeyEnumOverriden:
implement -_prototypeKeys
fix -initWithPropertyList:owner:
fix -readFormat
fix -writeFormat
fix -scale
fix -precision
fix -width
fix -allowsNull
fix -isReadOnly
fix -valueClassName
fix -externalType
fix -valueType
implement -_setValuesFromTargetAttribute
* EOAccess/EOAttribute.h
declare -targetAttribute
declare -relationshipPath
* EOAccess/EOAttributePriv.h
declare EOAttributeProtoOverrideBits enum
fix method arguments
declare _setValuesFromTargetAttribute()
* EOAccess/EOExpressionArray.h
declare -_isPropertyPath
* EOAccess/EOExpressionArray.m
implement -_isPropertyPath
2014-03-09 Sebastian Reitenbach <[email protected]>
* EOControl/EOCheapArray.m
* EOControl/EODebug.m
* EOControl/EODetailDataSource.m
* EOControl/EOEditingContext.m
* EOControl/EOFaultHandler.m
* EOControl/EOFault.m
* EOControl/EOGenericRecord.m
* EOControl/EOKeyComparisonQualifier.m
* EOControl/EOKeyValueArchiver.m
* EOControl/EOKeyValueCoding.m
* EOControl/EOKeyValueQualifier.m
* EOControl/EOMutableKnownKeyDictionary.m
* EOControl/EOObjectStoreCoordinator.m
* EOControl/EOPrivate.m
* EOControl/EOQualifier.m
* EOControl/EOSortOrdering.m
* Apps/EOModelEditor/CodeGenerator.m
* Apps/EOModelEditor/EOMEDocument.m
* Apps/EOModelEditor/Inspectors/ConnectionDictionaryInspector.m
* EOAccess/EOAccessFault.m
* EOAccess/EOAdaptorChannel.m
* EOAccess/EOAdaptor.m
* EOAccess/EOAttribute.m
* EOAccess/EODatabaseChannel.m
* EOAccess/EODatabaseContext.m
* EOAccess/EODatabaseDataSource.m
* EOAccess/EOEntity.m
* EOAccess/EOModelGroup.m
* EOAccess/EOModel.m
* EOAccess/EORelationship.m
* EOAccess/EOUtilities.m
* EOAdaptors/PostgreSQLAdaptor/PostgreSQLChannel.m
* EOAdaptors/PostgreSQLAdaptor/PostgreSQLContext.m
fix format string warnings and do not directly access isa
2014-03-08 Sebastian Reitenbach <[email protected]>
* Apps/EOModelEditor/CodeGenerator.m
* EOControl/EOClassDescription.m
* remove some dead initializations
2012-08-18 German A. Arias <[email protected]>
* Tools/Makefile.preamble: Add flag -Wl,--allow-shlib-undefined,
to get GDL2 to compile again.
2013-08-12: Graham Lee <[email protected]>
* Apps/EOModelEditor/CodeGenerator.m
EOModelEditor: generated ObjC files cause warnings with clang
see bug 39328
2013-06-22: Graham Lee <[email protected]>
* Apps/EOModelEditor/EOMEDocument.m
fix saving of new created models and make the Inspector
work on OSX
* EOAccess/EOModel.m
separate out the connection dictionary in a separate
file, bump file version
2013-06-22: Graham Lee <[email protected]>
* EOModeler/EOModelExtensions.m
include the right header on OS X
* EOModeler/GNUmakefile
* EOAccess/GNUmakefile
remove variable
* EOAdaptors/PostgreSQLAdaptor/config.mak.in
remove redundant libraries
* EOAccess/EOAdaptor.m
make error message more comprehensible
2013-06-09: Sebastian Reitenbach <[email protected]>
* EOControl/EOEditingContext.[h|m]
switch setLevelsOfUndo to NSUInteger
2013-05-29: Sebastian Reitenbach <[email protected]>
* EOAccess/EOEntity.m
remove unused variable
* EOControl/EOEditingContext.m
use the object, instead of the EOGlobalID to get the entityName
* EOControl/EOGenericRecord.m
* EOInterface/EOColumnAssociation.[h|m]
* EOInterface/EOTableViewAssociation.m
some NS(U)Integer conversions
2013-05-28: Graham Lee <[email protected]>
* Tools/gsdoc-model.m
* EOAdaptors/SQLiteAdaptor/LoginPanel/SQLite3LoginPanel.m
* EOAdaptors/SQLiteAdaptor/SQLite3Expression.m
* EOAdaptors/PostgreSQLAdaptor/LoginPanel/PostgreSQLLoginPanel.m
* EOControl/EODataSource.m
* EOControl/EOEvent.m
* EOControl/EOPrivate.m
* EOControl/EOUndoManager.m
Fix header inclusion for building on MAC OS X
see bug #39086
2013-03-30: Sebastian Reitenbach <[email protected]>
* Apps/EOModelEditor/SQLGenerator.m
Add NSEmitTODO to showTables:
* EOAdaptors/SQLiteAdaptor/SQLite3Adaptor.m
add some more potential table column types
* EOAdaptors/SQLiteAdaptor/SQLite3Channel.m
use the table types from the SQLite3Adaptor to
decide about the valueType, and set the NOT NULL
correctly
2013-03-25: Sebastian Reitenbach <[email protected]>
* EOAdaptors/SQLiteAdaptor/SQLite3Channel.m
CHAR is NSString, not NSNumber, makes the DataBrowser
show strings
2013-03-24: Sebastian Reitenbach <[email protected]>
* EOAccess/EOAdaptorChannel.m
the subclasses are responsible for describeModelWithTableNames
and describeTableNames
* EOAdaptors/SQLiteAdaptor/SQLite3Channel.m
implement describeModelWithTableNames:, inspired from the
PostgreSQLChannel.m
* Apps/EOModelEditor/EOModelEditorApp.m set the model name
correctly for SQLite3 databases too, use the file name
* add EOAdaptors/SQLiteAdaptor/SQLite3EOAdaptorInfo.plist
needed to make the EODataBrowser correctly detect that
the SQLite3Adaptor is a subclass of EOAdaptor
2013-03-14: Sebastian Reitenbach <[email protected]>
* EOAdaptors/SQLiteAdaptor/LoginPanel/SQLite3LoginPanel.m
make the login panel remember the last used directory
2013-03-13: Sebastian Reitenbach <[email protected]>
* Apps/EOModelEditor/DataBrowser.[h|m]
* make the fetch limit and qualifier fields work
2013-03-10: Sebastian Reitenbach <[email protected]>
* Apps/EOModelEditor/Inspectors/EntityInspector.m
add warning about method not implemented
* EOAdaptors/SQLiteAdaptor/LoginPanel/SQLite3LoginPanel.m
use NSOpenPanel when opening a file
* EOInterface/EOColumnAssociation.m
* EOInterface/EOPopUpAssociation.m
* EOInterface/EORadioMatrixAssociation.m
NSArray doesn't know about initWithObject:
* EOInterface/EOTextAssociation.m
include right headers
* Apps/EOModeler/EOMInspector.m
* Apps/EOModelEditor/Inspectors/AttributeInspector.m
include missing header
* EOAdaptors/PostgreSQLAdaptor/PostgreSQLEOAdaptorInfo.plist
renamed from Info.plist, and fix NSExecutable in it
* Apps/EOModelEditor/Inspectors/AdvancedAttributeInspector.m
* Apps/EOModelEditor/Inspectors/AdvancedEntityInspector.m
* Apps/EOModelEditor/Inspectors/AdvancedRelationshipInspector.m
* Apps/EOModelEditor/Inspectors/EntityInspector.m
* Apps/EOModelEditor/Inspectors/EntityStoredProcedureInspector.m
* Apps/EOModelEditor/Inspectors/RelationshipInspector.m
* Apps/EOModelEditor/Inspectors/StoredProcedureInspector.m
* EOAccess/EOAdaptor.m
Fix some headers, remove unused variables, and use EOMApp
instead of NSApp
* Apps/EOModelEditor/Resources/EOMEDocument.gsmarkup
give the window a better name than just "Window"
2013-03-08: Sebastian Reitenbach <[email protected]>
* Apps/EOModelEditor/EOMEDocument.h
make the header match the implementation, fixing
warning about incomplete implementation of class
2013-03-07: Sebastian Reitenbach <[email protected]>
* EOControl/Makefile.preamble
add -std=gnu89 to allow compile with clang and -O0
* EOControl/EOPrivate.h
do not access the isa directly, use object_getClass
* EOControl/EODebug.m
ivar_getTypeEncoding returns const char *
* EOAdaptors/PostgreSQLAdaptor/LoginPanel/PostgreSQLLoginPanel.h
class conforms to NSTextFieldDelegate
* EOAdaptors/SQLiteAdaptor/SQLite3Adaptor.m
get rid of stray ; to make the loop work
* GDL2Palette/ResourceManager.m
include missing header
* GDL2Palette/Palette.[h|m]
use NSString instead of NSConstantString
2013-03-02: Sebastian Reitenbach <[email protected]>
* Apps/EOModelEditor/EOMEDocument.m
* Apps/EOModelEditor/Inspectors/AdvancedRelationshipInspector.m
* Apps/EOModelEditor/Inspectors/ConnectionDictionaryInspector.m
* Apps/EOModelEditor/Inspectors/EntityInspector.m
* Apps/EOModelEditor/Inspectors/RelationshipInspector.m
* EOAccess/EOAdaptor.m
* EOAccess/EODatabaseContext.m
* EOAccess/EOEntity.m
* EOAccess/EOModel.m
* EOAccess/EOStoredProcedure.m
* EOControl/EOMutableKnownKeyDictionary.m
* EOControl/EOObserver.m
* shutup all clang warnings of type:
equality comparison with extraneous parentheses
all harmless, but in EOEntity.m it actually was wrong
* EOAccess/EORelationship.m
* EOInterface/EODisplayGroup.m
* GDL2Palette/DisplayGroupInspector.m
some NS(U)Integer transitions to fix warnings about
comparisons against NSNotFound
* EOControl/EOKeyValueCoding.m
* EOControl/EOFault.h
mark EOFault and GDL2KVCNSObject classes as root classes
* Apps/EOModelEditor/EOMEDocument.m
* EOAccess/EODatabaseContext.m
* EOControl/EODebug.h
* EOControl/EOQualifier.m
* Tools/gsdoc-model.m
fix warnings related to format strings
* Apps/EOModelEditor/AdaptorsPanel.m
* Apps/EOModelEditor/Preferences.m
* EOAccess/EOAttribute.m
* EOAccess/EOExpressionArray.m
* EOAccess/EORelationship.m
* EOAdaptors/PostgreSQLAdaptor/LoginPanel/PostgreSQLLoginPanel.m
* EOAdaptors/SQLiteAdaptor/SQLite3Channel.m
* EOControl/EOCheapArray.m
* EOControl/EOMutableKnownKeyDictionary.m
* EOControl/EOPrivate.h
* EOControl/EOPrivate.m
* EOControl/Makefile.preamble
* GDL2Palette/ConnectionInspector.m
* GDL2Palette/DisplayGroupInspector.m
Fix warnings about conflicting return types or paramters
* EOAccess/EOAdaptor.m
* EOAccess/EORelationship.m
* EOControl/EONSAddOns.m
get rid of some warnings about tautological compares
* GDL2Palette/DisplayGroupInspector.m
missed int -> NSInteger transition before
2013-03-01: Sebastian Reitenbach <[email protected]>
* EOControl/EODebug.m
do not use redundant stringWithString
2012-08-10 German A. Arias <[email protected]>
* EOInterface/GNUmakefile:
* EOAccess/GNUmakefile:
* EOAdaptors/SQLiteAdaptor/GNUmakefile.in:
* EOAdaptors/PostgreSQLAdaptor/config.mak.in:
* EOControl/GNUmakefile:
* EOModeler/GNUmakefile: Add flags to compile with new linkers.
2012-03-19 German A. Arias <[email protected]>
* EOAdaptors/SQLiteAdaptor/LoginPanel/SQLite3LoginPanel.m (-init):
Fix memory leak.
2012-03-19 German A. Arias <[email protected]>
* EOAdaptors/SQLiteAdaptor/LoginPanel/sqlitelogo.tif:
* EOAdaptors/SQLiteAdaptor/LoginPanel/GNUmakefile:
* EOAdaptors/SQLiteAdaptor/LoginPanel/SQLite3LoginPanel.m: Added
SQLite logo in login panel.
2012-03-19 German A. Arias <[email protected]>
* EOAdaptors/PostgreSQLAdaptor/LoginPanel/PostgreSQLLoginPanel.h:
* EOAdaptors/PostgreSQLAdaptor/LoginPanel/PostgreSQLLoginPanel.m:
* Apps/EOModelEditor/AdaptorsPanel.h:
* Apps/EOModelEditor/AdaptorsPanel.m: Use a panel instead a window.
So the menu isn't displayed when the user use NSWindows95InterfaceStyle.
* Apps/EOModelEditor/EOWindow.h:
* Apps/EOModelEditor/EOWindow.m:
* Apps/EOModelEditor/GNUmakefile: New class for auxiliary windows.
* Apps/EOModelEditor/Resources/SQLGenerator.gsmarkup:
* Apps/EOModelEditor/Resources/DataBrowser.gsmarkup: Instances of
class EOWindow, this avoid display the menu.
2012-03-18 German A. Arias <[email protected]>
* Apps/EOModelEditor/EOModelEditorApp.h:
* Apps/EOModelEditor/EOModelEditorApp.m: Fix a problem with last
commit.
2012-03-18 German A. Arias <[email protected]>
* Apps/EOModelEditor/EOModelEditorApp.m: Added delegate methods
for use with in-window menu.
2011-04-06 Fred Kiefer <[email protected]>
* EOControl/EODebug.m: replace GNU runtime specific functions and
data structrues with the modern ones.
2010-10-13 Fred Kiefer <[email protected]>
* EOAccess/EODatabaseContext.m
([EODatabaseContext(EOCooperatingObjectStoreSupport
-rollbackChanges]): Reset _flags.preparingForSave for better
recovery from an exception.
Patch by Georg Fleischmann <[email protected]>
2010-09-20 Fred Kiefer <[email protected]>
* EOAccess/EOSQLQualifier.m [EONotQualifier
-sqlStringForSQLExpression:]: Pass on _qualifier not self.
Patch by Georg Fleischmann <[email protected]>
2010-09-12 Fred Kiefer <[email protected]>
* EOControl/EOCheapArray.m,
* EOControl/EOMutableKnownKeyDictionary.m,
* EOControl/EODetailDataSource.m:
include of <GNUstepBase/GSCategories.h> replaced by
<GNUstepBase/NSDebug+GNUstepBase.h> and
<GNUstepBase/NSThread+GNUstepBase.h>
* EOAccess/EODatabaseContext.m
([EODatabaseContext(EOCooperatingObjectStoreSupport)
-recordChangesInEditingContext]): for isToMany relationships, call
-relayAttributesInRelationship:sourceObject:destinationObjects:
(with 's' !).
* EOAccess/EODatabaseContext.m ([EODatabaseContext -_fireArrayFault:]):
test if object is still a fault before calling -clearFault:
* EOAccess/EODatabaseContext.m ([EODatabaseContext
-objectsWithFetchSpecification:editingContext:]): call
beginTransaction only for pessimistic locking.
Patch by Georg Fleischmann <[email protected]>
2010-08-21 David Wetzel <[email protected]>
* EOAccess/EODatabaseContext.m
fix lockObjectWithGlobalID:editingContext:
2010-08-09 German Arias <[email protected]>
* Apps/EOModelEditor/Resources/EOModelEditor.tiff
Changed size of the icon.
2010-07-06 David Wetzel <[email protected]>
* EOAccess/EOModel.m
-_deleteTrashAtPath:
.cvs -> .CVS
2010-07-05 David Wetzel <[email protected]>
* EOAccess/EOModel.m
add - _deleteTrashAtPath:
avoid keeping unused files in the wrapper directory.
basically, .svn/.cvs/.git
as this does not change that often I am not moving this to an
external plist at the moment.
2010-07-05 David Wetzel <[email protected]>
* EOAccess/EODatabaseContext.m
valuesForKeys: -> dictionaryWithValuesForKeys:
(The old valuesForKeys: causes a log message on OSX)
some reformats and DebugLog removals
2010-07-04 David Wetzel <[email protected]>
* EOAccess/EOModel.m
-writeToFile:
Don't copy or move directories
create an dir only if we have none
* Apps/EOModelEditor/EOMEDocument.m
copy old wrapper dir to new tmp path/URL
The model overwrites our own files then.
Trash like .svn stays intact this way :-)
Only OSX at the moment.
see
http://savannah.gnu.org/bugs/index.php?30348
(#ifdef'd)
-keepBackupFile
return YES
* Apps/EOModelEditor/CodeGenerator.m
don't write code for EOGenericRecord or EOCustomObject
2010-07-04 David Wetzel <[email protected]>
* EOAccess/EODatabaseContext.m
use memset in place of bzero
(as suggested by Tim Kack)
2010-07-04 David Wetzel <[email protected]>
* EOAccess/EOModelGroup.m
add include
* EOAccess/EOEntity.m
- classProperties
small cleanup
* EOAccess/EODatabaseOperation.m
-rowDiffsForAttributes:
add checks
* EOAccess/EODatabaseContext.h
add _missingObjectGIDs, _checkPropagatedPKs
add databaseContextFailedToFetchObject
+ _setUseToManyCaching:
added
removed -coordinator
add -missingObjectGlobalIDs
* EOAccess/EODatabaseContextPriv.h
add -_entityForObject:
* EOAccess/EODatabaseContext.m
add _useToManyCaching
add + _setUseToManyCaching:
add - _delegateHandledDatabaseException:
add -setCoordinator:
removed -coordinator
add databaseContextFailedToFetchObject
add -missingObjectGlobalIDs
cleanup _objectsChanged
-_snapshotsChangedInDatabase
renamed vars
- _batchNewPrimaryKeysWithEntity:count:
add
- prepareForSaveWithCoordinator:editingContext:
add checks
cleanup code
- _patchUpPK:
add
- recordChangesInEditingContext
rewritten
- _primaryKeyForIntermediateRowFromSourceObject:relationship:destinationObject:
add
- _databaseOperationForIntermediateRowFromSourceObject:relationship:destinationObject:
add
- _recordDeleteForIntermediateRowFromSourceObject:relationship:destinationObject:
add
- nullifyAttributesInRelationship:sourceObject:destinationObjects:
fixed, rewritten
- _entityForObject:
add
* EOAccess/EOAdaptorChannel.h
* EOAccess/EOAdaptorChannel.m
add primaryKeysForNewRowsWithEntity:count:
* Apps/EOModelEditor/DataBrowser.m
fix typo in import
* EOControl/EONSAddOns.h
* EOControl/EONSAddOns.m
add +dictionaryWithDictionary:keys:
add -translateFromKeys:toKeys:
add -containsAnyNullObject
* EOControl/EOSharedEditingContext.m
fix include
* EOControl/EOObjectStoreCoordinator.h
* EOControl/EOObjectStoreCoordinator.m
remove observers now
add setCoordinator and use it.
-coordinator
moved up from EODatabaseContext.
2010-07-01 David Wetzel <[email protected]>
* EOAccess/EODatabaseOperation.m
fix typo in string
* EOAccess/EODatabaseContext.m
add compareUsingEntityNames()
-orderAdaptorOperations
refactor
-entityNameOrderingArrayForEntities:
implemented
* EOControl/EOMutableKnownKeyDictionary.m
remove log
2010-07-01 David Wetzel <[email protected]>
* EOAccess/EODatabaseOperation.h
add comment
* EOAccess/EODatabaseContext.h
-lockingNonQualifiableAttributes
return NSArray, not id
-handleDroppedConnection
-commitChanges
remove unsed variables
-createAdaptorOperationsForDatabaseOperation:attributes:
rewrite
-lockingNonQualifiableAttributes
fix
return NSArray, not id
2010-06-29 David Wetzel <[email protected]>
* EOAccess/EOModel.m
-addEntity:
change error checks to be in sync with reference
2010-06-29 David Wetzel <[email protected]>
* EOControl/EOFault.h
* EOControl/EOFaultHandler.m
unsigned -> NSUInteger
* EOControl/EOFault.m
unsigned -> NSUInteger
-release
fix as suggested by David Ayers
-dealloc
add NSAssert
2010-06-28 David Wetzel <[email protected]>
* EOAccess/EODatabaseContext.m
-initializeObject:withGlobalID:editingContext:
remove exessive checking
-initializeObject:row:entity:editingContext:
reformat, less IMPs, less logs
* EOControl/EOFault.h
+ retainCount
unsigned -> NSUInteger
* EOControl/EOFault.m
+ retainCount
unsigned -> NSUInteger
+ clearFault:
raise if argument is no fault
rewrote retain behaviour
it makes no sense to free objects here and use the pointers
this would mess up the whole memory and crash.
2010-06-28 David Wetzel <[email protected]>
* EOAccess/EOEntity.m
- createInstanceWithEditingContext:globalID:zone:
reformat, remove logs
* EOAccess/EODatabaseContext.m
-initializeObject:withGlobalID:editingContext:
rewritten, add exceptions
* EOAccess/EODatabaseChannel.m
-fetchObject
remove logs, add exceptions
* EOAdaptors/PostgreSQLAdaptor/PostgreSQLAdaptor.m
postgresClientVersion()
use stringWithCString:encoding: not stringWithCString:
* Apps/EOModelEditor/CodeGenerator.m
don't add <NSCoding> to generated code
* EOControl/EOCustomObject.h
* EOControl/EOCustomObject.m
add -encodeWithCoder:
add -initWithCoder:
2010-06-27 David Wetzel <[email protected]>
* EOAccess/EODatabaseContext.m
-isValidQualifierTypeForAttribute:
reformat, remove useless code
-qualifierForLockingAttributes:primaryKeyAttributes:entity:snapshot:
reformat
* EOAdaptors/PostgreSQLAdaptor/PostgreSQLAdaptor.m
-isValidQualifierType:model:
remove logs, format
* Apps/EOModelEditor/Inspectors/AttributeInspector.gsmarkup
* Apps/EOModeler/EOModelExtensions.m
Rename the char into BOOL
You can use BOOL to create code that has BOOL values.
Apple seems to do this in newer code
2010-06-26 David Wetzel <[email protected]>
* EOAccess/EOAccessFault.m
-unableToFaultObject:databaseContext:
remove self from exception format printing
otherwise we create a loop...
2010-06-24 David Wetzel <[email protected]>
* EOControl/EOControl.h
include GNUstepBase/GNUstep.h on non-GNUSTEP platforms
2010-06-24 David Wetzel <[email protected]>
* Apps/EOModelEditor/CodeGenerator.m
-updateNeededForFileAtPath:content:canOverwrite:
do not overwrite files if canOverwrite = NO
2010-06-24 David Wetzel <[email protected]>
* README
add Additional Notes
* Apps/EOModelEditor/Inspectors/GNUmakefile
* Apps/EOModelEditor/GNUmakefile
* Apps/EOModeler/Makefile.preamble
add parent directories to search path as suggested by Sergey Golovin
* TODO
updated
* GDL2Palette/GNUmakefile
add ../Apps/EOModeler to ADDITIONAL_NATIVE_LIB_DIRS
(as suggested by Sergey Golovin)
It does not build on OS X, I need patches guys :-)
2010-06-23 David Wetzel <[email protected]>
* EOAccess/EOModel.m
add -_writePlist:toFile:
use it in -writeToFile:
this makes writing OPENSTEP plists work on OSX!
2010-06-14 David Wetzel <[email protected]>
* EOAccess/EODatabaseContext.m
recordUpdateForObject: changes:
more checks, call coordinator's
forwardUpdateForObject:changes:
recordInsertForObject:
raise exception on inconsistency
recordDeleteForObject:
raise exception on inconsistency
commitChanges:
remove NSLog
2010-06-11 David Wetzel <[email protected]>
* EOAccess/EODatabase.m
* EOAccess/EODatabase.h
add _doesReleaseUnreferencedSnapshots
add dummy for incrementSnapshotCountForGlobalID
add dummy for decrementSnapshotCountForGlobalID
add disableSnapshotRefcounting
* EOAccess/EODatabaseContext.m
retain EOAdaptorChannel created by adaptor
This is documented in WO 4.5.
Otherwise it gets closed after the request's
autorelease pool is drained.
I tested this on OSX with the BookStore example.
added some dummies for future implementation
refactor objectsWithFetchSpecification: editingContext:
refactor commitChanges
* EOAccess/EODatabaseChannel.m
reformat
* EOAdaptors/PostgreSQLAdaptor/PostgreSQLExpression.m
add include
* EOControl/EOGenericRecord.m
add [self willChange] in setValue:forUndefinedKey:
this will make saving changes possible for EOGenericRecord
otherwise it was just showing them in memory
2010-06-10 David Wetzel <[email protected]>
* EOControl/EOGenericRecord.h
* EOControl/EOGenericRecord.m
rename dictionary to _dictionary
fixed KVC.
2010-06-09 David Wetzel <[email protected]>
* EOAccess/EOSQLExpression.m
fix include for less warnings on mac
* EOAccess/EOEntity.m
fix include for less warnings on mac
isPrimaryKeyValidInObject: 0 is NOT a valid PK value
* EOAccess/EOAdaptor.m
fix include for less warnings on mac
isDroppedConnectionException
add comment and remove logs
* EOAccess/EOSQLQualifier.m
* EOAccess/EODatabaseDataSource.m
* EOAccess/EOAdaptorContext.m
* EOAccess/EORelationship.m
* EOAccess/EOUtilities.m
* EOAccess/EOSchemaGeneration.m
* EOAccess/EOAdaptorChannel.m
* EOAccess/EODatabaseChannel.m
fix include for less warnings on mac
* EOAccess/EODatabaseContext.h
add support for shouldHandleDatabaseException (WO 4.5)
* EOAccess/EODatabaseContext.m
add support for shouldHandleDatabaseException
add [newRow addEntriesFromDictionary:objectPK]
to merge PKValues into the values of the EO.
without that it is impossible to work.
relayPrimaryKey: object: entity:
Hopefully fixed.
add _delegateHandledDatabaseException:
fixed _primaryKeyForObject: raiseException:
(we raise always for now)
* EOAccess/EOAdaptorChannel.h
add comment
* EOAdaptors/PostgreSQLAdaptor/PostgreSQLChannel.m
fix include for less warnings on mac
numberOfAffectedRows: search reverse to cover "INSERT 0 1" case.
The first zero is the OID number
refactored primaryKeyForNewRowWithEntity:
* EOAdaptors/PostgreSQLAdaptor/PostgreSQLContext.h/m
disabled _primaryKeySequenceNameFormat
* EOAdaptors/PostgreSQLAdaptor/PostgreSQLExpression.m
fixed formatValue: forAttribute:
* EOControl/EOEditingContext.m
* EOControl/EOFaultHandler.m
* EOControl/EOKeyValueQualifier.m
* EOControl/EOUndoManager.m
* EOControl/EOClassDescription.m
* EOControl/EOQualifier.m
* EOControl/EOOrQualifier.m
fix include for less warnings on mac
* EOControl/EOCustomObject.m
use getCString:maxLength:encoding instead of getCString
use setValue: forKey instead of takeValue: forKey:
change text in exceptions a bit
* EOControl/EOPrivate.h
use setValue: forKey instead of takeValue: forKey:
2010-06-07 Fred Kiefer <[email protected]>
* EOMultiReaderLock.m (-tryLockForWriting, -unlockForReading):
Replace int with NSInteger.
2010-06-06 David Wetzel <[email protected]>
* EOAccess/EOEntity.m
Added comment. Please check this!
* EOAccess/EODatabaseContext.m
include NSObject+GNUstepBase.h
avoid Enumerator exception.
* EOAccess/EOUtilities.m
split line into two
* EOAccess/EOAdaptorChannel.h/m
unsigned -> NSUInteger
* EOAdaptors/PostgreSQLAdaptor/PostgreSQLChannel.h
removed _describeResults
* EOAdaptors/PostgreSQLAdaptor/PostgreSQLChannel.m
include NSObject+GNUstepBase.h
added numberOfAffectedRows
attribute naming in raw rows fixed
updating fixed
unsigned -> NSUInteger
2010-06-04 David Wetzel <[email protected]>
* Apps/EOModelEditor/Inspectors/AdvancedEntityInspector.gsmarkup
changed scrollView sizing
* Apps/EOModeler/EOMInspectorController.m
refactored view switching into a single method
disabled bounds logging
Be sure to get the lastest gui if you try this!
2010-06-03 David Wetzel <[email protected]>
* EOAccess/EOAttribute.m
include EOSQLExpression.h
move methods around to fix warnings
* EOAccess/EOEntity.m
include EOFetchSpecification.h to fix warning
* EOAccess/EOAdaptor.m
fix Mime include
* EOAccess/EOStoredProcedure.m
fix warning in setExternalName:
* EOAccess/EODatabaseContext.m
include EOAttributePriv.h and EOSQLExpression.h to fix warning
entityForGlobalID: cast to EOKeyGlobalID to avoid warning.
use caching.
_fetchRawRowKeyPaths: fix warnings by using proper types.
processSnapshotForDatabaseOperation: set EONull value when needed.
avoid warnings.