From: Vincent Hennebert Date: Fri, 9 Apr 2010 17:22:31 +0000 (+0000) Subject: Added getEventKey method to Event so that it's no longer necessary to store the whole... X-Git-Tag: fop-1_0~40 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=21f5a088d5824196240d7c09d8514bc48fa33751;p=xmlgraphics-fop.git Added getEventKey method to Event so that it's no longer necessary to store the whole event ID (fully qualified interface name) in message files git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@932519 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/java/org/apache/fop/ResourceEventProducer.xml b/src/java/org/apache/fop/ResourceEventProducer.xml index 9f08f3fea..0ea34af2c 100644 --- a/src/java/org/apache/fop/ResourceEventProducer.xml +++ b/src/java/org/apache/fop/ResourceEventProducer.xml @@ -18,15 +18,15 @@ [ (See position {loc})| (See {#gatherContextInfo})| (No context info available)] - Image not found.[ URI: {uri}.]{{locator}} - Image not available.[ URI: {uri}.] Reason:[ {reason}][ {e}]{{locator}} - I/O error while loading image.[ URI: {uri}.][ Reason: {ioe}]{{locator}} - The intrinsic dimensions of an instream-foreign-object could not be determined.{{locator}} - Error while handling URI: {uri}. Reason: {e}{{locator}} - Some XML content will be ignored. Could not render XML in namespace "{namespaceURI}".[ Reason: {e}] - Some XML content will be ignored. No handler defined for XML with namespace "{namespaceURI}". - Error while writing an image to the target file.[ Reason: {e}] - Temporary file could not be deleted: {tempFile} - Catalog resolver not found along the classpath - Error creating the catalog resolver: {message} + Image not found.[ URI: {uri}.]{{locator}} + Image not available.[ URI: {uri}.] Reason:[ {reason}][ {e}]{{locator}} + I/O error while loading image.[ URI: {uri}.][ Reason: {ioe}]{{locator}} + The intrinsic dimensions of an instream-foreign-object could not be determined.{{locator}} + Error while handling URI: {uri}. Reason: {e}{{locator}} + Some XML content will be ignored. Could not render XML in namespace "{namespaceURI}".[ Reason: {e}] + Some XML content will be ignored. No handler defined for XML with namespace "{namespaceURI}". + Error while writing an image to the target file.[ Reason: {e}] + Temporary file could not be deleted: {tempFile} + Catalog resolver not found along the classpath + Error creating the catalog resolver: {message} diff --git a/src/java/org/apache/fop/accessibility/AccessibilityEventProducer.xml b/src/java/org/apache/fop/accessibility/AccessibilityEventProducer.xml index 70466c2e9..bb76a95a1 100644 --- a/src/java/org/apache/fop/accessibility/AccessibilityEventProducer.xml +++ b/src/java/org/apache/fop/accessibility/AccessibilityEventProducer.xml @@ -1,4 +1,4 @@ - Accessibility is enabled but structure tree is missing in XML file. Please disable accessibility, or re-generate XML file in accessibility mode. + Accessibility is enabled but structure tree is missing in XML file. Please disable accessibility, or re-generate XML file in accessibility mode. diff --git a/src/java/org/apache/fop/afp/AFPEventProducer.xml b/src/java/org/apache/fop/afp/AFPEventProducer.xml index 364cd92ff..fab150376 100644 --- a/src/java/org/apache/fop/afp/AFPEventProducer.xml +++ b/src/java/org/apache/fop/afp/AFPEventProducer.xml @@ -1,7 +1,7 @@ - No AFP fonts configured. Using default setup. - No AFP default "any", {style}, {weight} font configured. - An error occurred when attempting to encode character set {charSetName} with encoding scheme {encoding}. - An error occurs while embedding the resource named "{resourceName}".[ Reason: {e}] + No AFP fonts configured. Using default setup. + No AFP default "any", {style}, {weight} font configured. + An error occurred when attempting to encode character set {charSetName} with encoding scheme {encoding}. + An error occurs while embedding the resource named "{resourceName}".[ Reason: {e}] diff --git a/src/java/org/apache/fop/area/AreaEventProducer.xml b/src/java/org/apache/fop/area/AreaEventProducer.xml index 7fe7e2d8c..576007eb9 100644 --- a/src/java/org/apache/fop/area/AreaEventProducer.xml +++ b/src/java/org/apache/fop/area/AreaEventProducer.xml @@ -17,9 +17,9 @@ --> - {type}: Unresolved ID reference "{id}" found. - Page {page}: Unresolved ID reference "{id}" found. - Error while deserializing page {page}.[ Reason: {e}] - Error while serializing page {page}.[ Reason: {e}] - Error while rendering page {page}.[ Reason: {e}] + {type}: Unresolved ID reference "{id}" found. + Page {page}: Unresolved ID reference "{id}" found. + Error while deserializing page {page}.[ Reason: {e}] + Error while serializing page {page}.[ Reason: {e}] + Error while rendering page {page}.[ Reason: {e}] diff --git a/src/java/org/apache/fop/events/Event.java b/src/java/org/apache/fop/events/Event.java index e820db995..c48530c1c 100644 --- a/src/java/org/apache/fop/events/Event.java +++ b/src/java/org/apache/fop/events/Event.java @@ -33,7 +33,10 @@ public class Event extends EventObject { private static final long serialVersionUID = -1310594422868258083L; - private String eventID; + private String eventGroupID; + + private String eventKey; + private EventSeverity severity; private Map params; @@ -46,7 +49,13 @@ public class Event extends EventObject { */ public Event(Object source, String eventID, EventSeverity severity, Map params) { super(source); - this.eventID = eventID; + int pos = eventID.lastIndexOf('.'); + if (pos < 0 || pos == eventID.length() - 1) { + eventKey = eventID; + } else { + eventGroupID = eventID.substring(0, pos); + eventKey = eventID.substring(pos + 1); + } setSeverity(severity); this.params = params; } @@ -56,7 +65,11 @@ public class Event extends EventObject { * @return the event identifier */ public String getEventID() { - return this.eventID; + if (eventGroupID == null) { + return eventKey; + } else { + return eventGroupID + '.' + eventKey; + } } /** @@ -64,12 +77,15 @@ public class Event extends EventObject { * @return the event group identifier (or null if there is no group identifier) */ public String getEventGroupID() { - int pos = this.eventID.lastIndexOf('.'); - if (pos > 0) { - return this.eventID.substring(0, pos); - } else { - return null; - } + return eventGroupID; + } + + /** + * Returns the event key. + * @return the event key + */ + public String getEventKey() { + return eventKey; } /** diff --git a/src/java/org/apache/fop/events/EventFormatter.java b/src/java/org/apache/fop/events/EventFormatter.java index 631c8a89d..072cddd24 100644 --- a/src/java/org/apache/fop/events/EventFormatter.java +++ b/src/java/org/apache/fop/events/EventFormatter.java @@ -98,7 +98,7 @@ public final class EventFormatter { } private static String format(Event event, ResourceBundle bundle) { - String template = bundle.getString(event.getEventID()); + String template = bundle.getString(event.getEventKey()); return format(event, processIncludes(template, bundle)); } diff --git a/src/java/org/apache/fop/fo/FOValidationEventProducer.xml b/src/java/org/apache/fop/fo/FOValidationEventProducer.xml index 851c6740f..c3e4b6b61 100644 --- a/src/java/org/apache/fop/fo/FOValidationEventProducer.xml +++ b/src/java/org/apache/fop/fo/FOValidationEventProducer.xml @@ -13,31 +13,31 @@ The element must be a child of fo:page-sequence. The element must be a child of fo:page-sequence or fo:simple-page-master. An fo:wrapper is only permitted to have children that would be permitted for its parent. - For "{elementName}", only one "{offendingNode}" may be declared.{{locator}} - For "{elementName}", "{tooLateNode}" must be declared before "{tooEarlyNode}"!{{locator}} - "{offendingNode}" is not a valid child of "{elementName}"![ {ruleViolated,lookup}]{{locator}} - "{elementName}" is missing child elements.[ Required content model: {contentModel}]{{locator}} - Element "{elementName}" is missing required property "{propertyName}"!{{locator}} - Property ID "{id}" (found on "{elementName}") previously used; ID values must be unique within a document!{severity,equals,EventSeverity:FATAL,, Any reference to it will be considered a reference to the first occurrence in the document.}{{locator}} - Only an fo:block-container that does not generate absolutely positioned areas may have one or more fo:markers as its initial children.{{locator}} - fo:marker must be an initial child: {mcname}{{locator}} - fo:marker "marker-class-name" must be unique for same parent: {mcname}{{locator}} - Invalid property encountered on "{elementName}": {attr}{{locator}} - Invalid property value encountered in {propName}="{propValue}"[: {e}]{{locator}} - The following feature isn't implemented by Apache FOP, yet: {feature} (on {elementName}){{locator}} - Missing attribute on {elementName}: Either external-destination or internal-destination must be specified.{{locator}} - Unable to clone subtree of fo:marker (marker-class-name="{markerClassName}") for fo:retrieve-marker.{{locator}} - Duplicate color profile profile name: {name}{{locator}} - Region-name ("{regionName}") is being mapped to multiple region-classes ({defaultRegionClass1} and {defaultRegionClass2}).{{locator}} - The page master name ("{name}") must be unique across page-masters and page-sequence-masters.{{locator}} - Duplicate flow-name "{flowName}" found within {elementName}.{{locator}} - The flow-name "{flowName}" on {elementName} could not be mapped to a region-name in the layout-master-set.{{locator}} - The master-reference "{masterReference}" on {elementName} matches no simple-page-master or page-sequence-master.{{locator}} - The region-name "{regionName}" for {elementName} is not permitted.{{locator}} - Border and padding for {elementName} "{regionName}" should be '0' (See 6.4.14 in XSL 1.1); non-standard values are allowed if relaxed validation is enabled. {{locator}} - If overflow property is set to "scroll" on {elementName}, a column-count other than "1" may not be specified.{{locator}} - First element must be the fo:root formatting object. Found {elementName} instead. Please make sure you're producing a valid XSL-FO document. - Document is empty (something might be wrong with your XSLT stylesheet). - Unknown formatting object "{offendingNode}" encountered (a child of {elementName}}.{{locator}} - Alternate text is missing on {foElement}.{{locator}} + For "{elementName}", only one "{offendingNode}" may be declared.{{locator}} + For "{elementName}", "{tooLateNode}" must be declared before "{tooEarlyNode}"!{{locator}} + "{offendingNode}" is not a valid child of "{elementName}"![ {ruleViolated,lookup}]{{locator}} + "{elementName}" is missing child elements.[ Required content model: {contentModel}]{{locator}} + Element "{elementName}" is missing required property "{propertyName}"!{{locator}} + Property ID "{id}" (found on "{elementName}") previously used; ID values must be unique within a document!{severity,equals,EventSeverity:FATAL,, Any reference to it will be considered a reference to the first occurrence in the document.}{{locator}} + Only an fo:block-container that does not generate absolutely positioned areas may have one or more fo:markers as its initial children.{{locator}} + fo:marker must be an initial child: {mcname}{{locator}} + fo:marker "marker-class-name" must be unique for same parent: {mcname}{{locator}} + Invalid property encountered on "{elementName}": {attr}{{locator}} + Invalid property value encountered in {propName}="{propValue}"[: {e}]{{locator}} + The following feature isn't implemented by Apache FOP, yet: {feature} (on {elementName}){{locator}} + Missing attribute on {elementName}: Either external-destination or internal-destination must be specified.{{locator}} + Unable to clone subtree of fo:marker (marker-class-name="{markerClassName}") for fo:retrieve-marker.{{locator}} + Duplicate color profile profile name: {name}{{locator}} + Region-name ("{regionName}") is being mapped to multiple region-classes ({defaultRegionClass1} and {defaultRegionClass2}).{{locator}} + The page master name ("{name}") must be unique across page-masters and page-sequence-masters.{{locator}} + Duplicate flow-name "{flowName}" found within {elementName}.{{locator}} + The flow-name "{flowName}" on {elementName} could not be mapped to a region-name in the layout-master-set.{{locator}} + The master-reference "{masterReference}" on {elementName} matches no simple-page-master or page-sequence-master.{{locator}} + The region-name "{regionName}" for {elementName} is not permitted.{{locator}} + Border and padding for {elementName} "{regionName}" should be '0' (See 6.4.14 in XSL 1.1); non-standard values are allowed if relaxed validation is enabled. {{locator}} + If overflow property is set to "scroll" on {elementName}, a column-count other than "1" may not be specified.{{locator}} + First element must be the fo:root formatting object. Found {elementName} instead. Please make sure you're producing a valid XSL-FO document. + Document is empty (something might be wrong with your XSLT stylesheet). + Unknown formatting object "{offendingNode}" encountered (a child of {elementName}}.{{locator}} + Alternate text is missing on {foElement}.{{locator}} diff --git a/src/java/org/apache/fop/fo/FOValidationEventProducer_de.xml b/src/java/org/apache/fop/fo/FOValidationEventProducer_de.xml index 0e2bd5c44..4b6090ab7 100644 --- a/src/java/org/apache/fop/fo/FOValidationEventProducer_de.xml +++ b/src/java/org/apache/fop/fo/FOValidationEventProducer_de.xml @@ -18,6 +18,6 @@ [ (Siehe Position {loc})| (Siehe {#gatherContextInfo})| (Keine Kontextinformationen verfügbar)] - In "{elementName}" darf nur ein einziges "{offendingNode}" vorkommen!{{locator}} - Dem Element "{elementName}" fehlt ein verlangtes Property "{propertyName}"!{{locator}} + In "{elementName}" darf nur ein einziges "{offendingNode}" vorkommen!{{locator}} + Dem Element "{elementName}" fehlt ein verlangtes Property "{propertyName}"!{{locator}} diff --git a/src/java/org/apache/fop/fo/flow/table/TableEventProducer.xml b/src/java/org/apache/fop/fo/flow/table/TableEventProducer.xml index 73a73b426..a9741175b 100644 --- a/src/java/org/apache/fop/fo/flow/table/TableEventProducer.xml +++ b/src/java/org/apache/fop/fo/flow/table/TableEventProducer.xml @@ -18,16 +18,16 @@ [ (See position {loc})| (See {#gatherContextInfo})| (No context info available)] - Only a value of "auto" for block-progression-dimension has a well-specified behavior on fo:table. Falling back to "auto".{{locator}} - In collapsing border model a table does not have padding (see http://www.w3.org/TR/REC-CSS2/tables.html#collapsing-borders), but a non-zero value for padding was found. The padding will be ignored.{{locator}} - Either fo:table-rows or fo:table-cells may be children of an {elementName} but not both.{{locator}} - This table uses the collapsing border model. In order to resolve borders in an efficient way the table-footer must be known before any table-body is parsed. Either put the footer at the correct place or switch to the separate border model.{{locator}} - starts-row/ends-row for fo:table-cells non-applicable for children of an fo:table-row.{{locator}} - The column-number or number of cells in the row overflows the number of fo:table-columns specified for the table.{{locator}} - {propName} must be 1 or bigger, but got {actualValue}{{locator}} - table-layout=\"fixed\" and column-width unspecified => falling back to proportional-column-width(1){{locator}} - padding-* properties are not applicable to {elementName}, but a non-zero value for padding was found.{{locator}} - {elementName} overlaps in column {column}. - Negative value {propValue} of property column-number of element {elementName} forced into the next available column number {columnNumber}.{{locator}} - {breakBefore,if,break-before,break-after} ignored on {elementName} because of row spanning in progress (See XSL 1.1, {breakBefore,if,7.20.2,7.20.1}){{locator}} + Only a value of "auto" for block-progression-dimension has a well-specified behavior on fo:table. Falling back to "auto".{{locator}} + In collapsing border model a table does not have padding (see http://www.w3.org/TR/REC-CSS2/tables.html#collapsing-borders), but a non-zero value for padding was found. The padding will be ignored.{{locator}} + Either fo:table-rows or fo:table-cells may be children of an {elementName} but not both.{{locator}} + This table uses the collapsing border model. In order to resolve borders in an efficient way the table-footer must be known before any table-body is parsed. Either put the footer at the correct place or switch to the separate border model.{{locator}} + starts-row/ends-row for fo:table-cells non-applicable for children of an fo:table-row.{{locator}} + The column-number or number of cells in the row overflows the number of fo:table-columns specified for the table.{{locator}} + {propName} must be 1 or bigger, but got {actualValue}{{locator}} + table-layout=\"fixed\" and column-width unspecified => falling back to proportional-column-width(1){{locator}} + padding-* properties are not applicable to {elementName}, but a non-zero value for padding was found.{{locator}} + {elementName} overlaps in column {column}. + Negative value {propValue} of property column-number of element {elementName} forced into the next available column number {columnNumber}.{{locator}} + {breakBefore,if,break-before,break-after} ignored on {elementName} because of row spanning in progress (See XSL 1.1, {breakBefore,if,7.20.2,7.20.1}){{locator}} diff --git a/src/java/org/apache/fop/fonts/FontEventProducer.xml b/src/java/org/apache/fop/fonts/FontEventProducer.xml index 5e7191500..6ea587036 100644 --- a/src/java/org/apache/fop/fonts/FontEventProducer.xml +++ b/src/java/org/apache/fop/fonts/FontEventProducer.xml @@ -17,7 +17,7 @@ --> - Font "{requested}" not found. Substituting with "{effective}". - Unable to load font file: {fontURL}.[ Reason: {e}] - Glyph "{ch}" (0x{ch,hex}[, {ch,glyph-name}]) not available in font "{fontName}". + Font "{requested}" not found. Substituting with "{effective}". + Unable to load font file: {fontURL}.[ Reason: {e}] + Glyph "{ch}" (0x{ch,hex}[, {ch,glyph-name}]) not available in font "{fontName}". diff --git a/src/java/org/apache/fop/layoutmgr/BlockLevelEventProducer.xml b/src/java/org/apache/fop/layoutmgr/BlockLevelEventProducer.xml index a800a99a9..a89f9ed32 100644 --- a/src/java/org/apache/fop/layoutmgr/BlockLevelEventProducer.xml +++ b/src/java/org/apache/fop/layoutmgr/BlockLevelEventProducer.xml @@ -18,15 +18,15 @@ [ (See position {loc})| (See {#gatherContextInfo})| (No context info available)] - The contents of table-row {row} are taller than they should be (there is a block-progression-dimension or height constraint on the indicated row). Due to its contents the row grows to {effCellBPD} millipoints, but the row shouldn't get any taller than {maxCellBPD} millipoints.{{locator}} - table-layout="fixed" and width="auto", but auto-layout not supported => assuming width="100%".{{locator}} - The extent in inline-progression-direction (width) of a {elementName} is bigger than the available space ({effIPD}mpt > {maxIPD}mpt).{{locator}} - An {elementName} {{locator}} is wider than the available room in inline-progression-dimension. Adjusting end-indent based on overconstrained geometry rules (XSL 1.1, ch. 5.3.4) - Content overflows the viewport of an {elementName} in block-progression direction by {amount} millipoints.{clip,if, Content will be clipped.}{{locator}} - Content overflows the viewport of the {elementName} on page {page} in block-progression direction by {amount} millipoints.{clip,if, Content will be clipped.}{{locator}} - Flow "{flowName}" does not map to the region-body in page-master "{masterName}". FOP presently does not support this.{{locator}} - Subsequences exhausted in page-sequence-master "{pageSequenceMasterName}", {canRecover,if,using previous subsequence,cannot recover}.{{locator}} - No subsequences in page-sequence-master "{pageSequenceMasterName}".{{locator}} - No simple-page-master matching "{pageMasterName}" in page-sequence-master "{pageSequenceMasterName}".{{locator}} - Content that cannot handle IPD changes is flowing to a narrower page. Part of it may be clipped by the page border. + The contents of table-row {row} are taller than they should be (there is a block-progression-dimension or height constraint on the indicated row). Due to its contents the row grows to {effCellBPD} millipoints, but the row shouldn't get any taller than {maxCellBPD} millipoints.{{locator}} + table-layout="fixed" and width="auto", but auto-layout not supported => assuming width="100%".{{locator}} + The extent in inline-progression-direction (width) of a {elementName} is bigger than the available space ({effIPD}mpt > {maxIPD}mpt).{{locator}} + An {elementName} {{locator}} is wider than the available room in inline-progression-dimension. Adjusting end-indent based on overconstrained geometry rules (XSL 1.1, ch. 5.3.4) + Content overflows the viewport of an {elementName} in block-progression direction by {amount} millipoints.{clip,if, Content will be clipped.}{{locator}} + Content overflows the viewport of the {elementName} on page {page} in block-progression direction by {amount} millipoints.{clip,if, Content will be clipped.}{{locator}} + Flow "{flowName}" does not map to the region-body in page-master "{masterName}". FOP presently does not support this.{{locator}} + Subsequences exhausted in page-sequence-master "{pageSequenceMasterName}", {canRecover,if,using previous subsequence,cannot recover}.{{locator}} + No subsequences in page-sequence-master "{pageSequenceMasterName}".{{locator}} + No simple-page-master matching "{pageMasterName}" in page-sequence-master "{pageSequenceMasterName}".{{locator}} + Content that cannot handle IPD changes is flowing to a narrower page. Part of it may be clipped by the page border. diff --git a/src/java/org/apache/fop/layoutmgr/inline/InlineLevelEventProducer.xml b/src/java/org/apache/fop/layoutmgr/inline/InlineLevelEventProducer.xml index dea56a6d6..2e3ea6eb8 100644 --- a/src/java/org/apache/fop/layoutmgr/inline/InlineLevelEventProducer.xml +++ b/src/java/org/apache/fop/layoutmgr/inline/InlineLevelEventProducer.xml @@ -18,6 +18,6 @@ [ (See position {loc})| (See {#gatherContextInfo})| (No context info available)] - fo:leader is set to "use-content" but has no content.{{locator}} - Line {line} of a paragraph overflows the available area by {overflowLength,choice,50000#{overflowLength} millipoints|50000<more than 50 points}.{{locator}} + fo:leader is set to "use-content" but has no content.{{locator}} + Line {line} of a paragraph overflows the available area by {overflowLength,choice,50000#{overflowLength} millipoints|50000<more than 50 points}.{{locator}} diff --git a/src/java/org/apache/fop/render/RendererEventProducer.xml b/src/java/org/apache/fop/render/RendererEventProducer.xml index 34a7be4a9..abb15a89a 100644 --- a/src/java/org/apache/fop/render/RendererEventProducer.xml +++ b/src/java/org/apache/fop/render/RendererEventProducer.xml @@ -17,5 +17,5 @@ --> - I/O error while writing to target file.[ Reason: {ioe}] + I/O error while writing to target file.[ Reason: {ioe}] diff --git a/src/java/org/apache/fop/render/bitmap/BitmapRendererEventProducer.xml b/src/java/org/apache/fop/render/bitmap/BitmapRendererEventProducer.xml index a05af3e21..e42d52673 100644 --- a/src/java/org/apache/fop/render/bitmap/BitmapRendererEventProducer.xml +++ b/src/java/org/apache/fop/render/bitmap/BitmapRendererEventProducer.xml @@ -1,6 +1,6 @@ - No filename information available. Stopping early after the first page. - Image writer does not support multiple images. Only the first page has been produced. - Could not get an ImageWriter to produce "{mime}". The most likely explanation for this is a class loading problem. + No filename information available. Stopping early after the first page. + Image writer does not support multiple images. Only the first page has been produced. + Could not get an ImageWriter to produce "{mime}". The most likely explanation for this is a class loading problem. diff --git a/src/java/org/apache/fop/render/pcl/PCLEventProducer.xml b/src/java/org/apache/fop/render/pcl/PCLEventProducer.xml index a3b36fd60..5d5785a4c 100644 --- a/src/java/org/apache/fop/render/pcl/PCLEventProducer.xml +++ b/src/java/org/apache/fop/render/pcl/PCLEventProducer.xml @@ -1,4 +1,4 @@ - Paper type ({pageWidth} x {pageHeight} mpt) could not be determined. Falling back to: {fallbackPaper} + Paper type ({pageWidth} x {pageHeight} mpt) could not be determined. Falling back to: {fallbackPaper} diff --git a/src/java/org/apache/fop/render/pdf/PDFEventProducer.xml b/src/java/org/apache/fop/render/pdf/PDFEventProducer.xml index f6425753d..7f3c9d609 100644 --- a/src/java/org/apache/fop/render/pdf/PDFEventProducer.xml +++ b/src/java/org/apache/fop/render/pdf/PDFEventProducer.xml @@ -1,5 +1,5 @@ - {count} link target{count,equals,1,,s} could not be fully resolved and now point{count,equals,1,,s} to the top of the page or {count,equals,1,is,are} dysfunctional. - ‘{type}’ is not a standard structure type defined by the PDF Reference. Falling back to ‘{fallback}’. + {count} link target{count,equals,1,,s} could not be fully resolved and now point{count,equals,1,,s} to the top of the page or {count,equals,1,is,are} dysfunctional. + ‘{type}’ is not a standard structure type defined by the PDF Reference. Falling back to ‘{fallback}’. diff --git a/src/java/org/apache/fop/render/ps/PSEventProducer.xml b/src/java/org/apache/fop/render/ps/PSEventProducer.xml index a0078223a..bcd89ed07 100644 --- a/src/java/org/apache/fop/render/ps/PSEventProducer.xml +++ b/src/java/org/apache/fop/render/ps/PSEventProducer.xml @@ -1,4 +1,4 @@ - Failed to parse dictionary string. Reason: {e}, content = "{content}" + Failed to parse dictionary string. Reason: {e}, content = "{content}" diff --git a/src/java/org/apache/fop/render/rtf/RTFEventProducer.xml b/src/java/org/apache/fop/render/rtf/RTFEventProducer.xml index 8f1f21a81..cb88760e0 100644 --- a/src/java/org/apache/fop/render/rtf/RTFEventProducer.xml +++ b/src/java/org/apache/fop/render/rtf/RTFEventProducer.xml @@ -1,8 +1,8 @@ [ (See position {loc})| (See {#gatherContextInfo})| (No context info available)] - Only simple-page-masters are supported on page-sequences. Using default simple-page-master from page-sequence-master "{masterReference}".{{locator}} - No simple-page-master could be determined. - No table-columns found on table. RTF output requires that all table-columns for a table are defined. Output will be incorrect.{{locator}} - Ignored deferred event for {node} ({start,if,start,end}).{{locator}} + Only simple-page-masters are supported on page-sequences. Using default simple-page-master from page-sequence-master "{masterReference}".{{locator}} + No simple-page-master could be determined. + No table-columns found on table. RTF output requires that all table-columns for a table are defined. Output will be incorrect.{{locator}} + Ignored deferred event for {node} ({start,if,start,end}).{{locator}} diff --git a/src/java/org/apache/fop/svg/SVGEventProducer.xml b/src/java/org/apache/fop/svg/SVGEventProducer.xml index c85a6cd15..9d229a14b 100644 --- a/src/java/org/apache/fop/svg/SVGEventProducer.xml +++ b/src/java/org/apache/fop/svg/SVGEventProducer.xml @@ -17,9 +17,9 @@ --> - SVG error: {message} - SVG alert: {message} - SVG info: {message} - SVG graphic could not be built. Reason: {e} - SVG graphic could not be rendered. Reason: {e} + SVG error: {message} + SVG alert: {message} + SVG info: {message} + SVG graphic could not be built. Reason: {e} + SVG graphic could not be rendered. Reason: {e}