aboutsummaryrefslogtreecommitdiffstats
path: root/src/documentation/content/xdocs/trunk/configuration.xml
diff options
context:
space:
mode:
authorManuel Mall <manuel@apache.org>2006-01-07 13:15:53 +0000
committerManuel Mall <manuel@apache.org>2006-01-07 13:15:53 +0000
commit8faab42c21e565d859e8caa0c56df1c2a8748dea (patch)
tree998c86d83823706d64f5af8b7cca548f22ec6da8 /src/documentation/content/xdocs/trunk/configuration.xml
parent5c359c10e6131572e46745dfe46c4c556e361ea0 (diff)
downloadxmlgraphics-fop-8faab42c21e565d859e8caa0c56df1c2a8748dea.tar.gz
xmlgraphics-fop-8faab42c21e565d859e8caa0c56df1c2a8748dea.zip
Added support for relative font config URLs (metrics-url and embed-url). These URLs are now resolved through the FOP config URI resolver. A new configuration item font-base has been added which defines the base URL to be used for resolution of the font URLs. If it is not given the normal FOP base URL is used. Unrelated to this feature the patch also contains a new image class (java 1.4 specific) for JPEG images. This is for renderers (e.g. AFP) which require access to the decoded JPEG.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@366718 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/documentation/content/xdocs/trunk/configuration.xml')
-rw-r--r--src/documentation/content/xdocs/trunk/configuration.xml12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/documentation/content/xdocs/trunk/configuration.xml b/src/documentation/content/xdocs/trunk/configuration.xml
index 0b845bcf9..258b5ac04 100644
--- a/src/documentation/content/xdocs/trunk/configuration.xml
+++ b/src/documentation/content/xdocs/trunk/configuration.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" standalone="no"?>
<!--
- Copyright 1999-2005 The Apache Software Foundation
+ Copyright 1999-2006 The Apache Software Foundation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
@@ -71,6 +71,13 @@
<td>Specifies the base URL based on which relative URL will be resolved.</td>
</tr>
<tr>
+ <td>font-base</td>
+ <td>URL</td>
+ <td>Specifies the base URL based on which relative font URLs will be resolved.
+ If not specified defaults to the base URL above.
+ </td>
+ </tr>
+ <tr>
<td>source-resolution</td>
<td>Integer, dpi</td>
<td>
@@ -132,6 +139,9 @@
<!-- Base URL for resolving relative URLs -->
<base>./</base>
+ <!-- Font Base URL for resolving relative font URLs -->
+ <font-base>./</font-base>
+
<!-- Source resolution in dpi (dots/pixels per inch) for determining the size of pixels in SVG and bitmap images, default: 72dpi -->
<source-resolution>72</source-resolution>
<!-- Target resolution in dpi (dots/pixels per inch) for specifying the target resolution for generated bitmaps, default: 72dpi -->