libis-format 1.0.4 → 2.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/.gitignore +5 -1
- data/.travis.yml +43 -25
- data/README.md +2 -2
- data/base/Dockerfile +35 -0
- data/base/Dockerfile.alpine +20 -0
- data/base/Dockerfile.rvm +56 -0
- data/base/rework_path +20 -0
- data/docker_cfg.yml +1 -0
- data/lib/libis/format.rb +12 -3
- data/lib/libis/format/cli/convert.rb +4 -4
- data/lib/libis/format/config.rb +15 -10
- data/lib/libis/format/converter/audio_converter.rb +3 -37
- data/lib/libis/format/converter/base.rb +22 -8
- data/lib/libis/format/converter/chain.rb +3 -3
- data/lib/libis/format/converter/image_assembler.rb +82 -0
- data/lib/libis/format/converter/image_converter.rb +20 -138
- data/lib/libis/format/converter/image_splitter.rb +84 -0
- data/lib/libis/format/converter/image_watermarker.rb +261 -0
- data/lib/libis/format/converter/jp2_converter.rb +2 -2
- data/lib/libis/format/converter/office_converter.rb +2 -2
- data/lib/libis/format/converter/pdf_assembler.rb +66 -0
- data/lib/libis/format/converter/pdf_converter.rb +10 -134
- data/lib/libis/format/converter/pdf_metadata.rb +82 -0
- data/lib/libis/format/converter/pdf_optimizer.rb +67 -0
- data/lib/libis/format/converter/pdf_protecter.rb +147 -0
- data/lib/libis/format/converter/pdf_selecter.rb +83 -0
- data/lib/libis/format/converter/pdf_splitter.rb +70 -0
- data/lib/libis/format/converter/pdf_watermarker_header.rb +71 -0
- data/lib/libis/format/converter/pdf_watermarker_image.rb +76 -0
- data/lib/libis/format/converter/pdf_watermarker_text.rb +93 -0
- data/lib/libis/format/converter/spreadsheet_converter.rb +2 -2
- data/lib/libis/format/converter/video_converter.rb +1 -1
- data/lib/libis/format/identifier.rb +3 -3
- data/lib/libis/format/info.rb +27 -0
- data/lib/libis/format/library.rb +147 -0
- data/lib/libis/format/tool.rb +4 -1
- data/lib/libis/format/tool/droid.rb +2 -2
- data/lib/libis/format/tool/extension_identification.rb +4 -4
- data/lib/libis/format/tool/ffmpeg.rb +1 -1
- data/lib/libis/format/tool/fido.rb +1 -1
- data/lib/libis/format/tool/fop_pdf.rb +1 -1
- data/lib/libis/format/tool/identification_tool.rb +6 -6
- data/lib/libis/format/tool/office_to_pdf.rb +1 -1
- data/lib/libis/format/tool/pdf_merge.rb +4 -4
- data/lib/libis/format/tool/{pdf_copy.rb → pdf_metadata.rb} +6 -6
- data/lib/libis/format/tool/pdf_protect.rb +47 -0
- data/lib/libis/format/tool/pdf_select.rb +47 -0
- data/lib/libis/format/tool/pdf_split.rb +5 -5
- data/lib/libis/format/tool/pdf_to_pdfa.rb +1 -2
- data/lib/libis/format/tool/pdf_watermark.rb +47 -0
- data/lib/libis/format/tool/pdfa_validator.rb +3 -4
- data/lib/libis/format/tool/spreadsheet_to_ods.rb +2 -1
- data/lib/libis/format/version.rb +1 -1
- data/lib/libis/format/yaml_loader.rb +71 -0
- data/libis-format.gemspec +5 -4
- data/tools/PdfTool.jar +0 -0
- data/tools/bcpkix-jdk15on-167.jar +0 -0
- data/tools/bcprov-jdk15on-167.jar +0 -0
- data/tools/fop/build/fop.jar +0 -0
- data/tools/fop/conf/fop.xconf +466 -0
- data/tools/fop/fop +258 -0
- data/tools/fop/fop.bat +75 -0
- data/tools/fop/fop.cmd +31 -0
- data/tools/fop/fop.js +341 -0
- data/tools/fop/lib/README.txt +243 -0
- data/tools/fop/lib/avalon-framework-api-4.3.1.jar +0 -0
- data/tools/fop/lib/avalon-framework-impl-4.3.1.jar +0 -0
- data/tools/fop/lib/avalon-framework.LICENSE.txt +175 -0
- data/tools/fop/lib/avalon-framework.NOTICE.TXT +11 -0
- data/tools/fop/lib/batik-all-1.10.jar +0 -0
- data/tools/fop/lib/batik.LICENSE.txt +201 -0
- data/tools/fop/lib/batik.NOTICE.txt +18 -0
- data/tools/fop/lib/commons-io-1.3.1.jar +0 -0
- data/tools/fop/lib/commons-io.LICENSE.txt +203 -0
- data/tools/fop/lib/commons-io.NOTICE.txt +6 -0
- data/tools/fop/lib/commons-logging-1.0.4.jar +0 -0
- data/tools/fop/lib/commons-logging.LICENSE.txt +202 -0
- data/tools/fop/lib/commons-logging.NOTICE.txt +3 -0
- data/tools/fop/lib/fontbox-2.0.7.jar +0 -0
- data/tools/fop/lib/serializer-2.7.2.jar +0 -0
- data/tools/fop/lib/serializer.LICENSE.txt +201 -0
- data/tools/fop/lib/serializer.NOTICE.txt +15 -0
- data/tools/fop/lib/xalan-2.7.2.jar +0 -0
- data/tools/fop/lib/xalan.BCEL.LICENSE.txt +52 -0
- data/tools/fop/lib/xalan.LICENSE.txt +202 -0
- data/tools/fop/lib/xalan.NOTICE.txt +44 -0
- data/tools/fop/lib/xalan.regexp.LICENSE.txt +52 -0
- data/tools/fop/lib/xalan.runtime.LICENSE.txt +20 -0
- data/tools/fop/lib/xerces.LICENSE.txt +56 -0
- data/tools/fop/lib/xercesImpl-2.9.1.jar +0 -0
- data/tools/fop/lib/xercesImpl.LICENSE.txt +201 -0
- data/tools/fop/lib/xercesImpl.NOTICE.txt +14 -0
- data/tools/fop/lib/xml-apis-1.3.04.jar +0 -0
- data/tools/fop/lib/xml-apis-ext-1.3.04.jar +0 -0
- data/tools/fop/lib/xml-apis-ext.LICENSE.dom-documentation.txt +73 -0
- data/tools/fop/lib/xml-apis-ext.LICENSE.dom-software.txt +61 -0
- data/tools/fop/lib/xml-apis-ext.LICENSE.sac.html +75 -0
- data/tools/fop/lib/xml-apis-ext.LICENSE.txt +202 -0
- data/tools/fop/lib/xml-apis-ext.NOTICE.txt +16 -0
- data/tools/fop/lib/xml-apis-ext.README.dom.txt +56 -0
- data/tools/fop/lib/xml-apis.LICENSE-SAX.html +17 -0
- data/tools/fop/lib/xml-apis.LICENSE.DOM-documentation.html +74 -0
- data/tools/fop/lib/xml-apis.LICENSE.DOM-software.html +66 -0
- data/tools/fop/lib/xml-apis.LICENSE.txt +201 -0
- data/tools/fop/lib/xml-apis.NOTICE.txt +13 -0
- data/tools/fop/lib/xmlgraphics-commons-2.3.jar +0 -0
- data/tools/fop/lib/xmlgraphics-commons.LICENSE.txt +202 -0
- data/tools/fop/lib/xmlgraphics-commons.NOTICE.txt +5 -0
- data/tools/pdfbox/pdfbox-app-2.0.13.jar +0 -0
- data/tools/pdfbox/{pdfbox-app-1.8.10.jar → preflight-app-2.0.13.jar} +0 -0
- metadata +86 -246
- data/lib/libis/format/type_database.rb +0 -134
- data/lib/libis/format/type_database_impl.rb +0 -120
- data/spec/converter_audio_spec.rb +0 -66
- data/spec/converter_fop_spec.rb +0 -37
- data/spec/converter_image_spec.rb +0 -166
- data/spec/converter_office_spec.rb +0 -84
- data/spec/converter_pdf_spec.rb +0 -30
- data/spec/converter_repository_spec.rb +0 -97
- data/spec/converter_spreadsheet_spec.rb +0 -39
- data/spec/converter_video_spec.rb +0 -97
- data/spec/converter_xsl_spec.rb +0 -56
- data/spec/data/Cevennes2.bmp +0 -0
- data/spec/data/Cevennes2.jp2 +0 -0
- data/spec/data/Cevennes2.ppm +0 -22492
- data/spec/data/NikonRaw-CameraRaw.TIF +0 -0
- data/spec/data/NikonRaw-CaptureOne.tif +0 -0
- data/spec/data/audio/carlin_disappointed.aac +0 -0
- data/spec/data/audio/carlin_disappointed.ac3 +0 -0
- data/spec/data/audio/carlin_disappointed.aiff +0 -0
- data/spec/data/audio/carlin_disappointed.au +0 -0
- data/spec/data/audio/carlin_disappointed.flac +0 -0
- data/spec/data/audio/carlin_disappointed.m4a +0 -0
- data/spec/data/audio/carlin_disappointed.mka +0 -0
- data/spec/data/audio/carlin_disappointed.mp3 +0 -0
- data/spec/data/audio/carlin_disappointed.ogg +0 -0
- data/spec/data/audio/carlin_disappointed.ra +0 -0
- data/spec/data/audio/carlin_disappointed.voc +0 -0
- data/spec/data/audio/carlin_disappointed.wav +0 -0
- data/spec/data/audio/carlin_disappointed.wma +0 -0
- data/spec/data/audio/greensleeves.aac +0 -0
- data/spec/data/audio/greensleeves.ac3 +0 -0
- data/spec/data/audio/greensleeves.aiff +0 -0
- data/spec/data/audio/greensleeves.au +0 -0
- data/spec/data/audio/greensleeves.flac +0 -0
- data/spec/data/audio/greensleeves.m4a +0 -0
- data/spec/data/audio/greensleeves.mka +0 -0
- data/spec/data/audio/greensleeves.mp3 +0 -0
- data/spec/data/audio/greensleeves.ogg +0 -0
- data/spec/data/audio/greensleeves.ra +0 -0
- data/spec/data/audio/greensleeves.voc +0 -0
- data/spec/data/audio/greensleeves.wav +0 -0
- data/spec/data/audio/greensleeves.wma +0 -0
- data/spec/data/audio/king_nonviolence.aac +0 -0
- data/spec/data/audio/king_nonviolence.ac3 +0 -0
- data/spec/data/audio/king_nonviolence.aiff +0 -0
- data/spec/data/audio/king_nonviolence.au +0 -0
- data/spec/data/audio/king_nonviolence.flac +0 -0
- data/spec/data/audio/king_nonviolence.m4a +0 -0
- data/spec/data/audio/king_nonviolence.mka +0 -0
- data/spec/data/audio/king_nonviolence.mp3 +0 -0
- data/spec/data/audio/king_nonviolence.ogg +0 -0
- data/spec/data/audio/king_nonviolence.ra +0 -0
- data/spec/data/audio/king_nonviolence.voc +0 -0
- data/spec/data/audio/king_nonviolence.wav +0 -0
- data/spec/data/audio/king_nonviolence.wma +0 -0
- data/spec/data/audio/top_gun_secret.aac +0 -0
- data/spec/data/audio/top_gun_secret.ac3 +0 -0
- data/spec/data/audio/top_gun_secret.aiff +0 -0
- data/spec/data/audio/top_gun_secret.au +0 -0
- data/spec/data/audio/top_gun_secret.flac +0 -0
- data/spec/data/audio/top_gun_secret.m4a +0 -0
- data/spec/data/audio/top_gun_secret.mka +0 -0
- data/spec/data/audio/top_gun_secret.mp3 +0 -0
- data/spec/data/audio/top_gun_secret.ogg +0 -0
- data/spec/data/audio/top_gun_secret.ra +0 -0
- data/spec/data/audio/top_gun_secret.voc +0 -0
- data/spec/data/audio/top_gun_secret.wav +0 -0
- data/spec/data/audio/top_gun_secret.wma +0 -0
- data/spec/data/multipage.tif +0 -0
- data/spec/data/multipage.tif.jp2 +0 -0
- data/spec/data/test-ead.xml +0 -392
- data/spec/data/test-jpg.tif +0 -0
- data/spec/data/test-lzw.tif +0 -0
- data/spec/data/test-options.jpg +0 -0
- data/spec/data/test-options.png +0 -0
- data/spec/data/test.bmp +0 -0
- data/spec/data/test.doc +0 -0
- data/spec/data/test.docx +0 -0
- data/spec/data/test.gif +0 -0
- data/spec/data/test.jpg +0 -0
- data/spec/data/test.ods +0 -0
- data/spec/data/test.odt +0 -0
- data/spec/data/test.pdf +0 -0
- data/spec/data/test.pdf.tif +0 -0
- data/spec/data/test.png +0 -0
- data/spec/data/test.ps +0 -8631
- data/spec/data/test.psd +0 -0
- data/spec/data/test.rtf +0 -1455
- data/spec/data/test.tif +0 -0
- data/spec/data/test.txt +0 -12
- data/spec/data/test.xcf +0 -0
- data/spec/data/test.xls +0 -0
- data/spec/data/test.xlsx +0 -0
- data/spec/data/test.xml +0 -4
- data/spec/data/test_pdfa.pdf +0 -0
- data/spec/data/video/SampleVideo_1080x720_2mb.flv +0 -0
- data/spec/data/video/SampleVideo_1080x720_2mb.mkv +0 -0
- data/spec/data/video/SampleVideo_1080x720_2mb.mp4 +0 -0
- data/spec/data/video/SampleVideo_176x144_2mb.3gp +0 -0
- data/spec/data/video/SampleVideo_320x240_2mb.3gp +0 -0
- data/spec/data/video/SampleVideo_360x240_2mb.flv +0 -0
- data/spec/data/video/SampleVideo_360x240_2mb.mkv +0 -0
- data/spec/data/video/SampleVideo_360x240_2mb.mp4 +0 -0
- data/spec/data/video/copyright.png +0 -0
- data/spec/data/xml/134476_ead.XML +0 -1
- data/spec/data/xml/134476_ead.pdf +0 -0
- data/spec/data/xml/134476_fo.XML +0 -383
- data/spec/data/xml/134476_raw.XML +0 -141
- data/spec/data/xml/ead2fo_pdf.xsl +0 -1453
- data/spec/data/xml/header_nolink_pdf.xsl +0 -120
- data/spec/data/xml/lookupLists.xsl +0 -488
- data/spec/data/xml/scope_eadToHTML.xsl +0 -2376
- data/spec/data/xml/scope_xmlToEAD_dom.xsl +0 -952
- data/spec/identifier_spec.rb +0 -161
- data/spec/spec_helper.rb +0 -58
- data/spec/test_types.yml +0 -12
- data/spec/type_database_spec.rb +0 -140
- data/tools/bcpkix-jdk15on-1.49.jar +0 -0
- data/tools/bcprov-jdk15on-1.49.jar +0 -0
- data/tools/pdfbox/preflight-app-1.8.10.jar +0 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
=========================================================================
|
|
2
|
+
== NOTICE file corresponding to section 4(d) of the Apache License, ==
|
|
3
|
+
== Version 2.0, in this case for the Apache xml-commons xml-apis ==
|
|
4
|
+
== distribution. ==
|
|
5
|
+
=========================================================================
|
|
6
|
+
|
|
7
|
+
Apache XML Commons XML APIs
|
|
8
|
+
Copyright 2006 The Apache Software Foundation.
|
|
9
|
+
|
|
10
|
+
This product includes software developed at
|
|
11
|
+
The Apache Software Foundation (http://www.apache.org/).
|
|
12
|
+
|
|
13
|
+
Portions of this software were originally based on the following:
|
|
14
|
+
- software copyright (c) 1999, IBM Corporation., http://www.ibm.com.
|
|
15
|
+
- software copyright (c) 1999, Sun Microsystems., http://www.sun.com.
|
|
16
|
+
- software copyright (c) 2000 World Wide Web Consortium, http://www.w3.org
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
xml-commons/java/external/README.dom.txt $Id: README.dom.txt 477038 2006-11-20 04:40:36Z mrglavas $
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
HEAR YE, HEAR YE!
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
All of the .java software and associated documentation about
|
|
8
|
+
the DOM in this repository are distributed under the license
|
|
9
|
+
from the W3C, which is provided herein.
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
LICENSE.dom-software.txt covers all software from the W3C
|
|
13
|
+
including the following items in the xml-commons project:
|
|
14
|
+
|
|
15
|
+
xml-commons/java/external/src/org/w3c
|
|
16
|
+
and all subdirectories
|
|
17
|
+
|
|
18
|
+
(Note: SAC (The Simple API for CSS) has been published under an older
|
|
19
|
+
version of the W3C license. The original license file is LICENSE.sac.html.)
|
|
20
|
+
|
|
21
|
+
LICENSE.dom-documentation.txt covers all documentation from the W3C
|
|
22
|
+
including the following items in the xml-commons project:
|
|
23
|
+
|
|
24
|
+
xml-commons/java/external/xdocs/dom
|
|
25
|
+
and all subdirectories
|
|
26
|
+
|
|
27
|
+
The actual DOM Java Language Binding classes in xml-commons came from:
|
|
28
|
+
http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/java-binding.html
|
|
29
|
+
|
|
30
|
+
The specification of DOM Level 3's various parts is at:
|
|
31
|
+
http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/
|
|
32
|
+
http://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407/
|
|
33
|
+
http://www.w3.org/TR/2004/NOTE-DOM-Level-3-XPath-20040226/
|
|
34
|
+
|
|
35
|
+
The specification of DOM Level 2's various parts is at:
|
|
36
|
+
http://www.w3.org/TR/2000/REC-DOM-Level-2-Events-20001113/
|
|
37
|
+
http://www.w3.org/TR/2000/REC-DOM-Level-2-Style-20001113/
|
|
38
|
+
http://www.w3.org/TR/2000/REC-DOM-Level-2-Traversal-Range-20001113/
|
|
39
|
+
http://www.w3.org/TR/2000/REC-DOM-Level-2-Views-20001113/
|
|
40
|
+
|
|
41
|
+
The specification of DOM Level 1's various parts is at:
|
|
42
|
+
http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-html.html
|
|
43
|
+
|
|
44
|
+
Links to all available W3C DOM Java Bindings can be found at:
|
|
45
|
+
http://www.w3.org/DOM/DOMTR
|
|
46
|
+
|
|
47
|
+
The actual classes of The Simple API for CSS (SAC) came from:
|
|
48
|
+
http://www.w3.org/Style/CSS/SAC/
|
|
49
|
+
http://www.w3.org/2002/06/sacjava-1.3.zip
|
|
50
|
+
|
|
51
|
+
The actual DOM Java Language Binding classes for SMIL came from:
|
|
52
|
+
http://dev.w3.org/cvsweb/java/classes/org/w3c/dom/smil/
|
|
53
|
+
(both ElementTimeControl.java and TimeEvent.java were taken at revision 1.1)
|
|
54
|
+
|
|
55
|
+
The actual DOM Java Language Binding classes for SVG 1.1 came from:
|
|
56
|
+
http://www.w3.org/TR/SVG11/java.html
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<html>
|
|
2
|
+
<head>SAX LICENSE</head>
|
|
3
|
+
<body>
|
|
4
|
+
<p>This license applies to all interfaces and classes in the
|
|
5
|
+
org/xml/sax hierarchy.
|
|
6
|
+
</p>
|
|
7
|
+
<p>
|
|
8
|
+
<blockquote>
|
|
9
|
+
<em>This module, both source code and documentation, is in the
|
|
10
|
+
Public Domain, and comes with <strong>NO WARRANTY</strong>.</em>
|
|
11
|
+
See <a href='http://www.saxproject.org'>http://www.saxproject.org</a>
|
|
12
|
+
for further information.
|
|
13
|
+
</blockquote>
|
|
14
|
+
</p>
|
|
15
|
+
</body>
|
|
16
|
+
</html>
|
|
17
|
+
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
2
|
+
<?xml version="1.0" encoding="iso-8859-1"?><HTML
|
|
3
|
+
xmlns="http://www.w3.org/1999/xhtml"><HEAD><TITLE>W3C Document License</TITLE>
|
|
4
|
+
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
|
|
5
|
+
|
|
6
|
+
<META content="MSHTML 6.00.2800.1400" name=GENERATOR></HEAD>
|
|
7
|
+
<BODY text=#000000 bgColor=#ffffff>
|
|
8
|
+
<H1>W3C<SUP>�</SUP> DOCUMENT LICENSE</H1>
|
|
9
|
+
<H3 id=version><A
|
|
10
|
+
href="http://www.w3.org/Consortium/Legal/2002/copyright-documents-20021231">http://www.w3.org/Consortium/Legal/2002/copyright-documents-20021231</A></H3>
|
|
11
|
+
<P>Public documents on the W3C site are provided by the copyright holders under
|
|
12
|
+
the following license. By using and/or copying this document, or the W3C
|
|
13
|
+
document from which this statement is linked, you (the licensee) agree that you
|
|
14
|
+
have read, understood, and will comply with the following terms and
|
|
15
|
+
conditions:</P>
|
|
16
|
+
<P>Permission to copy, and distribute the contents of this document, or the W3C
|
|
17
|
+
document from which this statement is linked, in any medium for any purpose and
|
|
18
|
+
without fee or royalty is hereby granted, provided that you include the
|
|
19
|
+
following on <I>ALL</I> copies of the document, or portions thereof, that you
|
|
20
|
+
use:</P>
|
|
21
|
+
<OL>
|
|
22
|
+
<LI>A link or URL to the original W3C document.
|
|
23
|
+
<LI>The pre-existing copyright notice of the original author, or if it doesn't
|
|
24
|
+
exist, a notice (hypertext is preferred, but a textual representation is
|
|
25
|
+
permitted) of the form: "Copyright � [$date-of-document] <A
|
|
26
|
+
href="http://www.w3.org/">World Wide Web Consortium</A>, (<A
|
|
27
|
+
href="http://www.lcs.mit.edu/">Massachusetts Institute of Technology</A>, <A
|
|
28
|
+
href="http://www.ercim.org/">European Research Consortium for Informatics and
|
|
29
|
+
Mathematics</A>, <A href="http://www.keio.ac.jp/">Keio University</A>). All
|
|
30
|
+
Rights Reserved. <A
|
|
31
|
+
href="http://www.w3.org/Consortium/Legal/2002/copyright-documents-20021231">http://www.w3.org/Consortium/Legal/2002/copyright-documents-20021231</A>"
|
|
32
|
+
|
|
33
|
+
<LI><EM>If it exists</EM>, the STATUS of the W3C document. </LI></OL>
|
|
34
|
+
<P>When space permits, inclusion of the full text of this <B>NOTICE</B> should
|
|
35
|
+
be provided. We request that authorship attribution be provided in any software,
|
|
36
|
+
documents, or other items or products that you create pursuant to the
|
|
37
|
+
implementation of the contents of this document, or any portion thereof.</P>
|
|
38
|
+
<P>No right to create modifications or derivatives of W3C documents is granted
|
|
39
|
+
pursuant to this license. However, if additional requirements (documented in the
|
|
40
|
+
<A href="http://www.w3.org/Consortium/Legal/IPR-FAQ">Copyright FAQ</A>) are
|
|
41
|
+
satisfied, the right to create modifications or derivatives is sometimes
|
|
42
|
+
granted by the W3C to individuals complying with those requirements.</P>
|
|
43
|
+
<P>THIS DOCUMENT IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO
|
|
44
|
+
REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED
|
|
45
|
+
TO, WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE,
|
|
46
|
+
NON-INFRINGEMENT, OR TITLE; THAT THE CONTENTS OF THE DOCUMENT ARE SUITABLE FOR
|
|
47
|
+
ANY PURPOSE; NOR THAT THE IMPLEMENTATION OF SUCH CONTENTS WILL NOT INFRINGE ANY
|
|
48
|
+
THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.</P>
|
|
49
|
+
<P>COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR
|
|
50
|
+
CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE DOCUMENT OR THE PERFORMANCE
|
|
51
|
+
OR IMPLEMENTATION OF THE CONTENTS THEREOF.</P>
|
|
52
|
+
<P>The name and trademarks of copyright holders may NOT be used in advertising
|
|
53
|
+
or publicity pertaining to this document or its contents without specific,
|
|
54
|
+
written prior permission. Title to copyright in this document will at all times
|
|
55
|
+
remain with copyright holders.</P>
|
|
56
|
+
<P></P>
|
|
57
|
+
<P>----------------------------------------------------------------------------</P>
|
|
58
|
+
<P>This formulation of W3C's notice and license became active on December 31
|
|
59
|
+
2002. This version removes the copyright ownership notice such that this license
|
|
60
|
+
can be used with materials other than those owned by the W3C, moves information
|
|
61
|
+
on style sheets, DTDs, and schemas to the <A
|
|
62
|
+
href="http://www.w3.org/Consortium/Legal/IPR-FAQ">Copyright FAQ</A>, reflects
|
|
63
|
+
that ERCIM is now a host of the W3C, includes references to this specific dated
|
|
64
|
+
version of the license, and removes the ambiguous grant of "use". See the <A
|
|
65
|
+
href="http://www.w3.org/Consortium/Legal/copyright-documents-19990405">older
|
|
66
|
+
formulation</A> for the policy prior to this date. Please see our <A
|
|
67
|
+
href="http://www.w3.org/Consortium/Legal/IPR-FAQ">Copyright FAQ</A> for common
|
|
68
|
+
questions about using materials from our site, such as the translating or
|
|
69
|
+
annotating specifications. Other questions about this notice can be directed to
|
|
70
|
+
<A href="mailto:site-policy@w3.org">site-policy@w3.org</A>.</P>
|
|
71
|
+
<P></P>
|
|
72
|
+
<ADDRESS>Joseph Reagle <<A
|
|
73
|
+
href="mailto:site-policy@w3.org">mailto:site-policy@w3.org</A> </ADDRESS>
|
|
74
|
+
<P>Last revised by Reagle $Date: 2005/07/19 16:33:09 $</P></BODY></HTML>
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
2
|
+
<?xml version="1.0" encoding="iso-8859-1"?><HTML
|
|
3
|
+
xmlns="http://www.w3.org/1999/xhtml"><HEAD><TITLE>W3C Software License</TITLE>
|
|
4
|
+
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
|
|
5
|
+
|
|
6
|
+
<META content="MSHTML 6.00.2800.1400" name=GENERATOR></HEAD>
|
|
7
|
+
<BODY text=#000000 bgColor=#ffffff>
|
|
8
|
+
<H1>W3C<SUP>�</SUP> SOFTWARE NOTICE AND LICENSE</H1>
|
|
9
|
+
<H3 id=version><A
|
|
10
|
+
href="http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231">http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231</A></H3>
|
|
11
|
+
<P>This work (and included software, documentation such as READMEs, or other
|
|
12
|
+
related items) is being provided by the copyright holders under the following
|
|
13
|
+
license. By obtaining, using and/or copying this work, you (the licensee) agree
|
|
14
|
+
that you have read, understood, and will comply with the following terms and
|
|
15
|
+
conditions.</P>
|
|
16
|
+
<P>Permission to copy, modify, and distribute this software and its
|
|
17
|
+
documentation, with or without modification, for any purpose and without
|
|
18
|
+
fee or royalty is hereby granted, provided that you include the following on ALL
|
|
19
|
+
copies of the software and documentation or portions thereof, including
|
|
20
|
+
modifications:</P>
|
|
21
|
+
<OL>
|
|
22
|
+
<LI>The full text of this NOTICE in a location viewable to users of the
|
|
23
|
+
redistributed or derivative work.
|
|
24
|
+
<LI>Any pre-existing intellectual property disclaimers, notices, or terms and
|
|
25
|
+
conditions. If none exist, the <A
|
|
26
|
+
href="http://www.w3.org/Consortium/Legal/2002/copyright-software-short-notice-20021231.html">W3C
|
|
27
|
+
Software Short Notice</A> should be included (hypertext is preferred, text is
|
|
28
|
+
permitted) within the body of any redistributed or derivative code.
|
|
29
|
+
<LI>Notice of any changes or modifications to the files, including the date
|
|
30
|
+
changes were made. (We recommend you provide URIs to the location from which
|
|
31
|
+
the code is derived.) </LI></OL>
|
|
32
|
+
<P>THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS
|
|
33
|
+
MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT
|
|
34
|
+
LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE
|
|
35
|
+
OR THAT THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD
|
|
36
|
+
PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.</P>
|
|
37
|
+
<P>COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR
|
|
38
|
+
CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR
|
|
39
|
+
DOCUMENTATION.</P>
|
|
40
|
+
<P>The name and trademarks of copyright holders may NOT be used in advertising
|
|
41
|
+
or publicity pertaining to the software without specific, written prior
|
|
42
|
+
permission. Title to copyright in this software and any associated documentation
|
|
43
|
+
will at all times remain with copyright holders.</P>
|
|
44
|
+
<P></P>
|
|
45
|
+
<P>____________________________________</P>
|
|
46
|
+
<P>This formulation of W3C's notice and license became active on December 31
|
|
47
|
+
2002. This version removes the copyright ownership notice such that this license
|
|
48
|
+
can be used with materials other than those owned by the W3C, reflects that
|
|
49
|
+
ERCIM is now a host of the W3C, includes references to this specific dated
|
|
50
|
+
version of the license, and removes the ambiguous grant of "use". Otherwise,
|
|
51
|
+
this version is the same as the <A
|
|
52
|
+
href="http://www.w3.org/Consortium/Legal/copyright-software-19980720">previous
|
|
53
|
+
version</A> and is written so as to preserve the <A
|
|
54
|
+
href="http://www.gnu.org/philosophy/license-list.html#GPLCompatibleLicenses">Free
|
|
55
|
+
Software Foundation's assessment of GPL compatibility</A> and <A
|
|
56
|
+
href="http://www.opensource.org/licenses/W3C.php">OSI's certification</A> under
|
|
57
|
+
the <A href="http://www.opensource.org/docs/definition.php">Open Source
|
|
58
|
+
Definition</A>. Please see our <A
|
|
59
|
+
href="http://www.w3.org/Consortium/Legal/IPR-FAQ">Copyright FAQ</A> for common
|
|
60
|
+
questions about using materials from our site, including specific terms and
|
|
61
|
+
conditions for packages like libwww, Amaya, and Jigsaw. Other questions about
|
|
62
|
+
this notice can be directed to <A
|
|
63
|
+
href="mailto:site-policy@w3.org">site-policy@w3.org</A>.<BR> </P>
|
|
64
|
+
<ADDRESS>Joseph Reagle <<A
|
|
65
|
+
href="mailto:site-policy@w3.org">mailto:site-policy@w3.org</A> </ADDRESS>
|
|
66
|
+
<P>Last revised by Reagle $Date: 2005/07/19 16:33:09 $</P></BODY></HTML>
|
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
=========================================================================
|
|
2
|
+
== NOTICE file corresponding to section 4(d) of the Apache License, ==
|
|
3
|
+
== Version 2.0, in this case for the Apache xml-commons xml-apis ==
|
|
4
|
+
== distribution. ==
|
|
5
|
+
=========================================================================
|
|
6
|
+
|
|
7
|
+
This product includes software developed by The Apache Software Foundation
|
|
8
|
+
(http://www.apache.org/).
|
|
9
|
+
|
|
10
|
+
Portions of this software were originally based on the following:
|
|
11
|
+
- software copyright (c) 1999, IBM Corporation., http://www.ibm.com.
|
|
12
|
+
- software copyright (c) 1999, Sun Microsystems., http://www.sun.com.
|
|
13
|
+
- software copyright (c) 2000 World Wide Web Consortium, http://www.w3.org
|