aboutsummaryrefslogtreecommitdiffstats
path: root/src/codegen
diff options
context:
space:
mode:
authorKeiron Liddle <keiron@apache.org>2001-11-22 07:15:38 +0000
committerKeiron Liddle <keiron@apache.org>2001-11-22 07:15:38 +0000
commit110d112e4941cb917a3dff07e70e71be943d6738 (patch)
tree7c389392c691304e003c0befcc33d6313ad75e75 /src/codegen
parentdf279ef6027b528405bd16d8efb824ac0e48c27f (diff)
downloadxmlgraphics-fop-110d112e4941cb917a3dff07e70e71be943d6738.tar.gz
xmlgraphics-fop-110d112e4941cb917a3dff07e70e71be943d6738.zip
updates for ext, and message handler changes
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@194575 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/codegen')
-rw-r--r--src/codegen/allprops.xml1
-rw-r--r--src/codegen/foproperties.xml11
-rw-r--r--src/codegen/properties.xsl1
3 files changed, 9 insertions, 4 deletions
diff --git a/src/codegen/allprops.xml b/src/codegen/allprops.xml
index 2f249a74a..480a7f3c9 100644
--- a/src/codegen/allprops.xml
+++ b/src/codegen/allprops.xml
@@ -1,4 +1,3 @@
<allprops>
<propfile>foproperties.xml</propfile>
-<propfile>extproperties.xml</propfile>
</allprops>
diff --git a/src/codegen/foproperties.xml b/src/codegen/foproperties.xml
index 335441e6c..0c8fd413a 100644
--- a/src/codegen/foproperties.xml
+++ b/src/codegen/foproperties.xml
@@ -1288,13 +1288,20 @@
<property>
<name>color-profile-name</name>
<inherited>false</inherited>
- <datatype>ToBeImplemented</datatype>
+ <datatype>String</datatype>
<default></default>
</property>
<property>
<name>rendering-intent</name>
<inherited>false</inherited>
- <datatype>ToBeImplemented</datatype>
+ <datatype>Enum</datatype>
+ <enumeration>
+ <value const="AUTO">auto</value>
+ <value const="PERCEPTUAL">perceptual</value>
+ <value const="RELATIVE_COLOMETRIC">relative-colorimetric</value>
+ <value const="SATURATION">saturation</value>
+ <value const="ABSOLUTE_COLORMETRIC">absolute-colorimetric</value>
+ </enumeration>
<default>auto</default>
</property>
diff --git a/src/codegen/properties.xsl b/src/codegen/properties.xsl
index f00be7833..83ed9db75 100644
--- a/src/codegen/properties.xsl
+++ b/src/codegen/properties.xsl
@@ -211,7 +211,6 @@ import java.util.Hashtable;
import org.apache.fop.datatypes.*;
import org.apache.fop.fo.*;
import org.apache.fop.apps.FOPException;
-import org.apache.fop.messaging.MessageHandler;
public class <xsl:value-of select="$classname"/> extends <xsl:value-of select="$superclass"/><xsl:value-of select="$enumconst"/> {