libis-format 1.0.7 → 2.0.4
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 +4 -4
- data/.gitignore +2 -0
- data/.travis.yml +32 -24
- data/README.md +2 -2
- data/base/Dockerfile +5 -3
- data/base/rework_path +5 -10
- data/bin/{droid → droid_tool} +0 -0
- data/bin/{fido → fido_tool} +0 -0
- data/lib/libis/format.rb +12 -3
- data/lib/libis/format/cli/convert.rb +4 -4
- data/lib/libis/format/config.rb +16 -12
- data/lib/libis/format/converter/audio_converter.rb +2 -36
- 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 +1 -1
- 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 +6 -132
- 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/extension_identification.rb +4 -4
- data/lib/libis/format/tool/identification_tool.rb +6 -6
- data/lib/libis/format/tool/pdf_merge.rb +3 -3
- data/lib/libis/format/tool/{pdf_copy.rb → pdf_metadata.rb} +5 -5
- 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 +4 -4
- data/lib/libis/format/tool/pdf_watermark.rb +47 -0
- data/lib/libis/format/tool/spreadsheet_to_ods.rb +1 -0
- data/lib/libis/format/version.rb +1 -1
- data/lib/libis/format/yaml_loader.rb +71 -0
- data/libis-format.gemspec +3 -2
- 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/fop.bat +75 -75
- data/tools/fop/fop.cmd +31 -31
- data/tools/fop/fop.js +341 -341
- data/tools/fop/lib/avalon-framework.NOTICE.TXT +11 -11
- data/tools/fop/lib/xml-apis.LICENSE-SAX.html +17 -17
- data/tools/fop/lib/xml-apis.LICENSE.DOM-documentation.html +74 -74
- data/tools/fop/lib/xml-apis.LICENSE.DOM-software.html +66 -66
- metadata +32 -19
- data/bin/pdf_copy +0 -13
- data/lib/libis/format/type_database.rb +0 -133
- data/lib/libis/format/type_database_impl.rb +0 -120
- data/tools/bcpkix-jdk15on-1.49.jar +0 -0
- data/tools/bcprov-jdk15on-1.49.jar +0 -0
@@ -1,11 +1,11 @@
|
|
1
|
-
=========================================================================
|
2
|
-
== NOTICE file corresponding to the section 4 d of ==
|
3
|
-
== the Apache License, Version 2.0, ==
|
4
|
-
=========================================================================
|
5
|
-
|
6
|
-
This product is developed by the Apache Avalon Project.
|
7
|
-
http://avalon.apache.org
|
8
|
-
|
9
|
-
The names "Avalon" and "Merlin" must not be used to endorse or promote
|
10
|
-
products derived from this software without prior written permission.
|
11
|
-
For written permission, please contact pmc@avalon.apache.org.
|
1
|
+
=========================================================================
|
2
|
+
== NOTICE file corresponding to the section 4 d of ==
|
3
|
+
== the Apache License, Version 2.0, ==
|
4
|
+
=========================================================================
|
5
|
+
|
6
|
+
This product is developed by the Apache Avalon Project.
|
7
|
+
http://avalon.apache.org
|
8
|
+
|
9
|
+
The names "Avalon" and "Merlin" must not be used to endorse or promote
|
10
|
+
products derived from this software without prior written permission.
|
11
|
+
For written permission, please contact pmc@avalon.apache.org.
|
@@ -1,17 +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
|
-
|
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
|
+
|
@@ -1,74 +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>
|
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>
|
@@ -1,66 +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>
|
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>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: libis-format
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kris Dekeyser
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-03-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -84,16 +84,16 @@ dependencies:
|
|
84
84
|
name: libis-tools
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
86
86
|
requirements:
|
87
|
-
- - "
|
87
|
+
- - ">="
|
88
88
|
- !ruby/object:Gem::Version
|
89
|
-
version:
|
89
|
+
version: 1.0.9
|
90
90
|
type: :runtime
|
91
91
|
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
|
-
- - "
|
94
|
+
- - ">="
|
95
95
|
- !ruby/object:Gem::Version
|
96
|
-
version:
|
96
|
+
version: 1.0.9
|
97
97
|
- !ruby/object:Gem::Dependency
|
98
98
|
name: os
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
@@ -169,11 +169,10 @@ description: Collection of tools and classes that help to identify formats of bi
|
|
169
169
|
email:
|
170
170
|
- kris.dekeyser@libis.be
|
171
171
|
executables:
|
172
|
-
-
|
173
|
-
-
|
172
|
+
- droid_tool
|
173
|
+
- fido_tool
|
174
174
|
- formatinfo
|
175
175
|
- libis_format
|
176
|
-
- pdf_copy
|
177
176
|
extensions: []
|
178
177
|
extra_rdoc_files: []
|
179
178
|
files:
|
@@ -188,11 +187,10 @@ files:
|
|
188
187
|
- base/Dockerfile.alpine
|
189
188
|
- base/Dockerfile.rvm
|
190
189
|
- base/rework_path
|
191
|
-
- bin/
|
192
|
-
- bin/
|
190
|
+
- bin/droid_tool
|
191
|
+
- bin/fido_tool
|
193
192
|
- bin/formatinfo
|
194
193
|
- bin/libis_format
|
195
|
-
- bin/pdf_copy
|
196
194
|
- data/ISOcoated_v2_eci.icc
|
197
195
|
- data/PDFA_def.ps
|
198
196
|
- data/ead.xsd
|
@@ -214,15 +212,29 @@ files:
|
|
214
212
|
- lib/libis/format/converter/base.rb
|
215
213
|
- lib/libis/format/converter/chain.rb
|
216
214
|
- lib/libis/format/converter/fop_pdf_converter.rb
|
215
|
+
- lib/libis/format/converter/image_assembler.rb
|
217
216
|
- lib/libis/format/converter/image_converter.rb
|
217
|
+
- lib/libis/format/converter/image_splitter.rb
|
218
|
+
- lib/libis/format/converter/image_watermarker.rb
|
218
219
|
- lib/libis/format/converter/jp2_converter.rb
|
219
220
|
- lib/libis/format/converter/office_converter.rb
|
221
|
+
- lib/libis/format/converter/pdf_assembler.rb
|
220
222
|
- lib/libis/format/converter/pdf_converter.rb
|
223
|
+
- lib/libis/format/converter/pdf_metadata.rb
|
224
|
+
- lib/libis/format/converter/pdf_optimizer.rb
|
225
|
+
- lib/libis/format/converter/pdf_protecter.rb
|
226
|
+
- lib/libis/format/converter/pdf_selecter.rb
|
227
|
+
- lib/libis/format/converter/pdf_splitter.rb
|
228
|
+
- lib/libis/format/converter/pdf_watermarker_header.rb
|
229
|
+
- lib/libis/format/converter/pdf_watermarker_image.rb
|
230
|
+
- lib/libis/format/converter/pdf_watermarker_text.rb
|
221
231
|
- lib/libis/format/converter/repository.rb
|
222
232
|
- lib/libis/format/converter/spreadsheet_converter.rb
|
223
233
|
- lib/libis/format/converter/video_converter.rb
|
224
234
|
- lib/libis/format/converter/xslt_converter.rb
|
225
235
|
- lib/libis/format/identifier.rb
|
236
|
+
- lib/libis/format/info.rb
|
237
|
+
- lib/libis/format/library.rb
|
226
238
|
- lib/libis/format/tool.rb
|
227
239
|
- lib/libis/format/tool/droid.rb
|
228
240
|
- lib/libis/format/tool/extension_identification.rb
|
@@ -232,20 +244,22 @@ files:
|
|
232
244
|
- lib/libis/format/tool/fop_pdf.rb
|
233
245
|
- lib/libis/format/tool/identification_tool.rb
|
234
246
|
- lib/libis/format/tool/office_to_pdf.rb
|
235
|
-
- lib/libis/format/tool/pdf_copy.rb
|
236
247
|
- lib/libis/format/tool/pdf_merge.rb
|
248
|
+
- lib/libis/format/tool/pdf_metadata.rb
|
237
249
|
- lib/libis/format/tool/pdf_optimizer.rb
|
250
|
+
- lib/libis/format/tool/pdf_protect.rb
|
251
|
+
- lib/libis/format/tool/pdf_select.rb
|
238
252
|
- lib/libis/format/tool/pdf_split.rb
|
239
253
|
- lib/libis/format/tool/pdf_to_pdfa.rb
|
254
|
+
- lib/libis/format/tool/pdf_watermark.rb
|
240
255
|
- lib/libis/format/tool/pdfa_validator.rb
|
241
256
|
- lib/libis/format/tool/spreadsheet_to_ods.rb
|
242
|
-
- lib/libis/format/type_database.rb
|
243
|
-
- lib/libis/format/type_database_impl.rb
|
244
257
|
- lib/libis/format/version.rb
|
258
|
+
- lib/libis/format/yaml_loader.rb
|
245
259
|
- libis-format.gemspec
|
246
260
|
- tools/PdfTool.jar
|
247
|
-
- tools/bcpkix-jdk15on-
|
248
|
-
- tools/bcprov-jdk15on-
|
261
|
+
- tools/bcpkix-jdk15on-167.jar
|
262
|
+
- tools/bcprov-jdk15on-167.jar
|
249
263
|
- tools/fop/build/fop.jar
|
250
264
|
- tools/fop/conf/fop.xconf
|
251
265
|
- tools/fop/fop
|
@@ -317,8 +331,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
317
331
|
- !ruby/object:Gem::Version
|
318
332
|
version: '0'
|
319
333
|
requirements: []
|
320
|
-
|
321
|
-
rubygems_version: 2.7.8
|
334
|
+
rubygems_version: 3.1.4
|
322
335
|
signing_key:
|
323
336
|
specification_version: 4
|
324
337
|
summary: LIBIS File format format services.
|