c233adcd64
Addition of a print action on the fanchart
...
svn: r20305
2012-09-01 10:11:07 +00:00
97a7b690ac
GTK3: pdf out conversion, avoid segfault in pdf report write,
...
svn: r20283
2012-08-29 12:58:22 +00:00
aa1729d364
GTK3 fix. Workaround for bug https://bugzilla.gnome.org/show_bug.cgi?id=679654 which prevents list_families() being called more than once to generate a list of fonts. Text reports and anything else which uses the PDF backend now works
...
svn: r20212
2012-08-14 21:58:29 +00:00
64d2de4dbd
merged r19899 through r20053 of trunk
...
svn: r20056
2012-07-23 13:42:56 +00:00
6d39969056
backed out a parameter passing change I made in commit 19862
...
svn: r20018
2012-07-17 01:34:54 +00:00
c52933f9ec
5483: graphic reports should allow indexing (and thus a t.o.c.) -- partial
...
(this is my patch-5483=drawindexing-20120702.svndiff.trunk -- from 5483)
svn: r19971
2012-07-10 13:29:44 +00:00
226a3eee2b
merge trunk from 19853 to 19947
...
svn: r19949
2012-07-05 00:38:18 +00:00
742c3d770e
GEPS008: Moved ImgManip module
...
svn: r19901
2012-06-23 16:27:39 +00:00
3a82d58838
fixed a reacurring error that was in 19873
...
svn: r19896
2012-06-21 21:01:38 +00:00
d3c412512b
fix for 5851 (part 4)
...
svn: r19895
2012-06-21 20:52:19 +00:00
e0193098a0
revert to 19873
...
svn: r19894
2012-06-21 20:50:55 +00:00
d1bef05130
base fix for feature request 5483
...
svn: r19892
2012-06-21 14:26:05 +00:00
8892057886
Error 5851 (part 3)
...
svn: r19873
2012-06-19 02:56:11 +00:00
9841fb79ef
Error 5851 (part 2)
...
svn: r19868
2012-06-18 20:35:05 +00:00
30b0c044ce
Fix for error 5851 in trunk and 3.4.
...
'&' and '<' give Pango warnings and does not print the desired results
in (most) Graphics reports.
svn: r19862
2012-06-18 17:54:55 +00:00
35ccf01827
Convert MenuItem, working styledtexteditor in grampletpane
...
svn: r19859
2012-06-17 23:04:42 +00:00
faed8a9f5f
Start convertion to introspection. Flat models work, as does relationship view
...
svn: r19858
2012-06-17 21:25:37 +00:00
1d6a4e60c4
GEPS008: Moved Errors module
...
svn: r19785
2012-06-07 17:06:16 +00:00
db90acb48b
typos
...
svn: r19712
2012-05-30 16:46:29 +00:00
3e482e9d39
5727: some PDF book reports have extra blank pages between them
...
svn: r19619
2012-05-22 15:05:54 +00:00
8a443da4d2
5326: Add Alphabetical Index and Table of Contents generation for pdf reports
...
svn: r18870
2012-02-12 21:55:07 +00:00
da75a38762
5326: Revert r18842
...
svn: r18848
2012-02-10 19:57:57 +00:00
3767c1d1e4
5326: Add Alphabetical Index and Table of Contents generation for pdf reports
...
svn: r18842
2012-02-10 14:53:58 +00:00
e5a490d5da
5317: Multi-line photo captions are not rendered correctly in output reports
...
patch from Adam Stein <adam@csh.rit.edu >
svn: r18760
2012-01-22 04:03:29 +00:00
4cdc101c26
typos (and one file's SVN properties)
...
svn: r18651
2011-12-24 19:08:19 +00:00
0129017798
remove 15169 trailing whitespace
...
svn: r18547
2011-12-04 04:28:52 +00:00
0c6834c365
add .pdf to filename, if needed
...
svn: r18521
2011-11-28 04:21:35 +00:00
9cd2754e19
Keep gtk out of includes, if possible
...
svn: r18302
2011-10-12 20:18:48 +00:00
eb85361c7e
Patch by Adam Stein <adam@csh.rit.edu > - Continued work on "0002513: Using section/region on media_ref as thumbnail on reports" - add image cropping to Cairo documents
...
svn: r18097
2011-09-02 01:32:03 +00:00
9bc3d725cb
Patch by Adam Stein <adam@csh.rit.edu > - Continued work on "0002513: Using section/region on media_ref as thumbnail on reports"
...
svn: r17971
2011-07-27 03:26:12 +00:00
4750ab4816
Endnotes improvment, see issue 4997 & 4998.
...
svn: r17809
2011-06-19 11:47:22 +00:00
0c5b792c76
3969: [NarWeb] Narrated Web Site: Newlines and white space are not preserved in note text
...
Patch of Tim Lyons and Benny Malengier
svn: r15923
2010-09-23 21:03:15 +00:00
f89bfe0796
copyright Jakim Friant, ticket 4237: Line Styles in Report not Fully Supported
...
svn: r15911
2010-09-17 12:08:38 +00:00
e24b184508
bug #2402 : Line spacing for text not correct in CairoDoc
...
svn: r15839
2010-08-31 07:52:11 +00:00
df32be43de
0003796: Make export available when no GUI available. Patch from jmodule (Jakim Friant).
...
svn: r15294
2010-05-01 04:12:42 +00:00
56c85f0255
3815: Notes with html show verbatim in narrative web
...
svn: r15169
2010-04-16 20:59:10 +00:00
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
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
61360acb4e
Fix of issue 2848.
...
svn: r14066
2010-01-13 18:47:34 +00:00
ed619cfdd6
3292: register plugins, load on need, not on start of GRAMPS - GEPS 014
...
svn: r13400
2009-10-24 13:53:20 +00:00
a177da80b0
2707: Add markup notes to html output
...
Part 2: enable css, clean up code.
TODO: better output, support in default css files, test
svn: r12644
2009-06-08 23:19:37 +00:00
fb3ec68c6a
part 3 : split basedoc in files, remove Utils dependance, move fontscale in gen,
...
update build system
svn: r12603
2009-05-31 14:59:56 +00:00
8dd7adc607
part 2 basedoc: move BaseDoc.py to /gen/plug/docgen and add /gen/plug/docbackend
...
that was missing in part 1
Still to come: makefiles and splitting new basedoc.py in small files
svn: r12591
2009-05-29 22:25:44 +00:00
f999ba9cc4
Part 1 basedoc changes: move out backend stuff from BaseDoc, use backend in
...
the docs. As a dir change will be done, backend itself will be committed
later, trunk will be broken till then
svn: r12590
2009-05-29 19:52:57 +00:00
81a0848490
Bug 3018: remove calls to keys() and values() dictionary method where possible
...
svn: r12579
2009-05-27 17:33:45 +00:00
bb7920b0c0
remove STRANGE output due to line spacing in pdf
...
svn: r12553
2009-05-20 11:18:51 +00:00
8db826314e
2860: Problem with det_ancestor report in PDF at page breaks\n no more STRANGE output
...
svn: r12537
2009-05-18 14:42:26 +00:00
1031506baa
2808: fonts with xml codes don't print correctly
...
svn: r12525
2009-05-14 13:51:36 +00:00
066d39a739
2860: Problem with det_ancestor report in PDF at page breaks
...
svn: r12522
2009-05-13 08:36:02 +00:00
82c9108b23
2860: Problem with det_ancestor report in PDF at page breaks - part 1
...
svn: r12393
2009-03-29 09:07:35 +00:00