diff --git a/.gitignore b/.gitignore index 771e21a..5da54e0 100644 --- a/.gitignore +++ b/.gitignore @@ -3,26 +3,10 @@ solr/data/* solr/*/data/* # Fedora dev instance data -fedora/default/data -fedora/default/derby/* -fedora/default/server/logs/* -fedora/default/server/management/upload/* -fedora/default/server/status - -# Fedora test instance data -fedora/test/data -fedora/test/derby/* -fedora/test/server/logs/* -fedora/test/server/management/upload/* -fedora/test/server/status - -fedora/default/server/fedora-internal-use/fedora-internal-use-backend-service-policies/ -fedora/default/server/fedora-internal-use/has-started.txt - -fedora/test/server/fedora-internal-use/fedora-internal-use-backend-service-policies/ -fedora/test/server/fedora-internal-use/has-started.txt +fcrepo4-data # Logs logs/* derby.log jettywrapper.log +velocity.log diff --git a/README.md b/README.md index b0d0bf4..b6af5eb 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ This is a copy of jetty with the needed applications for running Hydra. These i * jetty: 8.1.10.v20130312 * solr: 4.9.0 -* fedora: 3.7.1 +* fedora: 4.0.0b2 ## Usage @@ -17,11 +17,6 @@ This is a copy of jetty with the needed applications for running Hydra. These i * [Java 7 (JRE)](https://java.com/en/download/index.jsp) -#### Java 6 - -Java 6 is unsupported under Solr 4.9, but still supported under Fedora 3.7.1. However, hydra-jetty has only been tested under -Java 7 so it is recommended to use Java 7 and not Java 6. - ### Manual git clone https://github.com/projecthydra/hydra-jetty @@ -48,14 +43,10 @@ When jetty is finished initializing itself, Solr is available at * [http://localhost:8983/solr/](http://localhost:8983/solr/) -Fedora is available in two copies, one for developement +and Fedora is available at * [http://localhost:8983/fedora/](http://localhost:8983/fedora/) -and an additional copy for testing: - -* [http://localhost:8983/fedora-test/](http://localhost:8983/fedora-test/) - You can see a list of all installed applications at * [http://localhost:8983](http://localhost:8983) diff --git a/contexts/fedora-test.xml b/contexts/fedora-test.xml deleted file mode 100644 index d6f662f..0000000 --- a/contexts/fedora-test.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - /fedora-test - /webapps/fedora.war - - fedora.home - /fedora/test - - diff --git a/contexts/fedora.xml b/contexts/fedora.xml index 86b08b1..10cba1c 100644 --- a/contexts/fedora.xml +++ b/contexts/fedora.xml @@ -2,9 +2,5 @@ /fedora - /webapps/fedora.war - - fedora.home - /fedora/default - + /webapps/fcrepo-webapp-4.0.0-beta-04-SNAPSHOT.war diff --git a/fedora/README.txt b/fedora/README.txt deleted file mode 100644 index 7d1d632..0000000 --- a/fedora/README.txt +++ /dev/null @@ -1,21 +0,0 @@ -Updating Fedora for hydra-jetty -------------------------------- - -Replace fedora.war, fedora-demo.war, fop.war, imagemanip.war, and saxon.war in webapps/ (use the official artifacts from Maven Central or Sourceforge so that the checksums are not altered). - -Update Fedora version number in README.txt - -The install of Fedora should use - fedora.admin.pass: fedoraAdmin - ssl.available: false - servlet.engine: other - database: included - xacml.enabled (policy enforcement): false - -Remove all the *.wars from $FEDORA_HOME/install - -Update port references from 8080 to 8983 (fedora.fcfg, spring/web.properties) - -Replace all absolute paths for FEDORA_HOME (in fedora.fcfg, akubra-llstore.xml, install.properties) with the relative path, "fedora/default" - -Copy fedora/default to fedora/test, now replacing fedora/default paths with fedora/test diff --git a/fedora/client/bin/env-client.bat b/fedora/client/bin/env-client.bat deleted file mode 100644 index bf23b5a..0000000 --- a/fedora/client/bin/env-client.bat +++ /dev/null @@ -1,44 +0,0 @@ -@echo off -setlocal - -REM --------------------------------------------------------------------------- -REM Common environment checks and launcher for Fedora client scripts. -REM -REM Environment Variables: -REM FEDORA_HOME: Required. Used to determine the location of client classes -REM and other resources required to run the utilities. -REM JAVA_HOME : Optional. Used to determine the location of java. -REM If JAVA_HOME is unspecified, will use FEDORA_JAVA_HOME. -REM If FEDORA_JAVA_HOME is unspecified, will use java in PATH. -REM --------------------------------------------------------------------------- - -if not "%FEDORA_HOME%" == "" goto gotFedoraHome -echo ERROR: The FEDORA_HOME environment variable is not defined. -exit /B 1 -:gotFedoraHome - -if exist "%FEDORA_HOME%\client\fcrepo-client-admin-3.7.1.jar" goto clientJarFound -echo ERROR: fcrepo-client-admin-3.7.1.jar not found in %FEDORA_HOME%\client -exit /B 1 -:clientJarFound - -if not "%JAVA_HOME%" == "" goto setJavaFromJavaHome -if not "%FEDORA_JAVA_HOME%" == "" goto setJavaFromFedoraJavaHome -set JAVA=java -goto gotJava -:setJavaFromFedoraJavaHome -set JAVA="%FEDORA_JAVA_HOME%\bin\java" -goto gotJava -:setJavaFromJavaHome -set JAVA="%JAVA_HOME%\bin\java" -:gotJava - -set CP="%FEDORA_HOME%\client\bin;%FEDORA_HOME%\client\fcrepo-client-admin-3.7.1.jar;%FEDORA_HOME%\client\cxf-bundle-2.7.3.jar" -set OPTS=-Djava.endorsed.dirs="%FEDORA_HOME%\client\lib" -set OPTS=%OPTS% -Djavax.net.ssl.trustStore="%FEDORA_HOME%\client\truststore" -set OPTS=%OPTS% -Djavax.net.ssl.trustStorePassword=tomcat -set OPTS=%OPTS% -Djavax.xml.parsers.DocumentBuilderFactory=org.apache.xerces.jaxp.DocumentBuilderFactoryImpl -set OPTS=%OPTS% -Djavax.xml.parsers.SAXParserFactory=org.apache.xerces.jaxp.SAXParserFactoryImpl -set OPTS=%OPTS% -Dfedora.home="%FEDORA_HOME%" - -%JAVA% -Xms64m -Xmx96m -cp %CP% %OPTS% %* \ No newline at end of file diff --git a/fedora/client/bin/env-client.sh b/fedora/client/bin/env-client.sh deleted file mode 100755 index bfcacf5..0000000 --- a/fedora/client/bin/env-client.sh +++ /dev/null @@ -1,54 +0,0 @@ -#------------------------------------------------------------------------------ -# Common environment checks and launcher for Fedora client scripts. -# -# Environment Variables: -# FEDORA_HOME: Required. Used to determine the location of client classes -# and other resources required to run the utilities. -# JAVA_HOME : Optional. Used to determine the location of java. -# If JAVA_HOME is unspecified, will use FEDORA_JAVA_HOME. -# If FEDORA_JAVA_HOME is unspecified, will use java in PATH. -#------------------------------------------------------------------------------ - -if [ -z "$FEDORA_HOME" ]; then - echo "ERROR: The FEDORA_HOME environment variable is not defined." - exit 1 -fi - -if [ ! -f "$FEDORA_HOME/client/fcrepo-client-admin-3.7.1.jar" ]; then - echo "ERROR: fcrepo-client-admin-3.7.1.jar not found in $FEDORA_HOME/client" - exit 1 -fi - -if [ -z "$JAVA_HOME" ]; then - if [ -z "$FEDORA_JAVA_HOME" ]; then - java="java" - else - java="$FEDORA_JAVA_HOME"/bin/java - fi -else - java="$JAVA_HOME"/bin/java -fi - -cmdline_args= -for arg in "$@" ; do - cmdline_args="$cmdline_args \"$arg\"" -done - -execWithCmdlineArgs() { - execWithTheseArgs $1 "$cmdline_args" - return $? -} - -execWithTheseArgs() { - exec_cmd="exec \"$java\" -Xms64m -Xmx96m \ - -cp \"$FEDORA_HOME\"/client/bin:\"$FEDORA_HOME\"/client/fcrepo-client-admin-3.7.1.jar:\"$FEDORA_HOME\"/client/cxf-bundle-2.7.3.jar \ - -Djava.endorsed.dirs=\"$FEDORA_HOME\"/client/lib \ - -Djavax.net.ssl.trustStore=\"$FEDORA_HOME\"/client/truststore \ - -Djavax.net.ssl.trustStorePassword=tomcat \ - -Djavax.xml.parsers.DocumentBuilderFactory=org.apache.xerces.jaxp.DocumentBuilderFactoryImpl \ - -Djavax.xml.parsers.SAXParserFactory=org.apache.xerces.jaxp.SAXParserFactoryImpl \ - -Dfedora.home=\"$FEDORA_HOME\" \ - $1 $2" - eval $exec_cmd - return $? -} diff --git a/fedora/client/bin/fedora-admin.bat b/fedora/client/bin/fedora-admin.bat deleted file mode 100644 index 29bad3a..0000000 --- a/fedora/client/bin/fedora-admin.bat +++ /dev/null @@ -1,11 +0,0 @@ -@echo off -setlocal - -if not "%FEDORA_HOME%" == "" goto gotFedoraHome -echo ERROR: The FEDORA_HOME environment variable is not defined. -exit /B 1 -:gotFedoraHome - -set LAUNCHER="%FEDORA_HOME%\client\bin\env-client.bat" - -call %LAUNCHER% org.fcrepo.client.Administrator %* \ No newline at end of file diff --git a/fedora/client/bin/fedora-admin.sh b/fedora/client/bin/fedora-admin.sh deleted file mode 100755 index 1be358d..0000000 --- a/fedora/client/bin/fedora-admin.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh - -scriptdir=`dirname "$0"` -. "$scriptdir"/env-client.sh - -execWithCmdlineArgs org.fcrepo.client.Administrator - -exit $? diff --git a/fedora/client/bin/fedora-batch-build.bat b/fedora/client/bin/fedora-batch-build.bat deleted file mode 100644 index d03a81f..0000000 --- a/fedora/client/bin/fedora-batch-build.bat +++ /dev/null @@ -1,11 +0,0 @@ -@echo off -setlocal - -if not "%FEDORA_HOME%" == "" goto gotFedoraHome -echo ERROR: The FEDORA_HOME environment variable is not defined. -exit /B 1 -:gotFedoraHome - -set LAUNCHER="%FEDORA_HOME%\client\bin\env-client.bat" - -call %LAUNCHER% org.fcrepo.client.batch.AutoBatchBuild %* \ No newline at end of file diff --git a/fedora/client/bin/fedora-batch-build.sh b/fedora/client/bin/fedora-batch-build.sh deleted file mode 100755 index 04e6570..0000000 --- a/fedora/client/bin/fedora-batch-build.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh - -scriptdir=`dirname "$0"` -. "$scriptdir"/env-client.sh - -execWithCmdlineArgs org.fcrepo.client.batch.AutoBatchBuild - -exit $? \ No newline at end of file diff --git a/fedora/client/bin/fedora-batch-buildingest.bat b/fedora/client/bin/fedora-batch-buildingest.bat deleted file mode 100644 index 1067895..0000000 --- a/fedora/client/bin/fedora-batch-buildingest.bat +++ /dev/null @@ -1,11 +0,0 @@ -@echo off -setlocal - -if not "%FEDORA_HOME%" == "" goto gotFedoraHome -echo ERROR: The FEDORA_HOME environment variable is not defined. -exit /B 1 -:gotFedoraHome - -set LAUNCHER="%FEDORA_HOME%\client\bin\env-client.bat" - -call %LAUNCHER% org.fcrepo.client.batch.AutoBatchBuildIngest %* \ No newline at end of file diff --git a/fedora/client/bin/fedora-batch-buildingest.sh b/fedora/client/bin/fedora-batch-buildingest.sh deleted file mode 100755 index eb29779..0000000 --- a/fedora/client/bin/fedora-batch-buildingest.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh - -scriptdir=`dirname "$0"` -. "$scriptdir"/env-client.sh - -execWithCmdlineArgs org.fcrepo.client.batch.AutoBatchBuildIngest - -exit $? diff --git a/fedora/client/bin/fedora-batch-ingest.bat b/fedora/client/bin/fedora-batch-ingest.bat deleted file mode 100644 index 2909d7c..0000000 --- a/fedora/client/bin/fedora-batch-ingest.bat +++ /dev/null @@ -1,11 +0,0 @@ -@echo off -setlocal - -if not "%FEDORA_HOME%" == "" goto gotFedoraHome -echo ERROR: The FEDORA_HOME environment variable is not defined. -exit /B 1 -:gotFedoraHome - -set LAUNCHER="%FEDORA_HOME%\client\bin\env-client.bat" - -call %LAUNCHER% org.fcrepo.client.batch.AutoBatchIngest %* \ No newline at end of file diff --git a/fedora/client/bin/fedora-batch-ingest.sh b/fedora/client/bin/fedora-batch-ingest.sh deleted file mode 100755 index 81894de..0000000 --- a/fedora/client/bin/fedora-batch-ingest.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh - -scriptdir=`dirname "$0"` -. "$scriptdir"/env-client.sh - -execWithCmdlineArgs org.fcrepo.client.batch.AutoBatchIngest - -exit $? \ No newline at end of file diff --git a/fedora/client/bin/fedora-dsinfo.bat b/fedora/client/bin/fedora-dsinfo.bat deleted file mode 100644 index 31878c6..0000000 --- a/fedora/client/bin/fedora-dsinfo.bat +++ /dev/null @@ -1,11 +0,0 @@ -@echo off -setlocal - -if not "%FEDORA_HOME%" == "" goto gotFedoraHome -echo ERROR: The FEDORA_HOME environment variable is not defined. -exit /B 1 -:gotFedoraHome - -set LAUNCHER="%FEDORA_HOME%\client\bin\env-client.bat" - -call %LAUNCHER% org.fcrepo.client.datastream.DatastreamConduit %* \ No newline at end of file diff --git a/fedora/client/bin/fedora-dsinfo.sh b/fedora/client/bin/fedora-dsinfo.sh deleted file mode 100755 index 3e5c2e4..0000000 --- a/fedora/client/bin/fedora-dsinfo.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh - -scriptdir=`dirname "$0"` -. "$scriptdir"/env-client.sh - -execWithCmdlineArgs org.fcrepo.client.datastream.DatastreamConduit - -exit $? diff --git a/fedora/client/bin/fedora-export.bat b/fedora/client/bin/fedora-export.bat deleted file mode 100644 index ffda98a..0000000 --- a/fedora/client/bin/fedora-export.bat +++ /dev/null @@ -1,11 +0,0 @@ -@echo off -setlocal - -if not "%FEDORA_HOME%" == "" goto gotFedoraHome -echo ERROR: The FEDORA_HOME environment variable is not defined. -exit /B 1 -:gotFedoraHome - -set LAUNCHER="%FEDORA_HOME%\client\bin\env-client.bat" - -call %LAUNCHER% org.fcrepo.client.utility.export.Export %* \ No newline at end of file diff --git a/fedora/client/bin/fedora-export.sh b/fedora/client/bin/fedora-export.sh deleted file mode 100755 index 1b3352f..0000000 --- a/fedora/client/bin/fedora-export.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh - -scriptdir=`dirname "$0"` -. "$scriptdir"/env-client.sh - -execWithCmdlineArgs org.fcrepo.client.utility.export.Export - -exit $? diff --git a/fedora/client/bin/fedora-find.bat b/fedora/client/bin/fedora-find.bat deleted file mode 100644 index 5eea58d..0000000 --- a/fedora/client/bin/fedora-find.bat +++ /dev/null @@ -1,11 +0,0 @@ -@echo off -setlocal - -if not "%FEDORA_HOME%" == "" goto gotFedoraHome -echo ERROR: The FEDORA_HOME environment variable is not defined. -exit /B 1 -:gotFedoraHome - -set LAUNCHER="%FEDORA_HOME%\client\bin\env-client.bat" - -call %LAUNCHER% org.fcrepo.client.utility.AutoFinder %* \ No newline at end of file diff --git a/fedora/client/bin/fedora-find.sh b/fedora/client/bin/fedora-find.sh deleted file mode 100755 index 10e8b92..0000000 --- a/fedora/client/bin/fedora-find.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh - -scriptdir=`dirname "$0"` -. "$scriptdir"/env-client.sh - -execWithCmdlineArgs org.fcrepo.client.utility.AutoFinder - -exit $? diff --git a/fedora/client/bin/fedora-ingest-demos.bat b/fedora/client/bin/fedora-ingest-demos.bat deleted file mode 100644 index ab78586..0000000 --- a/fedora/client/bin/fedora-ingest-demos.bat +++ /dev/null @@ -1,28 +0,0 @@ -@echo off -setlocal - -if not "%FEDORA_HOME%" == "" goto gotFedoraHome -echo ERROR: The FEDORA_HOME environment variable is not defined. -exit /B 1 -:gotFedoraHome - -set LAUNCHER="%FEDORA_HOME%\client\bin\env-client.bat" - -if not "%5"=="" goto enoughArgs -echo ERROR: Not enough arguments. -echo Usage: -echo fedora-ingest-demos host port user password protocol [context] -echo Example: -echo fedora-ingest-demos localhost 8080 fedoraAdmin fedoraAdmin http my-fedora -exit /B 1 -:enoughArgs - -set DEMO_PATH="%FEDORA_HOME%\client\demo\foxml\local-server-demos" -set DEMO_FORMAT=info:fedora/fedora-system:FOXML-1.1 - -set ARGS=d -set ARGS=%ARGS% %DEMO_PATH% -set ARGS=%ARGS% %DEMO_FORMAT% -set ARGS=%ARGS% "%1:%2" %3 %4 %5 "" %6 - -call %LAUNCHER% org.fcrepo.client.utility.ingest.Ingest %ARGS% \ No newline at end of file diff --git a/fedora/client/bin/fedora-ingest-demos.sh b/fedora/client/bin/fedora-ingest-demos.sh deleted file mode 100755 index 4059468..0000000 --- a/fedora/client/bin/fedora-ingest-demos.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/sh - -scriptdir=`dirname "$0"` -. "$scriptdir"/env-client.sh - -if [ $# -lt 5 ]; then - echo "ERROR: Not enough arguments." - echo "Usage:" - echo " fedora-ingest-demos host port user password protocol [context]" - echo "Example:" - echo " fedora-ingest-demos localhost 8080 fedoraAdmin fedoraAdmin http my-fedora" - exit 1 -fi - -demo_path="$FEDORA_HOME"/client/demo/foxml/local-server-demos -demo_format=info:fedora/fedora-system:FOXML-1.1 - -args="\"d\" \"$demo_path\" \"$demo_format\" \"$1:$2\" \"$3\" \"$4\" \"$5\" \"\" \"$6\"" - -execWithTheseArgs org.fcrepo.client.utility.ingest.Ingest "$args" - -exit $? diff --git a/fedora/client/bin/fedora-ingest.bat b/fedora/client/bin/fedora-ingest.bat deleted file mode 100644 index dc70168..0000000 --- a/fedora/client/bin/fedora-ingest.bat +++ /dev/null @@ -1,11 +0,0 @@ -@echo off -setlocal - -if not "%FEDORA_HOME%" == "" goto gotFedoraHome -echo ERROR: The FEDORA_HOME environment variable is not defined. -exit /B 1 -:gotFedoraHome - -set LAUNCHER="%FEDORA_HOME%\client\bin\env-client.bat" - -call %LAUNCHER% org.fcrepo.client.utility.ingest.Ingest %* \ No newline at end of file diff --git a/fedora/client/bin/fedora-ingest.sh b/fedora/client/bin/fedora-ingest.sh deleted file mode 100755 index ebb5b31..0000000 --- a/fedora/client/bin/fedora-ingest.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh - -scriptdir=`dirname "$0"` -. "$scriptdir"/env-client.sh - -execWithCmdlineArgs org.fcrepo.client.utility.ingest.Ingest - -exit $? \ No newline at end of file diff --git a/fedora/client/bin/fedora-massingest.bat b/fedora/client/bin/fedora-massingest.bat deleted file mode 100644 index 212a224..0000000 --- a/fedora/client/bin/fedora-massingest.bat +++ /dev/null @@ -1,11 +0,0 @@ -@echo off -setlocal - -if not "%FEDORA_HOME%" == "" goto gotFedoraHome -echo ERROR: The FEDORA_HOME environment variable is not defined. -exit /B 1 -:gotFedoraHome - -set LAUNCHER="%FEDORA_HOME%\client\bin\env-client.bat" - -call %LAUNCHER% org.fcrepo.client.test.MassIngest %* diff --git a/fedora/client/bin/fedora-massingest.sh b/fedora/client/bin/fedora-massingest.sh deleted file mode 100755 index 797c31f..0000000 --- a/fedora/client/bin/fedora-massingest.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh - -scriptdir=`dirname "$0"` -. "$scriptdir"/env-client.sh - -execWithCmdlineArgs org.fcrepo.client.test.MassIngest - -exit $? \ No newline at end of file diff --git a/fedora/client/bin/fedora-modify.bat b/fedora/client/bin/fedora-modify.bat deleted file mode 100644 index e56a066..0000000 --- a/fedora/client/bin/fedora-modify.bat +++ /dev/null @@ -1,11 +0,0 @@ -@echo off -setlocal - -if not "%FEDORA_HOME%" == "" goto gotFedoraHome -echo ERROR: The FEDORA_HOME environment variable is not defined. -exit /B 1 -:gotFedoraHome - -set LAUNCHER="%FEDORA_HOME%\client\bin\env-client.bat" - -call %LAUNCHER% org.fcrepo.client.batch.AutoModify %* \ No newline at end of file diff --git a/fedora/client/bin/fedora-modify.sh b/fedora/client/bin/fedora-modify.sh deleted file mode 100755 index f2286b2..0000000 --- a/fedora/client/bin/fedora-modify.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh - -scriptdir=`dirname "$0"` -. "$scriptdir"/env-client.sh - -execWithCmdlineArgs org.fcrepo.client.batch.AutoModify - -exit $? diff --git a/fedora/client/bin/fedora-purge.bat b/fedora/client/bin/fedora-purge.bat deleted file mode 100644 index b339123..0000000 --- a/fedora/client/bin/fedora-purge.bat +++ /dev/null @@ -1,11 +0,0 @@ -@echo off -setlocal - -if not "%FEDORA_HOME%" == "" goto gotFedoraHome -echo ERROR: The FEDORA_HOME environment variable is not defined. -exit /B 1 -:gotFedoraHome - -set LAUNCHER="%FEDORA_HOME%\client\bin\env-client.bat" - -call %LAUNCHER% org.fcrepo.client.utility.AutoPurger %* \ No newline at end of file diff --git a/fedora/client/bin/fedora-purge.sh b/fedora/client/bin/fedora-purge.sh deleted file mode 100755 index 78bd2dd..0000000 --- a/fedora/client/bin/fedora-purge.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh - -scriptdir=`dirname "$0"` -. "$scriptdir"/env-client.sh - -execWithCmdlineArgs org.fcrepo.client.utility.AutoPurger - -exit $? \ No newline at end of file diff --git a/fedora/client/bin/fedora-validate-objects.bat b/fedora/client/bin/fedora-validate-objects.bat deleted file mode 100644 index b07f0c5..0000000 --- a/fedora/client/bin/fedora-validate-objects.bat +++ /dev/null @@ -1,11 +0,0 @@ -@echo off -setlocal - -if not "%FEDORA_HOME%" == "" goto gotFedoraHome -echo ERROR: The FEDORA_HOME environment variable is not defined. -exit /B 1 -:gotFedoraHome - -set LAUNCHER="%FEDORA_HOME%\client\bin\env-client.bat" - -call %LAUNCHER% org.fcrepo.client.utility.validate.process.ValidatorProcess %* \ No newline at end of file diff --git a/fedora/client/bin/fedora-validate-objects.sh b/fedora/client/bin/fedora-validate-objects.sh deleted file mode 100755 index 9613ab9..0000000 --- a/fedora/client/bin/fedora-validate-objects.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh - -scriptdir=`dirname "$0"` -. "$scriptdir"/env-client.sh - -execWithCmdlineArgs org.fcrepo.client.utility.validate.process.ValidatorProcess - -exit $? diff --git a/fedora/client/bin/logback.xml b/fedora/client/bin/logback.xml deleted file mode 100644 index 6b57cbf..0000000 --- a/fedora/client/bin/logback.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - %p %d{HH:mm:ss.SSS} \(%c{0}\) %m%n - - - - - - - - - diff --git a/fedora/client/cxf-bundle-2.7.3.jar b/fedora/client/cxf-bundle-2.7.3.jar deleted file mode 100644 index 894315f..0000000 Binary files a/fedora/client/cxf-bundle-2.7.3.jar and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/document-transform-demo/demo_XML_TO_HTMLDOC.zip b/fedora/client/demo/atom-zip/local-server-demos/document-transform-demo/demo_XML_TO_HTMLDOC.zip deleted file mode 100644 index 4bb2847..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/document-transform-demo/demo_XML_TO_HTMLDOC.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/document-transform-demo/obj_demo_14.zip b/fedora/client/demo/atom-zip/local-server-demos/document-transform-demo/obj_demo_14.zip deleted file mode 100644 index 44ae3b4..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/document-transform-demo/obj_demo_14.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/document-transform-demo/sdef_demo_12.zip b/fedora/client/demo/atom-zip/local-server-demos/document-transform-demo/sdef_demo_12.zip deleted file mode 100644 index a891313..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/document-transform-demo/sdef_demo_12.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/document-transform-demo/sdep_demo_13.zip b/fedora/client/demo/atom-zip/local-server-demos/document-transform-demo/sdep_demo_13.zip deleted file mode 100644 index 62841ab..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/document-transform-demo/sdep_demo_13.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/formatting-objects-demo/cmodel_demo_FO_TO_PDFDOC.zip b/fedora/client/demo/atom-zip/local-server-demos/formatting-objects-demo/cmodel_demo_FO_TO_PDFDOC.zip deleted file mode 100644 index f5f03a3..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/formatting-objects-demo/cmodel_demo_FO_TO_PDFDOC.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/formatting-objects-demo/cmodel_demo_TEI_TO_PDFDOC.zip b/fedora/client/demo/atom-zip/local-server-demos/formatting-objects-demo/cmodel_demo_TEI_TO_PDFDOC.zip deleted file mode 100644 index 1e21d85..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/formatting-objects-demo/cmodel_demo_TEI_TO_PDFDOC.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/formatting-objects-demo/obj_demo_21.zip b/fedora/client/demo/atom-zip/local-server-demos/formatting-objects-demo/obj_demo_21.zip deleted file mode 100644 index ed8734e..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/formatting-objects-demo/obj_demo_21.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/formatting-objects-demo/obj_demo_26.zip b/fedora/client/demo/atom-zip/local-server-demos/formatting-objects-demo/obj_demo_26.zip deleted file mode 100644 index ddbbfe5..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/formatting-objects-demo/obj_demo_26.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/formatting-objects-demo/sdef_demo_19.zip b/fedora/client/demo/atom-zip/local-server-demos/formatting-objects-demo/sdef_demo_19.zip deleted file mode 100644 index d6e2890..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/formatting-objects-demo/sdef_demo_19.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/formatting-objects-demo/sdef_demo_22.zip b/fedora/client/demo/atom-zip/local-server-demos/formatting-objects-demo/sdef_demo_22.zip deleted file mode 100644 index 15d6ea2..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/formatting-objects-demo/sdef_demo_22.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/formatting-objects-demo/sdep_demo_20.zip b/fedora/client/demo/atom-zip/local-server-demos/formatting-objects-demo/sdep_demo_20.zip deleted file mode 100644 index d797151..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/formatting-objects-demo/sdep_demo_20.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/formatting-objects-demo/sdep_demo_25.zip b/fedora/client/demo/atom-zip/local-server-demos/formatting-objects-demo/sdep_demo_25.zip deleted file mode 100644 index bcd3296..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/formatting-objects-demo/sdep_demo_25.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/cModelObjects/demo_DualResImage.zip b/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/cModelObjects/demo_DualResImage.zip deleted file mode 100644 index 83a127b..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/cModelObjects/demo_DualResImage.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/cModelObjects/demo_DualResImageCollection.zip b/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/cModelObjects/demo_DualResImageCollection.zip deleted file mode 100644 index ccb2db7..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/cModelObjects/demo_DualResImageCollection.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyBeerGlass.zip b/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyBeerGlass.zip deleted file mode 100644 index 21923e1..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyBeerGlass.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyBucket.zip b/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyBucket.zip deleted file mode 100644 index 1e12d5b..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyBucket.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyDinnerware.zip b/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyDinnerware.zip deleted file mode 100644 index ee3fa16..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyDinnerware.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyEarring.zip b/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyEarring.zip deleted file mode 100644 index 1a51510..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyEarring.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyGreetingCard.zip b/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyGreetingCard.zip deleted file mode 100644 index 0f75c15..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyGreetingCard.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyKeychain.zip b/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyKeychain.zip deleted file mode 100644 index 9fc3809..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyKeychain.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyNightlight.zip b/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyNightlight.zip deleted file mode 100644 index b3956f0..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyNightlight.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyPens.zip b/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyPens.zip deleted file mode 100644 index 7536cc0..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyPens.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyShortRoundCup.zip b/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyShortRoundCup.zip deleted file mode 100644 index 000abe4..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyShortRoundCup.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyStuff.zip b/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyStuff.zip deleted file mode 100644 index 5997ac6..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyStuff.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyTallRoundCup.zip b/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyTallRoundCup.zip deleted file mode 100644 index 4191147..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyTallRoundCup.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyToiletBrush.zip b/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyToiletBrush.zip deleted file mode 100644 index c43022c..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyToiletBrush.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyWastebasket.zip b/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyWastebasket.zip deleted file mode 100644 index 3c3ef47..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/dataObjects/demo_SmileyWastebasket.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/sDefObjects/demo_Collection.zip b/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/sDefObjects/demo_Collection.zip deleted file mode 100644 index bf16517..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/sDefObjects/demo_Collection.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/sDefObjects/demo_DualResolution.zip b/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/sDefObjects/demo_DualResolution.zip deleted file mode 100644 index 7a7b966..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/sDefObjects/demo_DualResolution.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/sDepObjects/demo_CollectionImpl.zip b/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/sDepObjects/demo_CollectionImpl.zip deleted file mode 100644 index e283c91..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/sDepObjects/demo_CollectionImpl.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/sDepObjects/demo_DualResImageImpl.zip b/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/sDepObjects/demo_DualResImageImpl.zip deleted file mode 100644 index 12bf432..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/image-collection-demo/sDepObjects/demo_DualResImageImpl.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/image-manip-demo/demo_UVA_STD_IMAGE.zip b/fedora/client/demo/atom-zip/local-server-demos/image-manip-demo/demo_UVA_STD_IMAGE.zip deleted file mode 100644 index 3427f97..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/image-manip-demo/demo_UVA_STD_IMAGE.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/image-manip-demo/obj_demo_29.zip b/fedora/client/demo/atom-zip/local-server-demos/image-manip-demo/obj_demo_29.zip deleted file mode 100644 index e34a6eb..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/image-manip-demo/obj_demo_29.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/image-manip-demo/sdef_demo_27.zip b/fedora/client/demo/atom-zip/local-server-demos/image-manip-demo/sdef_demo_27.zip deleted file mode 100644 index fb8e29f..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/image-manip-demo/sdef_demo_27.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/image-manip-demo/sdep_demo_28.zip b/fedora/client/demo/atom-zip/local-server-demos/image-manip-demo/sdep_demo_28.zip deleted file mode 100644 index 4a5288e..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/image-manip-demo/sdep_demo_28.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/simple-document-demo/obj_demo_18.zip b/fedora/client/demo/atom-zip/local-server-demos/simple-document-demo/obj_demo_18.zip deleted file mode 100644 index 7fde312..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/simple-document-demo/obj_demo_18.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/simple-document-demo/obj_demo_31.zip b/fedora/client/demo/atom-zip/local-server-demos/simple-document-demo/obj_demo_31.zip deleted file mode 100644 index 7cec3b8..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/simple-document-demo/obj_demo_31.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/simple-image-demo/demo_UVA_STD_IMAGE_1.zip b/fedora/client/demo/atom-zip/local-server-demos/simple-image-demo/demo_UVA_STD_IMAGE_1.zip deleted file mode 100644 index 57ece8f..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/simple-image-demo/demo_UVA_STD_IMAGE_1.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/simple-image-demo/obj_demo_5.zip b/fedora/client/demo/atom-zip/local-server-demos/simple-image-demo/obj_demo_5.zip deleted file mode 100644 index a8e71a8..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/simple-image-demo/obj_demo_5.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/simple-image-demo/sdef_demo_1.zip b/fedora/client/demo/atom-zip/local-server-demos/simple-image-demo/sdef_demo_1.zip deleted file mode 100644 index cde7fbc..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/simple-image-demo/sdef_demo_1.zip and /dev/null differ diff --git a/fedora/client/demo/atom-zip/local-server-demos/simple-image-demo/sdep_demo_2.zip b/fedora/client/demo/atom-zip/local-server-demos/simple-image-demo/sdep_demo_2.zip deleted file mode 100644 index 773bdd8..0000000 Binary files a/fedora/client/demo/atom-zip/local-server-demos/simple-image-demo/sdep_demo_2.zip and /dev/null differ diff --git a/fedora/client/demo/atom/local-server-demos/document-transform-demo/demo_XML_TO_HTMLDOC.xml b/fedora/client/demo/atom/local-server-demos/document-transform-demo/demo_XML_TO_HTMLDOC.xml deleted file mode 100644 index ce18520..0000000 --- a/fedora/client/demo/atom/local-server-demos/document-transform-demo/demo_XML_TO_HTMLDOC.xml +++ /dev/null @@ -1,92 +0,0 @@ - - - info:fedora/demo:XML_TO_HTMLDOC - Content Model Object for Document Transform Demo - 2008-07-02T05:09:42.015Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:XML_TO_HTMLDOC/DC - DC - 2007-08-15T14:36:30.369Z - - - - - - - info:fedora/demo:XML_TO_HTMLDOC/DC/2007-08-15T14:36:30.369Z - DC1.0 - 2007-08-15T14:36:30.369Z - - - - - - Content Model Object for Document Transform Demo - demo:XML_TO_HTMLDOC - - - - - info:fedora/demo:XML_TO_HTMLDOC/RELS-EXT - RELS-EXT - 2007-08-15T14:36:30.369Z - - - - - - - info:fedora/demo:XML_TO_HTMLDOC/RELS-EXT/2007-08-15T14:36:30.369Z - RELS-EXT1.0 - 2007-08-15T14:36:30.369Z - - - - - - - - - - - - - - info:fedora/demo:XML_TO_HTMLDOC/DS-COMPOSITE-MODEL - DS-COMPOSITE-MODEL - 2007-08-15T14:36:30.369Z - - - - - - - info:fedora/demo:XML_TO_HTMLDOC/DS-COMPOSITE-MODEL/2007-08-15T14:36:30.369Z - DS-COMPOSITE-MODEL1.0 - 2007-08-15T14:36:30.369Z - - - - - - -
- - - - - - - - - - - diff --git a/fedora/client/demo/atom/local-server-demos/document-transform-demo/obj_demo_14.xml b/fedora/client/demo/atom/local-server-demos/document-transform-demo/obj_demo_14.xml deleted file mode 100644 index f653ee3..0000000 --- a/fedora/client/demo/atom/local-server-demos/document-transform-demo/obj_demo_14.xml +++ /dev/null @@ -1,124 +0,0 @@ - - - info:fedora/demo:14 - Data Object for Document Transform Demo - 2008-07-02T05:09:42.015Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:14/DC - DC - 2008-07-02T05:09:42.484Z - - - - - - - info:fedora/demo:14/DC/2008-07-02T05:09:42.484Z - DC1.0 - 2008-07-02T05:09:42.484Z - - - - - - Web Service Definition for the Fedora Access Service - Sandy Payette - Fedora - documentation - web service - Web Services Description Language (WSDL) - This object contains a WSDL description of the Fedora Access web service which can be viewed in two document formats. - demo:14 - http://www.fedora.info - unrestricted - - - - - info:fedora/demo:14/RELS-EXT - RELS-EXT - 2008-07-02T05:09:42.484Z - - - - - - - info:fedora/demo:14/RELS-EXT/2008-07-02T05:09:42.484Z - RELS-EXT.0 - 2008-07-02T05:09:42.484Z - - - - - - - - - - - - - info:fedora/demo:14/XML_SOURCE - XML_SOURCE - 2008-07-02T05:09:42.484Z - - - - - - - info:fedora/demo:14/XML_SOURCE/2008-07-02T05:09:42.484Z - XML_SOURCE1.0 - 2008-07-02T05:09:42.484Z - - - XML_SOURCE1.0 - - - - info:fedora/demo:14/XSL_STYLESHEET1 - XSL_STYLESHEET1 - 2008-07-02T05:09:42.484Z - - - - - - - info:fedora/demo:14/XSL_STYLESHEET1/2008-07-02T05:09:42.484Z - XSL_STYLESHEET1.0 - 2008-07-02T05:09:42.484Z - - - XSL_STYLESHEET1.0 - - - - info:fedora/demo:14/XSL_STYLESHEET2 - XSL_STYLESHEET2 - 2008-07-02T05:09:42.484Z - - - - - - - info:fedora/demo:14/XSL_STYLESHEET2/2008-07-02T05:09:42.484Z - XSL_STYLESHEET2.0 - 2008-07-02T05:09:42.484Z - - - XSL_STYLESHEET2.0 - - - diff --git a/fedora/client/demo/atom/local-server-demos/document-transform-demo/sdef_demo_12.xml b/fedora/client/demo/atom/local-server-demos/document-transform-demo/sdef_demo_12.xml deleted file mode 100644 index 9544dbd..0000000 --- a/fedora/client/demo/atom/local-server-demos/document-transform-demo/sdef_demo_12.xml +++ /dev/null @@ -1,83 +0,0 @@ - - - info:fedora/demo:12 - Service Definition Object for Document Transform Demo - 2008-07-02T05:09:42.015Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:12/DC - DC - 2008-07-02T05:09:42.515Z - - - - - - - info:fedora/demo:12/DC/2008-07-02T05:09:42.515Z - DC1.0 - 2008-07-02T05:09:42.515Z - - - - - - Service Definition Object for Document Transform Demo - demo:12 - - - - - info:fedora/demo:12/RELS-EXT - RELS-EXT - 2008-07-02T05:09:42.578Z - - - - - - - info:fedora/demo:12/RELS-EXT/2008-07-02T05:09:42.578Z - RELS-EXT1.0 - 2008-07-02T05:09:42.578Z - - - - - - - - - - - - - info:fedora/demo:12/METHODMAP - METHODMAP - 2008-07-02T05:09:42.515Z - - - - - - - info:fedora/demo:12/METHODMAP/2008-07-02T05:09:42.515Z - METHODMAP1.0 - 2008-07-02T05:09:42.515Z - - - - - - - - - - - - diff --git a/fedora/client/demo/atom/local-server-demos/document-transform-demo/sdep_demo_13.xml b/fedora/client/demo/atom/local-server-demos/document-transform-demo/sdep_demo_13.xml deleted file mode 100644 index cfb5c2b..0000000 --- a/fedora/client/demo/atom/local-server-demos/document-transform-demo/sdep_demo_13.xml +++ /dev/null @@ -1,248 +0,0 @@ - - - info:fedora/demo:13 - Service Deployment Object for Document Transform Demo - 2008-07-02T05:09:42.015Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:13/DC - DC - 2008-07-02T05:09:42.609Z - - - - - - - info:fedora/demo:13/DC/2008-07-02T05:09:42.609Z - DC1.0 - 2008-07-02T05:09:42.609Z - - - - - - Service Deployment Object for Document Transform Demo - demo:13 - - - - - info:fedora/demo:13/RELS-EXT - RELS-EXT - 2008-07-02T05:09:42.609Z - - - - - - - info:fedora/demo:13/RELS-EXT/2008-07-02T05:09:42.609Z - RELS-EXT1.0 - 2008-07-02T05:09:42.609Z - - - - - - - - - - - - - - - info:fedora/demo:13/METHODMAP - METHODMAP - 2008-07-02T05:09:42.609Z - - - - - - - info:fedora/demo:13/METHODMAP/2008-07-02T05:09:42.609Z - METHODMAP1.0 - 2008-07-02T05:09:42.609Z - - - - - - - - - - - - - - - - - - - - - - - - - - info:fedora/demo:13/DSINPUTSPEC - DSINPUTSPEC - 2008-07-02T05:09:42.609Z - - - - - - - info:fedora/demo:13/DSINPUTSPEC/2008-07-02T05:09:42.609Z - DSINPUTSPEC1.0 - 2008-07-02T05:09:42.609Z - - - - - - - XML source file - text/xml - XML source file to be transformed - - - XSLT Stylesheet 1 - text/xml - Stylesheet to produce the transformation output in Style 1 - - - - XSLT Stylesheet 2 - text/xml - Stylesheet to produce the transformation output in Style 2 - - - - - - - info:fedora/demo:13/WSDL - WSDL - 2008-07-02T05:09:42.609Z - - - - - - - info:fedora/demo:13/WSDL/2008-07-02T05:09:42.609Z - WSDL1.0 - 2008-07-02T05:09:42.609Z - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/atom/local-server-demos/formatting-objects-demo/cmodel_demo_FO_TO_PDFDOC.xml b/fedora/client/demo/atom/local-server-demos/formatting-objects-demo/cmodel_demo_FO_TO_PDFDOC.xml deleted file mode 100644 index 228890b..0000000 --- a/fedora/client/demo/atom/local-server-demos/formatting-objects-demo/cmodel_demo_FO_TO_PDFDOC.xml +++ /dev/null @@ -1,85 +0,0 @@ - - - info:fedora/demo:FO_TO_PDFDOC - Content Model Object (FO to PDF) for Formatting Objects Demo - 2007-08-15T14:36:31.126Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:FO_TO_PDFDOC/DC - DC - 2008-07-02T05:09:42.656Z - - - - - - - info:fedora/demo:FO_TO_PDFDOC/DC/2008-07-02T05:09:42.656Z - DC1.0 - 2008-07-02T05:09:42.656Z - - - - - - Content Model Object (FO to PDF) for Formatting Objects Demo - demo:FO_TO_PDFDOC - - - - - info:fedora/demo:FO_TO_PDFDOC/RELS-EXT - RELS-EXT - 2008-07-02T05:09:42.656Z - - - - - - - info:fedora/demo:FO_TO_PDFDOC/RELS-EXT/2008-07-02T05:09:42.656Z - RELS-EXT1.0 - 2008-07-02T05:09:42.656Z - - - - - - - - - - - - - - info:fedora/demo:FO_TO_PDFDOC/DS-COMPOSITE-MODEL - DS-COMPOSITE-MODEL - 2007-08-15T14:36:30.369Z - - - - - - - info:fedora/demo:FO_TO_PDFDOC/DS-COMPOSITE-MODEL/2007-08-15T14:36:30.369Z - DS-COMPOSITE-MODEL1.0 - 2007-08-15T14:36:30.369Z - - - - - - - - - - - - diff --git a/fedora/client/demo/atom/local-server-demos/formatting-objects-demo/cmodel_demo_TEI_TO_PDFDOC.xml b/fedora/client/demo/atom/local-server-demos/formatting-objects-demo/cmodel_demo_TEI_TO_PDFDOC.xml deleted file mode 100644 index 2e80628..0000000 --- a/fedora/client/demo/atom/local-server-demos/formatting-objects-demo/cmodel_demo_TEI_TO_PDFDOC.xml +++ /dev/null @@ -1,90 +0,0 @@ - - - info:fedora/demo:TEI_TO_PDFDOC - Content Model Object (TEI to PDF) for Formatting Objects Demo - 2007-08-15T14:36:31.652Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:TEI_TO_PDFDOC/DC - DC - 2008-07-02T05:09:42.671Z - - - - - - - info:fedora/demo:TEI_TO_PDFDOC/DC/2008-07-02T05:09:42.671Z - DC1.0 - 2008-07-02T05:09:42.671Z - - - - - - Content Model Object (TEI to PDF) for Formatting Objects Demo - demo:TEI_TO_PDFDOC - - - - - info:fedora/demo:TEI_TO_PDFDOC/RELS-EXT - RELS-EXT - 2008-07-02T05:09:42.671Z - - - - - - - info:fedora/demo:TEI_TO_PDFDOC/RELS-EXT/2008-07-02T05:09:42.671Z - RELS-EXT1.0 - 2008-07-02T05:09:42.671Z - - - - - - - - - - - - - - - info:fedora/demo:TEI_TO_PDFDOC/DS-COMPOSITE-MODEL - DS-COMPOSITE-MODEL - 2007-08-15T14:36:30.369Z - - - - - - - info:fedora/demo:TEI_TO_PDFDOC/DS-COMPOSITE-MODEL/2007-08-15T14:36:30.369Z - DS-COMPOSITE-MODEL1.0 - 2007-08-15T14:36:30.369Z - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/atom/local-server-demos/formatting-objects-demo/obj_demo_21.xml b/fedora/client/demo/atom/local-server-demos/formatting-objects-demo/obj_demo_21.xml deleted file mode 100644 index 4f4d2e6..0000000 --- a/fedora/client/demo/atom/local-server-demos/formatting-objects-demo/obj_demo_21.xml +++ /dev/null @@ -1,1902 +0,0 @@ - - - info:fedora/demo:21 - Data Object (FO to PDF) for Formatting Objects Demo - 2008-07-02T05:09:42.015Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:21/DC - DC - 2008-07-02T05:09:42.703Z - - - - - - - info:fedora/demo:21/DC/2008-07-02T05:09:42.703Z - DC1.0 - 2008-07-02T05:09:42.703Z - - - - - - Advanced FO Sample from Apache FOP Distribution - - Apache Group - FOP - FO - Apache - demo:21 - unrestricted - - - - - info:fedora/demo:21/RELS-EXT - RELS-EXT - 2008-07-02T05:09:42.703Z - - - - - - - info:fedora/demo:21/RELS-EXT/2008-07-02T05:09:42.703Z - RELS-EXT1.0 - 2008-07-02T05:09:42.703Z - - - - - - - - - - - - - info:fedora/demo:21/XML_SOURCE - XML_SOURCE - 2008-07-02T05:09:42.703Z - - - - - - - info:fedora/demo:21/XML_SOURCE/2008-07-02T05:09:42.703Z - XML_SOURCE1.0 - 2008-07-02T05:09:42.703Z - - - - - - - - - - - - - - - - - - - - - - - - - - - This is not the latest Fop documentation, but just an fo - example. FOP - p. - - - - - - FOP: An - Open-Source XSL Formatter and Renderer - A) - What is FOP? - FOP is - the world's first print formatter driven by XSL formatting - objects. It is a Java 1.1 application that reads a formatting - object - tree and then turns it into a PDF document. The formatting object - tree, can be in the form of an XML document (output by an XSLT - engine - like XT or Xalan) or can be passed in memory as a DOM Document or - (in - the case of XT) SAX events. - - - FOP is part of Apache's XML Graphics Project. The homepage of - FOP is - - - http://xmlgraphics.apache.org/fop - - - - B) - Downloading FOP - - The latest release version is - - FOP - 0.20.5 - - () - - . - - NOTE: - you do not have to unjar or unzip this jar file. - - Documentation can be downloaded here as - - HMTL file - - - () - - or - as - - PDF file - - - () - - . - - To run - FOP from the command line, see Running FOP. If you are - interested in - embedding FOP in a Java application of your own, see Embedding FOP. - - - You can also download the - - source code - v. 0.20.5 - - () - - as jar file - - C) - Running FOP - 1) Prerequisites - Following - software must be installed: - a) Java - 1.1.x or later - - For the fo-file viewer mode of FOP (see below) you must have the - swing classes installed. - From Java 1.2 on (aka Java 2) they are part of the standard java - distribution. - If you use Java 1.1.x you must seperately include the swing - classes, which can - be found at the - - - Sun website - - (http://java.sun.com/products/jfc/#download-swing) - - . - - - b) An XML parser which supports SAX and DOM like - - Xerces-J - - - (http://xerces.apache.org/xerces-j/index.html) - - . - - - c) If you have to produce the flow objects files, which are the - input for FOP, - you need a transformation utility to create this files from your - xml files. - Normally this is an XSLT stylesheet processor like - - XT - - - (http://www.jclark.com/xml/xt.html) - - or - - XALAN - - - (http://xalan.apache.org/index.html) - - . - - 2) Starting FOP as an standalone - application - There - are three ways to run FOP from the command line. - a) Batch - processing formatting objects (fo) files: - java org.apache.fop.apps.CommandLine fo-file - pdf-file - b) Batch - processing xml files (includes production of the fo-files): - - java org.apache.fop.apps.CommandLine - xml-file xsl-file pdf-file - c) - Previewing the fo-file: - java org.apache.fop.apps.AWTCommandLine - fo-file - Each - method uses next to the fop classes other packages. The - following describes - each method in detail. - a) Method One - One is - to first use an XSLT engine to produce the formatting object - tree as an - XML document and then running the class - org.apache.fop.apps.CommandLine with the - formatting object file name and PDF filename as arguments. You will need - to include - FOP and your XML Parser in your classpath and so you might invoke - - java -cp fop_x_xx_x.jar;xerces.jar - - org.apache.fop.apps.CommandLine fo-file - pdf-file - If your - SAX Parser is other than Xerces, you will need to set the - property - org.xml.sax.parser to the SAX Parser class to use. The following example shows - the command line, if you use XP, the XML parser from James Clark: - - java - -Dorg.xml.sax.parser=com.jclark.xml.sax.Driver - -cp - fop_x_xx_x.jar;sax.jar;xt.jar;xp.jar;xerces.jar - org.apache.fop.apps.AWTCommandLine - formatting-tree-file pdf-file - (You - have to include xerces.jar or another xml parser which supports - DOM in your classpath.) - b) Method Two - Rather - than performing transformation with an XSLT before invoking FOP, - it is - possible, if you use XT as your XSLT engine, to just call FOP and have it - call - XT for you. To do this, run the class - org.apache.fop.apps.CommandLine with the - source XML file name, XSL file name and PDF file name as arguments. - You will - need to include FOP, SAX, your SAX Parser and XT in your classpath - and so you might - invoke - - java - -Dorg.xml.sax.parser=com.jclark.xml.sax.Driver - -cp fop_x_xx_x.jar;xt.jar;xerces.jar - - org.apache.fop.apps.CommandLine xml-file - xsl-file pdf-file - Again, - if your SAX Parser is other than Xerces, you will need to set - the property - org.xml.sax.parser to the SAX Parser class to use. - - c) Method Three - If you - already produced the FO file, you can preview the results of - your - transformation without using any pdf viewer by invoking FOP with the viewer - application. You will need to include FOP and your XML Parser in - your classpath - - java -cp fop_x_xx_x.jar;xerces.jar - - org.apache.fop.apps.AWTCommandLine fo-file - - The - viewer uses the swing classes. - Note: If - you are using java 2 or later (i.e. jdk 1.2. or later) you can - put all - needed jar files into the subdirectory jdk1.2.x\jre\lib\ext (windows - example). Then - FOP can be started without classpath: - - java org.apache.fop.apps.CommandLine fo-file - pdf-file - 3) Running FOP on MacOS - Ensure - that you have a recent MRJ, and that you have downloaded and - unpacked the XP and SAX distributions. The xp.jar and sax.jar - files work - as is on MacOS. - - Drag the - FOP jarfile onto the JBindery icon. When the first dialog - appears, type "org.apache.fop.apps.CommandLine" in the "Class - name" field. - Using UNIX syntax, type the names of the input formatting-object file - and - the output PDF in the "Optional parameters" field. - - Click on - the Classpath icon. To add the xp.jar and sax.jar files, click - the "Add .zip file" button, navigate to the file in question, - and click - Open. - - Once - both are added (the FOP jarfile will already be in the list), - click - Run. A "stdout" window will appear and display FOP runtime messages. - - 4) Problems - - If you have problems running FOP, please have a look at the - - FOP FAQ - - - (faq.html) - - . If you don't find a solution there, - you can ask for help on the list fop-dev@xmlgraphics.apache.org. - Maybe it's bug and - maybe somebody is already working on it. - - D) - Embedding FOP - Instantiate - org.apache.fop.apps.Driver. Once this class is - instantiated, methods are called to set the - Renderer to use, the (possibly multiple) ElementMapping(s) to - use and the PrintWriter to use to output the results of the - rendering (where applicable). In the case of the Renderer and - ElementMapping(s), the Driver may be supplied either with the - object itself, or the name of the class, in which case Driver - will - instantiate the class itself. The advantage of the latter is it - enables runtime determination of Renderer and ElementMapping(s). - - Once the - Driver is set up, the buildFOTree method - is called. Depending on whether DOM or SAX is being used, the - invocation of the method is either buildFOTree(Document) or - buildFOTree(Parser, InputSource) respectively. - - A third - possibility may be used to build the FO Tree, namely - calling getDocumentHandler() and firing the SAX events yourself. - - Once the - FO Tree is built, the format() and render() methods may be - called in that order. - - Here is - an example use of Driver from CommandLine.java: - Driver driver = new Driver(); - driver.setRenderer("org.apache.fop.render.pdf.PDFRenderer", - version); - driver.addElementMapping("org.apache.fop.fo.StandardElementMapping"); - - driver.addElementMapping("org.apache.fop.svg.SVGElementMapping"); - - driver.setWriter(new PrintWriter(new - FileWriter(args[1]))); - driver.buildFOTree(parser, - fileInputSource(args[0])); - driver.format(); - driver.render(); - E) - What's Implemented? - Also see - STATUS for what is being worked on. - 1) Formatting Objects - - - - - - - - - root - - - - - - - - - - layout-master-set - - - - - - - - - - simple-page-master - - - - - - - - - - region-body - - - - - - - - - - region-before - - - - - - - - - - region-after - - - - - - - - - - page-sequence - - - - - - - - - - sequence-specification - - - - - - - - - - sequence-specifier-single - - - - - - - - - - sequence-specifier-repeating - - - - - - - - - - sequence-specifier-alternating - - - - - - - - - - flow - - - - - - - - - - static-content - - - - - - - - - - block - - - - - - - - - - list-block - - - - - - - - - - list-item - - - - - - - - - - list-item-label - - - - - - - - - - list-item-body - - - - - - - - - - page-number - - - - - - - - - - display-sequence - - - - - - - - - - inline - - - - - - - - - - display-rule - - - - - - - - - - display-graphic - - - - - - - - - - table (minimal support) - - - - - - - - - - table-column (minimal support) - - - - - - - - - - table-body (minimal support) - - - - - - - - - - table-row (minimal support) - - - - - - - - - - table-cell (minimal support) - - - - 2) Properties - - - - - - - - - end-indent - - - - - - - - - - page-master-name - - - - - - - - - - page-master-first - - - - - - - - - - page-master-repeating - - - - - - - - - - page-master-odd - - - - - - - - - - page-master-even - - - - - - - - - - margin-top (only on pages and regions) - - - - - - - - - - margin-bottom (only on pages and regions) - - - - - - - - - - margin-left (only on pages and regions) - - - - - - - - - - margin-right (only on pages and regions) - - - - - - - - - - extent - - - - - - - - - - page-width - - - - - - - - - - page-height - - - - - - - - - - flow-name - - - - - - - - - - font-family - - - - - - - - - - font-style - - - - - - - - - - font-weight - - - - - - - - - - font-size - - - - - - - - - - line-height - - - - - - - - - - text-align - - - - - - - - - - text-align-last - - - - - - - - - - space-before.optimum - - - - - - - - - - space-after.optimum - - - - - - - - - - start-indent - - - - - - - - - - end-indent - - - - - - - - - - provisional-distance-between-starts - - - - - - - - - - provisional-label-separation - - - - - - - - - - rule-thickness - - - - - - - - - - color - - - - - - - - - - wrap-option - - - - - - - - - - white-space-treatment - - - - - - - - - - break-before - - - - - - - - - - break-after - - - - - - - - - - text-indent - - - - - - - - - - href - - - - - - - - - - column-width - - - - - - - - - - background-color - - - - - - - - - - padding-top (only in conjunction with background - color) - - - - - - - - - - padding-left (only in conjunction with background - color) - - - - - - - - - - padding-bottom (only in conjunction with background - color) - - - - - - - - - - padding-right (only in conjunction with background - color) - - - - F) - Limitations - Although - FOP implements the above listed fo objects and properties, - sometimes it does so - only in a limited way. - - list-block - The fo - working draft allows describes two ways to markup lists.The - list-block must have as - children either: 1) pairs of fo:list-item-label and fo:list-item-body - formatting objects, or - 2) fo:list-item formatting objects. - At the - moment FOP only implements the second way. Therefore a list has - a basic structure like this: - <fo:list-block> - <fo:list-item> - <fo:list-item-label><fo:block></fo:block></fo:list-item-label> - - <fo:list-item-body><fo:block></fo:block></fo:list-item-body> - - </fo:list-item> - </fo:list-block> - Padding - Padding - works in conjunction with indents and spaces. It is only - implemented - for blocks. At the moment padding can't be used to make extra space - (indents+spaces - must be used), but only to control how much the background-color - extends beyond - the content rectangle. - - Tables - There - two limitations for tables: 1) FOP needs you to explicitly - specify column widths - 2) Cells have to contain block-level FOs. They can't contain - straight character data. - - A - working basic example of a table looks like this: - <fo:table> - <fo:table-column - column-width="150pt"/> - <fo:table-column - column-width="150pt"/> - <fo:table-body font-size="10pt" - font-family="sans-serif"> - <fo:table-row> - <fo:table-cell> - <fo:block>text</fo:block> - - </fo:table-cell> - <fo:table-cell> - <fo:block>text</fo:block> - - </fo:table-cell> - </fo:table-row> - <fo:table-row> - <fo:table-cell> - <fo:block>text</fo:block> - - </fo:table-cell> - <fo:table-cell> - <fo:block>text</fo:block> - - </fo:table-cell> - </fo:table-row> - <fo:table-row> - <fo:table-cell> - <fo:block>text</fo:block> - - </fo:table-cell> - <fo:table-cell> - <fo:block>text</fo:block> - - </fo:table-cell> - </fo:table-row> - </fo:table-body> - </fo:table> - G) - Bugs - see - STATUS file - H) - Compiling FOP - 1. Prerequisites - a) Java 1.1.x or later - - If you use Java 1.1.x you must also seperately include the swing - classes, which can - be found at the - - - Sun website - - (http://java.sun.com/products/jfc/#download-swing) - - . From Java 1.2 on (aka Java 2) they are part of the standard - distribution. - - b) An XML parser - - An XML parser which supports DOM like - - Xerces-J - - - (http://xerces.apache.org/xerces-j/index.html) - - . - - c) XT from James Clark - Some of - the Java source code in FOP is generated from XML using - XSLT. XT must be used to generate this code. - - XT is an XSL stylesheet processor written in java. At the moment - you - can't use any other processor, because the make file makes use of - some - proprietary features of Clark's xt which allow to write output in more - then one document. You can find XT at - - - James Clark's website - - (http://www.jclark.com/xml/xt.html) - - . You have to use XT version 19991105 or later. - - (Under - windows you shouldn't use the prepackaged xt.exe but also the - generic jar file, otherwise make won't work) - - - XT relies on an sax parser like XP (also J. Clark), which can be - downloaded at - - James - Clark's Website - - (http://www.jclark.com/xml/xp/index.html) - - - d) make - - Under windows it has been reported that the use of the cygnus - solutions port - of the GNU utilities works. You can find it at - - Cygnus - Solutions - - (http://sourceware.cygnus.com/cygwin/) - - - Compiling FOP on MacOS - We - strongly recommend the use of Codewarrior Java. This Readme will - contain a link to more information in the near future. - - I) - Getting involved - 1. - Subscribe to fop-dev@xmlgraphics.apache.org by sending an email - to fop-dev-subscribe@xmlgraphics.apache.org - 2. Read - the archives to fop-dev to get an idea of the issues being - discussed. - 3. - Subscribe to fop-cvs@xmlgraphics.apache.org by sending an email - to - fop-cvs-subscribe@xmlgraphics.apache.org (it is important - that you follow changes being made). - 4. Try - :-) to wrap your head around the XSL working draft. - 5. Get - CVS working on your system. - 6. Ask, - on fop-dev, any questions you have at all about the code, - design, etc. - 7. When - you feel comfortable modifying the code, send diffs to - fop-dev with your contributions. - 8. Have - fun! - J) - FOP Relevant Specifications - - - - - - - - - - XML - Recommendation - - ( - - http://www.w3.org/TR/REC-xml - - ) - - - - - - - - - - - - - XSL-FO - Working Draft - - ( - - http://www.w3.org/TR/WD-xsl/ - - ) - - - - - - - - - - - - - XSLT - Recommendation - - ( - - http://www.w3.org/TR/xslt - - ) - - - - - - - - - - - - - PDF - Documentation - - ( - - http://partners.adobe.com/asn/developer/acrosdk/DOCS/pdfspec.pdf - - ) - - - - - - - - - - - - - Simple - API for XML (SAX) - - ( - - http://www.megginson.com/SAX/ - - ) - - - - - - - - - - - - - Document - Object Model (DOM) - - ( - - http://www.w3.org/TR/REC-DOM-Level-1 - - ) - - - - - - - - - - - - - Namespaces - in XML Recommendation - - ( - - http://www.w3.org/TR/REC-xml-names/ - - ) - - - - - - - - - - - - - Java JDK - 1.1 Documentation - - ( - - http://java.sun.com/products/jdk/1.1/docs/index.html - - ) - - - - - - K) - Licence - - =================================================================== - - The - Apache Software License, Version 1.1 - - =================================================================== - - - Copyright (C) 1999 The Apache Software Foundation. All rights - reserved. - - Redistribution and use in source and binary forms, with or - without modification, - 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 "FOP" 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 - apache@apache.org. - - 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 and was originally - created by - James Tauber <jtauber@jtauber.com>. For more information on the - Apache - Software Foundation, please see - - http://www.apache.org/ - - - (http://www.apache.org/) - - . - - - Content - - - - - - - - - A) - - - - - What is FOP? - - - - - - - - - - - B) - - - - - Downloading FOP - - - - - - - - - - - C) - - - - - Running FOP - - - - - - - - - - - D) - - - - - Embedding FOP - - - - - - - - - - - E) - - - - - What's Implemented? - - - - - - - - - - - F) - - - - - Limitations - - - - - - - - - - - G) - - - - - Bugs - - - - - - - - - - - H) - - - - - Compiling FOP - - - - - - - - - - - I) - - - - - Getting involved - - - - - - - - - - - J) - - - - - FOP Relevant Specifications - - - - - - - - - - - - K) - - - - - Licence - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/atom/local-server-demos/formatting-objects-demo/obj_demo_26.xml b/fedora/client/demo/atom/local-server-demos/formatting-objects-demo/obj_demo_26.xml deleted file mode 100644 index 523d8d2..0000000 --- a/fedora/client/demo/atom/local-server-demos/formatting-objects-demo/obj_demo_26.xml +++ /dev/null @@ -1,131 +0,0 @@ - - - info:fedora/demo:26 - Data Object (TEI to PDF) for Formatting Objects Demo - 2008-07-02T05:09:42.015Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:26/DC - DC - 2008-07-02T05:09:42.765Z - - - - - - - info:fedora/demo:26/DC/2008-07-02T05:09:42.765Z - DC1.0 - 2008-07-02T05:09:42.765Z - - - - - - The Purple Cow - Frank Gelett Burgess - demo:26 - unrestricted - - - - - info:fedora/demo:26/RELS-EXT - RELS-EXT - 2008-07-02T05:09:42.765Z - - - - - - - info:fedora/demo:26/RELS-EXT/2008-07-02T05:09:42.765Z - RELS-EXT1.0 - 2008-07-02T05:09:42.765Z - - - - - - - - - - - - - info:fedora/demo:26/XML_SOURCE - XML_SOURCE - 2008-07-02T05:09:42.765Z - - - - - - - info:fedora/demo:26/XML_SOURCE/2008-07-02T05:09:42.765Z - XML_SOURCE1.0 - 2008-07-02T05:09:42.765Z - - - XML_SOURCE1.0 - - - - info:fedora/demo:26/TEI_SOURCE - TEI_SOURCE - 2008-07-02T05:09:42.765Z - - - - - - - info:fedora/demo:26/TEI_SOURCE/2008-07-02T05:09:42.765Z - TEI_SOURCE1.0 - 2008-07-02T05:09:42.765Z - - - - - - - - The Purple Cow - Frank Gelett Burgess - - -

Text entry by - Walter Underwood(wunder@infoseek.com) on - - 1999-02-01. This transcription is in the public domain.

-
- -

From the - The Lark, San Fransicsco, - 1896.

-
-
-
- - - - The Purple Cow - - I never saw a purple cow, - I never hope to see one; - But I can tell you, anyhow, - I'd rather see than be one. - - - - -
-
-
-
diff --git a/fedora/client/demo/atom/local-server-demos/formatting-objects-demo/sdef_demo_19.xml b/fedora/client/demo/atom/local-server-demos/formatting-objects-demo/sdef_demo_19.xml deleted file mode 100644 index 3e473b3..0000000 --- a/fedora/client/demo/atom/local-server-demos/formatting-objects-demo/sdef_demo_19.xml +++ /dev/null @@ -1,81 +0,0 @@ - - - info:fedora/demo:19 - Service Definition Object (PDF) for Formatting Objects Demo - 2008-07-02T05:09:42.015Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:19/DC - DC - 2008-07-02T05:09:42.781Z - - - - - - - info:fedora/demo:19/DC/2008-07-02T05:09:42.781Z - DC1.0 - 2008-07-02T05:09:42.781Z - - - - - - Service Definition Object (PDF) for Formatting Objects Demo - demo:19 - - - - - info:fedora/demo:19/RELS-EXT - RELS-EXT - 2008-07-02T05:09:42.781Z - - - - - - - info:fedora/demo:19/RELS-EXT/2008-07-02T05:09:42.781Z - RELS-EXT1.0 - 2008-07-02T05:09:42.781Z - - - - - - - - - - - - - info:fedora/demo:19/METHODMAP - METHODMAP - 2008-07-02T05:09:42.781Z - - - - - - - info:fedora/demo:19/METHODMAP/2008-07-02T05:09:42.781Z - METHODMAP1.0 - 2008-07-02T05:09:42.781Z - - - - - - - - - - diff --git a/fedora/client/demo/atom/local-server-demos/formatting-objects-demo/sdef_demo_22.xml b/fedora/client/demo/atom/local-server-demos/formatting-objects-demo/sdef_demo_22.xml deleted file mode 100644 index f8829f6..0000000 --- a/fedora/client/demo/atom/local-server-demos/formatting-objects-demo/sdef_demo_22.xml +++ /dev/null @@ -1,81 +0,0 @@ - - - info:fedora/demo:22 - Service Definition Object (FO) for Formatting Objects Demo - 2008-07-02T05:09:42.015Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:22/DC - DC - 2008-07-02T05:09:42.812Z - - - - - - - info:fedora/demo:22/DC/2008-07-02T05:09:42.812Z - DC1.0 - 2008-07-02T05:09:42.812Z - - - - - - Service Definition Object (FO) for Formatting Objects Demo - demo:22 - - - - - info:fedora/demo:22/RELS-EXT - RELS-EXT - 2008-07-02T05:09:42.812Z - - - - - - - info:fedora/demo:22/RELS-EXT/2008-07-02T05:09:42.812Z - RELS-EXT1.0 - 2008-07-02T05:09:42.812Z - - - - - - - - - - - - - info:fedora/demo:22/METHODMAP - METHODMAP - 2008-07-02T05:09:42.812Z - - - - - - - info:fedora/demo:22/METHODMAP/2008-07-02T05:09:42.812Z - METHODMAP1.0 - 2008-07-02T05:09:42.812Z - - - - - - - - - - diff --git a/fedora/client/demo/atom/local-server-demos/formatting-objects-demo/sdep_demo_20.xml b/fedora/client/demo/atom/local-server-demos/formatting-objects-demo/sdep_demo_20.xml deleted file mode 100644 index 4318272..0000000 --- a/fedora/client/demo/atom/local-server-demos/formatting-objects-demo/sdep_demo_20.xml +++ /dev/null @@ -1,175 +0,0 @@ - - - info:fedora/demo:20 - Service Deployment Object (FO to PDF) for Formatting Objects Demo - 2008-07-02T05:09:42.015Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:20/DC - DC - 2008-07-02T05:09:42.828Z - - - - - - - info:fedora/demo:20/DC/2008-07-02T05:09:42.828Z - DC1.0 - 2008-07-02T05:09:42.828Z - - - - - - Service Deployment Object (FO to PDF) for Formatting Objects Demo - demo:20 - - - - - info:fedora/demo:20/RELS-EXT - RELS-EXT - 2008-07-02T05:09:42.828Z - - - - - - - info:fedora/demo:20/RELS-EXT/2008-07-02T05:09:42.828Z - RELS-EXT1.0 - 2008-07-02T05:09:42.828Z - - - - - - - - - - - - - - - - info:fedora/demo:20/METHODMAP - METHODMAP - 2008-07-02T05:09:42.828Z - - - - - - - info:fedora/demo:20/METHODMAP/2008-07-02T05:09:42.828Z - METHODMAP1.0 - 2008-07-02T05:09:42.828Z - - - - - - - - - - - - - - info:fedora/demo:20/DSINPUTSPEC - DSINPUTSPEC - 2008-07-02T05:09:42.828Z - - - - - - - info:fedora/demo:20/DSINPUTSPEC/2008-07-02T05:09:42.828Z - DSINPUTSPEC1.0 - 2008-07-02T05:09:42.828Z - - - - - - - XML source file - text/xml - XML source file to be transformed - - - - - - info:fedora/demo:20/WSDL - WSDL - 2008-07-02T05:09:42.828Z - - - - - - - info:fedora/demo:20/WSDL/2008-07-02T05:09:42.828Z - WSDL1.0 - 2008-07-02T05:09:42.828Z - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/atom/local-server-demos/formatting-objects-demo/sdep_demo_25.xml b/fedora/client/demo/atom/local-server-demos/formatting-objects-demo/sdep_demo_25.xml deleted file mode 100644 index f42ea59..0000000 --- a/fedora/client/demo/atom/local-server-demos/formatting-objects-demo/sdep_demo_25.xml +++ /dev/null @@ -1,175 +0,0 @@ - - - info:fedora/demo:25 - Service Deployment Object (TEI to FO) for Formatting Objects Demo - 2008-07-02T05:09:42.015Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:25/DC - DC - 2008-07-02T05:09:42.859Z - - - - - - - info:fedora/demo:25/DC/2008-07-02T05:09:42.859Z - DC1.0 - 2008-07-02T05:09:42.859Z - - - - - - Service Deployment Object (TEI to FO) for Formatting Objects Demo - demo:25 - - - - - info:fedora/demo:25/RELS-EXT - RELS-EXT - 2008-07-02T05:09:42.859Z - - - - - - - info:fedora/demo:25/RELS-EXT/2008-07-02T05:09:42.859Z - RELS-EXT1.0 - 2008-07-02T05:09:42.859Z - - - - - - - - - - - - - - - info:fedora/demo:25/METHODMAP - METHODMAP - 2008-07-02T05:09:42.859Z - - - - - - - info:fedora/demo:25/METHODMAP/2008-07-02T05:09:42.859Z - METHODMAP1.0 - 2008-07-02T05:09:42.859Z - - - - - - - - - - - - - - info:fedora/demo:25/DSINPUTSPEC - DSINPUTSPEC - 2008-07-02T05:09:42.859Z - - - - - - - info:fedora/demo:25/DSINPUTSPEC/2008-07-02T05:09:42.859Z - DSINPUTSPEC1.0 - 2008-07-02T05:09:42.859Z - - - - - - - TEI source file - text/xml - XML source file in TEI format, to be transformed to FO format - - - - - - - info:fedora/demo:25/WSDL - WSDL - 2008-07-02T05:09:42.859Z - - - - - - - info:fedora/demo:25/WSDL/2008-07-02T05:09:42.859Z - WSDL1.0 - 2008-07-02T05:09:42.859Z - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/atom/local-server-demos/image-collection-demo/cModelObjects/demo_DualResImage.xml b/fedora/client/demo/atom/local-server-demos/image-collection-demo/cModelObjects/demo_DualResImage.xml deleted file mode 100644 index e01f275..0000000 --- a/fedora/client/demo/atom/local-server-demos/image-collection-demo/cModelObjects/demo_DualResImage.xml +++ /dev/null @@ -1,94 +0,0 @@ - - - info:fedora/demo:DualResImage - Content Model Object (Image) for Image Collection Demo - 2007-08-15T15:59:20.453Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:DualResImage/DC - DC - 2008-07-02T05:09:42.890Z - - - - - - - info:fedora/demo:DualResImage/DC/2008-07-02T05:09:42.890Z - DC1.0 - 2008-07-02T05:09:42.890Z - - - - - - Content Model Object (Image) for Image Collection Demo - demo:DualResImage - - - - - info:fedora/demo:DualResImage/RELS-EXT - RELS-EXT - 2008-07-02T05:09:42.890Z - - - - - - - info:fedora/demo:DualResImage/RELS-EXT/2008-07-02T05:09:42.890Z - RELS-EXT.0 - 2008-07-02T05:09:42.890Z - - - - - - - - - - - - - - info:fedora/demo:DualResImage/DS-COMPOSITE-MODEL - DS-COMPOSITE-MODEL - 2007-08-15T14:36:30.369Z - - - - - - - info:fedora/demo:DualResImage/DS-COMPOSITE-MODEL/2007-08-15T14:36:30.369Z - DS-COMPOSITE-MODEL1.0 - 2007-08-15T14:36:30.369Z - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/atom/local-server-demos/image-collection-demo/cModelObjects/demo_DualResImageCollection.xml b/fedora/client/demo/atom/local-server-demos/image-collection-demo/cModelObjects/demo_DualResImageCollection.xml deleted file mode 100644 index 772d7e8..0000000 --- a/fedora/client/demo/atom/local-server-demos/image-collection-demo/cModelObjects/demo_DualResImageCollection.xml +++ /dev/null @@ -1,93 +0,0 @@ - - - info:fedora/demo:DualResImageCollection - Content Model Object (Image Collection) for Image Collection Demo - 2007-08-15T15:59:20.233Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:DualResImageCollection/DC - DC - 2008-07-02T05:09:42.906Z - - - - - - - info:fedora/demo:DualResImageCollection/DC/2008-07-02T05:09:42.906Z - DC1.0 - 2008-07-02T05:09:42.906Z - - - - - - Content Model Object (Image Collection) for Image Collection Demo - demo:DualResImageCollection - - - - - info:fedora/demo:DualResImageCollection/RELS-EXT - RELS-EXT - 2008-07-02T05:09:42.906Z - - - - - - - info:fedora/demo:DualResImageCollection/RELS-EXT/2008-07-02T05:09:42.906Z - RELS-EXT.0 - 2008-07-02T05:09:42.906Z - - - - - - - - - - - - - - info:fedora/demo:DualResImageCollection/DS-COMPOSITE-MODEL - DS-COMPOSITE-MODEL - 2007-08-15T14:36:30.369Z - - - - - - - info:fedora/demo:DualResImageCollection/DS-COMPOSITE-MODEL/2007-08-15T14:36:30.369Z - DS-COMPOSITE-MODEL1.0 - 2007-08-15T14:36:30.369Z - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyBeerGlass.xml b/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyBeerGlass.xml deleted file mode 100644 index b1023ee..0000000 --- a/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyBeerGlass.xml +++ /dev/null @@ -1,103 +0,0 @@ - - - info:fedora/demo:SmileyBeerGlass - Data Object (Smiley Beer Glass) for Image Collection Demo - 2008-07-02T05:09:42.015Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:SmileyBeerGlass/DC - DC - 2008-07-02T05:09:42.921Z - - - - - - - info:fedora/demo:SmileyBeerGlass/DC/2008-07-02T05:09:42.921Z - DC.1 - 2008-07-02T05:09:42.921Z - - - - - - Smiley Beer Glass - I guess you could drink other things out of it, but I haven't tried. - demo:SmileyBeerGlass - - - - - info:fedora/demo:SmileyBeerGlass/RELS-EXT - RELS-EXT - 2008-07-02T05:09:42.921Z - - - - - - - info:fedora/demo:SmileyBeerGlass/RELS-EXT/2008-07-02T05:09:42.921Z - RELS-EXT.0 - 2008-07-02T05:09:42.921Z - - - - - - - - - - - - - - info:fedora/demo:SmileyBeerGlass/MEDIUM_SIZE - MEDIUM_SIZE - 2008-07-02T05:09:42.921Z - - - - - - - info:fedora/demo:SmileyBeerGlass/MEDIUM_SIZE/2008-07-02T05:09:42.921Z - MediumSize.jpg.0 - 2008-07-02T05:09:42.921Z - - - MediumSize.jpg.0 - - - - info:fedora/demo:SmileyBeerGlass/FULL_SIZE - FULL_SIZE - 2008-07-02T05:09:42.921Z - - - - - - - info:fedora/demo:SmileyBeerGlass/FULL_SIZE/2008-07-02T05:09:42.921Z - FullSize.jpg.0 - 2008-07-02T05:09:42.921Z - - - FullSize.jpg.0 - - - diff --git a/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyBucket.xml b/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyBucket.xml deleted file mode 100644 index 4b2f792..0000000 --- a/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyBucket.xml +++ /dev/null @@ -1,102 +0,0 @@ - - - info:fedora/demo:SmileyBucket - Data Object (Smiley Bucket) for Image Collection Demo - 2008-07-02T05:09:42.015Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:SmileyBucket/DC - DC - 2008-07-02T05:09:42.937Z - - - - - - - info:fedora/demo:SmileyBucket/DC/2008-07-02T05:09:42.937Z - DC.1 - 2008-07-02T05:09:42.937Z - - - - - - Smiley Bucket - This bucket can be used for sand, flour, sugar, dirt, paint, and water. - demo:SmileyBucket - - - - - info:fedora/demo:SmileyBucket/RELS-EXT - RELS-EXT - 2008-07-02T05:09:42.937Z - - - - - - - info:fedora/demo:SmileyBucket/RELS-EXT/2008-07-02T05:09:42.937Z - RELS-EXT.0 - 2008-07-02T05:09:42.937Z - - - - - - - - - - - - - - info:fedora/demo:SmileyBucket/MEDIUM_SIZE - MEDIUM_SIZE - 2008-07-02T05:09:42.937Z - - - - - - - info:fedora/demo:SmileyBucket/MEDIUM_SIZE/2008-07-02T05:09:42.937Z - MediumSize.jpg.0 - 2008-07-02T05:09:42.937Z - - - MediumSize.jpg.0 - - - - info:fedora/demo:SmileyBucket/FULL_SIZE - FULL_SIZE - 2008-07-02T05:09:42.937Z - - - - - - - info:fedora/demo:SmileyBucket/FULL_SIZE/2008-07-02T05:09:42.937Z - FullSize.jpg.0 - 2008-07-02T05:09:42.937Z - - - FullSize.jpg.0 - - - diff --git a/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyDinnerware.xml b/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyDinnerware.xml deleted file mode 100644 index 27b19ad..0000000 --- a/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyDinnerware.xml +++ /dev/null @@ -1,103 +0,0 @@ - - - info:fedora/demo:SmileyDinnerware - Data Object (Smiley Dinnerware) for Image Collection Demo - 2008-07-02T05:09:42.015Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:SmileyDinnerware/DC - DC - 2008-07-02T05:09:42.968Z - - - - - - - info:fedora/demo:SmileyDinnerware/DC/2008-07-02T05:09:42.968Z - DC.1 - 2008-07-02T05:09:42.968Z - - - - - - Smiley Dinnerware - Made from 100% pure paper and plastic, this dinnerware is sure to impress your kids. - demo:SmileyDinnerware - - - - - info:fedora/demo:SmileyDinnerware/RELS-EXT - RELS-EXT - 2008-07-02T05:09:42.968Z - - - - - - - info:fedora/demo:SmileyDinnerware/RELS-EXT/2008-07-02T05:09:42.968Z - RELS-EXT.0 - 2008-07-02T05:09:42.968Z - - - - - - - - - - - - - - info:fedora/demo:SmileyDinnerware/MEDIUM_SIZE - MEDIUM_SIZE - 2008-07-02T05:09:42.968Z - - - - - - - info:fedora/demo:SmileyDinnerware/MEDIUM_SIZE/2008-07-02T05:09:42.968Z - MediumSize.jpg.0 - 2008-07-02T05:09:42.968Z - - - MediumSize.jpg.0 - - - - info:fedora/demo:SmileyDinnerware/FULL_SIZE - FULL_SIZE - 2008-07-02T05:09:42.968Z - - - - - - - info:fedora/demo:SmileyDinnerware/FULL_SIZE/2008-07-02T05:09:42.968Z - FullSize.jpg.0 - 2008-07-02T05:09:42.968Z - - - FullSize.jpg.0 - - - diff --git a/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyEarring.xml b/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyEarring.xml deleted file mode 100644 index 8a2c90e..0000000 --- a/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyEarring.xml +++ /dev/null @@ -1,103 +0,0 @@ - - - info:fedora/demo:SmileyEarring - Data Object (Smiley Earring) for Image Collection Demo - 2008-07-02T05:09:42.015Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:SmileyEarring/DC - DC - 2008-07-02T05:09:42.984Z - - - - - - - info:fedora/demo:SmileyEarring/DC/2008-07-02T05:09:42.984Z - DC.1 - 2008-07-02T05:09:42.984Z - - - - - - Smiley Earring - Smiling from ear to ear. - demo:SmileyEarring - - - - - info:fedora/demo:SmileyEarring/RELS-EXT - RELS-EXT - 2008-07-02T05:09:42.984Z - - - - - - - info:fedora/demo:SmileyEarring/RELS-EXT/2008-07-02T05:09:42.984Z - RELS-EXT.0 - 2008-07-02T05:09:42.984Z - - - - - - - - - - - - - - info:fedora/demo:SmileyEarring/MEDIUM_SIZE - MEDIUM_SIZE - 2008-07-02T05:09:42.984Z - - - - - - - info:fedora/demo:SmileyEarring/MEDIUM_SIZE/2008-07-02T05:09:42.984Z - MediumSize.jpg.0 - 2008-07-02T05:09:42.984Z - - - MediumSize.jpg.0 - - - - info:fedora/demo:SmileyEarring/FULL_SIZE - FULL_SIZE - 2008-07-02T05:09:42.984Z - - - - - - - info:fedora/demo:SmileyEarring/FULL_SIZE/2008-07-02T05:09:42.984Z - FullSize.jpg.0 - 2008-07-02T05:09:42.984Z - - - FullSize.jpg.0 - - - diff --git a/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyGreetingCard.xml b/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyGreetingCard.xml deleted file mode 100644 index be94346..0000000 --- a/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyGreetingCard.xml +++ /dev/null @@ -1,134 +0,0 @@ - - - info:fedora/demo:SmileyGreetingCard - Data Object (Smiley Greeting Card) for Image Collection Demo - 2008-07-02T05:09:42.015Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:SmileyGreetingCard/DC - DC - 2008-07-02T05:09:43.000Z - - - - - - - info:fedora/demo:SmileyGreetingCard/DC/2008-07-02T05:09:43.000Z - DC.1 - 2008-07-02T05:09:43.000Z - - - - - - Smiley Greeting Card - Great for people who still use snail mail. - demo:SmileyGreetingCard - - - - - info:fedora/demo:SmileyGreetingCard/RELS-EXT - RELS-EXT - 2008-07-02T05:09:43.000Z - - - - - - - info:fedora/demo:SmileyGreetingCard/RELS-EXT/2008-07-02T05:09:43.000Z - RELS-EXT.0 - 2008-07-02T05:09:43.000Z - - - - - - - - - - - - - - - info:fedora/demo:SmileyGreetingCard/RELS-INT - RELS-INT - 2009-07-01T14:23:00.046Z - - - - - - - info:fedora/demo:SmileyGreetingCard/RELS-INT/2009-07-01T14:23:00.046Z - RELS-INT.0 - 2009-07-01T14:23:00.046Z - - - - - - - 320 - 240 - - - 800 - 600 - - - - - - info:fedora/demo:SmileyGreetingCard/MEDIUM_SIZE - MEDIUM_SIZE - 2008-07-02T05:09:43.000Z - - - - - - - info:fedora/demo:SmileyGreetingCard/MEDIUM_SIZE/2008-07-02T05:09:43.000Z - MediumSize.jpg.0 - 2008-07-02T05:09:43.000Z - - - MediumSize.jpg.0 - - - - info:fedora/demo:SmileyGreetingCard/FULL_SIZE - FULL_SIZE - 2008-07-02T05:09:43.000Z - - - - - - - info:fedora/demo:SmileyGreetingCard/FULL_SIZE/2008-07-02T05:09:43.000Z - FullSize.jpg.0 - 2008-07-02T05:09:43.000Z - - - FullSize.jpg.0 - - - diff --git a/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyKeychain.xml b/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyKeychain.xml deleted file mode 100644 index 4d4e57b..0000000 --- a/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyKeychain.xml +++ /dev/null @@ -1,103 +0,0 @@ - - - info:fedora/demo:SmileyKeychain - Data Object (Smiley Keychain) for Image Collection Demo - 2008-07-02T05:09:42.015Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:SmileyKeychain/DC - DC - 2008-07-02T05:09:43.015Z - - - - - - - info:fedora/demo:SmileyKeychain/DC/2008-07-02T05:09:43.015Z - DC.1 - 2008-07-02T05:09:43.015Z - - - - - - Smiley Keychain - It dangles from side to side while you're driving. - demo:SmileyKeychain - - - - - info:fedora/demo:SmileyKeychain/RELS-EXT - RELS-EXT - 2008-07-02T05:09:43.015Z - - - - - - - info:fedora/demo:SmileyKeychain/RELS-EXT/2008-07-02T05:09:43.015Z - RELS-EXT.0 - 2008-07-02T05:09:43.015Z - - - - - - - - - - - - - - info:fedora/demo:SmileyKeychain/MEDIUM_SIZE - MEDIUM_SIZE - 2008-07-02T05:09:43.015Z - - - - - - - info:fedora/demo:SmileyKeychain/MEDIUM_SIZE/2008-07-02T05:09:43.015Z - MediumSize.jpg.0 - 2008-07-02T05:09:43.015Z - - - MediumSize.jpg.0 - - - - info:fedora/demo:SmileyKeychain/FULL_SIZE - FULL_SIZE - 2008-07-02T05:09:43.015Z - - - - - - - info:fedora/demo:SmileyKeychain/FULL_SIZE/2008-07-02T05:09:43.015Z - FullSize.jpg.0 - 2008-07-02T05:09:43.015Z - - - FullSize.jpg.0 - - - diff --git a/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyNightlight.xml b/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyNightlight.xml deleted file mode 100644 index f734876..0000000 --- a/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyNightlight.xml +++ /dev/null @@ -1,103 +0,0 @@ - - - info:fedora/demo:SmileyNightlight - Data Object (Smiley Nightlight) for Image Collection Demo - 2008-07-02T05:09:42.015Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:SmileyNightlight/DC - DC - 2008-07-02T05:09:43.015Z - - - - - - - info:fedora/demo:SmileyNightlight/DC/2008-07-02T05:09:43.015Z - DC.1 - 2008-07-02T05:09:43.015Z - - - - - - Smiley Nightlight - Simple operation: push on, push off. Very amusing for people who like to push things. - demo:SmileyNightlight - - - - - info:fedora/demo:SmileyNightlight/RELS-EXT - RELS-EXT - 2008-07-02T05:09:43.015Z - - - - - - - info:fedora/demo:SmileyNightlight/RELS-EXT/2008-07-02T05:09:43.015Z - RELS-EXT.0 - 2008-07-02T05:09:43.015Z - - - - - - - - - - - - - - info:fedora/demo:SmileyNightlight/MEDIUM_SIZE - MEDIUM_SIZE - 2008-07-02T05:09:43.015Z - - - - - - - info:fedora/demo:SmileyNightlight/MEDIUM_SIZE/2008-07-02T05:09:43.015Z - MediumSize.jpg.0 - 2008-07-02T05:09:43.015Z - - - MediumSize.jpg.0 - - - - info:fedora/demo:SmileyNightlight/FULL_SIZE - FULL_SIZE - 2008-07-02T05:09:43.015Z - - - - - - - info:fedora/demo:SmileyNightlight/FULL_SIZE/2008-07-02T05:09:43.015Z - FullSize.jpg.0 - 2008-07-02T05:09:43.015Z - - - FullSize.jpg.0 - - - diff --git a/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyPens.xml b/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyPens.xml deleted file mode 100644 index 4dfc5eb..0000000 --- a/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyPens.xml +++ /dev/null @@ -1,130 +0,0 @@ - - - info:fedora/demo:SmileyPens - Data Object (Smiley Pens) for Image Collection Demo - 2008-07-02T05:09:42.015Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:SmileyPens/DC - DC - 2008-07-02T05:09:43.031Z - - - - - - - info:fedora/demo:SmileyPens/DC/2008-07-02T05:09:43.031Z - DC.1 - 2008-07-02T05:09:43.031Z - - - - - - Smiley Pens - Yes, these actually write. Well, I haven't tested them but I'm pretty sure. - demo:SmileyPens - - - - - info:fedora/demo:SmileyPens/RELS-EXT - RELS-EXT - 2008-07-02T05:09:43.046Z - - - - - - - info:fedora/demo:SmileyPens/RELS-EXT/2008-07-02T05:09:43.046Z - RELS-EXT.0 - 2008-07-02T05:09:43.046Z - - - - - - - - - - - - - - info:fedora/demo:SmileyPens/RELS-INT - RELS-INT - 2009-07-01T14:23:00.046Z - - - - - - - info:fedora/demo:SmileyPens/RELS-INT/2009-07-01T14:23:00.046Z - RELS-INT.0 - 2009-07-01T14:23:00.046Z - - - - - - - 320 - 240 - - - 800 - 600 - - - - - - info:fedora/demo:SmileyPens/MEDIUM_SIZE - MEDIUM_SIZE - 2008-07-02T05:09:43.046Z - - - - - - - info:fedora/demo:SmileyPens/MEDIUM_SIZE/2008-07-02T05:09:43.046Z - MediumSize.jpg.0 - 2008-07-02T05:09:43.046Z - - - MediumSize.jpg.0 - - - - info:fedora/demo:SmileyPens/FULL_SIZE - FULL_SIZE - 2008-07-02T05:09:43.046Z - - - - - - - info:fedora/demo:SmileyPens/FULL_SIZE/2008-07-02T05:09:43.046Z - FullSize.jpg.0 - 2008-07-02T05:09:43.046Z - - - FullSize.jpg.0 - - - diff --git a/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyShortRoundCup.xml b/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyShortRoundCup.xml deleted file mode 100644 index 797ef64..0000000 --- a/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyShortRoundCup.xml +++ /dev/null @@ -1,104 +0,0 @@ - - - info:fedora/demo:SmileyShortRoundCup - Data Object (Smiley Short Round Cup) for Image Collection Demo - 2008-07-02T05:09:42.015Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:SmileyShortRoundCup/DC - DC - 2008-07-02T05:09:43.046Z - - - - - - - info:fedora/demo:SmileyShortRoundCup/DC/2008-07-02T05:09:43.046Z - DC.1 - 2008-07-02T05:09:43.046Z - - - - - - Smiley Short Round Cup - It's round. It's a cup. It's amazing! - demo:SmileyShortRoundCup - - - - - info:fedora/demo:SmileyShortRoundCup/RELS-EXT - RELS-EXT - 2008-07-02T05:09:43.046Z - - - - - - - info:fedora/demo:SmileyShortRoundCup/RELS-EXT/2008-07-02T05:09:43.046Z - RELS-EXT.0 - 2008-07-02T05:09:43.046Z - - - - - - - - - - - - - - info:fedora/demo:SmileyShortRoundCup/MEDIUM_SIZE - MEDIUM_SIZE - 2008-07-02T05:09:43.046Z - - - - - - - info:fedora/demo:SmileyShortRoundCup/MEDIUM_SIZE/2008-07-02T05:09:43.046Z - MediumSize.jpg.0 - 2008-07-02T05:09:43.046Z - - - MediumSize.jpg.0 - - - - info:fedora/demo:SmileyShortRoundCup/FULL_SIZE - FULL_SIZE - 2008-07-02T05:09:43.046Z - - - - - - - info:fedora/demo:SmileyShortRoundCup/FULL_SIZE/2008-07-02T05:09:43.046Z - FullSize.jpg.0 - 2008-07-02T05:09:43.046Z - - - FullSize.jpg.0 - - - diff --git a/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyStuff.xml b/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyStuff.xml deleted file mode 100644 index f4df6e7..0000000 --- a/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyStuff.xml +++ /dev/null @@ -1,117 +0,0 @@ - - - info:fedora/demo:SmileyStuff - Data Object (Collection) for Image Collection Demo - 2008-07-02T05:09:42.015Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:SmileyStuff/DC - DC - 2008-07-02T05:09:43.062Z - - - - - - - info:fedora/demo:SmileyStuff/DC/2008-07-02T05:09:43.062Z - DC1.0 - 2008-07-02T05:09:43.062Z - - - - - - Collection of Smiley Stuff - This is Deb's collection of smiley stuff. - demo:SmileyStuff - - - - - info:fedora/demo:SmileyStuff/RELS-EXT - RELS-EXT - 2008-07-02T05:09:43.062Z - - - - - - - info:fedora/demo:SmileyStuff/RELS-EXT/2008-07-02T05:09:43.062Z - RELS-EXT.0 - 2008-07-02T05:09:43.062Z - - - - - - - - - - - - - info:fedora/demo:SmileyStuff/QUERY - QUERY - 2008-07-02T05:09:43.062Z - - - - - - - info:fedora/demo:SmileyStuff/QUERY/2008-07-02T05:09:43.062Z - QUERY.0 - 2008-07-02T05:09:43.062Z - - - QUERY.0 - - - - info:fedora/demo:SmileyStuff/XSLT - XSLT - 2008-07-02T05:09:43.062Z - - - - - - - info:fedora/demo:SmileyStuff/XSLT/2008-07-02T05:09:43.062Z - XSLT.0 - 2008-07-02T05:09:43.062Z - - - XSLT.0 - - - - info:fedora/demo:SmileyStuff/LIST - LIST - 2008-07-02T05:09:43.062Z - - - - - - - info:fedora/demo:SmileyStuff/LIST/2008-07-02T05:09:43.062Z - LIST.0 - 2008-07-02T05:09:43.062Z - - - LIST.0 - - - diff --git a/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyTallRoundCup.xml b/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyTallRoundCup.xml deleted file mode 100644 index 5190cc2..0000000 --- a/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyTallRoundCup.xml +++ /dev/null @@ -1,103 +0,0 @@ - - - info:fedora/demo:SmileyTallRoundCup - Data Object (Smiley Tall Round Cup) for Image Collection Demo - 2008-07-02T05:09:42.015Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:SmileyTallRoundCup/DC - DC - 2008-07-02T05:09:43.078Z - - - - - - - info:fedora/demo:SmileyTallRoundCup/DC/2008-07-02T05:09:43.078Z - DC.1 - 2008-07-02T05:09:43.078Z - - - - - - Smiley Tall Round Cup - This cup measures ten inches high (when standing). When it's on it's side, it measures ten inches wide. - demo:SmileyTallRoundCup - - - - - info:fedora/demo:SmileyTallRoundCup/RELS-EXT - RELS-EXT - 2008-07-02T05:09:43.078Z - - - - - - - info:fedora/demo:SmileyTallRoundCup/RELS-EXT/2008-07-02T05:09:43.078Z - RELS-EXT.0 - 2008-07-02T05:09:43.078Z - - - - - - - - - - - - - - info:fedora/demo:SmileyTallRoundCup/MEDIUM_SIZE - MEDIUM_SIZE - 2008-07-02T05:09:43.078Z - - - - - - - info:fedora/demo:SmileyTallRoundCup/MEDIUM_SIZE/2008-07-02T05:09:43.078Z - MediumSize.jpg.0 - 2008-07-02T05:09:43.078Z - - - MediumSize.jpg.0 - - - - info:fedora/demo:SmileyTallRoundCup/FULL_SIZE - FULL_SIZE - 2008-07-02T05:09:43.078Z - - - - - - - info:fedora/demo:SmileyTallRoundCup/FULL_SIZE/2008-07-02T05:09:43.078Z - FullSize.jpg.0 - 2008-07-02T05:09:43.078Z - - - FullSize.jpg.0 - - - diff --git a/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyToiletBrush.xml b/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyToiletBrush.xml deleted file mode 100644 index 04ab093..0000000 --- a/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyToiletBrush.xml +++ /dev/null @@ -1,103 +0,0 @@ - - - info:fedora/demo:SmileyToiletBrush - Data Object (Smiley Toilet Brush) for Image Collection Demo - 2008-07-02T05:09:42.015Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:SmileyToiletBrush/DC - DC - 2008-07-02T05:09:43.093Z - - - - - - - info:fedora/demo:SmileyToiletBrush/DC/2008-07-02T05:09:43.093Z - DC.1 - 2008-07-02T05:09:43.093Z - - - - - - Smiley Toilet Brush - At least one of you will be smiling while you put this item to use. - demo:SmileyToiletBrush - - - - - info:fedora/demo:SmileyToiletBrush/RELS-EXT - RELS-EXT - 2008-07-02T05:09:43.093Z - - - - - - - info:fedora/demo:SmileyToiletBrush/RELS-EXT/2008-07-02T05:09:43.093Z - RELS-EXT.0 - 2008-07-02T05:09:43.093Z - - - - - - - - - - - - - - info:fedora/demo:SmileyToiletBrush/MEDIUM_SIZE - MEDIUM_SIZE - 2008-07-02T05:09:43.093Z - - - - - - - info:fedora/demo:SmileyToiletBrush/MEDIUM_SIZE/2008-07-02T05:09:43.093Z - MediumSize.jpg.0 - 2008-07-02T05:09:43.093Z - - - MediumSize.jpg.0 - - - - info:fedora/demo:SmileyToiletBrush/FULL_SIZE - FULL_SIZE - 2008-07-02T05:09:43.093Z - - - - - - - info:fedora/demo:SmileyToiletBrush/FULL_SIZE/2008-07-02T05:09:43.093Z - FullSize.jpg.0 - 2008-07-02T05:09:43.093Z - - - FullSize.jpg.0 - - - diff --git a/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyWastebasket.xml b/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyWastebasket.xml deleted file mode 100644 index 35b0b7b..0000000 --- a/fedora/client/demo/atom/local-server-demos/image-collection-demo/dataObjects/demo_SmileyWastebasket.xml +++ /dev/null @@ -1,103 +0,0 @@ - - - info:fedora/demo:SmileyWastebasket - Data Object (Smiley Wastebasket) for Image Collection Demo - 2008-07-02T05:09:42.015Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:SmileyWastebasket/DC - DC - 2008-07-02T05:09:43.125Z - - - - - - - info:fedora/demo:SmileyWastebasket/DC/2008-07-02T05:09:43.125Z - DC.1 - 2008-07-02T05:09:43.125Z - - - - - - Smiley Wastebasket - You can throw your trash in this. Don't forget to recycle! - demo:SmileyWastebasket - - - - - info:fedora/demo:SmileyWastebasket/RELS-EXT - RELS-EXT - 2008-07-02T05:09:43.125Z - - - - - - - info:fedora/demo:SmileyWastebasket/RELS-EXT/2008-07-02T05:09:43.125Z - RELS-EXT.0 - 2008-07-02T05:09:43.125Z - - - - - - - - - - - - - - info:fedora/demo:SmileyWastebasket/MEDIUM_SIZE - MEDIUM_SIZE - 2008-07-02T05:09:43.125Z - - - - - - - info:fedora/demo:SmileyWastebasket/MEDIUM_SIZE/2008-07-02T05:09:43.125Z - MediumSize.jpg.0 - 2008-07-02T05:09:43.125Z - - - MediumSize.jpg.0 - - - - info:fedora/demo:SmileyWastebasket/FULL_SIZE - FULL_SIZE - 2008-07-02T05:09:43.125Z - - - - - - - info:fedora/demo:SmileyWastebasket/FULL_SIZE/2008-07-02T05:09:43.125Z - FullSize.jpg.0 - 2008-07-02T05:09:43.125Z - - - FullSize.jpg.0 - - - diff --git a/fedora/client/demo/atom/local-server-demos/image-collection-demo/sDefObjects/demo_Collection.xml b/fedora/client/demo/atom/local-server-demos/image-collection-demo/sDefObjects/demo_Collection.xml deleted file mode 100644 index 7929d98..0000000 --- a/fedora/client/demo/atom/local-server-demos/image-collection-demo/sDefObjects/demo_Collection.xml +++ /dev/null @@ -1,82 +0,0 @@ - - - info:fedora/demo:Collection - Service Definition Object (Collection) for Image Collection Demo - 2008-07-02T05:09:42.015Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:Collection/DC - DC - 2008-07-02T05:09:43.125Z - - - - - - - info:fedora/demo:Collection/DC/2008-07-02T05:09:43.125Z - DC1.0 - 2008-07-02T05:09:43.125Z - - - - - - Service Definition Object (Collection) for Image Collection Demo - demo:Collection - - - - - info:fedora/demo:Collection/RELS-EXT - RELS-EXT - 2008-07-02T05:09:43.125Z - - - - - - - info:fedora/demo:Collection/RELS-EXT/2008-07-02T05:09:43.125Z - RELS-EXT1.0 - 2008-07-02T05:09:43.125Z - - - - - - - - - - - - - info:fedora/demo:Collection/METHODMAP - METHODMAP - 2008-07-02T05:09:43.125Z - - - - - - - info:fedora/demo:Collection/METHODMAP/2008-07-02T05:09:43.125Z - METHODMAP1.0 - 2008-07-02T05:09:43.125Z - - - - - - - - - - - diff --git a/fedora/client/demo/atom/local-server-demos/image-collection-demo/sDefObjects/demo_DualResolution.xml b/fedora/client/demo/atom/local-server-demos/image-collection-demo/sDefObjects/demo_DualResolution.xml deleted file mode 100644 index d616c53..0000000 --- a/fedora/client/demo/atom/local-server-demos/image-collection-demo/sDefObjects/demo_DualResolution.xml +++ /dev/null @@ -1,84 +0,0 @@ - - - info:fedora/demo:DualResolution - Service Definition Object (Image) for Image Collection Demo - 2008-07-02T05:09:42.015Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:DualResolution/DC - DC - 2008-07-02T05:09:43.156Z - - - - - - - info:fedora/demo:DualResolution/DC/2008-07-02T05:09:43.156Z - DC1.0 - 2008-07-02T05:09:43.156Z - - - - - - Service Definition Object (Image) for Image Collection Demo - demo:DualResolution - - - - - info:fedora/demo:DualResolution/RELS-EXT - RELS-EXT - 2008-07-02T05:09:43.156Z - - - - - - - info:fedora/demo:DualResolution/RELS-EXT/2008-07-02T05:09:43.156Z - RELS-EXT1.0 - 2008-07-02T05:09:43.156Z - - - - - - - - - - - - - info:fedora/demo:DualResolution/METHODMAP - METHODMAP - 2008-07-02T05:09:43.156Z - - - - - - - info:fedora/demo:DualResolution/METHODMAP/2008-07-02T05:09:43.156Z - METHODMAP1.0 - 2008-07-02T05:09:43.156Z - - - - - - - - - - - diff --git a/fedora/client/demo/atom/local-server-demos/image-collection-demo/sDepObjects/demo_CollectionImpl.xml b/fedora/client/demo/atom/local-server-demos/image-collection-demo/sDepObjects/demo_CollectionImpl.xml deleted file mode 100644 index 4c3c024..0000000 --- a/fedora/client/demo/atom/local-server-demos/image-collection-demo/sDepObjects/demo_CollectionImpl.xml +++ /dev/null @@ -1,248 +0,0 @@ - - - info:fedora/demo:CollectionImpl - Service Deployment Object (Collection) for Image Collection Demo - 2008-07-02T05:09:42.015Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:CollectionImpl/DC - DC - 2008-07-02T05:09:43.171Z - - - - - - - info:fedora/demo:CollectionImpl/DC/2008-07-02T05:09:43.171Z - DC1.0 - 2008-07-02T05:09:43.171Z - - - - - - Service Deployment Object (Collection) for Image Collection Demo - demo:ImageCollectionImpl - - - - - info:fedora/demo:CollectionImpl/RELS-EXT - RELS-EXT - 2008-07-02T05:09:43.171Z - - - - - - - info:fedora/demo:CollectionImpl/RELS-EXT/2008-07-02T05:09:43.171Z - RELS-EXT.1 - 2008-07-02T05:09:43.171Z - - - - - - - - - - - - - - - info:fedora/demo:CollectionImpl/METHODMAP - METHODMAP - 2008-07-02T05:09:43.171Z - - - - - - - info:fedora/demo:CollectionImpl/METHODMAP/2008-07-02T05:09:43.171Z - METHODMAP1.0 - 2008-07-02T05:09:43.171Z - - - - - - - - - - - - - - - - - - - - - - - info:fedora/demo:CollectionImpl/DSINPUTSPEC - DSINPUTSPEC - 2004-12-17T15:32:11.000Z - - - - - - - info:fedora/demo:CollectionImpl/DSINPUTSPEC/2004-12-17T15:32:11.000Z - DSINPUTSPEC1.0 - 2004-12-17T15:32:11.000Z - - - - - - - XSLT Binding - text/xml - - - - LIST Binding - text/xml - - - - QUERY Binding - text/plain - - - - - - - info:fedora/demo:CollectionImpl/WSDL - WSDL - 2008-07-02T05:09:43.171Z - - - - - - - info:fedora/demo:CollectionImpl/WSDL/2008-07-02T05:09:43.171Z - WSDL1.0 - 2008-07-02T05:09:43.171Z - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/atom/local-server-demos/image-collection-demo/sDepObjects/demo_DualResImageImpl.xml b/fedora/client/demo/atom/local-server-demos/image-collection-demo/sDepObjects/demo_DualResImageImpl.xml deleted file mode 100644 index 98a1a26..0000000 --- a/fedora/client/demo/atom/local-server-demos/image-collection-demo/sDepObjects/demo_DualResImageImpl.xml +++ /dev/null @@ -1,211 +0,0 @@ - - - info:fedora/demo:DualResImageImpl - Service Deployment Object (Image) for Image Collection Demo - 2008-07-02T05:09:42.015Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:DualResImageImpl/DC - DC - 2008-07-02T05:09:43.203Z - - - - - - - info:fedora/demo:DualResImageImpl/DC/2008-07-02T05:09:43.203Z - DC1.0 - 2008-07-02T05:09:43.203Z - - - - - - Service Deployment Object (Image) for Image Collection Demo - demo:DualResImageImpl - - - - - info:fedora/demo:DualResImageImpl/RELS-EXT - RELS-EXT - 2008-07-02T05:09:43.203Z - - - - - - - info:fedora/demo:DualResImageImpl/RELS-EXT/2008-07-02T05:09:43.203Z - RELS-EXT.1 - 2008-07-02T05:09:43.203Z - - - - - - - - - - - - - - - info:fedora/demo:DualResImageImpl/METHODMAP - METHODMAP - 2008-07-02T05:09:43.203Z - - - - - - - info:fedora/demo:DualResImageImpl/METHODMAP/2008-07-02T05:09:43.203Z - METHODMAP1.0 - 2008-07-02T05:09:43.203Z - - - - - - - - - - - - - - - - - - info:fedora/demo:DualResImageImpl/DSINPUTSPEC - DSINPUTSPEC - 2008-07-02T05:09:43.203Z - - - - - - - info:fedora/demo:DualResImageImpl/DSINPUTSPEC/2008-07-02T05:09:43.203Z - DSINPUTSPEC1.0 - 2008-07-02T05:09:43.203Z - - - - - - - FULL_SIZE Binding - image/jpeg - - - - MEDIUM_SIZE Binding - image/jpeg - - - - - - - info:fedora/demo:DualResImageImpl/WSDL - WSDL - 2008-07-02T05:09:43.203Z - - - - - - - info:fedora/demo:DualResImageImpl/WSDL/2008-07-02T05:09:43.203Z - WSDL1.0 - 2008-07-02T05:09:43.203Z - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/atom/local-server-demos/image-manip-demo/demo_UVA_STD_IMAGE.xml b/fedora/client/demo/atom/local-server-demos/image-manip-demo/demo_UVA_STD_IMAGE.xml deleted file mode 100644 index 00fc7fc..0000000 --- a/fedora/client/demo/atom/local-server-demos/image-manip-demo/demo_UVA_STD_IMAGE.xml +++ /dev/null @@ -1,86 +0,0 @@ - - - info:fedora/demo:UVA_STD_IMAGE - Content Model Object for Image Manipulation Demo - 2007-08-15T15:59:21.659Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:UVA_STD_IMAGE/DC - DC - 2007-08-15T14:36:35.656Z - - - - - - - info:fedora/demo:UVA_STD_IMAGE/DC/2007-08-15T14:36:35.656Z - DC1.0 - 2007-08-15T14:36:35.656Z - - - - - - Content Model Object for Image Manipulation Demo - demo:UVA_STD_IMAGE - - - - - info:fedora/demo:UVA_STD_IMAGE/RELS-EXT - RELS-EXT - 2008-07-02T05:09:43.218Z - - - - - - - info:fedora/demo:UVA_STD_IMAGE/RELS-EXT/2008-07-02T05:09:43.218Z - RELS-EXT1.0 - 2008-07-02T05:09:43.218Z - - - - - - - - - - - - - - info:fedora/demo:UVA_STD_IMAGE/DS-COMPOSITE-MODEL - DS-COMPOSITE-MODEL - 2007-08-15T14:36:30.369Z - - - - - - - info:fedora/demo:UVA_STD_IMAGE/DS-COMPOSITE-MODEL/2007-08-15T14:36:30.369Z - DS-COMPOSITE-MODEL1.0 - 2007-08-15T14:36:30.369Z - - - - - - - - - - - - diff --git a/fedora/client/demo/atom/local-server-demos/image-manip-demo/obj_demo_29.xml b/fedora/client/demo/atom/local-server-demos/image-manip-demo/obj_demo_29.xml deleted file mode 100644 index c84f469..0000000 --- a/fedora/client/demo/atom/local-server-demos/image-manip-demo/obj_demo_29.xml +++ /dev/null @@ -1,83 +0,0 @@ - - - info:fedora/demo:29 - Data Object for Image Manipulation Demo - 2008-07-02T05:09:42.015Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:29/DC - DC - 2008-07-02T05:09:43.234Z - - - - - - - info:fedora/demo:29/DC/2008-07-02T05:09:43.234Z - DC1.0 - 2008-07-02T05:09:43.234Z - - - - - - Coliseum in Rome - Thornton Staples - Architecture, Roman - Image of Coliseum in Rome - University of Virginia Library - image/jpeg - demo:29 - - - - - info:fedora/demo:29/RELS-EXT - RELS-EXT - 2008-07-02T05:09:43.234Z - - - - - - - info:fedora/demo:29/RELS-EXT/2008-07-02T05:09:43.234Z - RELS-EXT1.0 - 2008-07-02T05:09:43.234Z - - - - - - - - - - - - - info:fedora/demo:29/url - url - 2008-07-02T05:09:43.234Z - - - - - - - info:fedora/demo:29/url/2008-07-02T05:09:43.234Z - url1.0 - 2008-07-02T05:09:43.234Z - - - url1.0 - - - diff --git a/fedora/client/demo/atom/local-server-demos/image-manip-demo/sdef_demo_27.xml b/fedora/client/demo/atom/local-server-demos/image-manip-demo/sdef_demo_27.xml deleted file mode 100644 index 4f4d9af..0000000 --- a/fedora/client/demo/atom/local-server-demos/image-manip-demo/sdef_demo_27.xml +++ /dev/null @@ -1,112 +0,0 @@ - - - info:fedora/demo:27 - Service Definition Object for Image Manipulation Demo - 2008-07-02T05:09:42.015Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:27/DC - DC - 2008-07-02T05:09:43.250Z - - - - - - - info:fedora/demo:27/DC/2008-07-02T05:09:43.250Z - DC1.0 - 2008-07-02T05:09:43.250Z - - - - - - Service Definition Object for Image Manipulation Demo - demo:27 - - - - - info:fedora/demo:27/RELS-EXT - RELS-EXT - 2008-07-02T05:09:43.250Z - - - - - - - info:fedora/demo:27/RELS-EXT/2008-07-02T05:09:43.250Z - RELS-EXT1.0 - 2008-07-02T05:09:43.250Z - - - - - - - - - - - - - info:fedora/demo:27/METHODMAP - METHODMAP - 2008-07-02T05:09:43.250Z - - - - - - - info:fedora/demo:27/METHODMAP/2008-07-02T05:09:43.250Z - METHODMAP1.0 - 2008-07-02T05:09:43.250Z - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/atom/local-server-demos/image-manip-demo/sdep_demo_28.xml b/fedora/client/demo/atom/local-server-demos/image-manip-demo/sdep_demo_28.xml deleted file mode 100644 index a851d1b..0000000 --- a/fedora/client/demo/atom/local-server-demos/image-manip-demo/sdep_demo_28.xml +++ /dev/null @@ -1,392 +0,0 @@ - - - info:fedora/demo:28 - Service Deployment Object for Image Manipulation Demo - 2008-07-02T05:09:42.015Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:28/DC - DC - 2008-07-02T05:09:43.281Z - - - - - - - info:fedora/demo:28/DC/2008-07-02T05:09:43.281Z - DC1.0 - 2008-07-02T05:09:43.281Z - - - - - - Service Deployment Object for Image Manipulation Demo - demo:28 - - - - - info:fedora/demo:28/RELS-EXT - RELS-EXT - 2008-07-02T05:09:43.281Z - - - - - - - info:fedora/demo:28/RELS-EXT/2008-07-02T05:09:43.281Z - RELS-EXT1.0 - 2008-07-02T05:09:43.281Z - - - - - - - - - - - - - - - info:fedora/demo:28/METHODMAP - METHODMAP - 2008-07-02T05:09:43.281Z - - - - - - - info:fedora/demo:28/METHODMAP/2008-07-02T05:09:43.281Z - METHODMAP1.0 - 2008-07-02T05:09:43.281Z - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - info:fedora/demo:28/DSINPUTSPEC - DSINPUTSPEC - 2008-07-02T05:09:43.281Z - - - - - - - info:fedora/demo:28/DSINPUTSPEC/2008-07-02T05:09:43.281Z - DSINPUTSPEC1.0 - 2008-07-02T05:09:43.281Z - - - - - - - Image URL - image/gif - image/jpeg - image/tiff - image/png - image/bmp - URL pointing to an image of type GIF, JPG, or TIF - - - - - - - info:fedora/demo:28/WSDL - WSDL - 2008-07-02T05:09:43.281Z - - - - - - - info:fedora/demo:28/WSDL/2008-07-02T05:09:43.281Z - WSDL1.0 - 2008-07-02T05:09:43.281Z - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/atom/local-server-demos/simple-document-demo/obj_demo_18.xml b/fedora/client/demo/atom/local-server-demos/simple-document-demo/obj_demo_18.xml deleted file mode 100644 index 2629b38..0000000 --- a/fedora/client/demo/atom/local-server-demos/simple-document-demo/obj_demo_18.xml +++ /dev/null @@ -1,107 +0,0 @@ - - - info:fedora/demo:18 - Data Object (ECDL Paper) for Simple Document Demo - 2008-07-02T05:09:42.015Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:18/DC - DC - 2008-07-02T05:09:43.312Z - - - - - - - info:fedora/demo:18/DC/2008-07-02T05:09:43.312Z - DC1.0 - 2008-07-02T05:09:43.312Z - - - - - - The Mellon Fedora Project: Digital Library Architecture Meets XML and Web Services - Sandra Payette - Thornton Staples - Fedora - repository architecture - digital libraries - web service - open source software - Paper on the Fedora project, presented at the European Digital Library Conference (ECDL) in 2002, Rome, Italy - Springer - 2002-09-17 - application/pdf - application/msword - application/ps - demo:18 - http://www.fedora.info - unrestricted - - - - - info:fedora/demo:18/DS1 - DS1 - 2008-07-02T05:09:43.312Z - - - - - - - info:fedora/demo:18/DS1/2008-07-02T05:09:43.312Z - DS1.0 - 2008-07-02T05:09:43.312Z - - - DS1.0 - - - - info:fedora/demo:18/DS2 - DS2 - 2008-07-02T05:09:43.312Z - - - - - - - info:fedora/demo:18/DS2/2008-07-02T05:09:43.312Z - DS2.0 - 2008-07-02T05:09:43.312Z - - - DS2.0 - - - - info:fedora/demo:18/DS3 - DS3 - 2008-07-02T05:09:43.312Z - - - - - - - info:fedora/demo:18/DS3/2008-07-02T05:09:43.312Z - DS3.0 - 2008-07-02T05:09:43.312Z - - - DS3.0 - - - diff --git a/fedora/client/demo/atom/local-server-demos/simple-document-demo/obj_demo_31.xml b/fedora/client/demo/atom/local-server-demos/simple-document-demo/obj_demo_31.xml deleted file mode 100644 index a001bc4..0000000 --- a/fedora/client/demo/atom/local-server-demos/simple-document-demo/obj_demo_31.xml +++ /dev/null @@ -1,83 +0,0 @@ - - - info:fedora/demo:31 - Data Object (SVG) for Simple Document Demo - 2008-07-02T05:09:42.015Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:31/DC - DC - 2008-07-02T05:09:43.328Z - - - - - - - info:fedora/demo:31/DC/2008-07-02T05:09:43.328Z - DC1.0 - 2008-07-02T05:09:43.328Z - - - - - - Data Object (SVG) for Simple Document Demo - Chris Wilper - The Apache Group - svg - batik - apache - Demonstration digital object containing SVG from the Batik 1.5 distribution - The Apache Group - image/svg+xml - demo:31 - http://xml.apache.org/batik/ - The Apache License - - - - - info:fedora/demo:31/DS1 - DS1 - 2008-07-02T05:09:43.328Z - - - - - - - info:fedora/demo:31/DS1/2008-07-02T05:09:43.328Z - DS1.0 - 2008-07-02T05:09:43.328Z - - - DS1.0 - - - - info:fedora/demo:31/DS3 - DS3 - 2013-10-28T16:34:50.534Z - - - - - - - info:fedora/demo:31/DS3/2013-10-28T16:34:50.534Z - DS3.0 - 2013-10-28T16:34:50.534Z - - - DS3.0 - - - diff --git a/fedora/client/demo/atom/local-server-demos/simple-image-demo/demo_UVA_STD_IMAGE_1.xml b/fedora/client/demo/atom/local-server-demos/simple-image-demo/demo_UVA_STD_IMAGE_1.xml deleted file mode 100644 index b421adb..0000000 --- a/fedora/client/demo/atom/local-server-demos/simple-image-demo/demo_UVA_STD_IMAGE_1.xml +++ /dev/null @@ -1,95 +0,0 @@ - - - info:fedora/demo:UVA_STD_IMAGE_1 - Content Model Object (4 JPEGS) for Local Simple Image Demo - 2007-08-15T15:59:21.878Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:UVA_STD_IMAGE_1/DC - DC - 2007-08-15T14:36:37.171Z - - - - - - - info:fedora/demo:UVA_STD_IMAGE_1/DC/2007-08-15T14:36:37.171Z - DC1.0 - 2007-08-15T14:36:37.171Z - - - - - - Content Model Object (4 JPEGS) for Local Simple Image Demo - demo:UVA_STD_IMAGE_1 - - - - - info:fedora/demo:UVA_STD_IMAGE_1/RELS-EXT - RELS-EXT - 2007-08-15T14:36:37.171Z - - - - - - - info:fedora/demo:UVA_STD_IMAGE_1/RELS-EXT/2007-08-15T14:36:37.171Z - RELS-EXT1.0 - 2007-08-15T14:36:37.171Z - - - - - - - - - - - - - - info:fedora/demo:UVA_STD_IMAGE_1/DS-COMPOSITE-MODEL - DS-COMPOSITE-MODEL - 2007-08-15T14:36:30.369Z - - - - - - - info:fedora/demo:UVA_STD_IMAGE_1/DS-COMPOSITE-MODEL/2007-08-15T14:36:30.369Z - DS-COMPOSITE-MODEL1.0 - 2007-08-15T14:36:30.369Z - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/atom/local-server-demos/simple-image-demo/obj_demo_5.xml b/fedora/client/demo/atom/local-server-demos/simple-image-demo/obj_demo_5.xml deleted file mode 100644 index d552bf3..0000000 --- a/fedora/client/demo/atom/local-server-demos/simple-image-demo/obj_demo_5.xml +++ /dev/null @@ -1,141 +0,0 @@ - - - info:fedora/demo:5 - Data Object (Coliseum) for Local Simple Image Demo - 2008-07-02T05:09:42.015Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:5/DC - DC - 2008-07-02T05:09:43.375Z - - - - - - - info:fedora/demo:5/DC/2008-07-02T05:09:43.375Z - DC1.0 - 2008-07-02T05:09:43.375Z - - - - - - Coliseum in Rome - Thornton Staples - Architecture, Roman - Image of Coliseum in Rome - University of Virginia Library - image/jpeg - demo:5 - - - - - info:fedora/demo:5/RELS-EXT - RELS-EXT - 2008-07-02T05:09:43.375Z - - - - - - - info:fedora/demo:5/RELS-EXT/2008-07-02T05:09:43.375Z - RELS-EXT1.0 - 2008-07-02T05:09:43.375Z - - - - - - - - Immagine del Colosseo a Roma - - - - - - info:fedora/demo:5/THUMBRES_IMG - THUMBRES_IMG - 2008-07-02T05:09:43.375Z - - - - - - - info:fedora/demo:5/THUMBRES_IMG/2008-07-02T05:09:43.375Z - THUMBRES_IMG1.0 - 2008-07-02T05:09:43.375Z - - - THUMBRES_IMG1.0 - - - - info:fedora/demo:5/MEDRES_IMG - MEDRES_IMG - 2008-07-02T05:09:43.375Z - - - - - - - info:fedora/demo:5/MEDRES_IMG/2008-07-02T05:09:43.375Z - MEDRES_IMG1.0 - 2008-07-02T05:09:43.375Z - - - MEDRES_IMG1.0 - - - - info:fedora/demo:5/HIGHRES_IMG - HIGHRES_IMG - 2008-07-02T05:09:43.375Z - - - - - - - info:fedora/demo:5/HIGHRES_IMG/2008-07-02T05:09:43.375Z - HIGHRES_IMG1.0 - 2008-07-02T05:09:43.375Z - - - HIGHRES_IMG1.0 - - - - info:fedora/demo:5/VERYHIGHRES_IMG - VERYHIGHRES_IMG - 2008-07-02T05:09:43.375Z - - - - - - - info:fedora/demo:5/VERYHIGHRES_IMG/2008-07-02T05:09:43.375Z - VERYHIGHRES_IMG1.0 - 2008-07-02T05:09:43.375Z - - - VERYHIGHRES_IMG1.0 - - - diff --git a/fedora/client/demo/atom/local-server-demos/simple-image-demo/sdef_demo_1.xml b/fedora/client/demo/atom/local-server-demos/simple-image-demo/sdef_demo_1.xml deleted file mode 100644 index e74af3c..0000000 --- a/fedora/client/demo/atom/local-server-demos/simple-image-demo/sdef_demo_1.xml +++ /dev/null @@ -1,84 +0,0 @@ - - - info:fedora/demo:1 - Service Definition Object for Simple Image Demos - 2008-07-02T05:09:42.015Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:1/DC - DC - 2008-07-02T05:09:43.390Z - - - - - - - info:fedora/demo:1/DC/2008-07-02T05:09:43.390Z - DC1.0 - 2008-07-02T05:09:43.390Z - - - - - - Service Definition Object for Simple Image Demos - demo:1 - - - - - info:fedora/demo:1/RELS-EXT - RELS-EXT - 2008-07-02T05:09:43.390Z - - - - - - - info:fedora/demo:1/RELS-EXT/2008-07-02T05:09:43.390Z - RELS-EXT1.0 - 2008-07-02T05:09:43.390Z - - - - - - - - - - - - - info:fedora/demo:1/METHODMAP - METHODMAP - 2008-07-02T05:09:43.390Z - - - - - - - info:fedora/demo:1/METHODMAP/2008-07-02T05:09:43.390Z - METHODMAP1.0 - 2008-07-02T05:09:43.390Z - - - - - - - - - - - - - diff --git a/fedora/client/demo/atom/local-server-demos/simple-image-demo/sdep_demo_2.xml b/fedora/client/demo/atom/local-server-demos/simple-image-demo/sdep_demo_2.xml deleted file mode 100644 index d9fbf85..0000000 --- a/fedora/client/demo/atom/local-server-demos/simple-image-demo/sdep_demo_2.xml +++ /dev/null @@ -1,251 +0,0 @@ - - - info:fedora/demo:2 - Service Deployment Object for Local Simple Image Demo - 2008-07-02T05:09:42.015Z - - fedoraAdmin - - - - http://www.fedora-commons.org/images/logo_vertical_transparent_200_251.png - - info:fedora/demo:2/DC - DC - 2008-07-02T05:09:43.406Z - - - - - - - info:fedora/demo:2/DC/2008-07-02T05:09:43.406Z - DC1.0 - 2008-07-02T05:09:43.406Z - - - - - - Service Deployment Object for Local Simple Image Demo - demo:2 - - - - - info:fedora/demo:2/RELS-EXT - RELS-EXT - 2008-07-02T05:09:43.406Z - - - - - - - info:fedora/demo:2/RELS-EXT/2008-07-02T05:09:43.406Z - RELS-EXT1.0 - 2008-07-02T05:09:43.406Z - - - - - - - - - - - - - - - info:fedora/demo:2/METHODMAP - METHODMAP - 2008-07-02T05:09:43.406Z - - - - - - - info:fedora/demo:2/METHODMAP/2008-07-02T05:09:43.406Z - METHODMAP1.0 - 2008-07-02T05:09:43.406Z - - - - - - - - - - - - - - - - - - - - - - - - - - info:fedora/demo:2/DSINPUTSPEC - DSINPUTSPEC - 2008-07-02T05:09:43.406Z - - - - - - - info:fedora/demo:2/DSINPUTSPEC/2008-07-02T05:09:43.406Z - DSINPUTSPEC1.0 - 2008-07-02T05:09:43.406Z - - - - - - - thumbnail image - image/jpeg - image of type image/jpeg at 100 dpi - - - medium resolution image - image/jpeg - image of type image/jpeg at 300 dpi - - - high resolution image - image/jpeg - image of type image/jpeg at 600 dpi - - - very high resolution image - image/jpeg - image of type image/jpeg at 1200 dpi - - - - - - info:fedora/demo:2/WSDL - WSDL - 2008-07-02T05:09:43.406Z - - - - - - - info:fedora/demo:2/WSDL/2008-07-02T05:09:43.406Z - WSDL1.0 - 2008-07-02T05:09:43.406Z - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/batch-demo/foxml-template.xml b/fedora/client/demo/batch-demo/foxml-template.xml deleted file mode 100644 index b545432..0000000 --- a/fedora/client/demo/batch-demo/foxml-template.xml +++ /dev/null @@ -1,176 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/batch-demo/mets-template.xml b/fedora/client/demo/batch-demo/mets-template.xml deleted file mode 100644 index 0636c0f..0000000 --- a/fedora/client/demo/batch-demo/mets-template.xml +++ /dev/null @@ -1,234 +0,0 @@ - - - - - - - - - fedoraAdmin - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/batch-demo/modify-batch-directives.xml b/fedora/client/demo/batch-demo/modify-batch-directives.xml deleted file mode 100644 index 00782b0..0000000 --- a/fedora/client/demo/batch-demo/modify-batch-directives.xml +++ /dev/null @@ -1,658 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1st century - - uva-lib:2 - unrestricted - Roman Empire - Roman - Vespaciano - Amphitheatrum Flavium - Coliseum -- Rome, Italy - architecture - - digital - - Alderman Library - - - - 41.54N - 12.27E - - - - - 72 - 80 - - Roman - - Italy, Rome - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Coliseum in Rome - Thornton Staples - Architecture, Roman - Image of Coliseum in Rome - University of Virginia Library - image/jpeg - demo:32 - some text - some more text - even more text - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The Missouri Intelligencer (Franklin). September 4, 1824. - History of Howard and Cooper Counties, Missouri, Written and Compiled from the Most Authentic Official and Private Sources, including a History of its Townships, Towns and Villages. National Historical Company, St. Louis, 1883. Page 742. - Missouri and Missourians: Land of Contrasts and People of Achievements. Floyd Calvin Shoemaker. The Lewis Publishing Company, Chicago, 1943. Page 410. - History of Boone County, Missouri, Written and Compiled from the Most Authentic Official and Private Sources; Inlcuding a History of its Townships, Towns and Villages. Ramfre Press, Cape Girardeau, 1970. Page 149. - History of Callaway County, Missouri, Written and Compiled from the Most Authentic Official and Private Sources, Including a History of its Townships, Towns and Villages. National Historic Company, St. Louis, 1884. Page 414. - The Intelligencer (Lexington, VA). September 25, 1824. - Missouri Intelligencer (Franklin). August 7, 14 and 21, 1824. - Missouri Intelligencer (Franklin). August 7, 1824. - Missouri Republican (St. Louis). August 9, 1824. - Missouri Intelligencer (Franklin). August 7, 1824. - Independent Patriot (Jackson). August 14, 1824. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/batch-demo/object-specifics/americanacademy.xml b/fedora/client/demo/batch-demo/object-specifics/americanacademy.xml deleted file mode 100755 index 9879cd8..0000000 --- a/fedora/client/demo/batch-demo/object-specifics/americanacademy.xml +++ /dev/null @@ -1,257 +0,0 @@ - - - ***testing: comment for american academy*** - - - - - American Academy - demo:3010 - - - - - - - - - 1913 - - uva-lib:2 - unrestricted - American Academy - McKim, Mead, White - Renaissance architecture - Rome Prize Fellows - American Academy - architecture - - digital - - Alderman Library - - - - 41.54N - 12.27E - - - - - 1913 - - Roman - - Italy, Rome - - - - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - - unrestricted - educational - - - - - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - - unrestricted - educational - - - - - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - - unrestricted - educational - - - - - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - - unrestricted - educational - - - - - - - - - - - diff --git a/fedora/client/demo/batch-demo/object-specifics/appianway.xml b/fedora/client/demo/batch-demo/object-specifics/appianway.xml deleted file mode 100755 index 1d328f2..0000000 --- a/fedora/client/demo/batch-demo/object-specifics/appianway.xml +++ /dev/null @@ -1,239 +0,0 @@ - - - - - - - Appian Way - demo:3011 - - - - - - - - 4th century - - uva-lib:2 - unrestricted - Roman Empire - Roman - Road building - Appian Way - architecture - - digital - - Alderman Library - - - - 41.54N - 12.27E - - - - - 318 - 350 - - Roman - - Italy, Rome - - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - unrestricted - educational - - - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - unrestricted - educational - - - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - unrestricted - educational - - - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - unrestricted - educational - - - - - - - - - - - diff --git a/fedora/client/demo/batch-demo/object-specifics/coliseum.xml b/fedora/client/demo/batch-demo/object-specifics/coliseum.xml deleted file mode 100755 index 3410121..0000000 --- a/fedora/client/demo/batch-demo/object-specifics/coliseum.xml +++ /dev/null @@ -1,240 +0,0 @@ - - - - - - - Coliseum -- Rome, Italy - demo:3012 - - - - - - - - 1st century - - uva-lib:2 - unrestricted - Roman Empire - Roman - Vespaciano - Amphitheatrum Flavium - Coliseum -- Rome, Italy - architecture - - digital - - Alderman Library - - - - 41.54N - 12.27E - - - - - 72 - 80 - - Roman - - Italy, Rome - - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - unrestricted - educational - - - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - unrestricted - educational - - - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - unrestricted - educational - - - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - unrestricted - educational - - - - - - - - - - - diff --git a/fedora/client/demo/batch-demo/object-specifics/pantheon.xml b/fedora/client/demo/batch-demo/object-specifics/pantheon.xml deleted file mode 100755 index f95d85f..0000000 --- a/fedora/client/demo/batch-demo/object-specifics/pantheon.xml +++ /dev/null @@ -1,241 +0,0 @@ - - - - - - - Pantheon -- Rome - demo:3013 - - - - - - - - 2nd century - - uva-lib:2 - unrestricted - Roman Empire - Roman - Temple - Dome - Pantheon -- Rome - architecture - - digital - - Alderman Library - - - - 41.54N - 12.27E - - - - - 118 - 126 - - Roman - - Italy, Rome - - Ancient Roman - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - unrestricted - educational - - - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - unrestricted - educational - - - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - unrestricted - educational - - - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - unrestricted - educational - - - - - - - - - - - diff --git a/fedora/client/demo/batch-demo/object-specifics/romanwedding.xml b/fedora/client/demo/batch-demo/object-specifics/romanwedding.xml deleted file mode 100755 index bd2f86b..0000000 --- a/fedora/client/demo/batch-demo/object-specifics/romanwedding.xml +++ /dev/null @@ -1,238 +0,0 @@ - - - - - - - Roman Wedding - demo:3014 - - - - - - - - 2002 - - uva-lib:2 - unrestricted - 21st century Italian - Western European - Social customs - Weddings - Roman Wedding - - digital - - Alderman Library - - - - 41.54N - 12.27E - - - - - 2002 - - Italian - - Italy, Rome - - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - unrestricted - educational - - - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - unrestricted - educational - - - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - unrestricted - educational - - - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - unrestricted - educational - - - - - - - - - - - diff --git a/fedora/client/demo/batch-demo/object-specifics/stpeters.xml b/fedora/client/demo/batch-demo/object-specifics/stpeters.xml deleted file mode 100755 index af94614..0000000 --- a/fedora/client/demo/batch-demo/object-specifics/stpeters.xml +++ /dev/null @@ -1,241 +0,0 @@ - - - - - - - St. Peters Basilica - demo:3015 - - - - - - - - 16th century - - uva-lib:2 - unrestricted - Architecture -- Renaissance - Architecture -- Baroque - Roman Catholic Church - Italy, Rome - St. Peters Basilica - architecture - - digital - - Alderman Library - - - - 41.54N - 12.27E - - - - - 1506 - 1618 - - Italian - - Italy, Rome - - Renaissance, Italian - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - unrestricted - educational - - - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - unrestricted - educational - - - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - unrestricted - educational - - - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - unrestricted - educational - - - - - - - - - - - diff --git a/fedora/client/demo/batch-demo/object-specifics/templevenusandrome.xml b/fedora/client/demo/batch-demo/object-specifics/templevenusandrome.xml deleted file mode 100755 index c38d09b..0000000 --- a/fedora/client/demo/batch-demo/object-specifics/templevenusandrome.xml +++ /dev/null @@ -1,241 +0,0 @@ - - - - - - - Temple of Venus and Rome - demo:3016 - - - - - - - - 2nd century - - uva-lib:2 - unrestricted - Roman Empire - Roman - Hadrian - Temple - Temple of Venus and Rome - architecture - - digital - - Alderman Library - - - - 41.54N - 12.27E - - - - - 123 - 135 - - Roman - - Italy, Rome - - Ancient Roman - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - unrestricted - educational - - - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - unrestricted - educational - - - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - unrestricted - educational - - - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - unrestricted - educational - - - - - - - - - - - diff --git a/fedora/client/demo/batch-demo/object-specifics/tiberriver.xml b/fedora/client/demo/batch-demo/object-specifics/tiberriver.xml deleted file mode 100755 index 2a5fb01..0000000 --- a/fedora/client/demo/batch-demo/object-specifics/tiberriver.xml +++ /dev/null @@ -1,231 +0,0 @@ - - - - - - - Tiber river - demo:3017 - - - - - - - uva-lib:2 - unrestricted - Rivers -- Italy - Rome - Italy -- geography - Tiber River - river - - digital - - Alderman Library - - - - 41.54N - 12.27E - - - - - Italy, Rome - - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - unrestricted - educational - - - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - unrestricted - educational - - - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - unrestricted - educational - - - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - unrestricted - educational - - - - - - - - - - - diff --git a/fedora/client/demo/batch-demo/object-specifics/trevifountain.xml b/fedora/client/demo/batch-demo/object-specifics/trevifountain.xml deleted file mode 100755 index 7c9c391..0000000 --- a/fedora/client/demo/batch-demo/object-specifics/trevifountain.xml +++ /dev/null @@ -1,241 +0,0 @@ - - - - - - - Trevi Fountain - demo:3018 - - - - - - - - 18th century - - uva-lib:2 - unrestricted - Baroque, Italian - Fountain - Rome - Salvi, Niccolo - Trevi Fountain - architecture - - digital - - Alderman Library - - - - 41.54N - 12.27E - - - - - 1732 - 1782 - - Italian - - Italy, Rome - - Baroque, Italian - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - unrestricted - educational - - - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - unrestricted - educational - - - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - unrestricted - educational - - - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - unrestricted - educational - - - - - - - - - - - diff --git a/fedora/client/demo/batch-demo/object-specifics/vaticanlibrary.xml b/fedora/client/demo/batch-demo/object-specifics/vaticanlibrary.xml deleted file mode 100755 index 2610d70..0000000 --- a/fedora/client/demo/batch-demo/object-specifics/vaticanlibrary.xml +++ /dev/null @@ -1,241 +0,0 @@ - - - - - - - Vatican Library - demo:3019 - - - - - - - - 16th century - - uva-lib:2 - unrestricted - Renaissance - Italian - Rome - Italy, Vatican City - Vatican Apostolic Library - architecture - - digital - - Alderman Library - - - - 41.54N - 12.27E - - - - - 1587 - 1590 - - Italian - - Italy, Vatican City - - Renaissance Italian - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - unrestricted - educational - - - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - unrestricted - educational - - - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - unrestricted - educational - - - - - - - - - - - - - - - - - - - - - - - slide - - - - - - - - - - 20010901 - Thorny Staples - creation - - - - - - - - - - unrestricted - educational - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/document-transform-demo/demo_XML_TO_HTMLDOC.xml b/fedora/client/demo/foxml/local-server-demos/document-transform-demo/demo_XML_TO_HTMLDOC.xml deleted file mode 100644 index e87c9c4..0000000 --- a/fedora/client/demo/foxml/local-server-demos/document-transform-demo/demo_XML_TO_HTMLDOC.xml +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - - - - - - Content Model Object for Document Transform Demo - demo:XML_TO_HTMLDOC - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/document-transform-demo/obj_demo_14.xml b/fedora/client/demo/foxml/local-server-demos/document-transform-demo/obj_demo_14.xml deleted file mode 100755 index 75178a1..0000000 --- a/fedora/client/demo/foxml/local-server-demos/document-transform-demo/obj_demo_14.xml +++ /dev/null @@ -1,68 +0,0 @@ - - - - - - - - - - - - - - Web Service Definition for the Fedora Access Service - Sandy Payette - Fedora - documentation - web service - Web Services Description Language (WSDL) - This object contains a WSDL description of the Fedora Access web service which can be viewed in two document formats. - demo:14 - http://www.fedora.info - unrestricted - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/document-transform-demo/sdef_demo_12.xml b/fedora/client/demo/foxml/local-server-demos/document-transform-demo/sdef_demo_12.xml deleted file mode 100755 index 512ff50..0000000 --- a/fedora/client/demo/foxml/local-server-demos/document-transform-demo/sdef_demo_12.xml +++ /dev/null @@ -1,50 +0,0 @@ - - - - - - - - - - - - - - Service Definition Object for Document Transform Demo - demo:12 - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/document-transform-demo/sdep_demo_13.xml b/fedora/client/demo/foxml/local-server-demos/document-transform-demo/sdep_demo_13.xml deleted file mode 100755 index 29f51ce..0000000 --- a/fedora/client/demo/foxml/local-server-demos/document-transform-demo/sdep_demo_13.xml +++ /dev/null @@ -1,205 +0,0 @@ - - - - - - - - - - - - - - Service Deployment Object for Document Transform Demo - demo:13 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - XML source file - text/xml - XML source file to be transformed - - - XSLT Stylesheet 1 - text/xml - Stylesheet to produce the transformation output in Style 1 - - - - XSLT Stylesheet 2 - text/xml - Stylesheet to produce the transformation output in Style 2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/formatting-objects-demo/cmodel_demo_FO_TO_PDFDOC.xml b/fedora/client/demo/foxml/local-server-demos/formatting-objects-demo/cmodel_demo_FO_TO_PDFDOC.xml deleted file mode 100644 index 7238ba0..0000000 --- a/fedora/client/demo/foxml/local-server-demos/formatting-objects-demo/cmodel_demo_FO_TO_PDFDOC.xml +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - - - - - Content Model Object (FO to PDF) for Formatting Objects Demo - demo:FO_TO_PDFDOC - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/formatting-objects-demo/cmodel_demo_TEI_TO_PDFDOC.xml b/fedora/client/demo/foxml/local-server-demos/formatting-objects-demo/cmodel_demo_TEI_TO_PDFDOC.xml deleted file mode 100644 index 77f7d0b..0000000 --- a/fedora/client/demo/foxml/local-server-demos/formatting-objects-demo/cmodel_demo_TEI_TO_PDFDOC.xml +++ /dev/null @@ -1,55 +0,0 @@ - - - - - - - - - - - - - - Content Model Object (TEI to PDF) for Formatting Objects Demo - demo:TEI_TO_PDFDOC - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/formatting-objects-demo/obj_demo_21.xml b/fedora/client/demo/foxml/local-server-demos/formatting-objects-demo/obj_demo_21.xml deleted file mode 100755 index 492fd90..0000000 --- a/fedora/client/demo/foxml/local-server-demos/formatting-objects-demo/obj_demo_21.xml +++ /dev/null @@ -1,2022 +0,0 @@ - - - - - - - - - - - - - - Advanced FO Sample from Apache FOP Distribution - - Apache Group - FOP - FO - Apache - demo:21 - unrestricted - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This is not the latest Fop documentation, but just an fo - example. FOP - p. - - - - - - FOP: An - Open-Source XSL Formatter and Renderer - A) - What is FOP? - FOP is - the world's first print formatter driven by XSL formatting - objects. It is a Java 1.1 application that reads a formatting - object - tree and then turns it into a PDF document. The formatting object - tree, can be in the form of an XML document (output by an XSLT - engine - like XT or Xalan) or can be passed in memory as a DOM Document or - (in - the case of XT) SAX events. - - - FOP is part of Apache's XML Graphics Project. The homepage of - FOP is - - http://xmlgraphics.apache.org/fop - - - - B) - Downloading FOP - - The latest release version is - FOP - 0.20.5 - - () - - . - - NOTE: - you do not have to unjar or unzip this jar file. - - Documentation can be downloaded here as - HMTL file - - - () - - or - as - PDF file - - - () - - . - - To run - FOP from the command line, see Running FOP. If you are - interested in - embedding FOP in a Java application of your own, see Embedding FOP. - - - You can also download the - source code - v. 0.20.5 - - () - - as jar file - - C) - Running FOP - - 1) Prerequisites - Following - software must be installed: - a) Java - 1.1.x or later - - For the fo-file viewer mode of FOP (see below) you must have the - swing classes installed. - From Java 1.2 on (aka Java 2) they are part of the standard java - distribution. - If you use Java 1.1.x you must seperately include the swing - classes, which can - be found at the - - Sun website - - (http://java.sun.com/products/jfc/#download-swing) - - . - - - b) An XML parser which supports SAX and DOM like - Xerces-J - - - (http://xerces.apache.org/xerces-j/index.html) - - . - - - c) If you have to produce the flow objects files, which are the - input for FOP, - you need a transformation utility to create this files from your - xml files. - Normally this is an XSLT stylesheet processor like - XT - - - (http://www.jclark.com/xml/xt.html) - - or - XALAN - - - (http://xalan.apache.org/index.html) - - . - - - - 2) Starting FOP as an standalone - application - There - are three ways to run FOP from the command line. - a) Batch - processing formatting objects (fo) files: - java org.apache.fop.apps.CommandLine fo-file - pdf-file - b) Batch - processing xml files (includes production of the fo-files): - - java org.apache.fop.apps.CommandLine - xml-file xsl-file pdf-file - c) - Previewing the fo-file: - java org.apache.fop.apps.AWTCommandLine - fo-file - Each - method uses next to the fop classes other packages. The - following describes - each method in detail. - - a) Method One - One is - to first use an XSLT engine to produce the formatting object - tree as an - XML document and then running the class - org.apache.fop.apps.CommandLine with the - formatting object file name and PDF filename as arguments. You will need - to include - FOP and your XML Parser in your classpath and so you might invoke - - java -cp fop_x_xx_x.jar;xerces.jar - - org.apache.fop.apps.CommandLine fo-file - pdf-file - If your - SAX Parser is other than Xerces, you will need to set the - property - org.xml.sax.parser to the SAX Parser class to use. The following example shows - the command line, if you use XP, the XML parser from James Clark: - - java - -Dorg.xml.sax.parser=com.jclark.xml.sax.Driver - -cp - fop_x_xx_x.jar;sax.jar;xt.jar;xp.jar;xerces.jar - org.apache.fop.apps.AWTCommandLine - formatting-tree-file pdf-file - (You - have to include xerces.jar or another xml parser which supports - DOM in your classpath.) - - - b) Method Two - Rather - than performing transformation with an XSLT before invoking FOP, - it is - possible, if you use XT as your XSLT engine, to just call FOP and have it - call - XT for you. To do this, run the class - org.apache.fop.apps.CommandLine with the - source XML file name, XSL file name and PDF file name as arguments. - You will - need to include FOP, SAX, your SAX Parser and XT in your classpath - and so you might - invoke - - java - -Dorg.xml.sax.parser=com.jclark.xml.sax.Driver - -cp fop_x_xx_x.jar;xt.jar;xerces.jar - - org.apache.fop.apps.CommandLine xml-file - xsl-file pdf-file - Again, - if your SAX Parser is other than Xerces, you will need to set - the property - org.xml.sax.parser to the SAX Parser class to use. - - - - c) Method Three - If you - already produced the FO file, you can preview the results of - your - transformation without using any pdf viewer by invoking FOP with the viewer - application. You will need to include FOP and your XML Parser in - your classpath - - java -cp fop_x_xx_x.jar;xerces.jar - - org.apache.fop.apps.AWTCommandLine fo-file - - The - viewer uses the swing classes. - Note: If - you are using java 2 or later (i.e. jdk 1.2. or later) you can - put all - needed jar files into the subdirectory jdk1.2.x\jre\lib\ext (windows - example). Then - FOP can be started without classpath: - - java org.apache.fop.apps.CommandLine fo-file - pdf-file - - - - 3) Running FOP on MacOS - - Ensure - that you have a recent MRJ, and that you have downloaded and - unpacked the XP and SAX distributions. The xp.jar and sax.jar - files work - as is on MacOS. - - Drag the - FOP jarfile onto the JBindery icon. When the first dialog - appears, type "org.apache.fop.apps.CommandLine" in the "Class - name" field. - Using UNIX syntax, type the names of the input formatting-object file - and - the output PDF in the "Optional parameters" field. - - Click on - the Classpath icon. To add the xp.jar and sax.jar files, click - the "Add .zip file" button, navigate to the file in question, - and click - Open. - - Once - both are added (the FOP jarfile will already be in the list), - click - Run. A "stdout" window will appear and display FOP runtime messages. - - - - 4) Problems - - If you have problems running FOP, please have a look at the - FOP FAQ - - - (faq.html) - - . If you don't find a solution there, - you can ask for help on the list fop-dev@xmlgraphics.apache.org. - Maybe it's bug and - maybe somebody is already working on it. - - - - - - D) - Embedding FOP - Instantiate - org.apache.fop.apps.Driver. Once this class is - instantiated, methods are called to set the - Renderer to use, the (possibly multiple) ElementMapping(s) to - use and the PrintWriter to use to output the results of the - rendering (where applicable). In the case of the Renderer and - ElementMapping(s), the Driver may be supplied either with the - object itself, or the name of the class, in which case Driver - will - instantiate the class itself. The advantage of the latter is it - enables runtime determination of Renderer and ElementMapping(s). - - Once the - Driver is set up, the buildFOTree method - is called. Depending on whether DOM or SAX is being used, the - invocation of the method is either buildFOTree(Document) or - buildFOTree(Parser, InputSource) respectively. - - A third - possibility may be used to build the FO Tree, namely - calling getDocumentHandler() and firing the SAX events yourself. - - Once the - FO Tree is built, the format() and render() methods may be - called in that order. - - Here is - an example use of Driver from CommandLine.java: - Driver driver = new Driver(); - driver.setRenderer("org.apache.fop.render.pdf.PDFRenderer", - version); - driver.addElementMapping("org.apache.fop.fo.StandardElementMapping"); - - driver.addElementMapping("org.apache.fop.svg.SVGElementMapping"); - - driver.setWriter(new PrintWriter(new - FileWriter(args[1]))); - driver.buildFOTree(parser, - fileInputSource(args[0])); - driver.format(); - driver.render(); - - - - - - - E) - What's Implemented? - Also see - STATUS for what is being worked on. - - 1) Formatting Objects - - - - - - - - - root - - - - - - - - - - layout-master-set - - - - - - - - - - simple-page-master - - - - - - - - - - region-body - - - - - - - - - - region-before - - - - - - - - - - region-after - - - - - - - - - - page-sequence - - - - - - - - - - sequence-specification - - - - - - - - - - sequence-specifier-single - - - - - - - - - - sequence-specifier-repeating - - - - - - - - - - sequence-specifier-alternating - - - - - - - - - - flow - - - - - - - - - - static-content - - - - - - - - - - block - - - - - - - - - - list-block - - - - - - - - - - list-item - - - - - - - - - - list-item-label - - - - - - - - - - list-item-body - - - - - - - - - - page-number - - - - - - - - - - display-sequence - - - - - - - - - - inline - - - - - - - - - - display-rule - - - - - - - - - - display-graphic - - - - - - - - - - table (minimal support) - - - - - - - - - - table-column (minimal support) - - - - - - - - - - table-body (minimal support) - - - - - - - - - - table-row (minimal support) - - - - - - - - - - table-cell (minimal support) - - - - - - - 2) Properties - - - - - - - - - end-indent - - - - - - - - - - page-master-name - - - - - - - - - - page-master-first - - - - - - - - - - page-master-repeating - - - - - - - - - - page-master-odd - - - - - - - - - - page-master-even - - - - - - - - - - margin-top (only on pages and regions) - - - - - - - - - - margin-bottom (only on pages and regions) - - - - - - - - - - margin-left (only on pages and regions) - - - - - - - - - - margin-right (only on pages and regions) - - - - - - - - - - extent - - - - - - - - - - page-width - - - - - - - - - - page-height - - - - - - - - - - flow-name - - - - - - - - - - font-family - - - - - - - - - - font-style - - - - - - - - - - font-weight - - - - - - - - - - font-size - - - - - - - - - - line-height - - - - - - - - - - text-align - - - - - - - - - - text-align-last - - - - - - - - - - space-before.optimum - - - - - - - - - - space-after.optimum - - - - - - - - - - start-indent - - - - - - - - - - end-indent - - - - - - - - - - provisional-distance-between-starts - - - - - - - - - - provisional-label-separation - - - - - - - - - - rule-thickness - - - - - - - - - - color - - - - - - - - - - wrap-option - - - - - - - - - - white-space-treatment - - - - - - - - - - break-before - - - - - - - - - - break-after - - - - - - - - - - text-indent - - - - - - - - - - href - - - - - - - - - - column-width - - - - - - - - - - background-color - - - - - - - - - - padding-top (only in conjunction with background - color) - - - - - - - - - - padding-left (only in conjunction with background - color) - - - - - - - - - - padding-bottom (only in conjunction with background - color) - - - - - - - - - - padding-right (only in conjunction with background - color) - - - - - - - - - - F) - Limitations - Although - FOP implements the above listed fo objects and properties, - sometimes it does so - only in a limited way. - - - list-block - The fo - working draft allows describes two ways to markup lists.The - list-block must have as - children either: 1) pairs of fo:list-item-label and fo:list-item-body - formatting objects, or - 2) fo:list-item formatting objects. - At the - moment FOP only implements the second way. Therefore a list has - a basic structure like this: - <fo:list-block> - <fo:list-item> - <fo:list-item-label><fo:block></fo:block></fo:list-item-label> - - <fo:list-item-body><fo:block></fo:block></fo:list-item-body> - - </fo:list-item> - </fo:list-block> - - - Padding - Padding - works in conjunction with indents and spaces. It is only - implemented - for blocks. At the moment padding can't be used to make extra space - (indents+spaces - must be used), but only to control how much the background-color - extends beyond - the content rectangle. - - - - Tables - There - two limitations for tables: 1) FOP needs you to explicitly - specify column widths - 2) Cells have to contain block-level FOs. They can't contain - straight character data. - - A - working basic example of a table looks like this: - <fo:table> - <fo:table-column - column-width="150pt"/> - <fo:table-column - column-width="150pt"/> - <fo:table-body font-size="10pt" - font-family="sans-serif"> - <fo:table-row> - <fo:table-cell> - <fo:block>text</fo:block> - - </fo:table-cell> - <fo:table-cell> - <fo:block>text</fo:block> - - </fo:table-cell> - </fo:table-row> - <fo:table-row> - <fo:table-cell> - <fo:block>text</fo:block> - - </fo:table-cell> - <fo:table-cell> - <fo:block>text</fo:block> - - </fo:table-cell> - </fo:table-row> - <fo:table-row> - <fo:table-cell> - <fo:block>text</fo:block> - - </fo:table-cell> - <fo:table-cell> - <fo:block>text</fo:block> - - </fo:table-cell> - </fo:table-row> - </fo:table-body> - </fo:table> - - - - - - - - - - - - G) - Bugs - see - STATUS file - - - - - - - H) - Compiling FOP - - 1. Prerequisites - - a) Java 1.1.x or later - - If you use Java 1.1.x you must also seperately include the swing - classes, which can - be found at the - - Sun website - - (http://java.sun.com/products/jfc/#download-swing) - - . From Java 1.2 on (aka Java 2) they are part of the standard - distribution. - - - - b) An XML parser - - An XML parser which supports DOM like - Xerces-J - - - (http://xerces.apache.org/xerces-j/index.html) - - . - - - - c) XT from James Clark - Some of - the Java source code in FOP is generated from XML using - XSLT. XT must be used to generate this code. - - XT is an XSL stylesheet processor written in java. At the moment - you - can't use any other processor, because the make file makes use of - some - proprietary features of Clark's xt which allow to write output in more - then one document. You can find XT at - - James Clark's website - - (http://www.jclark.com/xml/xt.html) - - . You have to use XT version 19991105 or later. - - (Under - windows you shouldn't use the prepackaged xt.exe but also the - generic jar file, otherwise make won't work) - - - XT relies on an sax parser like XP (also J. Clark), which can be - downloaded at - James - Clark's Website - - (http://www.jclark.com/xml/xp/index.html) - - - - - d) make - - Under windows it has been reported that the use of the cygnus - solutions port - of the GNU utilities works. You can find it at - Cygnus - Solutions - - (http://sourceware.cygnus.com/cygwin/) - - - - - - Compiling FOP on MacOS - - We - strongly recommend the use of Codewarrior Java. This Readme will - contain a link to more information in the near future. - - - - - - - - - I) - Getting involved - 1. - Subscribe to fop-dev@xmlgraphics.apache.org by sending an email - to fop-dev-subscribe@xmlgraphics.apache.org - 2. Read - the archives to fop-dev to get an idea of the issues being - discussed. - 3. - Subscribe to fop-cvs@xmlgraphics.apache.org by sending an email - to - fop-cvs-subscribe@xmlgraphics.apache.org (it is important - that you follow changes being made). - 4. Try - :-) to wrap your head around the XSL working draft. - 5. Get - CVS working on your system. - 6. Ask, - on fop-dev, any questions you have at all about the code, - design, etc. - 7. When - you feel comfortable modifying the code, send diffs to - fop-dev with your contributions. - 8. Have - fun! - - - - - - - J) - FOP Relevant Specifications - - - - - - - - - - XML - Recommendation - - ( - http://www.w3.org/TR/REC-xml - - ) - - - - - - - - - - - - - XSL-FO - Working Draft - - ( - http://www.w3.org/TR/WD-xsl/ - - ) - - - - - - - - - - - - - XSLT - Recommendation - - ( - http://www.w3.org/TR/xslt - - ) - - - - - - - - - - - - - PDF - Documentation - - ( - http://partners.adobe.com/asn/developer/acrosdk/DOCS/pdfspec.pdf - - ) - - - - - - - - - - - - - Simple - API for XML (SAX) - - ( - http://www.megginson.com/SAX/ - - ) - - - - - - - - - - - - - Document - Object Model (DOM) - - ( - http://www.w3.org/TR/REC-DOM-Level-1 - - ) - - - - - - - - - - - - - Namespaces - in XML Recommendation - - ( - http://www.w3.org/TR/REC-xml-names/ - - ) - - - - - - - - - - - - - Java JDK - 1.1 Documentation - - ( - http://java.sun.com/products/jdk/1.1/docs/index.html - - ) - - - - - - - - - - - - K) - Licence - - =================================================================== - - The - Apache Software License, Version 1.1 - - =================================================================== - - - Copyright (C) 1999 The Apache Software Foundation. All rights - reserved. - - Redistribution and use in source and binary forms, with or - without modification, - 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 "FOP" 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 - apache@apache.org. - - - 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 and was originally - created by - James Tauber <jtauber@jtauber.com>. For more information on the - Apache - Software Foundation, please see - http://www.apache.org/ - - - (http://www.apache.org/) - - . - - - - Content - - - - - - - - - A) - - - - - What is FOP? - - - - - - - - - - - B) - - - - - Downloading FOP - - - - - - - - - - - C) - - - - - Running FOP - - - - - - - - - - - D) - - - - - Embedding FOP - - - - - - - - - - - E) - - - - - What's Implemented? - - - - - - - - - - - F) - - - - - Limitations - - - - - - - - - - - G) - - - - - Bugs - - - - - - - - - - - H) - - - - - Compiling FOP - - - - - - - - - - - I) - - - - - Getting involved - - - - - - - - - - - J) - - - - - FOP Relevant Specifications - - - - - - - - - - - - K) - - - - - Licence - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/formatting-objects-demo/obj_demo_26.xml b/fedora/client/demo/foxml/local-server-demos/formatting-objects-demo/obj_demo_26.xml deleted file mode 100755 index 2f2bf57..0000000 --- a/fedora/client/demo/foxml/local-server-demos/formatting-objects-demo/obj_demo_26.xml +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - - - - - - - - The Purple Cow - Frank Gelett Burgess - demo:26 - unrestricted - - - - - - - - - - - - - - - - - - - - - - - - - - - - The Purple Cow - Frank Gelett Burgess - - -

Text entry by Walter Underwood(wunder@infoseek.com) on - 1999-02-01. This transcription is in the public domain.

-
- -

From the The Lark, San Fransicsco, 1896.

-
-
-
- - - - The Purple Cow - - I never saw a purple cow, - I never hope to see one; - But I can tell you, anyhow, - I'd rather see than be one. - - - - -
-
-
-
-
diff --git a/fedora/client/demo/foxml/local-server-demos/formatting-objects-demo/sdef_demo_19.xml b/fedora/client/demo/foxml/local-server-demos/formatting-objects-demo/sdef_demo_19.xml deleted file mode 100755 index 2fb82a2..0000000 --- a/fedora/client/demo/foxml/local-server-demos/formatting-objects-demo/sdef_demo_19.xml +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - - - - - Service Definition Object (PDF) for Formatting Objects Demo - demo:19 - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/formatting-objects-demo/sdef_demo_22.xml b/fedora/client/demo/foxml/local-server-demos/formatting-objects-demo/sdef_demo_22.xml deleted file mode 100755 index 1a2eb02..0000000 --- a/fedora/client/demo/foxml/local-server-demos/formatting-objects-demo/sdef_demo_22.xml +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - - - - - Service Definition Object (FO) for Formatting Objects Demo - demo:22 - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/formatting-objects-demo/sdep_demo_20.xml b/fedora/client/demo/foxml/local-server-demos/formatting-objects-demo/sdep_demo_20.xml deleted file mode 100755 index 3c935b7..0000000 --- a/fedora/client/demo/foxml/local-server-demos/formatting-objects-demo/sdep_demo_20.xml +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - - - - - - - - - Service Deployment Object (FO to PDF) for Formatting Objects Demo - demo:20 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - XML source file - text/xml - XML source file to be transformed - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/formatting-objects-demo/sdep_demo_25.xml b/fedora/client/demo/foxml/local-server-demos/formatting-objects-demo/sdep_demo_25.xml deleted file mode 100755 index bb299e3..0000000 --- a/fedora/client/demo/foxml/local-server-demos/formatting-objects-demo/sdep_demo_25.xml +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - - - - - - - - - Service Deployment Object (TEI to FO) for Formatting Objects Demo - demo:25 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - TEI source file - text/xml - XML source file in TEI format, to be transformed to FO format - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/image-collection-demo/cModelObjects/demo_DualResImage.xml b/fedora/client/demo/foxml/local-server-demos/image-collection-demo/cModelObjects/demo_DualResImage.xml deleted file mode 100644 index 8180945..0000000 --- a/fedora/client/demo/foxml/local-server-demos/image-collection-demo/cModelObjects/demo_DualResImage.xml +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - - - - Content Model Object (Image) for Image Collection Demo - demo:DualResImage - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/image-collection-demo/cModelObjects/demo_DualResImageCollection.xml b/fedora/client/demo/foxml/local-server-demos/image-collection-demo/cModelObjects/demo_DualResImageCollection.xml deleted file mode 100644 index fca6307..0000000 --- a/fedora/client/demo/foxml/local-server-demos/image-collection-demo/cModelObjects/demo_DualResImageCollection.xml +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - - - - - - - - - Content Model Object (Image Collection) for Image Collection Demo - demo:DualResImageCollection - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyBeerGlass.xml b/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyBeerGlass.xml deleted file mode 100755 index f6f7584..0000000 --- a/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyBeerGlass.xml +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - Smiley Beer Glass - I guess you could drink other things out of it, but I haven't tried. - demo:SmileyBeerGlass - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyBucket.xml b/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyBucket.xml deleted file mode 100755 index 3733a7b..0000000 --- a/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyBucket.xml +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - Smiley Bucket - This bucket can be used for sand, flour, sugar, dirt, paint, and water. - demo:SmileyBucket - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyDinnerware.xml b/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyDinnerware.xml deleted file mode 100755 index a6e318f..0000000 --- a/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyDinnerware.xml +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - Smiley Dinnerware - Made from 100% pure paper and plastic, this dinnerware is sure to impress your kids. - demo:SmileyDinnerware - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyEarring.xml b/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyEarring.xml deleted file mode 100755 index 6253762..0000000 --- a/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyEarring.xml +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - Smiley Earring - Smiling from ear to ear. - demo:SmileyEarring - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyGreetingCard.xml b/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyGreetingCard.xml deleted file mode 100644 index 913d06a..0000000 --- a/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyGreetingCard.xml +++ /dev/null @@ -1,73 +0,0 @@ - - - - - - - - - - - - - - Smiley Greeting Card - Great for people who still use snail mail. - demo:SmileyGreetingCard - - - - - - - - - - - - - - - - - - - - - - - 320 - 240 - - - 800 - 600 - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyKeychain.xml b/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyKeychain.xml deleted file mode 100755 index 5628bb3..0000000 --- a/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyKeychain.xml +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - Smiley Keychain - It dangles from side to side while you're driving. - demo:SmileyKeychain - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyNightlight.xml b/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyNightlight.xml deleted file mode 100755 index 34aa717..0000000 --- a/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyNightlight.xml +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - Smiley Nightlight - Simple operation: push on, push off. Very amusing for people who like to push things. - demo:SmileyNightlight - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyPens.xml b/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyPens.xml deleted file mode 100755 index 5e8ce50..0000000 --- a/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyPens.xml +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - - - - - - - - Smiley Pens - Yes, these actually write. Well, I haven't tested them but I'm pretty sure. - demo:SmileyPens - - - - - - - - - - - - - - - - - - - - - - 320 - 240 - - - 800 - 600 - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyShortRoundCup.xml b/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyShortRoundCup.xml deleted file mode 100755 index 4c8faf0..0000000 --- a/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyShortRoundCup.xml +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - Smiley Short Round Cup - It's round. It's a cup. It's amazing! - demo:SmileyShortRoundCup - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyStuff.xml b/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyStuff.xml deleted file mode 100755 index d80e3b2..0000000 --- a/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyStuff.xml +++ /dev/null @@ -1,59 +0,0 @@ - - - - - - - - - - - - - - Collection of Smiley Stuff - This is Deb's collection of smiley stuff. - demo:SmileyStuff - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyTallRoundCup.xml b/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyTallRoundCup.xml deleted file mode 100755 index 4ff6339..0000000 --- a/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyTallRoundCup.xml +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - Smiley Tall Round Cup - This cup measures ten inches high (when standing). When it's on it's side, it measures ten inches wide. - demo:SmileyTallRoundCup - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyToiletBrush.xml b/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyToiletBrush.xml deleted file mode 100755 index ed52d38..0000000 --- a/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyToiletBrush.xml +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - Smiley Toilet Brush - At least one of you will be smiling while you put this item to use. - demo:SmileyToiletBrush - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyWastebasket.xml b/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyWastebasket.xml deleted file mode 100755 index b6c427a..0000000 --- a/fedora/client/demo/foxml/local-server-demos/image-collection-demo/dataObjects/demo_SmileyWastebasket.xml +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - Smiley Wastebasket - You can throw your trash in this. Don't forget to recycle! - demo:SmileyWastebasket - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/image-collection-demo/sDefObjects/demo_Collection.xml b/fedora/client/demo/foxml/local-server-demos/image-collection-demo/sDefObjects/demo_Collection.xml deleted file mode 100755 index 6b23395..0000000 --- a/fedora/client/demo/foxml/local-server-demos/image-collection-demo/sDefObjects/demo_Collection.xml +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - Service Definition Object (Collection) for Image Collection Demo - demo:Collection - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/image-collection-demo/sDefObjects/demo_DualResolution.xml b/fedora/client/demo/foxml/local-server-demos/image-collection-demo/sDefObjects/demo_DualResolution.xml deleted file mode 100755 index d306377..0000000 --- a/fedora/client/demo/foxml/local-server-demos/image-collection-demo/sDefObjects/demo_DualResolution.xml +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - Service Definition Object (Image) for Image Collection Demo - demo:DualResolution - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/image-collection-demo/sDepObjects/demo_CollectionImpl.xml b/fedora/client/demo/foxml/local-server-demos/image-collection-demo/sDepObjects/demo_CollectionImpl.xml deleted file mode 100755 index 20074e3..0000000 --- a/fedora/client/demo/foxml/local-server-demos/image-collection-demo/sDepObjects/demo_CollectionImpl.xml +++ /dev/null @@ -1,199 +0,0 @@ - - - - - - - - - - - - - - Service Deployment Object (Collection) for Image Collection Demo - demo:ImageCollectionImpl - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - XSLT Binding - text/xml - - - - LIST Binding - text/xml - - - - QUERY Binding - text/plain - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/image-collection-demo/sDepObjects/demo_DualResImageImpl.xml b/fedora/client/demo/foxml/local-server-demos/image-collection-demo/sDepObjects/demo_DualResImageImpl.xml deleted file mode 100755 index 28cbb30..0000000 --- a/fedora/client/demo/foxml/local-server-demos/image-collection-demo/sDepObjects/demo_DualResImageImpl.xml +++ /dev/null @@ -1,163 +0,0 @@ - - - - - - - - - - - - - - Service Deployment Object (Image) for Image Collection Demo - demo:DualResImageImpl - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - FULL_SIZE Binding - image/jpeg - - - - MEDIUM_SIZE Binding - image/jpeg - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/image-manip-demo/demo_UVA_STD_IMAGE.xml b/fedora/client/demo/foxml/local-server-demos/image-manip-demo/demo_UVA_STD_IMAGE.xml deleted file mode 100644 index 818474f..0000000 --- a/fedora/client/demo/foxml/local-server-demos/image-manip-demo/demo_UVA_STD_IMAGE.xml +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - - - - - Content Model Object for Image Manipulation Demo - demo:UVA_STD_IMAGE - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/image-manip-demo/obj_demo_29.xml b/fedora/client/demo/foxml/local-server-demos/image-manip-demo/obj_demo_29.xml deleted file mode 100755 index d9c5ec7..0000000 --- a/fedora/client/demo/foxml/local-server-demos/image-manip-demo/obj_demo_29.xml +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - - - Coliseum in Rome - Thornton Staples - Architecture, Roman - Image of Coliseum in Rome - University of Virginia Library - image/jpeg - demo:29 - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/image-manip-demo/sdef_demo_27.xml b/fedora/client/demo/foxml/local-server-demos/image-manip-demo/sdef_demo_27.xml deleted file mode 100755 index e10c99e..0000000 --- a/fedora/client/demo/foxml/local-server-demos/image-manip-demo/sdef_demo_27.xml +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - - - - - - - - Service Definition Object for Image Manipulation Demo - demo:27 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/image-manip-demo/sdep_demo_28.xml b/fedora/client/demo/foxml/local-server-demos/image-manip-demo/sdep_demo_28.xml deleted file mode 100755 index 791216a..0000000 --- a/fedora/client/demo/foxml/local-server-demos/image-manip-demo/sdep_demo_28.xml +++ /dev/null @@ -1,352 +0,0 @@ - - - - - - - - - - - - - - Service Deployment Object for Image Manipulation Demo - demo:28 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Image URL - image/gif - image/jpeg - image/tiff - image/png - image/bmp - URL pointing to an image of type GIF, JPG, or TIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/simple-document-demo/obj_demo_18.xml b/fedora/client/demo/foxml/local-server-demos/simple-document-demo/obj_demo_18.xml deleted file mode 100755 index e299da2..0000000 --- a/fedora/client/demo/foxml/local-server-demos/simple-document-demo/obj_demo_18.xml +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - - - - The Mellon Fedora Project: Digital Library Architecture Meets XML and Web Services - Sandra Payette - Thornton Staples - Fedora - repository architecture - digital libraries - web service - open source software - Paper on the Fedora project, presented at the European Digital Library Conference (ECDL) in 2002, Rome, Italy - Springer - 2002-09-17 - application/pdf - application/msword - application/ps - demo:18 - http://www.fedora.info - unrestricted - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/simple-document-demo/obj_demo_31.xml b/fedora/client/demo/foxml/local-server-demos/simple-document-demo/obj_demo_31.xml deleted file mode 100755 index c35e832..0000000 --- a/fedora/client/demo/foxml/local-server-demos/simple-document-demo/obj_demo_31.xml +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - - - - - Data Object (SVG) for Simple Document Demo - Chris Wilper - The Apache Group - svg - batik - apache - Demonstration digital object containing SVG from the Batik 1.5 distribution - The Apache Group - image/svg+xml - demo:31 - http://xml.apache.org/batik/ - The Apache License - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/simple-image-demo/demo_UVA_STD_IMAGE_1.xml b/fedora/client/demo/foxml/local-server-demos/simple-image-demo/demo_UVA_STD_IMAGE_1.xml deleted file mode 100644 index 7cb4535..0000000 --- a/fedora/client/demo/foxml/local-server-demos/simple-image-demo/demo_UVA_STD_IMAGE_1.xml +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - - - - - Content Model Object (4 JPEGS) for Local Simple Image Demo - demo:UVA_STD_IMAGE_1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/simple-image-demo/obj_demo_5.xml b/fedora/client/demo/foxml/local-server-demos/simple-image-demo/obj_demo_5.xml deleted file mode 100755 index dbb5090..0000000 --- a/fedora/client/demo/foxml/local-server-demos/simple-image-demo/obj_demo_5.xml +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - - - - - - - Coliseum in Rome - Thornton Staples - Architecture, Roman - Image of Coliseum in Rome - University of Virginia Library - image/jpeg - demo:5 - - - - - - - - - - - Immagine del Colosseo a Roma - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/simple-image-demo/sdef_demo_1.xml b/fedora/client/demo/foxml/local-server-demos/simple-image-demo/sdef_demo_1.xml deleted file mode 100755 index ce3a9b7..0000000 --- a/fedora/client/demo/foxml/local-server-demos/simple-image-demo/sdef_demo_1.xml +++ /dev/null @@ -1,51 +0,0 @@ - - - - - - - - - - - - - - Service Definition Object for Simple Image Demos - demo:1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/foxml/local-server-demos/simple-image-demo/sdep_demo_2.xml b/fedora/client/demo/foxml/local-server-demos/simple-image-demo/sdep_demo_2.xml deleted file mode 100755 index 467edee..0000000 --- a/fedora/client/demo/foxml/local-server-demos/simple-image-demo/sdep_demo_2.xml +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - - - - - - - Service Deployment Object for Local Simple Image Demo - demo:2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - thumbnail image - image/jpeg - image of type image/jpeg at 100 dpi - - - medium resolution image - image/jpeg - image of type image/jpeg at 300 dpi - - - high resolution image - image/jpeg - image of type image/jpeg at 600 dpi - - - very high resolution image - image/jpeg - image of type image/jpeg at 1200 dpi - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/document-transform-demo/demo_XML_TO_HTMLDOC.xml b/fedora/client/demo/mets/local-server-demos/document-transform-demo/demo_XML_TO_HTMLDOC.xml deleted file mode 100644 index 61cc6e1..0000000 --- a/fedora/client/demo/mets/local-server-demos/document-transform-demo/demo_XML_TO_HTMLDOC.xml +++ /dev/null @@ -1,64 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Content Model Object for Document Transform Demo - demo:XML_TO_HTMLDOC - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/document-transform-demo/obj_demo_14.xml b/fedora/client/demo/mets/local-server-demos/document-transform-demo/obj_demo_14.xml deleted file mode 100644 index aeb3b73..0000000 --- a/fedora/client/demo/mets/local-server-demos/document-transform-demo/obj_demo_14.xml +++ /dev/null @@ -1,74 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Web Service Definition for the Fedora Access Service - Sandy Payette - Fedora - documentation - web service - Web Services Description Language (WSDL) - This object contains a WSDL description of the Fedora Access web service which can be viewed in two document formats. - demo:14 - http://www.fedora.info - unrestricted - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/document-transform-demo/sdef_demo_12.xml b/fedora/client/demo/mets/local-server-demos/document-transform-demo/sdef_demo_12.xml deleted file mode 100644 index 2270b10..0000000 --- a/fedora/client/demo/mets/local-server-demos/document-transform-demo/sdef_demo_12.xml +++ /dev/null @@ -1,57 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Service Definition Object for Document Transform Demo - demo:12 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/document-transform-demo/sdep_demo_13.xml b/fedora/client/demo/mets/local-server-demos/document-transform-demo/sdep_demo_13.xml deleted file mode 100644 index be730f8..0000000 --- a/fedora/client/demo/mets/local-server-demos/document-transform-demo/sdep_demo_13.xml +++ /dev/null @@ -1,207 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Service Deployment Object for Document Transform Demo - demo:13 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - XML source file - text/xml - XML source file to be transformed - - - XSLT Stylesheet 1 - text/xml - Stylesheet to produce the transformation output in Style 1 - - - - XSLT Stylesheet 2 - text/xml - Stylesheet to produce the transformation output in Style 2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/formatting-objects-demo/cmodel_demo_FO_TO_PDFDOC.xml b/fedora/client/demo/mets/local-server-demos/formatting-objects-demo/cmodel_demo_FO_TO_PDFDOC.xml deleted file mode 100644 index 0da162f..0000000 --- a/fedora/client/demo/mets/local-server-demos/formatting-objects-demo/cmodel_demo_FO_TO_PDFDOC.xml +++ /dev/null @@ -1,58 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Content Model Object (FO to PDF) for Formatting Objects Demo - demo:FO_TO_PDFDOC - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/formatting-objects-demo/cmodel_demo_TEI_TO_PDFDOC.xml b/fedora/client/demo/mets/local-server-demos/formatting-objects-demo/cmodel_demo_TEI_TO_PDFDOC.xml deleted file mode 100644 index 53b80cc..0000000 --- a/fedora/client/demo/mets/local-server-demos/formatting-objects-demo/cmodel_demo_TEI_TO_PDFDOC.xml +++ /dev/null @@ -1,62 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Content Model Object (TEI to PDF) for Formatting Objects Demo - demo:TEI_TO_PDFDOC - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/formatting-objects-demo/obj_demo_21.xml b/fedora/client/demo/mets/local-server-demos/formatting-objects-demo/obj_demo_21.xml deleted file mode 100644 index 55f0bf1..0000000 --- a/fedora/client/demo/mets/local-server-demos/formatting-objects-demo/obj_demo_21.xml +++ /dev/null @@ -1,1850 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Advanced FO Sample from Apache FOP Distribution - - Apache Group - FOP - FO - Apache - demo:21 - unrestricted - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - This is not the latest Fop documentation, but just an fo - example. FOP - p. - - - - - FOP: An - Open-Source XSL Formatter and Renderer - A) - What is FOP? - FOP is - the world's first print formatter driven by XSL formatting - objects. It is a Java 1.1 application that reads a formatting - object - tree and then turns it into a PDF document. The formatting object - tree, can be in the form of an XML document (output by an XSLT - engine - like XT or Xalan) or can be passed in memory as a DOM Document or - (in - the case of XT) SAX events. - - - FOP is part of Apache's XML Graphics Project. The homepage of - FOP is - - http://xmlgraphics.apache.org/fop - - - - B) - Downloading FOP - - The latest release version is - FOP - 0.20.5 - - () - - . - - NOTE: - you do not have to unjar or unzip this jar file. - - Documentation can be downloaded here as - HMTL file - - - () - - or - as - PDF file - - - () - - . - - To run - FOP from the command line, see Running FOP. If you are - interested in - embedding FOP in a Java application of your own, see Embedding FOP. - - - You can also download the - source code - v. 0.20.5 - - () - - as jar file - - C) - Running FOP - 1) Prerequisites - Following - software must be installed: - a) Java - 1.1.x or later - - For the fo-file viewer mode of FOP (see below) you must have the - swing classes installed. - From Java 1.2 on (aka Java 2) they are part of the standard java - distribution. - If you use Java 1.1.x you must seperately include the swing - classes, which can - be found at the - - Sun website - - (http://java.sun.com/products/jfc/#download-swing) - - . - - - b) An XML parser which supports SAX and DOM like - Xerces-J - - - (http://xerces.apache.org/xerces-j/index.html) - - . - - - c) If you have to produce the flow objects files, which are the - input for FOP, - you need a transformation utility to create this files from your - xml files. - Normally this is an XSLT stylesheet processor like - XT - - - (http://www.jclark.com/xml/xt.html) - - or - XALAN - - - (http://xalan.apache.org/index.html) - - . - - 2) Starting FOP as an standalone - application - There - are three ways to run FOP from the command line. - a) Batch - processing formatting objects (fo) files: - java org.apache.fop.apps.CommandLine fo-file - pdf-file - b) Batch - processing xml files (includes production of the fo-files): - - java org.apache.fop.apps.CommandLine - xml-file xsl-file pdf-file - c) - Previewing the fo-file: - java org.apache.fop.apps.AWTCommandLine - fo-file - Each - method uses next to the fop classes other packages. The - following describes - each method in detail. - a) Method One - One is - to first use an XSLT engine to produce the formatting object - tree as an - XML document and then running the class - org.apache.fop.apps.CommandLine with the - formatting object file name and PDF filename as arguments. You will need - to include - FOP and your XML Parser in your classpath and so you might invoke - - java -cp fop_x_xx_x.jar;xerces.jar - - org.apache.fop.apps.CommandLine fo-file - pdf-file - If your - SAX Parser is other than Xerces, you will need to set the - property - org.xml.sax.parser to the SAX Parser class to use. The following example shows - the command line, if you use XP, the XML parser from James Clark: - - java - -Dorg.xml.sax.parser=com.jclark.xml.sax.Driver - -cp - fop_x_xx_x.jar;sax.jar;xt.jar;xp.jar;xerces.jar - org.apache.fop.apps.AWTCommandLine - formatting-tree-file pdf-file - (You - have to include xerces.jar or another xml parser which supports - DOM in your classpath.) - b) Method Two - Rather - than performing transformation with an XSLT before invoking FOP, - it is - possible, if you use XT as your XSLT engine, to just call FOP and have it - call - XT for you. To do this, run the class - org.apache.fop.apps.CommandLine with the - source XML file name, XSL file name and PDF file name as arguments. - You will - need to include FOP, SAX, your SAX Parser and XT in your classpath - and so you might - invoke - - java - -Dorg.xml.sax.parser=com.jclark.xml.sax.Driver - -cp fop_x_xx_x.jar;xt.jar;xerces.jar - - org.apache.fop.apps.CommandLine xml-file - xsl-file pdf-file - Again, - if your SAX Parser is other than Xerces, you will need to set - the property - org.xml.sax.parser to the SAX Parser class to use. - - c) Method Three - If you - already produced the FO file, you can preview the results of - your - transformation without using any pdf viewer by invoking FOP with the viewer - application. You will need to include FOP and your XML Parser in - your classpath - - java -cp fop_x_xx_x.jar;xerces.jar - - org.apache.fop.apps.AWTCommandLine fo-file - - The - viewer uses the swing classes. - Note: If - you are using java 2 or later (i.e. jdk 1.2. or later) you can - put all - needed jar files into the subdirectory jdk1.2.x\jre\lib\ext (windows - example). Then - FOP can be started without classpath: - - java org.apache.fop.apps.CommandLine fo-file - pdf-file - 3) Running FOP on MacOS - Ensure - that you have a recent MRJ, and that you have downloaded and - unpacked the XP and SAX distributions. The xp.jar and sax.jar - files work - as is on MacOS. - - Drag the - FOP jarfile onto the JBindery icon. When the first dialog - appears, type "org.apache.fop.apps.CommandLine" in the "Class - name" field. - Using UNIX syntax, type the names of the input formatting-object file - and - the output PDF in the "Optional parameters" field. - - Click on - the Classpath icon. To add the xp.jar and sax.jar files, click - the "Add .zip file" button, navigate to the file in question, - and click - Open. - - Once - both are added (the FOP jarfile will already be in the list), - click - Run. A "stdout" window will appear and display FOP runtime messages. - - 4) Problems - - If you have problems running FOP, please have a look at the - FOP FAQ - - - (faq.html) - - . If you don't find a solution there, - you can ask for help on the list fop-dev@xmlgraphics.apache.org. - Maybe it's bug and - maybe somebody is already working on it. - - D) - Embedding FOP - Instantiate - org.apache.fop.apps.Driver. Once this class is - instantiated, methods are called to set the - Renderer to use, the (possibly multiple) ElementMapping(s) to - use and the PrintWriter to use to output the results of the - rendering (where applicable). In the case of the Renderer and - ElementMapping(s), the Driver may be supplied either with the - object itself, or the name of the class, in which case Driver - will - instantiate the class itself. The advantage of the latter is it - enables runtime determination of Renderer and ElementMapping(s). - - Once the - Driver is set up, the buildFOTree method - is called. Depending on whether DOM or SAX is being used, the - invocation of the method is either buildFOTree(Document) or - buildFOTree(Parser, InputSource) respectively. - - A third - possibility may be used to build the FO Tree, namely - calling getDocumentHandler() and firing the SAX events yourself. - - Once the - FO Tree is built, the format() and render() methods may be - called in that order. - - Here is - an example use of Driver from CommandLine.java: - Driver driver = new Driver(); - driver.setRenderer("org.apache.fop.render.pdf.PDFRenderer", - version); - driver.addElementMapping("org.apache.fop.fo.StandardElementMapping"); - - driver.addElementMapping("org.apache.fop.svg.SVGElementMapping"); - - driver.setWriter(new PrintWriter(new - FileWriter(args[1]))); - driver.buildFOTree(parser, - fileInputSource(args[0])); - driver.format(); - driver.render(); - E) - What's Implemented? - Also see - STATUS for what is being worked on. - 1) Formatting Objects - - - - - - - - - root - - - - - - - - - - layout-master-set - - - - - - - - - - simple-page-master - - - - - - - - - - region-body - - - - - - - - - - region-before - - - - - - - - - - region-after - - - - - - - - - - page-sequence - - - - - - - - - - sequence-specification - - - - - - - - - - sequence-specifier-single - - - - - - - - - - sequence-specifier-repeating - - - - - - - - - - sequence-specifier-alternating - - - - - - - - - - flow - - - - - - - - - - static-content - - - - - - - - - - block - - - - - - - - - - list-block - - - - - - - - - - list-item - - - - - - - - - - list-item-label - - - - - - - - - - list-item-body - - - - - - - - - - page-number - - - - - - - - - - display-sequence - - - - - - - - - - inline - - - - - - - - - - display-rule - - - - - - - - - - display-graphic - - - - - - - - - - table (minimal support) - - - - - - - - - - table-column (minimal support) - - - - - - - - - - table-body (minimal support) - - - - - - - - - - table-row (minimal support) - - - - - - - - - - table-cell (minimal support) - - - - 2) Properties - - - - - - - - - end-indent - - - - - - - - - - page-master-name - - - - - - - - - - page-master-first - - - - - - - - - - page-master-repeating - - - - - - - - - - page-master-odd - - - - - - - - - - page-master-even - - - - - - - - - - margin-top (only on pages and regions) - - - - - - - - - - margin-bottom (only on pages and regions) - - - - - - - - - - margin-left (only on pages and regions) - - - - - - - - - - margin-right (only on pages and regions) - - - - - - - - - - extent - - - - - - - - - - page-width - - - - - - - - - - page-height - - - - - - - - - - flow-name - - - - - - - - - - font-family - - - - - - - - - - font-style - - - - - - - - - - font-weight - - - - - - - - - - font-size - - - - - - - - - - line-height - - - - - - - - - - text-align - - - - - - - - - - text-align-last - - - - - - - - - - space-before.optimum - - - - - - - - - - space-after.optimum - - - - - - - - - - start-indent - - - - - - - - - - end-indent - - - - - - - - - - provisional-distance-between-starts - - - - - - - - - - provisional-label-separation - - - - - - - - - - rule-thickness - - - - - - - - - - color - - - - - - - - - - wrap-option - - - - - - - - - - white-space-treatment - - - - - - - - - - break-before - - - - - - - - - - break-after - - - - - - - - - - text-indent - - - - - - - - - - href - - - - - - - - - - column-width - - - - - - - - - - background-color - - - - - - - - - - padding-top (only in conjunction with background - color) - - - - - - - - - - padding-left (only in conjunction with background - color) - - - - - - - - - - padding-bottom (only in conjunction with background - color) - - - - - - - - - - padding-right (only in conjunction with background - color) - - - - F) - Limitations - Although - FOP implements the above listed fo objects and properties, - sometimes it does so - only in a limited way. - - list-block - The fo - working draft allows describes two ways to markup lists.The - list-block must have as - children either: 1) pairs of fo:list-item-label and fo:list-item-body - formatting objects, or - 2) fo:list-item formatting objects. - At the - moment FOP only implements the second way. Therefore a list has - a basic structure like this: - <fo:list-block> - <fo:list-item> - <fo:list-item-label><fo:block></fo:block></fo:list-item-label> - - <fo:list-item-body><fo:block></fo:block></fo:list-item-body> - - </fo:list-item> - </fo:list-block> - Padding - Padding - works in conjunction with indents and spaces. It is only - implemented - for blocks. At the moment padding can't be used to make extra space - (indents+spaces - must be used), but only to control how much the background-color - extends beyond - the content rectangle. - - Tables - There - two limitations for tables: 1) FOP needs you to explicitly - specify column widths - 2) Cells have to contain block-level FOs. They can't contain - straight character data. - - A - working basic example of a table looks like this: - <fo:table> - <fo:table-column - column-width="150pt"/> - <fo:table-column - column-width="150pt"/> - <fo:table-body font-size="10pt" - font-family="sans-serif"> - <fo:table-row> - <fo:table-cell> - <fo:block>text</fo:block> - - </fo:table-cell> - <fo:table-cell> - <fo:block>text</fo:block> - - </fo:table-cell> - </fo:table-row> - <fo:table-row> - <fo:table-cell> - <fo:block>text</fo:block> - - </fo:table-cell> - <fo:table-cell> - <fo:block>text</fo:block> - - </fo:table-cell> - </fo:table-row> - <fo:table-row> - <fo:table-cell> - <fo:block>text</fo:block> - - </fo:table-cell> - <fo:table-cell> - <fo:block>text</fo:block> - - </fo:table-cell> - </fo:table-row> - </fo:table-body> - </fo:table> - G) - Bugs - see - STATUS file - H) - Compiling FOP - 1. Prerequisites - a) Java 1.1.x or later - - If you use Java 1.1.x you must also seperately include the swing - classes, which can - be found at the - - Sun website - - (http://java.sun.com/products/jfc/#download-swing) - - . From Java 1.2 on (aka Java 2) they are part of the standard - distribution. - - b) An XML parser - - An XML parser which supports DOM like - Xerces-J - - - (http://xerces.apache.org/xerces-j/index.html) - - . - - c) XT from James Clark - Some of - the Java source code in FOP is generated from XML using - XSLT. XT must be used to generate this code. - - XT is an XSL stylesheet processor written in java. At the moment - you - can't use any other processor, because the make file makes use of - some - proprietary features of Clark's xt which allow to write output in more - then one document. You can find XT at - - James Clark's website - - (http://www.jclark.com/xml/xt.html) - - . You have to use XT version 19991105 or later. - - (Under - windows you shouldn't use the prepackaged xt.exe but also the - generic jar file, otherwise make won't work) - - - XT relies on an sax parser like XP (also J. Clark), which can be - downloaded at - James - Clark's Website - - (http://www.jclark.com/xml/xp/index.html) - - - d) make - - Under windows it has been reported that the use of the cygnus - solutions port - of the GNU utilities works. You can find it at - Cygnus - Solutions - - (http://sourceware.cygnus.com/cygwin/) - - - Compiling FOP on MacOS - We - strongly recommend the use of Codewarrior Java. This Readme will - contain a link to more information in the near future. - - I) - Getting involved - 1. - Subscribe to fop-dev@xmlgraphics.apache.org by sending an email - to fop-dev-subscribe@xmlgraphics.apache.org - 2. Read - the archives to fop-dev to get an idea of the issues being - discussed. - 3. - Subscribe to fop-cvs@xmlgraphics.apache.org by sending an email - to - fop-cvs-subscribe@xmlgraphics.apache.org (it is important - that you follow changes being made). - 4. Try - :-) to wrap your head around the XSL working draft. - 5. Get - CVS working on your system. - 6. Ask, - on fop-dev, any questions you have at all about the code, - design, etc. - 7. When - you feel comfortable modifying the code, send diffs to - fop-dev with your contributions. - 8. Have - fun! - J) - FOP Relevant Specifications - - - - - - - - - - XML - Recommendation - - ( - http://www.w3.org/TR/REC-xml - - ) - - - - - - - - - - - - - XSL-FO - Working Draft - - ( - http://www.w3.org/TR/WD-xsl/ - - ) - - - - - - - - - - - - - XSLT - Recommendation - - ( - http://www.w3.org/TR/xslt - - ) - - - - - - - - - - - - - PDF - Documentation - - ( - http://partners.adobe.com/asn/developer/acrosdk/DOCS/pdfspec.pdf - - ) - - - - - - - - - - - - - Simple - API for XML (SAX) - - ( - http://www.megginson.com/SAX/ - - ) - - - - - - - - - - - - - Document - Object Model (DOM) - - ( - http://www.w3.org/TR/REC-DOM-Level-1 - - ) - - - - - - - - - - - - - Namespaces - in XML Recommendation - - ( - http://www.w3.org/TR/REC-xml-names/ - - ) - - - - - - - - - - - - - Java JDK - 1.1 Documentation - - ( - http://java.sun.com/products/jdk/1.1/docs/index.html - - ) - - - - - - K) - Licence - - =================================================================== - - The - Apache Software License, Version 1.1 - - =================================================================== - - - Copyright (C) 1999 The Apache Software Foundation. All rights - reserved. - - Redistribution and use in source and binary forms, with or - without modification, - 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 "FOP" 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 - apache@apache.org. - - 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 and was originally - created by - James Tauber <jtauber@jtauber.com>. For more information on the - Apache - Software Foundation, please see - http://www.apache.org/ - - - (http://www.apache.org/) - - . - - - Content - - - - - - - - - A) - - - - - What is FOP? - - - - - - - - - - - B) - - - - - Downloading FOP - - - - - - - - - - - C) - - - - - Running FOP - - - - - - - - - - - D) - - - - - Embedding FOP - - - - - - - - - - - E) - - - - - What's Implemented? - - - - - - - - - - - F) - - - - - Limitations - - - - - - - - - - - G) - - - - - Bugs - - - - - - - - - - - H) - - - - - Compiling FOP - - - - - - - - - - - I) - - - - - Getting involved - - - - - - - - - - - J) - - - - - FOP Relevant Specifications - - - - - - - - - - - - K) - - - - - Licence - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/formatting-objects-demo/obj_demo_26.xml b/fedora/client/demo/mets/local-server-demos/formatting-objects-demo/obj_demo_26.xml deleted file mode 100644 index a77ef8f..0000000 --- a/fedora/client/demo/mets/local-server-demos/formatting-objects-demo/obj_demo_26.xml +++ /dev/null @@ -1,93 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - The Purple Cow - Frank Gelett Burgess - demo:26 - unrestricted - - - - - - - - - - - - - - - - - - - - - - - - - - - The Purple Cow - Frank Gelett Burgess - - -

Text entry by Walter Underwood(wunder@infoseek.com) on - 1999-02-01. This transcription is in the public domain.

-
- -

From the The Lark, San Fransicsco, 1896.

-
-
-
- - - - The Purple Cow - - I never saw a purple cow, - I never hope to see one; - But I can tell you, anyhow, - I'd rather see than be one. - - - - -
-
-
-
-
- - - - - - - - - -
diff --git a/fedora/client/demo/mets/local-server-demos/formatting-objects-demo/sdef_demo_19.xml b/fedora/client/demo/mets/local-server-demos/formatting-objects-demo/sdef_demo_19.xml deleted file mode 100644 index e532f3c..0000000 --- a/fedora/client/demo/mets/local-server-demos/formatting-objects-demo/sdef_demo_19.xml +++ /dev/null @@ -1,55 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Service Definition Object (PDF) for Formatting Objects Demo - demo:19 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/formatting-objects-demo/sdef_demo_22.xml b/fedora/client/demo/mets/local-server-demos/formatting-objects-demo/sdef_demo_22.xml deleted file mode 100644 index 095fa94..0000000 --- a/fedora/client/demo/mets/local-server-demos/formatting-objects-demo/sdef_demo_22.xml +++ /dev/null @@ -1,55 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Service Definition Object (FO) for Formatting Objects Demo - demo:22 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/formatting-objects-demo/sdep_demo_20.xml b/fedora/client/demo/mets/local-server-demos/formatting-objects-demo/sdep_demo_20.xml deleted file mode 100644 index 4e31334..0000000 --- a/fedora/client/demo/mets/local-server-demos/formatting-objects-demo/sdep_demo_20.xml +++ /dev/null @@ -1,130 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Service Deployment Object (FO to PDF) for Formatting Objects Demo - demo:20 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - XML source file - text/xml - XML source file to be transformed - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/formatting-objects-demo/sdep_demo_25.xml b/fedora/client/demo/mets/local-server-demos/formatting-objects-demo/sdep_demo_25.xml deleted file mode 100644 index 466cce1..0000000 --- a/fedora/client/demo/mets/local-server-demos/formatting-objects-demo/sdep_demo_25.xml +++ /dev/null @@ -1,131 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Service Deployment Object (TEI to FO) for Formatting Objects Demo - demo:25 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - TEI source file - text/xml - XML source file in TEI format, to be transformed to FO format - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/image-collection-demo/cModelObjects/demo_DualResImage.xml b/fedora/client/demo/mets/local-server-demos/image-collection-demo/cModelObjects/demo_DualResImage.xml deleted file mode 100644 index 530acee..0000000 --- a/fedora/client/demo/mets/local-server-demos/image-collection-demo/cModelObjects/demo_DualResImage.xml +++ /dev/null @@ -1,67 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Content Model Object (Image) for Image Collection Demo - demo:DualResImage - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/image-collection-demo/cModelObjects/demo_DualResImageCollection.xml b/fedora/client/demo/mets/local-server-demos/image-collection-demo/cModelObjects/demo_DualResImageCollection.xml deleted file mode 100644 index 1225e4c..0000000 --- a/fedora/client/demo/mets/local-server-demos/image-collection-demo/cModelObjects/demo_DualResImageCollection.xml +++ /dev/null @@ -1,64 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Content Model Object (Image Collection) for Image Collection Demo - demo:DualResImageCollection - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyBeerGlass.xml b/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyBeerGlass.xml deleted file mode 100644 index a3f625a..0000000 --- a/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyBeerGlass.xml +++ /dev/null @@ -1,63 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Smiley Beer Glass - I guess you could drink other things out of it, but I haven't tried. - demo:SmileyBeerGlass - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyBucket.xml b/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyBucket.xml deleted file mode 100644 index 044e5b5..0000000 --- a/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyBucket.xml +++ /dev/null @@ -1,63 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Smiley Bucket - This bucket can be used for sand, flour, sugar, dirt, paint, and water. - demo:SmileyBucket - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyDinnerware.xml b/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyDinnerware.xml deleted file mode 100644 index 0d82801..0000000 --- a/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyDinnerware.xml +++ /dev/null @@ -1,63 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Smiley Dinnerware - Made from 100% pure paper and plastic, this dinnerware is sure to impress your kids. - demo:SmileyDinnerware - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyEarring.xml b/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyEarring.xml deleted file mode 100644 index 4057d8a..0000000 --- a/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyEarring.xml +++ /dev/null @@ -1,63 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Smiley Earring - Smiling from ear to ear. - demo:SmileyEarring - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyGreetingCard.xml b/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyGreetingCard.xml deleted file mode 100644 index 31ebc76..0000000 --- a/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyGreetingCard.xml +++ /dev/null @@ -1,84 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Smiley Greeting Card - Great for people who still use snail mail. - demo:SmileyGreetingCard - - - - - - - - - - - - - - - - - - - - - - - - - - - 320 - 240 - - - 800 - 600 - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyKeychain.xml b/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyKeychain.xml deleted file mode 100644 index e959e0b..0000000 --- a/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyKeychain.xml +++ /dev/null @@ -1,63 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Smiley Keychain - It dangles from side to side while you're driving. - demo:SmileyKeychain - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyNightlight.xml b/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyNightlight.xml deleted file mode 100644 index 2ab3459..0000000 --- a/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyNightlight.xml +++ /dev/null @@ -1,63 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Smiley Nightlight - Simple operation: push on, push off. Very amusing for people who like to push things. - demo:SmileyNightlight - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyPens.xml b/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyPens.xml deleted file mode 100644 index 764110e..0000000 --- a/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyPens.xml +++ /dev/null @@ -1,83 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Smiley Pens - Yes, these actually write. Well, I haven't tested them but I'm pretty sure. - demo:SmileyPens - - - - - - - - - - - - - - - - - - - - - - - - - - 320 - 240 - - - 800 - 600 - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyShortRoundCup.xml b/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyShortRoundCup.xml deleted file mode 100644 index 08818cd..0000000 --- a/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyShortRoundCup.xml +++ /dev/null @@ -1,63 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Smiley Short Round Cup - It's round. It's a cup. It's amazing! - demo:SmileyShortRoundCup - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyStuff.xml b/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyStuff.xml deleted file mode 100644 index e56cfb9..0000000 --- a/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyStuff.xml +++ /dev/null @@ -1,68 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Collection of Smiley Stuff - This is Deb's collection of smiley stuff. - demo:SmileyStuff - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyTallRoundCup.xml b/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyTallRoundCup.xml deleted file mode 100644 index 0dc6ec0..0000000 --- a/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyTallRoundCup.xml +++ /dev/null @@ -1,63 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Smiley Tall Round Cup - This cup measures ten inches high (when standing). When it's on it's side, it measures ten inches wide. - demo:SmileyTallRoundCup - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyToiletBrush.xml b/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyToiletBrush.xml deleted file mode 100644 index 7e67d8c..0000000 --- a/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyToiletBrush.xml +++ /dev/null @@ -1,63 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Smiley Toilet Brush - At least one of you will be smiling while you put this item to use. - demo:SmileyToiletBrush - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyWastebasket.xml b/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyWastebasket.xml deleted file mode 100644 index 215e27c..0000000 --- a/fedora/client/demo/mets/local-server-demos/image-collection-demo/dataObjects/demo_SmileyWastebasket.xml +++ /dev/null @@ -1,63 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Smiley Wastebasket - You can throw your trash in this. Don't forget to recycle! - demo:SmileyWastebasket - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/image-collection-demo/sDefObjects/demo_Collection.xml b/fedora/client/demo/mets/local-server-demos/image-collection-demo/sDefObjects/demo_Collection.xml deleted file mode 100644 index c303150..0000000 --- a/fedora/client/demo/mets/local-server-demos/image-collection-demo/sDefObjects/demo_Collection.xml +++ /dev/null @@ -1,58 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Service Definition Object (Collection) for Image Collection Demo - demo:Collection - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/image-collection-demo/sDefObjects/demo_DualResolution.xml b/fedora/client/demo/mets/local-server-demos/image-collection-demo/sDefObjects/demo_DualResolution.xml deleted file mode 100644 index 1667bba..0000000 --- a/fedora/client/demo/mets/local-server-demos/image-collection-demo/sDefObjects/demo_DualResolution.xml +++ /dev/null @@ -1,56 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Service Definition Object (Image) for Image Collection Demo - demo:DualResolution - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/image-collection-demo/sDepObjects/demo_CollectionImpl.xml b/fedora/client/demo/mets/local-server-demos/image-collection-demo/sDepObjects/demo_CollectionImpl.xml deleted file mode 100644 index 8415092..0000000 --- a/fedora/client/demo/mets/local-server-demos/image-collection-demo/sDepObjects/demo_CollectionImpl.xml +++ /dev/null @@ -1,202 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Service Deployment Object (Collection) for Image Collection Demo - demo:ImageCollectionImpl - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - XSLT Binding - text/xml - - - - LIST Binding - text/xml - - - - QUERY Binding - text/plain - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/image-collection-demo/sDepObjects/demo_DualResImageImpl.xml b/fedora/client/demo/mets/local-server-demos/image-collection-demo/sDepObjects/demo_DualResImageImpl.xml deleted file mode 100644 index 126c3d1..0000000 --- a/fedora/client/demo/mets/local-server-demos/image-collection-demo/sDepObjects/demo_DualResImageImpl.xml +++ /dev/null @@ -1,165 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Service Deployment Object (Image) for Image Collection Demo - demo:DualResImageImpl - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - FULL_SIZE Binding - image/jpeg - - - - MEDIUM_SIZE Binding - image/jpeg - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/image-manip-demo/demo_UVA_STD_IMAGE.xml b/fedora/client/demo/mets/local-server-demos/image-manip-demo/demo_UVA_STD_IMAGE.xml deleted file mode 100644 index 41966a0..0000000 --- a/fedora/client/demo/mets/local-server-demos/image-manip-demo/demo_UVA_STD_IMAGE.xml +++ /dev/null @@ -1,58 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Content Model Object for Image Manipulation Demo - demo:UVA_STD_IMAGE - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/image-manip-demo/obj_demo_29.xml b/fedora/client/demo/mets/local-server-demos/image-manip-demo/obj_demo_29.xml deleted file mode 100644 index 5c3ed0d..0000000 --- a/fedora/client/demo/mets/local-server-demos/image-manip-demo/obj_demo_29.xml +++ /dev/null @@ -1,57 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Coliseum in Rome - Thornton Staples - Architecture, Roman - Image of Coliseum in Rome - University of Virginia Library - image/jpeg - demo:29 - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/image-manip-demo/sdef_demo_27.xml b/fedora/client/demo/mets/local-server-demos/image-manip-demo/sdef_demo_27.xml deleted file mode 100644 index df527ef..0000000 --- a/fedora/client/demo/mets/local-server-demos/image-manip-demo/sdef_demo_27.xml +++ /dev/null @@ -1,89 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Service Definition Object for Image Manipulation Demo - demo:27 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/image-manip-demo/sdep_demo_28.xml b/fedora/client/demo/mets/local-server-demos/image-manip-demo/sdep_demo_28.xml deleted file mode 100644 index 0132b59..0000000 --- a/fedora/client/demo/mets/local-server-demos/image-manip-demo/sdep_demo_28.xml +++ /dev/null @@ -1,352 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Service Deployment Object for Image Manipulation Demo - demo:28 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Image URL - image/gif - image/jpeg - image/tiff - image/png - image/bmp - URL pointing to an image of type GIF, JPG, or TIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/simple-document-demo/obj_demo_18.xml b/fedora/client/demo/mets/local-server-demos/simple-document-demo/obj_demo_18.xml deleted file mode 100644 index a663d89..0000000 --- a/fedora/client/demo/mets/local-server-demos/simple-document-demo/obj_demo_18.xml +++ /dev/null @@ -1,67 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - The Mellon Fedora Project: Digital Library Architecture Meets XML and Web Services - Sandra Payette - Thornton Staples - Fedora - repository architecture - digital libraries - web service - open source software - Paper on the Fedora project, presented at the European Digital Library Conference (ECDL) in 2002, Rome, Italy - Springer - 2002-09-17 - application/pdf - application/msword - application/ps - demo:18 - http://www.fedora.info - unrestricted - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/simple-document-demo/obj_demo_31.xml b/fedora/client/demo/mets/local-server-demos/simple-document-demo/obj_demo_31.xml deleted file mode 100644 index ad4bfb6..0000000 --- a/fedora/client/demo/mets/local-server-demos/simple-document-demo/obj_demo_31.xml +++ /dev/null @@ -1,54 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Data Object (SVG) for Simple Document Demo - Chris Wilper - The Apache Group - svg - batik - apache - Demonstration digital object containing SVG from the Batik 1.5 distribution - The Apache Group - image/svg+xml - demo:31 - http://xml.apache.org/batik/ - The Apache License - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/simple-image-demo/demo_UVA_STD_IMAGE_1.xml b/fedora/client/demo/mets/local-server-demos/simple-image-demo/demo_UVA_STD_IMAGE_1.xml deleted file mode 100644 index 24e13de..0000000 --- a/fedora/client/demo/mets/local-server-demos/simple-image-demo/demo_UVA_STD_IMAGE_1.xml +++ /dev/null @@ -1,67 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Content Model Object (4 JPEGS) for Local Simple Image Demo - demo:UVA_STD_IMAGE_1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/simple-image-demo/obj_demo_5.xml b/fedora/client/demo/mets/local-server-demos/simple-image-demo/obj_demo_5.xml deleted file mode 100644 index e812803..0000000 --- a/fedora/client/demo/mets/local-server-demos/simple-image-demo/obj_demo_5.xml +++ /dev/null @@ -1,80 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Coliseum in Rome - Thornton Staples - Architecture, Roman - Image of Coliseum in Rome - University of Virginia Library - image/jpeg - demo:5 - - - - - - - - - - - - - Immagine del Colosseo a Roma - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/simple-image-demo/sdef_demo_1.xml b/fedora/client/demo/mets/local-server-demos/simple-image-demo/sdef_demo_1.xml deleted file mode 100644 index 7db3157..0000000 --- a/fedora/client/demo/mets/local-server-demos/simple-image-demo/sdef_demo_1.xml +++ /dev/null @@ -1,58 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Service Definition Object for Simple Image Demos - demo:1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/mets/local-server-demos/simple-image-demo/sdep_demo_2.xml b/fedora/client/demo/mets/local-server-demos/simple-image-demo/sdep_demo_2.xml deleted file mode 100644 index 3862753..0000000 --- a/fedora/client/demo/mets/local-server-demos/simple-image-demo/sdep_demo_2.xml +++ /dev/null @@ -1,209 +0,0 @@ - - - - - fedoraAdmin - - - - - - - - Service Deployment Object for Local Simple Image Demo - demo:2 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - thumbnail image - image/jpeg - image of type image/jpeg at 100 dpi - - - medium resolution image - image/jpeg - image of type image/jpeg at 300 dpi - - - high resolution image - image/jpeg - image of type image/jpeg at 600 dpi - - - very high resolution image - image/jpeg - image of type image/jpeg at 1200 dpi - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/soapclient/DemoSOAPClient.java b/fedora/client/demo/soapclient/DemoSOAPClient.java deleted file mode 100644 index 18f04d2..0000000 --- a/fedora/client/demo/soapclient/DemoSOAPClient.java +++ /dev/null @@ -1,648 +0,0 @@ -/* The contents of this file are subject to the license and copyright terms - * detailed in the license directory at the root of the source tree (also - * available online at http://fedora-commons.org/license/). - */ -package demo.soapclient; - -import java.io.File; -import java.io.IOException; -import java.io.InputStream; -import java.io.FileInputStream; -import java.io.FileOutputStream; -import java.io.OutputStream; -import java.io.ByteArrayInputStream; -import java.io.ByteArrayOutputStream; -import java.net.MalformedURLException; -import java.rmi.RemoteException; -import java.util.StringTokenizer; -import java.util.HashMap; - -import javax.xml.rpc.ServiceException; -import javax.xml.parsers.DocumentBuilder; -import javax.xml.parsers.DocumentBuilderFactory; -import org.w3c.dom.Document; -import com.sun.org.apache.xml.internal.serialize.OutputFormat; -import com.sun.org.apache.xml.internal.serialize.XMLSerializer; - -import org.fcrepo.client.FedoraClient; - -import org.fcrepo.common.Constants; - -import org.fcrepo.server.management.FedoraAPIM; -import org.fcrepo.server.access.FedoraAPIA; -import org.fcrepo.server.types.gen.DatastreamDef; -import org.fcrepo.server.types.gen.MethodParmDef; -import org.fcrepo.server.types.gen.MIMETypedStream; -import org.fcrepo.server.types.gen.ObjectMethodsDef; -import org.fcrepo.server.types.gen.ObjectProfile; -import org.fcrepo.server.types.gen.RepositoryInfo; -import org.fcrepo.server.types.gen.Property; - -/** - * A simple example of a SOAP client that makes calls to the Fedora SOAP - * interfaces (API-A and API-M). - * - * NOTE: - * This class is outdated and uses demo objects that no longer exist. - * Future releases will not include this class. - * - * @deprecated as of release 3.3 - * @author Sandy Payette - */ -public class DemoSOAPClient - implements Constants { - - private static FedoraAPIM APIM; - private static FedoraAPIA APIA; - private static HashMap s_repoInfo=new HashMap(); - - public DemoSOAPClient(String protocol, String host, int port, String user, String pass, String context) - throws Exception { - - // Use the FedoraClient utility to get SOAP stubs. - // These SOAP stubs enable the client to connect to a Fedora repository - // via the API-A and API-M web service interfaces. - - String baseURL = protocol + "://" + host + ":" + port + "/" + context; - FedoraClient fc = new FedoraClient(baseURL, user, pass); - APIA=fc.getAPIA(); - APIM=fc.getAPIM(); - } - - - - public RepositoryInfo describeRepository() - throws RemoteException { - - // make the SOAP call on API-A using the connection stub - RepositoryInfo repoinfo = APIA.describeRepository(); - - // print results - System.out.println("SOAP Request: describeRepository..."); - System.out.println("SOAP Response: repository version = " + repoinfo.getRepositoryVersion()); - System.out.println("SOAP Response: repository name = " + repoinfo.getRepositoryName()); - System.out.println("SOAP Response: repository pid namespace = " + repoinfo.getRepositoryPIDNamespace()); - System.out.println("SOAP Response: repository default export = " + repoinfo.getDefaultExportFormat()); - System.out.println("SOAP Response: repository base URL = " + repoinfo.getRepositoryBaseURL()); - System.out.println("SOAP Response: repository OAI namespace = " + repoinfo.getOAINamespace()); - System.out.println("SOAP Response: repository sample OAI identifier = " + repoinfo.getSampleOAIIdentifier()); - System.out.println("SOAP Response: repository sample OAI URL = " + repoinfo.getSampleOAIURL()); - System.out.println("SOAP Response: repository sample access URL = " + repoinfo.getSampleAccessURL()); - System.out.println("SOAP Response: repository sample search URL = " + repoinfo.getSampleSearchURL()); - System.out.println("SOAP Response: repository sample PID = " + repoinfo.getSamplePID()); - return repoinfo; - } - - public String ingest(InputStream ingestStream, String ingestFormat, String logMessage) - throws RemoteException, IOException { - - // prep - ByteArrayOutputStream out=new ByteArrayOutputStream(); - pipeStream(ingestStream, out, 4096); - - // make the SOAP call on API-M using the connection stub - String pid = APIM.ingest(out.toByteArray(), ingestFormat, logMessage); - - System.out.println("SOAP Request: ingest..."); - System.out.println("SOAP Response: pid = " + pid); - return pid; - } - public String addDatastream(String pid, String dsID, String[] altIDs, String dsLabel, - boolean versionable, String dsMIME, String formatURI, - String dsLocation, String dsControlGroup, String dsState, - String checksumType, String checksum, String logMessage) - throws RemoteException { - - // make the SOAP call on API-M using the connection stub - String datastreamID = APIM.addDatastream( - pid, dsID, altIDs, dsLabel, versionable, dsMIME, formatURI, - dsLocation, dsControlGroup, dsState, checksumType, checksum, logMessage); - - System.out.println("SOAP Request: addDatastream..."); - System.out.println("SOAP Response: datastreamID = " + datastreamID); - return datastreamID; - } - - public String modifyDatastreamByReference(String pid, String dsID, String[] altIDs, String dsLabel, - String dsMIME, String formatURI, String dsLocation, - String checksumType, String checksum, - String logMessage, boolean force) - throws RemoteException { - - // make the SOAP call on API-M using the connection stub - String datastreamID = APIM.modifyDatastreamByReference( - pid, dsID, altIDs, dsLabel, dsMIME, - formatURI, dsLocation, checksumType, checksum, logMessage, force); - - System.out.println("SOAP Request: modifyDatastreamByReference..."); - System.out.println("SOAP Response: datastreamID = " + datastreamID); - return datastreamID; - } - - public String[] purgeDatastream(String pid, String dsID, String startDate, String endDate, - String logMessage, boolean force) - throws RemoteException { - - // make the SOAP call on API-M using the connection stub - String[] dateTimeStamps = APIM.purgeDatastream( - pid, dsID, startDate, endDate, logMessage, force); - - System.out.println("SOAP Request: purgeDatastream..."); - return dateTimeStamps; - } - - public String purgeObject(String pid, String logMessage, boolean force) - throws RemoteException { - - // make the SOAP call on API-M using the connection stub - String purgeDateTime = APIM.purgeObject(pid, logMessage, force); - - System.out.println("SOAP Request: purgeObject..."); - System.out.println("SOAP Response: purge dateTime = " + purgeDateTime); - return purgeDateTime; - } - - public byte[] export(String pid, String format, String exportContext, OutputStream outStream) - throws RemoteException, IOException { - - // make the SOAP call on API-M - byte[] objectXML = APIM.export(pid, format, exportContext); - - // serialize the object XML to the specified output stream - try { - // use Xerces to pretty print the xml, assuming it's well formed - DocumentBuilderFactory factory=DocumentBuilderFactory.newInstance(); - factory.setNamespaceAware(true); - DocumentBuilder builder=factory.newDocumentBuilder(); - Document doc=builder.parse(new ByteArrayInputStream(objectXML)); - OutputFormat fmt=new OutputFormat("XML", "UTF-8", true); - fmt.setIndent(2); - fmt.setLineWidth(120); - fmt.setPreserveSpace(false); - XMLSerializer ser=new XMLSerializer(outStream, fmt); - ser.serialize(doc); - } catch (Exception e) { - System.out.println("Error on export while serializing object XML." + - e.getClass().getName() + " : " + e.getMessage()); - } finally { - outStream.close(); - } - - // print results - System.out.println("SOAP Request: export..."); - System.out.println("SOAP Response: see result serialized in XML export file."); - return objectXML; - } - - public byte[] getObjectXML(String pid) - throws RemoteException { - - // make the SOAP call on API-M - byte[] objectXML = APIM.getObjectXML(pid); - - // print results - - return objectXML; - } - - /** - * Copies the contents of an InputStream to an OutputStream, then closes - * both. - * - * @param in The source stream. - * @param out The target stram. - * @param bufSize Number of bytes to attempt to copy at a time. - * @throws IOException If any sort of read/write error occurs on either - * stream. - */ - public static void pipeStream(InputStream in, OutputStream out, int bufSize) - throws IOException { - try { - byte[] buf = new byte[bufSize]; - int len; - while ( ( len = in.read( buf ) ) > 0 ) { - out.write( buf, 0, len ); - } - } finally { - try { - in.close(); - out.close(); - } catch (IOException e) { - System.err.println("WARNING: Could not close stream."); - } - } - } - - public static void main(String[] args) { - try { - if (args.length==5 || args.length==6) { - if (!args[0].equals("http") && !args[0].equals("https")) { - throw new Exception("Protocol must be either \"http\" or \"https\". Value specified was: \""+args[0]+"\"."); - } - System.out.println("\n"); - System.out.println("Protocol: " + args[0]); - System.out.println("Host: " + args[1]); - System.out.println("Port: " + args[2]); - System.out.println("Username: " + args[3]); - System.out.println("Password: " + args[4]); - String context = Constants.FEDORA_DEFAULT_APP_CONTEXT; - - if (args.length == 6){ - System.out.println("Context: " + args[5] + "\n"); - context = args[5]; - } - - // Instantiate the demo client. - // This will set up connection stubs for making SOAP requests on API-A and API-M - - DemoSOAPClient caller = new DemoSOAPClient(args[0], - args[1], new Integer(args[2]).intValue(), - args[3], args[4], context); - - //************************************************************** - //******** STEP 1 : get info about the repository - //************************************************************** - System.out.println("\nTest describeRepository.........................................."); - RepositoryInfo repoinfo = caller.describeRepository(); - - //************************************************************** - // ******** STEP 2 purge test objects if they already exist - //************************************************************** - String purgeDate=null; - try { - purgeDate = caller.purgeObject( - "test:100", // the object pid - "purge object", // an optional log message about the change - false); // do not force changes that break ref integrity - } catch (Exception e) { - System.out.println("Hack...just ignore failures since objects may not exist yet." + e.getMessage()); - } - try { - purgeDate = caller.purgeObject( - "test:28", // the object pid - "purge object", // an optional log message about the change - false); // do not force changes that break ref integrity - } catch (Exception e) { - System.out.println("Hack...just ignore failures since objects may not exist yet." + e.getMessage()); - } - try { - purgeDate = caller.purgeObject( - "test:27", // the object pid - "purge object", // an optional log message about the change - false); // do not force changes that break ref integrity - } catch (Exception e) { - System.out.println("Hack...just ignore failures since objects may not exist yet." + e.getMessage()); - } - - - //************************************************************** - //******** STEP 3: ingest the test objects - //************************************************************** - FileInputStream inStream=null; - String ingestPID=null; - - System.out.println("\nTest ingest......................................................"); - File ingestFile=new File("TestIngestFiles/sdef_test_27.xml"); - try { - inStream=new FileInputStream(ingestFile); - } catch (IOException ioe) { - System.out.println("Error on ingest file inputstream: " + ioe.getMessage()); - ioe.printStackTrace(); - } - ingestPID = caller.ingest(inStream, FOXML1_1.uri, "ingest of test sdef"); - System.out.println("Finished test ingest of sdef object: " + ingestPID); - - System.out.println("\nTest ingest......................................................"); - ingestFile=new File("TestIngestFiles/sdep_test_28.xml"); - inStream=null; - try { - inStream=new FileInputStream(ingestFile); - } catch (IOException ioe) { - System.out.println("Error on ingest file inputstream: " + ioe.getMessage()); - ioe.printStackTrace(); - } - ingestPID = caller.ingest(inStream, FOXML1_1.uri, "ingest of test deployment"); - System.out.println("Finished test ingest of deployment object: " + ingestPID); - - System.out.println("\nTest ingest......................................................"); - ingestFile=new File("TestIngestFiles/obj_test_100.xml"); - inStream=null; - try { - inStream=new FileInputStream(ingestFile); - } catch (IOException ioe) { - System.out.println("Error on ingest file inputstream: " + ioe.getMessage()); - ioe.printStackTrace(); - } - ingestPID = caller.ingest(inStream, FOXML1_1.uri, "ingest of test object"); - System.out.println("Finished test ingest of data object: " + ingestPID); - - System.out.println("\nTest ingest......................................................"); - ingestFile=new File("TestIngestFiles/test_UVA_STD_IMAGE.xml"); - inStream=null; - try { - inStream=new FileInputStream(ingestFile); - } catch (IOException ioe) { - System.out.println("Error on ingest file inputstream: " + ioe.getMessage()); - ioe.printStackTrace(); - } - ingestPID = caller.ingest(inStream, FOXML1_1.uri, "ingest of test object"); - System.out.println("Finished test ingest of cmodel object: " + ingestPID); - - //************************************************************** - //******** STEP 4: add a datastream to the object - //************************************************************** - System.out.println("\nTest add datastream.............................................."); - String[] altIDs = new String[] {"id1", "id2", "id3"}; - String datastreamID = caller.addDatastream( - ingestPID, // the object pid - "MY-DS", // user-assigned datastream name or id - altIDs, - "Add my test datastream", // user-assigned label - true, // in version 2.0 always set datastream versioning to true - "image/gif", // mime type of the datastream content - "info:fedora/format/myformat", // an optional format URI - "http://www.cs.cornell.edu/payette/images/sjcomp.gif", // URL for content - "E", // type E for External Referenced Datastream - "A", // datastream state is A for Active - null, // datastream checksumType - null, // datastream checksum - "added new datastream MY-DS"); // log message - - - //************************************************************** - //******** STEP 5: modify a datastream - //************************************************************** - // modify the datastream using null to indicate which attributes should stay the same. - System.out.println("\nFirst test of modify datastream ................................."); - String modDSID = caller.modifyDatastreamByReference( - ingestPID, // the object pid - "MY-DS", // user-assigned datastream name or id - null, // altIDs (no change) - "modify-1 of my test datastream", // new user-assigned label - null, // MIME type (no change) - null, // new formatURI (no change) - null, // new URL for content (no change) - null, // new checksumType - null, // new checksum - "first modify to change label only", // an optional log message about the change - false); // do not force changes that break ref integrity - - //************************************************************** - //******** STEP 6: modify a datastream again - //************************************************************** - // again, modify the datastream and test setting attributes to empty strings. - // NOTE: attempt to set system required attribute to empty will default to no change. - System.out.println("\nSecond test of modify datastream................................."); - modDSID = caller.modifyDatastreamByReference( - ingestPID, // the object pid - "MY-DS", // user-assigned datastream name or id - new String[0], // altIDs (empty array) - "", // new user-assigned label - "", // MIME type (empty) - "", // new formatURI (empty) - "", // new URL for content (no change since required field cannot be emptied) - null, // new checksumType - null, // new checksum - "second modify to empty all non-required fields", // an optional log message about the change - false); // do not force changes that break ref integrity - - //************************************************************** - //******** STEP 7: purge a datastream - //************************************************************** - System.out.println("\nTest of purge datastream........................................."); - String[] dateTimeStamps = caller.purgeDatastream( - ingestPID, // the object pid - "MY-DS", // user-assigned datastream name or id - "", - "", // end date to purge versions before (null/empty to purge all versions) - "purge datastream", // an optional log message about the change - false); // do not force changes that break ref integrity - - //************************************************************** - //******** STEP 8: export the demo object - //************************************************************** - System.out.println("\nTest of export object............................................"); - File exportFile = new File("demo-export.xml"); - FileOutputStream outStream = null; - try { - outStream = new FileOutputStream(exportFile); - } catch (IOException ioe) { - System.out.println("Error on export output stream: " + ioe.getMessage()); - ioe.printStackTrace(); - } - byte[] objectXML = caller.export(ingestPID, FOXML1_1.uri, null, outStream); - - //************************************************************** - //******** NOW TEST API-A METHODS - //************************************************************** - - //************************************************************** - //******** STEP 9: listDatastreams for demo object demo:11 - //************************************************************** - System.out.println("\nTest of listDatastream..........................................."); - listDatastreams(); - - //************************************************************** - //******** STEP 10: listMethods for demo object demo:11 - //************************************************************** - System.out.println("\nTest of listMethods.............................................."); - listMethods(); - - //************************************************************** - //******** STEP 11: get the object profile for demo object demo:11 - //************************************************************** - System.out.println("\nTest of getObjectProfile........................................."); - getObjectProfile(); - - //************************************************************** - //******** STEP 12: get several datastreams from various demo objects - //************************************************************** - System.out.println("\nTest of getDatastreamDissemination..............................."); - getDatastreamDissemination(); - - //************************************************************** - //******** STEP 13: get several disseminations from various demo objects - //************************************************************** - System.out.println("\nTest of getDissemination........................................."); - getDissemination(); - - //************************************************************** - //******** STEP 14: get object history the demo object demo:11 - //************************************************************** - System.out.println("\nTest of getObjectHistory........................................."); - getObjectHistory(); - - } else { - System.out.println("Number of arguments must be equal to 5."); - System.out.println("Usage: run-demo-soapclient protocol host port username password"); - System.out.println("Demo soapclient requires that demo objects are already ingested in repository \n"); - } - } catch (Exception e) { - System.out.println("Exception in main: " + e.getMessage()); - e.printStackTrace(); - } - } - - public static void listDatastreams() throws Exception { - - DatastreamDef[] dsDefs = APIA.listDatastreams("demo:11", null); - System.out.println("SOAP Request: listDatastreams..."); - System.out.println("SOAP Response: see results below."); - verifyDatastreamDefs(dsDefs, "SOAP Response: listDatastream: "); - } - - public static void listMethods() throws Exception { - - ObjectMethodsDef[] methodDefs = APIA.listMethods("demo:11", null); - System.out.println("SOAP Request: listMethods..."); - System.out.println("SOAP Response: see results below."); - verifyObjectMethods(methodDefs, "SOAP Response: listMethods: "); - } - - public static void getDatastreamDissemination() throws Exception { - - // test for DC datastream - MIMETypedStream ds = null; - ds = APIA.getDatastreamDissemination("demo:11", "DC", null); - System.out.println("SOAP Request: getDatastreamDissemination for DC datastream of demo object demo:11..."); - String dsXML = new String(ds.getStream(), "UTF-8"); - System.out.println("SOAP Response: GetDatastreamDissemination Object:demo:11 Datastream:DC succeeded."); - System.out.println("SOAP Response: DC datastream contents: \n"+dsXML); - - // test for type X datastream - ds = APIA.getDatastreamDissemination("demo:11", "TECH1", null); - System.out.println("\nSOAP Request: getDatastreamDissemination for TECH1 datastream of demo object demo:11..."); - dsXML = new String(ds.getStream(), "UTF-8"); - System.out.println("SOAP Response: GetDatastreamDissemination Object:demo:11 Datastream:TECH1 succeeded."); - System.out.println("SOAP Response: TECH1 datastream contents: \n"+dsXML); - - // test for type E datastream - ds = APIA.getDatastreamDissemination("demo:11", "MRSID", null); - System.out.println("\nSOAP Request: getDatastreamDissemination for MRSID datastream of demo object demo:11..."); - System.out.println("SOAP Response: GetDatastreamDissemination Object:demo:11 Datastream:MRSID succeeded."); - System.out.println("SOAP Response: MRSID datastream contents: BINARY DATA "+ds); - - // test for type R datastream - ds = APIA.getDatastreamDissemination("demo:30", "THUMBRES_IMG", null); - System.out.println("\nSOAP Request: getDatastreamDissemination for THUMBRES_IMG datastream of demo object demo:30..."); - System.out.println("SOAP Response: GetDatastreamDissemination Object:demo:30 Datastream:THUMBRES_IMG succeeded."); - System.out.println("SOAP Response: THUMBRES_IMG datastream contents: BINARY DATA "+ds); - - // test for type M datastream - ds = APIA.getDatastreamDissemination("demo:5", "THUMBRES_IMG", null); - System.out.println("\nSOAP Request: getDatastreamDissemination for THUMBRES_IMG datastream of demo object demo:5..."); - System.out.println("SOAP Response: GetDatastreamDissemination Object:demo:5 Datastream:THUMBRES_IMG succeeded."); - System.out.println("SOAP Response: THUMBRES_IMG datastream contents: BINARY DATA "+ds); - - } - - - public static void getObjectProfile() throws Exception { - ObjectProfile profile = APIA.getObjectProfile("demo:11", null); - System.out.println("SOAP Request: getObjectProfile for demo object demo:11..."); - System.out.println("SOAP Response: PID: "+profile.getPid()); - System.out.println("SOAP Response: ObjectLabel: "+profile.getObjLabel()); - System.out.println("SOAP Response: CreateDate: "+profile.getObjCreateDate()); - System.out.println("SOAP Response: LastModDate: "+profile.getObjLastModDate()); - System.out.println("SOAP Response: DissIndexViewURL: "+profile.getObjDissIndexViewURL()); - System.out.println("SOAP Response: ItemIndexViewURL: "+profile.getObjItemIndexViewURL()); - - } - - public static void getObjectHistory() throws Exception { - String[] timestamps = APIA.getObjectHistory("demo:11"); - System.out.println("SOAP Request: getObjectHistory for demo object demo:11..."); - for (int i=0; i - - - - - - - - - - - - - - - - - - - - - Sandy's Reference Object - Sandy Payette - FOXML Testing - Object depicts all types of datastreams - Cornell CIS - test:100 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/jpeg - LZW - - - - 600 - - - - - - diff --git a/fedora/client/demo/soapclient/TestIngestFiles/sdef_test_27.xml b/fedora/client/demo/soapclient/TestIngestFiles/sdef_test_27.xml deleted file mode 100644 index 613085d..0000000 --- a/fedora/client/demo/soapclient/TestIngestFiles/sdef_test_27.xml +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - - - - - - - Behavior Definition Object for Image Manipulation Servlet - test:27 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/soapclient/TestIngestFiles/sdep_test_28.xml b/fedora/client/demo/soapclient/TestIngestFiles/sdep_test_28.xml deleted file mode 100644 index 0883411..0000000 --- a/fedora/client/demo/soapclient/TestIngestFiles/sdep_test_28.xml +++ /dev/null @@ -1,340 +0,0 @@ - - - - - - - - - - - - - - Behavior Mechanism Object implementing the UVA Simple Image BDEF contract using the UVA - MrSID Service. - - test:28 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Image URL - image/gif - image/jpeg - image/tiff - image/png - image/bmp - URL pointing to an image of type GIF, JPG, or TIF - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/soapclient/TestIngestFiles/test_UVA_STD_IMAGE.xml b/fedora/client/demo/soapclient/TestIngestFiles/test_UVA_STD_IMAGE.xml deleted file mode 100644 index ec80c49..0000000 --- a/fedora/client/demo/soapclient/TestIngestFiles/test_UVA_STD_IMAGE.xml +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - - - - - - - - Content Model for Demo SOAP Client - test:UVA_STD_IMAGE - - - - - - - - - - - - - - - - diff --git a/fedora/client/demo/soapclient/compile-demo-soapclient.bat b/fedora/client/demo/soapclient/compile-demo-soapclient.bat deleted file mode 100644 index 3894600..0000000 --- a/fedora/client/demo/soapclient/compile-demo-soapclient.bat +++ /dev/null @@ -1,57 +0,0 @@ -@echo off - -goto checkEnv -:envOk - -echo Setting environment variables... - -set OLD_JAVA_HOME=%JAVA_HOME% -set JAVA_HOME=%THIS_JAVA_HOME% -echo JAVA_HOME is %JAVA_HOME% -echo FEDORA_HOME is %FEDORA_HOME% - -"%JAVA_HOME%\bin\javac" -classpath %FEDORA_HOME%;%FEDORA_HOME%\client\fcrepo-client-admin-3.7.1.jar -Djava.endorsed.dirs="%FEDORA_HOME%\client\lib" -sourcepath %FEDORA_HOME%\client %FEDORA_HOME%\client\demo\soapclient\DemoSOAPClient.java - - -echo Finished compile of demo soap client. -goto finish - -:finish -set JAVA_HOME=%OLD_JAVA_HOME% - -goto end - -:checkEnv -if "%FEDORA_HOME%" == "" goto noFedoraHome -if "%FEDORA_JAVA_HOME%" == "" goto tryJavaHome -set THIS_JAVA_HOME=%FEDORA_JAVA_HOME% - -:checkJava -if not exist "%THIS_JAVA_HOME%\bin\java.exe" goto noJavaBin -if not exist "%THIS_JAVA_HOME%\bin\orbd.exe" goto badJavaVersion -goto envOk - -:tryJavaHome -if "%JAVA_HOME%" == "" goto noJavaHome -set THIS_JAVA_HOME=%JAVA_HOME% -goto checkJava - -:noFedoraHome -echo ERROR: Environment variable, FEDORA_HOME must be set. -goto end - -:noJavaHome -echo ERROR: FEDORA_JAVA_HOME was not defined, nor was (the fallback) JAVA_HOME. -goto end - -:noJavaBin -echo ERROR: java.exe was not found in %THIS_JAVA_HOME% -echo Make sure FEDORA_JAVA_HOME or JAVA_HOME is set correctly. -goto end - -:badJavaVersion -echo ERROR: java was found in %THIS_JAVA_HOME%, but it was not version 1.4 -echo Make sure FEDORA_JAVA_HOME or JAVA_HOME points to a 1.4JRE/JDK base. -goto end - -:end diff --git a/fedora/client/demo/soapclient/run-demo-soapclient.bat b/fedora/client/demo/soapclient/run-demo-soapclient.bat deleted file mode 100644 index 4f01d8d..0000000 --- a/fedora/client/demo/soapclient/run-demo-soapclient.bat +++ /dev/null @@ -1,55 +0,0 @@ -@echo off - -goto checkEnv -:envOk - -echo Starting Demo SOAP Client... - -set OLD_JAVA_HOME=%JAVA_HOME% -set JAVA_HOME=%THIS_JAVA_HOME% - -"%JAVA_HOME%\bin\java" -cp %FEDORA_HOME%;%FEDORA_HOME%\client;%FEDORA_HOME%\client\fcrepo-client-admin-3.7.1.jar -Djava.endorsed.dirs="%FEDORA_HOME%\client\lib" -Dorg.apache.commons.logging.LogFactory=org.apache.commons.logging.impl.Log4jFactory -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Log4jLoggerr -Djavax.net.ssl.trustStore="%FEDORA_HOME%\client\truststore" -Djavax.net.ssl.trustStorePassword=tomcat -Djavax.xml.parsers.DocumentBuilderFactory=com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl -Djavax.xml.parsers.SAXParserFactory=com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl -Dfedora.home=%FEDORA_HOME% demo.soapclient.DemoSOAPClient %1 %2 %3 %4 %5 - -set JAVA_HOME=%OLD_JAVA_HOME% - -goto end - -:checkEnv -if "%FEDORA_HOME%" == "" goto noFedoraHome -if not exist "%FEDORA_HOME%\client\fcrepo-client-admin-3.7.1.jar" goto clientNotFound -if "%FEDORA_JAVA_HOME%" == "" goto tryJavaHome -set THIS_JAVA_HOME=%FEDORA_JAVA_HOME% -:checkJava -if not exist "%THIS_JAVA_HOME%\bin\java.exe" goto noJavaBin -if not exist "%THIS_JAVA_HOME%\bin\orbd.exe" goto badJavaVersion -goto envOk - -:tryJavaHome -if "%JAVA_HOME%" == "" goto noJavaHome -set THIS_JAVA_HOME=%JAVA_HOME% -goto checkJava - -:noFedoraHome -echo ERROR: Environment variable, FEDORA_HOME must be set. -goto end - -:clientNotFound -echo ERROR: FEDORA_HOME does not appear correctly set. -echo Client cannot be found at %FEDORA_HOME%\client\fcrepo-client-admin-3.7.1.jar -goto end - -:noJavaHome -echo ERROR: FEDORA_JAVA_HOME was not defined, nor was (the fallback) JAVA_HOME. -goto end - -:noJavaBin -echo ERROR: java.exe was not found in %THIS_JAVA_HOME% -echo Make sure FEDORA_JAVA_HOME or JAVA_HOME is set correctly. -goto end - -:badJavaVersion -echo ERROR: java was found in %THIS_JAVA_HOME%, but it was not version 1.4 -echo Make sure FEDORA_JAVA_HOME or JAVA_HOME points to a 1.4JRE/JDK base. -goto end - -:end \ No newline at end of file diff --git a/fedora/client/fcrepo-client-admin-3.7.1.jar b/fedora/client/fcrepo-client-admin-3.7.1.jar deleted file mode 100644 index 189dfb7..0000000 Binary files a/fedora/client/fcrepo-client-admin-3.7.1.jar and /dev/null differ diff --git a/fedora/client/lib/activation-1.1.1.jar b/fedora/client/lib/activation-1.1.1.jar deleted file mode 100644 index 1b703ab..0000000 Binary files a/fedora/client/lib/activation-1.1.1.jar and /dev/null differ diff --git a/fedora/client/lib/batik-swing-1.7.jar b/fedora/client/lib/batik-swing-1.7.jar deleted file mode 100644 index 93e5d0f..0000000 Binary files a/fedora/client/lib/batik-swing-1.7.jar and /dev/null differ diff --git a/fedora/client/lib/commons-codec-1.7.jar b/fedora/client/lib/commons-codec-1.7.jar deleted file mode 100644 index efa7f72..0000000 Binary files a/fedora/client/lib/commons-codec-1.7.jar and /dev/null differ diff --git a/fedora/client/lib/commons-discovery-0.5.jar b/fedora/client/lib/commons-discovery-0.5.jar deleted file mode 100644 index 5d52da4..0000000 Binary files a/fedora/client/lib/commons-discovery-0.5.jar and /dev/null differ diff --git a/fedora/client/lib/commons-pool-1.5.4.jar b/fedora/client/lib/commons-pool-1.5.4.jar deleted file mode 100644 index 43edf99..0000000 Binary files a/fedora/client/lib/commons-pool-1.5.4.jar and /dev/null differ diff --git a/fedora/client/lib/fcrepo-common-3.7.1.jar b/fedora/client/lib/fcrepo-common-3.7.1.jar deleted file mode 100644 index edd74c6..0000000 Binary files a/fedora/client/lib/fcrepo-common-3.7.1.jar and /dev/null differ diff --git a/fedora/client/lib/fcrepo-server-3.7.1.jar b/fedora/client/lib/fcrepo-server-3.7.1.jar deleted file mode 100644 index a454153..0000000 Binary files a/fedora/client/lib/fcrepo-server-3.7.1.jar and /dev/null differ diff --git a/fedora/client/lib/foxml-merge.xsl b/fedora/client/lib/foxml-merge.xsl deleted file mode 100644 index b97bfa0..0000000 --- a/fedora/client/lib/foxml-merge.xsl +++ /dev/null @@ -1,191 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/lib/geronimo-jaxws_2.2_spec-1.1.jar b/fedora/client/lib/geronimo-jaxws_2.2_spec-1.1.jar deleted file mode 100644 index 1c1c5df..0000000 Binary files a/fedora/client/lib/geronimo-jaxws_2.2_spec-1.1.jar and /dev/null differ diff --git a/fedora/client/lib/httpasyncclient-4.0-beta3.jar b/fedora/client/lib/httpasyncclient-4.0-beta3.jar deleted file mode 100644 index dc6b398..0000000 Binary files a/fedora/client/lib/httpasyncclient-4.0-beta3.jar and /dev/null differ diff --git a/fedora/client/lib/httpclient-4.2.5.jar b/fedora/client/lib/httpclient-4.2.5.jar deleted file mode 100644 index 84fece4..0000000 Binary files a/fedora/client/lib/httpclient-4.2.5.jar and /dev/null differ diff --git a/fedora/client/lib/httpcore-4.2.4.jar b/fedora/client/lib/httpcore-4.2.4.jar deleted file mode 100644 index 9f45bd9..0000000 Binary files a/fedora/client/lib/httpcore-4.2.4.jar and /dev/null differ diff --git a/fedora/client/lib/httpcore-nio-4.2.4.jar b/fedora/client/lib/httpcore-nio-4.2.4.jar deleted file mode 100644 index 6f42c71..0000000 Binary files a/fedora/client/lib/httpcore-nio-4.2.4.jar and /dev/null differ diff --git a/fedora/client/lib/httpmime-4.2.5.jar b/fedora/client/lib/httpmime-4.2.5.jar deleted file mode 100644 index e133ce9..0000000 Binary files a/fedora/client/lib/httpmime-4.2.5.jar and /dev/null differ diff --git a/fedora/client/lib/jai_codec-1.1.2_01.jar b/fedora/client/lib/jai_codec-1.1.2_01.jar deleted file mode 100644 index 0110a40..0000000 Binary files a/fedora/client/lib/jai_codec-1.1.2_01.jar and /dev/null differ diff --git a/fedora/client/lib/jai_core-1.1.2_01.jar b/fedora/client/lib/jai_core-1.1.2_01.jar deleted file mode 100644 index 1e784a6..0000000 Binary files a/fedora/client/lib/jai_core-1.1.2_01.jar and /dev/null differ diff --git a/fedora/client/lib/java-getopt-1.0.13.jar b/fedora/client/lib/java-getopt-1.0.13.jar deleted file mode 100644 index 237ce91..0000000 Binary files a/fedora/client/lib/java-getopt-1.0.13.jar and /dev/null differ diff --git a/fedora/client/lib/jaxb-api-2.1.jar b/fedora/client/lib/jaxb-api-2.1.jar deleted file mode 100644 index be3d6dc..0000000 Binary files a/fedora/client/lib/jaxb-api-2.1.jar and /dev/null differ diff --git a/fedora/client/lib/jaxb-impl-2.1.3.jar b/fedora/client/lib/jaxb-impl-2.1.3.jar deleted file mode 100644 index 5a2129f..0000000 Binary files a/fedora/client/lib/jaxb-impl-2.1.3.jar and /dev/null differ diff --git a/fedora/client/lib/jaxrpc-api-1.1.jar b/fedora/client/lib/jaxrpc-api-1.1.jar deleted file mode 100644 index cd3bc25..0000000 Binary files a/fedora/client/lib/jaxrpc-api-1.1.jar and /dev/null differ diff --git a/fedora/client/lib/jcl-over-slf4j-1.7.2.jar b/fedora/client/lib/jcl-over-slf4j-1.7.2.jar deleted file mode 100644 index 867fa62..0000000 Binary files a/fedora/client/lib/jcl-over-slf4j-1.7.2.jar and /dev/null differ diff --git a/fedora/client/lib/jhbasic-2.0.jar b/fedora/client/lib/jhbasic-2.0.jar deleted file mode 100644 index f0bab5b..0000000 Binary files a/fedora/client/lib/jhbasic-2.0.jar and /dev/null differ diff --git a/fedora/client/lib/log4j-over-slf4j-1.7.2.jar b/fedora/client/lib/log4j-over-slf4j-1.7.2.jar deleted file mode 100644 index 92e6103..0000000 Binary files a/fedora/client/lib/log4j-over-slf4j-1.7.2.jar and /dev/null differ diff --git a/fedora/client/lib/logback-classic-1.0.9.jar b/fedora/client/lib/logback-classic-1.0.9.jar deleted file mode 100644 index cebd1a3..0000000 Binary files a/fedora/client/lib/logback-classic-1.0.9.jar and /dev/null differ diff --git a/fedora/client/lib/logback-core-1.0.9.jar b/fedora/client/lib/logback-core-1.0.9.jar deleted file mode 100644 index f526524..0000000 Binary files a/fedora/client/lib/logback-core-1.0.9.jar and /dev/null differ diff --git a/fedora/client/lib/mail-1.4.1.jar b/fedora/client/lib/mail-1.4.1.jar deleted file mode 100644 index 1d15e79..0000000 Binary files a/fedora/client/lib/mail-1.4.1.jar and /dev/null differ diff --git a/fedora/client/lib/mets-merge.xsl b/fedora/client/lib/mets-merge.xsl deleted file mode 100644 index 95e2d31..0000000 --- a/fedora/client/lib/mets-merge.xsl +++ /dev/null @@ -1,203 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/fedora/client/lib/mulgara-core-2.1.12.jar b/fedora/client/lib/mulgara-core-2.1.12.jar deleted file mode 100644 index f37fb78..0000000 Binary files a/fedora/client/lib/mulgara-core-2.1.12.jar and /dev/null differ diff --git a/fedora/client/lib/neethi-3.0.2.jar b/fedora/client/lib/neethi-3.0.2.jar deleted file mode 100644 index 383efde..0000000 Binary files a/fedora/client/lib/neethi-3.0.2.jar and /dev/null differ diff --git a/fedora/client/lib/openrdf-sesame-onejar-2.2.1.jar b/fedora/client/lib/openrdf-sesame-onejar-2.2.1.jar deleted file mode 100644 index 289c02d..0000000 Binary files a/fedora/client/lib/openrdf-sesame-onejar-2.2.1.jar and /dev/null differ diff --git a/fedora/client/lib/saaj-api-1.3.4.jar b/fedora/client/lib/saaj-api-1.3.4.jar deleted file mode 100644 index 187053a..0000000 Binary files a/fedora/client/lib/saaj-api-1.3.4.jar and /dev/null differ diff --git a/fedora/client/lib/saaj-impl-1.3.1.jar b/fedora/client/lib/saaj-impl-1.3.1.jar deleted file mode 100644 index 4c5be42..0000000 Binary files a/fedora/client/lib/saaj-impl-1.3.1.jar and /dev/null differ diff --git a/fedora/client/lib/saxon-9.0.jar b/fedora/client/lib/saxon-9.0.jar deleted file mode 100644 index f3e135f..0000000 Binary files a/fedora/client/lib/saxon-9.0.jar and /dev/null differ diff --git a/fedora/client/lib/slf4j-api-1.7.2.jar b/fedora/client/lib/slf4j-api-1.7.2.jar deleted file mode 100644 index 1a88708..0000000 Binary files a/fedora/client/lib/slf4j-api-1.7.2.jar and /dev/null differ diff --git a/fedora/client/lib/spring-beans-3.0.7.RELEASE.jar b/fedora/client/lib/spring-beans-3.0.7.RELEASE.jar deleted file mode 100644 index 3d39319..0000000 Binary files a/fedora/client/lib/spring-beans-3.0.7.RELEASE.jar and /dev/null differ diff --git a/fedora/client/lib/spring-context-3.0.7.RELEASE.jar b/fedora/client/lib/spring-context-3.0.7.RELEASE.jar deleted file mode 100644 index c99132f..0000000 Binary files a/fedora/client/lib/spring-context-3.0.7.RELEASE.jar and /dev/null differ diff --git a/fedora/client/lib/spring-core-3.0.7.RELEASE.jar b/fedora/client/lib/spring-core-3.0.7.RELEASE.jar deleted file mode 100644 index 778d035..0000000 Binary files a/fedora/client/lib/spring-core-3.0.7.RELEASE.jar and /dev/null differ diff --git a/fedora/client/lib/stax2-api-3.1.1.jar b/fedora/client/lib/stax2-api-3.1.1.jar deleted file mode 100644 index 63a8a06..0000000 Binary files a/fedora/client/lib/stax2-api-3.1.1.jar and /dev/null differ diff --git a/fedora/client/lib/sunxacml-1.2-melcoe.jar b/fedora/client/lib/sunxacml-1.2-melcoe.jar deleted file mode 100644 index 6d0fc47..0000000 Binary files a/fedora/client/lib/sunxacml-1.2-melcoe.jar and /dev/null differ diff --git a/fedora/client/lib/trippi-core-1.5.8.jar b/fedora/client/lib/trippi-core-1.5.8.jar deleted file mode 100644 index 12aff9d..0000000 Binary files a/fedora/client/lib/trippi-core-1.5.8.jar and /dev/null differ diff --git a/fedora/client/lib/woodstox-core-asl-4.1.4.jar b/fedora/client/lib/woodstox-core-asl-4.1.4.jar deleted file mode 100644 index 8a066e1..0000000 Binary files a/fedora/client/lib/woodstox-core-asl-4.1.4.jar and /dev/null differ diff --git a/fedora/client/lib/wsdl4j-1.6.2.jar b/fedora/client/lib/wsdl4j-1.6.2.jar deleted file mode 100644 index b9ffc36..0000000 Binary files a/fedora/client/lib/wsdl4j-1.6.2.jar and /dev/null differ diff --git a/fedora/client/lib/xercesImpl-2.9.1.jar b/fedora/client/lib/xercesImpl-2.9.1.jar deleted file mode 100644 index 547f563..0000000 Binary files a/fedora/client/lib/xercesImpl-2.9.1.jar and /dev/null differ diff --git a/fedora/client/lib/xmlpull-1.1.3.4a.jar b/fedora/client/lib/xmlpull-1.1.3.4a.jar deleted file mode 100644 index cc332ec..0000000 Binary files a/fedora/client/lib/xmlpull-1.1.3.4a.jar and /dev/null differ diff --git a/fedora/client/lib/xmlschema-core-2.0.3.jar b/fedora/client/lib/xmlschema-core-2.0.3.jar deleted file mode 100644 index c15ca90..0000000 Binary files a/fedora/client/lib/xmlschema-core-2.0.3.jar and /dev/null differ diff --git a/fedora/client/lib/xpp3_min-1.1.3.4.O.jar b/fedora/client/lib/xpp3_min-1.1.3.4.O.jar deleted file mode 100644 index 640441d..0000000 Binary files a/fedora/client/lib/xpp3_min-1.1.3.4.O.jar and /dev/null differ diff --git a/fedora/client/truststore b/fedora/client/truststore deleted file mode 100644 index 8f72671..0000000 Binary files a/fedora/client/truststore and /dev/null differ diff --git a/fedora/default/docs/license/docstyle.css b/fedora/default/docs/license/docstyle.css deleted file mode 100644 index 06a9964..0000000 --- a/fedora/default/docs/license/docstyle.css +++ /dev/null @@ -1,221 +0,0 @@ -/* RESET */ html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{margin:0;padding:0;border:0;outline:0;font-weight:inherit;font-style:inherit;font-family:inherit;vertical-align:baseline}:focus{ outline:0}body{ line-height:1; color:black; background:white}ol,ul{ list-style:none}table{ border-collapse:separate; border-spacing:0}caption,th,td{ text-align:left; font-weight:normal}blockquote:before,blockquote:after,q:before,q:after{ content:""}blockquote,q{ quotes:""""}h1,h2,h3,h4,h5,h6{font-weight:normal} - -html{ - font-size: 62.5%; -} -a{ - color: #2e6174; -} -a:hover, a:focus{ - background-color: #fffe8c; -} -body{ - font-size: 1.4em; /* 14 */ - font-family: verdana, corbel, helvetica, arial, sans-serif; - line-height: 1.286em; /* 18 */ - margin: 0; -} -body #content li.square{ - list-style: square inside; - margin-bottom: 1.286em; - margin-top: 1.286em; -} - -body #content ul li, -body #content ol li, -body #content span.plaintext{ - font-size: .583em; - font-weight: normal; - line-height: 1.286em; - margin: 0; -} -body #content span.plaintext{ - margin: 1.286em; -} -body #content ul ul li, -body #content ul ol li, -body #content ol ul li, -body #content ol ol li, -body #content ol.alpha li{ - font-size: 1em; - margin: 0 0 0 1em; -} -body #content ol.alpha li ul{ - font-size: .75em; -} -body #content ol.alpha ul li span.plaintext{ - font-size: .75em; -} -ol#content ol.alpha ul li{ - font-size: .75em; -} -ol#content ol.alpha ul li ul li{ - font-size: 1.4em; -} -ol#content ol.alpha ul li ul li ul li{ - font-size: 1.2em; -} -ol#content ol.alpha ul li ul li ul li ul li{ - font-size: 1.3em; -} -code.block{ - display: block; - margin: 1.286em; -} -#content li ol li h3{ - font-size: 1em; - line-height: 1em; -} -div#content{ - margin-left: .75em; -} -div#content, ol#content li{ - font-size: 1.715em; - font-weight: bold; - line-height: 1.5em; - margin-bottom: 1.5em; - margin-top: 1.5em; -} -div#content h2{ - margin: 1.5em 0; -} -div#content h3{ - font-size: 22px; -} -div#content p{ - font-size: .583em; - font-weight: normal; - line-height: 1.286em; - margin: 1.286em; -} -div#content ul{ - margin-left: 2.25em; -} -em{ - font-style: italic; -} -#footer{ - font-size: .714em; - line-height: 1.8em; - margin: 1.286em 0 0; - text-align: center; -} -h1{ - font-size: 2.143em; - font-weight: bold; - line-height: 1.2em; - padding-top: 1.2em; -} -h2{ - font-size: 1em; - font-weight: bold; - line-height: 1em; -} -h3{ - display: inline; - font-size: 1.286em; - font-weight: bold; - line-height: 1.636em; -} -h3.newstar{ - background: url('images/new.png') no-repeat right center; - line-height: 2em; - padding: .5em 4em .5em 0; -} -h4{ - display: inline; -} -#header{ - background: url('images/docs.png') no-repeat 1.286em 0; - border-bottom: solid .071em #999; - height: 8em; - text-align: center; -} -#header a{ - color: #000; -} -#header h2{ - font-size: 1.429em; - font-weight: normal; - line-height: 1.8em; - margin: 0; -} -img{ - vertical-align: middle; -} -#lastModified{ - display: none; -} -li{ - margin: 0 1.286em; -} -li.nostyle{ - list-style: none; -} -ol, ul{ - list-style: disc inside; - margin-left: 1em; -} -ol{ - list-style: decimal outside; -} -ol h2{ - display: inline; -} -ol ol{ - list-style: decimal inside; - margin-left: 1em; -} -ol#content{ - margin-left: 1.285em; -} -ol.alpha li{ - list-style: inside upper-alpha; -} -ol.alpha ul li{ - list-style-type: disc; -} -pre, table, td, th{ - font-size: 16px; - background: #f1f1f1; - border: solid 1px #999; - padding: 5px; -} -table{ - border-collapse: collapse; -} -span.plaintext{ - display: block; -} -strong{ - font-weight: bold; -} -div.notice{ - background: #f1f1f1; - border: solid .143em #999; - margin: 1.286em; - padding: 0.5em; -} -#toc{ - background: #f1f1f1; - border: solid .143em #999; - margin: 1.286em; - padding: 1.143em; - width: 30em; -} -#toc h2{ - font-size: 1.426em; - line-height: 1.8em; - margin: 0; -} -#toc li{ - margin: 0; - text-indent: 0; -} -#toc ol, #toc ul{ - list-style: decimal inside; - margin: 0 0 0 1.286em; -} -#toc ul{ - list-style-type: square; -} \ No newline at end of file diff --git a/fedora/default/docs/license/exhibitA-java.txt b/fedora/default/docs/license/exhibitA-java.txt deleted file mode 100644 index 8716de6..0000000 --- a/fedora/default/docs/license/exhibitA-java.txt +++ /dev/null @@ -1,22 +0,0 @@ -/* - * ----------------------------------------------------------------------------- - * - *

License and Copyright: The contents of this file are subject to 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.fedora-commons.org/licenses.

- * - *

Software distributed under the License is distributed on an "AS IS" basis, - * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for - * the specific language governing rights and limitations under the License.

- * - *

The entire file consists of original code.

- *

Copyright © 2008 Fedora Commons, Inc.
- *

Copyright © 2002-2007 The Rector and Visitors of the University of - * Virginia and Cornell University
- * All rights reserved.

- * - * ----------------------------------------------------------------------------- - */ - diff --git a/fedora/default/docs/license/images/docs.png b/fedora/default/docs/license/images/docs.png deleted file mode 100644 index 2d23648..0000000 Binary files a/fedora/default/docs/license/images/docs.png and /dev/null differ diff --git a/fedora/default/docs/license/license.html b/fedora/default/docs/license/license.html deleted file mode 100644 index 9aa38b5..0000000 --- a/fedora/default/docs/license/license.html +++ /dev/null @@ -1,976 +0,0 @@ - - - - - - Fedora License - - - - - - - -
    - -
  1. Fedora Repository System - - -
    - Copyright © 2009-2012 DuraSpace
    - Copyright © 2008-2009 Fedora Commons, Inc.
    - Copyright © 2002-2007 The Rector and Visitors of the University of Virginia and Cornell University
    -
    - 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/
    -
    - 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. -
    -
    - A full description of the Fedora Commons licensing and copyright policies may be found at: -
    -
    - http://www.fedora-commons.org/licenses/
    -
    - -
    - -
    -
    -

    -Apache License
    -Version 2.0, January 2004
    -http://www.apache.org/licenses/ -

    -

    -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION -

    -

    1. Definitions.

    -

    - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. -

    -

    - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. -

    -

    - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. -

    -

    - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. -

    -

    - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. -

    -

    - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. -

    -

    - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). -

    -

    - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. -

    -

    - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." -

    -

    - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. -

    -

    2. Grant of Copyright License. - Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - -

    -

    3. Grant of Patent License. -Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. -

    -

    4. Redistribution. -You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: -

    - -
      -
    1. You must give any other recipients of the Work or - Derivative Works a copy of this License; and -

    2. - -
    3. You must cause any modified files to carry prominent notices - stating that You changed the files; and -

    4. - -
    5. You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and -

    6. - -
    7. If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License.
    8. -
    -

    - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. -

    -

    5. Submission of Contributions. -Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. -

    -

    6. Trademarks. -This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. -

    -

    7. Disclaimer of Warranty. -Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. -

    -

    8. Limitation of Liability. -In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - -

    -

    9. Accepting Warranty or Additional Liability. -While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. -

    -

    -END OF TERMS AND CONDITIONS -

    -
    -
    -
    -
  2. - -
  3. - Third Party Packages - -
      -
    1. Akubra API 0.1 - - -
      - - Licensed under the Apache Software License 2.0.
      - For complete license information, please see - - thirdParty/akubra/. -
      -
    2. -
    3. Apache Abdera 0.4.0 - - -
      - - Licensed under the Apache Software License 2.0.
      - For complete license information, please see - - thirdParty/apache-abdera/. -
      -
    4. -
    5. Apache Avalon 4.2.0 - - -
      - - Licensed under the Apache Software License 2.0.
      - For complete license information, please see - thirdParty/apache-avalon/. -
      -
    6. -
    7. Apache Axis 1.3 - - -
      - - Licensed under the Apache Software License 2.0.
      - For complete license information, please see - thirdParty/apache-axis/. -
      -
    8. -
    9. Apache Batik 1.5.1 - - -
      - - Licensed under the Apache Software License 1.1.
      - For complete license information, please see - thirdParty/apache-batik/. -
      -
    10. -
    11. Apache Derby 10.4.2 - - -
      - - Licensed under the Apache Software License 2.0.
      - For complete license information, please see - thirdParty/apache-derby/. -
      -
    12. -
    13. Apache FOP 0.20.5 - - -
      - - Licensed under the Apache Software License 1.1.
      - For complete license information, please see - thirdParty/apache-fop/. -
      -
    14. -
    15. Apache Jakarta Commons Betwixt 0.7 - - -
      - - Licensed under the Apache Software License 2.0.
      - For complete license information, please see - - thirdParty/apache-jakarta-commons-betwixt/. -
      -
    16. -
    17. Apache Jakarta Commons Collections 3.1 - - -
      - - Licensed under the Apache Software License 2.0.
      - For complete license information, please see - - thirdParty/apache-jakarta-commons-collections/. -
      -
    18. -
    19. Apache Jakarta Commons Discovery 0.2 - - -
      - - Licensed under the Apache Software License 1.1.
      - For complete license information, please see - - thirdParty/apache-jakarta-commons-discovery/. -
      -
    20. -
    21. Apache Jakarta Commons FileUpload 1.2.1 - - -
      - - Licensed under the Apache Software License 2.0.
      - For complete license information, please see - - thirdParty/apache-jakarta-commons-fileupload/. -
      -
    22. -
    23. Apache Jakarta Commons HttpClient 3.1 - - -
      - - Licensed under the Apache Software License 2.0.
      - For complete license information, please see - - thirdParty/apache-jakarta-commons-httpclient/. -
      -
    24. -
    25. Apache Jakarta Commons Logging 1.0.4 - - -
      - - Licensed under the Apache Software License 2.0.
      - For complete license information, please see - - thirdParty/apache-jakarta-commons-logging/. -
      -
    26. -
    27. Apache Jakarta ORO 2.0.5 - - -
      - - Licensed under the Apache Software License 1.1.
      - For complete license information, please see - thirdParty/apache-jakarta-oro/. -
      -
    28. -
    29. Apache Lucene 2.0.0 - - -
      - - Licensed under the Apache Software License 2.0.
      - For complete license information, please see - - thirdParty/apache-lucene/. -
      -
    30. -
    31. Apache Tomcat 5.5.26 - - -
      - - Licensed under the Apache Software License 2.0.
      - For complete license information, please see - - thirdParty/apache-tomcat/. -
      -
    32. -
    33. Castor 0.9.3.9 - - -
      - - For complete license information, please see - thirdParty/castor/. -
      -
    34. -
    35. Fast MD5 - - -
      - Licensed under the GNU Lesser General Public License Version 2.1.
      - For complete license information, please see - thirdParty/fast-md5/. -
      -
    36. -
    37. Google Collections Library 1.0 - - -
      - - Licensed under the Apache Software License 2.0.
      - For complete license information, please see - thirdParty/google-collections/. -
      -
    38. -
    39. GNU getopt - Java port - - -
      - - Licensed under the GNU Library General Public License Version 2.0.
      - For complete license information, please see - thirdParty/gnu-getopt/. -
      -
    40. -
    41. GNU Trove 1.0.2 - - -
      - - Licensed under the GNU Lesser General Public License Version 2.1.
      - For complete license information, please see - thirdParty/gnu-trove/. -
      -
    42. -
    43. GroboUtils - - -
      - - Licensed under the MIT License
      - For complete license information, please see - thirdParty/groboutils -
      -
    44. -
    45. HOWL 0.1.11 - - -
      - - Licensed under the BSD license.
      - For complete license information, please see - thirdParty/howl/. -
      -
    46. -
    47. ImageJ - - -
      - - For complete license information, please see - thirdParty/imagej/. -
      -
    48. -
    49. Jaxen 1.1.1 - - -
      - - For complete license information, please see - thirdParty/imagej/. -
      -
    50. -
    51. Java Architecture for XML Binding (JAXB) 2.1 - - -
      - - Dual licensed under the CDDL 1.0 and GPL 2 (with "classpath exception")
      - For complete license information, please see - thirdParty/jaxb/. -
      -
    52. -
    53. Jersey 0.2 - - -
      - - Licensed under the Common Development and Distribution License Version 1.0.
      - For complete license information, please see - thirdParty/jersey/. -
      -
    54. -
    55. JOTM 1.5.3 - - -
      - - Licensed under the BSD license.
      - For complete license information, please see - thirdParty/jotm/. -
      -
    56. -
    57. JUnit 4.5 - - -
      - - Licensed under the Common Public License v 1.0.
      - For complete license information, please see - thirdParty/junit/. -
      -
    58. -
    59. Mulgara 2.0.8 - - -
      - - Licensed under the Open Software License Version 3.0.
      - For complete license information, please see - thirdParty/mulgara/. -
      -
    60. -
    61. MySQL Connector/J 5.1.6 - - -
      - - For complete license information, please see - thirdParty/mysql-connectorj/. -
      -
    62. -
    63. One-JAR 0.96 - - -
      - For complete license information, please see - thirdParty/one-jar/. -
      -
    64. -
    65. PostgreSQL 8.3-603 - - -
      - - For complete license information, please see - thirdParty/postgresql/. -
      -
    66. -
    67. Saxon-B 9.0.0.4 - - -
      - - Licensed under the Mozilla Public License 1.0.
      - For complete license information, please see - thirdParty/saxon/. -
      -
    68. -
    69. Schematron - - -
      - For complete license information, please see - thirdParty/schematron/. -
      -
    70. -
    71. Spring Framework 2.5.6 - - -
      - - Licensed under the Apache Software License 2.0.
      - For complete license information, please see - thirdParty/spring-framework/. -
      -
    72. -
    73. Stax-Utils - - -
      - For complete license information, please see - thirdParty/stax-utils/. -
      -
    74. -
    75. Sun J2EE Connector Architecture 1.5 - - -
      - For complete license information, please see - thirdParty/sun-connector/. -
      -
    76. -
    77. Sun Java Advanced Imaging API - - -
      - Licensed under the Sun Binary Code License Agreement.
      - For complete license information, please see - thirdParty/sun-jai/. -
      -
    78. -
    79. Sun Java API for XML-Based RPC 1.1 - - -
      - For complete license information, please see - thirdParty/sun-jaxrpc/. -
      -
    80. -
    81. Sun Java Management Extensions - - -
      - Licensed under the Sun Binary Code License Agreement.
      - For complete license information, please see - thirdParty/sun-jmx/. -
      -
    82. -
    83. Sun Java Streaming XML Parser (SJSXP) 1.0.1 - - -
      - For complete license information, please see - thirdParty/sun-sjsxp/. -
      -
    84. -
    85. Sun Java Transaction API (JTA) 1.0.1 - - -
      - For complete license information, please see - thirdParty/sun-jta/. -
      -
    86. -
    87. Sun JavaBeans Activation Framework 1.1.1 - - -
      - Licensed under the Sun Binary Code License Agreement.
      - For complete license information, please see - thirdParty/sun-jaf/. -
      -
    88. -
    89. Sun JavaMail 1.4.1 - - -
      - Licensed under the Sun Binary Code License Agreement.
      - For complete license information, please see - thirdParty/sun-javamail/. -
      -
    90. -
    91. Sun SOAP with Attachments API for Java 1.3 - - -
      - Licensed under the Sun Binary Code License Agreement.
      - For complete license information, please see - thirdParty/sun-saaj/. -
      -
    92. -
    93. Sun XACML Implementation - - -
      - Licensed under the BSD License.
      - For complete license information, please see - thirdParty/sun-xacml/. -
      -
    94. -
    95. TechTrader Bytecode Toolkit - - -
      - - Licensed under the BSD License.
      - For complete license information, please see - thirdParty/tt-bytecode/. -
      -
    96. -
    97. WSDL4J - - -
      - - Licensed under the Common Public License v 1.0.
      - For complete license information, please see - thirdParty/wsdl4j/. -
      -
    98. -
    99. XMLUnit 1.2 - - -
      - For complete license information, please see - thirdParty/xmlunit/. -
      -
    100. -
    101. XML Pull API - - -
      - - For complete license information, please see - thirdParty/xmlpull/. -
      -
    102. -
    103. XML Pull Parser 3rd Edition - - -
      - For complete license information, please see - thirdParty/xpp3/. -
      -
    104. -
    105. XMLDB API - -
      - For complete license information, please see - thirdParty/xmldb/. -
      -
    106. -
    107. ConnectionPool.java - -
    108. -
    - -
  4. -
- -
-

Additional Required Attributions

-

This product includes software developed by the Apache Software Foundation - (http://www.apache.org/).

- -

This product includes software developed by the Indiana University Extreme! - Lab (http://www.extreme.indiana.edu/).

-
- - - - - diff --git a/fedora/default/docs/license/thirdParty/akubra/LICENSE b/fedora/default/docs/license/thirdParty/akubra/LICENSE deleted file mode 100644 index d645695..0000000 --- a/fedora/default/docs/license/thirdParty/akubra/LICENSE +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. diff --git a/fedora/default/docs/license/thirdParty/apache-abdera/LICENSE b/fedora/default/docs/license/thirdParty/apache-abdera/LICENSE deleted file mode 100644 index 4d50928..0000000 --- a/fedora/default/docs/license/thirdParty/apache-abdera/LICENSE +++ /dev/null @@ -1,242 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -Apache Abdera includes a number of components and libraries with -separate copyright notices and license terms. Your use of those -components are subject to the terms and conditions of the following -licenses. - - - -Servlet API javax.servlet:servlet-api:jar:2.4:compile - License: COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0 (http://www.sun.com/cddl/cddl.html) - -htmlparser (http://about.validator.nu/htmlparser/) nu.validator.htmlparser:htmlparser:jar:1.0.5 - License: The MIT License (http://www.opensource.org/licenses/mit-license.php) - -Servlet Specification 2.5 API (http://jetty.mortbay.org) org.mortbay.jetty:servlet-api-2.5:jar:6.1.5 - License: CDDL 1.0 (https://glassfish.dev.java.net/public/CDDLv1.0.html) - -Copyright (c) 2002-2005, Mark Pilgrim -All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - -* Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. -* 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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 'AS IS' -AND ANY EXPRESS 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 COPYRIGHT OWNER OR CONTRIBUTORS BE -LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR -CONSEQUENTIAL DAMAGES (INCLUDING, 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. \ No newline at end of file diff --git a/fedora/default/docs/license/thirdParty/apache-abdera/NOTICE b/fedora/default/docs/license/thirdParty/apache-abdera/NOTICE deleted file mode 100644 index 64cf4ef..0000000 --- a/fedora/default/docs/license/thirdParty/apache-abdera/NOTICE +++ /dev/null @@ -1,74 +0,0 @@ - -Apache Abdera -Copyright 2006-2008 Apache Software Foundation - -This product includes software developed at -The Apache Software Foundation (http://www.apache.org/). - - -Portions of Abdera were orginally developed by -International Business Machines Corporation and are -licensed to the Apache Software Foundation under the -"Software Grant and Corporate Contribution License Agreement", -informally known as the "Abdera CLA". - -This software's test suite contains data files derived from the -Universal Feed Parser, Copyright (c) 2002-2005, Mark Pilgrim. - -This software includes a partial implementation of Unicode 5.0.0. - -========================================================================= -== Unicode License Statement (http://www.unicode.org/copyright.html) == -========================================================================= - -Unicode Data Files include all data files under the directories -http://www.unicode.org/Public/, http://www.unicode.org/reports/, -and http://www.unicode.org/cldr/data/ . Unicode Software includes any -source code published in the Unicode Standard or under the directories -http://www.unicode.org/Public/, http://www.unicode.org/reports/, and -http://www.unicode.org/cldr/data/. - -NOTICE TO USER: Carefully read the following legal agreement. BY DOWNLOADING, -INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S DATA FILES ("DATA FILES"), -AND/OR SOFTWARE ("SOFTWARE"), YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, -ALL OF THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT -DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. - -COPYRIGHT AND PERMISSION NOTICE - -Copyright © 1991-2007 Unicode, Inc. All rights reserved. Distributed under the -Terms of Use in http://www.unicode.org/copyright.html. - -Permission is hereby granted, free of charge, to any person obtaining a copy of -the Unicode data files and any associated documentation (the "Data Files") or -Unicode software and any associated documentation (the "Software") to deal in -the Data Files or Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, and/or sell copies -of the Data Files or Software, and to permit persons to whom the Data Files or -Software are furnished to do so, provided that (a) the above copyright notice(s) -and this permission notice appear with all copies of the Data Files or Software, -(b) both the above copyright notice(s) and this permission notice appear in -associated documentation, and (c) there is clear notice in each modified Data -File or in the Software as well as in the documentation associated with the Data -File(s) or Software that the data or software has been modified. - -THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. IN -NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE -FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF -CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION -WITH THE USE OR PERFORMANCE OF THE DATA FILES OR SOFTWARE. - -Except as contained in this notice, the name of a copyright holder shall not be -used in advertising or otherwise to promote the sale, use or other dealings in -these Data Files or Software without prior written authorization of the -copyright holder. - -==== - -Additional copyright notices and license terms applicable are -present in the lib directory of this distribution. - - diff --git a/fedora/default/docs/license/thirdParty/apache-avalon/LICENSE.txt b/fedora/default/docs/license/thirdParty/apache-avalon/LICENSE.txt deleted file mode 100644 index 67db858..0000000 --- a/fedora/default/docs/license/thirdParty/apache-avalon/LICENSE.txt +++ /dev/null @@ -1,175 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. diff --git a/fedora/default/docs/license/thirdParty/apache-avalon/NOTICE.TXT b/fedora/default/docs/license/thirdParty/apache-avalon/NOTICE.TXT deleted file mode 100644 index 281b318..0000000 --- a/fedora/default/docs/license/thirdParty/apache-avalon/NOTICE.TXT +++ /dev/null @@ -1,11 +0,0 @@ - ========================================================================= - == NOTICE file corresponding to the section 4 d of == - == the Apache License, Version 2.0, == - ========================================================================= - - This product is developed by the Apache Avalon Project. - http://avalon.apache.org - - The names "Avalon" and "Merlin" must not be used to endorse or promote - products derived from this software without prior written permission. - For written permission, please contact pmc@avalon.apache.org. diff --git a/fedora/default/docs/license/thirdParty/apache-axis/LICENSE b/fedora/default/docs/license/thirdParty/apache-axis/LICENSE deleted file mode 100644 index e2060e6..0000000 --- a/fedora/default/docs/license/thirdParty/apache-axis/LICENSE +++ /dev/null @@ -1,54 +0,0 @@ -/* - * The Apache Software License, Version 1.1 - * - * - * Copyright (c) 2002 The Apache Software Foundation. All rights - * reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, 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 "Axis" 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 apache@apache.org. - * - * 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 (INCLUDING, 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 - * . - */ diff --git a/fedora/default/docs/license/thirdParty/apache-batik/LICENSE b/fedora/default/docs/license/thirdParty/apache-batik/LICENSE deleted file mode 100644 index 6480f2a..0000000 --- a/fedora/default/docs/license/thirdParty/apache-batik/LICENSE +++ /dev/null @@ -1,45 +0,0 @@ - ============================================================================ - The Apache Software License, Version 1.1 - ============================================================================ - - Copyright (C) 2000 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 "Batik" 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 - apache@apache.org. - - 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 . diff --git a/fedora/default/docs/license/thirdParty/apache-derby/LICENSE b/fedora/default/docs/license/thirdParty/apache-derby/LICENSE deleted file mode 100644 index cb938b2..0000000 --- a/fedora/default/docs/license/thirdParty/apache-derby/LICENSE +++ /dev/null @@ -1,177 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - diff --git a/fedora/default/docs/license/thirdParty/apache-derby/NOTICE b/fedora/default/docs/license/thirdParty/apache-derby/NOTICE deleted file mode 100644 index 639863a..0000000 --- a/fedora/default/docs/license/thirdParty/apache-derby/NOTICE +++ /dev/null @@ -1,31 +0,0 @@ -========================================================================= -== NOTICE file corresponding to section 4(d) of the Apache License, == -== Version 2.0, in this case for the Apache Derby distribution. == -========================================================================= - -Apache Derby -Copyright 2004-2008 The Apache Software Foundation - -This product includes software developed by -The Apache Software Foundation (http://www.apache.org/). - -Portions of Derby were originally developed by -International Business Machines Corporation and are -licensed to the Apache Software Foundation under the -"Software Grant and Corporate Contribution License Agreement", -informally known as the "Derby CLA". -The following copyright notice(s) were affixed to portions of the code -with which this file is now or was at one time distributed -and are placed here unaltered. - -(C) Copyright 1997,2004 International Business Machines Corporation. All rights reserved. - -(C) Copyright IBM Corp. 2003. - -The portion of the functionTests under 'nist' was originally -developed by the National Institute of Standards and Technology (NIST), -an agency of the United States Department of Commerce, and adapted by -International Business Machines Corporation in accordance with the NIST -Software Acknowledgment and Redistribution document at -http://www.itl.nist.gov/div897/ctg/sql_form.htm - diff --git a/fedora/default/docs/license/thirdParty/apache-fop/LICENSE b/fedora/default/docs/license/thirdParty/apache-fop/LICENSE deleted file mode 100644 index 831c658..0000000 --- a/fedora/default/docs/license/thirdParty/apache-fop/LICENSE +++ /dev/null @@ -1,48 +0,0 @@ - - ============================================================================ - The Apache Software License, Version 1.1 - ============================================================================ - - Copyright (C) 1999-2003 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 "FOP" 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 - apache@apache.org. - - 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 and was originally created by - James Tauber . For more information on the Apache - Software Foundation, please see . - diff --git a/fedora/default/docs/license/thirdParty/apache-jakarta-commons-beanutils/LICENSE.txt b/fedora/default/docs/license/thirdParty/apache-jakarta-commons-beanutils/LICENSE.txt deleted file mode 100644 index d645695..0000000 --- a/fedora/default/docs/license/thirdParty/apache-jakarta-commons-beanutils/LICENSE.txt +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. diff --git a/fedora/default/docs/license/thirdParty/apache-jakarta-commons-betwixt/LICENSE.txt b/fedora/default/docs/license/thirdParty/apache-jakarta-commons-betwixt/LICENSE.txt deleted file mode 100644 index 5471dc1..0000000 --- a/fedora/default/docs/license/thirdParty/apache-jakarta-commons-betwixt/LICENSE.txt +++ /dev/null @@ -1,203 +0,0 @@ - - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. diff --git a/fedora/default/docs/license/thirdParty/apache-jakarta-commons-betwixt/NOTICE.txt b/fedora/default/docs/license/thirdParty/apache-jakarta-commons-betwixt/NOTICE.txt deleted file mode 100644 index 3f59805..0000000 --- a/fedora/default/docs/license/thirdParty/apache-jakarta-commons-betwixt/NOTICE.txt +++ /dev/null @@ -1,2 +0,0 @@ -This product includes software developed by -The Apache Software Foundation (http://www.apache.org/). diff --git a/fedora/default/docs/license/thirdParty/apache-jakarta-commons-collections/LICENSE.txt b/fedora/default/docs/license/thirdParty/apache-jakarta-commons-collections/LICENSE.txt deleted file mode 100644 index d645695..0000000 --- a/fedora/default/docs/license/thirdParty/apache-jakarta-commons-collections/LICENSE.txt +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. diff --git a/fedora/default/docs/license/thirdParty/apache-jakarta-commons-collections/NOTICE.txt b/fedora/default/docs/license/thirdParty/apache-jakarta-commons-collections/NOTICE.txt deleted file mode 100644 index 3f59805..0000000 --- a/fedora/default/docs/license/thirdParty/apache-jakarta-commons-collections/NOTICE.txt +++ /dev/null @@ -1,2 +0,0 @@ -This product includes software developed by -The Apache Software Foundation (http://www.apache.org/). diff --git a/fedora/default/docs/license/thirdParty/apache-jakarta-commons-dbcp/LICENSE.txt b/fedora/default/docs/license/thirdParty/apache-jakarta-commons-dbcp/LICENSE.txt deleted file mode 100644 index d645695..0000000 --- a/fedora/default/docs/license/thirdParty/apache-jakarta-commons-dbcp/LICENSE.txt +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. diff --git a/fedora/default/docs/license/thirdParty/apache-jakarta-commons-dbcp/NOTICE.txt b/fedora/default/docs/license/thirdParty/apache-jakarta-commons-dbcp/NOTICE.txt deleted file mode 100644 index 3f59805..0000000 --- a/fedora/default/docs/license/thirdParty/apache-jakarta-commons-dbcp/NOTICE.txt +++ /dev/null @@ -1,2 +0,0 @@ -This product includes software developed by -The Apache Software Foundation (http://www.apache.org/). diff --git a/fedora/default/docs/license/thirdParty/apache-jakarta-commons-digester/LICENSE.txt b/fedora/default/docs/license/thirdParty/apache-jakarta-commons-digester/LICENSE.txt deleted file mode 100644 index d645695..0000000 --- a/fedora/default/docs/license/thirdParty/apache-jakarta-commons-digester/LICENSE.txt +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. diff --git a/fedora/default/docs/license/thirdParty/apache-jakarta-commons-discovery/LICENSE.txt b/fedora/default/docs/license/thirdParty/apache-jakarta-commons-discovery/LICENSE.txt deleted file mode 100644 index 5ae53a7..0000000 --- a/fedora/default/docs/license/thirdParty/apache-jakarta-commons-discovery/LICENSE.txt +++ /dev/null @@ -1,60 +0,0 @@ -/* - * $Header$ - * $Revision$ - * $Date$ - * - * ==================================================================== - * - * The Apache Software License, Version 1.1 - * - * Copyright (c) 1999-2001 The Apache Software Foundation. All rights - * reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, 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 acknowlegement: - * "This product includes software developed by the - * Apache Software Foundation (http://www.apache.org/)." - * Alternately, this acknowlegement may appear in the software itself, - * if and wherever such third-party acknowlegements normally appear. - * - * 4. The names "The Jakarta Project", "Commons", 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 apache@apache.org. - * - * 5. Products derived from this software may not be called "Apache" - * nor may "Apache" appear in their names without prior written - * permission of the Apache Group. - * - * 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 (INCLUDING, 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 - * . - * - */ diff --git a/fedora/default/docs/license/thirdParty/apache-jakarta-commons-fileupload/LICENSE b/fedora/default/docs/license/thirdParty/apache-jakarta-commons-fileupload/LICENSE deleted file mode 100644 index d9a10c0..0000000 --- a/fedora/default/docs/license/thirdParty/apache-jakarta-commons-fileupload/LICENSE +++ /dev/null @@ -1,176 +0,0 @@ - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS diff --git a/fedora/default/docs/license/thirdParty/apache-jakarta-commons-httpclient/LICENSE b/fedora/default/docs/license/thirdParty/apache-jakarta-commons-httpclient/LICENSE deleted file mode 100644 index d9a10c0..0000000 --- a/fedora/default/docs/license/thirdParty/apache-jakarta-commons-httpclient/LICENSE +++ /dev/null @@ -1,176 +0,0 @@ - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS diff --git a/fedora/default/docs/license/thirdParty/apache-jakarta-commons-logging/LICENSE.txt b/fedora/default/docs/license/thirdParty/apache-jakarta-commons-logging/LICENSE.txt deleted file mode 100644 index d645695..0000000 --- a/fedora/default/docs/license/thirdParty/apache-jakarta-commons-logging/LICENSE.txt +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. diff --git a/fedora/default/docs/license/thirdParty/apache-jakarta-commons-logging/NOTICE.txt b/fedora/default/docs/license/thirdParty/apache-jakarta-commons-logging/NOTICE.txt deleted file mode 100644 index 439eb83..0000000 --- a/fedora/default/docs/license/thirdParty/apache-jakarta-commons-logging/NOTICE.txt +++ /dev/null @@ -1,3 +0,0 @@ -This product includes software developed by -The Apache Software Foundation (http://www.apache.org/). - diff --git a/fedora/default/docs/license/thirdParty/apache-jakarta-commons-pool/LICENSE.txt b/fedora/default/docs/license/thirdParty/apache-jakarta-commons-pool/LICENSE.txt deleted file mode 100644 index d645695..0000000 --- a/fedora/default/docs/license/thirdParty/apache-jakarta-commons-pool/LICENSE.txt +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. diff --git a/fedora/default/docs/license/thirdParty/apache-jakarta-commons-pool/NOTICE.txt b/fedora/default/docs/license/thirdParty/apache-jakarta-commons-pool/NOTICE.txt deleted file mode 100644 index 3f59805..0000000 --- a/fedora/default/docs/license/thirdParty/apache-jakarta-commons-pool/NOTICE.txt +++ /dev/null @@ -1,2 +0,0 @@ -This product includes software developed by -The Apache Software Foundation (http://www.apache.org/). diff --git a/fedora/default/docs/license/thirdParty/apache-jakarta-oro/LICENSE b/fedora/default/docs/license/thirdParty/apache-jakarta-oro/LICENSE deleted file mode 100644 index 9c63560..0000000 --- a/fedora/default/docs/license/thirdParty/apache-jakarta-oro/LICENSE +++ /dev/null @@ -1,56 +0,0 @@ -/* ==================================================================== - * The Apache Software License, Version 1.1 - * - * Copyright (c) 2000-2002 The Apache Software Foundation. All rights - * reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, 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" and "Apache Software Foundation", "Jakarta-Oro" - * must not be used to endorse or promote products derived from this - * software without prior written permission. For written - * permission, please contact apache@apache.org. - * - * 5. Products derived from this software may not be called "Apache" - * or "Jakarta-Oro", nor may "Apache" or "Jakarta-Oro" 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 (INCLUDING, 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 - * . - * - * Portions of this software are based upon software originally written - * by Daniel F. Savarese. We appreciate his contributions. - */ diff --git a/fedora/default/docs/license/thirdParty/apache-lucene/LICENSE.txt b/fedora/default/docs/license/thirdParty/apache-lucene/LICENSE.txt deleted file mode 100644 index d645695..0000000 --- a/fedora/default/docs/license/thirdParty/apache-lucene/LICENSE.txt +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. diff --git a/fedora/default/docs/license/thirdParty/apache-tomcat/LICENSE b/fedora/default/docs/license/thirdParty/apache-tomcat/LICENSE deleted file mode 100644 index 261eeb9..0000000 --- a/fedora/default/docs/license/thirdParty/apache-tomcat/LICENSE +++ /dev/null @@ -1,201 +0,0 @@ - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. diff --git a/fedora/default/docs/license/thirdParty/apache-tomcat/NOTICE b/fedora/default/docs/license/thirdParty/apache-tomcat/NOTICE deleted file mode 100644 index 4156cdb..0000000 --- a/fedora/default/docs/license/thirdParty/apache-tomcat/NOTICE +++ /dev/null @@ -1,13 +0,0 @@ -This product includes software developed by -The Apache Software Foundation (http://www.apache.org/). - -Java Management Extensions (JMX) support is provided by -the MX4J package, which is open source software. The -original software and related information is available -at http://mx4j.sourceforge.net. - -The Windows Installer is built with the Nullsoft -Scriptable Install Sysem (NSIS), which is -open source software. The original software and -related information is available at -http://nsis.sourceforge.net. diff --git a/fedora/default/docs/license/thirdParty/castor/license.txt b/fedora/default/docs/license/thirdParty/castor/license.txt deleted file mode 100644 index 31eed69..0000000 --- a/fedora/default/docs/license/thirdParty/castor/license.txt +++ /dev/null @@ -1,38 +0,0 @@ -Copyright 1999-2004 (C) Intalio Inc., and others. All Rights Reserved. - -Redistribution and use of this software and associated documentation -("Software"), with or without modification, are permitted provided -that the following conditions are met: - -1. Redistributions of source code must retain copyright statements - and notices. Redistributions must also contain a copy of this - document. - -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 name "ExoLab" must not be used to endorse or promote products - derived from this Software without prior written permission of - Intalio Inc. For written permission, please contact info@exolab.org. - -4. Products derived from this Software may not be called "Castor" - nor may "Castor" appear in their names without prior written - permission of Intalio Inc. Exolab, Castor and Intalio are - trademarks of Intalio Inc. - -5. Due credit should be given to the ExoLab Project - (http://www.exolab.org/). - -THIS SOFTWARE IS PROVIDED BY INTALIO AND CONTRIBUTORS ``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 INTALIO OR ITS -CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, -EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 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. diff --git a/fedora/default/docs/license/thirdParty/fast-md5/LGPL-v2.1.txt b/fedora/default/docs/license/thirdParty/fast-md5/LGPL-v2.1.txt deleted file mode 100644 index b1e3f5a..0000000 --- a/fedora/default/docs/license/thirdParty/fast-md5/LGPL-v2.1.txt +++ /dev/null @@ -1,504 +0,0 @@ - GNU LESSER GENERAL PUBLIC LICENSE - Version 2.1, February 1999 - - Copyright (C) 1991, 1999 Free Software Foundation, Inc. - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - -[This is the first released version of the Lesser GPL. It also counts - as the successor of the GNU Library Public License, version 2, hence - the version number 2.1.] - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -Licenses are intended to guarantee your freedom to share and change -free software--to make sure the software is free for all its users. - - This license, the Lesser General Public License, applies to some -specially designated software packages--typically libraries--of the -Free Software Foundation and other authors who decide to use it. You -can use it too, but we suggest you first think carefully about whether -this license or the ordinary General Public License is the better -strategy to use in any particular case, based on the explanations below. - - When we speak of free software, we are referring to freedom of use, -not price. Our General Public Licenses are designed to make sure that -you have the freedom to distribute copies of free software (and charge -for this service if you wish); that you receive source code or can get -it if you want it; that you can change the software and use pieces of -it in new free programs; and that you are informed that you can do -these things. - - To protect your rights, we need to make restrictions that forbid -distributors to deny you these rights or to ask you to surrender these -rights. These restrictions translate to certain responsibilities for -you if you distribute copies of the library or if you modify it. - - For example, if you distribute copies of the library, whether gratis -or for a fee, you must give the recipients all the rights that we gave -you. You must make sure that they, too, receive or can get the source -code. If you link other code with the library, you must provide -complete object files to the recipients, so that they can relink them -with the library after making changes to the library and recompiling -it. And you must show them these terms so they know their rights. - - We protect your rights with a two-step method: (1) we copyright the -library, and (2) we offer you this license, which gives you legal -permission to copy, distribute and/or modify the library. - - To protect each distributor, we want to make it very clear that -there is no warranty for the free library. Also, if the library is -modified by someone else and passed on, the recipients should know -that what they have is not the original version, so that the original -author's reputation will not be affected by problems that might be -introduced by others. - - Finally, software patents pose a constant threat to the existence of -any free program. We wish to make sure that a company cannot -effectively restrict the users of a free program by obtaining a -restrictive license from a patent holder. Therefore, we insist that -any patent license obtained for a version of the library must be -consistent with the full freedom of use specified in this license. - - Most GNU software, including some libraries, is covered by the -ordinary GNU General Public License. This license, the GNU Lesser -General Public License, applies to certain designated libraries, and -is quite different from the ordinary General Public License. We use -this license for certain libraries in order to permit linking those -libraries into non-free programs. - - When a program is linked with a library, whether statically or using -a shared library, the combination of the two is legally speaking a -combined work, a derivative of the original library. The ordinary -General Public License therefore permits such linking only if the -entire combination fits its criteria of freedom. The Lesser General -Public License permits more lax criteria for linking other code with -the library. - - We call this license the "Lesser" General Public License because it -does Less to protect the user's freedom than the ordinary General -Public License. It also provides other free software developers Less -of an advantage over competing non-free programs. These disadvantages -are the reason we use the ordinary General Public License for many -libraries. However, the Lesser license provides advantages in certain -special circumstances. - - For example, on rare occasions, there may be a special need to -encourage the widest possible use of a certain library, so that it becomes -a de-facto standard. To achieve this, non-free programs must be -allowed to use the library. A more frequent case is that a free -library does the same job as widely used non-free libraries. In this -case, there is little to gain by limiting the free library to free -software only, so we use the Lesser General Public License. - - In other cases, permission to use a particular library in non-free -programs enables a greater number of people to use a large body of -free software. For example, permission to use the GNU C Library in -non-free programs enables many more people to use the whole GNU -operating system, as well as its variant, the GNU/Linux operating -system. - - Although the Lesser General Public License is Less protective of the -users' freedom, it does ensure that the user of a program that is -linked with the Library has the freedom and the wherewithal to run -that program using a modified version of the Library. - - The precise terms and conditions for copying, distribution and -modification follow. Pay close attention to the difference between a -"work based on the library" and a "work that uses the library". The -former contains code derived from the library, whereas the latter must -be combined with the library in order to run. - - GNU LESSER GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License Agreement applies to any software library or other -program which contains a notice placed by the copyright holder or -other authorized party saying it may be distributed under the terms of -this Lesser General Public License (also called "this License"). -Each licensee is addressed as "you". - - A "library" means a collection of software functions and/or data -prepared so as to be conveniently linked with application programs -(which use some of those functions and data) to form executables. - - The "Library", below, refers to any such software library or work -which has been distributed under these terms. A "work based on the -Library" means either the Library or any derivative work under -copyright law: that is to say, a work containing the Library or a -portion of it, either verbatim or with modifications and/or translated -straightforwardly into another language. (Hereinafter, translation is -included without limitation in the term "modification".) - - "Source code" for a work means the preferred form of the work for -making modifications to it. For a library, complete source code means -all the source code for all modules it contains, plus any associated -interface definition files, plus the scripts used to control compilation -and installation of the library. - - Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running a program using the Library is not restricted, and output from -such a program is covered only if its contents constitute a work based -on the Library (independent of the use of the Library in a tool for -writing it). Whether that is true depends on what the Library does -and what the program that uses the Library does. - - 1. You may copy and distribute verbatim copies of the Library's -complete source code as you receive it, in any medium, provided that -you conspicuously and appropriately publish on each copy an -appropriate copyright notice and disclaimer of warranty; keep intact -all the notices that refer to this License and to the absence of any -warranty; and distribute a copy of this License along with the -Library. - - You may charge a fee for the physical act of transferring a copy, -and you may at your option offer warranty protection in exchange for a -fee. - - 2. You may modify your copy or copies of the Library or any portion -of it, thus forming a work based on the Library, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) The modified work must itself be a software library. - - b) You must cause the files modified to carry prominent notices - stating that you changed the files and the date of any change. - - c) You must cause the whole of the work to be licensed at no - charge to all third parties under the terms of this License. - - d) If a facility in the modified Library refers to a function or a - table of data to be supplied by an application program that uses - the facility, other than as an argument passed when the facility - is invoked, then you must make a good faith effort to ensure that, - in the event an application does not supply such function or - table, the facility still operates, and performs whatever part of - its purpose remains meaningful. - - (For example, a function in a library to compute square roots has - a purpose that is entirely well-defined independent of the - application. Therefore, Subsection 2d requires that any - application-supplied function or table used by this function must - be optional: if the application does not supply it, the square - root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Library, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Library, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote -it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Library. - -In addition, mere aggregation of another work not based on the Library -with the Library (or with a work based on the Library) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may opt to apply the terms of the ordinary GNU General Public -License instead of this License to a given copy of the Library. To do -this, you must alter all the notices that refer to this License, so -that they refer to the ordinary GNU General Public License, version 2, -instead of to this License. (If a newer version than version 2 of the -ordinary GNU General Public License has appeared, then you can specify -that version instead if you wish.) Do not make any other change in -these notices. - - Once this change is made in a given copy, it is irreversible for -that copy, so the ordinary GNU General Public License applies to all -subsequent copies and derivative works made from that copy. - - This option is useful when you wish to copy part of the code of -the Library into a program that is not a library. - - 4. You may copy and distribute the Library (or a portion or -derivative of it, under Section 2) in object code or executable form -under the terms of Sections 1 and 2 above provided that you accompany -it with the complete corresponding machine-readable source code, which -must be distributed under the terms of Sections 1 and 2 above on a -medium customarily used for software interchange. - - If distribution of object code is made by offering access to copy -from a designated place, then offering equivalent access to copy the -source code from the same place satisfies the requirement to -distribute the source code, even though third parties are not -compelled to copy the source along with the object code. - - 5. A program that contains no derivative of any portion of the -Library, but is designed to work with the Library by being compiled or -linked with it, is called a "work that uses the Library". Such a -work, in isolation, is not a derivative work of the Library, and -therefore falls outside the scope of this License. - - However, linking a "work that uses the Library" with the Library -creates an executable that is a derivative of the Library (because it -contains portions of the Library), rather than a "work that uses the -library". The executable is therefore covered by this License. -Section 6 states terms for distribution of such executables. - - When a "work that uses the Library" uses material from a header file -that is part of the Library, the object code for the work may be a -derivative work of the Library even though the source code is not. -Whether this is true is especially significant if the work can be -linked without the Library, or if the work is itself a library. The -threshold for this to be true is not precisely defined by law. - - If such an object file uses only numerical parameters, data -structure layouts and accessors, and small macros and small inline -functions (ten lines or less in length), then the use of the object -file is unrestricted, regardless of whether it is legally a derivative -work. (Executables containing this object code plus portions of the -Library will still fall under Section 6.) - - Otherwise, if the work is a derivative of the Library, you may -distribute the object code for the work under the terms of Section 6. -Any executables containing that work also fall under Section 6, -whether or not they are linked directly with the Library itself. - - 6. As an exception to the Sections above, you may also combine or -link a "work that uses the Library" with the Library to produce a -work containing portions of the Library, and distribute that work -under terms of your choice, provided that the terms permit -modification of the work for the customer's own use and reverse -engineering for debugging such modifications. - - You must give prominent notice with each copy of the work that the -Library is used in it and that the Library and its use are covered by -this License. You must supply a copy of this License. If the work -during execution displays copyright notices, you must include the -copyright notice for the Library among them, as well as a reference -directing the user to the copy of this License. Also, you must do one -of these things: - - a) Accompany the work with the complete corresponding - machine-readable source code for the Library including whatever - changes were used in the work (which must be distributed under - Sections 1 and 2 above); and, if the work is an executable linked - with the Library, with the complete machine-readable "work that - uses the Library", as object code and/or source code, so that the - user can modify the Library and then relink to produce a modified - executable containing the modified Library. (It is understood - that the user who changes the contents of definitions files in the - Library will not necessarily be able to recompile the application - to use the modified definitions.) - - b) Use a suitable shared library mechanism for linking with the - Library. A suitable mechanism is one that (1) uses at run time a - copy of the library already present on the user's computer system, - rather than copying library functions into the executable, and (2) - will operate properly with a modified version of the library, if - the user installs one, as long as the modified version is - interface-compatible with the version that the work was made with. - - c) Accompany the work with a written offer, valid for at - least three years, to give the same user the materials - specified in Subsection 6a, above, for a charge no more - than the cost of performing this distribution. - - d) If distribution of the work is made by offering access to copy - from a designated place, offer equivalent access to copy the above - specified materials from the same place. - - e) Verify that the user has already received a copy of these - materials or that you have already sent this user a copy. - - For an executable, the required form of the "work that uses the -Library" must include any data and utility programs needed for -reproducing the executable from it. However, as a special exception, -the materials to be distributed need not include anything that is -normally distributed (in either source or binary form) with the major -components (compiler, kernel, and so on) of the operating system on -which the executable runs, unless that component itself accompanies -the executable. - - It may happen that this requirement contradicts the license -restrictions of other proprietary libraries that do not normally -accompany the operating system. Such a contradiction means you cannot -use both them and the Library together in an executable that you -distribute. - - 7. You may place library facilities that are a work based on the -Library side-by-side in a single library together with other library -facilities not covered by this License, and distribute such a combined -library, provided that the separate distribution of the work based on -the Library and of the other library facilities is otherwise -permitted, and provided that you do these two things: - - a) Accompany the combined library with a copy of the same work - based on the Library, uncombined with any other library - facilities. This must be distributed under the terms of the - Sections above. - - b) Give prominent notice with the combined library of the fact - that part of it is a work based on the Library, and explaining - where to find the accompanying uncombined form of the same work. - - 8. You may not copy, modify, sublicense, link with, or distribute -the Library except as expressly provided under this License. Any -attempt otherwise to copy, modify, sublicense, link with, or -distribute the Library is void, and will automatically terminate your -rights under this License. However, parties who have received copies, -or rights, from you under this License will not have their licenses -terminated so long as such parties remain in full compliance. - - 9. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Library or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Library (or any work based on the -Library), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Library or works based on it. - - 10. Each time you redistribute the Library (or any work based on the -Library), the recipient automatically receives a license from the -original licensor to copy, distribute, link with or modify the Library -subject to these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties with -this License. - - 11. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Library at all. For example, if a patent -license would not permit royalty-free redistribution of the Library by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Library. - -If any portion of this section is held invalid or unenforceable under any -particular circumstance, the balance of the section is intended to apply, -and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 12. If the distribution and/or use of the Library is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Library under this License may add -an explicit geographical distribution limitation excluding those countries, -so that distribution is permitted only in or among countries not thus -excluded. In such case, this License incorporates the limitation as if -written in the body of this License. - - 13. The Free Software Foundation may publish revised and/or new -versions of the Lesser General Public License from time to time. -Such new versions will be similar in spirit to the present version, -but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library -specifies a version number of this License which applies to it and -"any later version", you have the option of following the terms and -conditions either of that version or of any later version published by -the Free Software Foundation. If the Library does not specify a -license version number, you may choose any version ever published by -the Free Software Foundation. - - 14. If you wish to incorporate parts of the Library into other free -programs whose distribution conditions are incompatible with these, -write to the author to ask for permission. For software which is -copyrighted by the Free Software Foundation, write to the Free -Software Foundation; we sometimes make exceptions for this. Our -decision will be guided by the two goals of preserving the free status -of all derivatives of our free software and of promoting the sharing -and reuse of software generally. - - NO WARRANTY - - 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO -WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. -EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR -OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY -KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE -LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME -THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN -WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY -AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU -FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR -CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE -LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING -RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A -FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF -SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Libraries - - If you develop a new library, and you want it to be of the greatest -possible use to the public, we recommend making it free software that -everyone can redistribute and change. You can do so by permitting -redistribution under these terms (or, alternatively, under the terms of the -ordinary General Public License). - - To apply these terms, attach the following notices to the library. It is -safest to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least the -"copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - -Also add information on how to contact you by electronic and paper mail. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the library, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the - library `Frob' (a library for tweaking knobs) written by James Random Hacker. - - , 1 April 1990 - Ty Coon, President of Vice - -That's all there is to it! - - diff --git a/fedora/default/docs/license/thirdParty/gnu-getopt/COPYING.LIB b/fedora/default/docs/license/thirdParty/gnu-getopt/COPYING.LIB deleted file mode 100644 index 161a3d1..0000000 --- a/fedora/default/docs/license/thirdParty/gnu-getopt/COPYING.LIB +++ /dev/null @@ -1,482 +0,0 @@ - GNU LIBRARY GENERAL PUBLIC LICENSE - Version 2, June 1991 - - Copyright (C) 1991 Free Software Foundation, Inc. - 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - -[This is the first released version of the library GPL. It is - numbered 2 because it goes with version 2 of the ordinary GPL.] - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -Licenses are intended to guarantee your freedom to share and change -free software--to make sure the software is free for all its users. - - This license, the Library General Public License, applies to some -specially designated Free Software Foundation software, and to any -other libraries whose authors decide to use it. You can use it for -your libraries, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -this service if you wish), that you receive source code or can get it -if you want it, that you can change the software or use pieces of it -in new free programs; and that you know you can do these things. - - To protect your rights, we need to make restrictions that forbid -anyone to deny you these rights or to ask you to surrender the rights. -These restrictions translate to certain responsibilities for you if -you distribute copies of the library, or if you modify it. - - For example, if you distribute copies of the library, whether gratis -or for a fee, you must give the recipients all the rights that we gave -you. You must make sure that they, too, receive or can get the source -code. If you link a program with the library, you must provide -complete object files to the recipients so that they can relink them -with the library, after making changes to the library and recompiling -it. And you must show them these terms so they know their rights. - - Our method of protecting your rights has two steps: (1) copyright -the library, and (2) offer you this license which gives you legal -permission to copy, distribute and/or modify the library. - - Also, for each distributor's protection, we want to make certain -that everyone understands that there is no warranty for this free -library. If the library is modified by someone else and passed on, we -want its recipients to know that what they have is not the original -version, so that any problems introduced by others will not reflect on -the original authors' reputations. - - Finally, any free program is threatened constantly by software -patents. We wish to avoid the danger that companies distributing free -software will individually obtain patent licenses, thus in effect -transforming the program into proprietary software. To prevent this, -we have made it clear that any patent must be licensed for everyone's -free use or not licensed at all. - - Most GNU software, including some libraries, is covered by the ordinary -GNU General Public License, which was designed for utility programs. This -license, the GNU Library General Public License, applies to certain -designated libraries. This license is quite different from the ordinary -one; be sure to read it in full, and don't assume that anything in it is -the same as in the ordinary license. - - The reason we have a separate public license for some libraries is that -they blur the distinction we usually make between modifying or adding to a -program and simply using it. Linking a program with a library, without -changing the library, is in some sense simply using the library, and is -analogous to running a utility program or application program. However, in -a textual and legal sense, the linked executable is a combined work, a -derivative of the original library, and the ordinary General Public License -treats it as such. - - Because of this blurred distinction, using the ordinary General -Public License for libraries did not effectively promote software -sharing, because most developers did not use the libraries. We -concluded that weaker conditions might promote sharing better. - - However, unrestricted linking of non-free programs would deprive the -users of those programs of all benefit from the free status of the -libraries themselves. This Library General Public License is intended to -permit developers of non-free programs to use free libraries, while -preserving your freedom as a user of such programs to change the free -libraries that are incorporated in them. (We have not seen how to achieve -this as regards changes in header files, but we have achieved it as regards -changes in the actual functions of the Library.) The hope is that this -will lead to faster development of free libraries. - - The precise terms and conditions for copying, distribution and -modification follow. Pay close attention to the difference between a -"work based on the library" and a "work that uses the library". The -former contains code derived from the library, while the latter only -works together with the library. - - Note that it is possible for a library to be covered by the ordinary -General Public License rather than by this special one. - - GNU LIBRARY GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License Agreement applies to any software library which -contains a notice placed by the copyright holder or other authorized -party saying it may be distributed under the terms of this Library -General Public License (also called "this License"). Each licensee is -addressed as "you". - - A "library" means a collection of software functions and/or data -prepared so as to be conveniently linked with application programs -(which use some of those functions and data) to form executables. - - The "Library", below, refers to any such software library or work -which has been distributed under these terms. A "work based on the -Library" means either the Library or any derivative work under -copyright law: that is to say, a work containing the Library or a -portion of it, either verbatim or with modifications and/or translated -straightforwardly into another language. (Hereinafter, translation is -included without limitation in the term "modification".) - - "Source code" for a work means the preferred form of the work for -making modifications to it. For a library, complete source code means -all the source code for all modules it contains, plus any associated -interface definition files, plus the scripts used to control compilation -and installation of the library. - - Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running a program using the Library is not restricted, and output from -such a program is covered only if its contents constitute a work based -on the Library (independent of the use of the Library in a tool for -writing it). Whether that is true depends on what the Library does -and what the program that uses the Library does. - - 1. You may copy and distribute verbatim copies of the Library's -complete source code as you receive it, in any medium, provided that -you conspicuously and appropriately publish on each copy an -appropriate copyright notice and disclaimer of warranty; keep intact -all the notices that refer to this License and to the absence of any -warranty; and distribute a copy of this License along with the -Library. - - You may charge a fee for the physical act of transferring a copy, -and you may at your option offer warranty protection in exchange for a -fee. - - 2. You may modify your copy or copies of the Library or any portion -of it, thus forming a work based on the Library, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) The modified work must itself be a software library. - - b) You must cause the files modified to carry prominent notices - stating that you changed the files and the date of any change. - - c) You must cause the whole of the work to be licensed at no - charge to all third parties under the terms of this License. - - d) If a facility in the modified Library refers to a function or a - table of data to be supplied by an application program that uses - the facility, other than as an argument passed when the facility - is invoked, then you must make a good faith effort to ensure that, - in the event an application does not supply such function or - table, the facility still operates, and performs whatever part of - its purpose remains meaningful. - - (For example, a function in a library to compute square roots has - a purpose that is entirely well-defined independent of the - application. Therefore, Subsection 2d requires that any - application-supplied function or table used by this function must - be optional: if the application does not supply it, the square - root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Library, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Library, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote -it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Library. - -In addition, mere aggregation of another work not based on the Library -with the Library (or with a work based on the Library) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may opt to apply the terms of the ordinary GNU General Public -License instead of this License to a given copy of the Library. To do -this, you must alter all the notices that refer to this License, so -that they refer to the ordinary GNU General Public License, version 2, -instead of to this License. (If a newer version than version 2 of the -ordinary GNU General Public License has appeared, then you can specify -that version instead if you wish.) Do not make any other change in -these notices. - - Once this change is made in a given copy, it is irreversible for -that copy, so the ordinary GNU General Public License applies to all -subsequent copies and derivative works made from that copy. - - This option is useful when you wish to copy part of the code of -the Library into a program that is not a library. - - 4. You may copy and distribute the Library (or a portion or -derivative of it, under Section 2) in object code or executable form -under the terms of Sections 1 and 2 above provided that you accompany -it with the complete corresponding machine-readable source code, which -must be distributed under the terms of Sections 1 and 2 above on a -medium customarily used for software interchange. - - If distribution of object code is made by offering access to copy -from a designated place, then offering equivalent access to copy the -source code from the same place satisfies the requirement to -distribute the source code, even though third parties are not -compelled to copy the source along with the object code. - - 5. A program that contains no derivative of any portion of the -Library, but is designed to work with the Library by being compiled or -linked with it, is called a "work that uses the Library". Such a -work, in isolation, is not a derivative work of the Library, and -therefore falls outside the scope of this License. - - However, linking a "work that uses the Library" with the Library -creates an executable that is a derivative of the Library (because it -contains portions of the Library), rather than a "work that uses the -library". The executable is therefore covered by this License. -Section 6 states terms for distribution of such executables. - - When a "work that uses the Library" uses material from a header file -that is part of the Library, the object code for the work may be a -derivative work of the Library even though the source code is not. -Whether this is true is especially significant if the work can be -linked without the Library, or if the work is itself a library. The -threshold for this to be true is not precisely defined by law. - - If such an object file uses only numerical parameters, data -structure layouts and accessors, and small macros and small inline -functions (ten lines or less in length), then the use of the object -file is unrestricted, regardless of whether it is legally a derivative -work. (Executables containing this object code plus portions of the -Library will still fall under Section 6.) - - Otherwise, if the work is a derivative of the Library, you may -distribute the object code for the work under the terms of Section 6. -Any executables containing that work also fall under Section 6, -whether or not they are linked directly with the Library itself. - - 6. As an exception to the Sections above, you may also compile or -link a "work that uses the Library" with the Library to produce a -work containing portions of the Library, and distribute that work -under terms of your choice, provided that the terms permit -modification of the work for the customer's own use and reverse -engineering for debugging such modifications. - - You must give prominent notice with each copy of the work that the -Library is used in it and that the Library and its use are covered by -this License. You must supply a copy of this License. If the work -during execution displays copyright notices, you must include the -copyright notice for the Library among them, as well as a reference -directing the user to the copy of this License. Also, you must do one -of these things: - - a) Accompany the work with the complete corresponding - machine-readable source code for the Library including whatever - changes were used in the work (which must be distributed under - Sections 1 and 2 above); and, if the work is an executable linked - with the Library, with the complete machine-readable "work that - uses the Library", as object code and/or source code, so that the - user can modify the Library and then relink to produce a modified - executable containing the modified Library. (It is understood - that the user who changes the contents of definitions files in the - Library will not necessarily be able to recompile the application - to use the modified definitions.) - - b) Accompany the work with a written offer, valid for at - least three years, to give the same user the materials - specified in Subsection 6a, above, for a charge no more - than the cost of performing this distribution. - - c) If distribution of the work is made by offering access to copy - from a designated place, offer equivalent access to copy the above - specified materials from the same place. - - d) Verify that the user has already received a copy of these - materials or that you have already sent this user a copy. - - For an executable, the required form of the "work that uses the -Library" must include any data and utility programs needed for -reproducing the executable from it. However, as a special exception, -the source code distributed need not include anything that is normally -distributed (in either source or binary form) with the major -components (compiler, kernel, and so on) of the operating system on -which the executable runs, unless that component itself accompanies -the executable. - - It may happen that this requirement contradicts the license -restrictions of other proprietary libraries that do not normally -accompany the operating system. Such a contradiction means you cannot -use both them and the Library together in an executable that you -distribute. - - 7. You may place library facilities that are a work based on the -Library side-by-side in a single library together with other library -facilities not covered by this License, and distribute such a combined -library, provided that the separate distribution of the work based on -the Library and of the other library facilities is otherwise -permitted, and provided that you do these two things: - - a) Accompany the combined library with a copy of the same work - based on the Library, uncombined with any other library - facilities. This must be distributed under the terms of the - Sections above. - - b) Give prominent notice with the combined library of the fact - that part of it is a work based on the Library, and explaining - where to find the accompanying uncombined form of the same work. - - 8. You may not copy, modify, sublicense, link with, or distribute -the Library except as expressly provided under this License. Any -attempt otherwise to copy, modify, sublicense, link with, or -distribute the Library is void, and will automatically terminate your -rights under this License. However, parties who have received copies, -or rights, from you under this License will not have their licenses -terminated so long as such parties remain in full compliance. - - 9. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Library or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Library (or any work based on the -Library), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Library or works based on it. - - 10. Each time you redistribute the Library (or any work based on the -Library), the recipient automatically receives a license from the -original licensor to copy, distribute, link with or modify the Library -subject to these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties to -this License. - - 11. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Library at all. For example, if a patent -license would not permit royalty-free redistribution of the Library by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Library. - -If any portion of this section is held invalid or unenforceable under any -particular circumstance, the balance of the section is intended to apply, -and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 12. If the distribution and/or use of the Library is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Library under this License may add -an explicit geographical distribution limitation excluding those countries, -so that distribution is permitted only in or among countries not thus -excluded. In such case, this License incorporates the limitation as if -written in the body of this License. - - 13. The Free Software Foundation may publish revised and/or new -versions of the Library General Public License from time to time. -Such new versions will be similar in spirit to the present version, -but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library -specifies a version number of this License which applies to it and -"any later version", you have the option of following the terms and -conditions either of that version or of any later version published by -the Free Software Foundation. If the Library does not specify a -license version number, you may choose any version ever published by -the Free Software Foundation. - - 14. If you wish to incorporate parts of the Library into other free -programs whose distribution conditions are incompatible with these, -write to the author to ask for permission. For software which is -copyrighted by the Free Software Foundation, write to the Free -Software Foundation; we sometimes make exceptions for this. Our -decision will be guided by the two goals of preserving the free status -of all derivatives of our free software and of promoting the sharing -and reuse of software generally. - - NO WARRANTY - - 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO -WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. -EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR -OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY -KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE -LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME -THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN -WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY -AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU -FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR -CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE -LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING -RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A -FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF -SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGES. - - END OF TERMS AND CONDITIONS - - Appendix: How to Apply These Terms to Your New Libraries - - If you develop a new library, and you want it to be of the greatest -possible use to the public, we recommend making it free software that -everyone can redistribute and change. You can do so by permitting -redistribution under these terms (or, alternatively, under the terms of the -ordinary General Public License). - - To apply these terms, attach the following notices to the library. It is -safest to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least the -"copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Library General Public - License as published by the Free Software Foundation; either - version 2 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Library General Public License for more details. - - You should have received a copy of the GNU Library General Public - License along with this library; if not, write to the Free - Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, - MA 02111-1307, USA - -Also add information on how to contact you by electronic and paper mail. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the library, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the - library `Frob' (a library for tweaking knobs) written by James Random Hacker. - - , 1 April 1990 - Ty Coon, President of Vice - -That's all there is to it! diff --git a/fedora/default/docs/license/thirdParty/gnu-trove/LICENSE.txt b/fedora/default/docs/license/thirdParty/gnu-trove/LICENSE.txt deleted file mode 100644 index b1e3f5a..0000000 --- a/fedora/default/docs/license/thirdParty/gnu-trove/LICENSE.txt +++ /dev/null @@ -1,504 +0,0 @@ - GNU LESSER GENERAL PUBLIC LICENSE - Version 2.1, February 1999 - - Copyright (C) 1991, 1999 Free Software Foundation, Inc. - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - -[This is the first released version of the Lesser GPL. It also counts - as the successor of the GNU Library Public License, version 2, hence - the version number 2.1.] - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -Licenses are intended to guarantee your freedom to share and change -free software--to make sure the software is free for all its users. - - This license, the Lesser General Public License, applies to some -specially designated software packages--typically libraries--of the -Free Software Foundation and other authors who decide to use it. You -can use it too, but we suggest you first think carefully about whether -this license or the ordinary General Public License is the better -strategy to use in any particular case, based on the explanations below. - - When we speak of free software, we are referring to freedom of use, -not price. Our General Public Licenses are designed to make sure that -you have the freedom to distribute copies of free software (and charge -for this service if you wish); that you receive source code or can get -it if you want it; that you can change the software and use pieces of -it in new free programs; and that you are informed that you can do -these things. - - To protect your rights, we need to make restrictions that forbid -distributors to deny you these rights or to ask you to surrender these -rights. These restrictions translate to certain responsibilities for -you if you distribute copies of the library or if you modify it. - - For example, if you distribute copies of the library, whether gratis -or for a fee, you must give the recipients all the rights that we gave -you. You must make sure that they, too, receive or can get the source -code. If you link other code with the library, you must provide -complete object files to the recipients, so that they can relink them -with the library after making changes to the library and recompiling -it. And you must show them these terms so they know their rights. - - We protect your rights with a two-step method: (1) we copyright the -library, and (2) we offer you this license, which gives you legal -permission to copy, distribute and/or modify the library. - - To protect each distributor, we want to make it very clear that -there is no warranty for the free library. Also, if the library is -modified by someone else and passed on, the recipients should know -that what they have is not the original version, so that the original -author's reputation will not be affected by problems that might be -introduced by others. - - Finally, software patents pose a constant threat to the existence of -any free program. We wish to make sure that a company cannot -effectively restrict the users of a free program by obtaining a -restrictive license from a patent holder. Therefore, we insist that -any patent license obtained for a version of the library must be -consistent with the full freedom of use specified in this license. - - Most GNU software, including some libraries, is covered by the -ordinary GNU General Public License. This license, the GNU Lesser -General Public License, applies to certain designated libraries, and -is quite different from the ordinary General Public License. We use -this license for certain libraries in order to permit linking those -libraries into non-free programs. - - When a program is linked with a library, whether statically or using -a shared library, the combination of the two is legally speaking a -combined work, a derivative of the original library. The ordinary -General Public License therefore permits such linking only if the -entire combination fits its criteria of freedom. The Lesser General -Public License permits more lax criteria for linking other code with -the library. - - We call this license the "Lesser" General Public License because it -does Less to protect the user's freedom than the ordinary General -Public License. It also provides other free software developers Less -of an advantage over competing non-free programs. These disadvantages -are the reason we use the ordinary General Public License for many -libraries. However, the Lesser license provides advantages in certain -special circumstances. - - For example, on rare occasions, there may be a special need to -encourage the widest possible use of a certain library, so that it becomes -a de-facto standard. To achieve this, non-free programs must be -allowed to use the library. A more frequent case is that a free -library does the same job as widely used non-free libraries. In this -case, there is little to gain by limiting the free library to free -software only, so we use the Lesser General Public License. - - In other cases, permission to use a particular library in non-free -programs enables a greater number of people to use a large body of -free software. For example, permission to use the GNU C Library in -non-free programs enables many more people to use the whole GNU -operating system, as well as its variant, the GNU/Linux operating -system. - - Although the Lesser General Public License is Less protective of the -users' freedom, it does ensure that the user of a program that is -linked with the Library has the freedom and the wherewithal to run -that program using a modified version of the Library. - - The precise terms and conditions for copying, distribution and -modification follow. Pay close attention to the difference between a -"work based on the library" and a "work that uses the library". The -former contains code derived from the library, whereas the latter must -be combined with the library in order to run. - - GNU LESSER GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License Agreement applies to any software library or other -program which contains a notice placed by the copyright holder or -other authorized party saying it may be distributed under the terms of -this Lesser General Public License (also called "this License"). -Each licensee is addressed as "you". - - A "library" means a collection of software functions and/or data -prepared so as to be conveniently linked with application programs -(which use some of those functions and data) to form executables. - - The "Library", below, refers to any such software library or work -which has been distributed under these terms. A "work based on the -Library" means either the Library or any derivative work under -copyright law: that is to say, a work containing the Library or a -portion of it, either verbatim or with modifications and/or translated -straightforwardly into another language. (Hereinafter, translation is -included without limitation in the term "modification".) - - "Source code" for a work means the preferred form of the work for -making modifications to it. For a library, complete source code means -all the source code for all modules it contains, plus any associated -interface definition files, plus the scripts used to control compilation -and installation of the library. - - Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running a program using the Library is not restricted, and output from -such a program is covered only if its contents constitute a work based -on the Library (independent of the use of the Library in a tool for -writing it). Whether that is true depends on what the Library does -and what the program that uses the Library does. - - 1. You may copy and distribute verbatim copies of the Library's -complete source code as you receive it, in any medium, provided that -you conspicuously and appropriately publish on each copy an -appropriate copyright notice and disclaimer of warranty; keep intact -all the notices that refer to this License and to the absence of any -warranty; and distribute a copy of this License along with the -Library. - - You may charge a fee for the physical act of transferring a copy, -and you may at your option offer warranty protection in exchange for a -fee. - - 2. You may modify your copy or copies of the Library or any portion -of it, thus forming a work based on the Library, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) The modified work must itself be a software library. - - b) You must cause the files modified to carry prominent notices - stating that you changed the files and the date of any change. - - c) You must cause the whole of the work to be licensed at no - charge to all third parties under the terms of this License. - - d) If a facility in the modified Library refers to a function or a - table of data to be supplied by an application program that uses - the facility, other than as an argument passed when the facility - is invoked, then you must make a good faith effort to ensure that, - in the event an application does not supply such function or - table, the facility still operates, and performs whatever part of - its purpose remains meaningful. - - (For example, a function in a library to compute square roots has - a purpose that is entirely well-defined independent of the - application. Therefore, Subsection 2d requires that any - application-supplied function or table used by this function must - be optional: if the application does not supply it, the square - root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Library, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Library, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote -it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Library. - -In addition, mere aggregation of another work not based on the Library -with the Library (or with a work based on the Library) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may opt to apply the terms of the ordinary GNU General Public -License instead of this License to a given copy of the Library. To do -this, you must alter all the notices that refer to this License, so -that they refer to the ordinary GNU General Public License, version 2, -instead of to this License. (If a newer version than version 2 of the -ordinary GNU General Public License has appeared, then you can specify -that version instead if you wish.) Do not make any other change in -these notices. - - Once this change is made in a given copy, it is irreversible for -that copy, so the ordinary GNU General Public License applies to all -subsequent copies and derivative works made from that copy. - - This option is useful when you wish to copy part of the code of -the Library into a program that is not a library. - - 4. You may copy and distribute the Library (or a portion or -derivative of it, under Section 2) in object code or executable form -under the terms of Sections 1 and 2 above provided that you accompany -it with the complete corresponding machine-readable source code, which -must be distributed under the terms of Sections 1 and 2 above on a -medium customarily used for software interchange. - - If distribution of object code is made by offering access to copy -from a designated place, then offering equivalent access to copy the -source code from the same place satisfies the requirement to -distribute the source code, even though third parties are not -compelled to copy the source along with the object code. - - 5. A program that contains no derivative of any portion of the -Library, but is designed to work with the Library by being compiled or -linked with it, is called a "work that uses the Library". Such a -work, in isolation, is not a derivative work of the Library, and -therefore falls outside the scope of this License. - - However, linking a "work that uses the Library" with the Library -creates an executable that is a derivative of the Library (because it -contains portions of the Library), rather than a "work that uses the -library". The executable is therefore covered by this License. -Section 6 states terms for distribution of such executables. - - When a "work that uses the Library" uses material from a header file -that is part of the Library, the object code for the work may be a -derivative work of the Library even though the source code is not. -Whether this is true is especially significant if the work can be -linked without the Library, or if the work is itself a library. The -threshold for this to be true is not precisely defined by law. - - If such an object file uses only numerical parameters, data -structure layouts and accessors, and small macros and small inline -functions (ten lines or less in length), then the use of the object -file is unrestricted, regardless of whether it is legally a derivative -work. (Executables containing this object code plus portions of the -Library will still fall under Section 6.) - - Otherwise, if the work is a derivative of the Library, you may -distribute the object code for the work under the terms of Section 6. -Any executables containing that work also fall under Section 6, -whether or not they are linked directly with the Library itself. - - 6. As an exception to the Sections above, you may also combine or -link a "work that uses the Library" with the Library to produce a -work containing portions of the Library, and distribute that work -under terms of your choice, provided that the terms permit -modification of the work for the customer's own use and reverse -engineering for debugging such modifications. - - You must give prominent notice with each copy of the work that the -Library is used in it and that the Library and its use are covered by -this License. You must supply a copy of this License. If the work -during execution displays copyright notices, you must include the -copyright notice for the Library among them, as well as a reference -directing the user to the copy of this License. Also, you must do one -of these things: - - a) Accompany the work with the complete corresponding - machine-readable source code for the Library including whatever - changes were used in the work (which must be distributed under - Sections 1 and 2 above); and, if the work is an executable linked - with the Library, with the complete machine-readable "work that - uses the Library", as object code and/or source code, so that the - user can modify the Library and then relink to produce a modified - executable containing the modified Library. (It is understood - that the user who changes the contents of definitions files in the - Library will not necessarily be able to recompile the application - to use the modified definitions.) - - b) Use a suitable shared library mechanism for linking with the - Library. A suitable mechanism is one that (1) uses at run time a - copy of the library already present on the user's computer system, - rather than copying library functions into the executable, and (2) - will operate properly with a modified version of the library, if - the user installs one, as long as the modified version is - interface-compatible with the version that the work was made with. - - c) Accompany the work with a written offer, valid for at - least three years, to give the same user the materials - specified in Subsection 6a, above, for a charge no more - than the cost of performing this distribution. - - d) If distribution of the work is made by offering access to copy - from a designated place, offer equivalent access to copy the above - specified materials from the same place. - - e) Verify that the user has already received a copy of these - materials or that you have already sent this user a copy. - - For an executable, the required form of the "work that uses the -Library" must include any data and utility programs needed for -reproducing the executable from it. However, as a special exception, -the materials to be distributed need not include anything that is -normally distributed (in either source or binary form) with the major -components (compiler, kernel, and so on) of the operating system on -which the executable runs, unless that component itself accompanies -the executable. - - It may happen that this requirement contradicts the license -restrictions of other proprietary libraries that do not normally -accompany the operating system. Such a contradiction means you cannot -use both them and the Library together in an executable that you -distribute. - - 7. You may place library facilities that are a work based on the -Library side-by-side in a single library together with other library -facilities not covered by this License, and distribute such a combined -library, provided that the separate distribution of the work based on -the Library and of the other library facilities is otherwise -permitted, and provided that you do these two things: - - a) Accompany the combined library with a copy of the same work - based on the Library, uncombined with any other library - facilities. This must be distributed under the terms of the - Sections above. - - b) Give prominent notice with the combined library of the fact - that part of it is a work based on the Library, and explaining - where to find the accompanying uncombined form of the same work. - - 8. You may not copy, modify, sublicense, link with, or distribute -the Library except as expressly provided under this License. Any -attempt otherwise to copy, modify, sublicense, link with, or -distribute the Library is void, and will automatically terminate your -rights under this License. However, parties who have received copies, -or rights, from you under this License will not have their licenses -terminated so long as such parties remain in full compliance. - - 9. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Library or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Library (or any work based on the -Library), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Library or works based on it. - - 10. Each time you redistribute the Library (or any work based on the -Library), the recipient automatically receives a license from the -original licensor to copy, distribute, link with or modify the Library -subject to these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties with -this License. - - 11. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Library at all. For example, if a patent -license would not permit royalty-free redistribution of the Library by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Library. - -If any portion of this section is held invalid or unenforceable under any -particular circumstance, the balance of the section is intended to apply, -and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 12. If the distribution and/or use of the Library is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Library under this License may add -an explicit geographical distribution limitation excluding those countries, -so that distribution is permitted only in or among countries not thus -excluded. In such case, this License incorporates the limitation as if -written in the body of this License. - - 13. The Free Software Foundation may publish revised and/or new -versions of the Lesser General Public License from time to time. -Such new versions will be similar in spirit to the present version, -but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library -specifies a version number of this License which applies to it and -"any later version", you have the option of following the terms and -conditions either of that version or of any later version published by -the Free Software Foundation. If the Library does not specify a -license version number, you may choose any version ever published by -the Free Software Foundation. - - 14. If you wish to incorporate parts of the Library into other free -programs whose distribution conditions are incompatible with these, -write to the author to ask for permission. For software which is -copyrighted by the Free Software Foundation, write to the Free -Software Foundation; we sometimes make exceptions for this. Our -decision will be guided by the two goals of preserving the free status -of all derivatives of our free software and of promoting the sharing -and reuse of software generally. - - NO WARRANTY - - 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO -WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. -EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR -OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY -KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE -LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME -THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN -WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY -AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU -FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR -CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE -LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING -RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A -FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF -SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGES. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Libraries - - If you develop a new library, and you want it to be of the greatest -possible use to the public, we recommend making it free software that -everyone can redistribute and change. You can do so by permitting -redistribution under these terms (or, alternatively, under the terms of the -ordinary General Public License). - - To apply these terms, attach the following notices to the library. It is -safest to attach them to the start of each source file to most effectively -convey the exclusion of warranty; and each file should have at least the -"copyright" line and a pointer to where the full notice is found. - - - Copyright (C) - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - -Also add information on how to contact you by electronic and paper mail. - -You should also get your employer (if you work as a programmer) or your -school, if any, to sign a "copyright disclaimer" for the library, if -necessary. Here is a sample; alter the names: - - Yoyodyne, Inc., hereby disclaims all copyright interest in the - library `Frob' (a library for tweaking knobs) written by James Random Hacker. - - , 1 April 1990 - Ty Coon, President of Vice - -That's all there is to it! - - diff --git a/fedora/default/docs/license/thirdParty/gnu-trove/README-license.txt b/fedora/default/docs/license/thirdParty/gnu-trove/README-license.txt deleted file mode 100644 index a2d647e..0000000 --- a/fedora/default/docs/license/thirdParty/gnu-trove/README-license.txt +++ /dev/null @@ -1,17 +0,0 @@ -The Trove library is licensed under the Lesser GNU Public License, -which is included with the distribution in a file called LICENSE.txt. - -The PrimeFinder and HashFunctions classes in Trove are subject to the -following license restrictions: - -Copyright (c) 1999 CERN - European Organization for Nuclear Research. - -Permission to use, copy, modify, distribute and sell this software and -its documentation for any purpose is hereby granted without fee, -provided that the above copyright notice appear in all copies and that -both that copyright notice and this permission notice appear in -supporting documentation. CERN makes no representations about the -suitability of this software for any purpose. It is provided "as is" -without expressed or implied warranty. - - diff --git a/fedora/default/docs/license/thirdParty/google-collections/COPYING b/fedora/default/docs/license/thirdParty/google-collections/COPYING deleted file mode 100644 index d645695..0000000 --- a/fedora/default/docs/license/thirdParty/google-collections/COPYING +++ /dev/null @@ -1,202 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. diff --git a/fedora/default/docs/license/thirdParty/groboutils/license.html b/fedora/default/docs/license/thirdParty/groboutils/license.html deleted file mode 100644 index a3282e0..0000000 --- a/fedora/default/docs/license/thirdParty/groboutils/license.html +++ /dev/null @@ -1,42 +0,0 @@ -GroboUtils - License Details
GroboUtils

About GroboUtils

Sourceforge
Project

For Developers

Sub-Projects

License Details

-

-GroboUtils is now distributed under the MIT license: -

-

-Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: -

-

-The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. -

-

-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -DEALINGS IN THE SOFTWARE. -

-
-

-Originally, GroboUtils was released under the LGPL. However, due to -hard-to-read language included in the LGPL, and many people's concerns -over the possible viral nature of the LGPL (and the Free Software Foundation's -comments that covering Java code under the LGPL is the same as putting it -under the GPL), the -author moved the license over to the MIT license on February 10, 2003. -

- -



SourceForge Logo
This space graciously provided by the SourceForge project
Copyright © -2002-2003 GroboUtils Project.
All rights reserved.
\ No newline at end of file diff --git a/fedora/default/docs/license/thirdParty/howl/license.txt b/fedora/default/docs/license/thirdParty/howl/license.txt deleted file mode 100644 index 05202b3..0000000 --- a/fedora/default/docs/license/thirdParty/howl/license.txt +++ /dev/null @@ -1,25 +0,0 @@ -License - -HOWL is OSI Certified Open Source Software licensed under the BSD license. - -Copyright (c) 2004, Bull S. A., All rights reserved. - -Redistribution and use in source and binary forms, with or without modification, -are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright notice, - this list of conditions and the following disclaimer. - * 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. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND -ANY EXPRESS 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 COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR -ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, 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. \ No newline at end of file diff --git a/fedora/default/docs/license/thirdParty/imagej/disclaimer.html b/fedora/default/docs/license/thirdParty/imagej/disclaimer.html deleted file mode 100644 index f78d4e7..0000000 --- a/fedora/default/docs/license/thirdParty/imagej/disclaimer.html +++ /dev/null @@ -1,37 +0,0 @@ - - - -ImageJ Disclaimer - - - - -

ImageJ Disclaimer

-
- - - -
-
- - ImageJ is being developed at the National Institutes of Health by an employee of the Federal Government - in the course of his official duties. Pursuant to Title 17, Section 105 of the United States Code, this software - is not subject to copyright protection and is in the public domain. ImageJ is an experimental system. - NIH assumes no responsibility whatsoever for its use by other parties, and makes no guarantees, - expressed or implied, about its quality, reliability, or any other characteristic. - -
-
- -

-[ImageJ Home Page] -

- - -Date Last Modified: 17 November, 2004 - -

- - - - diff --git a/fedora/default/docs/license/thirdParty/jaxb/CDDL+GPL.html b/fedora/default/docs/license/thirdParty/jaxb/CDDL+GPL.html deleted file mode 100644 index 564bcec..0000000 --- a/fedora/default/docs/license/thirdParty/jaxb/CDDL+GPL.html +++ /dev/null @@ -1,1565 +0,0 @@ - - - - - - - - - - - - - - - - - - - glassfish: GlassFish Dual License Header and License Notice GPL v2 and CDDL - - - - - - - - - - - - - - - - -

- - - - - - -
-
- -
-
- - - -
- - - - - - - - - - - - - - - - -
My pagesProjectsCommunitiesjava.net
-
- - - - - - - - - - - - - -
- -
- - - - - - - - - - - - - - - - - -

COMMON DEVELOPMENT AND DISTRIBUTION LICENSE (CDDL) Version 1.0

- -
    -
  • 1. Definitions.

    -
      -
    • -

      - 1.1. “Contributor” means each individual or - entity that creates or contributes to the creation of - Modifications. -

      -
    • - -
    • -

      - 1.2. “Contributor Version” means - the combination of the Original Software, prior - Modifications used by a Contributor (if any), and the - Modifications made by that particular Contributor. -

      -
    • - -
    • -

      - 1.3. “Covered Software” means (a) - the Original Software, or (b) Modifications, or (c) the - combination of files containing Original Software with files - containing Modifications, in each case including portions - thereof. -

      -
    • - -
    • -

      - 1.4. “Executable” means the - Covered Software in any form other than Source Code. -

      -
    • - -
    • -

      - 1.5. “Initial Developer” means - the individual or entity that first makes Original Software - available under this License. -

      -
    • - -
    • -

      - 1.6. “Larger Work” means a work - which combines Covered Software or portions thereof with - code not governed by the terms of this License. -

      -
    • - -
    • -

      - 1.7. “License” means this document. -

      -
    • - -
    • -

      - 1.8. “Licensable” means having - the right to grant, to the maximum extent possible, whether - at the time of the initial grant or subsequently acquired, - any and all of the rights conveyed herein. -

      -
    • - -
    • -

      - 1.9. “Modifications” means the - Source Code and Executable form of any of the following: -

      -
        -
      • -

        - A. Any file that results from an addition - to, deletion from or modification of the contents of a - file containing Original Software or previous - Modifications; -

        -
      • -
      • -

        - B. Any new file that contains any part of - the Original Software or previous Modification; or -

        -
      • -
      • -

        - C. Any new file that is contributed or - otherwise made available under the terms of this - License. -

        -
      • -
      -
    • - -
    • -

      - 1.10. “Original Software” means - the Source Code and Executable form of computer software - code that is originally released under this License. -

      -
    • - -
    • -

      - 1.11. “Patent Claims” means any - patent claim(s), now owned or hereafter acquired, including - without limitation, method, process, and apparatus claims, - in any patent Licensable by grantor. -

      -
    • - -
    • -

      - 1.12. “Source Code” means (a) the - common form of computer software code in which modifications - are made and (b) associated documentation included in or - with such code. -

      -
    • - -
    • -

      - 1.13. “You” (or - “Your”) means an individual or a legal - entity exercising rights under, and complying with all of - the terms of, this License. For legal entities, - “You” includes any entity which controls, is - controlled by, or is under common control with You. For - purposes of this definition, “control” means - (a) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract - or otherwise, or (b) ownership of more than fifty - percent (50%) of the outstanding shares or beneficial - ownership of such entity. -

      -
    • -
    -
  • - -
  • -

    2. License Grants.

    -
      -
    • -

      2.1. The Initial Developer Grant.

      -

      - Conditioned upon Your compliance with Section 3.1 - below and subject to third party intellectual property - claims, the Initial Developer hereby grants You a - world-wide, royalty-free, non-exclusive license: -

      -
        -
      • -

        - (a) under intellectual property rights - (other than patent or trademark) Licensable by Initial - Developer, to use, reproduce, modify, display, perform, - sublicense and distribute the Original Software (or - portions thereof), with or without Modifications, and/or - as part of a Larger Work; and -

        -
      • -
      • -

        - (b) under Patent Claims infringed by the - making, using or selling of Original Software, to make, - have made, use, practice, sell, and offer for sale, - and/or otherwise dispose of the Original Software (or - portions thereof). -

        -
      • -
      • -

        - (c) The licenses granted in Sections 2.1(a) - and (b) are effective on the date Initial Developer first - distributes or otherwise makes the Original Software - available to a third party under the terms of this License. -

        -
      • -
      • -

        - (d) Notwithstanding Section 2.1(b) - above, no patent license is granted: (1) for code - that You delete from the Original Software, or - (2) for infringements caused by: (i) the - modification of the Original Software, or (ii) the - combination of the Original Software with other software - or devices. -

        -
      • -
      -
    • -
    • -

      2.2. Contributor Grant.

      -

      - Conditioned upon Your compliance with Section 3.1 below - and subject to third party intellectual property claims, - each Contributor hereby grants You a world-wide, - royalty-free, non-exclusive license: -

      -
        -
      • -

        - (a) under intellectual property rights - (other than patent or trademark) Licensable by - Contributor to use, reproduce, modify, display, perform, - sublicense and distribute the Modifications created by - such Contributor (or portions thereof), either on an - unmodified basis, with other Modifications, as Covered - Software and/or as part of a Larger Work; and -

        -
      • -
      • -

        - (b) under Patent Claims infringed by the - making, using, or selling of Modifications made by that - Contributor either alone and/or in combination with its - Contributor Version (or portions of such combination), - to make, use, sell, offer for sale, have made, and/or - otherwise dispose of: (1) Modifications made by - that Contributor (or portions thereof); and (2) the - combination of Modifications made by that Contributor - with its Contributor Version (or portions of such - combination). -

        -
      • -
      • -

        - (c) The licenses granted in Sections 2.2(a) - and 2.2(b) are effective on the date Contributor first - distributes or otherwise makes the Modifications available - to a third party. -

        -
      • -
      • -

        - (d) Notwithstanding Section 2.2(b) - above, no patent license is granted: (1) for any - code that Contributor has deleted from the Contributor - Version; (2) for infringements caused by: - (i) third party modifications of Contributor - Version, or (ii) the combination of Modifications - made by that Contributor with other software (except as - part of the Contributor Version) or other devices; or - (3) under Patent Claims infringed by Covered - Software in the absence of Modifications made by that - Contributor. -

        -
      • -
      -
    • -
    -
  • - -
  • -

    3. Distribution Obligations.

    -
      -
    • -

      3.1. Availability of Source Code.

      -

      - Any Covered Software that You distribute or otherwise - make available in Executable form must also be made - available in Source Code form and that Source Code form - must be distributed only under the terms of this License. - You must include a copy of this License with every copy of - the Source Code form of the Covered Software You - distribute or otherwise make available. You must inform - recipients of any such Covered Software in Executable form - as to how they can obtain such Covered Software in Source - Code form in a reasonable manner on or through a medium - customarily used for software exchange. -

      -
    • -
    • -

      3.2. Modifications.

      -

      - The Modifications that You create or to which You - contribute are governed by the terms of this License. You - represent that You believe Your Modifications are Your - original creation(s) and/or You have sufficient rights to - grant the rights conveyed by this License. -

      -
    • -
    • -

      3.3. Required Notices.

      -

      - You must include a notice in each of Your Modifications - that identifies You as the Contributor of the Modification. - You may not remove or alter any copyright, patent or - trademark notices contained within the Covered Software, - or any notices of licensing or any descriptive text giving - attribution to any Contributor or the Initial Developer. -

      -
    • -
    • -

      3.4. Application of Additional Terms.

      -

      - You may not offer or impose any terms on any Covered - Software in Source Code form that alters or restricts the - applicable version of this License or the - recipients’ rights hereunder. You may choose to - offer, and to charge a fee for, warranty, support, - indemnity or liability obligations to one or more - recipients of Covered Software. However, you may do so - only on Your own behalf, and not on behalf of the Initial - Developer or any Contributor. You must make it absolutely - clear that any such warranty, support, indemnity or - liability obligation is offered by You alone, and You - hereby agree to indemnify the Initial Developer and every - Contributor for any liability incurred by the Initial - Developer or such Contributor as a result of warranty, - support, indemnity or liability terms You offer. -

      -
    • -
    • -

      3.5. Distribution of Executable Versions.

      -

      - You may distribute the Executable form of the Covered - Software under the terms of this License or under the - terms of a license of Your choice, which may contain terms - different from this License, provided that You are in - compliance with the terms of this License and that the - license for the Executable form does not attempt to limit - or alter the recipient’s rights in the Source Code - form from the rights set forth in this License. If You - distribute the Covered Software in Executable form under a - different license, You must make it absolutely clear that - any terms which differ from this License are offered by - You alone, not by the Initial Developer or Contributor. - You hereby agree to indemnify the Initial Developer and - every Contributor for any liability incurred by the - Initial Developer or such Contributor as a result of any - such terms You offer. -

      -
    • -
    • -

      3.6. Larger Works.

      -

      - You may create a Larger Work by combining Covered - Software with other code not governed by the terms of this - License and distribute the Larger Work as a single - product. In such a case, You must make sure the - requirements of this License are fulfilled for the Covered - Software. -

      -
    • -
    -
  • - -
  • -

    4. Versions of the License.

    -
      -
    • -

      4.1. New Versions.

      -

      - Sun Microsystems, Inc. is the initial license steward - and may publish revised and/or new versions of this - License from time to time. Each version will be given a - distinguishing version number. Except as provided in - Section 4.3, no one other than the license steward has the - right to modify this License. -

      -
    • -
    • -

      4.2. Effect of New Versions.

      -

      - You may always continue to use, distribute or otherwise - make the Covered Software available under the terms of the - version of the License under which You originally received - the Covered Software. If the Initial Developer includes a - notice in the Original Software prohibiting it from being - distributed or otherwise made available under any - subsequent version of the License, You must distribute and - make the Covered Software available under the terms of the - version of the License under which You originally received - the Covered Software. Otherwise, You may also choose to - use, distribute or otherwise make the Covered Software - available under the terms of any subsequent version of the - License published by the license steward. -

      -
    • -
    • -

      4.3. Modified Versions.

      -

      - When You are an Initial Developer and You want to - create a new license for Your Original Software, You may - create and use a modified version of this License if You: - (a) rename the license and remove any references to - the name of the license steward (except to note that the - license differs from this License); and (b) otherwise - make it clear that the license contains terms which differ - from this License. -

      -
    • -
    -
  • - -
  • -

    5. DISCLAIMER OF WARRANTY.

    -

    - COVERED SOFTWARE IS PROVIDED UNDER THIS LICENSE ON AN - “AS IS” BASIS, WITHOUT WARRANTY OF ANY KIND, - EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT LIMITATION, - WARRANTIES THAT THE COVERED SOFTWARE IS FREE OF DEFECTS, - MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. - THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE - COVERED SOFTWARE IS WITH YOU. SHOULD ANY COVERED SOFTWARE - PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER - OR ANY OTHER CONTRIBUTOR) ASSUME THE COST OF ANY NECESSARY - SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER OF WARRANTY - CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF ANY - COVERED SOFTWARE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS - DISCLAIMER. -

    -
  • - -
  • -

    6. TERMINATION.

    -
      -
    • -

      - 6.1. This License and the rights granted - hereunder will terminate automatically if You fail to comply - with terms herein and fail to cure such breach within 30 - days of becoming aware of the breach. Provisions which, by - their nature, must remain in effect beyond the termination - of this License shall survive. -

      -
    • -
    • -

      - 6.2. If You assert a patent infringement claim - (excluding declaratory judgment actions) against Initial Developer - or a Contributor (the Initial Developer or Contributor against whom - You assert such claim is referred to as “Participant”) - alleging that the Participant Software (meaning the Contributor - Version where the Participant is a Contributor or the Original Software - where the Participant is the Initial Developer) directly or indirectly - infringes any patent, then any and all rights granted directly or - indirectly to You by such Participant, the Initial Developer (if the - Initial Developer is not the Participant) and all Contributors under - Sections 2.1 and/or 2.2 of this License shall, upon 60 days notice - from Participant terminate prospectively and automatically at the - expiration of such 60 day notice period, unless if within such 60 day - period You withdraw Your claim with respect to the Participant Software - against such Participant either unilaterally or pursuant to a written - agreement with Participant. -

      -
    • -
    • -

      - 6.3. In the event of termination under - Sections 6.1 or 6.2 above, all end user licenses - that have been validly granted by You or any distributor - hereunder prior to termination (excluding licenses granted - to You by any distributor) shall survive termination. -

      -
    • -
    -
  • - -
  • -

    7. LIMITATION OF LIABILITY.

    -

    - UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER - TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL - YOU, THE INITIAL DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY - DISTRIBUTOR OF COVERED SOFTWARE, OR ANY SUPPLIER OF ANY OF - SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, - SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER - INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOST PROFITS, LOSS OF GOODWILL, - WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL - OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL - HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS - LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH - OR PERSONAL INJURY RESULTING FROM SUCH PARTY’S - NEGLIGENCE TO THE EXTENT APPLICABLE LAW PROHIBITS SUCH - LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR - LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS - EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. -

    -
  • - -
  • -

    8. U.S. GOVERNMENT END USERS.

    -

    - The Covered Software is a “commercial item,” as - that term is defined in 48 C.F.R. 2.101 (Oct. 1995), - consisting of “commercial computer software” (as - that term is defined at 48 - C.F.R. § 252.227-7014(a)(1)) and “commercial - computer software documentation” as such terms are used - in 48 C.F.R. 12.212 (Sept. 1995). Consistent with - 48 C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 - (June 1995), all U.S. Government End Users acquire Covered - Software with only those rights set forth herein. This - U.S. Government Rights clause is in lieu of, and supersedes, - any other FAR, DFAR, or other clause or provision that - addresses Government rights in computer software under this - License. -

    -
  • - -
  • -

    9. MISCELLANEOUS.

    -

    - This License represents the complete agreement concerning - subject matter hereof. If any provision of this License is - held to be unenforceable, such provision shall be reformed - only to the extent necessary to make it enforceable. This - License shall be governed by the law of the jurisdiction - specified in a notice contained within the Original Software - (except to the extent applicable law, if any, provides - otherwise), excluding such jurisdiction’s - conflict-of-law provisions. Any litigation relating to this - License shall be subject to the jurisdiction of the courts - located in the jurisdiction and venue specified in a notice - contained within the Original Software, with the losing party - responsible for costs, including, without limitation, court - costs and reasonable attorneys’ fees and expenses. The - application of the United Nations Convention on Contracts for - the International Sale of Goods is expressly excluded. Any - law or regulation which provides that the language of a - contract shall be construed against the drafter shall not - apply to this License. You agree that You alone are - responsible for compliance with the United States export - administration regulations (and the export control laws and - regulation of any other countries) when You use, distribute or - otherwise make available any Covered Software. -

    -
  • - -
  • -

    10. RESPONSIBILITY FOR CLAIMS.

    -

    - As between Initial Developer and the Contributors, each - party is responsible for claims and damages arising, directly - or indirectly, out of its utilization of rights under this - License and You agree to work with Initial Developer and - Contributors to distribute such responsibility on an equitable - basis. Nothing herein is intended or shall be deemed to - constitute any admission of liability. -

    -
  • - -
  • -

    - - NOTICE PURSUANT TO SECTION 9 OF THE COMMON DEVELOPMENT - AND DISTRIBUTION LICENSE (CDDL) - -

    -

    - The code released under the CDDL shall be governed by the laws - of the State of California (excluding conflict-of-law provisions). - Any litigation relating to this License shall be subject to the - jurisdiction of the Federal Courts of the Northern District of - California and the state courts of the State of California, with - venue lying in Santa Clara County, California. -

    -
  • -
- -

The GNU General Public License (GPL) Version 2, June 1991

- -

- Copyright (C) 1989, 1991 Free Software Foundation, Inc. - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -

-

- Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. -

- -

Preamble

-

- The licenses for most software are designed to take away your - freedom to share and change it. By contrast, the GNU General Public - License is intended to guarantee your freedom to share and change - free software--to make sure the software is free for all its users. - This General Public License applies to most of the Free Software - Foundation's software and to any other program whose authors commit - to using it. (Some other Free Software Foundation software is covered - by the GNU Library General Public License instead.) You can apply it - to your programs, too. -

-

- When we speak of free software, we are referring to freedom, not - price. Our General Public Licenses are designed to make sure that - you have the freedom to distribute copies of free software (and - charge for this service if you wish), that you receive source code - or can get it if you want it, that you can change the software or - use pieces of it in new free programs; and that you know you can - do these things. -

-

- To protect your rights, we need to make restrictions that forbid - anyone to deny you these rights or to ask you to surrender the - rights. These restrictions translate to certain responsibilities - for you if you distribute copies of the software, or if you modify it. -

-

- For example, if you distribute copies of such a program, whether - gratis or for a fee, you must give the recipients all the rights - that you have. You must make sure that they, too, receive or can get - the source code. And you must show them these terms so they know - their rights. -

-

- We protect your rights with two steps: (1) copyright the software, - and (2) offer you this license which gives you legal permission to - copy, distribute and/or modify the software. -

-

- Also, for each author's protection and ours, we want to make certain - that everyone understands that there is no warranty for this free - software. If the software is modified by someone else and passed on, - we want its recipients to know that what they have is not the original, - so that any problems introduced by others will not reflect on the - original authors' reputations. -

-

- Finally, any free program is threatened constantly by software patents. - We wish to avoid the danger that redistributors of a free program will - individually obtain patent licenses, in effect making the program - proprietary. To prevent this, we have made it clear that any patent - must be licensed for everyone's free use or not licensed at all. -

-

- The precise terms and conditions for copying, distribution and - modification follow. -

- -

TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION

-
    -
  • -

    - 0. This License applies to any program or other work which - contains a notice placed by the copyright holder saying it may be - distributed under the terms of this General Public License. The - "Program", below, refers to any such program or work, and a "work - based on the Program" means either the Program or any derivative - work under copyright law: that is to say, a work containing the - Program or a portion of it, either verbatim or with modifications - and/or translated into another language. (Hereinafter, translation - is included without limitation in the term "modification".) Each - licensee is addressed as "you". -

    -

    - Activities other than copying, distribution and modification are - not covered by this License; they are outside its scope. The act of - running the Program is not restricted, and the output from the Program - is covered only if its contents constitute a work based on the Program - (independent of having been made by running the Program). Whether that - is true depends on what the Program does. -

    -
  • -
  • -

    - 1. You may copy and distribute verbatim copies of the Program's - source code as you receive it, in any medium, provided that you - conspicuously and appropriately publish on each copy an appropriate - copyright notice and disclaimer of warranty; keep intact all the notices - that refer to this License and to the absence of any warranty; and give - any other recipients of the Program a copy of this License along with - the Program. -

    -

    - You may charge a fee for the physical act of transferring a copy, and you - may at your option offer warranty protection in exchange for a fee. -

    -
  • -
  • -

    - 2. You may modify your copy or copies of the Program or any portion - of it, thus forming a work based on the Program, and copy and distribute - such modifications or work under the terms of Section 1 above, provided - that you also meet all of these conditions: -

    -
      -
    • -

      - a) You must cause the modified files to carry prominent notices stating - that you changed the files and the date of any change. -

      -
    • -
    • -

      - b) You must cause any work that you distribute or publish, that in whole - or in part contains or is derived from the Program or any part thereof, - to be licensed as a whole at no charge to all third parties under the terms - of this License. -

      -
    • -
    • -

      - c) If the modified program normally reads commands interactively when run, - you must cause it, when started running for such interactive use in the - most ordinary way, to print or display an announcement including an - appropriate copyright notice and a notice that there is no warranty (or - else, saying that you provide a warranty) and that users may redistribute - the program under these conditions, and telling the user how to view a - copy of this License. (Exception: if the Program itself is interactive - but does not normally print such an announcement, your work based on the - Program is not required to print an announcement.) -

      -
    • -
    -

    - These requirements apply to the modified work as a whole. If identifiable - sections of that work are not derived from the Program, and can be reasonably - considered independent and separate works in themselves, then this License, - and its terms, do not apply to those sections when you distribute them as - separate works. But when you distribute the same sections as part of a whole - which is a work based on the Program, the distribution of the whole must - be on the terms of this License, whose permissions for other licensees - extend to the entire whole, and thus to each and every part regardless - of who wrote it. -

    -

    - Thus, it is not the intent of this section to claim rights or contest - your rights to work written entirely by you; rather, the intent is to - exercise the right to control the distribution of derivative or collective - works based on the Program. -

    -

    - In addition, mere aggregation of another work not based on the Program - with the Program (or with a work based on the Program) on a volume of - a storage or distribution medium does not bring the other work under - the scope of this License. -

    -
  • - -
  • -

    - 3. You may copy and distribute the Program (or a work based - on it, under Section 2) in object code or executable form under - the terms of Sections 1 and 2 above provided that you also do one - of the following: -

    -
      -
    • -

      - a) Accompany it with the complete corresponding machine-readable - source code, which must be distributed under the terms of Sections - 1 and 2 above on a medium customarily used for software interchange; or, -

      -
    • -
    • -

      - b) Accompany it with a written offer, valid for at least three years, - to give any third party, for a charge no more than your cost of - physically performing source distribution, a complete machine-readable - copy of the corresponding source code, to be distributed under the - terms of Sections 1 and 2 above on a medium customarily used for - software interchange; or, -

      -
    • -
    • -

      - c) Accompany it with the information you received as to the offer to - distribute corresponding source code. (This alternative is allowed - only for noncommercial distribution and only if you received the - program in object code or executable form with such an offer, in - accord with Subsection b above.) -

      -
    • -
    -

    - The source code for a work means the preferred form of the work for - making modifications to it. For an executable work, complete source - code means all the source code for all modules it contains, plus any - associated interface definition files, plus the scripts used to control - compilation and installation of the executable. However, as a special - exception, the source code distributed need not include anything that - is normally distributed (in either source or binary form) with the - major components (compiler, kernel, and so on) of the operating system - on which the executable runs, unless that component itself accompanies - the executable. -

    -

    - If distribution of executable or object code is made by offering access - to copy from a designated place, then offering equivalent access to - copy the source code from the same place counts as distribution of the - source code, even though third parties are not compelled to copy the - source along with the object code. -

    -
  • - -
  • -

    - 4. You may not copy, modify, sublicense, or distribute the - Program except as expressly provided under this License. Any attempt - otherwise to copy, modify, sublicense or distribute the Program is void, - and will automatically terminate your rights under this License. However, - parties who have received copies, or rights, from you under this License - will not have their licenses terminated so long as such parties remain - in full compliance. -

    -
  • - -
  • -

    - 5. You are not required to accept this License, since you have - not signed it. However, nothing else grants you permission to modify or - distribute the Program or its derivative works. These actions are prohibited - by law if you do not accept this License. Therefore, by modifying or - distributing the Program (or any work based on the Program), you indicate - your acceptance of this License to do so, and all its terms and conditions - for copying, distributing or modifying the Program or works based on it. -

    -
  • - -
  • -

    - 6. Each time you redistribute the Program (or any work based on the - Program), the recipient automatically receives a license from the original - licensor to copy, distribute or modify the Program subject to these terms - and conditions. You may not impose any further restrictions on the recipients' - exercise of the rights granted herein. You are not responsible for enforcing - compliance by third parties to this License. -

    -
  • - -
  • -

    - 7. If, as a consequence of a court judgment or allegation of patent - infringement or for any other reason (not limited to patent issues), - conditions are imposed on you (whether by court order, agreement or otherwise) - that contradict the conditions of this License, they do not excuse you from - the conditions of this License. If you cannot distribute so as to satisfy - simultaneously your obligations under this License and any other pertinent - obligations, then as a consequence you may not distribute the Program at all. - For example, if a patent license would not permit royalty-free redistribution - of the Program by all those who receive copies directly or indirectly through - you, then the only way you could satisfy both it and this License would be - to refrain entirely from distribution of the Program. -

    -

    - If any portion of this section is held invalid or unenforceable under any - particular circumstance, the balance of the section is intended to apply and - the section as a whole is intended to apply in other circumstances. -

    -

    - It is not the purpose of this section to induce you to infringe any patents - or other property right claims or to contest validity of any such claims; - this section has the sole purpose of protecting the integrity of the free - software distribution system, which is implemented by public license practices. - Many people have made generous contributions to the wide range of software - distributed through that system in reliance on consistent application of that - system; it is up to the author/donor to decide if he or she is willing to - distribute software through any other system and a licensee cannot impose that - choice. -

    -

    - This section is intended to make thoroughly clear what is believed to be a - consequence of the rest of this License. -

    -
  • - -
  • -

    - 8. If the distribution and/or use of the Program is restricted in - certain countries either by patents or by copyrighted interfaces, the - original copyright holder who places the Program under this License may - add an explicit geographical distribution limitation excluding those - countries, so that distribution is permitted only in or among countries - not thus excluded. In such case, this License incorporates the limitation - as if written in the body of this License. -

    -
  • - -
  • -

    - 9. The Free Software Foundation may publish revised and/or new - versions of the General Public License from time to time. Such new versions - will be similar in spirit to the present version, but may differ in detail - to address new problems or concerns. -

    -

    - Each version is given a distinguishing version number. If the Program - specifies a version number of this License which applies to it and "any later - version", you have the option of following the terms and conditions either - of that version or of any later version published by the Free Software - Foundation. If the Program does not specify a version number of this License, - you may choose any version ever published by the Free Software Foundation. -

    -
  • - -
  • -

    - 10. If you wish to incorporate parts of the Program into other free - programs whose distribution conditions are different, write to the author - to ask for permission. For software which is copyrighted by the Free Software - Foundation, write to the Free Software Foundation; we sometimes make exceptions - for this. Our decision will be guided by the two goals of preserving the - free status of all derivatives of our free software and of promoting the - sharing and reuse of software generally. -

    -
  • - -
  • -

    NO WARRANTY

    -
  • - -
  • -

    - 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO - WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. - EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR - OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, - EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED - WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE - ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. - SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY - SERVICING, REPAIR OR CORRECTION. -

    -
  • - -
  • -

    - 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN - WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR - REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, - INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING - OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO - LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR - THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), - EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. -

    -
  • - -
  • -

    END OF TERMS AND CONDITIONS

    -
  • - -
  • -

    How to Apply These Terms to Your New Programs

    -

    - If you develop a new program, and you want it to be of the greatest possible - use to the public, the best way to achieve this is to make it free software - which everyone can redistribute and change under these terms. -

    -

    - To do so, attach the following notices to the program. It is safest to attach - them to the start of each source file to most effectively convey the exclusion - of warranty; and each file should have at least the "copyright" line and a - pointer to where the full notice is found. -

    -
      -
    • -

      - One line to give the program's name and a brief idea of what it does. -

      -
    • -
    • -

      - Copyright (C) -

      -
    • -
    • -

      - This program is free software; you can redistribute it and/or modify it - under the terms of the GNU General Public License as published by the - Free Software Foundation; either version 2 of the License, or (at your - option) any later version. -

      -
    • -
    • -

      - This program is distributed in the hope that it will be useful, but - WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY - or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License - for more details. -

      -
    • -
    • -

      - You should have received a copy of the GNU General Public License along - with this program; if not, write to the Free Software Foundation, Inc., - 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -

      -
    • -
    -

    - Also add information on how to contact you by electronic and paper mail. -

    -

    - If the program is interactive, make it output a short notice like this - when it starts in an interactive mode: -

    -
      -
    • -

      - Gnomovision version 69, Copyright (C) year name of author
      - Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type - `show w'. This is free software, and you are welcome to redistribute - it under certain conditions; type `show c' for details. -

      -
    • -
    -

    - The hypothetical commands `show w' and `show c' should show the appropriate - parts of the General Public License. Of course, the commands you use may - be called something other than `show w' and `show c'; they could even be - mouse-clicks or menu items--whatever suits your program. -

    -

    - You should also get your employer (if you work as a programmer) or your - school, if any, to sign a "copyright disclaimer" for the program, if - necessary. Here is a sample; alter the names: -

    -
      -
    • -

      - Yoyodyne, Inc., hereby disclaims all copyright interest in the program - `Gnomovision' (which makes passes at compilers) written by James Hacker. -

      -

      - signature of Ty Coon, 1 April 1989
      - Ty Coon, President of Vice -

      -
    • -
    -

    - This General Public License does not permit incorporating your program into - proprietary programs. If your program is a subroutine library, you may - consider it more useful to permit linking proprietary applications with - the library. If this is what you want to do, use the GNU Library General - Public License instead of this License. -

    -
  • - -
  • -

    "CLASSPATH" EXCEPTION TO THE GPL VERSION 2

    -

    - Certain source files distributed by Sun Microsystems, Inc. are subject to - the following clarification and special exception to the GPL Version 2, but - only where Sun has expressly included in the particular source file's - header the words
    - "Sun designates this particular file as subject to the "Classpath" - exception as provided by Sun in the License file that accompanied this code." -

    -

    - Linking this library statically or dynamically with other modules is making - a combined work based on this library. Thus, the terms and conditions of the - GNU General Public License Version 2 cover the whole combination. -

    -

    - As a special exception, the copyright holders of this library give you - permission to link this library with independent modules to produce an - executable, regardless of the license terms of these independent modules, - and to copy and distribute the resulting executable under terms of your - choice, provided that you also meet, for each linked independent module, - the terms and conditions of the license of that module.? An independent - module is a module which is not derived from or based on this library.? If - you modify this library, you may extend this exception to your version of - the library, but you are not obligated to do so.? If you do not wish to do - so, delete this exception statement from your version. -

    -
  • - -
- - -
-
- - -