Paul Franklin
1b166865f4
7476: Given Name Cloud Gramplet splits up given names into words
2014-03-23 18:43:25 -07:00
John Ralls
14e1edcd4e
7332-Filename-Decoding-Error-in-Graphical-Reports
...
Don't encode the filename for output. Python does that for you.
2014-03-23 15:22:46 -07:00
John Ralls
85a1c39092
7258: Transcode FS paths to avoid a crash
...
The problem is really that the paths get munged into strings in the
system codepage, losing or misinterpreting most Unicode. Python's os
module is smart enough to encode the unicode to the file system
encoding, but the bsddb module needs a little help.
Provide a new function, constfunc.get_env_var(name, default=None) to
cleanly import Unicode environment variables in Windows and use it in
place of all instances of foo = os.environ['BAR] or foo =
os.environ.get('BAR').
Os path functions are smart enough to convert unicode to the file system
encoding on their own, but Db functions aren't, so provide an _encode
function in gen.db.write.py and apply it where a path is being passed to
DBEnv.open().
Also convert paths from the UI to unicode from 'utf8' rather than
sysfilesystemencoding. The latter happens to be correct most of the time
on Linux and OSX but is wrong on Windows.
2014-03-23 15:09:51 -07:00
kdau
53acb627bb
7501: Notes always say 'no data exists for note' when saving
2014-03-21 15:07:18 +01:00
Munzir Taha
4f4ef14379
7539: NotRelated and Verify data dialogs appear either too small or too big
2014-03-19 10:04:39 +01:00
Paul Franklin
38125ac611
fix translation of children count to use ngettext
2014-03-18 17:31:28 -07:00
Vassilii Khachaturov
32ae80e9e9
7212: vcard: only convert non-empty BDAY to text
...
Discovered in #7530 .
1) Previously, tests expected invalid BDAY with DD-MM-YYYY format
to be ignored. Now they are wrapped with datestr (see #7212 ),
and that is already covered by
test_birthday_invalid_format_converted_to_datestr
Corrected test expectations by removing the obsolete test.
2) Test expects that an empty BDAY record won't create any
event objects. Modified import code accordingly -- we used
to create an event object without date, regression in #7212 .
2014-03-18 19:57:01 +02:00
Vassilii Khachaturov
b4d2e60198
7530: gen.test.constfunc_test broken in python3
...
Use the `in' operator rather than has_key() method to check for
environment variables in os.environ. Works on both python2 and python3.
2014-03-18 15:48:04 +02:00
John Ralls
a030c20210
7519: GRAMPs unable to handle ... Path with accented characters
...
This replaces commit 8cbb3ef014
with
removing the incorrect encoding of paths with the system filesystem
encoding. Python is mostly smart enough to do that itself.
Thanks to Paul Franklin and Josip Pisoj for their help with sorting this
out.
2014-03-17 12:54:22 -07:00
John Ralls
946c5539af
7026: Eliminate localedir error message
2014-03-17 12:54:22 -07:00
Paul Franklin
471ec72966
7276: translate some punctuation marks -- partial
2014-03-17 08:03:23 -07:00
Jérôme Rapinat
eeea77e9c1
6369 Couldn't find a target for a mnemonic activation on confidence into Citation Editor
2014-03-16 11:08:29 +01:00
Nick Hall
fcdd15c6d0
Fix bug in event gramplet
2014-03-15 19:30:07 +00:00
Nick Hall
ca2cafc68a
Adjustments to the citation editor
...
Remove publication information and abbreviation fields.
Move tag button.
2014-03-15 17:49:31 +00:00
Jérôme Rapinat
5654c99815
7510: do not drag and drop more than one data into editor tabs
2014-03-15 11:18:52 +01:00
Jérôme Rapinat
6d8679df2d
7530: typo on import geneweb unit test
2014-03-13 12:03:17 +01:00
John Ralls
8cbb3ef014
7519: GRAMPs unable to handle ... Path with accented characters
...
Much worse, actually. Gramps wasn't able to handle any non-ascii
characters in any preference setting from Python2.
repr() in Py2 effectively runs "encode(val, ascii, backslashreplace)"
on its argument, and there's no way to reconstruct the string.
2014-03-08 17:55:50 -08:00
John Ralls
2642fc5409
6854: Spelling messages at random cause hang for a few seconds.
...
Improve error message to conditionally explain that there is no
dictionary if that's in fact the case; otherwise log the actual
exception string.
2014-03-08 16:41:04 -08:00
John Ralls
38aaa671cd
Remove some left-over diagnostic messages.
2014-03-08 13:40:47 -08:00
Josip
b38e5996fb
7435: Media Editor error if Path value was changed to a non existing file
...
fix media path
2014-03-08 21:53:12 +01:00
Josip
b868e3e256
7434: Media viewer list crashes during start if one try to select an entry where the media isn't available
2014-03-08 21:51:56 +01:00
Josip
22ec94f84d
7435: Media Editor error if Path value was changed to a non existing file
2014-03-08 18:00:36 +01:00
John Ralls
49cdfe3283
Bug 6538: Collation variants do not work properly
...
If ICU is available, inspect the environment for $COLLATION and on
a Mac also check the AppleCollationOrder default. Pass the results
to a special ICU Locale used for sorting.
2014-03-07 16:27:05 -08:00
John Ralls
80c58f46d3
Convert two common plugin errors from unhandled exceptions to warnings.
...
Missing translation for the current primary locale.
Import failure because of some missing dependency.
Note that these handlers can be overridded in the module itself; this is just a fallback.
2014-03-07 16:20:24 -08:00
John Ralls
58d150ebc8
Revert "Bug 6538: Collation variants do not work properly"
...
This reverts commit e0c896fe12
.
Picked up too much in one change.
2014-03-07 16:17:51 -08:00
John Ralls
e0c896fe12
Bug 6538: Collation variants do not work properly
...
Pass fully-qualified locale found in $LC_COLLATE to ICU.
2014-03-07 16:14:00 -08:00
John Ralls
20f2564df0
Bug 6696: sort failure using key=glocale.sort_key
...
Correct the call with a lambda.
2014-03-07 12:37:38 -08:00
John Ralls
4dd543c323
Move the icu missing warning to after setting up the log handler.
2014-03-06 11:23:49 -08:00
Nick Hall
447113bf9f
Add source fields to citation editor
2014-03-05 16:31:32 +00:00
Nick Hall
cdff0daff1
Fix parent place selection for new places
2014-03-05 14:02:26 +00:00
Nick Hall
ad4737edd5
Automatically populate the place title field
2014-03-05 14:02:26 +00:00
Nick Hall
d268a966bd
Implement alternative place names
2014-03-05 14:02:26 +00:00
Nick Hall
c269ba5df4
Hide alternate locations list when empty
2014-03-05 14:02:26 +00:00
John Ralls
f9172c3ad1
Bug 7377 - Ver 4.0.2 starts in East Asian Language
...
Because there is no en.po for Gramps, so the C gettext called from
GtkBuilder skips to the next translation in the list. Fix makes sure
that there is no next translation.
2014-03-04 10:00:37 -08:00
kulath
b5097ed5ac
6194: Database corrupted - TypeError: unhashable type: 'list'
...
Fixed upgrade to deal with sourceref in media references in Sources.
Also fixed Check and Repair to repair previously broken databases.
2014-03-04 17:39:23 +00:00
Nick Hall
107e614f3d
Simplify citation editor and add source selection
2014-03-03 12:19:34 +00:00
Paul Franklin
19fc47b38d
partly revert 7470: Upgrade to db version 17 fails in Python3 due to use of iteritems
2014-03-01 16:44:28 -08:00
Nick Hall
c0ffe802bd
7342: Update column order in editor event tabs
2014-02-28 17:37:25 +00:00
Nick Hall
9645892b5e
7342: Split details column in events gramplet
2014-02-28 17:23:31 +00:00
Nick Hall
35ed90b138
7342: Update default columns in event view
...
Add main participant.
Change order to be consistent with selector.
2014-02-28 17:21:42 +00:00
Nick Hall
abe4f24393
7342: Better column order in event selector
2014-02-28 17:18:19 +00:00
Nick Hall
3d7901fec4
Add author column to source selector
2014-02-28 12:23:50 +00:00
Paul Franklin
4ba1f79b55
7276: translate some punctuation marks -- partial
2014-02-26 10:24:04 -08:00
Marc Hulsman
cc0fe33c72
Add integrity check for parent places
2014-02-25 22:41:49 +00:00
Nick Hall
c364bcd7ad
7482: Fix python3 problems with new place structure
...
Based on patches by Marc Hulsman.
2014-02-25 22:31:03 +00:00
Vassilii Khachaturov
8dd6d92184
7097: EditNote hangs initially on misspelled note
...
Disable undo during the initial note text population,
so as to avoid bombardment with gtkspell-... tags for the
misspelled text.
2014-02-25 15:43:09 +02:00
TonyG
314b2c1878
7498: List in Unused Objects dialog has limited space
2014-02-24 10:32:50 +01:00
John Ralls
816bf310e1
Bug 7377 Ver 4.0.2 starts in East Asian Language
...
Revert "GrampsLocale: Don't set to 'C' if LANG is en_US"
This reverts commit bdd336f38e
.
It turns out that Gtk's having an 'en' translation isn't the only reason
for doing this: GtkBuilder uses $LANGUAGE too, and will look for an english
translation of strings in our Glade files. Since there's no en.po or
en_US.po, it will go to the next language in the list and produce confusing
results.
2014-02-20 14:01:19 -08:00
John Ralls
84cabddcc9
Better fix for bug 7122.
2014-02-20 14:01:19 -08:00
John Ralls
eec3122bfb
Fix up grampslocale logging a bit.
...
Send log messages "up the chain", make maclocale a sub-log of grampslocale.
2014-02-20 14:01:18 -08:00
Paul Franklin
c2635cd94b
don't warn, WebKit is not in Mac or Windows bundles
2014-02-19 19:18:00 -08:00
Jérôme Rapinat
b30677b190
7484: Selection lists in Attribute Editor have limited space
2014-02-19 18:44:20 +01:00
Jérôme Rapinat
26fe553c69
566 7477: Translate 'New Style' and 'Default' on StyleEditor; update template for translation strings
2014-02-19 15:12:39 +01:00
Vassilii Khachaturov
283c1b1aa2
7097: add UndoableStyledBuffer.undo_disabled
...
Refactoring away the coupling between Spell and StyleTextEditor
innards:
1) add a context manager UndoableStyledBuffer.undo_disabled
2) add a forwarding to it as StyleTextEditor.undo_disabled
3) use that in Spell.__real_set_active_spellcheck
2014-02-19 13:06:10 +02:00
Vassilii Khachaturov
78bcb52703
7097: attaching spell checker isn't undoable
...
Quick-and-dirty fix removing the hang. Needs to be refactored
in order not to expose the knowledge of StyleTextEditor's
innards to Spell.
2014-02-19 11:49:32 +02:00
Vassilii Khachaturov
ba2766e5b2
7097: spell.py hangs on a note for tens of secods
...
shave off ~15s out of 40s of the hang
2014-02-19 10:40:31 +02:00
Paul Franklin
3442b19700
in GUI, read "paper" options from books.xml
2014-02-17 13:07:33 -08:00
Paul Franklin
13467d6af7
enable "paper" options in books.xml
2014-02-17 13:05:55 -08:00
Vassilii Khachaturov
92ca4095a9
7117: disallow new year unless Julian or like cal
...
Unit test.
2014-02-17 15:56:03 +02:00
Vassilii Khachaturov
7b3edabef8
7117: disallow new year unless Julian or like cal
...
raise an exception from Date.set for a meaningless newyear parameter
Add Date.CALENDARS to reduce cut-and-paste here and with the unit test
2014-02-17 15:56:03 +02:00
noirauds
ec4aef5054
0007488: After creating narrative web report, some temporary files remains in /tmp
2014-02-17 09:48:05 +01:00
Paul Franklin
afd7b2c048
7477: Users should not be allowed to delete 'default' style in Style Editor
2014-02-16 11:27:29 -08:00
Paul Franklin
a2807dff79
translate some paper names, suggested in 0566
2014-02-16 11:19:13 -08:00
Paul Franklin
88f98b6bf9
0566: Translate the "New Style" and "Default" on StyleEditor.py
2014-02-16 10:52:47 -08:00
Marc Hulsman
2404b9df67
7483: Remove reference to non-existant widgets
2014-02-16 17:30:46 +00:00
Vassilii Khachaturov
ad812c8537
debug.profile: support kwargs and ret values
2014-02-16 13:57:47 +02:00
Vassilii Khachaturov
15623c6c27
7469: ReorderIDs: global name 'gen' is not defined
2014-02-16 11:44:00 +02:00
John Ralls
e281f51ba6
Bug 7122 - Gramps does not start
...
Handle AppleCollationOrder returning an empty string
2014-02-14 17:21:12 -08:00
noirauds
e5f5da1857
Geography : Adding bookmarks (follow bug 7240)
2014-02-14 16:23:43 +01:00
Éric Doutreleau
88f740dd50
7465: scroll window for patchname tool didn't expand
2014-02-14 16:11:51 +01:00
Marc Hulsman
7346496214
7470: Upgrade to db version 17 fails in Python 3 due to use of iteritems
2014-02-13 18:16:58 -08:00
Jérôme Rapinat
8752d173af
Display the warning message before running trunk version
2014-02-11 10:31:10 +01:00
Jérôme Rapinat
9dc976f28d
Re-enable warning during devel stage on trunk
2014-02-10 16:06:07 +01:00
Jérôme Rapinat
a343b96093
Re-enable warning during devel stage on trunk
2014-02-10 16:00:47 +01:00
Paul Franklin
ae69eb666b
encode every "style" file in utf-8
2014-02-09 13:35:55 -08:00
noirauds
05f8557852
Geography : Add the possibility to clear the tiles cache for the current map.
2014-02-09 14:04:39 +01:00
noirauds
5a10264d5f
bug 7368 : Geography gramplet does not communicate over proxy server with autorisation.
2014-02-09 13:53:14 +01:00
noirauds
1a68b0b537
bug 7447: HTML View fails to load on Debian unstable.
2014-02-09 13:47:20 +01:00
Nick Hall
6fd89cda4c
Add place type
2014-02-05 16:08:48 +00:00
Nick Hall
547e71db51
Fix unicode bug
2014-02-05 16:07:44 +00:00
Paul Franklin
6e6b18656a
7439: pre-load alert dialogs crash w/o DISPLAY
2014-02-04 20:35:54 -08:00
Nick Hall
9d9d49ffd3
Fix person sidebar filter
2014-02-04 15:40:38 +00:00
Nick Hall
3a1c3901db
Add HasDayOfWeek rule
2014-02-03 22:29:57 +00:00
Nick Hall
356e36fe78
7419: HasEventBase should not include primary role
2014-02-02 16:13:53 +00:00
Nick Hall
94adf0909b
7429: Fix bug when an empty string is used as custom type
2014-02-02 15:43:38 +00:00
Vassilii Khachaturov
04d976ceee
7117: disallow new year unless Julian or like cal
2014-01-30 16:35:13 +02:00
Vassilii Khachaturov
04cff4335e
l10n: collate _T_ and _ into just _ = sgettext
...
Thanks to Paul Franklin for reviewing [ada8cf] and suggesting this.
2014-01-30 15:40:23 +02:00
Vassilii Khachaturov
8e926cf84f
trunk is 4.1 not 3.x nowadays
...
should probably use version from const.py
2014-01-29 18:17:47 +02:00
Vassilii Khachaturov
ada8cfcaa4
l10n: trying to add context for "Name:"
...
Fix minor mistakes in my [c574f3].
2014-01-29 13:47:08 +02:00
Nick Hall
4b5acca5ca
7419: Fix HasEvent filter in sidebar gramplet
2014-01-28 19:34:25 +00:00
gzsuniq
bdf6cd48e3
7412: Edit Note window is too small
2014-01-27 19:34:57 +01:00
Nick Hall
7506265d1c
6519: Add primary role option to event filter
2014-01-26 16:37:34 +00:00
Jérôme Rapinat
9fbdfac51a
7399: Cannot copy via context menu on Views into Charts Category
2014-01-26 12:12:37 +01:00
Jérôme Rapinat
ce6818fae8
6868: Tab sequence in Name Editor causes an error
2014-01-26 10:36:35 +01:00
Nick Hall
3d094d7be1
7183: Fix source note citation filter
2014-01-25 19:50:00 +00:00
Jérôme Rapinat
b2dec24edf
7388: Clicking on www link in Welcome Gramplet when detached causes crash
2014-01-25 19:12:47 +01:00
Jérôme Rapinat
1539830914
7232: 'TreePath' has no len(); str(TreePath) can have a len()...
2014-01-25 14:56:24 +01:00
BennyP
e1e29efe31
7409 7331: Selection lists do not expand for some edit dialogs
2014-01-24 17:14:53 +01:00
BennyP
b602b14066
7409 7331: Selection lists do not expand for some edit dialogs
2014-01-24 16:00:38 +01:00
Nick Hall
39aa5a5f81
Make event groups consistent with event type menu
2014-01-23 19:22:44 +00:00
Nick Hall
9ecc665625
5123: Fix bug in associations filter
2014-01-22 16:15:05 +00:00
Jérôme Rapinat
044a507453
7361: Do not save column order if there is not at least one column
2014-01-22 14:48:07 +01:00
Theophraste
313eb9ba07
5775: ID reorder tool doesn't update citation IDs
...
reapplied from gramps34
2014-01-21 21:52:24 +02:00
Josip
f829e550a0
7378: Starting Gramps without console not possible
2014-01-21 19:37:28 +01:00
Josip
f8059fd10c
7313: 'utf8' codec can't decode byte 0xa0 in position 6: invalid start byte
2014-01-21 19:23:54 +01:00
Jérôme Rapinat
0e6b73382f
7404: update docstring
2014-01-21 15:33:15 +01:00
Vassilii Khachaturov
d72fbdae48
7317,7360: also use 'value-changed' signal
...
With gtk3 controls, the day/year changes aren't caught otherwise
2014-01-21 16:05:55 +02:00
Vassilii Khachaturov
55a0cc990f
7360: Calendar conversion broken in date editor
...
Port my fix from gramps34: [ecdcca] [aa9deb]
The enable/disable code behaves worse under gtk3, need further polish
(this is not related to the current fix). Sometimes the changes
to the d/m/y edit fields don't fire the "changed" signal with the
UI value seen by build_date_from_ui
2014-01-21 12:30:56 +02:00
Nick Hall
22b71da84b
Update test case generator for new place structure
2014-01-21 00:45:04 +00:00
Nick Hall
7b05c1944b
Fix bugs in the test case generator
2014-01-21 00:45:04 +00:00
Vassilii Khachaturov
c574f3a767
l10n: trying to add context for "Name:"
...
"Name" as in "Personal name" is different from "Name" as in
"identification of a repository" or in "place name", at least
in Russian. Splitting away "repo|Name:" and "place|Name:"
We need to dynamically set the labels in glade.
See gramps-devel thread "context support for labels in glade?"
2014-01-20 20:19:50 +02:00
Jérôme Rapinat
5a6d100629
7370: entries were set twice
2014-01-17 21:16:07 +01:00
Jérôme Rapinat
42d1f0947b
7370: Citation sidebar filter raises unicode exception with python3
2014-01-17 18:05:56 +01:00
Jérôme Rapinat
bdbdfad557
7134: fit encoding selector dialog
2014-01-17 18:02:25 +01:00
Jérôme Rapinat
2301310eb3
Use sgettext for handling context (english locale)
2014-01-17 18:02:24 +01:00
Jérôme Rapinat
b072b88425
Update About dialog (2013 -> 2014)
2014-01-17 18:02:24 +01:00
Doug Blank
24d9e001a5
6690: Not being able to write a .gramps produces a scary message about DB corruption
2014-01-17 07:45:08 -05:00
Benny Malengier
e70849f4f0
7157: better support for objects having citations as subobjects
2014-01-15 09:33:30 +01:00
Jérôme Rapinat
d96b0ee74c
7331: Events and Children selectors don't use all available space of dialog box; 3.6 < gtk+ < 3.10; patch by BennyP (missing on author list)
2014-01-15 09:10:57 +01:00
Jérôme Rapinat
45c48f4f94
7157: typo by adding 'Last Change' column
2014-01-10 12:03:41 +01:00
Doug Blank
01da495ede
Delete items in list by assigning Null
2014-01-09 10:43:05 -05:00
Doug Blank
946a213fbc
Allow calling lists to select and filter
2014-01-08 10:22:32 -05:00
Doug Blank
37ba4122ba
SQL-like allows selection and filter of elements in a list using attr.attr('part', part=value)
2014-01-07 21:46:55 -05:00
John Ralls
3b3a0338a3
Bug 7363: file-not-found exception when generating narrative web
...
document.png is in images/ not images/webstuff/
2014-01-07 10:30:15 -08:00
Doug Blank
0ff5aa88ad
7357: Adding link to a "Html code" note using the "Link" button has no effect
2014-01-07 10:48:56 -05:00
Vassilii Khachaturov
b2f41ab563
strip redundant trailing ' in 2 localized messages
2014-01-07 17:30:33 +02:00
Vassilii Khachaturov
ca57d2d4f4
l10n: need to disambiguate "New" at least for RU
2014-01-07 17:12:48 +02:00
Josip
bfbf5d01f4
7179: Select an existing person causes crash in searchfilter
...
refix, aplay only to Windows
2014-01-06 21:08:40 +01:00
Josip
568b4ee4a4
7179: Select an existing person causes crash in searchfilter
2014-01-06 20:53:15 +01:00
Josip
b0c0c03727
7339: Spell: Gramps crashes if myspell folder doesn't contain files for
...
the currently used LANG
With patch works like:
* default to dictionary in system locale if exist (language Gramps use)
* if no system-locale dictionary default to English dictionary if exist but
allow selection of any other installed one
* if both English and system-locale dictionary is not available,
disable spellchecking
2014-01-06 20:19:25 +01:00
Jérôme Rapinat
a0210fc1f8
5024: add 'Last Change' column on selectors, if missing
2014-01-06 16:52:19 +01:00
Vassilii Khachaturov
aa7e043f2d
7336: Gramps changes root cursor to hand
...
Following the suggestion from QuLogic, change get_root_window
to get_window for the set_cursor scope, like in my #6740 fix.
2014-01-04 21:18:18 +02:00
Nick Hall
703a8d71ae
Add new columns to person view
2014-01-03 22:39:17 +00:00
Nick Hall
a2dfd9013e
7340: Performance improvement in ancestor filter
2013-12-31 17:36:58 +00:00
Vassilii Khachaturov
7c383cb70c
7172: more meaningful LOG warning plug/utils.py
...
Reapply [5c467c] from gramps34
2013-12-30 11:11:11 +02:00
Vassilii Khachaturov
0e534e598e
6380: GEDCOM export error for family _UID
...
Port gramps34 [429c18]
Applying patch from 2013-12-24 by Enno Borgsteede,
fixing attribute processing on the path that handled _UID
and adding another extension, _FSFTID.
2013-12-30 11:05:02 +02:00
Vassilii Khachaturov
aa3a3c8270
7327: friendlier diagnostics during parsing
...
In preparation for fixing the bug, discovered minor glitches
in the open/lock/close logic on error paths. Using the RAII syntax
for xml_file and removing redundant unlock-before-close.
The parse errors now have friendlier verbiage, give action suggestions,
and point to the actual file location for better usability and
maintainability.
2013-12-28 22:22:52 +02:00
Doug Blank
5b17d597fe
Experimental subselection in list using list['field1, field2']
2013-12-28 14:34:00 -05:00
Doug Blank
cad20f42f1
Allow an attribute lookup on a list to select from the list
2013-12-28 13:32:15 -05:00
Doug Blank
2a4ba037c6
Fixed RefBase.to_struct in gen.lib objects
2013-12-28 10:11:43 -05:00
Doug Blank
c07aebd7d0
Error in schema
2013-12-27 18:28:04 -05:00
Doug Blank
4e9559c6eb
Added link keyword to row method of SimpleTable
2013-12-27 10:43:51 -05:00
Doug Blank
8026a9aa1f
Handle update set anywhere in struct
2013-12-27 01:56:33 -05:00
Doug Blank
feaf10b8c9
Add batch to DictionaryDB; update Query updates in batch mode
2013-12-26 16:16:57 -05:00
Doug Blank
f7a367e602
Fixed Gtk3 buffer.get_text issue
2013-12-26 16:16:07 -05:00
Doug Blank
c66e4b0149
Removed handling of control+v from default pageview handler that was only used in places where it shouldn't (dashboard)
2013-12-26 15:08:08 -05:00
Nick Hall
a6e4bf9cc5
7333: Reduce number of columns in LDS temple selector
2013-12-26 17:31:02 +00:00
Doug Blank
579f17a687
Revised Struct get and set now that Python handles lookup through eval; general cleanup
2013-12-26 11:32:00 -05:00
Vassilii Khachaturov
aa81f62b4a
6955: warn on non-primary surnames not exported
...
reapply from gramps34
2013-12-26 17:47:27 +02:00
Doug Blank
7b9fa14ef7
Cleanup, all selects, and deletes working
2013-12-26 00:18:39 -05:00
Doug Blank
6528044b1c
Different in getitem depending on whether assignment, or lookup; fixed from_struct on BaseRef
2013-12-25 18:02:48 -05:00
Doug Blank
7224bda047
Removed getitem_from_path---now uses eval() [eg, __getitem__] for such functions
2013-12-25 16:48:40 -05:00
Doug Blank
7daf720ee7
Error in using transactions
2013-12-24 20:40:56 -05:00
Doug Blank
2fb9f2ffa0
Working in remove in dictionaryDB; fix for Dictionary Cursors
2013-12-24 11:24:02 -05:00
Doug Blank
90eda9d89c
Added missing get-all methods
2013-12-24 10:39:44 -05:00
Doug Blank
a050704299
Protection from fields that are None in Struct
2013-12-24 09:30:39 -05:00
Doug Blank
ce07c7e15f
Added missing Handle in to_struct in refbase
2013-12-24 09:28:37 -05:00
Doug Blank
a72c6eac96
Don't go through loop if not Python 3; fixed typo
2013-12-23 15:19:18 -05:00
Doug Blank
6e325a9190
Allow update_db to work with existing transaction; setitem now works; getitem will return Struct only when more struct
2013-12-23 13:58:23 -05:00
Doug Blank
27453a7587
Added remove_func to _tables; added remove_from_database(item)
2013-12-23 13:56:25 -05:00
Jérôme Rapinat
5586474ec5
7316: use ellipsize at the begining adjusts text and make missing media dialog more fit
2013-12-23 14:19:55 +01:00
Nick Hall
dd56299936
Enhance event type selector to use sub-menus
2013-12-22 19:58:25 +00:00
Nick Hall
e7c5f1684e
Add custom types to selection widgets
2013-12-22 19:58:25 +00:00
Jérôme Rapinat
d9db6168b3
6926: more Germanic names established by the Emperor Charlemagne in the 800s
2013-12-22 15:52:58 +01:00
Vassilii Khachaturov
a3c59778f9
7317: DateEdit statusbar to report invalid dates
...
Port [6b0b9f] from gramps34
Add/remove an explanatory prompt on the statusbar along
with disabling/enabling the "OK" button when the date
is invalid.
2013-12-21 23:13:58 +02:00
Vassilii Khachaturov
087a7ecad2
7317: DateEdit statusbar to report invalid dates
...
Port [0c80c5] from gramps34
add the status bar to the date editor dialog
2013-12-21 23:13:58 +02:00
Doug Blank
f5336d2296
unicode literals for {} formats
2013-12-20 11:59:07 -05:00
Doug Blank
a859b5f562
Added unicode_literals; thanks Nick
2013-12-20 11:14:32 -05:00
Doug Blank
59ac850d9a
Changes for Python client to login and exchange webapp server data
2013-12-20 08:14:11 -05:00
Doug Blank
6aaf932a61
Added http://URL?format=json version to use same URLs but to get JSON format (works on primary detail views); see also http://URL/json?q=SEARCH&field=person for query interface
2013-12-20 01:33:30 -05:00
Doug Blank
fe6806de57
Ability to use 'where ITEM in part.part.part' for the Query Gramplet
2013-12-20 01:28:54 -05:00
Doug Blank
4051984031
Person.save() now also computes probably_alive (but only when computing cache, too)
2013-12-20 00:21:05 -05:00
Doug Blank
e649e5514d
Changed {} format
2013-12-20 00:18:46 -05:00
Doug Blank
aa96ebc333
Updates to webapp: move cache updates to save of models to make it so that they cannot become out of sync with data; moved svg images to png forms to work with all browsers
2013-12-19 22:55:14 -05:00
Doug Blank
ab46727c56
Changes in Struct to allow SQL-like query interface
2013-12-19 22:52:04 -05:00
Doug Blank
870f776fa5
Merge branch 'master' of ssh://git.code.sf.net/p/gramps/source
2013-12-19 22:50:34 -05:00
Doug Blank
0d5e006953
Added meta settings to make sure they are bound to correct methods (of the proxies) rather than actual db methods
2013-12-19 22:50:16 -05:00
Vassilii Khachaturov
8686028413
add specific help links for person/name editor
2013-12-19 19:47:32 +02:00
Jérôme Rapinat
46b3c44916
7147 7001: Merge person dialog does not properly adjust context section after expand
2013-12-17 15:10:48 +01:00
Vassilii Khachaturov
56965d4095
7229: change active person upon a bookmark select
...
Port the more general fix [c7c0b2]^..[6caf08] from gramps34.
2013-12-16 21:57:31 +02:00
Doug Blank
0254f7006d
Remove duplicate line
2013-12-15 10:47:26 -05:00
Doug Blank
cdefb047ef
Fix for deleting tags in people model; fix for calendar graphical report when too many 2-line entries in day
2013-12-15 10:40:18 -05:00
Vassilii Khachaturov
be0239d255
7288/7290: port image_dpi legacy gtk code to gtk3
2013-12-15 15:09:12 +02:00
Vassilii Khachaturov
996baaad14
7288/7290: image_dpi and cropping fixes for ODFdoc
...
Port my fixes based on the patch from Matthias Basler from gramps34
[2eca30] 7290: use simpler math in image_dpi
[2f5e22] 7290: align warning with the image_dpi fix logic
[36f84e] 7290: image_dpi default calc based on gtk.gdk
[161ce3] 7290: ImgManip.image_dpi shouldn't return None
[460e63] 7288/7290 refactor out crop_percentage_to_pixel
[a8a38f] 7288/7290 refactor out crop_percentage_to_subpixel
[0d61bb] 7288/7290: refactor fix from matthiasbasler
[088146] rm relict RCS kwd
[76df5d] 7288/7290: image cropping fixes in ODFDoc
Using legacy gtk interface in image.py at the moment, need to port
to the new style.
Tested with python2.
2013-12-15 15:09:12 +02:00
Vassilii Khachaturov
584612d9f4
7229: change active person upon a bookmark select
...
Reapply my fix [88d2a2] from gramps34.
2013-12-14 17:58:49 +02:00
Vassilii Khachaturov
be8515909d
6921: Use "Bat Mitzvah" as the en_US event name
...
Port [0021e8] from gramps34:
p1/3: actual change in the code. Note that the abbreviation
also has to be changed accordingly.
2013-12-14 17:13:35 +02:00
Vassilii Khachaturov
744ec69349
7300: "Add citation" missing in pop-up menu
2013-12-14 16:35:37 +02:00
Vassilii Khachaturov
f3cda2d5e0
absolute import so that testing stdalone works
2013-12-14 16:29:34 +02:00
Vassilii Khachaturov
6895e4492f
7086: "Remove selected items?" inconsistent YES/NO
2013-12-05 17:14:07 +02:00
Vassilii Khachaturov
64cd25b8e1
7256: extra spaces in HTML GV labels
2013-11-28 23:12:46 +02:00
noirauds
21e33de953
Geography : bug7240 : create a bookmark via GeoEvents leads to an empty link
2013-11-27 21:23:29 +01:00
Vassilii Khachaturov
b4404ad392
use logging.warning in old cases in this file, too
2013-11-27 17:57:50 +02:00
Vassilii Khachaturov
8299866f3c
7212: convert invalid date to text on .gw import
...
Implement the feature.
2013-11-27 17:56:09 +02:00
Vassilii Khachaturov
1ac0e2a0bc
7212: convert invalid date to text on .gw import
...
Add a failing test demonstrating the feature to be implemented...
2013-11-27 17:54:44 +02:00
Vassilii Khachaturov
3af50b0bea
7212: convert invalid date to text on import
...
Consolidate the new logic with the older code -- now malformatted
dates, as well as well-formatted invalid ones, will also be
converted to text.
2013-11-25 12:39:46 +02:00
Vassilii Khachaturov
b3259d0a00
7212: convert invalid date to text on import
...
Switch vcard birthday import code to use the validating Date.set
and catch the exception, convert to text mode if caught.
2013-11-25 12:39:46 +02:00
Vassilii Khachaturov
4d9381589a
7212: convert invalid dates to text on import
...
Make log message from [dfc3cc] use named arguments for l10n.
Thanks to Paul Franklin for finding this during code review.
2013-11-25 10:55:07 +02:00
Vassilii Khachaturov
3fdaa4ff52
7198, 7212: document DateError.date
...
See also [8e1659]
7198, 7212: attach invalid date to DateError
2013-11-23 21:43:42 +02:00
Vassilii Khachaturov
175213b902
remove DateError from date.py
...
The exact copy existing in errors.py should suffice.
2013-11-23 21:38:34 +02:00
Doug Blank
28095ac397
Changes to serve static admin files for Django 1.5.4
2013-11-23 08:16:52 -05:00
Vassilii Khachaturov
dfc3ccea45
7212: convert invalid dates to text on import
...
If the date is invalid, it will be converted to text mode,
and the text field will be set to the problematic XML.
A warning will be printed on the console as well.
The log message will use the invalid date attached as
DateError.date, see [8e1659].
2013-11-17 20:22:14 +02:00
Vassilii Khachaturov
86dc84470e
7212: convert invalid dates to text on import
...
unit tests
2013-11-17 20:14:17 +02:00
Vassilii Khachaturov
b770de1a10
7198: Date editor crashes on invalid date
...
Revalidate the date upon every change, and disable
OKing the dialog when it is not valid, for usability review.
If it is not good, we can always revert this commit.
2013-11-16 23:47:50 +02:00
Vassilii Khachaturov
b1d040deb1
7198: Date editor crashes on invalid date
...
give a name to the OK button instead of an autogenerated id
2013-11-16 23:16:14 +02:00
Doug Blank
e0de21041c
Don't add notes etc on import into temp dictionary used for diff and sync
2013-11-16 14:13:12 -05:00
Vassilii Khachaturov
3999cd2e70
7198: Date editor crashes on invalid date
...
Trying out the approach preferred by Nick, see 7198:32708
2013-11-16 17:53:01 +02:00
Vassilii Khachaturov
8e16599940
7198, 7212: attach invalid date to DateError
...
when Date.set throws during the date fields sanity
check validation, it now attaches an (undocumented) .date field
to the exception -- proof of concept for 7198 and potentially
for 7212 as well
2013-11-16 17:51:18 +02:00
Doug Blank
a3749090aa
Protect 3-min refresh if buffer is empty
2013-11-16 09:29:45 -05:00
Vassilii Khachaturov
d8acf8e875
7198: Date editor crashes on invalid date
...
Improve user experience as promised in [98d8e6].
Now, if one clicks OK in the date editor and the date is invalid,
it's switched into text mode and the dialog remains open,
so the user can either correct the date or type it as text,
no more loss of entered data happens.
2013-11-16 10:21:12 +02:00
Vassilii Khachaturov
98d8e64e04
7198: Date editor crashes on invalid date
...
Now it just autoconverts into MOD_TEXT and returns whatever
text was there. This fixes the crash on the master branch,
but is not the final user experience yet.
2013-11-15 22:26:41 +02:00
Vassilii Khachaturov
89a822507a
7198,7212: fix Date.set(value=None)
2013-11-15 22:23:54 +02:00
Nick Hall
13438a74d6
Add gui.widgets section to the documentation
2013-11-15 19:13:29 +00:00
Vassilii Khachaturov
a90139cb9a
7197, 7100: missing recalc_sort_value in ny code
...
Fix bug #7197
2013-11-15 15:04:03 +02:00
Vassilii Khachaturov
baae6ac615
7197: readjust sanity date wrt newyear/slash
...
Attempt to fix the failing
DateHandlerTest.test_invalid_month_with_ny
(see 7197:32625). Tests still fail, investigation shows
there's a problem in Date.set setting Julian+Mar25 date even if the
date validation check is disabled by inserting a return before
the validation block, i.e., before this line
if modifier != Date.MOD_TEXTONLY:
which seems to be the root cause of the remaining failing tests.
To investigate, add the return and try
LC_ALL=en_GB.utf8 LANG=en_GB.utf8 GRAMPS_RESOURCES=$PWD \
python -m unittest -v \
gramps.gen.lib.test.date_test.MatchDateTest.test_match
2013-11-14 22:51:01 +02:00
Vassilii Khachaturov
93ca90f3b8
7197: more failing tests
2013-11-14 22:51:01 +02:00
Vassilii Khachaturov
4147721112
7197: refactor code
...
extract Date._adjust_newyear out of Date.set
2013-11-14 22:51:00 +02:00
Vassilii Khachaturov
b3ab87bc5a
7197: refactor code
...
replace all copies of logging with a single point at the exception
rethrow point
2013-11-14 22:51:00 +02:00
Nick Hall
5e1cd88bcb
Improve gui documentation
2013-11-14 18:11:06 +00:00
Doug Blank
2e746a21da
Working on get_schema(type) to provide a self-documenting infrastructure
2013-11-14 09:23:52 -05:00
Doug Blank
97f3a1d9ae
Updated Django backend to new Place changes; import/export working--need verification
2013-11-14 00:26:06 -05:00
Nick Hall
19b39b5dc0
Improve date handler documentation
2013-11-13 18:41:52 +00:00
Nick Hall
55a3c9813f
Improve cli documentation
2013-11-13 17:40:16 +00:00
Vassilii Khachaturov
c4daa151a5
7197: date sanity check breaks on Julian+Mar25
...
Date.convert_calendar resets the new year setting to 0,
so the sanity check fails. Commit the initial fix that
unblocks the failing test.
2013-11-13 17:39:47 +02:00
Vassilii Khachaturov
78cae43a32
7197: better diagnostics from test for debugging
...
Use unittest -v/--verbose flag to trigger it.
2013-11-13 16:59:26 +02:00
Vassilii Khachaturov
626353a0b3
7197: failing test demonstrating the bug
2013-11-13 13:52:47 +02:00
Doug Blank
41f8df9a94
Don't show stack variables; redo this and dump to a file
2013-11-12 21:50:10 -05:00
Doug Blank
732743cec5
Missing methods on dictDB; added tests for setting struct
2013-11-12 20:09:04 -05:00
Nick Hall
3ef1c02155
Improve simple access documentation
2013-11-12 22:38:27 +00:00
Doug Blank
88f3cfa3f7
Working on setting structs
2013-11-12 17:18:06 -05:00
Nick Hall
8fd71fd9f0
Improve documentation for relationship calculator
2013-11-12 22:15:37 +00:00
Nick Hall
ceb3f44205
Improve gen.utils documentation
2013-11-12 21:44:01 +00:00
Doug Blank
2c1ba1496b
Working on select/update from Struct
2013-11-12 15:24:15 -05:00
Nick Hall
f80e6422a3
Improve gen.proxy documentation
2013-11-12 18:03:20 +00:00
Nick Hall
1bd893f9f0
Improve gen.plug documentation
2013-11-12 16:28:24 +00:00
Nick Hall
37f0d9c9df
Improve gen.display documentation
2013-11-12 00:12:32 +00:00
Nick Hall
6eab64c901
Improve gen documentation
2013-11-11 23:38:26 +00:00
Nick Hall
1ef6a987da
Improve gen.lib documentation
2013-11-11 23:10:35 +00:00
Nick Hall
c665b8d262
Improve gen.db documentation
...
Convert old markup to reStructuredText.
Use warning and todo directives where appropriate.
Add some new links to classes and methods.
Use consistent case for "Gramps".
2013-11-10 23:34:10 +00:00
Doug Blank
7f2394337d
get_dependencies returns a set
2013-11-10 15:59:09 -05:00
Doug Blank
49b7c09cea
Revised Handle class; added get_dependencies; revised Struct class to allow changes
2013-11-10 15:17:47 -05:00
Doug Blank
b0517d0ee4
Added db.get_transaction_class to connect db and txn; refactored _tables metadata
2013-11-10 15:07:14 -05:00
Doug Blank
94dbcc5ac7
Interface for getting/setting struct parts by dotted path
2013-11-10 09:11:49 -05:00
Doug Blank
c24e037a64
Fix Handle.from_struct to return just handle
2013-11-09 23:14:11 -05:00
Doug Blank
130e2890c6
Change Handle as string to be pure JSON-like representation
2013-11-09 21:58:16 -05:00
Doug Blank
4405e32cb9
Added metadata to struct to allow object creation
2013-11-09 21:28:40 -05:00
Doug Blank
d5be60846d
Undo change that made a superfluous change (extra space) to XML format
2013-11-09 19:08:09 -05:00
Doug Blank
8951d92739
Merge branch 'master' of ssh://git.code.sf.net/p/gramps/source
2013-11-09 17:00:09 -05:00
Doug Blank
8980d7be87
from_struct uses defaults from object if not given in JSON-like representation
2013-11-09 16:59:42 -05:00
Nick Hall
0f93a7170c
Update url to example file
2013-11-09 19:50:42 +00:00
Doug Blank
564aaf88a7
Added from_struct to all objects; can now instatiate an object with JSON-like structs; added 10k tests that all pass
2013-11-09 10:43:30 -05:00