Commit Graph

90 Commits

Author SHA1 Message Date
Benny Malengier
e109e3d743 Merged geps21 branch, changes r15866-16034, into trunk
svn: r16035
2010-10-24 14:43:47 +00:00
Nick Hall
c3e527b4fb GEPS 011: Tagging - Extended to Family, Note and Media objects
svn: r16025
2010-10-22 23:22:33 +00:00
Jérôme Rapinat
18a97ac64d #4264: import ignores marriage and divorce dates (.gw file)
svn: r16006
2010-10-16 09:17:28 +00:00
Jérôme Rapinat
f90ce86320 #4264: import ignores marriage and divorce dates (.gw file)
svn: r15995
2010-10-15 17:47:10 +00:00
Benny Malengier
371205ec70 Fix surname index for autocompletion
Fix check tool and start with importgrdb upgrade


svn: r15949
2010-10-02 16:01:34 +00:00
Benny Malengier
043d35a354 Working XML import with new surnames
svn: r15947
2010-10-02 12:52:14 +00:00
Nick Hall
6b6da7dafe GEPS 011: Tagging - Add XML import and export
svn: r15938
2010-09-29 22:25:52 +00:00
Benny Malengier
f111dcbad9 add nick and famnick
svn: r15930
2010-09-25 15:11:54 +00:00
Doug Blank
791ab064f8 Renamed GrampsCursor to BsddbBaseCursor
svn: r15689
2010-08-08 22:06:54 +00:00
Doug Blank
dc0d9511a3 Only use iter_items if you are sure it is used just once; fixed issue duplicating places
svn: r15673
2010-07-31 15:55:56 +00:00
Doug Blank
59dca4e3ea 3502: Extend CSV import to include additional fields; added source title to export
svn: r15671
2010-07-31 15:18:41 +00:00
Doug Blank
7e5e5db27f 3798: tempfile wrongly used in Gramps: possible error 'Too many open files: ...'
svn: r15201
2010-04-17 23:20:01 +00:00
Doug Blank
c551d6beb1 Newyear import/export changes and fix
svn: r15027
2010-04-04 12:10:12 +00:00
Benny Malengier
aad74b8bb8 3690: Do not need to use underscore on text for file formats (import/export)
svn: r14889
2010-03-21 10:33:08 +00:00
Doug Blank
a13a0e1fcd 3728: Daterange with cformat doesn't XML-import
svn: r14866
2010-03-19 01:20:31 +00:00
Benny Malengier
585e0fa85d 3709: Typos and grammar mistakes
svn: r14841
2010-03-15 22:11:25 +00:00
Doug Blank
3ae0224e1a Removed Django import/export and CalcEstimateDates (moved to addons)
svn: r14685
2010-03-07 21:42:03 +00:00
Doug Blank
dcfb25abc4 Trunk is now version 3.3.0
svn: r14653
2010-03-06 22:47:25 +00:00
Peter Landgren
244b8621fc Fixed another two problems with string formatting using {}.
svn: r14614
2010-03-04 13:56:26 +00:00
Peter Landgren
8636acda8e Fixed another problem with string formatting using {}.
svn: r14612
2010-03-04 13:48:49 +00:00
Peter Landgren
7ad1b8563f Fixed another problem with string formatting using {}.
svn: r14611
2010-03-04 13:39:22 +00:00
Peter Landgren
3b1e7d5a36 Typo.
svn: r14596
2010-03-03 15:37:30 +00:00
Rob G. Healey
bcedebba64 Fixed an error on line 691-- named variables. Thanks Peter for pointing it out.
svn: r14486
2010-02-25 16:53:31 +00:00
Rob G. Healey
36a91b6cb9 Changed some formatted strings to named variables for 'make distcheck' to work properly.
svn: r14483
2010-02-25 15:52:32 +00:00
Doug Blank
696b236777 Changes to allow distcheck to pass
svn: r14436
2010-02-22 12:05:37 +00:00
Doug Blank
7f5e91d9ea 3428: When running with pythonw.exe, Windows may crash if you write to stdout
svn: r14396
2010-02-16 02:18:24 +00:00
Doug Blank
843fb89ba0 Plugins required to be correct version
svn: r14300
2010-02-10 12:13:47 +00:00
Benny Malengier
a89e8d1d18 Remove column config from db, move to the plugins
Start with reuse of preferences for all configuration
Allow all view plugins to set configuration dialog
TODO: activate the column reorder in config of listviews


