diff options
author | Adrian Cumiskey <acumiskey@apache.org> | 2008-05-02 16:48:57 +0000 |
---|---|---|
committer | Adrian Cumiskey <acumiskey@apache.org> | 2008-05-02 16:48:57 +0000 |
commit | 57f554c453e44d309ddba9ac748772c13b24cf38 (patch) | |
tree | 02baa7cb953046eefa4065872bdea7a27b102401 /src/java/org/apache/fop/render/ps/PSRenderer.java | |
parent | 1ad900d08ad58f356f1789813c18a0096c889d5b (diff) | |
download | xmlgraphics-fop-57f554c453e44d309ddba9ac748772c13b24cf38.tar.gz xmlgraphics-fop-57f554c453e44d309ddba9ac748772c13b24cf38.zip |
Merged revisions 652456,652465,652467,652520,652525,652565,652581-652582,652673-652674 via svnmerge from
https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk
........
r652456 | adelmelle | 2008-05-01 10:16:05 +0100 (Thu, 01 May 2008) | 3 lines
Tweak: activate max-height/min-height and max-width/min-width
........
r652465 | adelmelle | 2008-05-01 10:52:24 +0100 (Thu, 01 May 2008) | 3 lines
Added enum "none" as a legitimate value for max-height/min-height (behavior to be checked)
Added small testcase to check the correspondence mapping.
........
r652467 | adelmelle | 2008-05-01 11:01:51 +0100 (Thu, 01 May 2008) | 3 lines
Minor cleanup: remove height/width members and unused getHeight()/getWidth() accessors
........
r652520 | acumiskey | 2008-05-01 14:46:21 +0100 (Thu, 01 May 2008) | 2 lines
Renamed variable
........
r652525 | acumiskey | 2008-05-01 15:01:54 +0100 (Thu, 01 May 2008) | 2 lines
Forgot about dependency on PrintRenderer, last commit broke the build - will commit this rename later.
........
r652565 | adelmelle | 2008-05-01 17:15:44 +0100 (Thu, 01 May 2008) | 2 lines
Javadoc corrections
........
r652581 | jeremias | 2008-05-01 18:15:49 +0100 (Thu, 01 May 2008) | 1 line
Website fixes.
........
r652582 | jeremias | 2008-05-01 18:16:57 +0100 (Thu, 01 May 2008) | 1 line
DSC = Document Structuring Conventions!
........
r652673 | adelmelle | 2008-05-01 22:34:19 +0100 (Thu, 01 May 2008) | 2 lines
First steps towards fo:retrieve-table-marker
........
r652674 | adelmelle | 2008-05-01 22:39:17 +0100 (Thu, 01 May 2008) | 1 line
Code style: single class imports only...
........
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/Temp_AFPGOCAResources@652813 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop/render/ps/PSRenderer.java')
-rw-r--r-- | src/java/org/apache/fop/render/ps/PSRenderer.java | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/src/java/org/apache/fop/render/ps/PSRenderer.java b/src/java/org/apache/fop/render/ps/PSRenderer.java index e4d582ba2..a94c8b0aa 100644 --- a/src/java/org/apache/fop/render/ps/PSRenderer.java +++ b/src/java/org/apache/fop/render/ps/PSRenderer.java @@ -170,7 +170,10 @@ public class PSRenderer extends AbstractPathOrientedRenderer /** Whether or not the safe set page device macro will be used or not */ private boolean safeSetPageDevice = false; - /** Whether or not Dublin Core Standard (dsc) compliant output is enforced */ + /** + * Whether or not PostScript Document Structuring Conventions (DSC) compliant output are + * enforced. + */ private boolean dscCompliant = true; /** Is used to determine the document's bounding box */ @@ -181,9 +184,8 @@ public class PSRenderer extends AbstractPathOrientedRenderer /** This is a collection holding all document footer comments */ private Collection footerComments; - /** - * {@inheritDoc} - */ + + /** {@inheritDoc} */ public void setUserAgent(FOUserAgent agent) { super.setUserAgent(agent); Object obj; @@ -1703,13 +1705,14 @@ public class PSRenderer extends AbstractPathOrientedRenderer } /** - * Sets whether or not Dublin Core Standard (dsc) compliance is enforced. - * - * It can cause problems (unwanted postscript subsystem initgraphics/erasepage calls) + * Sets whether or not PostScript Document Structuring Conventions (dsc) compliance are + * enforced. + * <p> + * It can cause problems (unwanted PostScript subsystem initgraphics/erasepage calls) * on some printers when the pagedevice is set. If this causes problems on a * particular implementation then use this setting with a 'false' value to try and * minimize the number of setpagedevice calls in the postscript document output. - * + * <p> * Set this value to false if you experience unwanted blank pages in your * postscript output. * @param dscCompliant boolean value (default is true) |