forked from gramps-project/gramps
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* src/RelImage.py: replace system call with Utils.search_for
* src/Utils.py: added search_for to look for an executable in the current path * FAQ: removed question 18 (how fast is GRAMPS) * src/PeopleStore.py: set sort data for top level nodes. Allows the first and last nodes to be sorted properly. svn: r2374
- Loading branch information
Don Allingham
committed
Nov 25, 2003
1 parent
028b19f
commit c23723a
Showing
5 changed files
with
15 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -188,12 +188,7 @@ We have found that on a typical system, GRAMPS tends to bog down after around | |
15,000 users. Again, this is dependant on how much memory you have. | ||
|
||
|
||
17. How fast is GRAMPS? | ||
|
||
No idea. | ||
|
||
|
||
18. My database is really big. | ||
17. My database is really big. | ||
Is there a way around loading all the data into memory? | ||
|
||
Currently, there is no way around it. However, this is our biggest priority | ||
|
@@ -202,7 +197,7 @@ in the next stable release (1.2) which will dramatically improve performance | |
in both speed and memory usage. | ||
|
||
|
||
19. Can I create custom reports/filters/whatever? | ||
18. Can I create custom reports/filters/whatever? | ||
|
||
Yes. There are many levels of customization. One is creating or modifying | ||
the templates used for the reports. This gives you some control over | ||
|
@@ -216,7 +211,7 @@ reports, research tools, import/export filters, etc. This assumes some | |
knowledge of programming in Python. | ||
|
||
|
||
20. Why is GRAMPS running so slowly? | ||
19. Why is GRAMPS running so slowly? | ||
|
||
If GRAMPS seems too slow to you, it is most likely that you have a large | ||
database. Currently, GRAMPS loads all the database into memory, therefore | ||
|
@@ -230,7 +225,7 @@ with the implementation of the real database backend, please don't hesitate | |
to email us at [email protected] | ||
|
||
|
||
21. Why are non-latin characters displayed as garbage in PDF/PS reports? | ||
20. Why are non-latin characters displayed as garbage in PDF/PS reports? | ||
|
||
This is a known problem -- PS (and PDF) have builtin fonts which pretty much | ||
reflect the latin-1 charset. Any font in principle could be used with PS/PDF | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,6 +56,8 @@ | |
|
||
try: | ||
locale.setlocale(locale.LC_ALL,'') | ||
except locale.Error: | ||
pass | ||
except ValueError: | ||
pass | ||
|
||
|