keiron 01/11/21 23:15:38
Modified: . build.xml
src/codegen foproperties.xml allprops.xml properties.xsl
Log:
updates for ext, and message handler changes
Revision Changes Path
1.47 +3 -14 xml-fop/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/xml-fop/build.xml,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -r1.46 -r1.47
--- build.xml 2001/11/01 12:04:26 1.46
+++ build.xml 2001/11/22 07:15:38 1.47
@@ -183,9 +183,9 @@
<echo message="------------------- ${Name} ${version} [${year}]
----------------"/>
<property name="build.compiler" value="classic"/>
- <property name="debug" value="off"/>
+ <property name="debug" value="on"/>
<property name="optimize" value="on"/>
- <property name="deprecation" value="off"/>
+ <property name="deprecation" value="on"/>
<property name="src.dir" value="./src"/>
<property name="src.codegen" value="./src/codegen"/>
@@ -233,7 +233,6 @@
<property name="src.propmaker.xsl" value="${src.codegen}/propmaker.xsl"/>
<property name="foproperties.xml" value="${build.codegen}/foproperties.xml"/>
<property name="colorkw.xml" value="${build.codegen}/colorkw.xml"/>
- <property name="extproperties.xml" value="${build.codegen}/extproperties.xml"/>
<property name="allprops.xml" value="${build.codegen}/allprops.xml"/>
<property name="properties.xsl" value="${build.codegen}/properties.xsl"/>
@@ -408,7 +407,7 @@
<!-- generate the java files from xml resources -->
<echo message="Generating the java files from xml resources"/>
<xslt infile="${allprops.xml}" xsltfile="${genconst.xsl}"
- dependent="${foproperties.xml},${extproperties.xml},${colorkw.xml}"
+ dependent="${foproperties.xml},${colorkw.xml}"
outfile="${build.src}/${replacestring}/fo/properties/Constants.java"
smart="yes"/>
<xslt infile="${foproperties.xml}" xsltfile="${properties.xsl}"
@@ -420,16 +419,6 @@
<xslt infile="${foproperties.xml}" xsltfile="${enumgen.xsl}"
dependent="${propinc.xsl}"
outfile="${build.src}/${replacestring}/fo/properties/foenums_${ignore_this}"
smart="yes"/>
-
- <xslt infile="${extproperties.xml}" xsltfile="${properties.xsl}"
- dependent="${propinc.xsl}"
- outfile="${build.src}/${replacestring}/fo/properties/ext_${ignore_this}"
smart="yes"/>
- <xslt infile="${extproperties.xml}" xsltfile="${propmap.xsl}"
- dependent="${propinc.xsl}"
-
outfile="${build.src}/${replacestring}/fo/properties/ExtensionPropertyMapping.java"
smart="yes"/>
- <xslt infile="${extproperties.xml}" xsltfile="${enumgen.xsl}"
- dependent="${propinc.xsl}"
-
outfile="${build.src}/${replacestring}/fo/properties/extenums_${ignore_this}"
smart="yes"/>
<xslt infile="${charlist.xml}" xsltfile="${charlist.xsl}"
outfile="${build.src}/${replacestring}/render/pdf/CodePointMapping.java"
smart="yes"/>
1.28 +9 -2 xml-fop/src/codegen/foproperties.xml
Index: foproperties.xml
===================================================================
RCS file: /home/cvs/xml-fop/src/codegen/foproperties.xml,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- foproperties.xml 2001/11/21 22:15:15 1.27
+++ foproperties.xml 2001/11/22 07:15:38 1.28
@@ -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>
1.3 +0 -1 xml-fop/src/codegen/allprops.xml
Index: allprops.xml
===================================================================
RCS file: /home/cvs/xml-fop/src/codegen/allprops.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- allprops.xml 2001/08/26 14:32:27 1.2
+++ allprops.xml 2001/11/22 07:15:38 1.3
@@ -1,4 +1,3 @@
<allprops>
<propfile>foproperties.xml</propfile>
-<propfile>extproperties.xml</propfile>
</allprops>
1.14 +0 -1 xml-fop/src/codegen/properties.xsl
Index: properties.xsl
===================================================================
RCS file: /home/cvs/xml-fop/src/codegen/properties.xsl,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- properties.xsl 2001/10/14 20:29:12 1.13
+++ properties.xsl 2001/11/22 07:15:38 1.14
@@ -211,7 +211,6 @@
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"/> {
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]