svn: r14176
2010-02-01 07:01:45 +00:00
Gerald Britton
8f0582df8a Use built-in functions to replace for loops:
Old code:

for x in y:
  f(x)

New Code:

map(f, y)

Also use defaultdict instead of simple dict when advantageous and use list comprehensions
instead of for loops where map() could be used but requires lambdas.


svn: r14135
2010-01-25 17:45:21 +00:00
Brian Matherly
cd30f4db2f Continued work on GEP008: move src/Mime to src/gen/mime.
svn: r14118
2010-01-24 20:17:14 +00:00
Gerald Britton
1f2469b09f Simplify with built-in functions where possible. e.g.
change [x for x in y if x] to filter(None, y)
change [f(x) for x in y] to map(f, x)
change [x for x in y] to list(y)

These changes reduce source code size and complexity and produce some minor performance gains

svn: r14104
2010-01-21 18:42:53 +00:00
Brian Matherly
f04880ec09 Move gettext, ngettext and sgettext calls into the new ggettext module. All of them return unicode all of the time.
svn: r14091
2010-01-18 04:42:17 +00:00
Brian Matherly
c5f54d0cfc Continued work on GEP008: Move src/BasicUtils/_NameDisplay.py to src/gen/display.
svn: r14072
2010-01-14 04:08:04 +00:00
Brian Matherly
252ef6daee Continued work on GEP008: Move BasicUtils/UpdateCallback.py to gen/updatecallback.py.
svn: r14025
2010-01-10 20:21:10 +00:00
Brian Matherly
4838650df4 Move _GedcomParse.py to src/plugins/lib/libgedcom.py. Remove GrampsDbUtils.
svn: r13940
2009-12-29 19:20:16 +00:00
Brian Matherly
c7b595210f Move GedcomStageOne.py into GedcomParse.py.
svn: r13936
2009-12-29 05:37:20 +00:00
Brian Matherly
06b3d7dc1f Fix Misnamed DbMixin
svn: r13910
2009-12-24 20:14:15 +00:00
Doug Blank
ab3dfe1415 3465: Create a new hierarchy of base classes for gramps cor databases (read, write) and add methods
svn: r13894
2009-12-23 15:55:58 +00:00
Doug Blank
699dcb13fe Fixed svn Id property
svn: r13881
2009-12-21 13:43:50 +00:00
Doug Blank
872e971fd3 gen.lib and gen.utils are independent; removed gen.utils.dbutils --- moved db methods to gen.db.base
svn: r13872
2009-12-21 04:18:31 +00:00
Brian Matherly
814d721f68 Remove QuestionDialog dependency from gen. The database now raises exceptions and the GUI generates the question dialog.
svn: r13865
2009-12-20 22:44:32 +00:00
Doug Blank
49bd78481a Removed as now unneeded with Django-supported interface
svn: r13815
2009-12-15 17:32:24 +00:00
Doug Blank
d05e98cbf6 Removed as now unneeded with Django-supported interface
svn: r13813
2009-12-15 17:11:05 +00:00
Doug Blank
54ac83e6ed 3420: Error in line 498 of importCSV.py during CSV import.
svn: r13740
2009-12-08 01:13:42 +00:00
Doug Blank
18e4b52115 Print to stderr, turn debug off, use addon translations, if any
svn: r13654
2009-11-22 18:12:58 +00:00
Doug Blank
670e9bc1ff Django importer; may move to addons later, but keeping it with DjangoExport for now
svn: r13653
2009-11-22 18:07:38 +00:00
Peter Landgren
c1c5a61266 Update for consistent use of Gramps. See issue 3355.
svn: r13621
2009-11-18 08:34:20 +00:00
Peter Landgren
900d1c57f4 Second update for consistent use of Gramps. See issue 3355.
svn: r13611
2009-11-17 20:45:58 +00:00
Peter Landgren
33686fcf18 First update for consistent use of Gramps. See issue 3355.
svn: r13610
2009-11-17 20:14:53 +00:00
Gerald Britton
00bee4ee66 Bug 0003098: "Buri" event on GeneWeb file may break import into Gramps
svn: r13457
2009-10-29 20:03:03 +00:00