This repository has been archived by the owner on Mar 22, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
/
CHANGES
1572 lines (1321 loc) · 53.5 KB
/
CHANGES
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
0.7.0
-------
- More robust and cleaned up plugin interface
- Translatable
0.6.0 (changes since 0.5.3)
-------
- Now uses SQLAlchemy instead of SQLObject as the database ORM.
- Moved away from the table/spreadsheet style data entry.
- Reworked formatter plugin.
- More reliable CSV import/export
- More correct ABCD export (still some work to be done)
- Close to 3 billion bug fixes.
2006.07.04
----------
- builds now include the revision in the filename
- fix a bug when there is no infobox for a type in the search results
2006.07.02
----------
- don't remove and destroy the infobox if the current infobox is the same
type we are going to create
- cache infoboxes so we only create one of each type once
- create a (crappy) icon for windows
2006.07.01
----------
- added an InfoBox for Family
- lots of improvements all the infoboxes
- context menu for locations
2006.06.30
----------
- improved behavior of resetting the view after an action has been done
from the context menu or insert menu
- don't change sensitivity on search
- first go at a Genus infobox
2006.06.29
----------
- change the way the results in the search view are displayed and how the
context menu is built, push more of the work off to the plugins since they
should know more about the types they represent
2006.06.28
----------
- fixed error message in update_infobox if the iter was None
- fixed a problem when trying to commit donations, refactored out fixing up
the model from the accession source presenter depending on the type of the
presenter
2006.06.26
----------
release 0.5.2
2006.06.25
----------
- pass species correctly accession editor when opened from the species editor
- fixes for windows
- set app busy when creating a new database, this doesn't work very well since
the gui isn't given time to update and csv import doesn't block
- now get plants from family and genera in results
- make sure that the plants in the formatter list are unique
- other minor improvements to formatter plugin and documentation updates
2006.06.24
----------
- on going doc improvements
- improved speed of editor.SQLObjectProxy by doing less attribute lookups
in some methods
- removed some unnecessary code in species_editor.py
- removing a row from the vernacular name table with now set any
Species.default_vernacular_name column to None if the default_vernacular_name
refers to the deleted row
- basic cleanup/fixing to get ready for 0.5.2 release
- new vernacular names and synonyms are now blue to show that they have just
been added but not committed
- some tweaks to the search results tree view
- update infobox after editing an existing row
2006.06.21
----------
- documentation updates
- species now includes sp_qual in the name and the id_qual is included
in the infobox
2006.06.14
----------
- documentation updates
2006.06.13
----------
- now ask in BaubleApp.create_database if the user wants to import the genera
- show a message and don't let the use open the accession or species editor
unless species or genera already exist in the database
- forgot to change GenusSynonyms.txt to new imex_csv format
- change Family.family to not be alternateID so we can have both,
e.g., Malvaceae (s. lat) and Malvaceae (s. str), this is a bit of a fuck
up since it changes the model so it should require us to bump the minor
number and recreate the database if you want this feature
- other small bugs in imex_csv and the utils message_dialog
2006.06.12
----------
- changed the format of csv import to now use the column names as they are in
the database instead of how SQLObject sees them
- changed the way dialogs are show in csv import to prevent lock ups
- tried to improve the speed of imports a bit by changing the way the rows
are inserted, we now use sqlobject.sqlbuild.Insert. though it would still probably
be faster if we got it to work by sending the entire list of values to the
insert instead of one row at i time, i'm not sure if this is the real bottleneck
on the imports
- lots of other small fixes in csv import/export
2006.06.09
----------
- more work on csv export to make the gui more responsive
- code cleanups and docs
2006.06.08
----------
- rewrote csv importing to use gtasklets
(http://www.gnome.org/~gjc/gtasklet/gtasklets.html) so now we have a progress
dialog
2006.06.07
----------
- created some test for Species.str() to make sure we are getting string that
conform to proper botanical nomenclature
2006.06.06
----------
- fixed bug with setting background color on the species editor genus entry
when a character is deleted
- fixed a bug when cancelling a dirty model in the species and accession
editors would make further commits not commit until bauble was closed and
possibly not commit at all
- connected the full name label in the species editor
- lots of small changes in the species editor so we can stabilize for 0.5.2
- any value from a widget that doesn't validate against the model now adds
a problem to the presenter which usually disables the ok buttons
- fixes and on the species and accession info boxes
2006.06.01
----------
- continue work on species editor
- fixed but in utils.search_tree_model where the function was calling itself
recursively with the wrong arguments
- fixed setting False values on a gtk.CheckBoxe in utils.set_widget_value
2006.05.30
----------
- did some work on the species editor and the vernacular name editor, can now
set default vernacular names for the species
2006.05.29
----------
- can no longer set attributes in SQLObjectProxy that don't exist, this helps
reduce possible bugs
- first pass at adding vernacular names in the species editor
2006.05.29
----------
- got the basics working on the species editor
- first pass at adding synonyms with new species editor
2006.05.28
----------
- did some work to try and improve the speed of displaying strings
- cleaned up SearchView.search and added status bar message for the number of
results in a search
2006.05.27
----------
- started toying around with the species editor
- alot of changes in the plants plugin, all species model definitions were
moved to species_model.py while all editor(and for now infoboxes) for species
model are in species_model.py
- changed all plugins to use absolute instead of relative paths
- fixed problem with acc_id_entry and the sensitivity/self.problems
2006.05.23
----------
- changed the way that the accession editor displays when something is wrong
with an entry, the old way using event boxes didn't work like i thought
- moved Problems class into editor.py and added self.problem to
GenericEditorPresenter and added GenericEditorPresenter.add_problem and
GenericEditorPresenter.remove_problem
- fix calculation error with accession.dms_to_decimal when the direction is
west or source, i.e. negative
- don't save the elevation accuracy for the accession if the elevation is None
- make sure that both or neither latitude and longitude are required
- don't save geo accuracy of latitude and longitude are none
- desensitize geoacc_entry if latitude or longitude are None
- desensitize altacc_entry if alt_entry is None
- accession editor gui tweaks for win32
- add dms labels back to accession editor which i accidentaly deleted
2006.05.23
----------
- bumped version to 0.5.1
- accession editor now gives status is accession entered is a duplicate
accession id
- fixed problem with existing accession notes not showing up in the editor
- now include README, LICENSE and CHANGES in the distribution
- fixed annoying 'feature' where the species entry on the accession editor
would reset the completions for the species when a species was selected, this
caused weird pauses when the a species was selected
2006.05.22
----------
- interface tweaks for windows
- niced up the donor editor and donation editors a bit
- fix accidental line change in init_species_entry
- fix warning from the donor_combo in the accession editor
- problem with dates in the accession editor
- upgrade SQLObject to SQLObject-0.7.1dev_r1788 bugfix branch for the
windows bundle
- branch for 0.5.0
2006.05.20
----------
- fixed provenance combos in the accession editor
2006.05.18
----------
- added a main.py to bauble which will start the full application
- some win32 tweaks and import cleanups
- added a custom validator to accession.py for when floats col gets and empty
string from it's widget
2006.05.17
----------
- fixed problem with setting the completion when a species is passed to an
accession editor
- the species entry on the accession editor now shows if the value in the
entry, or rather in the model, is a valid species by setting the ok buttons
sensitive and changing the color of the species entry
- changed donor contact info the unicode
- Accession.acc_id now unicode
- Plant.plant_id now unicode
- Donor.donor_acc now unicode
- changed some other columns from StringCol to UnicodeCol but I can't remember
all of them
2006.05.16
----------
- fixed problems passing default values into new editors
- fixed problem with arguments on old editors, added temporary fix for
old editors
- workaround for weird bug with text entries and completions in the accession
editor
2006.05.14
----------
- more model changes on family, genus and species
- sort text files on csv import so we import them in order of dependencies
- can now import csv from the command line, it's crude but it works
- more work on bauble-upgrade-0.4-to-0.5.py script
- appropriate changes to editors where the model changed
- changes to BaubleApp so that we can open and create database without starting
up the gui/full app
- don't load plugins on automatically on plugins module import,
# wait until either plugins.load is called or plugins.init_plugins()
- more, more, more
2006.05.12
----------
- more tweaks on the accession editor, the labels on required fields are now
italicized, the lon/lat editing should be a dream now
- don't round lon/lat conversion values
2006.05.12
----------
- drastically improved the accession editor gui
- changed version to 0.5.0
- made model changes for 0.5.0
- added PlantHistory table though it doesn't have an editor yet
- added Accession.date and updated the editor
- removed Collection.collector2
- changed all <not set>'s in EnumCol's to None
2006.05.11
----------
- brought the decimal/dms conversion funcation back into accession.py
since this is the only place they are used and fixed them up a bit
- wrote my first unit test for the conversion funcations and added
the test.py to the garden plugin
2006.05.10
----------
- added validator support to GenericEditorPresenter.assign_simple_handler()
- changed Accession.source_type to an EnumCol(Collection, Donation, None), this
shouldn't change anything in the database but could cause problems if using an
older broken version of bauble that was storing the string NoneType in
the source type, although this changes the model i'm not bumping the minor
version number
- small fixes on the accession infobox
- added proper handlers for collection dates and lat/lon though lat/lon still
doesn't work that well
- and loads of other improvements/fixes to accession.py that i can't remember
2006.05.09
----------
- fixed indentation problems in search.py
- improvements on the accession editor, should open faster now but
completion for the species entry are built in an idle_add callback
so when this is being done the things seem to lock up
- connect next and ok_and_add buttons to accession editor
2006.05.05
----------
- refactored TreeViewEditorDialog and all relevant code out of
bauble/editor.py and into bauble/treevieweditor.py
- changed all files relevant to TreeViewEditorDialog refactoring
- more accession editor work
- start of work for a better donor editor
- committed r251
- both accession and donor editor seem more or less finished, just need to
hook up next and ok_and_add buttons
- more refactoring and cleanup, too much to list
2006.05.04
----------
- added accelerator for Insert menu
- changed to utils.set_widget_value to try and make setting the combobox
value a bit more correct
- indentation fixes in _gui.py
- factored check_constraints and commit_to_table out of the editor
- accession editor seems to be working pretty good though I still need
to write test and work on editing donations
2006.05.02
----------
- add a callback system to SQLObjectProxy to notify of changed in the model
- the basics seem to work on the accession editor as long as you
don't mess around with the collection/donation information
- created bauble/error.py to hold exception/error classes
2006.05.01
----------
- mostly work on new accession editor
- some small fixes for utils
- added get method to prefs to return default value
- small change in searchview.search.py to support new editor api
=======
>>>>>>> .r343
=======
2006.07.02
----------
- don't remove and destroy the infobox if the current infobox is the same
type we are going to create
- cache infoboxes so we only create one of each type once
- create a (crappy) icon for windows
2006.07.01
----------
- added an InfoBox for Family
- lots of improvements all the infoboxes
- context menu for locations
2006.06.30
----------
- improved behavior of resetting the view after an action has been done
from the context menu or insert menu
- don't change sensitivity on search
- first go at a Genus infobox
2006.06.29
----------
- change the way the results in the search view are displayed and how the
context menu is built, push more of the work off to the plugins since they
should know more about the types they represent
2006.06.28
----------
- fixed error message in update_infobox if the iter was None
- fixed a problem when trying to commit donations, refactored out fixing up
the model from the accession source presenter depending on the type of the
presenter
2006.06.26
----------
release 0.5.2
2006.06.25
----------
- pass species correctly accession editor when opened from the species editor
- fixes for windows
- set app busy when creating a new database, this doesn't work very well since
the gui isn't given time to update and csv import doesn't block
- now get plants from family and genera in results
- make sure that the plants in the formatter list are unique
- other minor improvements to formatter plugin and documentation updates
2006.06.24
----------
- on going doc improvements
- improved speed of editor.SQLObjectProxy by doing less attribute lookups
in some methods
- removed some unnecessary code in species_editor.py
- removing a row from the vernacular name table with now set any
Species.default_vernacular_name column to None if the default_vernacular_name
refers to the deleted row
- basic cleanup/fixing to get ready for 0.5.2 release
- new vernacular names and synonyms are now blue to show that they have just
been added but not committed
- some tweaks to the search results tree view
- update infobox after editing an existing row
2006.06.21
----------
- documentation updates
- species now includes sp_qual in the name and the id_qual is included
in the infobox
2006.06.14
----------
- documentation updates
2006.06.13
----------
- now ask in BaubleApp.create_database if the user wants to import the genera
- show a message and don't let the use open the accession or species editor
unless species or genera already exist in the database
- forgot to change GenusSynonyms.txt to new imex_csv format
- change Family.family to not be alternateID so we can have both,
e.g., Malvaceae (s. lat) and Malvaceae (s. str), this is a bit of a fuck
up since it changes the model so it should require us to bump the minor
number and recreate the database if you want this feature
- other small bugs in imex_csv and the utils message_dialog
2006.06.12
----------
- changed the format of csv import to now use the column names as they are in
the database instead of how SQLObject sees them
- changed the way dialogs are show in csv import to prevent lock ups
- tried to improve the speed of imports a bit by changing the way the rows
are inserted, we now use sqlobject.sqlbuild.Insert. though it would still probably
be faster if we got it to work by sending the entire list of values to the
insert instead of one row at i time, i'm not sure if this is the real bottleneck
on the imports
- lots of other small fixes in csv import/export
2006.06.09
----------
- more work on csv export to make the gui more responsive
- code cleanups and docs
2006.06.08
----------
- rewrote csv importing to use gtasklets
(http://www.gnome.org/~gjc/gtasklet/gtasklets.html) so now we have a progress
dialog
2006.06.07
----------
- created some test for Species.str() to make sure we are getting string that
conform to proper botanical nomenclature
2006.06.06
----------
- fixed bug with setting background color on the species editor genus entry
when a character is deleted
- fixed a bug when cancelling a dirty model in the species and accession
editors would make further commits not commit until bauble was closed and
possibly not commit at all
- connected the full name label in the species editor
- lots of small changes in the species editor so we can stabilize for 0.5.2
- any value from a widget that doesn't validate against the model now adds
a problem to the presenter which usually disables the ok buttons
- fixes and on the species and accession info boxes
2006.06.01
----------
- continue work on species editor
- fixed but in utils.search_tree_model where the function was calling itself
recursively with the wrong arguments
- fixed setting False values on a gtk.CheckBoxe in utils.set_widget_value
2006.05.30
----------
- did some work on the species editor and the vernacular name editor, can now
set default vernacular names for the species
2006.05.29
----------
- can no longer set attributes in SQLObjectProxy that don't exist, this helps
reduce possible bugs
- first pass at adding vernacular names in the species editor
2006.05.29
----------
- got the basics working on the species editor
- first pass at adding synonyms with new species editor
2006.05.28
----------
- did some work to try and improve the speed of displaying strings
- cleaned up SearchView.search and added status bar message for the number of
results in a search
2006.05.27
----------
- started toying around with the species editor
- alot of changes in the plants plugin, all species model definitions were
moved to species_model.py while all editor(and for now infoboxes) for species
model are in species_model.py
- changed all plugins to use absolute instead of relative paths
- fixed problem with acc_id_entry and the sensitivity/self.problems
2006.05.23
----------
- changed the way that the accession editor displays when something is wrong
with an entry, the old way using event boxes didn't work like i thought
- moved Problems class into editor.py and added self.problem to
GenericEditorPresenter and added GenericEditorPresenter.add_problem and
GenericEditorPresenter.remove_problem
- fix calculation error with accession.dms_to_decimal when the direction is
west or source, i.e. negative
- don't save the elevation accuracy for the accession if the elevation is None
- make sure that both or neither latitude and longitude are required
- don't save geo accuracy of latitude and longitude are none
- desensitize geoacc_entry if latitude or longitude are None
- desensitize altacc_entry if alt_entry is None
- accession editor gui tweaks for win32
- add dms labels back to accession editor which i accidentaly deleted
2006.05.23
----------
- bumped version to 0.5.1
- accession editor now gives status is accession entered is a duplicate
accession id
- fixed problem with existing accession notes not showing up in the editor
- now include README, LICENSE and CHANGES in the distribution
- fixed annoying 'feature' where the species entry on the accession editor
would reset the completions for the species when a species was selected, this
caused weird pauses when the a species was selected
2006.05.22
----------
- interface tweaks for windows
- niced up the donor editor and donation editors a bit
- fix accidental line change in init_species_entry
- fix warning from the donor_combo in the accession editor
- problem with dates in the accession editor
- upgrade SQLObject to SQLObject-0.7.1dev_r1788 bugfix branch for the
windows bundle
- branch for 0.5.0
2006.05.20
----------
- fixed provenance combos in the accession editor
2006.05.18
----------
- added a main.py to bauble which will start the full application
- some win32 tweaks and import cleanups
- added a custom validator to accession.py for when floats col gets and empty
string from it's widget
2006.05.17
----------
- fixed problem with setting the completion when a species is passed to an
accession editor
- the species entry on the accession editor now shows if the value in the
entry, or rather in the model, is a valid species by setting the ok buttons
sensitive and changing the color of the species entry
- changed donor contact info the unicode
- Accession.acc_id now unicode
- Plant.plant_id now unicode
- Donor.donor_acc now unicode
- changed some other columns from StringCol to UnicodeCol but I can't remember
all of them
2006.05.16
----------
- fixed problems passing default values into new editors
- fixed problem with arguments on old editors, added temporary fix for
old editors
- workaround for weird bug with text entries and completions in the accession
editor
2006.05.14
----------
- more model changes on family, genus and species
- sort text files on csv import so we import them in order of dependencies
- can now import csv from the command line, it's crude but it works
- more work on bauble-upgrade-0.4-to-0.5.py script
- appropriate changes to editors where the model changed
- changes to BaubleApp so that we can open and create database without starting
up the gui/full app
- don't load plugins on automatically on plugins module import,
# wait until either plugins.load is called or plugins.init_plugins()
- more, more, more
2006.05.12
----------
- more tweaks on the accession editor, the labels on required fields are now
italicized, the lon/lat editing should be a dream now
- don't round lon/lat conversion values
2006.05.12
----------
- drastically improved the accession editor gui
- changed version to 0.5.0
- made model changes for 0.5.0
- added PlantHistory table though it doesn't have an editor yet
- added Accession.date and updated the editor
- removed Collection.collector2
- changed all <not set>'s in EnumCol's to None
2006.05.11
----------
- brought the decimal/dms conversion funcation back into accession.py
since this is the only place they are used and fixed them up a bit
- wrote my first unit test for the conversion funcations and added
the test.py to the garden plugin
2006.05.10
----------
- added validator support to GenericEditorPresenter.assign_simple_handler()
- changed Accession.source_type to an EnumCol(Collection, Donation, None), this
shouldn't change anything in the database but could cause problems if using an
older broken version of bauble that was storing the string NoneType in
the source type, although this changes the model i'm not bumping the minor
version number
- small fixes on the accession infobox
- added proper handlers for collection dates and lat/lon though lat/lon still
doesn't work that well
- and loads of other improvements/fixes to accession.py that i can't remember
2006.05.09
----------
- fixed indentation problems in search.py
- improvements on the accession editor, should open faster now but
completion for the species entry are built in an idle_add callback
so when this is being done the things seem to lock up
- connect next and ok_and_add buttons to accession editor
2006.05.05
----------
- refactored TreeViewEditorDialog and all relevant code out of
bauble/editor.py and into bauble/treevieweditor.py
- changed all files relevant to TreeViewEditorDialog refactoring
- more accession editor work
- start of work for a better donor editor
- committed r251
- both accession and donor editor seem more or less finished, just need to
hook up next and ok_and_add buttons
- more refactoring and cleanup, too much to list
2006.05.04
----------
- added accelerator for Insert menu
- changed to utils.set_widget_value to try and make setting the combobox
value a bit more correct
- indentation fixes in _gui.py
- factored check_constraints and commit_to_table out of the editor
- accession editor seems to be working pretty good though I still need
to write test and work on editing donations
2006.05.02
----------
- add a callback system to SQLObjectProxy to notify of changed in the model
- the basics seem to work on the accession editor as long as you
don't mess around with the collection/donation information
- created bauble/error.py to hold exception/error classes
2006.05.01
----------
- mostly work on new accession editor
- some small fixes for utils
- added get method to prefs to return default value
- small change in searchview.search.py to support new editor api
>>>>>>> .r343
=======
2006.07.02
----------
- don't remove and destroy the infobox if the current infobox is the same
type we are going to create
- cache infoboxes so we only create one of each type once
- create a (crappy) icon for windows
2006.07.01
----------
- added an InfoBox for Family
- lots of improvements all the infoboxes
- context menu for locations
2006.06.30
----------
- improved behavior of resetting the view after an action has been done
from the context menu or insert menu
- don't change sensitivity on search
- first go at a Genus infobox
2006.06.29
----------
- change the way the results in the search view are displayed and how the
context menu is built, push more of the work off to the plugins since they
should know more about the types they represent
2006.06.28
----------
- fixed error message in update_infobox if the iter was None
- fixed a problem when trying to commit donations, refactored out fixing up
the model from the accession source presenter depending on the type of the
presenter
2006.06.26
----------
release 0.5.2
2006.06.25
----------
- pass species correctly accession editor when opened from the species editor
- fixes for windows
- set app busy when creating a new database, this doesn't work very well since
the gui isn't given time to update and csv import doesn't block
- now get plants from family and genera in results
- make sure that the plants in the formatter list are unique
- other minor improvements to formatter plugin and documentation updates
2006.06.24
----------
- on going doc improvements
- improved speed of editor.SQLObjectProxy by doing less attribute lookups
in some methods
- removed some unnecessary code in species_editor.py
- removing a row from the vernacular name table with now set any
Species.default_vernacular_name column to None if the default_vernacular_name
refers to the deleted row
- basic cleanup/fixing to get ready for 0.5.2 release
- new vernacular names and synonyms are now blue to show that they have just
been added but not committed
- some tweaks to the search results tree view
- update infobox after editing an existing row
2006.06.21
----------
- documentation updates
- species now includes sp_qual in the name and the id_qual is included
in the infobox
2006.06.14
----------
- documentation updates
2006.06.13
----------
- now ask in BaubleApp.create_database if the user wants to import the genera
- show a message and don't let the use open the accession or species editor
unless species or genera already exist in the database
- forgot to change GenusSynonyms.txt to new imex_csv format
- change Family.family to not be alternateID so we can have both,
e.g., Malvaceae (s. lat) and Malvaceae (s. str), this is a bit of a fuck
up since it changes the model so it should require us to bump the minor
number and recreate the database if you want this feature
- other small bugs in imex_csv and the utils message_dialog
2006.06.12
----------
- changed the format of csv import to now use the column names as they are in
the database instead of how SQLObject sees them
- changed the way dialogs are show in csv import to prevent lock ups
- tried to improve the speed of imports a bit by changing the way the rows
are inserted, we now use sqlobject.sqlbuild.Insert. though it would still probably
be faster if we got it to work by sending the entire list of values to the
insert instead of one row at i time, i'm not sure if this is the real bottleneck
on the imports
- lots of other small fixes in csv import/export
2006.06.09
----------
- more work on csv export to make the gui more responsive
- code cleanups and docs
2006.06.08
----------
- rewrote csv importing to use gtasklets
(http://www.gnome.org/~gjc/gtasklet/gtasklets.html) so now we have a progress
dialog
2006.06.07
----------
- created some test for Species.str() to make sure we are getting string that
conform to proper botanical nomenclature
2006.06.06
----------
- fixed bug with setting background color on the species editor genus entry
when a character is deleted
- fixed a bug when cancelling a dirty model in the species and accession
editors would make further commits not commit until bauble was closed and
possibly not commit at all
- connected the full name label in the species editor
- lots of small changes in the species editor so we can stabilize for 0.5.2
- any value from a widget that doesn't validate against the model now adds
a problem to the presenter which usually disables the ok buttons
- fixes and on the species and accession info boxes
2006.06.01
----------
- continue work on species editor
- fixed but in utils.search_tree_model where the function was calling itself
recursively with the wrong arguments
- fixed setting False values on a gtk.CheckBoxe in utils.set_widget_value
2006.05.30
----------
- did some work on the species editor and the vernacular name editor, can now
set default vernacular names for the species
2006.05.29
----------
- can no longer set attributes in SQLObjectProxy that don't exist, this helps
reduce possible bugs
- first pass at adding vernacular names in the species editor
2006.05.29
----------
- got the basics working on the species editor
- first pass at adding synonyms with new species editor
2006.05.28
----------
- did some work to try and improve the speed of displaying strings
- cleaned up SearchView.search and added status bar message for the number of
results in a search
2006.05.27
----------
- started toying around with the species editor
- alot of changes in the plants plugin, all species model definitions were
moved to species_model.py while all editor(and for now infoboxes) for species
model are in species_model.py
- changed all plugins to use absolute instead of relative paths
- fixed problem with acc_id_entry and the sensitivity/self.problems
2006.05.23
----------
- changed the way that the accession editor displays when something is wrong
with an entry, the old way using event boxes didn't work like i thought
- moved Problems class into editor.py and added self.problem to
GenericEditorPresenter and added GenericEditorPresenter.add_problem and
GenericEditorPresenter.remove_problem
- fix calculation error with accession.dms_to_decimal when the direction is
west or source, i.e. negative
- don't save the elevation accuracy for the accession if the elevation is None
- make sure that both or neither latitude and longitude are required
- don't save geo accuracy of latitude and longitude are none
- desensitize geoacc_entry if latitude or longitude are None
- desensitize altacc_entry if alt_entry is None
- accession editor gui tweaks for win32
- add dms labels back to accession editor which i accidentaly deleted
2006.05.23
----------
- bumped version to 0.5.1
- accession editor now gives status is accession entered is a duplicate
accession id
- fixed problem with existing accession notes not showing up in the editor
- now include README, LICENSE and CHANGES in the distribution
- fixed annoying 'feature' where the species entry on the accession editor
would reset the completions for the species when a species was selected, this
caused weird pauses when the a species was selected
2006.05.22
----------
- interface tweaks for windows
- niced up the donor editor and donation editors a bit
- fix accidental line change in init_species_entry
- fix warning from the donor_combo in the accession editor
- problem with dates in the accession editor
- upgrade SQLObject to SQLObject-0.7.1dev_r1788 bugfix branch for the
windows bundle
- branch for 0.5.0
2006.05.20
----------
- fixed provenance combos in the accession editor
2006.05.18
----------
- added a main.py to bauble which will start the full application
- some win32 tweaks and import cleanups
- added a custom validator to accession.py for when floats col gets and empty
string from it's widget
2006.05.17
----------
- fixed problem with setting the completion when a species is passed to an
accession editor
- the species entry on the accession editor now shows if the value in the
entry, or rather in the model, is a valid species by setting the ok buttons
sensitive and changing the color of the species entry
- changed donor contact info the unicode
- Accession.acc_id now unicode
- Plant.plant_id now unicode
- Donor.donor_acc now unicode
- changed some other columns from StringCol to UnicodeCol but I can't remember
all of them
2006.05.16
----------
- fixed problems passing default values into new editors
- fixed problem with arguments on old editors, added temporary fix for
old editors
- workaround for weird bug with text entries and completions in the accession
editor
2006.05.14
----------
- more model changes on family, genus and species
- sort text files on csv import so we import them in order of dependencies
- can now import csv from the command line, it's crude but it works
- more work on bauble-upgrade-0.4-to-0.5.py script
- appropriate changes to editors where the model changed
- changes to BaubleApp so that we can open and create database without starting
up the gui/full app
- don't load plugins on automatically on plugins module import,
# wait until either plugins.load is called or plugins.init_plugins()
- more, more, more
2006.05.12
----------
- more tweaks on the accession editor, the labels on required fields are now
italicized, the lon/lat editing should be a dream now
- don't round lon/lat conversion values
2006.05.12
----------
- drastically improved the accession editor gui
- changed version to 0.5.0
- made model changes for 0.5.0
- added PlantHistory table though it doesn't have an editor yet
- added Accession.date and updated the editor
- removed Collection.collector2
- changed all <not set>'s in EnumCol's to None
2006.05.11
----------
- brought the decimal/dms conversion funcation back into accession.py
since this is the only place they are used and fixed them up a bit
- wrote my first unit test for the conversion funcations and added
the test.py to the garden plugin
2006.05.10
----------
- added validator support to GenericEditorPresenter.assign_simple_handler()
- changed Accession.source_type to an EnumCol(Collection, Donation, None), this
shouldn't change anything in the database but could cause problems if using an
older broken version of bauble that was storing the string NoneType in
the source type, although this changes the model i'm not bumping the minor
version number
- small fixes on the accession infobox
- added proper handlers for collection dates and lat/lon though lat/lon still
doesn't work that well
- and loads of other improvements/fixes to accession.py that i can't remember
2006.05.09
----------
- fixed indentation problems in search.py
- improvements on the accession editor, should open faster now but
completion for the species entry are built in an idle_add callback
so when this is being done the things seem to lock up
- connect next and ok_and_add buttons to accession editor
2006.05.05
----------
- refactored TreeViewEditorDialog and all relevant code out of
bauble/editor.py and into bauble/treevieweditor.py
- changed all files relevant to TreeViewEditorDialog refactoring
- more accession editor work
- start of work for a better donor editor
- committed r251
- both accession and donor editor seem more or less finished, just need to
hook up next and ok_and_add buttons
- more refactoring and cleanup, too much to list
2006.05.04
----------
- added accelerator for Insert menu
- changed to utils.set_widget_value to try and make setting the combobox
value a bit more correct
- indentation fixes in _gui.py
- factored check_constraints and commit_to_table out of the editor
- accession editor seems to be working pretty good though I still need
to write test and work on editing donations
2006.05.02
----------
- add a callback system to SQLObjectProxy to notify of changed in the model
- the basics seem to work on the accession editor as long as you
don't mess around with the collection/donation information