Commit Graph

16453 Commits

Author SHA1 Message Date
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
Peter Landgren
f0cfe6c5e9 nantionaldagen -> Nationaldagen.
svn: r14175
2010-01-30 16:05:59 +00:00
Doug Blank
add3145df5 Added Croatian (Josip) and standardized type names to lowercase
svn: r14174
2010-01-30 13:34:16 +00:00
Gerald Britton
98aa2b7b79 fix bug causing problems with thumbnails and other attributes
svn: r14173
2010-01-30 13:31:16 +00:00
Doug Blank
53358c2179 Handle non-object (function) gramplets' active setting
svn: r14172
2010-01-29 23:56:47 +00:00
Doug Blank
4aea0543b2 When you close a detached gramplet, need to set active to the same as its viewpage
svn: r14171
2010-01-29 23:49:31 +00:00
Doug Blank
27c20ccaeb Renamed isodow to dow
svn: r14170
2010-01-29 21:56:13 +00:00
Nick Hall
07fac74e8f Tweaks to English holidays
svn: r14169
2010-01-29 18:55:38 +00:00
Nick Hall
1348340dc6 Add ISO day of week function
svn: r14168
2010-01-29 18:18:08 +00:00
Serge Noiraud
717572d6e3 Adding holidays for France.
svn: r14167
2010-01-29 17:33:29 +00:00
Peter Landgren
c944f5ca15 Updated Swedish part.
svn: r14166
2010-01-29 15:25:53 +00:00
Peter Landgren
1652fe5382 Easier method (and correct) to calculate Midsommardagen.
svn: r14165
2010-01-29 14:28:19 +00:00
Doug Blank
ba553eeba6 Polish on workday/weekend offset
svn: r14164
2010-01-29 14:27:25 +00:00
Doug Blank
dd4be4b0e5 added 'workday' and 'weekend' to offset
svn: r14163
2010-01-29 13:57:04 +00:00
Doug Blank
2e00aaa5cf Added month names for year/MON/day form
svn: r14162
2010-01-29 13:15:28 +00:00
Doug Blank
4501b036df Redraw initially closed, then maximized gramplet
svn: r14161
2010-01-29 12:41:55 +00:00
Peter Landgren
ec414b933c Fix for Swedish Midsummer Day.
svn: r14160
2010-01-29 08:02:34 +00:00
Nick Hall
6b7f7c4684 Add English holidays
svn: r14159
2010-01-28 22:50:16 +00:00
Gerald Britton
90a172393d fix little bug checking for wrong condition
svn: r14158
2010-01-28 19:35:51 +00:00
Peter Landgren
7533064c1a Fix of issue 3531.
svn: r14157
2010-01-28 15:21:13 +00:00
Peter Landgren
79add865ff Fix of issue 3531.
svn: r14156
2010-01-28 15:20:19 +00:00
Peter Landgren
fcde4a1e3b Fix of minor bug in inlaw.
svn: r14155
2010-01-28 14:35:56 +00:00
Doug Blank
514af57f3c Added help trans, and fixed .transaction issue
svn: r14154
2010-01-28 14:34:09 +00:00
Doug Blank
7dd2f83742 Attempts to fix unicode column text
svn: r14153
2010-01-28 13:57:00 +00:00
Doug Blank
3cadd4b099 3537: Wrong easter calculation in birthday report, and updated holidays
svn: r14152
2010-01-28 13:36:41 +00:00
Brian Matherly
ddb87e77a8 Update to polish translation from Łukasz Rymarczyk
svn: r14151
2010-01-28 04:51:51 +00:00
Doug Blank
d63804d6b6 Some fixes for Age on Date
svn: r14149
2010-01-27 13:32:53 +00:00
Doug Blank
1bc7a15a27 Fixed some optimized reference copy errors
svn: r14148
2010-01-27 12:07:25 +00:00
Doug Blank
e16a75f449 Some bug fixes on Probably Alive
svn: r14147
2010-01-27 06:06:35 +00:00
Doug Blank
30c5030ebe A method for comparing person == person
svn: r14146
2010-01-27 06:05:24 +00:00
Brian Matherly
ac820cb8df PEP8 Improvements. Remove dependency on DateHandler.
svn: r14145
2010-01-27 03:38:30 +00:00
Peter Landgren
a001b744b4 Notes and Endnotes look better now, but there are more to done.
svn: r14144
2010-01-26 19:00:16 +00:00
Gerald Britton
07decce138 Tweaks
svn: r14143
2010-01-26 14:21:51 +00:00
Doug Blank
294f59bb7b If detached, force active
svn: r14142
2010-01-26 13:56:55 +00:00
Doug Blank
81bb97e2df Refinements on statusbar update; only updated when really necessary; fixed bug in updating when db is closed
svn: r14141
2010-01-26 13:38:05 +00:00
Doug Blank
e7c5d7a207 Start out dirty and not active; removed debugging stuff
svn: r14140
2010-01-26 13:04:01 +00:00
Doug Blank
2c1a4da30c Fixed bug reveal by optimization
svn: r14139
2010-01-26 12:21:28 +00:00
Doug Blank
cf4748ecaf Gramplets only update when active, detached, or forced
svn: r14138
2010-01-26 12:00:01 +00:00
Doug Blank
f5fe747716 Renamed for_gramps to gramps_target_version; added newplugin function to work on additional register style
svn: r14137
2010-01-25 23:58:42 +00:00
Doug Blank
1cfeea3701 Renamed for_gramps to gramps_target_version
svn: r14136
2010-01-25 23:56: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
Gerald Britton
fbb8fa2a52 Use list comprehensions and built-in functions
svn: r14134
2010-01-25 17:40:15 +00:00
Peter Landgren
d4117408e6 Fixed typo.
svn: r14133
2010-01-25 08:56:46 +00:00
Peter Landgren
7a3732d6fa Fixed typo.
svn: r14132
2010-01-25 08:56:05 +00:00
Jérôme Rapinat
ffad78bb1b Update Chinese translation (by Honeyword)
svn: r14131
2010-01-25 08:51:14 +00:00
Peter Landgren
9b1109a99a Added missed file.
svn: r14130
2010-01-25 08:44:59 +00:00
Peter Landgren
1631ae7de1 Added missed files.
svn: r14129
2010-01-25 08:41:28 +00:00
Peter Landgren
00e7bf53d7 Added missed file.
svn: r14127
2010-01-25 08:31:24 +00:00
Peter Landgren
b367e43165 Fixed a typo.
svn: r14126
2010-01-25 08:26:34 +00:00
Brian Matherly
c9cb7e60c9 Move GEDCOM date functions into libgedcom.
svn: r14125
2010-01-25 04:54:22 +00:00