aboutsummaryrefslogtreecommitdiffstats
path: root/conf
diff options
context:
space:
mode:
authorfotis <fotis@unknown>2000-12-12 19:18:50 +0000
committerfotis <fotis@unknown>2000-12-12 19:18:50 +0000
commitc6eaec4c8bb1a18dc909bc65c35ede58dd0fcfee (patch)
tree79443dabcc441bf86b8edb6e560773652b055538 /conf
parent5668bdab96cbfac4b3c6148a48d81986322280f2 (diff)
downloadxmlgraphics-fop-c6eaec4c8bb1a18dc909bc65c35ede58dd0fcfee.tar.gz
xmlgraphics-fop-c6eaec4c8bb1a18dc909bc65c35ede58dd0fcfee.zip
adds hyphenation (Carlos Villegas, Fotis Jannidis) and simple configuration support (F.J.)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193861 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'conf')
-rw-r--r--conf/config.dtd6
-rw-r--r--conf/config.xml11
-rw-r--r--conf/userconfig.xml43
3 files changed, 60 insertions, 0 deletions
diff --git a/conf/config.dtd b/conf/config.dtd
new file mode 100644
index 000000000..d51a1a96c
--- /dev/null
+++ b/conf/config.dtd
@@ -0,0 +1,6 @@
+<!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
new file mode 100644
index 000000000..076b7ca7d
--- /dev/null
+++ b/conf/config.xml
@@ -0,0 +1,11 @@
+<!--<!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 0.16.0 dev</value>
+ </entry>
+
+</configuration> \ No newline at end of file
diff --git a/conf/userconfig.xml b/conf/userconfig.xml
new file mode 100644
index 000000000..d35d13688
--- /dev/null
+++ b/conf/userconfig.xml
@@ -0,0 +1,43 @@
+<!--<!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.CommandLine -cuserconfig.xml fo-file 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>
+-->
+
+</configuration> \ No newline at end of file