]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
bugzilla #48955: Allow AFP font codepage names to be less than 8 chars
authorChris Bowditch <cbowditch@apache.org>
Fri, 2 Nov 2012 14:07:14 +0000 (14:07 +0000)
committerChris Bowditch <cbowditch@apache.org>
Fri, 2 Nov 2012 14:07:14 +0000 (14:07 +0000)
Patch submitted by Peter Hancock

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1404968 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/afp/fonts/CharacterSet.java
status.xml

index d54d478bcee3d38de72a5224d9877da095d71fb1..e0c3b9c9ae3660bf5ccdf04c840466bbe2c78406 100644 (file)
@@ -108,12 +108,11 @@ public class CharacterSet {
             throw new IllegalArgumentException(msg);
         }
 
-        if (name.length() < MAX_NAME_LEN) {
-            this.name = StringUtils.rpad(name, ' ', MAX_NAME_LEN);
-        } else {
-            this.name = name;
-        }
-        this.codePage = codePage;
+        // the character set name must be 8 chars long
+        this.name = padName(name);
+        // the code page name must be 8 chars long
+        this.codePage = padName(codePage);
+
         this.encoding = encoding;
         this.encoder = charsetType.getEncoder(encoding);
         this.accessor = accessor;
@@ -121,6 +120,11 @@ public class CharacterSet {
         this.characterSetOrientations = new HashMap<String, CharacterSetOrientation>(4);
     }
 
+     // right pad short names with space
+     private String padName(String name) {
+         return name.length() < MAX_NAME_LEN ? StringUtils.rpad(name, ' ', MAX_NAME_LEN) : name;
+     }
+
     /**
      * Add character set metric information for the different orientations
      *
index 28c88477475c3b33abdda54ef5164c0f9e25759f..d4a2e63bd94d4ed672b6560c381698c8988cfc74 100644 (file)
@@ -59,6 +59,9 @@
       documents. Example: the fix of marks layering will be such a case when it's done.
     -->
     <release version="FOP Trunk" date="TBD">
+      <action context="Code" dev="CB" type="fix" fixes-bug="48955" due-to="Peter Hancock">
+        Allow AFP font codepage names to be less than 8 chars
+      </action>
       <action context="Code" dev="PH" type="fix" fixes-bug="54075">
         Fixed a regression
       </action>