diff --git a/ChangeLog b/ChangeLog index 93ac3eaf2..dd09f0c55 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2003-12-01 Alex Roitman + * src/FamilyView.py (add_child_clicked): Return tuple of two + empty strings when the surname guessing is set to None (otherwise + it produced traceback and did nothing). + * doc/gramps-manual/C/custom.xml: Update. + * doc/gramps-manual/C/gramps-manual-C.omf: Update. + * doc/gramps.1.in: Update. + 2003-12-01 Tim Waugh * doc/xmldocs.make: Fix builds for $top_srcdir == $top_builddir (oops). diff --git a/doc/gramps-manual/C/custom.xml b/doc/gramps-manual/C/custom.xml index 7b7112c76..896b1be2d 100644 --- a/doc/gramps-manual/C/custom.xml +++ b/doc/gramps-manual/C/custom.xml @@ -109,8 +109,22 @@ - Surname guessing - This option is not currently implemented. + Family name guessing + This option affects the initial family name of a + child when he/she is added to the database. NOTE: this option only + affects the initial family name guessed by &app; when the + Edit Person dialog is launched. You can modify + that name the way you see fit. Set this option to the value that you + will most frequently use, as it will save you a lot of typing. + + If None is selected, no guessing will be + attempted. Selecting Father's surname will use + the family name of the father. Selecting Combination of + mother's and father's surname will use the father's name + followed by the mother's name. Finally, Icelandic + style will use the father's given name followed by the + "sson" suffix (e.g. the son of Edwin will be guessed as + Edwinsson). @@ -189,7 +203,8 @@ Show calendar format selection menu Check this box to enable the calendar format selection menu when you are entering dates in the Event - Editor dialog. + Editor dialog. This will allow you to select different + calendars when editing the dates. @@ -203,7 +218,8 @@ Toolbar Select the desired appearance of the toolbar icons - using the radio buttons. + from the menu. Selecting GNOME Settings will use + the overall settings selected for your GNOME desktop. @@ -245,11 +261,6 @@ - Capitalize surnames - Check this box to capitalize surnames entered into the - database. - - Autosave interval Set the interval (in minutes) after which &app; will automatically save your database. Setting the interval to zero (0) diff --git a/doc/gramps-manual/C/gramps-manual-C.omf b/doc/gramps-manual/C/gramps-manual-C.omf index be3d620ba..9cc1def88 100644 --- a/doc/gramps-manual/C/gramps-manual-C.omf +++ b/doc/gramps-manual/C/gramps-manual-C.omf @@ -3,8 +3,8 @@ Alex Roitman shura@alex.neuro.umn.edu GRAMPS Manual - 2003-10-06 - + 2003-12-01 + User Manual for GRAMPS. User Manual diff --git a/doc/gramps.1.in b/doc/gramps.1.in index db5154b7e..8d60c7f44 100644 --- a/doc/gramps.1.in +++ b/doc/gramps.1.in @@ -1,4 +1,4 @@ -.TH gramps 1 "@VERSION@" "September 2003" "@VERSION@" +.TH gramps 1 "@VERSION@" "December 2003" "@VERSION@" .SH NAME gramps \- Genealogical Research and Analysis Management Programming System. @@ -133,6 +133,16 @@ Instead of generating direct printer output, report generators target other systems, such as \fIOpen Office\fR, \fIAbiWord\fR, HTML or LaTeX to allow the user to modify the format to suit his or her needs. +.SH KNOWN BUGS AND LIMITATIONS +Currently, \fIGramps\fP loads all data into memory, which tends to bog down +the system for large databases (over 15000 people for a typical system). +This will be addressed with the 1.2 release by incorporating a database +backend. The database backend should dramatically improve both speed and +memory usage. +.LP +Direct printing is not currently supported. This is planned to be fixed after +the stable 1.0 release by using gnome-print architechture. + .SH FILES .LP \fI${PREFIX}/bin/gramps\fP @@ -159,7 +169,7 @@ Alex Roitman \fI\fR .SH DOCUMENTATION The user documentation is available through standard GNOME Help browser -in the form of Gramps Manual. This manual is also available in XML format +in the form of Gramps Manual. The manual is also available in XML format as \fBgramps-manual.xml\fR under \fIdoc/gramps-manual/$LANG\fR in the official source distribution. .LP diff --git a/src/FamilyView.py b/src/FamilyView.py index e6028e3b1..55bbbfdd1 100644 --- a/src/FamilyView.py +++ b/src/FamilyView.py @@ -599,7 +599,7 @@ class FamilyView: elif autoname == 3: name = self.icelandic(0) else: - name = "" + name = ("","") person.getPrimaryName().setSurname(name[1]) person.getPrimaryName().setSurnamePrefix(name[0])