aboutsummaryrefslogtreecommitdiffstats
path: root/conf
diff options
context:
space:
mode:
authorKeiron Liddle <keiron@apache.org>2002-09-04 08:36:37 +0000
committerKeiron Liddle <keiron@apache.org>2002-09-04 08:36:37 +0000
commitc0a432e3aea3fcfcafd06642d2e419fb9de90cc3 (patch)
tree1f59937b239ae6adc9a8fbc4efbdb717a05f4428 /conf
parent15b175f37b0f39e9a1d16fb35ed386a0959e3103 (diff)
downloadxmlgraphics-fop-c0a432e3aea3fcfcafd06642d2e419fb9de90cc3.tar.gz
xmlgraphics-fop-c0a432e3aea3fcfcafd06642d2e419fb9de90cc3.zip
removed old configuration
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@195149 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'conf')
-rw-r--r--conf/config.dtd6
-rw-r--r--conf/config.xml55
-rw-r--r--conf/userconfig.xml75
3 files changed, 0 insertions, 136 deletions
diff --git a/conf/config.dtd b/conf/config.dtd
deleted file mode 100644
index d51a1a96c..000000000
--- a/conf/config.dtd
+++ /dev/null
@@ -1,6 +0,0 @@
-<!ELEMENT configuration (entry+)>
-<!ELEMENT entry (key,(value | list))>
-<!ELEMENT key (#PCDATA)>
-<!ELEMENT value (#PCDATA)>
-<!ELEMENT list (value+ | subentry+)>
-<!ELEMENT subentry (key,value+)> \ No newline at end of file
diff --git a/conf/config.xml b/conf/config.xml
deleted file mode 100644
index 6d75a5859..000000000
--- a/conf/config.xml
+++ /dev/null
@@ -1,55 +0,0 @@
-<!--<!DOCTYPE configuration SYSTEM "config.dtd">-->
-<!-- to developers: have a look at the config.dtd to
- see how to structure your config entries -->
-
-<configuration>
- <entry>
- <key>version</key>
- <value>FOP @version@</value>
- </entry>
-
- <!-- default values for commandline options -->
- <!-- suppress all progress information, error message are still displayed -->
- <entry>
- <key>quiet</key>
- <value>false</value>
- </entry>
-<!-- sets debug mode on/off; debug mode hasm more progress
- information and a stacktrace in case of a fatal exception -->
- <entry>
- <key>debugMode</key>
- <value>false</value>
- </entry>
- <!-- displays all configuration settings and then exits -->
- <entry>
- <key>dumpConfiguration</key>
- <value>false</value>
- </entry>
- <!-- -->
- <entry>
- <key>debugMode</key>
- <value>false</value>
- </entry>
-
-
- <!-- stream-filter-list provides the default filters that are applied to all
- stream objects within the PDF file. These are normally used for
- compression -->
- <entry role="pdf">
- <key>stream-filter-list</key>
- <list>
- <!-- provides compression using zlib flate (default is on)-->
- <value>flate</value>
-
- <!-- encodes binary data into printable ascii characters (default off)
- This provides about a 4:5 expansion of data size -->
- <value>ascii-85</value>
-
- <!-- encodes binary data with hex representation (default off)
- This filter is not recommended as it doubles the data size -->
- <!-- <value>ascii-hex</value> -->
- </list>
- </entry>
- <fonts>
- </fonts>
-</configuration>
diff --git a/conf/userconfig.xml b/conf/userconfig.xml
deleted file mode 100644
index 0ccc6e01a..000000000
--- a/conf/userconfig.xml
+++ /dev/null
@@ -1,75 +0,0 @@
-<!--<!DOCTYPE configuration SYSTEM "config.dtd">-->
-<!--
- this file contains templates which allow an user easy
- configuration of Fop. Actually normally you don't need this configuration
- file, but if you need to change configuration, you should
- always use this file and *not* config.xml.
- Usage: java org.apache.fop.apps.Fop -c userconfig.xml -fo fo-file -pdf pdf-file
--->
-
-
-<configuration>
-
-<!-- NOT IMPLEMENTED
-basedir: normally the base directory is the directory where the fo file is
- located. if you want to specify your own, uncomment this entry
--->
-<!--
- <entry>
- <key>baseDir</key>
- <value></value>
- </entry>
--->
-
-<!--
-************************************************************************
- HYPHENATION
-************************************************************************
--->
-
-<!--
- hyphenation directory
- if you want to specify your own directory with hyphenation pattern
- then uncomment the next entry and add the directory name
--->
-
-<!--
- <entry>
- <key>hyphenation-dir</key>
- <value>/java/xml-fop/hyph</value>
- </entry>
--->
-
-<!--
-************************************************************************
- Add fonts here
-************************************************************************
--->
-
-<fonts>
- <!-- example -->
- <!--
- <font metrics-file="arial.xml" kerning="yes" embed-file="arial.ttf">
- <font-triplet name="Arial" style="normal" weight="normal"/>
- <font-triplet name="ArialMT" style="normal" weight="normal"/>
- </font>
- <font metrics-file="arialb.xml" kerning="yes" embed-file="arialb.ttf">
- <font-triplet name="Arial" style="normal" weight="bold"/>
- <font-triplet name="ArialMT" style="normal" weight="bold"/>
- </font>
- <font metrics-file="ariali.xml" kerning="yes" embed-file="ariali.ttf">
- <font-triplet name="Arial" style="italic" weight="normal"/>
- <font-triplet name="ArialMT" style="italic" weight="normal"/>
- </font>
- <font metrics-file="arialbi.xml" kerning="yes" embed-file="arialbi.ttf">
- <font-triplet name="Arial" style="italic" weight="bold"/>
- <font-triplet name="ArialMT" style="italic" weight="bold"/>
- </font>
- -->
-</fonts>
-
-
-</configuration>
-
-
-