Skip to content
Snippets Groups Projects
Commit 286e5ee3 authored by Tony Mancill's avatar Tony Mancill
Browse files

Imported Upstream version 1.1.6

parent 2da087e2
No related branches found
No related tags found
No related merge requests found
Showing
with 4695 additions and 2390 deletions
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="source"/>
<classpathentry kind="src" path="test"/>
<classpathentry kind="src" path="devresource"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="con" path="org.apache.ivyde.eclipse.cpcontainer.IVYDE_CONTAINER/?ivyXmlPath=ivy.xml&amp;confs=*&amp;ivySettingsPath=file%3A.%2Fivysettings.xml&amp;buildPropertyFiles=build.properties&amp;acceptedTypes=jar&amp;sourceTypes=source&amp;javadocTypes=javadoc&amp;sourceSuffixes=-source%2C-sources%2C-src&amp;javadocSuffixes=-javadoc%2C-javadocs%2C-doc%2C-docs&amp;doRetrieve=false&amp;retrievePattern=lib%2F%5Bconf%5D%2F%5Bartifact%5D.%5Bext%5D&amp;alphaOrder=true"/>
<classpathentry kind="output" path="eclipse-bin"/>
</classpath>
.project 0 → 100644
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>libxml</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
---------------
1. WHAT's NEW
---------------
A list of changes in recent versions:
0.9.9: (16-Oct-2007)
* The build-system now uses the modular build again. By default the
compile operation returns a automatic-monolithic build that
automatically strips all classes that have unresolved dependencies.
* Automatic fixes as reported by IntelliJ-IDEA's inspections
* Updated the copyright header on all java-files
0.9.8: (24-Sep-2007)
* All releases are now built with JDK 1.4. However, we are still compatible
with JDK 1.2.2 and all releases run and compile under that release.
* [BUG] The XmlWriter's static normalize() method was a cause of synchronization
and thread contention issues.
0.9.7: (30-Jul-2007)
* [BUG] AttributeList#getAttribute() did not work.
* Added common namespace URIs to the LibXmlInfo class, as these namespaces are
used in most XML and XHTML processing applications.
* Modified the build system so that the build.xml file is now in the root of the
project directory.
0.9.6: (24-Jun-2007)
* [BUG] CharacterEntities for newline and linefeed characters were wrong.
0.9.5: (27-May-2007)
* Added an HTML-Compatibility mode, so that short empty tags have a space before
close-marker.
0.9.4: (21-May-2007)
* Added support for streaming large Chunks of character-data using a
java.io.Reader. This avoids the creation of temporary strings and reduces
the memory footprint in some cases.
* Added a way to directly parse an XML document without the need to go
through LibLoader's interfaces.
0.9.3: (27-Apr-2007)
* [BUG] AttributeList.removeAttribute(..) did not work at all.
0.9.2: (01-Apr-2007)
* Improved the ability to create XML-Snipplets and to embed the XMLWriter's
output in other content.
0.9.1: (07-Mar-2007)
* LibLoader's new resource-key system required some change.
0.9.0: (25-Jan-2007)
* LibXML is feature complete. Both the parser and writer classes
are doing what they should and adding anything else would add extra
code for no real value.
* The XMLWriterSupport does no longer define the namespaces on a per-document
basis. Namespaces are declared using attributes and are inherited to all
child-elements. Namespaces can be redefined on each element, if needed.
* The parser now follows the Namespace standard and accepts namespace
declarations on all elements.
* Some first source-code documentation has been added.
0.2.1: (22-Dec-2006)
* Improved the parsing of xml files that have a DTD. A handler can
now map the DTD into a default namespace. All elements for that
document type will have the namespace asigned.
0.2.0: (03-Dec-2006)
* Added the XMLWriterSupport and better tag managment.
* Each LibXml parser has now access the LibLoader-ResourceKey that was
used to load the Xml-Document.
0.1.1: (30-Jul-2006)
* More changes to the parser.
0.1.0: (29-Jun-2006)
* Initial release of LibXML
---------------
1. WHAT's NEW
---------------
A list of changes in recent versions:
0.99.0: (30-May-2008)
* [BUG] AbstractReadHandlerFactory must not reset the default handler if the
current configuration does not provide one.
* Switched from JCommon to LibBase. All version information is now contained in
the manifest. The Project-Info implementation reads the version numbers from
the Jar's Manifest or the compiler-output-directory.
* Various cleanups in the API.
* AttributeMap no longer throws a CloneNotSupportedException, like all Collections.
* [BUG] DefaultTagDescription assumed that undefined elements were safe to have
indentions. This created beautiful documents, but sadly the added spaces broke
many of these generated documents.
A empty configuration passed into the configure() method no longer causes
the tag-description to treat all elements as indentable.
* Added better logging to assist the user in case of parsing errors. The current
parse-position is now always logged along with the error.
* Performance:
- AttributeMap is no longer synchronized, as synchronization has to
happen in a larger context most of the time.
- Added streaming writer methods so that attribute values can be normalized
while being sent to the stream instead of having to create temporary strings.
0.9.11: (02-Nov-2007)
* Upgraded to jcommon-1.0.12
0.9.10: (29-Oct-2007)
* Performance Update
* [BUG] XML-writer without encoding produced invalid xml-header.
DefaultTagDescription can now be configured using Java-Calls
AttributeList.setAttribute() with null-value is now the same as removeAttribute
0.9.9: (16-Oct-2007)
* The build-system now uses the modular build again. By default the
compile operation returns a automatic-monolithic build that
automatically strips all classes that have unresolved dependencies.
* Automatic fixes as reported by IntelliJ-IDEA's inspections
* Updated the copyright header on all java-files
0.9.8: (24-Sep-2007)
* All releases are now built with JDK 1.4. However, we are still compatible
with JDK 1.2.2 and all releases run and compile under that release.
* [BUG] The XmlWriter's static normalize() method was a cause of synchronization
and thread contention issues.
0.9.7: (30-Jul-2007)
* [BUG] AttributeList#getAttribute() did not work.
* Added common namespace URIs to the LibXmlInfo class, as these namespaces are
used in most XML and XHTML processing applications.
* Modified the build system so that the build.xml file is now in the root of the
project directory.
0.9.6: (24-Jun-2007)
* [BUG] CharacterEntities for newline and linefeed characters were wrong.
0.9.5: (27-May-2007)
* Added an HTML-Compatibility mode, so that short empty tags have a space before
close-marker.
0.9.4: (21-May-2007)
* Added support for streaming large Chunks of character-data using a
java.io.Reader. This avoids the creation of temporary strings and reduces
the memory footprint in some cases.
* Added a way to directly parse an XML document without the need to go
through LibLoader's interfaces.
0.9.3: (27-Apr-2007)
* [BUG] AttributeList.removeAttribute(..) did not work at all.
0.9.2: (01-Apr-2007)
* Improved the ability to create XML-Snipplets and to embed the XMLWriter's
output in other content.
0.9.1: (07-Mar-2007)
* LibLoader's new resource-key system required some change.
0.9.0: (25-Jan-2007)
* LibXML is feature complete. Both the parser and writer classes
are doing what they should and adding anything else would add extra
code for no real value.
* The XMLWriterSupport does no longer define the namespaces on a per-document
basis. Namespaces are declared using attributes and are inherited to all
child-elements. Namespaces can be redefined on each element, if needed.
* The parser now follows the Namespace standard and accepts namespace
declarations on all elements.
* Some first source-code documentation has been added.
0.2.1: (22-Dec-2006)
* Improved the parsing of xml files that have a DTD. A handler can
now map the DTD into a default namespace. All elements for that
document type will have the namespace asigned.
0.2.0: (03-Dec-2006)
* Added the XMLWriterSupport and better tag managment.
* Each LibXml parser has now access the LibLoader-ResourceKey that was
used to load the Xml-Document.
0.1.1: (30-Jul-2006)
* More changes to the parser.
0.1.0: (29-Jun-2006)
* Initial release of LibXML
\ No newline at end of file
************************
* LibXML 0.9.9 *
************************
16 Oct 2007
1. INTRODUCTION
---------------
LibXML is a namespace aware SAX-Parser utility library. It eases the
pain of implementing non-trivial SAX input handlers. The original
code of these classes had been written by Peter Becker for the
JCommon library.
LibXML replaces the JCommon-XML classes, which were not namespace aware.
Due to JCommons frozen API, namespace awareness could not be added to
the original code without creating a mess.
For the latest news and information about libXML, please refer to:
http://reporting.pentaho.org/libxml/
2. SUPPORT
----------
Free support is available via the JFreeReport forum, follow the link
from the LibXml home page. Please note that questions are
answered by volunteers, so there is no guaranteed response time or
level of service.
Please avoid e-mailing the developers directly for support questions.
If you post a message in the forum, then everyone can see the
question, and everyone can see the answer.
3. REPORTING BUGS
-----------------
If you find bugs in LibXml, we'd like to hear about it so that we
can improve future releases of LibXml. Please post a bug report
to the JIRA bug-tracker at Pentaho.org:
http://jira.pentaho.org/
Please be sure to provide as much information as you can. We need to
know the version of LibXml that you are using, the JDK version,
and the steps required to replicate the bug. Include any other
information that you think is relevant.
4. ANT
------
We use an open source build tool called Ant to build LibXml. An
Ant script (tested using Ant 1.6) is included in the distribution:
<libxml-directory>/ant/build.xml
You can find out more about Ant at:
http://ant.apache.org/
Ant is licensed under the terms of the Apache Software License (a
popular open source software license).
5. OTHER FEEDBACK
-----------------
For other feedback and comments, please post a message on the
Pentaho forums. The Forum is available at
http://forums.pentaho.org/
************************
* LibXML 0.99.0 *
************************
30 May 2008
1. INTRODUCTION
---------------
LibXML is a namespace aware SAX-Parser utility library. It eases the
pain of implementing non-trivial SAX input handlers. The original
code of these classes had been written by Peter Becker for the
JCommon library.
LibXML replaces the JCommon-XML classes, which were not namespace aware.
Due to JCommons frozen API, namespace awareness could not be added to
the original code without creating a mess.
For the latest news and information about libXML, please refer to:
http://reporting.pentaho.org/libxml/
2. SUPPORT
----------
Free support is available via the JFreeReport forum, follow the link
from the LibXml home page. Please note that questions are
answered by volunteers, so there is no guaranteed response time or
level of service.
Please avoid e-mailing the developers directly for support questions.
If you post a message in the forum, then everyone can see the
question, and everyone can see the answer.
3. REPORTING BUGS
-----------------
If you find bugs in LibXml, we'd like to hear about it so that we
can improve future releases of LibXml. Please post a bug report
to the JIRA bug-tracker at Pentaho.org:
http://jira.pentaho.org/
Please be sure to provide as much information as you can. We need to
know the version of LibXml that you are using, the JDK version,
and the steps required to replicate the bug. Include any other
information that you think is relevant.
4. ANT
------
We use an open source build tool called Ant to build LibXml. An
Ant script (tested using Ant 1.6) is included in the distribution:
<libxml-directory>/ant/build.xml
You can find out more about Ant at:
http://ant.apache.org/
Ant is licensed under the terms of the Apache Software License (a
popular open source software license).
5. OTHER FEEDBACK
-----------------
For other feedback and comments, please post a message on the
Pentaho forums. The Forum is available at
http://forums.pentaho.org/
This diff is collapsed.
#
# Copyright (c) 2007, Pentaho Corporation. All Rights Reserved.
#
###########################################################
#
# Global settings ...
libxml.name=libxml
libxml.version=0.9.9
#
# This defines the compiler settings. Optimizing would remove
# the debug information, so we dont do that. This may be selfish,
# but these settings guarantee better bug-reports :)
build.debug=true
build.optimize=false
build.deprecation=true
#
# Make sure that JDK 1.2 compatible class files are generated
build.target=1.4
build.source=1.2
# You probably want to override this in your local build setup file
build.retro.target=1.2
build.retro.jdk=/opt/jdk1.2.2
#
# All path settings are relative to the project root directory
# (..)
#
libdir=lib
junit-dir=lib
#
# If you specify a non-empty string, then dont forget the
# trailing / here or your results wont fit your expectations...
#
targetdir=
manifest-lib-prefix=lib/
###########################################################
#
# Used libraries ...
# Used by: core libraries
jcommon-jar-file=jcommon-1.0.10.jar
libloader-jar-file=libloader-0.3.6.jar
#
# GnuJaxp is optional if there is an other JAXP-implementation
# available. JDKs >= 1.4 already ship with a valid parser.
jaxp-jar-file=gnujaxp.jar
##############################################################
#
# Generated files ...
libxml-bundle-file=${libxml.name}-${libxml.version}-bundle.jar
libxml-jar-file=${libxml.name}-${libxml.version}.jar
project.revision=1.1-SNAPSHOT
ivy.artifact.group=pentaho-library
ivy.artifact.id=libxml
impl.title=LibXml
impl.productID=libxml
src.dir=${basedir}/source
dependency.libbase.revision=1.1.6
dependency.libloader.revision=1.1.6
testsrc.dir=${basedir}/test
<!--
~ Copyright (c) 2007, Pentaho Corporation. All Rights Reserved.
-->
<!-- An ANT build file for libfonts. -->
<!-- Written by David Gilbert and modified for LibXML by Thomas Morgner. -->
<!-- This script has been tested with Ant version 1.6.2. -->
<!-- Several temporary directories are created while the script is -->
<!-- running: "./build" and "./distribution". -->
<!-- A "./javadoc" directory will be created for the Javadoc -->
<!-- HTML pages. -->
<!-- The script should work for the distribution and also the CVS -->
<!-- repository. -->
<project name="libxml" default="all" basedir=".">
<import file="ant/build-lib.xml"/>
<target name="initialise" description="Initialise required settings.">
<tstamp/>
<property name="builddir" value="build"/>
<property file="${user.home}/.build-pentaho-reporting-libxml.properties"/>
<property file="build.properties"/>
<isClassAndFileAvailable class-name="org.jfree.JCommon"
property-name="lib.jcommon.present"
file-name="${libdir}/${jcommon-jar-file}"/>
<fail unless="lib.jcommon.present"/>
<isClassAndFileAvailable class-name="org.jfree.resourceloader.LibLoaderInfo"
property-name="lib.libloader.present"
file-name="${libdir}/${libloader-jar-file}">
<test-classpath>
<pathelement location="${libdir}/${jcommon-jar-file}"/>
</test-classpath>
</isClassAndFileAvailable>
<fail unless="lib.libloader.present"/>
</target>
<target name="compile-retro" depends="initialise"
description="Compile the LibXML source code using a custom JIKES setup.">
<build-retro target-jar="${libxml-jar-file}"
source-dir="source"
jdk-dir="${build.retro.jdk}">
<all-classpath>
<pathelement location="${libdir}/${jcommon-jar-file}"/>
<pathelement location="${libdir}/${jaxp-jar-file}"/>
<pathelement location="${libdir}/${libloader-jar-file}"/>
</all-classpath>
<all-resources>
<include name="*.properties"/>
<include name="**/*.properties"/>
</all-resources>
</build-retro>
</target>
<target name="compile" depends="initialise"
description="Compile the libFonts source code.">
<build-all target-jar="${libxml-jar-file}" source-dir="source">
<all-classpath>
<pathelement location="${libdir}/${jcommon-jar-file}"/>
<pathelement location="${libdir}/${libloader-jar-file}"/>
<pathelement location="${libdir}/${jaxp-jar-file}"/>
</all-classpath>
<all-resources>
<include name="*.properties"/>
<include name="**/*.properties"/>
<include name="*.css"/>
<include name="**/*.css"/>
</all-resources>
</build-all>
</target>
<target name="javadoc" depends="initialise">
<delete dir="javadoc"/>
<mkdir dir="javadoc"/>
<javadoc destdir="javadoc"
windowtitle="LibXML Class Library (version ${libxml.version})"
linksource="true">
<classpath>
<pathelement location="${libdir}/${jcommon-jar-file}"/>
<pathelement location="${libdir}/${libloader-jar-file}"/>
</classpath>
<packageset dir="source" defaultexcludes="yes">
<include name="org/jfree/xmlns"/>
</packageset>
</javadoc>
</target>
<target name="fill-dist-dir">
<!-- copy across README -->
<copy file="README.txt"
tofile="distribution/README.txt"/>
<!-- copy across the ChangeLog -->
<copy file="ChangeLog.txt"
tofile="distribution/ChangeLog.txt"/>
<!-- copy across LICENCE -->
<copy file="licence-LGPL.txt"
tofile="distribution/licence-LGPL.txt"/>
<!-- copy across runtime jar file -->
<copy file="${libxml-jar-file}"
tofile="distribution/${libxml-jar-file}"/>
<!-- copy across source files -->
<copy todir="distribution/source">
<fileset dir="source"/>
</copy>
<!-- copy across source files -->
<copy todir="distribution/lib">
<fileset dir="lib"/>
</copy>
<!-- copy across ant build file (this file) -->
<copy file="build.xml"
tofile="distribution/build.xml"/>
<copy file="ant/build-lib.xml"
tofile="distribution/ant/build-lib.xml"/>
<copy file="build.properties"
tofile="distribution/build.properties"/>
</target>
<target name="zip" depends="compile">
<make-zip lib.version="${libxml.version}" lib.name="${libxml.name}"/>
</target>
<target name="targz" depends="compile">
<make-targz lib.version="${libxml.version}" lib.name="${libxml.name}"/>
</target>
<target name="all"
depends="compile,javadoc,zip,targz"
description="Compiles Libfonts, builds the jar files, generates the Javadoc HTML pages and creates distribution files (.zip and .tar.gz).">
</target>
</project>
<!--===========================================================================
This is the build file for the libformula project.
This build file will use the common_build.xml file as the default build
process and should only override the tasks that need to differ from
the common build file.
See common_build.xml for more details
============================================================================-->
<project name="libformula" basedir="." default="jar">
<description>
This build file is used to create the libformula project
and works with the common_build.xml file.
</description>
<!-- Define the default location of the common build file -->
<property name="common.build.file" value="./common_build.xml"
description="This is the location of the standardized common_build.xml file"/>
<!-- Import the common_build.xml file which contains all the default tasks -->
<import file="${common.build.file}"/>
<!--
AS STATED ABOVE, THE ONLY TASKS THAT SHOULD EXIST IN THIS BUILD FILE ARE
THE TASKS THAT NEED TO DIFFER FROM THE DEFAULT IMPLEMENTATION OF THE TASKS
FOUND IN common_build.xml.
-->
<target name="dist" description="Creates all the distributable items for this project" >
<ant antfile="${common.build.file}" target="dist" />
<!-- Create the required zip distribution which contains the entire project -->
<zip destfile="${dist.dir}/${ivy.artifact.id}-${project.revision}.zip">
<fileset dir="${basedir}">
<exclude name="bin/" />
<exclude name="dist/" />
<exclude name="eclipse-bin/" />
</fileset>
<zipfileset dir="${dist.dir}" includes="**/*.jar" />
</zip>
</target>
</project>
This diff is collapsed.
Implementation-Title: LibXml
Implementation-Vendor: Pentaho Corporation
Implementation-ProductID: libxml
Release-Major-Number: 1
Release-Minor-Number: 0
Release-Milestone-Number: 0
Release-Candidate-Token: dev
ivy.xml 0 → 100644
<?xml version="1.0" encoding="UTF-8"?>
<ivy-module version="2.0" xmlns:m="http://ant.apache.org/ivy/maven">
<info organisation="${ivy.artifact.group}" module="${ivy.artifact.id}" revision="${project.revision}" />
<configurations>
<conf name="default" />
<conf name="test" visibility="private" />
<conf name="source" />
</configurations>
<publications>
<artifact name="${ivy.artifact.id}" type="jar" conf="default" />
<artifact name="${ivy.artifact.id}" m:classifier="sources" type="source" ext="jar" conf="source" />
</publications>
<dependencies defaultconf="default->default">
<!-- internal dependencies -->
<dependency org="${ivy.artifact.group}" name="libbase" rev="${dependency.libbase.revision}" transitive="true" changing="true" />
<dependency org="${ivy.artifact.group}" name="libloader" rev="${dependency.libloader.revision}" transitive="true" changing="true" />
<!-- external dependencies -->
<dependency org="commons-logging" name="commons-logging-api" rev="1.0.4" transitive="false" />
<dependency org="xml-apis" name="xml-apis" rev="1.0.b2" transitive="false" />
<!-- testing dependencies -->
<dependency org="junit" name="junit" rev="3.8.1" transitive="false" conf="test->default" />
</dependencies>
</ivy-module>
<?xml version="1.0" encoding="UTF-8"?>
<ivysettings>
<property name="ivy.local.default.root" value="${ivy.default.ivy.user.dir}/local" override="true"/>
<property name="ivy.local.default.artifact.pattern" value="[organisation]/[module]/[revision]/[type]s/[artifact]-[revision].[ext]" override="false"/>
<settings defaultResolver="default"/>
<include url="${ivy.default.settings.dir}/ivysettings-public.xml"/>
<resolvers>
<dual name="shared">
<url name="shared-ivy">
<ivy pattern="http://repo.pentaho.org/artifactory/repo/[organisation]/[module]/[revision]/[module]-[revision].ivy.xml" />
</url>
<ibiblio name="shared-mvn" m2compatible="true" root="http://repo.pentaho.org/artifactory/repo"/>
</dual>
</resolvers>
<include url="${ivy.default.settings.dir}/ivysettings-local.xml"/>
<include url="${ivy.default.settings.dir}/ivysettings-main-chain.xml"/>
<include url="${ivy.default.settings.dir}/ivysettings-default-chain.xml"/>
</ivysettings>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<module relativePaths="true" type="JAVA_MODULE" version="4">
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_3" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/devresource" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/source" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/test" isTestSource="true" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="module" module-name="libloader" exported="" />
</component>
<component name="copyright">
<Base>
<setting name="state" value="2" />
</Base>
<LanguageOptions name="HTML">
<option name="templateOptions">
<value>
<option name="block" value="true" />
<option name="separateBefore" value="false" />
<option name="separateAfter" value="false" />
<option name="prefixLines" value="true" />
<option name="lenBefore" value="80" />
<option name="lenAfter" value="80" />
<option name="box" value="false" />
<option name="filler" value="$TEMPLATE$" />
</value>
</option>
<option name="notice" value="Copyright (c) &amp;#36;today.year, Your Corporation. All Rights Reserved." />
<option name="keyword" value="Copyright" />
<option name="fileTypeOverride" value="2" />
<option name="relativeBefore" value="true" />
<option name="addBlankAfter" value="true" />
<option name="fileLocation" value="1" />
<option name="useAlternate" value="false" />
</LanguageOptions>
<LanguageOptions name="JAVA">
<option name="templateOptions">
<value>
<option name="block" value="true" />
<option name="separateBefore" value="false" />
<option name="separateAfter" value="false" />
<option name="prefixLines" value="true" />
<option name="lenBefore" value="80" />
<option name="lenAfter" value="80" />
<option name="box" value="false" />
<option name="filler" value="$TEMPLATE$" />
</value>
</option>
<option name="notice" value="Copyright (c) &amp;#36;today.year, Your Corporation. All Rights Reserved." />
<option name="keyword" value="Copyright" />
<option name="fileTypeOverride" value="2" />
<option name="relativeBefore" value="true" />
<option name="addBlankAfter" value="true" />
<option name="fileLocation" value="1" />
<option name="useAlternate" value="false" />
</LanguageOptions>
<LanguageOptions name="JSP">
<option name="templateOptions">
<value>
<option name="block" value="true" />
<option name="separateBefore" value="false" />
<option name="separateAfter" value="false" />
<option name="prefixLines" value="true" />
<option name="lenBefore" value="80" />
<option name="lenAfter" value="80" />
<option name="box" value="false" />
<option name="filler" value="$TEMPLATE$" />
</value>
</option>
<option name="notice" value="Copyright (c) &amp;#36;today.year, Your Corporation. All Rights Reserved." />
<option name="keyword" value="Copyright" />
<option name="fileTypeOverride" value="2" />
<option name="relativeBefore" value="true" />
<option name="addBlankAfter" value="true" />
<option name="fileLocation" value="1" />
<option name="useAlternate" value="false" />
</LanguageOptions>
<LanguageOptions name="JavaScript">
<option name="templateOptions">
<value>
<option name="block" value="true" />
<option name="separateBefore" value="false" />
<option name="separateAfter" value="false" />
<option name="prefixLines" value="true" />
<option name="lenBefore" value="80" />
<option name="lenAfter" value="80" />
<option name="box" value="false" />
<option name="filler" value="$TEMPLATE$" />
</value>
</option>
<option name="notice" value="Copyright (c) &amp;#36;today.year, Your Corporation. All Rights Reserved." />
<option name="keyword" value="Copyright" />
<option name="fileTypeOverride" value="2" />
<option name="relativeBefore" value="true" />
<option name="addBlankAfter" value="true" />
<option name="fileLocation" value="1" />
<option name="useAlternate" value="false" />
</LanguageOptions>
<LanguageOptions name="Properties">
<option name="templateOptions">
<value>
<option name="block" value="true" />
<option name="separateBefore" value="false" />
<option name="separateAfter" value="false" />
<option name="prefixLines" value="true" />
<option name="lenBefore" value="80" />
<option name="lenAfter" value="80" />
<option name="box" value="false" />
<option name="filler" value="$TEMPLATE$" />
</value>
</option>
<option name="notice" value="Copyright (c) &amp;#36;today.year, Your Corporation. All Rights Reserved." />
<option name="keyword" value="Copyright" />
<option name="fileTypeOverride" value="2" />
<option name="relativeBefore" value="true" />
<option name="addBlankAfter" value="true" />
<option name="fileLocation" value="1" />
<option name="useAlternate" value="false" />
</LanguageOptions>
<LanguageOptions name="XML">
<option name="templateOptions">
<value>
<option name="block" value="true" />
<option name="separateBefore" value="false" />
<option name="separateAfter" value="false" />
<option name="prefixLines" value="true" />
<option name="lenBefore" value="80" />
<option name="lenAfter" value="80" />
<option name="box" value="false" />
<option name="filler" value="$TEMPLATE$" />
</value>
</option>
<option name="notice" value="Copyright (c) &amp;#36;today.year, Your Corporation. All Rights Reserved." />
<option name="keyword" value="Copyright" />
<option name="fileTypeOverride" value="2" />
<option name="relativeBefore" value="true" />
<option name="addBlankAfter" value="true" />
<option name="fileLocation" value="1" />
<option name="useAlternate" value="false" />
</LanguageOptions>
<LanguageOptions name="__TEMPLATE__">
<option name="templateOptions">
<value>
<option name="block" value="true" />
<option name="separateBefore" value="false" />
<option name="separateAfter" value="false" />
<option name="prefixLines" value="true" />
<option name="lenBefore" value="80" />
<option name="lenAfter" value="80" />
<option name="box" value="false" />
<option name="filler" value="$TEMPLATE$" />
</value>
</option>
<option name="notice" value="Copyright (c) &amp;#36;today.year, Your Corporation. All Rights Reserved." />
<option name="keyword" value="Copyright" />
<option name="fileTypeOverride" value="4" />
<option name="relativeBefore" value="true" />
<option name="addBlankAfter" value="true" />
<option name="fileLocation" value="1" />
<option name="useAlternate" value="false" />
</LanguageOptions>
</component>
</module>
This diff is collapsed.
#
# This file registers the loader-factories defined in JFreeReport. Do not
# modify it, unless you really want to *remove* support for one of the created
# types.
org.pentaho.reporting.libraries.resourceloader.factory.type.org.w3c.dom.Document=org.pentaho.reporting.libraries.xmlns.parser.DomTreeResourceFactory
This diff is collapsed.
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment