diff options
author | Adrian Cumiskey <acumiskey@apache.org> | 2008-11-18 14:01:48 +0000 |
---|---|---|
committer | Adrian Cumiskey <acumiskey@apache.org> | 2008-11-18 14:01:48 +0000 |
commit | 1eaf6721d49efe4d26d79278382f99e4795e60f7 (patch) | |
tree | aadd79895fae0c99a33cbe00b4171aa2a3e43099 /src/documentation/content/xdocs | |
parent | 67c82c98fbd59ff04f3556f1b28569958a5e66c6 (diff) | |
download | xmlgraphics-fop-1eaf6721d49efe4d26d79278382f99e4795e60f7.tar.gz xmlgraphics-fop-1eaf6721d49efe4d26d79278382f99e4795e60f7.zip |
Merged revisions 718557,718570,718591 via svnmerge from
https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk
........
r718557 | vhennebert | 2008-11-18 11:10:19 +0000 (Tue, 18 Nov 2008) | 2 lines
Improved the FAQ by creating a separate entry for the problem about keep-together on table-cell, and the added support for inline keeps in 0.95
........
r718570 | jeremias | 2008-11-18 13:16:32 +0000 (Tue, 18 Nov 2008) | 1 line
Update conference ads.
........
r718591 | acumiskey | 2008-11-18 13:56:52 +0000 (Tue, 18 Nov 2008) | 2 lines
TextHandler interface changes, the Graphics2D implementation is now passed to drawString().
........
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/Temp_AFPGOCAResources@718594 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/documentation/content/xdocs')
-rw-r--r-- | src/documentation/content/xdocs/faq.xml | 30 |
1 files changed, 20 insertions, 10 deletions
diff --git a/src/documentation/content/xdocs/faq.xml b/src/documentation/content/xdocs/faq.xml index f05f07126..1838a416a 100644 --- a/src/documentation/content/xdocs/faq.xml +++ b/src/documentation/content/xdocs/faq.xml @@ -1,4 +1,4 @@ -<?xml version="1.0" encoding="ISO-8859-1"?> +<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with @@ -639,15 +639,25 @@ Check the following:</p> <link href="http://www.mulberrytech.com/xsl/xsl-list/">XSL list archive</link> for how to perform these tasks. </p> - <p> - If your text is not hyphenated at all and overflows the cell, please check - if you've specified <code>keep-together="always"</code> on the table-cell - or one of its parent elements. <code>keep-together="always"</code> implicitely - also sets <code>keep-together.within-line="always"</code> which forbids FOP - to break the text into multiple lines. This is important as FOP supports inline-level - keeps since version 0.94. It's a good idea not to use the shorthand - <code>keep-together="always"</code> at all! - </p> + </answer> + </faq> + <faq id="table-cell-wrap"> + <question>The contents of table cells don’t wrap</question> + <answer> + <p>You probably have <code>keep-together="always"</code> set on the table cell. See <link + href="#keep-together">next question</link>.</p> + </answer> + </faq> + <faq id="keep-together"> + <question>FOP 0.95 and FOP 0.94 behave differently when <code>keep-together="always"</code> + is set on table cells</question> + <answer> + <p>Support for inline-level keeps has been added in FOP 0.95, and setting + <code>keep-together="always"</code> also implicitly sets + <code>keep-together.within-line="always"</code>, which forbids FOP + to break the text into multiple lines. Set + <code>keep-together.within-column="always"</code> on table-cell instead. It’s a good idea + not to use the shorthand <code>keep-together="always"</code> at all!</p> </answer> </faq> <faq id="row-height-constraint"> |