iiif_print 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.coveralls.yml +2 -0
- data/.env +5 -0
- data/.fcrepo_wrapper +4 -0
- data/.github/release.yml +20 -0
- data/.github/workflows/branches.yml +24 -0
- data/.github/workflows/build-lint-test-action.yaml +33 -0
- data/.github/workflows/release_labels.yml +25 -0
- data/.gitignore +52 -0
- data/.rubocop.yml +177 -0
- data/.solr_wrapper +8 -0
- data/.travis.yml +49 -0
- data/CONTRIBUTING.md +181 -0
- data/Dockerfile +15 -0
- data/Gemfile +52 -0
- data/LICENSE +203 -0
- data/README.md +203 -0
- data/Rakefile +38 -0
- data/app/actors/iiif_print/actors/file_set_actor_decorator.rb +56 -0
- data/app/assets/config/iiif_print_manifest.js +2 -0
- data/app/assets/images/iiif_print/.keep +0 -0
- data/app/assets/javascripts/iiif_print/autocomplete_fix.js +33 -0
- data/app/assets/javascripts/iiif_print/ocr_search.js.erb +6 -0
- data/app/assets/javascripts/iiif_print.js +3 -0
- data/app/assets/stylesheets/iiif_print/_iiif_print.scss +4 -0
- data/app/assets/stylesheets/iiif_print/_issue_search.scss +13 -0
- data/app/assets/stylesheets/iiif_print/_issues_calendar.scss +18 -0
- data/app/assets/stylesheets/iiif_print/_newspapers_search.scss +38 -0
- data/app/assets/stylesheets/iiif_print/_search_results.scss +6 -0
- data/app/helpers/hyrax/iiif_helper.rb +22 -0
- data/app/helpers/iiif_print/application_helper.rb +5 -0
- data/app/helpers/iiif_print_helper.rb +64 -0
- data/app/indexers/concerns/iiif_print/child_indexer.rb +34 -0
- data/app/indexers/concerns/iiif_print/file_set_indexer.rb +29 -0
- data/app/mailers/iiif_print/application_mailer.rb +8 -0
- data/app/models/concerns/iiif_print/set_child_flag.rb +29 -0
- data/app/models/concerns/iiif_print/solr/document.rb +47 -0
- data/app/models/iiif_print/application_record.rb +6 -0
- data/app/models/iiif_print/derivative_attachment.rb +8 -0
- data/app/models/iiif_print/iiif_search_response_decorator.rb +17 -0
- data/app/models/iiif_print/ingest_file_relation.rb +14 -0
- data/app/models/iiif_print/pending_relationship.rb +7 -0
- data/app/presenters/iiif_print/iiif_manifest_presenter_behavior.rb +10 -0
- data/app/presenters/iiif_print/iiif_manifest_presenter_factory_behavior.rb +33 -0
- data/app/presenters/iiif_print/work_show_presenter_decorator.rb +29 -0
- data/app/renderers/hyrax/renderers/faceted_attribute_renderer_decorator.rb +18 -0
- data/app/search_builders/concerns/iiif_print/exclude_models.rb +17 -0
- data/app/search_builders/concerns/iiif_print/highlight_search_params.rb +14 -0
- data/app/services/iiif_print/manifest_builder_service_behavior.rb +97 -0
- data/app/services/iiif_print/pluggable_derivative_service.rb +120 -0
- data/app/views/catalog/_snippets_more.html.erb +16 -0
- data/app/views/hyrax/base/_representative_media.html.erb +9 -0
- data/app/views/hyrax/base/iiif_viewers/_universal_viewer.html.erb +8 -0
- data/app/views/hyrax/file_sets/_actions.html.erb +45 -0
- data/bin/rails +13 -0
- data/config/fcrepo_wrapper_test.yml +5 -0
- data/config/initializers/assets.rb +2 -0
- data/config/locales/iiif_print.de.yml +148 -0
- data/config/locales/iiif_print.en.yml +119 -0
- data/config/locales/iiif_print.es.yml +148 -0
- data/config/locales/iiif_print.fr.yml +149 -0
- data/config/locales/iiif_print.it.yml +142 -0
- data/config/locales/iiif_print.pt-BR.yml +148 -0
- data/config/locales/iiif_print.zh.yml +142 -0
- data/config/solr_wrapper_test.yml +9 -0
- data/config/test-fixture/solr-config/_rest_managed.json +3 -0
- data/config/test-fixture/solr-config/admin-extra.html +31 -0
- data/config/test-fixture/solr-config/elevate.xml +36 -0
- data/config/test-fixture/solr-config/mapping-ISOLatin1Accent.txt +246 -0
- data/config/test-fixture/solr-config/protwords.txt +21 -0
- data/config/test-fixture/solr-config/schema.xml +366 -0
- data/config/test-fixture/solr-config/scripts.conf +24 -0
- data/config/test-fixture/solr-config/solrconfig.xml +322 -0
- data/config/test-fixture/solr-config/spellings.txt +2 -0
- data/config/test-fixture/solr-config/stopwords.txt +58 -0
- data/config/test-fixture/solr-config/stopwords_en.txt +58 -0
- data/config/test-fixture/solr-config/synonyms.txt +31 -0
- data/config/test-fixture/solr-config/xslt/example.xsl +132 -0
- data/config/test-fixture/solr-config/xslt/example_atom.xsl +67 -0
- data/config/test-fixture/solr-config/xslt/example_rss.xsl +66 -0
- data/config/test-fixture/solr-config/xslt/luke.xsl +337 -0
- data/config/vendor/fits.xml +55 -0
- data/config/vendor/imagemagick-6-policy.xml +76 -0
- data/db/migrate/20181214181358_create_iiif_print_derivative_attachments.rb +12 -0
- data/db/migrate/20190107165909_create_iiif_print_ingest_file_relations.rb +11 -0
- data/db/migrate/20230109000000_create_iiif_print_pending_relationships.rb +11 -0
- data/docker-compose.yml +129 -0
- data/iiif_print.gemspec +43 -0
- data/lib/generators/iiif_print/assets_generator.rb +29 -0
- data/lib/generators/iiif_print/catalog_controller_generator.rb +32 -0
- data/lib/generators/iiif_print/install_generator.rb +52 -0
- data/lib/generators/iiif_print/templates/config/initializers/iiif_print.rb +22 -0
- data/lib/generators/iiif_print/templates/iiif_print.scss +1 -0
- data/lib/iiif_print/base_derivative_service.rb +113 -0
- data/lib/iiif_print/blacklight_iiif_search/annotation_decorator.rb +84 -0
- data/lib/iiif_print/catalog_search_builder.rb +31 -0
- data/lib/iiif_print/configuration.rb +99 -0
- data/lib/iiif_print/data/fileset_helper.rb +25 -0
- data/lib/iiif_print/data/path_helper.rb +40 -0
- data/lib/iiif_print/data/work_derivatives.rb +323 -0
- data/lib/iiif_print/data/work_file.rb +92 -0
- data/lib/iiif_print/data/work_files.rb +199 -0
- data/lib/iiif_print/data.rb +35 -0
- data/lib/iiif_print/engine.rb +77 -0
- data/lib/iiif_print/errors.rb +9 -0
- data/lib/iiif_print/image_tool.rb +119 -0
- data/lib/iiif_print/jobs/application_job.rb +8 -0
- data/lib/iiif_print/jobs/child_works_from_pdf_job.rb +107 -0
- data/lib/iiif_print/jobs/create_relationships_job.rb +78 -0
- data/lib/iiif_print/jp2_derivative_service.rb +118 -0
- data/lib/iiif_print/jp2_image_metadata.rb +81 -0
- data/lib/iiif_print/lineage_service.rb +41 -0
- data/lib/iiif_print/metadata.rb +125 -0
- data/lib/iiif_print/pdf_derivative_service.rb +42 -0
- data/lib/iiif_print/split_pdfs/child_work_creation_from_pdf_service.rb +75 -0
- data/lib/iiif_print/split_pdfs/pages_into_images_service.rb +130 -0
- data/lib/iiif_print/split_pdfs/pdf_image_extraction_service.rb +85 -0
- data/lib/iiif_print/text_extraction/alto_reader.rb +123 -0
- data/lib/iiif_print/text_extraction/hocr_reader.rb +172 -0
- data/lib/iiif_print/text_extraction/page_ocr.rb +87 -0
- data/lib/iiif_print/text_extraction/render_alto.rb +84 -0
- data/lib/iiif_print/text_extraction/word_coords_builder.rb +38 -0
- data/lib/iiif_print/text_extraction.rb +11 -0
- data/lib/iiif_print/text_extraction_derivative_service.rb +47 -0
- data/lib/iiif_print/text_formats_from_alto_service.rb +77 -0
- data/lib/iiif_print/tiff_derivative_service.rb +50 -0
- data/lib/iiif_print/version.rb +3 -0
- data/lib/iiif_print/works_controller_behavior.rb +9 -0
- data/lib/iiif_print.rb +136 -0
- data/lib/tasks/set_child_works.rake +22 -0
- data/spec/.keep.txt +1 -0
- data/spec/factories/ability.rb +6 -0
- data/spec/factories/newspaper_issue.rb +7 -0
- data/spec/factories/newspaper_page.rb +7 -0
- data/spec/factories/newspaper_page_solr_document.rb +12 -0
- data/spec/factories/newspaper_title.rb +8 -0
- data/spec/factories/uploaded_pdf_file.rb +9 -0
- data/spec/factories/uploaded_txt_file.rb +9 -0
- data/spec/factories/user.rb +13 -0
- data/spec/fixtures/files/4.1.07.jp2 +0 -0
- data/spec/fixtures/files/4.1.07.tiff +0 -0
- data/spec/fixtures/files/README.md +7 -0
- data/spec/fixtures/files/alto-2-0.xsd +714 -0
- data/spec/fixtures/files/broken-truncated.pdf +0 -0
- data/spec/fixtures/files/credits.md +16 -0
- data/spec/fixtures/files/lowres-gray-via-ndnp-sample.tiff +0 -0
- data/spec/fixtures/files/minimal-1-page.pdf +0 -0
- data/spec/fixtures/files/minimal-2-page.pdf +0 -0
- data/spec/fixtures/files/minimal-alto.xml +31 -0
- data/spec/fixtures/files/ndnp-alto-sample.xml +24 -0
- data/spec/fixtures/files/ndnp-sample1-json.json +1 -0
- data/spec/fixtures/files/ndnp-sample1-txt.txt +1 -0
- data/spec/fixtures/files/ndnp-sample1.pdf +0 -0
- data/spec/fixtures/files/ocr_alto.xml +202 -0
- data/spec/fixtures/files/ocr_alto_scaled_4pts_per_px.xml +202 -0
- data/spec/fixtures/files/ocr_color.tiff +0 -0
- data/spec/fixtures/files/ocr_gray.jp2 +0 -0
- data/spec/fixtures/files/ocr_gray.tiff +0 -0
- data/spec/fixtures/files/ocr_mono.tiff +0 -0
- data/spec/fixtures/files/ocr_mono_text_hocr.html +78 -0
- data/spec/fixtures/files/page1.tiff +0 -0
- data/spec/fixtures/files/sample-4page-issue.pdf +0 -0
- data/spec/fixtures/files/sample-color-newsletter.pdf +0 -0
- data/spec/fixtures/files/thumbnail.jpg +0 -0
- data/spec/helpers/hyrax/iiif_helper_spec.rb +65 -0
- data/spec/helpers/iiif_print_helper_spec.rb +43 -0
- data/spec/iiif_print/base_derivative_service_spec.rb +11 -0
- data/spec/iiif_print/blacklight_iiif_search/annotation_decorator_spec.rb +51 -0
- data/spec/iiif_print/catalog_search_builder_spec.rb +60 -0
- data/spec/iiif_print/configuration_spec.rb +67 -0
- data/spec/iiif_print/data/work_derivatives_spec.rb +245 -0
- data/spec/iiif_print/data/work_file_spec.rb +99 -0
- data/spec/iiif_print/data/work_files_spec.rb +237 -0
- data/spec/iiif_print/image_tool_spec.rb +109 -0
- data/spec/iiif_print/jobs/child_works_from_pdf_job_spec.rb +30 -0
- data/spec/iiif_print/jobs/create_relationships_job_spec.rb +17 -0
- data/spec/iiif_print/jp2_image_metadata_spec.rb +37 -0
- data/spec/iiif_print/lineage_service_spec.rb +13 -0
- data/spec/iiif_print/metadata_spec.rb +115 -0
- data/spec/iiif_print/split_pdfs/pages_into_images_service_spec.rb +6 -0
- data/spec/iiif_print/text_extraction/alto_reader_spec.rb +49 -0
- data/spec/iiif_print/text_extraction/hocr_reader_spec.rb +45 -0
- data/spec/iiif_print/text_extraction/page_ocr_spec.rb +84 -0
- data/spec/iiif_print/text_extraction/render_alto_spec.rb +54 -0
- data/spec/iiif_print/text_extraction/word_coords_builder_spec.rb +44 -0
- data/spec/iiif_print_spec.rb +51 -0
- data/spec/misc_shared.rb +111 -0
- data/spec/models/iiif_print/derivative_attachment_spec.rb +37 -0
- data/spec/models/iiif_print/ingest_file_relation_spec.rb +56 -0
- data/spec/models/solr_document_spec.rb +14 -0
- data/spec/presenters/iiif_print/iiif_manifest_presenter_behavior_spec.rb +19 -0
- data/spec/presenters/iiif_print/iiif_manifest_presenter_factory_behavior_spec.rb +49 -0
- data/spec/services/iiif_print/jp2_derivative_service_spec.rb +59 -0
- data/spec/services/iiif_print/pdf_derivative_service_spec.rb +66 -0
- data/spec/services/iiif_print/pluggable_derivative_service_spec.rb +178 -0
- data/spec/services/iiif_print/text_extraction_derivative_service_spec.rb +82 -0
- data/spec/services/iiif_print/text_formats_from_alto_service_spec.rb +127 -0
- data/spec/services/iiif_print/tiff_derivative_service_spec.rb +65 -0
- data/spec/spec_helper.rb +181 -0
- data/spec/support/controller_level_helpers.rb +28 -0
- data/spec/support/iiif_print_models.rb +127 -0
- data/spec/test_app_templates/blacklight.yml +9 -0
- data/spec/test_app_templates/fedora.yml +15 -0
- data/spec/test_app_templates/lib/generators/test_app_generator.rb +40 -0
- data/spec/test_app_templates/redis.yml +9 -0
- data/spec/test_app_templates/solr/conf/schema.xml +362 -0
- data/spec/test_app_templates/solr/conf/solrconfig.xml +322 -0
- data/spec/test_app_templates/solr.yml +7 -0
- data/tasks/iiif_print_dev.rake +34 -0
- data/tmp/.keep +0 -0
- metadata +605 -0
@@ -0,0 +1,66 @@
|
|
1
|
+
<?xml version='1.0' encoding='UTF-8'?>
|
2
|
+
|
3
|
+
<!--
|
4
|
+
* Licensed to the Apache Software Foundation (ASF) under one or more
|
5
|
+
* contributor license agreements. See the NOTICE file distributed with
|
6
|
+
* this work for additional information regarding copyright ownership.
|
7
|
+
* The ASF licenses this file to You under the Apache License, Version 2.0
|
8
|
+
* (the "License"); you may not use this file except in compliance with
|
9
|
+
* the License. You may obtain a copy of the License at
|
10
|
+
*
|
11
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
*
|
13
|
+
* Unless required by applicable law or agreed to in writing, software
|
14
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
15
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
16
|
+
* See the License for the specific language governing permissions and
|
17
|
+
* limitations under the License.
|
18
|
+
-->
|
19
|
+
|
20
|
+
<!--
|
21
|
+
Simple transform of Solr query results to RSS
|
22
|
+
-->
|
23
|
+
|
24
|
+
<xsl:stylesheet version='1.0'
|
25
|
+
xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>
|
26
|
+
|
27
|
+
<xsl:output
|
28
|
+
method="xml"
|
29
|
+
encoding="utf-8"
|
30
|
+
media-type="text/xml; charset=UTF-8"
|
31
|
+
/>
|
32
|
+
<xsl:template match='/'>
|
33
|
+
<rss version="2.0">
|
34
|
+
<channel>
|
35
|
+
<title>Example Solr RSS 2.0 Feed</title>
|
36
|
+
<link>http://localhost:8983/solr</link>
|
37
|
+
<description>
|
38
|
+
This has been formatted by the sample "example_rss.xsl" transform -
|
39
|
+
use your own XSLT to get a nicer RSS feed.
|
40
|
+
</description>
|
41
|
+
<language>en-us</language>
|
42
|
+
<docs>http://localhost:8983/solr</docs>
|
43
|
+
<xsl:apply-templates select="response/result/doc"/>
|
44
|
+
</channel>
|
45
|
+
</rss>
|
46
|
+
</xsl:template>
|
47
|
+
|
48
|
+
<!-- search results xslt -->
|
49
|
+
<xsl:template match="doc">
|
50
|
+
<xsl:variable name="id" select="str[@name='id']"/>
|
51
|
+
<xsl:variable name="timestamp" select="date[@name='timestamp']"/>
|
52
|
+
<item>
|
53
|
+
<title><xsl:value-of select="str[@name='name']"/></title>
|
54
|
+
<link>
|
55
|
+
http://localhost:8983/solr/select?q=id:<xsl:value-of select="$id"/>
|
56
|
+
</link>
|
57
|
+
<description>
|
58
|
+
<xsl:value-of select="arr[@name='features']"/>
|
59
|
+
</description>
|
60
|
+
<pubDate><xsl:value-of select="$timestamp"/></pubDate>
|
61
|
+
<guid>
|
62
|
+
http://localhost:8983/solr/select?q=id:<xsl:value-of select="$id"/>
|
63
|
+
</guid>
|
64
|
+
</item>
|
65
|
+
</xsl:template>
|
66
|
+
</xsl:stylesheet>
|
@@ -0,0 +1,337 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!--
|
3
|
+
Licensed to the Apache Software Foundation (ASF) under one or more
|
4
|
+
contributor license agreements. See the NOTICE file distributed with
|
5
|
+
this work for additional information regarding copyright ownership.
|
6
|
+
The ASF licenses this file to You under the Apache License, Version 2.0
|
7
|
+
(the "License"); you may not use this file except in compliance with
|
8
|
+
the License. You may obtain a copy of the License at
|
9
|
+
|
10
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
|
12
|
+
Unless required by applicable law or agreed to in writing, software
|
13
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
+
See the License for the specific language governing permissions and
|
16
|
+
limitations under the License.
|
17
|
+
-->
|
18
|
+
|
19
|
+
|
20
|
+
<!--
|
21
|
+
Display the luke request handler with graphs
|
22
|
+
-->
|
23
|
+
<xsl:stylesheet
|
24
|
+
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
25
|
+
xmlns="http://www.w3.org/1999/xhtml"
|
26
|
+
version="1.0"
|
27
|
+
>
|
28
|
+
<xsl:output
|
29
|
+
method="html"
|
30
|
+
encoding="UTF-8"
|
31
|
+
media-type="text/html; charset=UTF-8"
|
32
|
+
doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
|
33
|
+
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
|
34
|
+
/>
|
35
|
+
|
36
|
+
<xsl:variable name="title">Solr Luke Request Handler Response</xsl:variable>
|
37
|
+
|
38
|
+
<xsl:template match="/">
|
39
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
40
|
+
<head>
|
41
|
+
<link rel="stylesheet" type="text/css" href="solr-admin.css"/>
|
42
|
+
<link rel="icon" href="favicon.ico" type="image/ico"/>
|
43
|
+
<link rel="shortcut icon" href="favicon.ico" type="image/ico"/>
|
44
|
+
<title>
|
45
|
+
<xsl:value-of select="$title"/>
|
46
|
+
</title>
|
47
|
+
<xsl:call-template name="css"/>
|
48
|
+
|
49
|
+
</head>
|
50
|
+
<body>
|
51
|
+
<h1>
|
52
|
+
<xsl:value-of select="$title"/>
|
53
|
+
</h1>
|
54
|
+
<div class="doc">
|
55
|
+
<ul>
|
56
|
+
<xsl:if test="response/lst[@name='index']">
|
57
|
+
<li>
|
58
|
+
<a href="#index">Index Statistics</a>
|
59
|
+
</li>
|
60
|
+
</xsl:if>
|
61
|
+
<xsl:if test="response/lst[@name='fields']">
|
62
|
+
<li>
|
63
|
+
<a href="#fields">Field Statistics</a>
|
64
|
+
<ul>
|
65
|
+
<xsl:for-each select="response/lst[@name='fields']/lst">
|
66
|
+
<li>
|
67
|
+
<a href="#{@name}">
|
68
|
+
<xsl:value-of select="@name"/>
|
69
|
+
</a>
|
70
|
+
</li>
|
71
|
+
</xsl:for-each>
|
72
|
+
</ul>
|
73
|
+
</li>
|
74
|
+
</xsl:if>
|
75
|
+
<xsl:if test="response/lst[@name='doc']">
|
76
|
+
<li>
|
77
|
+
<a href="#doc">Document statistics</a>
|
78
|
+
</li>
|
79
|
+
</xsl:if>
|
80
|
+
</ul>
|
81
|
+
</div>
|
82
|
+
<xsl:if test="response/lst[@name='index']">
|
83
|
+
<h2><a name="index"/>Index Statistics</h2>
|
84
|
+
<xsl:apply-templates select="response/lst[@name='index']"/>
|
85
|
+
</xsl:if>
|
86
|
+
<xsl:if test="response/lst[@name='fields']">
|
87
|
+
<h2><a name="fields"/>Field Statistics</h2>
|
88
|
+
<xsl:apply-templates select="response/lst[@name='fields']"/>
|
89
|
+
</xsl:if>
|
90
|
+
<xsl:if test="response/lst[@name='doc']">
|
91
|
+
<h2><a name="doc"/>Document statistics</h2>
|
92
|
+
<xsl:apply-templates select="response/lst[@name='doc']"/>
|
93
|
+
</xsl:if>
|
94
|
+
</body>
|
95
|
+
</html>
|
96
|
+
</xsl:template>
|
97
|
+
|
98
|
+
<xsl:template match="lst">
|
99
|
+
<xsl:if test="parent::lst">
|
100
|
+
<tr>
|
101
|
+
<td colspan="2">
|
102
|
+
<div class="doc">
|
103
|
+
<xsl:call-template name="list"/>
|
104
|
+
</div>
|
105
|
+
</td>
|
106
|
+
</tr>
|
107
|
+
</xsl:if>
|
108
|
+
<xsl:if test="not(parent::lst)">
|
109
|
+
<div class="doc">
|
110
|
+
<xsl:call-template name="list"/>
|
111
|
+
</div>
|
112
|
+
</xsl:if>
|
113
|
+
</xsl:template>
|
114
|
+
|
115
|
+
<xsl:template name="list">
|
116
|
+
<xsl:if test="count(child::*)>0">
|
117
|
+
<table>
|
118
|
+
<thead>
|
119
|
+
<tr>
|
120
|
+
<th colspan="2">
|
121
|
+
<p>
|
122
|
+
<a name="{@name}"/>
|
123
|
+
</p>
|
124
|
+
<xsl:value-of select="@name"/>
|
125
|
+
</th>
|
126
|
+
</tr>
|
127
|
+
</thead>
|
128
|
+
<tbody>
|
129
|
+
<xsl:choose>
|
130
|
+
<xsl:when
|
131
|
+
test="@name='histogram'">
|
132
|
+
<tr>
|
133
|
+
<td colspan="2">
|
134
|
+
<xsl:call-template name="histogram"/>
|
135
|
+
</td>
|
136
|
+
</tr>
|
137
|
+
</xsl:when>
|
138
|
+
<xsl:otherwise>
|
139
|
+
<xsl:apply-templates/>
|
140
|
+
</xsl:otherwise>
|
141
|
+
</xsl:choose>
|
142
|
+
</tbody>
|
143
|
+
</table>
|
144
|
+
</xsl:if>
|
145
|
+
</xsl:template>
|
146
|
+
|
147
|
+
<xsl:template name="histogram">
|
148
|
+
<div class="doc">
|
149
|
+
<xsl:call-template name="barchart">
|
150
|
+
<xsl:with-param name="max_bar_width">50</xsl:with-param>
|
151
|
+
<xsl:with-param name="iwidth">800</xsl:with-param>
|
152
|
+
<xsl:with-param name="iheight">160</xsl:with-param>
|
153
|
+
<xsl:with-param name="fill">blue</xsl:with-param>
|
154
|
+
</xsl:call-template>
|
155
|
+
</div>
|
156
|
+
</xsl:template>
|
157
|
+
|
158
|
+
<xsl:template name="barchart">
|
159
|
+
<xsl:param name="max_bar_width"/>
|
160
|
+
<xsl:param name="iwidth"/>
|
161
|
+
<xsl:param name="iheight"/>
|
162
|
+
<xsl:param name="fill"/>
|
163
|
+
<xsl:variable name="max">
|
164
|
+
<xsl:for-each select="int">
|
165
|
+
<xsl:sort data-type="number" order="descending"/>
|
166
|
+
<xsl:if test="position()=1">
|
167
|
+
<xsl:value-of select="."/>
|
168
|
+
</xsl:if>
|
169
|
+
</xsl:for-each>
|
170
|
+
</xsl:variable>
|
171
|
+
<xsl:variable name="bars">
|
172
|
+
<xsl:value-of select="count(int)"/>
|
173
|
+
</xsl:variable>
|
174
|
+
<xsl:variable name="bar_width">
|
175
|
+
<xsl:choose>
|
176
|
+
<xsl:when test="$max_bar_width < ($iwidth div $bars)">
|
177
|
+
<xsl:value-of select="$max_bar_width"/>
|
178
|
+
</xsl:when>
|
179
|
+
<xsl:otherwise>
|
180
|
+
<xsl:value-of select="$iwidth div $bars"/>
|
181
|
+
</xsl:otherwise>
|
182
|
+
</xsl:choose>
|
183
|
+
</xsl:variable>
|
184
|
+
<table class="histogram">
|
185
|
+
<tbody>
|
186
|
+
<tr>
|
187
|
+
<xsl:for-each select="int">
|
188
|
+
<td>
|
189
|
+
<xsl:value-of select="."/>
|
190
|
+
<div class="histogram">
|
191
|
+
<xsl:attribute name="style">background-color: <xsl:value-of select="$fill"/>; width: <xsl:value-of select="$bar_width"/>px; height: <xsl:value-of select="($iheight*number(.)) div $max"/>px;</xsl:attribute>
|
192
|
+
</div>
|
193
|
+
</td>
|
194
|
+
</xsl:for-each>
|
195
|
+
</tr>
|
196
|
+
<tr>
|
197
|
+
<xsl:for-each select="int">
|
198
|
+
<td>
|
199
|
+
<xsl:value-of select="@name"/>
|
200
|
+
</td>
|
201
|
+
</xsl:for-each>
|
202
|
+
</tr>
|
203
|
+
</tbody>
|
204
|
+
</table>
|
205
|
+
</xsl:template>
|
206
|
+
|
207
|
+
<xsl:template name="keyvalue">
|
208
|
+
<xsl:choose>
|
209
|
+
<xsl:when test="@name">
|
210
|
+
<tr>
|
211
|
+
<td class="name">
|
212
|
+
<xsl:value-of select="@name"/>
|
213
|
+
</td>
|
214
|
+
<td class="value">
|
215
|
+
<xsl:value-of select="."/>
|
216
|
+
</td>
|
217
|
+
</tr>
|
218
|
+
</xsl:when>
|
219
|
+
<xsl:otherwise>
|
220
|
+
<xsl:value-of select="."/>
|
221
|
+
</xsl:otherwise>
|
222
|
+
</xsl:choose>
|
223
|
+
</xsl:template>
|
224
|
+
|
225
|
+
<xsl:template match="int|bool|long|float|double|uuid|date">
|
226
|
+
<xsl:call-template name="keyvalue"/>
|
227
|
+
</xsl:template>
|
228
|
+
|
229
|
+
<xsl:template match="arr">
|
230
|
+
<tr>
|
231
|
+
<td class="name">
|
232
|
+
<xsl:value-of select="@name"/>
|
233
|
+
</td>
|
234
|
+
<td class="value">
|
235
|
+
<ul>
|
236
|
+
<xsl:for-each select="child::*">
|
237
|
+
<li>
|
238
|
+
<xsl:apply-templates/>
|
239
|
+
</li>
|
240
|
+
</xsl:for-each>
|
241
|
+
</ul>
|
242
|
+
</td>
|
243
|
+
</tr>
|
244
|
+
</xsl:template>
|
245
|
+
|
246
|
+
<xsl:template match="str">
|
247
|
+
<xsl:choose>
|
248
|
+
<xsl:when test="@name='schema' or @name='index' or @name='flags'">
|
249
|
+
<xsl:call-template name="schema"/>
|
250
|
+
</xsl:when>
|
251
|
+
<xsl:otherwise>
|
252
|
+
<xsl:call-template name="keyvalue"/>
|
253
|
+
</xsl:otherwise>
|
254
|
+
</xsl:choose>
|
255
|
+
</xsl:template>
|
256
|
+
|
257
|
+
<xsl:template name="schema">
|
258
|
+
<tr>
|
259
|
+
<td class="name">
|
260
|
+
<xsl:value-of select="@name"/>
|
261
|
+
</td>
|
262
|
+
<td class="value">
|
263
|
+
<xsl:if test="contains(.,'unstored')">
|
264
|
+
<xsl:value-of select="."/>
|
265
|
+
</xsl:if>
|
266
|
+
<xsl:if test="not(contains(.,'unstored'))">
|
267
|
+
<xsl:call-template name="infochar2string">
|
268
|
+
<xsl:with-param name="charList">
|
269
|
+
<xsl:value-of select="."/>
|
270
|
+
</xsl:with-param>
|
271
|
+
</xsl:call-template>
|
272
|
+
</xsl:if>
|
273
|
+
</td>
|
274
|
+
</tr>
|
275
|
+
</xsl:template>
|
276
|
+
|
277
|
+
<xsl:template name="infochar2string">
|
278
|
+
<xsl:param name="i">1</xsl:param>
|
279
|
+
<xsl:param name="charList"/>
|
280
|
+
|
281
|
+
<xsl:variable name="char">
|
282
|
+
<xsl:value-of select="substring($charList,$i,1)"/>
|
283
|
+
</xsl:variable>
|
284
|
+
<xsl:choose>
|
285
|
+
<xsl:when test="$char='I'">
|
286
|
+
<xsl:value-of select="/response/lst[@name='info']/lst/str[@name='I']"/> - </xsl:when>
|
287
|
+
<xsl:when test="$char='T'">
|
288
|
+
<xsl:value-of select="/response/lst[@name='info']/lst/str[@name='T']"/> - </xsl:when>
|
289
|
+
<xsl:when test="$char='S'">
|
290
|
+
<xsl:value-of select="/response/lst[@name='info']/lst/str[@name='S']"/> - </xsl:when>
|
291
|
+
<xsl:when test="$char='M'">
|
292
|
+
<xsl:value-of select="/response/lst[@name='info']/lst/str[@name='M']"/> - </xsl:when>
|
293
|
+
<xsl:when test="$char='V'">
|
294
|
+
<xsl:value-of select="/response/lst[@name='info']/lst/str[@name='V']"/> - </xsl:when>
|
295
|
+
<xsl:when test="$char='o'">
|
296
|
+
<xsl:value-of select="/response/lst[@name='info']/lst/str[@name='o']"/> - </xsl:when>
|
297
|
+
<xsl:when test="$char='p'">
|
298
|
+
<xsl:value-of select="/response/lst[@name='info']/lst/str[@name='p']"/> - </xsl:when>
|
299
|
+
<xsl:when test="$char='O'">
|
300
|
+
<xsl:value-of select="/response/lst[@name='info']/lst/str[@name='O']"/> - </xsl:when>
|
301
|
+
<xsl:when test="$char='L'">
|
302
|
+
<xsl:value-of select="/response/lst[@name='info']/lst/str[@name='L']"/> - </xsl:when>
|
303
|
+
<xsl:when test="$char='B'">
|
304
|
+
<xsl:value-of select="/response/lst[@name='info']/lst/str[@name='B']"/> - </xsl:when>
|
305
|
+
<xsl:when test="$char='C'">
|
306
|
+
<xsl:value-of select="/response/lst[@name='info']/lst/str[@name='C']"/> - </xsl:when>
|
307
|
+
<xsl:when test="$char='f'">
|
308
|
+
<xsl:value-of select="/response/lst[@name='info']/lst/str[@name='f']"/> - </xsl:when>
|
309
|
+
<xsl:when test="$char='l'">
|
310
|
+
<xsl:value-of select="/response/lst[@name='info']/lst/str[@name='l']"/> -
|
311
|
+
</xsl:when>
|
312
|
+
</xsl:choose>
|
313
|
+
|
314
|
+
<xsl:if test="not($i>=string-length($charList))">
|
315
|
+
<xsl:call-template name="infochar2string">
|
316
|
+
<xsl:with-param name="i">
|
317
|
+
<xsl:value-of select="$i+1"/>
|
318
|
+
</xsl:with-param>
|
319
|
+
<xsl:with-param name="charList">
|
320
|
+
<xsl:value-of select="$charList"/>
|
321
|
+
</xsl:with-param>
|
322
|
+
</xsl:call-template>
|
323
|
+
</xsl:if>
|
324
|
+
</xsl:template>
|
325
|
+
<xsl:template name="css">
|
326
|
+
<style type="text/css">
|
327
|
+
<![CDATA[
|
328
|
+
td.name {font-style: italic; font-size:80%; }
|
329
|
+
.doc { margin: 0.5em; border: solid grey 1px; }
|
330
|
+
.exp { display: none; font-family: monospace; white-space: pre; }
|
331
|
+
div.histogram { background: none repeat scroll 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;}
|
332
|
+
table.histogram { width: auto; vertical-align: bottom; }
|
333
|
+
table.histogram td, table.histogram th { text-align: center; vertical-align: bottom; border-bottom: 1px solid #ff9933; width: auto; }
|
334
|
+
]]>
|
335
|
+
</style>
|
336
|
+
</xsl:template>
|
337
|
+
</xsl:stylesheet>
|
@@ -0,0 +1,55 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<fits_configuration>
|
3
|
+
<!-- Order of the tools determines preference -->
|
4
|
+
<tools>
|
5
|
+
<!-- exclude-exts attribute is a comma delimited list of file extensions that the tool should not try to process -->
|
6
|
+
<!-- include-exts attribute is a comma delimited list of file extensions that are the only ones the tool will process -->
|
7
|
+
<!-- classpath-dirs attribute is a list of directories where any tool-specific Java JAR files and configuration files used solely by these JAR files -->
|
8
|
+
<tool class="edu.harvard.hul.ois.fits.tools.mediainfo.MediaInfo" include-exts="avi,mov,mpg,mpeg,mkv,mp4,mxf,ogv,mj2,divx,dv,m4v,m2v,ismv,m2ts,mpeg4" classpath-dirs="lib/mediainfo" />
|
9
|
+
<tool class="edu.harvard.hul.ois.fits.tools.oisfileinfo.AudioInfo" include-exts="wav" classpath-dirs="lib/audioinfo" />
|
10
|
+
<tool class="edu.harvard.hul.ois.fits.tools.oisfileinfo.ADLTool" include-exts="adl" classpath-dirs="lib/adltool" />
|
11
|
+
<tool class="edu.harvard.hul.ois.fits.tools.oisfileinfo.VTTTool" include-exts="vtt" />
|
12
|
+
<tool class="edu.harvard.hul.ois.fits.tools.droid.Droid" exclude-exts="odm,m4a" classpath-dirs="lib/droid" />
|
13
|
+
<tool class="edu.harvard.hul.ois.fits.tools.jhove.Jhove" exclude-exts="dng,mbx,mbox,arw,adl,eml,java,doc,docx,docm,odt,rtf,pages,wpd,wp,epub,csv,avi,mov,mpg,mpeg,mkv,mp4,mpeg4,m2ts,mxf,ogv,mj2,divx,dv,m4v,m2v,ismv,pcd,zip" classpath-dirs="lib/jhove" />
|
14
|
+
<tool class="edu.harvard.hul.ois.fits.tools.fileutility.FileUtility" exclude-exts="dng,wps,adl,jar,epub,csv" classpath-dirs="lib/fileutility" />
|
15
|
+
<tool class="edu.harvard.hul.ois.fits.tools.exiftool.Exiftool" exclude-exts="txt,wps,vsd,jar,avi,mov,mpg,mpeg,mkv,mp4,mxf,ogv,mj2,divx,dv,m4v,m2v,ismv,m2ts,mpeg4" classpath-dirs="lib/exiftool" />
|
16
|
+
<tool class="edu.harvard.hul.ois.fits.tools.nlnz.MetadataExtractor" include-exts="bmp,gif,jpg,jpeg,wp,wpd,odt,doc,pdf,mp3,bfw,flac,html,xml,arc" classpath-dirs="lib/nzmetool,xml/nlnz"/>
|
17
|
+
<tool class="edu.harvard.hul.ois.fits.tools.oisfileinfo.FileInfo" classpath-dirs="lib/fileinfo" />
|
18
|
+
<tool class="edu.harvard.hul.ois.fits.tools.oisfileinfo.XmlMetadata" include-exts="xml" classpath-dirs="lib/xmlmetadata" />
|
19
|
+
<tool class="edu.harvard.hul.ois.fits.tools.ffident.FFIdent" exclude-exts="dng,wps,vsd,jar,ppt,rtf" classpath-dirs="lib/ffident" />
|
20
|
+
|
21
|
+
</tools>
|
22
|
+
|
23
|
+
<output>
|
24
|
+
<dataConsolidator class="edu.harvard.hul.ois.fits.consolidation.OISConsolidator"/>
|
25
|
+
<display-tool-output>false</display-tool-output>
|
26
|
+
<report-conflicts>true</report-conflicts>
|
27
|
+
<validate-tool-output>false</validate-tool-output>
|
28
|
+
<internal-output-schema>xml/fits_output.xsd</internal-output-schema>
|
29
|
+
<external-output-schema>http://hul.harvard.edu/ois/xml/xsd/fits/fits_output.xsd</external-output-schema>
|
30
|
+
<fits-xml-namespace>http://hul.harvard.edu/ois/xml/ns/fits/fits_output</fits-xml-namespace>
|
31
|
+
<enable-statistics>true</enable-statistics>
|
32
|
+
<enable-checksum>true</enable-checksum>
|
33
|
+
<!-- The below controls the exclusion of the checksum for certain files, even if enable-checksum is true -->
|
34
|
+
<!-- Video Exclusions -->
|
35
|
+
<!-- <checksum-exclusions exclude-exts="avi,mov,mpg,mkv,mp4,mxf,ogv,mj2,divx,dv,m4v,m2v,ismv"/> -->
|
36
|
+
<!-- Audio Exclusions -->
|
37
|
+
<!-- <checksum-exclusions exclude-exts="wav,aif,mp3,mp4,m4a,ra,rm"/> -->
|
38
|
+
</output>
|
39
|
+
|
40
|
+
<process>
|
41
|
+
<max-threads>20</max-threads>
|
42
|
+
</process>
|
43
|
+
|
44
|
+
<!-- file name of the droid signature file to use in tools/droid/-->
|
45
|
+
<droid_sigfile>DROID_SignatureFile_V90.xml</droid_sigfile>
|
46
|
+
<!-- Limits number of bytes DROID reads in (in KB) for processing large files for the listed file extensions. -->
|
47
|
+
<!-- Note: This should only be used with files that can provide sufficient metadata at beginning of the file -->
|
48
|
+
<!-- <droid_read_limit include-exts="mov,mxf" read-limit-kb="64" /> -->
|
49
|
+
|
50
|
+
<!-- the fits home is used by the MediaInfo tool to load the jna api libs -->
|
51
|
+
<!-- in most cases you won't need to change -->
|
52
|
+
<!-- example for BB will be /fits -->
|
53
|
+
<fits_home>.</fits_home>
|
54
|
+
|
55
|
+
</fits_configuration>
|
@@ -0,0 +1,76 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!DOCTYPE policymap [
|
3
|
+
<!ELEMENT policymap (policy)+>
|
4
|
+
<!ELEMENT policy (#PCDATA)>
|
5
|
+
<!ATTLIST policy domain (delegate|coder|filter|path|resource|cache) #IMPLIED>
|
6
|
+
<!ATTLIST policy name CDATA #IMPLIED>
|
7
|
+
<!ATTLIST policy rights CDATA #IMPLIED>
|
8
|
+
<!ATTLIST policy pattern CDATA #IMPLIED>
|
9
|
+
<!ATTLIST policy value CDATA #IMPLIED>
|
10
|
+
]>
|
11
|
+
<policymap>
|
12
|
+
<policy domain="coder" rights="read|write" pattern="PDF" />
|
13
|
+
<policy domain="coder" rights="read|write" pattern="LABEL" />
|
14
|
+
<!--
|
15
|
+
Configure ImageMagick policies.
|
16
|
+
|
17
|
+
Domains include system, delegate, coder, filter, path, or resource.
|
18
|
+
|
19
|
+
Rights include none, read, write, and execute. Use | to combine them,
|
20
|
+
for example: "read | write" to permit read from, or write to, a path.
|
21
|
+
|
22
|
+
Use a glob expression as a pattern.
|
23
|
+
|
24
|
+
Suppose we do not want users to process MPEG video images:
|
25
|
+
|
26
|
+
<policy domain="delegate" rights="none" pattern="mpeg:decode" />
|
27
|
+
|
28
|
+
Here we do not want users reading images from HTTP:
|
29
|
+
|
30
|
+
<policy domain="coder" rights="none" pattern="HTTP" />
|
31
|
+
|
32
|
+
Lets prevent users from executing any image filters:
|
33
|
+
|
34
|
+
<policy domain="filter" rights="none" pattern="*" />
|
35
|
+
|
36
|
+
The /repository file system is restricted to read only. We use a glob
|
37
|
+
expression to match all paths that start with /repository:
|
38
|
+
|
39
|
+
<policy domain="path" rights="read" pattern="/repository/*" />
|
40
|
+
|
41
|
+
Any large image is cached to disk rather than memory:
|
42
|
+
|
43
|
+
<policy domain="resource" name="area" value="1GB"/>
|
44
|
+
|
45
|
+
Define arguments for the memory, map, area, and disk resources with
|
46
|
+
SI prefixes (.e.g 100MB). In addition, resource policies are maximums for
|
47
|
+
each instance of ImageMagick (e.g. policy memory limit 1GB, -limit 2GB
|
48
|
+
exceeds policy maximum so memory limit is 1GB).
|
49
|
+
-->
|
50
|
+
|
51
|
+
<!-- IiifPrint: allow more than default Ubuntu policy, re: RAM, Disk -->
|
52
|
+
<policy domain="resource" name="memory" value="512MiB"/>
|
53
|
+
<policy domain="resource" name="map" value="1GiB"/>
|
54
|
+
<policy domain="resource" name="width" value="20KP"/>
|
55
|
+
<policy domain="resource" name="height" value="20KP"/>
|
56
|
+
<policy domain="resource" name="area" value="128MB"/>
|
57
|
+
<policy domain="resource" name="disk" value="2GiB"/>
|
58
|
+
|
59
|
+
<policy domain="cache" name="shared-secret" value="passphrase"/>
|
60
|
+
<policy domain="coder" rights="none" pattern="EPHEMERAL" />
|
61
|
+
<policy domain="coder" rights="none" pattern="URL" />
|
62
|
+
<policy domain="coder" rights="none" pattern="HTTPS" />
|
63
|
+
<policy domain="coder" rights="none" pattern="MVG" />
|
64
|
+
<policy domain="coder" rights="none" pattern="MSL" />
|
65
|
+
<policy domain="coder" rights="none" pattern="TEXT" />
|
66
|
+
<policy domain="coder" rights="none" pattern="SHOW" />
|
67
|
+
<policy domain="coder" rights="none" pattern="WIN" />
|
68
|
+
<policy domain="coder" rights="none" pattern="PLT" />
|
69
|
+
<policy domain="path" rights="none" pattern="@*" />
|
70
|
+
<!-- disable ghostscript format types (except PDF) -->
|
71
|
+
<policy domain="coder" rights="none" pattern="PS" />
|
72
|
+
<policy domain="coder" rights="none" pattern="EPS" />
|
73
|
+
<policy domain="coder" rights="none" pattern="XPS" />
|
74
|
+
<!-- IiifPrint: we need to allow PDF here -->
|
75
|
+
<!-- <policy domain="coder" rights="none" pattern="PDF" /> -->
|
76
|
+
</policymap>
|
@@ -0,0 +1,12 @@
|
|
1
|
+
class CreateIiifPrintDerivativeAttachments < ActiveRecord::Migration[5.0]
|
2
|
+
def change
|
3
|
+
create_table :iiif_print_derivative_attachments do |t|
|
4
|
+
t.string :fileset_id
|
5
|
+
t.string :path
|
6
|
+
t.string :destination_name
|
7
|
+
|
8
|
+
t.timestamps
|
9
|
+
end
|
10
|
+
add_index :iiif_print_derivative_attachments, :fileset_id
|
11
|
+
end
|
12
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
class CreateIiifPrintIngestFileRelations < ActiveRecord::Migration[5.0]
|
2
|
+
def change
|
3
|
+
create_table :iiif_print_ingest_file_relations do |t|
|
4
|
+
t.string :file_path
|
5
|
+
t.string :derivative_path
|
6
|
+
|
7
|
+
t.timestamps
|
8
|
+
end
|
9
|
+
add_index :iiif_print_ingest_file_relations, :file_path
|
10
|
+
end
|
11
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
class CreateIiifPrintPendingRelationships < ActiveRecord::Migration[5.1]
|
2
|
+
def change
|
3
|
+
create_table :iiif_print_pending_relationships do |t|
|
4
|
+
t.string :child_title, null: false
|
5
|
+
t.string :parent_id, null: false
|
6
|
+
t.string :child_order, null: false
|
7
|
+
t.timestamps
|
8
|
+
end
|
9
|
+
add_index :iiif_print_pending_relationships, :parent_id
|
10
|
+
end
|
11
|
+
end
|