jefft 2004/04/08 13:06:13
Modified: targets/fop embedding.html embedding.pdf fo.html fo.pdf
servlets.html servlets.pdf team.html team.pdf
targets/fop/design/alt.design FOPropertySets.html
FoXMLEvent.html SyncedFoXmlEventsBuffer.html
XMLNamespaces.html codedisplay.js
targets/fop/design/alt.design/properties
AbstractPropertyValue.html AutoRestore.html
BorderCommonStyle.html BorderCommonWidth.html
BorderLeftStyle.html BorderLeftWidth.html
Character.html Direction.html FOAttributes.html
PropNames.html Property.html PropertyConsts.html
PropertyParser.html PropertySets.html
PropertyTokenizer.html PropertyValue.html
PropertyValueList.html RenderingIntent.html
ShorthandPropSets.html codedisplay.js
targets/fop/dev/fo embedding.fo
targets/fop/dev/svg images.svg link.svg paints.svg text.svg
transparency.svg
targets/fop/fo align.fo align2.fo embed.fo fonts.fo size.fo
targets/fop/skin breadcrumbs.js
Log:
Automatic publish at Thu Apr 8 22:32:26 CEST 2004 from
http://forrestbot.cocoondev.org.
Revision Changes Path
1.48 +41 -18 xml-site/targets/fop/embedding.html
Index: embedding.html
===================================================================
RCS file: /home/cvs/xml-site/targets/fop/embedding.html,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- embedding.html 23 Mar 2004 00:04:35 -0000 1.47
+++ embedding.html 8 Apr 2004 20:06:11 -0000 1.48
@@ -389,6 +389,12 @@
<a href="#ExampleObj2PDF">ExampleObj2PDF.java</a>
</li>
<li>
+<a href="#ExampleDOM2PDF">ExampleDOM2PDF.java</a>
+</li>
+<li>
+<a href="#ExampleSVG2PDF">ExampleSVG2PDF.java (PDF Transcoder example)</a>
+</li>
+<li>
<a href="#example-notes">Final notes</a>
</li>
</ul>
@@ -442,7 +448,7 @@
You also need to set up logging. Global logging for all FOP
processes is managed by MessageHandler. Per-instance logging
is handled by Driver. You want to set both using an implementation
- of org.apache.avalon.framework.logger.Logger. See
+ of org.apache.commons.logging.Log. See
<a target="_top" href="#logging">below</a> for more information.
</p>
<p>
@@ -450,13 +456,13 @@
instantiating the Driver object. See here:
</p>
<pre class="code">
-import org.apache.avalon.framework.logger.Logger;
-import org.apache.avalon.framework.logger.ConsoleLogger;
+import org.apache.commons.logging.Log;
+import org.apache.commons.logging.impl.SimpleLog;
/*..*/
Driver driver = new Driver();
-Logger logger = new ConsoleLogger(ConsoleLogger.LEVEL_INFO);
+Log logger = new SimpleLog(SimpleLog.LOG_LEVEL_INFO);
MessageHandler.setScreenLogger(logger);
driver.setLogger(logger);</pre>
</div>
@@ -544,7 +550,7 @@
for more information.
</p>
<p>
- Per default FOP uses the ConsoleLogger which logs to System.out. If
you want to do logging using a
+ Per default FOP uses the SimpleLog which logs to System.out. If you
want to do logging using a
logging framework (such as LogKit, Log4J or JDK 1.4 Logging) you can
set a
different Logger implementation on the Driver object. Here's an
example how you would use LogKit:
</p>
@@ -883,8 +889,8 @@
<p>
<a target="_blank"
href="http://cvs.apache.org/viewcvs.cgi/xml-fop/examples/embedding/java/embedding/ExampleObj2PDF.java?rev=HEAD">
- The last example</a>
-here combines the previous and the third to demonstrate
+ This example</a>
+combines the previous and the third to demonstrate
how you can transform a Java object to a PDF directly in one smooth run
by generating SAX events from the Java object that get fed to an XSL
transformation. The result of the transformation is then converted to PDF
@@ -893,27 +899,44 @@
<div align="center">
<img class="figure" alt="Example Java object to PDF (via XML and XSL-FO)"
src="images/EmbeddingExampleObj2PDF.png"></div>
</div>
-<a name="N10264"></a><a name="example-notes"></a>
-<h4>Final notes</h4>
+<a name="N10264"></a><a name="ExampleDOM2PDF"></a>
+<h4>ExampleDOM2PDF.java</h4>
<div style="margin-left: 0 ; border: 2px">
<p>
-These examples should give you an idea of what's possible. It should be easy
-to adjust these examples to your needs. For examples, you can use a DOMSource
-instead of a StreamSource to feed a DOM tree as input for an XSL
-transformation.
+
+<a target="_blank"
href="http://cvs.apache.org/viewcvs.cgi/xml-fop/examples/embedding/java/embedding/ExampleDOM2PDF.java?rev=HEAD">
+ This example</a>
+has FOP use a DOMSource instead of a StreamSource in order to
+use a DOM tree as input for an XSL transformation.
</p>
+</div>
+<a name="N10272"></a><a name="ExampleSVG2PDF"></a>
+<h4>ExampleSVG2PDF.java (PDF Transcoder example)</h4>
+<div style="margin-left: 0 ; border: 2px">
<p>
-If you think you have a decent example that should be here, contact us via
-one of the mailing lists and we'll see to it that it gets added. Also, if
-you can't find the solution to your particular problem drop us a message on
-the fop-user mailing list.
+
+<a target="_blank"
href="http://cvs.apache.org/viewcvs.cgi/xml-fop/examples/embedding/java/embedding/ExampleSVG2PDF.java?rev=HEAD">
+ This example</a>
+shows use of the PDF Transcoder, a sub-application within FOP.
+It is used to generate a PDF document from an SVG file.
+ </p>
+</div>
+<a name="N10280"></a><a name="example-notes"></a>
+<h4>Final notes</h4>
+<div style="margin-left: 0 ; border: 2px">
+<p>
+These examples should give you an idea of what's possible. It should be easy
+to adjust these examples to your needs. Also, if you have other examples
that you
+think should be added here, please let us know via either the FOP-USER or
FOP-DEV
+mailing lists. Finally, for more help please send your questions to the
FOP-USER
+mailing list.
</p>
</div>
</div>
<div class="attribution">
<span class="version">
- version 1.18</span>
+ version 1.20</span>
</div>
</div>
</td><td width="10"><img width="10" height="1" alt=""
src="skin/images/spacer.gif" class="spacer"></td>
1.16 +359 -278 xml-site/targets/fop/embedding.pdf
<<Binary file>>
1.15 +2 -2 xml-site/targets/fop/fo.html
Index: fo.html
===================================================================
RCS file: /home/cvs/xml-site/targets/fop/fo.html,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- fo.html 23 Mar 2004 00:04:35 -0000 1.14
+++ fo.html 8 Apr 2004 20:06:12 -0000 1.15
@@ -855,7 +855,7 @@
<a href="http://www.renderx.com">RenderX</a> has provided an <a
href="http://www.renderx.com/Tests/validator/fo.dtd.html">Unofficial DTD for FO
Documents</a>, which may be helpful in validating general FO issues.
</p>
<p>
- FOP also maintains an <a
href="http://cvs.apache.org/viewcvs.cgi/*checkout*/xml-fop/docs/foschema/fop.xsd?rev=HEAD&content-type=text/plain">Unofficial
FOP Schema</a> in the FOP CVS Repository.
+ FOP also maintains an <a
href="http://cvs.apache.org/viewcvs.cgi/*checkout*/xml-fop/src/foschema/fop.xsd?rev=HEAD&content-type=text/plain">Unofficial
FOP Schema</a> in the FOP CVS Repository.
This document can be used either to validate against the FO standard, or
against the actual FOP implementation.
See the notes near the beginning of the document for instructions on how to
use it.
</p>
@@ -888,7 +888,7 @@
<div class="attribution">
<span class="version">
- version 1.11</span>
+ version 1.12</span>
</div>
</div>
</td><td width="10"><img width="10" height="1" alt=""
src="skin/images/spacer.gif" class="spacer"></td>
1.10 +62 -62 xml-site/targets/fop/fo.pdf
<<Binary file>>
1.8 +2 -2 xml-site/targets/fop/servlets.html
Index: servlets.html
===================================================================
RCS file: /home/cvs/xml-site/targets/fop/servlets.html,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- servlets.html 23 Mar 2004 00:04:36 -0000 1.7
+++ servlets.html 8 Apr 2004 20:06:12 -0000 1.8
@@ -444,7 +444,7 @@
protected TransformerFactory transformerFactory;
public void init() throws ServletException {
- this.log = new ConsoleLogger(ConsoleLogger.LEVEL_WARN);
+ this.log = new SimpleLog(SimpleLog.LOG_LEVEL_WARN);
this.transformerFactory = TransformerFactory.newInstance();
}
@@ -638,7 +638,7 @@
<div class="attribution">
<span class="version">
- version 1.6</span>
+ version 1.7</span>
</div>
</div>
</td><td width="10"><img width="10" height="1" alt=""
src="skin/images/spacer.gif" class="spacer"></td>
1.6 +59 -59 xml-site/targets/fop/servlets.pdf
<<Binary file>>
1.14 +10 -5 xml-site/targets/fop/team.html
Index: team.html
===================================================================
RCS file: /home/cvs/xml-site/targets/fop/team.html,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- team.html 23 Mar 2004 00:04:36 -0000 1.13
+++ team.html 8 Apr 2004 20:06:12 -0000 1.14
@@ -352,7 +352,7 @@
is a Java/VB Programmer from England.</li>
<li>
-<a href="mailto:[EMAIL PROTECTED]">Andreas Delmelle</a> (AD)</li>
+<a href="mailto:[EMAIL PROTECTED]">Andreas Delmelle</a> (AD)</li>
<li>
<a name="cg"></a><a href="mailto:[EMAIL PROTECTED]">Christian Geisert</a>
(CG)</li>
@@ -410,18 +410,23 @@
is a TeX/LaTeX and XML expert with Elsevier at its
Amsterdam office. See his <a target="_blank"
href="http://www.leverkruid.nl">home
page</a> for some of his private projects.</li>
+<!-- Luca prefers the mail address with "AT", to stop spam, etc. -->
+
+<li>
+<a href="mailto:lfurini AT cs.unibo.it">Luca Furini</a>
+ is a student of Computer Studies at the University of Bologna
(Italy)</li>
</ul>
</div>
-<a name="N1008A"></a><a name="founder"></a>
+<a name="N10092"></a><a name="founder"></a>
<h3>Founder</h3>
<div style="margin-left: 0 ; border: 2px">
<p>FOP was originally created and donated to the Apache Software Foundation
by <a href="mailto:[EMAIL PROTECTED]">James Tauber</a>.
Information about him can be found at <a target="_blank"
href="http://www.jtauber.com">his website</a>.</p>
</div>
-<a name="N1009C"></a><a name="commit-inactive"></a>
+<a name="N100A4"></a><a name="commit-inactive"></a>
<h3>Inactive Committers</h3>
<div style="margin-left: 0 ; border: 2px">
<ul>
@@ -481,7 +486,7 @@
</ul>
</div>
-<a name="N100F4"></a><a name="expertise"></a>
+<a name="N100FC"></a><a name="expertise"></a>
<h3>Areas of Expertise</h3>
<div style="margin-left: 0 ; border: 2px">
<table class="ForrestTable" cellspacing="1" cellpadding="4">
@@ -673,7 +678,7 @@
<div class="attribution">
<span class="version">
- version 1.28</span>
+ version 1.30</span>
</div>
</div>
</td><td width="10"><img width="10" height="1" alt=""
src="skin/images/spacer.gif" class="spacer"></td>
1.13 +155 -142 xml-site/targets/fop/team.pdf
<<Binary file>>
1.48 +0 -0
xml-site/targets/fop/design/alt.design/FOPropertySets.html
Index: FOPropertySets.html
===================================================================
RCS file:
/home/cvs/xml-site/targets/fop/design/alt.design/FOPropertySets.html,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
1.39 +0 -0 xml-site/targets/fop/design/alt.design/FoXMLEvent.html
Index: FoXMLEvent.html
===================================================================
RCS file: /home/cvs/xml-site/targets/fop/design/alt.design/FoXMLEvent.html,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
1.39 +0 -0
xml-site/targets/fop/design/alt.design/SyncedFoXmlEventsBuffer.html
Index: SyncedFoXmlEventsBuffer.html
===================================================================
RCS file:
/home/cvs/xml-site/targets/fop/design/alt.design/SyncedFoXmlEventsBuffer.html,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
1.39 +0 -0 xml-site/targets/fop/design/alt.design/XMLNamespaces.html
Index: XMLNamespaces.html
===================================================================
RCS file:
/home/cvs/xml-site/targets/fop/design/alt.design/XMLNamespaces.html,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
1.38 +0 -0 xml-site/targets/fop/design/alt.design/codedisplay.js
Index: codedisplay.js
===================================================================
RCS file: /home/cvs/xml-site/targets/fop/design/alt.design/codedisplay.js,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
1.48 +0 -0
xml-site/targets/fop/design/alt.design/properties/AbstractPropertyValue.html
Index: AbstractPropertyValue.html
===================================================================
RCS file:
/home/cvs/xml-site/targets/fop/design/alt.design/properties/AbstractPropertyValue.html,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
1.3 +0 -0
xml-site/targets/fop/design/alt.design/properties/AutoRestore.html
Index: AutoRestore.html
===================================================================
RCS file:
/home/cvs/xml-site/targets/fop/design/alt.design/properties/AutoRestore.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
1.3 +0 -0
xml-site/targets/fop/design/alt.design/properties/BorderCommonStyle.html
Index: BorderCommonStyle.html
===================================================================
RCS file:
/home/cvs/xml-site/targets/fop/design/alt.design/properties/BorderCommonStyle.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
1.3 +0 -0
xml-site/targets/fop/design/alt.design/properties/BorderCommonWidth.html
Index: BorderCommonWidth.html
===================================================================
RCS file:
/home/cvs/xml-site/targets/fop/design/alt.design/properties/BorderCommonWidth.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
1.3 +0 -0
xml-site/targets/fop/design/alt.design/properties/BorderLeftStyle.html
Index: BorderLeftStyle.html
===================================================================
RCS file:
/home/cvs/xml-site/targets/fop/design/alt.design/properties/BorderLeftStyle.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
1.3 +0 -0
xml-site/targets/fop/design/alt.design/properties/BorderLeftWidth.html
Index: BorderLeftWidth.html
===================================================================
RCS file:
/home/cvs/xml-site/targets/fop/design/alt.design/properties/BorderLeftWidth.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
1.3 +0 -0
xml-site/targets/fop/design/alt.design/properties/Character.html
Index: Character.html
===================================================================
RCS file:
/home/cvs/xml-site/targets/fop/design/alt.design/properties/Character.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
1.3 +0 -0
xml-site/targets/fop/design/alt.design/properties/Direction.html
Index: Direction.html
===================================================================
RCS file:
/home/cvs/xml-site/targets/fop/design/alt.design/properties/Direction.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
1.48 +0 -0
xml-site/targets/fop/design/alt.design/properties/FOAttributes.html
Index: FOAttributes.html
===================================================================
RCS file:
/home/cvs/xml-site/targets/fop/design/alt.design/properties/FOAttributes.html,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
1.48 +0 -0
xml-site/targets/fop/design/alt.design/properties/PropNames.html
Index: PropNames.html
===================================================================
RCS file:
/home/cvs/xml-site/targets/fop/design/alt.design/properties/PropNames.html,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
1.48 +0 -0
xml-site/targets/fop/design/alt.design/properties/Property.html
Index: Property.html
===================================================================
RCS file:
/home/cvs/xml-site/targets/fop/design/alt.design/properties/Property.html,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
1.48 +0 -0
xml-site/targets/fop/design/alt.design/properties/PropertyConsts.html
Index: PropertyConsts.html
===================================================================
RCS file:
/home/cvs/xml-site/targets/fop/design/alt.design/properties/PropertyConsts.html,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
1.48 +0 -0
xml-site/targets/fop/design/alt.design/properties/PropertyParser.html
Index: PropertyParser.html
===================================================================
RCS file:
/home/cvs/xml-site/targets/fop/design/alt.design/properties/PropertyParser.html,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
1.48 +0 -0
xml-site/targets/fop/design/alt.design/properties/PropertySets.html
Index: PropertySets.html
===================================================================
RCS file:
/home/cvs/xml-site/targets/fop/design/alt.design/properties/PropertySets.html,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
1.48 +0 -0
xml-site/targets/fop/design/alt.design/properties/PropertyTokenizer.html
Index: PropertyTokenizer.html
===================================================================
RCS file:
/home/cvs/xml-site/targets/fop/design/alt.design/properties/PropertyTokenizer.html,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
1.48 +0 -0
xml-site/targets/fop/design/alt.design/properties/PropertyValue.html
Index: PropertyValue.html
===================================================================
RCS file:
/home/cvs/xml-site/targets/fop/design/alt.design/properties/PropertyValue.html,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
1.48 +0 -0
xml-site/targets/fop/design/alt.design/properties/PropertyValueList.html
Index: PropertyValueList.html
===================================================================
RCS file:
/home/cvs/xml-site/targets/fop/design/alt.design/properties/PropertyValueList.html,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
1.3 +0 -0
xml-site/targets/fop/design/alt.design/properties/RenderingIntent.html
Index: RenderingIntent.html
===================================================================
RCS file:
/home/cvs/xml-site/targets/fop/design/alt.design/properties/RenderingIntent.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
1.48 +0 -0
xml-site/targets/fop/design/alt.design/properties/ShorthandPropSets.html
Index: ShorthandPropSets.html
===================================================================
RCS file:
/home/cvs/xml-site/targets/fop/design/alt.design/properties/ShorthandPropSets.html,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
1.38 +0 -0
xml-site/targets/fop/design/alt.design/properties/codedisplay.js
Index: codedisplay.js
===================================================================
RCS file:
/home/cvs/xml-site/targets/fop/design/alt.design/properties/codedisplay.js,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
1.3 +0 -0 xml-site/targets/fop/dev/fo/embedding.fo
Index: embedding.fo
===================================================================
RCS file: /home/cvs/xml-site/targets/fop/dev/fo/embedding.fo,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
1.3 +0 -0 xml-site/targets/fop/dev/svg/images.svg
Index: images.svg
===================================================================
RCS file: /home/cvs/xml-site/targets/fop/dev/svg/images.svg,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
1.3 +0 -0 xml-site/targets/fop/dev/svg/link.svg
Index: link.svg
===================================================================
RCS file: /home/cvs/xml-site/targets/fop/dev/svg/link.svg,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
1.3 +0 -0 xml-site/targets/fop/dev/svg/paints.svg
Index: paints.svg
===================================================================
RCS file: /home/cvs/xml-site/targets/fop/dev/svg/paints.svg,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
1.4 +0 -0 xml-site/targets/fop/dev/svg/text.svg
Index: text.svg
===================================================================
RCS file: /home/cvs/xml-site/targets/fop/dev/svg/text.svg,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
1.3 +0 -0 xml-site/targets/fop/dev/svg/transparency.svg
Index: transparency.svg
===================================================================
RCS file: /home/cvs/xml-site/targets/fop/dev/svg/transparency.svg,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
1.3 +0 -0 xml-site/targets/fop/fo/align.fo
Index: align.fo
===================================================================
RCS file: /home/cvs/xml-site/targets/fop/fo/align.fo,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
1.3 +0 -0 xml-site/targets/fop/fo/align2.fo
Index: align2.fo
===================================================================
RCS file: /home/cvs/xml-site/targets/fop/fo/align2.fo,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
1.3 +0 -0 xml-site/targets/fop/fo/embed.fo
Index: embed.fo
===================================================================
RCS file: /home/cvs/xml-site/targets/fop/fo/embed.fo,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
1.3 +0 -0 xml-site/targets/fop/fo/fonts.fo
Index: fonts.fo
===================================================================
RCS file: /home/cvs/xml-site/targets/fop/fo/fonts.fo,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
1.3 +0 -0 xml-site/targets/fop/fo/size.fo
Index: size.fo
===================================================================
RCS file: /home/cvs/xml-site/targets/fop/fo/size.fo,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
1.9 +53 -22 xml-site/targets/fop/skin/breadcrumbs.js
Index: breadcrumbs.js
===================================================================
RCS file: /home/cvs/xml-site/targets/fop/skin/breadcrumbs.js,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- breadcrumbs.js 7 Apr 2004 04:06:38 -0000 1.8
+++ breadcrumbs.js 8 Apr 2004 20:06:13 -0000 1.9
@@ -1,20 +1,52 @@
/*
- * Copyright 1999-2004 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.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-/* $Id$ */
+ ============================================================================
+ The Apache Software License, Version 1.1
+ ============================================================================
+
+ Copyright (C) @skinconfig.year@ The Apache Software Foundation. All rights
reserved.
+
+ Redistribution and use in source and binary forms, with or without modifica-
+ tion, are permitted provided that the following conditions are met:
+
+ 1. Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+
+ 2. Redistributions in binary form must reproduce the above copyright notice,
+ this list of conditions and the following disclaimer in the documentation
+ and/or other materials provided with the distribution.
+
+ 3. The end-user documentation included with the redistribution, if any, must
+ include the following acknowledgment: "This product includes software
+ developed by the Apache Software Foundation (http://www.apache.org/)."
+ Alternately, this acknowledgment may appear in the software itself, if
+ and wherever such third-party acknowledgments normally appear.
+
+ 4. The names "Apache Forrest" and "Apache Software Foundation"
+ must not be used to endorse or promote products derived from this
software
+ without prior written permission. For written permission, please contact
+ [EMAIL PROTECTED]
+
+ 5. Products derived from this software may not be called "Apache", nor may
+ "Apache" appear in their name, without prior written permission of the
+ Apache Software Foundation.
+
+ THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
+ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+ APACHE SOFTWARE FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
+ INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLU-
+ DING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
+ OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+ This software consists of voluntary contributions made by many individuals
+ on behalf of the Apache Software Foundation. For more information on the
+ Apache Software Foundation, please see <http://www.apache.org/>.
+
+*/
/**
* This script, when included in a html file, builds a neat breadcrumb trail
@@ -51,14 +83,14 @@
* you use this script (you can leave it as an empty array if you wish)
*/
var PREPREND_CRUMBS = new Array();
- if(!("apache"=="")){
- PREPREND_CRUMBS.push( new Array( "apache", "http://www.apache.org/" ) );
+ if(!("@skinconfig.trail.link1.name@"=="")){
+ PREPREND_CRUMBS.push( new Array( "@skinconfig.trail.link1.name@",
"@skinconfig.trail.link1.href@" ) );
}
- if(!("xml.apache"=="")){
- PREPREND_CRUMBS.push( new Array( "xml.apache", "http://xml.apache.org/"
) );
+ if(!("@skinconfig.trail.link2.name@"=="")){
+ PREPREND_CRUMBS.push( new Array( "@skinconfig.trail.link2.name@",
"@skinconfig.trail.link2.href@" ) );
}
- if(!(""=="")){
- PREPREND_CRUMBS.push( new Array( "", "" ) );
+ if(!("@skinconfig.trail.link3.name@"=="")){
+ PREPREND_CRUMBS.push( new Array( "@skinconfig.trail.link3.name@",
"@skinconfig.trail.link3.href@" ) );
}
/**
@@ -232,5 +264,4 @@
{
document.write( getCrumbTrail( getBreadcrumbs( getDirectoriesInURL() )
) );
}
-
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]