<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-GB">
	<id>https://coptr.digipres.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Lindlar</id>
	<title>COPTR - User contributions [en-gb]</title>
	<link rel="self" type="application/atom+xml" href="https://coptr.digipres.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Lindlar"/>
	<link rel="alternate" type="text/html" href="https://coptr.digipres.org/Special:Contributions/Lindlar"/>
	<updated>2026-05-31T16:34:44Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.14</generator>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=Workflow:Validation_Error_Analysis_and_Treatment_for_PDF-hul_133_Invalid_date&amp;diff=6263</id>
		<title>Workflow:Validation Error Analysis and Treatment for PDF-hul 133 Invalid date</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=Workflow:Validation_Error_Analysis_and_Treatment_for_PDF-hul_133_Invalid_date&amp;diff=6263"/>
		<updated>2024-05-23T16:18:32Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox COW&lt;br /&gt;
|status=Production&lt;br /&gt;
|tools=ExifTool, HxD, Pdfcpu, Qpdf, JHOVE, veraPDF Arlington Model Checker&lt;br /&gt;
|input=File with JHOVE validation error PDF-HUL-133 “Improperly formed date&amp;quot;&lt;br /&gt;
|output=Fixed file&lt;br /&gt;
|organisation=TIB&lt;br /&gt;
|organisationurl=https://wiki.tib.eu/confluence/display/lza/Digital+preservation+at+TIB&lt;br /&gt;
}}&lt;br /&gt;
==Workflow Description==&lt;br /&gt;
&lt;br /&gt;
The workflow describes the analysis and the fix of a specific instance of a PDF-HUL-133 error. &lt;br /&gt;
It is a manual workflow. The methodology used here is that introduced in https://hdl.handle.net/2142/121092.&lt;br /&gt;
&lt;br /&gt;
'''Validation Error'''&lt;br /&gt;
&lt;br /&gt;
JHOVE v1.30.0RC1 PDF-hul v1.12.5 PDF-HUL-133 Improperly formed date. Well-formed, but not valid.&lt;br /&gt;
&lt;br /&gt;
'''Cross-Check with other Tools'''&lt;br /&gt;
&lt;br /&gt;
Cross-checked with: &lt;br /&gt;
pdfcpu v0.6.0dev relaxed mode - no error &lt;br /&gt;
pdfcpu v0.6.0dev strict mode - no error &lt;br /&gt;
qpdf v9.1.1 - no error&lt;br /&gt;
Arlington PDF Model checker by verapdf 1.26.0-RC1 Greenfield Parser: &lt;br /&gt;
Entry ModDate in DocInfo shall have type Date (1 occurance)&lt;br /&gt;
Entry CreationDate in DocInfo shall have type Date (1 occurance)&lt;br /&gt;
'''&lt;br /&gt;
&lt;br /&gt;
'''Locate Error in Spec'''&lt;br /&gt;
&lt;br /&gt;
ISO3200-2:2017 (PDF 2.0 Spec) lists the the Keys CreationDate and ModDate in the Document Info Dictionary as type Date. &lt;br /&gt;
Section 7.0.4 defines that a date shall be a text string containing no whitespace, of the form: &lt;br /&gt;
''(D:YYYYMMDDHHmmSSOHH'mm)&lt;br /&gt;
where:&lt;br /&gt;
YYYY shall be the year&lt;br /&gt;
MM shall be the month (01–12)&lt;br /&gt;
DD shall be the day (01–31)&lt;br /&gt;
HH shall be the hour (00–23)&lt;br /&gt;
mm shall be the minute (00–59)&lt;br /&gt;
SS shall be the second (00–59)&lt;br /&gt;
O shall be the relationship of local time to Universal Time (UT), and shall be denoted by one of the characters PLUS SIGN (U+002B) (+), HYPHEN-MINUS (U+002D) (-), or LATIN CAPITAL LETTER Z (U+005A) (Z) (see below)&lt;br /&gt;
HH followed by APOSTROPHE (U+0027) (') shall be the absolute value of the offset from UT in hours (00–23)&lt;br /&gt;
mm shall be the absolute value of the offset from UT in minutes (00–59)&lt;br /&gt;
&lt;br /&gt;
The prefix D: shall be present, the year field (YYYY) shall be present and all other fields may be present but only if all of their preceding fields are also present. The APOSTROPHE following the hour offset field (HH) shall only be present if the HH field is present. The minute offset field (mm) shall only be present if the APOSTROPHE following the hour offset field (HH) is present. The default values for MM and DD shall be both 01; all other numerical fields shall default to zero values. A PLUS SIGN as the value of the O field signifies that local time is now and later than UT, a HYPHEN-MINUS signifies that local time is earlier than UT, and the LATIN CAPITAL LETTER Z signifies that local time is equal to UT. If no UT information is specified, the relationship of the specified time to UT shall be considered to be GMT. Regardless of whether the time zone is specified, the rest of the date shall be specified in local time.''&lt;br /&gt;
&lt;br /&gt;
The specification further notes that ''versions up to and including 1.7 defined a date string to include a terminating apostrophe. PDF processors are recommended to accept date strings that still follow that convention''.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Locate Error in File&lt;br /&gt;
'''&lt;br /&gt;
Offset given by JHOVE can be navigated to using a hex editor such as HxD. The offset points to the Document Info Dictionary with /CreationDate (D:2018020915415409'00') and /ModDate(D:2018020915415409'00'). Mapping those dates to the notation given above it becomes clear that the O key which identifies the relation to UT is missing. Alternatively to looking for the dates in a hex editor, exiftool can be used to pull out all dates with: &lt;br /&gt;
exiftool -time:all -G -a -s file.pdf&lt;br /&gt;
&lt;br /&gt;
''' Match?'''&lt;br /&gt;
&lt;br /&gt;
Yes. Description in the spec and error in the file match. (D:2018020915415409'00') is missing the O key. &lt;br /&gt;
&lt;br /&gt;
'''Fixable?'''&lt;br /&gt;
&lt;br /&gt;
Yes. If other dates, e.g. in the XMP-section, are in the correct format, they can be used to determine the corect value for O. If not, the HH'MM' UT offset can be removed to form a valid date.&lt;br /&gt;
&lt;br /&gt;
'''Fix'''&lt;br /&gt;
&lt;br /&gt;
Option 1: &lt;br /&gt;
This option only works in the case of the missing O entry and the trailing apostrophe being present. In this case, the trailing apostrophe can be deleted and the O entry, if it can be determined from other dates, added to the value. This does not change the overall byte number of the date value and therefore has no impact on the PDF's internal structure.&lt;br /&gt;
&lt;br /&gt;
Option 2: &lt;br /&gt;
The date can also be modified using exiftool. This will create an incremental update to the end of the file which can be rolled back with tools such as pdfressurect. Due to objects being added, the size of the file will change. &lt;br /&gt;
The exiftool command to e.g. update the dates above to include the O key + is:&lt;br /&gt;
exiftool -PDF:ModifyDate=&amp;quot;2018:02:09 15:41:54+09:00&amp;quot; -PDF:CreateDate=&amp;quot;2018:02:09 15:41:54+09:00&amp;quot; file.pdf&lt;br /&gt;
If you do not know the correct O key, you can also omit the offset with:&lt;br /&gt;
exiftool -PDF:ModifyDate=&amp;quot;2018:02:09 15:41:54&amp;quot; -PDF:CreateDate=&amp;quot;2018:02:09 15:41:54&amp;quot; file.pdf&lt;br /&gt;
&lt;br /&gt;
'''Check'''&lt;br /&gt;
&lt;br /&gt;
Re-validate file with Arlington PDF Model checker by veraPDF: Error messages are gone, no deviations found.&lt;br /&gt;
Re-validate file with JHOVE: Well-formed and valid with option 2. Well-formed but not valid with option 1, as JHOVE currently expects date in format pre-PDF2.0, i.e. without trailing apostrophe. &lt;br /&gt;
&lt;br /&gt;
'''Success?'''&lt;br /&gt;
&lt;br /&gt;
Yes.&lt;br /&gt;
&lt;br /&gt;
[[File:PDF-hul-133_1.jpg|Workflow image]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Describe your workflow here with an overview of the different steps or processes involved--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Purpose, Context and Content==&lt;br /&gt;
&amp;lt;!-- Describe what your workflow is for - i.e. what it is designed to achieve, what the organisational context of the workflow is, and what content it is designed to work with --&amp;gt;&lt;br /&gt;
This workflow describes the analysis and treatment of JHOVE PDF-Hul error message PDF-HUL-133 Improperly formed date. It describes the process and results of a manual validation error analysis and treatment process.&lt;br /&gt;
&lt;br /&gt;
==Evaluation/Review==&lt;br /&gt;
&amp;lt;!-- How effective was the workflow? Was it replaced with a better workflow? Did it work well with some content but not others? What is the current status of the workflow? Does it relate to another workflow already described on the wiki? Link, explain and elaborate --&amp;gt;&lt;br /&gt;
The workflow is effective and should be replicable for most improperly formed date related errors in PDFs. However, as an invalid date has little impact on the rendering behavior of the PDF file itself, institutions may decide to not fix the error.&lt;br /&gt;
Please note that most PDF Readers (e.g., Adobe Acrobat, Foxit) make use of XMP Metadata and not of Document Info Dictionary Metadata when they display Date Created and Last Modified Dates in a document's properties. &lt;br /&gt;
&lt;br /&gt;
==Further Information==&lt;br /&gt;
&amp;lt;!-- Provide any further information or links to additional documentation here --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add four tildes below (&amp;quot;~~~~&amp;quot;) to create an automatic signature, including your wiki username. Ensure your user page (click on your username to create it) includes an up to date contact email address so that people can contact you if they want to discuss your workflow --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Note that your workflow will be marked with a CC3.0 licence --&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=Workflow:Validation_Error_Analysis_and_Treatment_for_PDF-hul_133_Invalid_date&amp;diff=6262</id>
		<title>Workflow:Validation Error Analysis and Treatment for PDF-hul 133 Invalid date</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=Workflow:Validation_Error_Analysis_and_Treatment_for_PDF-hul_133_Invalid_date&amp;diff=6262"/>
		<updated>2024-05-12T11:21:00Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox COW&lt;br /&gt;
|status=Production&lt;br /&gt;
|tools=ExifTool, HxD, Pdfcpu, Qpdf, JHOVE, veraPDF Arlington Model Checker&lt;br /&gt;
|input=File with JHOVE validation error PDF-HUL-133 “Improperly formed date&amp;quot;&lt;br /&gt;
|output=Fixed file&lt;br /&gt;
|organisation=TIB&lt;br /&gt;
|organisationurl=https://wiki.tib.eu/confluence/display/lza/Digital+preservation+at+TIB&lt;br /&gt;
}}&lt;br /&gt;
==Workflow Description==&lt;br /&gt;
&lt;br /&gt;
The workflow describes the analysis and the fix of a specific instance of a PDF-HUL-133 error. &lt;br /&gt;
It is a manual workflow. The methodology used here is that introduced in https://hdl.handle.net/2142/121092.&lt;br /&gt;
&lt;br /&gt;
'''Validation Error'''&lt;br /&gt;
&lt;br /&gt;
JHOVE v1.30.0RC1 PDF-hul v1.12.5 PDF-HUL-133 Improperly formed date. Well-formed, but not valid.&lt;br /&gt;
&lt;br /&gt;
'''Cross-Check with other Tools'''&lt;br /&gt;
&lt;br /&gt;
Cross-checked with: &lt;br /&gt;
pdfcpu v0.6.0dev relaxed mode - no error &lt;br /&gt;
pdfcpu v0.6.0dev strict mode - no error &lt;br /&gt;
qpdf v9.1.1 - no error&lt;br /&gt;
Arlington PDF Model checker by verapdf 1.26.0-RC1 Greenfield Parser: &lt;br /&gt;
Entry ModDate in DocInfo shall have type Date (1 occurance)&lt;br /&gt;
Entry CreationDate in DocInfo shall have type Date (1 occurance)&lt;br /&gt;
'''&lt;br /&gt;
&lt;br /&gt;
'''Locate Error in Spec'''&lt;br /&gt;
&lt;br /&gt;
ISO3200-2:2017 (PDF 2.0 Spec) lists the the Keys CreationDate and ModDate in the Document Info Dictionary as type Date. &lt;br /&gt;
Section 7.0.4 defines that a date shall be a text string containing no whitespace, of the form: &lt;br /&gt;
''(D:YYYYMMDDHHmmSSOHH'mm)&lt;br /&gt;
where:&lt;br /&gt;
YYYY shall be the year&lt;br /&gt;
MM shall be the month (01–12)&lt;br /&gt;
DD shall be the day (01–31)&lt;br /&gt;
HH shall be the hour (00–23)&lt;br /&gt;
mm shall be the minute (00–59)&lt;br /&gt;
SS shall be the second (00–59)&lt;br /&gt;
O shall be the relationship of local time to Universal Time (UT), and shall be denoted by one of the characters PLUS SIGN (U+002B) (+), HYPHEN-MINUS (U+002D) (-), or LATIN CAPITAL LETTER Z (U+005A) (Z) (see below)&lt;br /&gt;
HH followed by APOSTROPHE (U+0027) (') shall be the absolute value of the offset from UT in hours (00–23)&lt;br /&gt;
mm shall be the absolute value of the offset from UT in minutes (00–59)&lt;br /&gt;
&lt;br /&gt;
The prefix D: shall be present, the year field (YYYY) shall be present and all other fields may be present but only if all of their preceding fields are also present. The APOSTROPHE following the hour offset field (HH) shall only be present if the HH field is present. The minute offset field (mm) shall only be present if the APOSTROPHE following the hour offset field (HH) is present. The default values for MM and DD shall be both 01; all other numerical fields shall default to zero values. A PLUS SIGN as the value of the O field signifies that local time is now and later than UT, a HYPHEN-MINUS signifies that local time is earlier than UT, and the LATIN CAPITAL LETTER Z signifies that local time is equal to UT. If no UT information is specified, the relationship of the specified time to UT shall be considered to be GMT. Regardless of whether the time zone is specified, the rest of the date shall be specified in local time.''&lt;br /&gt;
&lt;br /&gt;
The specification further notes that ''versions up to and including 1.7 defined a date string to include a terminating apostrophe. PDF processors are recommended to accept date strings that still follow that convention''.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Locate Error in File&lt;br /&gt;
'''&lt;br /&gt;
Offset given by JHOVE can be navigated to using a hex editor such as HxD. The offset points to the Document Info Dictionary with /CreationDate (D:2018020915415409'00') and /ModDate(D:2018020915415409'00'). Mapping those dates to the notation given above it becomes clear that the O key which identifies the relation to UT is missing. Alternatively to looking for the dates in a hex editor, exiftool can be used to pull out all dates with: &lt;br /&gt;
exiftool -time:all -G -a -s file.pdf&lt;br /&gt;
&lt;br /&gt;
''' Match?'''&lt;br /&gt;
&lt;br /&gt;
Yes. Description in the spec and error in the file match. (D:2018020915415409'00') is missing the O key. &lt;br /&gt;
&lt;br /&gt;
'''Fixable?'''&lt;br /&gt;
&lt;br /&gt;
Yes. If other dates, e.g. in the XMP-section, are in the correct format, they can be used to determine the corect value for O. If not, the HH'MM' UT offset can be removed to form a valid date.&lt;br /&gt;
&lt;br /&gt;
'''Fix'''&lt;br /&gt;
&lt;br /&gt;
Option 1: &lt;br /&gt;
This option only works in the case of the missing O entry and the trailing apostrophe being present. In this case, the trailing apostrophe can be deleted and the O entry, if it can be determined from other dates, added to the value. This does not change the overall byte number of the date value and therefore has no impact on the PDF's internal structure.&lt;br /&gt;
&lt;br /&gt;
Option 2: &lt;br /&gt;
The date can also be modified using exiftool. This will create an incremental update to the end of the file which can be rolled back with tools such as pdfressurect. Due to objects being added, the size of the file will change. &lt;br /&gt;
The exiftool command to e.g. update the dates above to include the O key + is:&lt;br /&gt;
exiftool -PDF:ModifyDate=&amp;quot;2018:02:09 15:41:54+09:00&amp;quot; -PDF:CreateDate=&amp;quot;2018:02:09 15:41:54+09:00&amp;quot; file.pdf&lt;br /&gt;
If you do not know the correct O key, you can also omit the offset with:&lt;br /&gt;
exiftool -PDF:ModifyDate=&amp;quot;2018:02:09 15:41:54&amp;quot; -PDF:CreateDate=&amp;quot;2018:02:09 15:41:54&amp;quot; file.pdf&lt;br /&gt;
&lt;br /&gt;
'''Check'''&lt;br /&gt;
&lt;br /&gt;
Re-validate file with Arlington PDF Model checker by veraPDF: Error messages are gone, no deviations found.&lt;br /&gt;
Re-validate file with JHOVE: Well-formed and valid with option 2. Well-formed but not valid with option 1, as JHOVE currently expects date in format pre-PDF2.0, i.e. without trailing apostrophe. &lt;br /&gt;
&lt;br /&gt;
'''Success?'''&lt;br /&gt;
&lt;br /&gt;
Yes.&lt;br /&gt;
&lt;br /&gt;
[[File:PDF-hul-133 1.jpg|Workflow image]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Describe your workflow here with an overview of the different steps or processes involved--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Purpose, Context and Content==&lt;br /&gt;
&amp;lt;!-- Describe what your workflow is for - i.e. what it is designed to achieve, what the organisational context of the workflow is, and what content it is designed to work with --&amp;gt;&lt;br /&gt;
This workflow describes the analysis and treatment of JHOVE PDF-Hul error message PDF-HUL-133 Improperly formed date. It describes the process and results of a manual validation error analysis and treatment process.&lt;br /&gt;
&lt;br /&gt;
==Evaluation/Review==&lt;br /&gt;
&amp;lt;!-- How effective was the workflow? Was it replaced with a better workflow? Did it work well with some content but not others? What is the current status of the workflow? Does it relate to another workflow already described on the wiki? Link, explain and elaborate --&amp;gt;&lt;br /&gt;
The workflow is effective and should be replicable for most improperly formed date related errors in PDFs. However, as an invalid date has little impact on the rendering behavior of the PDF file itself, institutions may decide to not fix the error.&lt;br /&gt;
Please note that most PDF Readers (e.g., Adobe Acrobat, Foxit) make use of XMP Metadata and not of Document Info Dictionary Metadata when they display Date Created and Last Modified Dates in a document's properties. &lt;br /&gt;
&lt;br /&gt;
==Further Information==&lt;br /&gt;
&amp;lt;!-- Provide any further information or links to additional documentation here --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add four tildes below (&amp;quot;~~~~&amp;quot;) to create an automatic signature, including your wiki username. Ensure your user page (click on your username to create it) includes an up to date contact email address so that people can contact you if they want to discuss your workflow --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Note that your workflow will be marked with a CC3.0 licence --&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=Workflow:Validation_Error_Analysis_and_Treatment_for_PDF-hul_133_Invalid_date&amp;diff=6261</id>
		<title>Workflow:Validation Error Analysis and Treatment for PDF-hul 133 Invalid date</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=Workflow:Validation_Error_Analysis_and_Treatment_for_PDF-hul_133_Invalid_date&amp;diff=6261"/>
		<updated>2024-05-12T10:33:44Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox COW&lt;br /&gt;
|status=Production&lt;br /&gt;
|tools=ExifTool, HxD, Pdfcpu, Qpdf, JHOVE, veraPDF Arlington Model Checker&lt;br /&gt;
|input=File with JHOVE validation error PDF-HUL-133 “Invalid date&amp;quot;&lt;br /&gt;
|output=Fixed file&lt;br /&gt;
|organisation=TIB&lt;br /&gt;
|organisationurl=https://wiki.tib.eu/confluence/display/lza/Digital+preservation+at+TIB&lt;br /&gt;
}}&lt;br /&gt;
==Workflow Description==&lt;br /&gt;
&lt;br /&gt;
The workflow describes the analysis and the fix of a specific instance of a PDF-HUL-133 error. &lt;br /&gt;
It is a manual workflow. The methodology used here is that introduced in https://hdl.handle.net/2142/121092.&lt;br /&gt;
&lt;br /&gt;
'''Validation Error'''&lt;br /&gt;
&lt;br /&gt;
JHOVE v1.30.0RC1 PDF-hul v1.12.5 PDF-HUL-133 Invalid Date. Well-formed, but not valid.&lt;br /&gt;
&lt;br /&gt;
'''Cross-Check with other Tools'''&lt;br /&gt;
&lt;br /&gt;
Cross-checked with: &lt;br /&gt;
pdfcpu v0.6.0dev relaxed mode - no error &lt;br /&gt;
pdfcpu v0.6.0dev strict mode - no error &lt;br /&gt;
qpdf v9.1.1 - no error&lt;br /&gt;
Arlington PDF Model checker by verapdf 1.26.0-RC1 Greenfield Parser: &lt;br /&gt;
Entry ModDate in DocInfo shall have type Date (1 occurance)&lt;br /&gt;
Entry CreationDate in DocInfo shall have type Date (1 occurance)&lt;br /&gt;
'''&lt;br /&gt;
&lt;br /&gt;
'''Locate Error in Spec'''&lt;br /&gt;
&lt;br /&gt;
ISO3200-2:2017 (PDF 2.0 Spec) lists the the Keys CreationDate and ModDate in the Document Info Dictionary as type Date. &lt;br /&gt;
Section 7.0.4 defines that a date shall be a text string containing no whitespace, of the form: &lt;br /&gt;
''(D:YYYYMMDDHHmmSSOHH'mm)&lt;br /&gt;
where:&lt;br /&gt;
YYYY shall be the year&lt;br /&gt;
MM shall be the month (01–12)&lt;br /&gt;
DD shall be the day (01–31)&lt;br /&gt;
HH shall be the hour (00–23)&lt;br /&gt;
mm shall be the minute (00–59)&lt;br /&gt;
SS shall be the second (00–59)&lt;br /&gt;
O shall be the relationship of local time to Universal Time (UT), and shall be denoted by one of the characters PLUS SIGN (U+002B) (+), HYPHEN-MINUS (U+002D) (-), or LATIN CAPITAL LETTER Z (U+005A) (Z) (see below)&lt;br /&gt;
HH followed by APOSTROPHE (U+0027) (') shall be the absolute value of the offset from UT in hours (00–23)&lt;br /&gt;
mm shall be the absolute value of the offset from UT in minutes (00–59)&lt;br /&gt;
&lt;br /&gt;
The prefix D: shall be present, the year field (YYYY) shall be present and all other fields may be present but only if all of their preceding fields are also present. The APOSTROPHE following the hour offset field (HH) shall only be present if the HH field is present. The minute offset field (mm) shall only be present if the APOSTROPHE following the hour offset field (HH) is present. The default values for MM and DD shall be both 01; all other numerical fields shall default to zero values. A PLUS SIGN as the value of the O field signifies that local time is now and later than UT, a HYPHEN-MINUS signifies that local time is earlier than UT, and the LATIN CAPITAL LETTER Z signifies that local time is equal to UT. If no UT information is specified, the relationship of the specified time to UT shall be considered to be GMT. Regardless of whether the time zone is specified, the rest of the date shall be specified in local time.''&lt;br /&gt;
&lt;br /&gt;
The specification further notes that ''versions up to and including 1.7 defined a date string to include a terminating apostrophe. PDF processors are recommended to accept date strings that still follow that convention''.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Locate Error in File&lt;br /&gt;
'''&lt;br /&gt;
Offset given by JHOVE can be navigated to using a hex editor such as HxD. The offset points to the Document Info Dictionary with /CreationDate (D:2018020915415409'00') and /ModDate(D:2018020915415409'00'). Mapping those dates to the notation given above it becomes clear that the O key which identifies the relation to UT is missing. Alternatively to looking for the dates in a hex editor, exiftool can be used to pull out all dates with: &lt;br /&gt;
exiftool -time:all -G -a -s file.pdf&lt;br /&gt;
&lt;br /&gt;
''' Match?'''&lt;br /&gt;
&lt;br /&gt;
Yes. Description in the spec and error in the file match. (D:2018020915415409'00') is missing the O key. &lt;br /&gt;
&lt;br /&gt;
'''Fixable?'''&lt;br /&gt;
&lt;br /&gt;
Yes. If other dates, e.g. in the XMP-section, are in the correct format, they can be used to determine the corect value for O. If not, the HH'MM' UT offset can be removed to form a valid date.&lt;br /&gt;
&lt;br /&gt;
'''Fix'''&lt;br /&gt;
&lt;br /&gt;
Option 1: &lt;br /&gt;
This option only works in the case of the missing O entry and the trailing apostrophe being present. In this case, the trailing apostrophe can be deleted and the O entry, if it can be determined from other dates, added to the value. This does not change the overall byte number of the date value and therefore has no impact on the PDF's internal structure.&lt;br /&gt;
&lt;br /&gt;
Option 2: &lt;br /&gt;
The date can also be modified using exiftool. This will create an incremental update to the end of the file which can be rolled back with tools such as pdfressurect. Due to objects being added, the size of the file will change. &lt;br /&gt;
The exiftool command to e.g. update the dates above to include the O key + is:&lt;br /&gt;
exiftool -PDF:ModifyDate=&amp;quot;2018:02:09 15:41:54+09:00&amp;quot; -PDF:CreateDate=&amp;quot;2018:02:09 15:41:54+09:00&amp;quot; file.pdf&lt;br /&gt;
If you do not know the correct O key, you can also omit the offset with:&lt;br /&gt;
exiftool -PDF:ModifyDate=&amp;quot;2018:02:09 15:41:54&amp;quot; -PDF:CreateDate=&amp;quot;2018:02:09 15:41:54&amp;quot; file.pdf&lt;br /&gt;
&lt;br /&gt;
'''Check'''&lt;br /&gt;
&lt;br /&gt;
Re-validate file with Arlington PDF Model checker by veraPDF: Error messages are gone, no deviations found.&lt;br /&gt;
Re-validate file with JHOVE: Well-formed and valid with option 2. Well-formed but not valid with option 1, as JHOVE currently expects date in format pre-PDF2.0, i.e. without trailing apostrophe. &lt;br /&gt;
&lt;br /&gt;
'''Success?'''&lt;br /&gt;
&lt;br /&gt;
Yes.&lt;br /&gt;
&lt;br /&gt;
[[File:PDF-hul-133 1.jpg|Workflow image]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Describe your workflow here with an overview of the different steps or processes involved--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Purpose, Context and Content==&lt;br /&gt;
&amp;lt;!-- Describe what your workflow is for - i.e. what it is designed to achieve, what the organisational context of the workflow is, and what content it is designed to work with --&amp;gt;&lt;br /&gt;
This workflow describes the analysis and treatment of JHOVE PDF-Hul error message PDF-HUL-133 Invalid date. It describes the process and results of a manual validation error analysis and treatment process.&lt;br /&gt;
&lt;br /&gt;
==Evaluation/Review==&lt;br /&gt;
&amp;lt;!-- How effective was the workflow? Was it replaced with a better workflow? Did it work well with some content but not others? What is the current status of the workflow? Does it relate to another workflow already described on the wiki? Link, explain and elaborate --&amp;gt;&lt;br /&gt;
The workflow is effective and should be replicable for most invalid date related errors in PDFs. However, as an invalid date has little impact on the rendering behavior of the PDF file itself, institutions may decide to not fix the error.&lt;br /&gt;
Please note that most PDF Readers (e.g., Adobe Acrobat, Foxit) make use of XMP Metadata and not of Document Info Dictionary Metadata when they display Date Created and Last Modified Dates in a document's properties. &lt;br /&gt;
&lt;br /&gt;
==Further Information==&lt;br /&gt;
&amp;lt;!-- Provide any further information or links to additional documentation here --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add four tildes below (&amp;quot;~~~~&amp;quot;) to create an automatic signature, including your wiki username. Ensure your user page (click on your username to create it) includes an up to date contact email address so that people can contact you if they want to discuss your workflow --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Note that your workflow will be marked with a CC3.0 licence --&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=Workflow:Validation_Error_Analysis_and_Treatment_for_PDF-hul_133_Invalid_date&amp;diff=6260</id>
		<title>Workflow:Validation Error Analysis and Treatment for PDF-hul 133 Invalid date</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=Workflow:Validation_Error_Analysis_and_Treatment_for_PDF-hul_133_Invalid_date&amp;diff=6260"/>
		<updated>2024-05-08T17:16:04Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox COW&lt;br /&gt;
|status=Production&lt;br /&gt;
|tools=ExifTool, HxD, Pdfcpu, Qpdf, JHOVE, veraPDF Arlington Model Checker&lt;br /&gt;
|input=File with JHOVE validation error PDF-HUL-133 “Invalid date&amp;quot;&lt;br /&gt;
|output=Fixed file&lt;br /&gt;
|organisation=TIB&lt;br /&gt;
|organisationurl=https://wiki.tib.eu/confluence/display/lza/Digital+preservation+at+TIB&lt;br /&gt;
}}&lt;br /&gt;
==Workflow Description==&lt;br /&gt;
&lt;br /&gt;
The workflow describes the analysis and the fix of a specific instance of a PDF-HUL-133 error. &lt;br /&gt;
It is a manual workflow. The methodology used here is that introduced in https://hdl.handle.net/2142/121092.&lt;br /&gt;
&lt;br /&gt;
'''Validation Error'''&lt;br /&gt;
&lt;br /&gt;
JHOVE v1.30.0RC1 PDF-hul v1.12.5 PDF-HUL-133 Invalid Date. Well-formed, but not valid.&lt;br /&gt;
&lt;br /&gt;
'''Cross-Check with other Tools'''&lt;br /&gt;
&lt;br /&gt;
Cross-checked with: &lt;br /&gt;
pdfcpu v0.6.0dev relaxed mode - no error &lt;br /&gt;
pdfcpu v0.6.0dev strict mode - no error &lt;br /&gt;
qpdf v9.1.1 - no error&lt;br /&gt;
Arlington PDF Model checker by verapdf 1.26.0-RC1 Greenfield Parser: &lt;br /&gt;
Entry ModDate in DocInfo shall have type Date (1 occurance)&lt;br /&gt;
Entry CreationDate in DocInfo shall have type Date (1 occurance)&lt;br /&gt;
'''&lt;br /&gt;
&lt;br /&gt;
'''Locate Error in Spec'''&lt;br /&gt;
&lt;br /&gt;
ISO3200-2:2017 (PDF 2.0 Spec) lists the the Keys CreationDate and ModDate in the Document Info Dictionary as type Date. &lt;br /&gt;
Section 7.0.4 defines that a date shall be a text string containing no whitespace, of the form: &lt;br /&gt;
''(D:YYYYMMDDHHmmSSOHH'mm)&lt;br /&gt;
where:&lt;br /&gt;
YYYY shall be the year&lt;br /&gt;
MM shall be the month (01–12)&lt;br /&gt;
DD shall be the day (01–31)&lt;br /&gt;
HH shall be the hour (00–23)&lt;br /&gt;
mm shall be the minute (00–59)&lt;br /&gt;
SS shall be the second (00–59)&lt;br /&gt;
O shall be the relationship of local time to Universal Time (UT), and shall be denoted by one of the characters PLUS SIGN (U+002B) (+), HYPHEN-MINUS (U+002D) (-), or LATIN CAPITAL LETTER Z (U+005A) (Z) (see below)&lt;br /&gt;
HH followed by APOSTROPHE (U+0027) (') shall be the absolute value of the offset from UT in hours (00–23)&lt;br /&gt;
mm shall be the absolute value of the offset from UT in minutes (00–59)&lt;br /&gt;
&lt;br /&gt;
The prefix D: shall be present, the year field (YYYY) shall be present and all other fields may be present but only if all of their preceding fields are also present. The APOSTROPHE following the hour offset field (HH) shall only be present if the HH field is present. The minute offset field (mm) shall only be present if the APOSTROPHE following the hour offset field (HH) is present. The default values for MM and DD shall be both 01; all other numerical fields shall default to zero values. A PLUS SIGN as the value of the O field signifies that local time is now and later than UT, a HYPHEN-MINUS signifies that local time is earlier than UT, and the LATIN CAPITAL LETTER Z signifies that local time is equal to UT. If no UT information is specified, the relationship of the specified time to UT shall be considered to be GMT. Regardless of whether the time zone is specified, the rest of the date shall be specified in local time.''&lt;br /&gt;
&lt;br /&gt;
The specification further notes that ''versions up to and including 1.7 defined a date string to include a terminating apostrophe. PDF processors are recommended to accept date strings that still follow that convention''.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Locate Error in File&lt;br /&gt;
'''&lt;br /&gt;
Offset given by JHOVE can be navigated to using a hex editor such as HxD. The offset points to the Document Info Dictionary with /CreationDate (D:2018020915415409'00') and /ModDate(D:2018020915415409'00'). Mapping those dates to the notation given above it becomes clear that the O key which identifies the relation to UT is missing. Alternatively to looking for the dates in a hex editor, exiftool can be used to pull out all dates with: &lt;br /&gt;
exiftool -time:all -G -a -s file.pdf&lt;br /&gt;
&lt;br /&gt;
''' Match?'''&lt;br /&gt;
&lt;br /&gt;
Yes. Description in the spec and error in the file match. (D:2018020915415409'00') is missing the O key. &lt;br /&gt;
&lt;br /&gt;
'''Fixable?'''&lt;br /&gt;
&lt;br /&gt;
Yes. If other dates, e.g. in the XMP-section, are in the correct format, they can be used to determine the corect value for O. If not, the HH'MM' UT offset can be removed to form a valid date.&lt;br /&gt;
&lt;br /&gt;
'''Fix'''&lt;br /&gt;
&lt;br /&gt;
Option 1: &lt;br /&gt;
This option only works in the case of the missing O entry and the trailing apostrophe being present. In this case, the trailing apostrophe can be deleted and the O entry, if it can be determined from other dates, added to the value. This does not change the overall byte number of the date value and therefore has no impact on the PDF's internal structure.&lt;br /&gt;
&lt;br /&gt;
Option 2: &lt;br /&gt;
The date can also be modified using exiftool. This will create an incremental update to the end of the file which can be rolled back with tools such as pdfressurect. Due to objects being added, the size of the file will change. &lt;br /&gt;
The exiftool command to e.g. update the dates above to include the O key + is:&lt;br /&gt;
exiftool -PDF:ModifyDate=&amp;quot;2018:02:09 15:41:54+09:00&amp;quot; -PDF:CreateDate=&amp;quot;2018:02:09 15:41:54+09:00&amp;quot; file.pdf&lt;br /&gt;
If you do not know the correct O key, you can also omit the offset with:&lt;br /&gt;
exiftool -PDF:ModifyDate=&amp;quot;2018:02:09 15:41:54&amp;quot; -PDF:CreateDate=&amp;quot;2018:02:09 15:41:54&amp;quot; file.pdf&lt;br /&gt;
&lt;br /&gt;
'''Check'''&lt;br /&gt;
&lt;br /&gt;
Re-validate file with Arlington PDF Model checker by veraPDF: Error messages are gone, no deviations found.&lt;br /&gt;
Re-validate file with JHOVE: Well-formed and valid with option 2. Well-formed but not valid with option 1, as JHOVE currently expects date in format pre-PDF2.0, i.e. without trailing apostrophe. &lt;br /&gt;
&lt;br /&gt;
'''Success?'''&lt;br /&gt;
&lt;br /&gt;
Yes.&lt;br /&gt;
&lt;br /&gt;
[[File:PDF-hul-133 1.jpg|Textual description]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Describe your workflow here with an overview of the different steps or processes involved--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Purpose, Context and Content==&lt;br /&gt;
&amp;lt;!-- Describe what your workflow is for - i.e. what it is designed to achieve, what the organisational context of the workflow is, and what content it is designed to work with --&amp;gt;&lt;br /&gt;
This workflow describes the analysis and treatment of JHOVE PDF-Hul error message PDF-HUL-133 Invalid date. It describes the process and results of a manual validation error analysis and treatment process.&lt;br /&gt;
&lt;br /&gt;
==Evaluation/Review==&lt;br /&gt;
&amp;lt;!-- How effective was the workflow? Was it replaced with a better workflow? Did it work well with some content but not others? What is the current status of the workflow? Does it relate to another workflow already described on the wiki? Link, explain and elaborate --&amp;gt;&lt;br /&gt;
The workflow is effective and should be replicable for most invalid date related errors in PDFs. However, as an invalid date has little impact on the rendering behavior of the PDF file itself, institutions may decide to not fix the error.&lt;br /&gt;
Please note that most PDF Readers (e.g., Adobe Acrobat, Foxit) make use of XMP Metadata and not of Document Info Dictionary Metadata when they display Date Created and Last Modified Dates in a document's properties. &lt;br /&gt;
&lt;br /&gt;
==Further Information==&lt;br /&gt;
&amp;lt;!-- Provide any further information or links to additional documentation here --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add four tildes below (&amp;quot;~~~~&amp;quot;) to create an automatic signature, including your wiki username. Ensure your user page (click on your username to create it) includes an up to date contact email address so that people can contact you if they want to discuss your workflow --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Note that your workflow will be marked with a CC3.0 licence --&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=Workflow:Validation_Error_Analysis_and_Treatment_for_PDF-hul_133_Invalid_date&amp;diff=6259</id>
		<title>Workflow:Validation Error Analysis and Treatment for PDF-hul 133 Invalid date</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=Workflow:Validation_Error_Analysis_and_Treatment_for_PDF-hul_133_Invalid_date&amp;diff=6259"/>
		<updated>2024-05-08T17:11:43Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox COW&lt;br /&gt;
|status=Production&lt;br /&gt;
|tools=ExifTool, HxD, Pdfcpu, Qpdf, JHOVE, veraPDF Arlington Model Checker&lt;br /&gt;
|input=File with JHOVE validation error PDF-HUL-133 “Invalid date&amp;quot;&lt;br /&gt;
|output=Fixed file&lt;br /&gt;
|organisation=TIB&lt;br /&gt;
|organisationurl=https://wiki.tib.eu/confluence/display/lza/Digital+preservation+at+TIB&lt;br /&gt;
}}&lt;br /&gt;
==Workflow Description==&lt;br /&gt;
&lt;br /&gt;
The workflow describes the analysis and the fix of a specific instance of a PDF-HUL-133 error. &lt;br /&gt;
It is a manual workflow. The methodology used here is that introduced in https://hdl.handle.net/2142/121092.&lt;br /&gt;
&lt;br /&gt;
'''Validation Error'''&lt;br /&gt;
&lt;br /&gt;
JHOVE v1.30.0RC1 PDF-hul v1.12.5 PDF-HUL-133 Invalid Date. Well-formed, but not valid.&lt;br /&gt;
&lt;br /&gt;
'''Cross-Check with other Tools'''&lt;br /&gt;
&lt;br /&gt;
Cross-checked with: &lt;br /&gt;
pdfcpu v0.6.0dev relaxed mode - no error &lt;br /&gt;
pdfcpu v0.6.0dev strict mode - no error &lt;br /&gt;
qpdf v9.1.1 - no error&lt;br /&gt;
Arlington PDF Model checker by verapdf 1.26.0-RC1 Greenfield Parser: &lt;br /&gt;
Entry ModDate in DocInfo shall have type Date (1 occurance)&lt;br /&gt;
Entry CreationDate in DocInfo shall have type Date (1 occurance)&lt;br /&gt;
'''&lt;br /&gt;
&lt;br /&gt;
'''Locate Error in Spec'''&lt;br /&gt;
&lt;br /&gt;
ISO3200-2:2017 (PDF 2.0 Spec) lists the the Keys CreationDate and ModDate in the Document Info Dictionary as type Date. &lt;br /&gt;
Section 7.0.4 defines that a date shall be a text string containing no whitespace, of the form: &lt;br /&gt;
''(D:YYYYMMDDHHmmSSOHH'mm)&lt;br /&gt;
where:&lt;br /&gt;
YYYY shall be the year&lt;br /&gt;
MM shall be the month (01–12)&lt;br /&gt;
DD shall be the day (01–31)&lt;br /&gt;
HH shall be the hour (00–23)&lt;br /&gt;
mm shall be the minute (00–59)&lt;br /&gt;
SS shall be the second (00–59)&lt;br /&gt;
O shall be the relationship of local time to Universal Time (UT), and shall be denoted by one of the characters PLUS SIGN (U+002B) (+), HYPHEN-MINUS (U+002D) (-), or LATIN CAPITAL LETTER Z (U+005A) (Z) (see below)&lt;br /&gt;
HH followed by APOSTROPHE (U+0027) (') shall be the absolute value of the offset from UT in hours (00–23)&lt;br /&gt;
mm shall be the absolute value of the offset from UT in minutes (00–59)&lt;br /&gt;
&lt;br /&gt;
The prefix D: shall be present, the year field (YYYY) shall be present and all other fields may be present but only if all of their preceding fields are also present. The APOSTROPHE following the hour offset field (HH) shall only be present if the HH field is present. The minute offset field (mm) shall only be present if the APOSTROPHE following the hour offset field (HH) is present. The default values for MM and DD shall be both 01; all other numerical fields shall default to zero values. A PLUS SIGN as the value of the O field signifies that local time is now and later than UT, a HYPHEN-MINUS signifies that local time is earlier than UT, and the LATIN CAPITAL LETTER Z signifies that local time is equal to UT. If no UT information is specified, the relationship of the specified time to UT shall be considered to be GMT. Regardless of whether the time zone is specified, the rest of the date shall be specified in local time.''&lt;br /&gt;
&lt;br /&gt;
The specification further notes that ''versions up to and including 1.7 defined a date string to include a terminating apostrophe. PDF processors are recommended to accept date strings that still follow that convention''.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Locate Error in File&lt;br /&gt;
'''&lt;br /&gt;
Offset given by JHOVE can be navigated to using a hex editor such as HxD. The offset points to the Document Info Dictionary with /CreationDate (D:2018020915415409'00') and /ModDate(D:2018020915415409'00'). Mapping those dates to the notation given above it becomes clear that the O key which identifies the relation to UT is missing. Alternatively to looking for the dates in a hex editor, exiftool can be used to pull out all dates with: &lt;br /&gt;
exiftool -time:all -G -a -s file.pdf&lt;br /&gt;
&lt;br /&gt;
''' Match?'''&lt;br /&gt;
&lt;br /&gt;
Yes. Description in the spec and error in the file match. (D:2018020915415409'00') is missing the O key. &lt;br /&gt;
&lt;br /&gt;
'''Fixable?'''&lt;br /&gt;
&lt;br /&gt;
Yes. If other dates, e.g. in the XMP-section, are in the correct format, they can be used to determine the corect value for O. If not, the HH'MM' UT offset can be removed to form a valid date.&lt;br /&gt;
&lt;br /&gt;
'''Fix'''&lt;br /&gt;
&lt;br /&gt;
Option 1: &lt;br /&gt;
This option only works in the case of the missing O entry and the trailing apostrophe being present. In this case, the trailing apostrophe can be deleted and the O entry, if it can be determined from other dates, added to the value. This does not change the overall byte number of the date value and therefore has no impact on the PDF's internal structure.&lt;br /&gt;
&lt;br /&gt;
Option 2: &lt;br /&gt;
The date can also be modified using exiftool. This will create an incremental update to the end of the file which can be rolled back with tools such as pdfressurect. Due to objects being added, the size of the file will change. &lt;br /&gt;
The exiftool command to e.g. update the dates above to include the O key + is:&lt;br /&gt;
exiftool -PDF:ModifyDate=&amp;quot;2018:02:09 15:41:54+09:00&amp;quot; -PDF:CreateDate=&amp;quot;2018:02:09 15:41:54+09:00&amp;quot; file.pdf&lt;br /&gt;
If you do not know the correct O key, you can also omit the offset with:&lt;br /&gt;
exiftool -PDF:ModifyDate=&amp;quot;2018:02:09 15:41:54&amp;quot; -PDF:CreateDate=&amp;quot;2018:02:09 15:41:54&amp;quot; file.pdf&lt;br /&gt;
&lt;br /&gt;
'''Check'''&lt;br /&gt;
&lt;br /&gt;
Re-validate file with Arlington PDF Model checker by veraPDF: Error messages are gone, no deviations found.&lt;br /&gt;
Re-validate file with JHOVE: Well-formed and valid with option 2. Well-formed but not valid with option 1, as JHOVE currently expects date in format pre-PDF2.0, i.e. without trailing apostrophe. &lt;br /&gt;
&lt;br /&gt;
'''Success?'''&lt;br /&gt;
&lt;br /&gt;
Yes.&lt;br /&gt;
&lt;br /&gt;
[[File:PDF-hul-122 1.jpg|Textual description]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Describe your workflow here with an overview of the different steps or processes involved--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Purpose, Context and Content==&lt;br /&gt;
&amp;lt;!-- Describe what your workflow is for - i.e. what it is designed to achieve, what the organisational context of the workflow is, and what content it is designed to work with --&amp;gt;&lt;br /&gt;
This workflow describes the analysis and treatment of JHOVE PDF-Hul error message PDF-HUL-133 Invalid date. It describes the process and results of a manual validation error analysis and treatment process.&lt;br /&gt;
&lt;br /&gt;
==Evaluation/Review==&lt;br /&gt;
&amp;lt;!-- How effective was the workflow? Was it replaced with a better workflow? Did it work well with some content but not others? What is the current status of the workflow? Does it relate to another workflow already described on the wiki? Link, explain and elaborate --&amp;gt;&lt;br /&gt;
The workflow is effective and should be replicable for most invalid date related errors in PDFs. However, as an invalid date has little impact on the rendering behavior of the PDF file itself, institutions may decide to not fix the error.&lt;br /&gt;
Please note that most PDF Readers (e.g., Adobe Acrobat, Foxit) make use of XMP Metadata and not of Document Info Dictionary Metadata when they display Date Created and Last Modified Dates in a document's properties. &lt;br /&gt;
&lt;br /&gt;
==Further Information==&lt;br /&gt;
&amp;lt;!-- Provide any further information or links to additional documentation here --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add four tildes below (&amp;quot;~~~~&amp;quot;) to create an automatic signature, including your wiki username. Ensure your user page (click on your username to create it) includes an up to date contact email address so that people can contact you if they want to discuss your workflow --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Note that your workflow will be marked with a CC3.0 licence --&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=Workflow:Validation_Error_Analysis_and_Treatment_for_PDF-hul_133_Invalid_date&amp;diff=6258</id>
		<title>Workflow:Validation Error Analysis and Treatment for PDF-hul 133 Invalid date</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=Workflow:Validation_Error_Analysis_and_Treatment_for_PDF-hul_133_Invalid_date&amp;diff=6258"/>
		<updated>2024-05-08T16:41:39Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: Created page with '{{Infobox COW |status=Production |tools=ExifTool, HxD, Pdfcpu, Qpdf, JHOVE, veraPDF Arlington Model Checker |input=File with JHOVE validation error PDF-HUL-133 “Invalid date...'&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox COW&lt;br /&gt;
|status=Production&lt;br /&gt;
|tools=ExifTool, HxD, Pdfcpu, Qpdf, JHOVE, veraPDF Arlington Model Checker&lt;br /&gt;
|input=File with JHOVE validation error PDF-HUL-133 “Invalid date&amp;quot;&lt;br /&gt;
|output=Fixed file&lt;br /&gt;
|organisation=TIB&lt;br /&gt;
|organisationurl=https://wiki.tib.eu/confluence/display/lza/Digital+preservation+at+TIB&lt;br /&gt;
}}&lt;br /&gt;
==Workflow Description==&lt;br /&gt;
&lt;br /&gt;
The workflow describes the analysis and the fix of a specific instance of a PDF-HUL-133 error. &lt;br /&gt;
It is a manual workflow. The methodology used here is that introduced in https://hdl.handle.net/2142/121092.&lt;br /&gt;
&lt;br /&gt;
'''Validation Error'''&lt;br /&gt;
&lt;br /&gt;
JHOVE v1.30.0RC1 PDF-hul v1.12.5 PDF-HUL-133 Invalid Date. Well-formed, but not valid.&lt;br /&gt;
&lt;br /&gt;
'''Cross-Check with other Tools'''&lt;br /&gt;
&lt;br /&gt;
Cross-checked with: &lt;br /&gt;
pdfcpu v0.6.0dev relaxed mode - no error &lt;br /&gt;
pdfcpu v0.6.0dev strict mode - no error &lt;br /&gt;
qpdf v9.1.1 - no error&lt;br /&gt;
Arlington PDF Model checker by verapdf 1.26.0-RC1 Greenfield Parser: &lt;br /&gt;
Entry ModDate in DocInfo shall have type Date (1 occurance)&lt;br /&gt;
Entry CreationDate in DocInfo shall have type Date (1 occurance)&lt;br /&gt;
'''&lt;br /&gt;
&lt;br /&gt;
'''Locate Error in Spec'''&lt;br /&gt;
&lt;br /&gt;
ISO3200-2:2017 (PDF 2.0 Spec) lists the the Keys CreationDate and ModDate in the Document Info Dictionary as type Date. &lt;br /&gt;
Section 7.0.4 defines that a date shall be a text string containing no whitespace, of the form: &lt;br /&gt;
&amp;quot;(D:YYYYMMDDHHmmSSOHH'mm)&lt;br /&gt;
where:&lt;br /&gt;
YYYY shall be the year&lt;br /&gt;
MM shall be the month (01–12)&lt;br /&gt;
DD shall be the day (01–31)&lt;br /&gt;
HH shall be the hour (00–23)&lt;br /&gt;
mm shall be the minute (00–59)&lt;br /&gt;
SS shall be the second (00–59)&lt;br /&gt;
O shall be the relationship of local time to Universal Time (UT), and shall be denoted by one of the characters PLUS SIGN (U+002B) (+), HYPHEN-MINUS (U+002D) (-), or LATIN CAPITAL LETTER Z (U+005A) (Z) (see below)&lt;br /&gt;
HH followed by APOSTROPHE (U+0027) (') shall be the absolute value of the offset from UT in hours (00–23)&lt;br /&gt;
mm shall be the absolute value of the offset from UT in minutes (00–59)&lt;br /&gt;
&lt;br /&gt;
The prefix D: shall be present, the year field (YYYY) shall be present and all other fields may be present but only if all of their preceding fields are also present. The APOSTROPHE following the hour offset field (HH) shall only be present if the HH field is present. The minute offset field (mm) shall only be present if the APOSTROPHE following the hour offset field (HH) is present. The default values for MM and DD shall be both 01; all other numerical fields shall default to zero values. A PLUS SIGN as the value of the O field signifies that local time is now and later than UT, a HYPHEN-MINUS signifies that local time is earlier than UT, and the LATIN CAPITAL LETTER Z signifies that local time is equal to UT. If no UT information is specified, the relationship of the specified time to UT shall be considered to be GMT. Regardless of whether the time zone is specified, the rest of the date shall be specified in local time.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
The specification further notes that &amp;quot;versions up to and including 1.7 defined a date string to include a terminating apostrophe. PDF processors are recommended to accept date strings that still follow that convention&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Locate Error in File&lt;br /&gt;
'''&lt;br /&gt;
Offset given by JHOVE only points to place where reference was used in GoTo destination. The reader tries to resolved the named destination used in the GoTo action via the name tree. Here the object is missing and replaced by &amp;quot;Null&amp;quot;.&lt;br /&gt;
(Rechte_von_Eltern_in_der_Kita_2018_V7_bf.indd:.45593:62)[null/Fit ]&lt;br /&gt;
&lt;br /&gt;
''' Match?'''&lt;br /&gt;
&lt;br /&gt;
Yes.&lt;br /&gt;
&lt;br /&gt;
'''Fixable?'''&lt;br /&gt;
&lt;br /&gt;
Yes.&lt;br /&gt;
&lt;br /&gt;
'''Fix'''&lt;br /&gt;
&lt;br /&gt;
Find location by checking page object the wrong destination is used on. With Adobe Acrobat Pro's &amp;quot;Edit Link&amp;quot; option, the erronous link can be removed and replaced by a correct one, if known.&lt;br /&gt;
&lt;br /&gt;
'''Check'''&lt;br /&gt;
&lt;br /&gt;
Re-validated file with JHOVE: now well-formed and valid. Link is now actionable.&lt;br /&gt;
&lt;br /&gt;
'''Success?'''&lt;br /&gt;
&lt;br /&gt;
Yes.&lt;br /&gt;
&lt;br /&gt;
[[File:PDF-hul-122 1.jpg|Textual description]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Describe your workflow here with an overview of the different steps or processes involved--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Purpose, Context and Content==&lt;br /&gt;
&amp;lt;!-- Describe what your workflow is for - i.e. what it is designed to achieve, what the organisational context of the workflow is, and what content it is designed to work with --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Evaluation/Review==&lt;br /&gt;
&amp;lt;!-- How effective was the workflow? Was it replaced with a better workflow? Did it work well with some content but not others? What is the current status of the workflow? Does it relate to another workflow already described on the wiki? Link, explain and elaborate --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Further Information==&lt;br /&gt;
&amp;lt;!-- Provide any further information or links to additional documentation here --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add four tildes below (&amp;quot;~~~~&amp;quot;) to create an automatic signature, including your wiki username. Ensure your user page (click on your username to create it) includes an up to date contact email address so that people can contact you if they want to discuss your workflow --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Note that your workflow will be marked with a CC3.0 licence --&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=Workflow:Validation_Error_Analysis_and_Treatment_for_PDF-hul_122_Invalid_destination_-_Destination_NULL&amp;diff=6160</id>
		<title>Workflow:Validation Error Analysis and Treatment for PDF-hul 122 Invalid destination - Destination NULL</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=Workflow:Validation_Error_Analysis_and_Treatment_for_PDF-hul_122_Invalid_destination_-_Destination_NULL&amp;diff=6160"/>
		<updated>2024-01-21T19:45:16Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox COW&lt;br /&gt;
|status=Production&lt;br /&gt;
|tools=Pdfcpu, Qpdf, JHOVE, Adobe Acrobat Pro, PDF Checker&lt;br /&gt;
|input=File with JHOVE validation error PDF-HUL-122 “Invalid Destination” / Well-Formed, but not valid. &lt;br /&gt;
This specific workflow documents the sample treatment for a file currently found here: https://www.schleswig-holstein.de/DE/landesregierung/ministerien-behoerden/VIII/Service/Broschueren/Broschueren_VIII/Kita/Mein_Kind_kommt_in_die_Kita_Rechte.pdf?__blob=publicationFile&amp;amp;v=2&lt;br /&gt;
|output=Fixed file&lt;br /&gt;
|organisation=TIB&lt;br /&gt;
|organisationurl=https://wiki.tib.eu/confluence/display/lza/Digital+preservation+at+TIB&lt;br /&gt;
}}&lt;br /&gt;
==Workflow Description==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- To add an image of your workflow, open the &amp;quot;Upload File&amp;quot; link on the left in a new browser tab and follow on screen instructions, then return to this page and add the name of your uploaded image to the line below - replacing &amp;quot;workflow.png&amp;quot; with the name of your file. Replace the text &amp;quot;Textual description&amp;quot; with a short description of your image. Filenames are case sensitive! If you don't want to add a workflow diagram or other image, delete the line below  --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The workflow describes the analysis and the fix of a specific instance of a PDF-HUL-122 error. &lt;br /&gt;
&amp;lt;b&amp;gt; CAUTION! PDF-HUL-122 errors can be very different in nature and impact. &amp;lt;/b&amp;gt;&lt;br /&gt;
The process described here can be used for internal document links that are not working. It is a manual workflow. More information about this specific case has been discussed in a blog. The methodology used here is that introduced in https://hdl.handle.net/2142/121092.&lt;br /&gt;
&lt;br /&gt;
'''Step 1: Validation Error'''&lt;br /&gt;
&lt;br /&gt;
JHOVE v1.28 PDF-hul v1.12.4 PDF-HUL-122 Invalid Destination with offset given. Well-formed, but not valid.&lt;br /&gt;
&lt;br /&gt;
'''Step 2: Cross-Check with other Tools'''&lt;br /&gt;
&lt;br /&gt;
Cross-checked with: &lt;br /&gt;
pdfcpu v0.6.0dev relaxed mode - no error &lt;br /&gt;
pdfcpu v0.6.0dev strict mode - unrelated error (Font error) &lt;br /&gt;
qpdf v9.1.1 - no error&lt;br /&gt;
PDF Checker 2.1.0 - no error&lt;br /&gt;
'''&lt;br /&gt;
Step 3: Matching Results?'''&lt;br /&gt;
&lt;br /&gt;
No. Error not reported by other tools, most likely due to low priority of error (only impacts validity, not well-formedness). &lt;br /&gt;
One additional un-related error picked up.&lt;br /&gt;
&lt;br /&gt;
'''Step 4: Choose Error to Treat'''&lt;br /&gt;
&lt;br /&gt;
Original PDF-HUL-122. Ignore Font error.&lt;br /&gt;
&lt;br /&gt;
'''Step 5A: Locate Error in Spec'''&lt;br /&gt;
&lt;br /&gt;
ISO 32000-2:2017 12.3.2.4 Named destinations must contain name as well as target destination. In case of internal destinations this is typically an object reference.&lt;br /&gt;
&lt;br /&gt;
'''Step 5B: Locate Error in File&lt;br /&gt;
'''&lt;br /&gt;
Offset given by JHOVE only points to place where reference was used in GoTo destination. The reader tries to resolved the named destination used in the GoTo action via the name tree. Here the object is missing and replaced by &amp;quot;Null&amp;quot;.&lt;br /&gt;
(Rechte_von_Eltern_in_der_Kita_2018_V7_bf.indd:.45593:62)[null/Fit ]&lt;br /&gt;
&lt;br /&gt;
'''Step 6: Match?'''&lt;br /&gt;
&lt;br /&gt;
Yes.&lt;br /&gt;
&lt;br /&gt;
'''Step 7: Fixable?'''&lt;br /&gt;
&lt;br /&gt;
Yes.&lt;br /&gt;
&lt;br /&gt;
'''Step 8: Fix'''&lt;br /&gt;
&lt;br /&gt;
Find location by checking page object the wrong destination is used on. With Adobe Acrobat Pro's &amp;quot;Edit Link&amp;quot; option, the erronous link can be removed and replaced by a correct one, if known.&lt;br /&gt;
&lt;br /&gt;
'''Step 9: Check'''&lt;br /&gt;
&lt;br /&gt;
Re-validated file with JHOVE: now well-formed and valid. Link is now actionable.&lt;br /&gt;
&lt;br /&gt;
'''Step 10: Success?'''&lt;br /&gt;
&lt;br /&gt;
Yes.&lt;br /&gt;
&lt;br /&gt;
[[File:PDF-hul-122 1.jpg|Textual description]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Describe your workflow here with an overview of the different steps or processes involved--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Purpose, Context and Content==&lt;br /&gt;
&amp;lt;!-- Describe what your workflow is for - i.e. what it is designed to achieve, what the organisational context of the workflow is, and what content it is designed to work with --&amp;gt;&lt;br /&gt;
This workflow describes the analysis and treatment of JHOVE PDF-Hul error message PDF-HUL-122 Invalid destination. It describes the process and results of a manual validation error analysis. &lt;br /&gt;
&lt;br /&gt;
==Evaluation/Review==&lt;br /&gt;
&amp;lt;!-- How effective was the workflow? Was it replaced with a better workflow? Did it work well with some content but not others? What is the current status of the workflow? Does it relate to another workflow already described on the wiki? Link, explain and elaborate --&amp;gt;&lt;br /&gt;
The workflow is effective for this specific instance of the error. It should be replicable for pdfs with similar invalid destination problems, i.e., internal links have been replaced with NULL. However, the fix needs to be considered carefully as it impacts the internal structure of the PDF file. &lt;br /&gt;
&lt;br /&gt;
==Further Information==&lt;br /&gt;
&amp;lt;!-- Provide any further information or links to additional documentation here --&amp;gt;&lt;br /&gt;
See a further discussion of this in the OPF blog: &lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add four tildes below (&amp;quot;~~~~&amp;quot;) to create an automatic signature, including your wiki username. Ensure your user page (click on your username to create it) includes an up to date contact email address so that people can contact you if they want to discuss your workflow --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Note that your workflow will be marked with a CC3.0 licence --&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=Workflow:Validation_Error_Analysis_and_Treatment_for_PDF-hul_122_Invalid_destination_-_Destination_NULL&amp;diff=6159</id>
		<title>Workflow:Validation Error Analysis and Treatment for PDF-hul 122 Invalid destination - Destination NULL</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=Workflow:Validation_Error_Analysis_and_Treatment_for_PDF-hul_122_Invalid_destination_-_Destination_NULL&amp;diff=6159"/>
		<updated>2024-01-21T19:40:55Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox COW&lt;br /&gt;
|status=Production&lt;br /&gt;
|tools=Pdfcpu, Qpdf, JHOVE, Adobe Acrobat Pro, PDF Checker&lt;br /&gt;
|input=File with JHOVE validation error PDF-HUL-122 “Invalid Destination” / Well-Formed, but not valid. &lt;br /&gt;
This specific workflow documents the sample treatment for a file currently found here: https://www.schleswig-holstein.de/DE/landesregierung/ministerien-behoerden/VIII/Service/Broschueren/Broschueren_VIII/Kita/Mein_Kind_kommt_in_die_Kita_Rechte.pdf?__blob=publicationFile&amp;amp;v=2&lt;br /&gt;
|output=Fixed file&lt;br /&gt;
|organisation=TIB&lt;br /&gt;
|organisationurl=https://wiki.tib.eu/confluence/display/lza/Digital+preservation+at+TIB&lt;br /&gt;
}}&lt;br /&gt;
==Workflow Description==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- To add an image of your workflow, open the &amp;quot;Upload File&amp;quot; link on the left in a new browser tab and follow on screen instructions, then return to this page and add the name of your uploaded image to the line below - replacing &amp;quot;workflow.png&amp;quot; with the name of your file. Replace the text &amp;quot;Textual description&amp;quot; with a short description of your image. Filenames are case sensitive! If you don't want to add a workflow diagram or other image, delete the line below  --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The workflow describes the analysis and the fix of a specific instance of a PDF-HUL-122 error. &lt;br /&gt;
&amp;lt;b&amp;gt; CAUTION! PDF-HUL-122 errors can be very different in nature and impact. &amp;lt;/b&amp;gt;&lt;br /&gt;
The process described here can be used for internal document links that are not working. It is a manual workflow. More information about this specific case has been discussed in a blog. The methodology used here is that introduced in https://hdl.handle.net/2142/121092.&lt;br /&gt;
&lt;br /&gt;
Step 1: Validation Error&lt;br /&gt;
&lt;br /&gt;
JHOVE v1.28 PDF-hul v1.12.4 PDF-HUL-122 Invalid Destination with offset given. Well-formed, but not valid.&lt;br /&gt;
&lt;br /&gt;
Step 2: Cross-Check with other Tools&lt;br /&gt;
&lt;br /&gt;
Cross-checked with: &lt;br /&gt;
pdfcpu v0.6.0dev relaxed mode - no error &lt;br /&gt;
pdfcpu v0.6.0dev strict mode - unrelated error (Font error) &lt;br /&gt;
qpdf v9.1.1 - no error&lt;br /&gt;
PDF Checker 2.1.0 - no error&lt;br /&gt;
&lt;br /&gt;
Step 3: Matching Results?&lt;br /&gt;
&lt;br /&gt;
No. Error not reported by other tools, most likely due to low priority of error (only impacts validity, not well-formedness). &lt;br /&gt;
One additional un-related error picked up.&lt;br /&gt;
&lt;br /&gt;
Step 4: Choose Error to Treat&lt;br /&gt;
&lt;br /&gt;
Original PDF-HUL-122. Ignore Font error.&lt;br /&gt;
&lt;br /&gt;
Step 5A: Locate Error in Spec&lt;br /&gt;
&lt;br /&gt;
ISO 32000-2:2017 12.3.2.4 Named destinations must contain name as well as target destination. In case of internal destinations this is typically an object reference.&lt;br /&gt;
&lt;br /&gt;
Step 5B: Locate Error in File&lt;br /&gt;
&lt;br /&gt;
Offset given by JHOVE only points to place where reference was used in GoTo destination. The reader tries to resolved the named destination used in the GoTo action via the name tree. Here the object is missing and replaced by &amp;quot;Null&amp;quot;.&lt;br /&gt;
(Rechte_von_Eltern_in_der_Kita_2018_V7_bf.indd:.45593:62)[null/Fit ]&lt;br /&gt;
&lt;br /&gt;
Step 6: Match?&lt;br /&gt;
&lt;br /&gt;
Yes.&lt;br /&gt;
&lt;br /&gt;
Step 7: Fixable?&lt;br /&gt;
&lt;br /&gt;
Yes.&lt;br /&gt;
&lt;br /&gt;
Step 8: Fix&lt;br /&gt;
&lt;br /&gt;
Find location by checking page object the wrong destination is used on. With Adobe Acrobat Pro's &amp;quot;Edit Link&amp;quot; option, the erronous link can be removed and replaced by a correct one, if known.&lt;br /&gt;
&lt;br /&gt;
Step 9: Check&lt;br /&gt;
&lt;br /&gt;
Re-validated file with JHOVE: now well-formed and valid. Link is now actionable.&lt;br /&gt;
&lt;br /&gt;
Step 10: Success?&lt;br /&gt;
&lt;br /&gt;
Yes.&lt;br /&gt;
&lt;br /&gt;
[[File:PDF-hul-122 1.jpg|Textual description]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Describe your workflow here with an overview of the different steps or processes involved--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Purpose, Context and Content==&lt;br /&gt;
&amp;lt;!-- Describe what your workflow is for - i.e. what it is designed to achieve, what the organisational context of the workflow is, and what content it is designed to work with --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Evaluation/Review==&lt;br /&gt;
&amp;lt;!-- How effective was the workflow? Was it replaced with a better workflow? Did it work well with some content but not others? What is the current status of the workflow? Does it relate to another workflow already described on the wiki? Link, explain and elaborate --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Further Information==&lt;br /&gt;
&amp;lt;!-- Provide any further information or links to additional documentation here --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add four tildes below (&amp;quot;~~~~&amp;quot;) to create an automatic signature, including your wiki username. Ensure your user page (click on your username to create it) includes an up to date contact email address so that people can contact you if they want to discuss your workflow --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Note that your workflow will be marked with a CC3.0 licence --&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=Workflow:Validation_Error_Analysis_and_Treatment_for_PDF-hul_122_Invalid_destination_-_Destination_NULL&amp;diff=6158</id>
		<title>Workflow:Validation Error Analysis and Treatment for PDF-hul 122 Invalid destination - Destination NULL</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=Workflow:Validation_Error_Analysis_and_Treatment_for_PDF-hul_122_Invalid_destination_-_Destination_NULL&amp;diff=6158"/>
		<updated>2024-01-21T19:25:02Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: Created page with &amp;quot;{{Infobox COW |status=Production |tools=Pdfcpu, Qpdf, JHOVE, Adobe Acrobat Pro, PDF Checker |input=File with JHOVE validation error PDF-HUL-122 “Invalid Destination” / Wel...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox COW&lt;br /&gt;
|status=Production&lt;br /&gt;
|tools=Pdfcpu, Qpdf, JHOVE, Adobe Acrobat Pro, PDF Checker&lt;br /&gt;
|input=File with JHOVE validation error PDF-HUL-122 “Invalid Destination” / Well-Formed, but not valid. &lt;br /&gt;
This specific workflow documents the sample treatment for a file currently found here: https://www.schleswig-holstein.de/DE/landesregierung/ministerien-behoerden/VIII/Service/Broschueren/Broschueren_VIII/Kita/Mein_Kind_kommt_in_die_Kita_Rechte.pdf?__blob=publicationFile&amp;amp;v=2&lt;br /&gt;
|output=Fixed file&lt;br /&gt;
|organisation=TIB&lt;br /&gt;
|organisationurl=https://wiki.tib.eu/confluence/display/lza/Digital+preservation+at+TIB&lt;br /&gt;
}}&lt;br /&gt;
==Workflow Description==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- To add an image of your workflow, open the &amp;quot;Upload File&amp;quot; link on the left in a new browser tab and follow on screen instructions, then return to this page and add the name of your uploaded image to the line below - replacing &amp;quot;workflow.png&amp;quot; with the name of your file. Replace the text &amp;quot;Textual description&amp;quot; with a short description of your image. Filenames are case sensitive! If you don't want to add a workflow diagram or other image, delete the line below  --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[File:PDF-hul-122 1.jpg|Textual description]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Describe your workflow here with an overview of the different steps or processes involved--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Purpose, Context and Content==&lt;br /&gt;
&amp;lt;!-- Describe what your workflow is for - i.e. what it is designed to achieve, what the organisational context of the workflow is, and what content it is designed to work with --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Evaluation/Review==&lt;br /&gt;
&amp;lt;!-- How effective was the workflow? Was it replaced with a better workflow? Did it work well with some content but not others? What is the current status of the workflow? Does it relate to another workflow already described on the wiki? Link, explain and elaborate --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Further Information==&lt;br /&gt;
&amp;lt;!-- Provide any further information or links to additional documentation here --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add four tildes below (&amp;quot;~~~~&amp;quot;) to create an automatic signature, including your wiki username. Ensure your user page (click on your username to create it) includes an up to date contact email address so that people can contact you if they want to discuss your workflow --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Note that your workflow will be marked with a CC3.0 licence --&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=File:PDF-hul-122_1.jpg&amp;diff=6157</id>
		<title>File:PDF-hul-122 1.jpg</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=File:PDF-hul-122_1.jpg&amp;diff=6157"/>
		<updated>2024-01-21T19:23:51Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=MD5Checker&amp;diff=5938</id>
		<title>MD5Checker</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=MD5Checker&amp;diff=5938"/>
		<updated>2022-10-22T13:56:04Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: /* Description */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox tool&lt;br /&gt;
|purpose=Lightweight Windows Desktop application to create and check MD5 Digests for one or several files.&lt;br /&gt;
|homepage=http://getmd5checker.com/&lt;br /&gt;
|license=All rights reserved&lt;br /&gt;
|cost=Free&lt;br /&gt;
|platforms=Windows&lt;br /&gt;
|language=English and Simplified Chinese versions available&lt;br /&gt;
|function=Fixity&lt;br /&gt;
}}&lt;br /&gt;
{{Infobox tool details}}&lt;br /&gt;
== Description ==&lt;br /&gt;
&amp;lt;!-- Describe the what the tool does, focusing on it's digital preservation value. Keep it factual. --&amp;gt;&lt;br /&gt;
Md5Checker is a free, lightweight and easy-to-use GUI tool to manage, calculate and verify MD5 checksum of one or several files/folders.&lt;br /&gt;
Program is for Windows plattform only and consists of a single, small .exe File (300 KB), which makes it portable.&lt;br /&gt;
&lt;br /&gt;
[[File:Md5checker.png|thumb|Screenshot of md5checker GUI]]&lt;br /&gt;
&lt;br /&gt;
== User Experiences ==&lt;br /&gt;
&amp;lt;!-- Add hotlinks to user experiences with the tool (eg. blog posts). These should illustrate the effectiveness (or otherwise) of the tool. Use a bullet list. --&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=MD5Checker&amp;diff=5937</id>
		<title>MD5Checker</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=MD5Checker&amp;diff=5937"/>
		<updated>2022-10-22T13:53:48Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox tool&lt;br /&gt;
|purpose=Lightweight Windows Desktop application to create and check MD5 Digests for one or several files.&lt;br /&gt;
|homepage=http://getmd5checker.com/&lt;br /&gt;
|license=All rights reserved&lt;br /&gt;
|cost=Free&lt;br /&gt;
|platforms=Windows&lt;br /&gt;
|language=English and Simplified Chinese versions available&lt;br /&gt;
|function=Fixity&lt;br /&gt;
}}&lt;br /&gt;
{{Infobox tool details}}&lt;br /&gt;
== Description ==&lt;br /&gt;
&amp;lt;!-- Describe the what the tool does, focusing on it's digital preservation value. Keep it factual. --&amp;gt;&lt;br /&gt;
Md5Checker is a free, lightweight and easy-to-use GUI tool to manage, calculate and verify MD5 checksum of one or several files/folders.&lt;br /&gt;
Program is for Windows plattform only and consists of a single, small .exe File (300 KB), which makes it portable.&lt;br /&gt;
&lt;br /&gt;
[[File:Md5checker.png|thumb|Screenshot of md5checker GUI]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== User Experiences ==&lt;br /&gt;
&amp;lt;!-- Add hotlinks to user experiences with the tool (eg. blog posts). These should illustrate the effectiveness (or otherwise) of the tool. Use a bullet list. --&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=File:Md5checker.png&amp;diff=5936</id>
		<title>File:Md5checker.png</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=File:Md5checker.png&amp;diff=5936"/>
		<updated>2022-10-22T13:52:47Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: Screenshot from Md5checker tool&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Screenshot from Md5checker tool&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=MD5Checker&amp;diff=5935</id>
		<title>MD5Checker</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=MD5Checker&amp;diff=5935"/>
		<updated>2022-10-22T13:51:23Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: Created page with &amp;quot;{{Infobox tool |purpose=Lightweight Windows Desktop application to create and check MD5 Digests for one or several files. |homepage=http://getmd5checker.com/ |license=All righ...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox tool&lt;br /&gt;
|purpose=Lightweight Windows Desktop application to create and check MD5 Digests for one or several files.&lt;br /&gt;
|homepage=http://getmd5checker.com/&lt;br /&gt;
|license=All rights reserved&lt;br /&gt;
|cost=Free&lt;br /&gt;
|platforms=Windows&lt;br /&gt;
|language=English and Simplified Chinese versions available&lt;br /&gt;
|function=Fixity&lt;br /&gt;
}}&lt;br /&gt;
{{Infobox tool details}}&lt;br /&gt;
== Description ==&lt;br /&gt;
&amp;lt;!-- Describe the what the tool does, focusing on it's digital preservation value. Keep it factual. --&amp;gt;&lt;br /&gt;
Md5Checker is a free, lightweight and easy-to-use GUI tool to manage, calculate and verify MD5 checksum of one or several files/folders.&lt;br /&gt;
Program is for Windows plattform only and consists of a single, small .exe File (300 KB), which makes it portable.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== User Experiences ==&lt;br /&gt;
&amp;lt;!-- Add hotlinks to user experiences with the tool (eg. blog posts). These should illustrate the effectiveness (or otherwise) of the tool. Use a bullet list. --&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=DBPTK_Developer&amp;diff=5909</id>
		<title>DBPTK Developer</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=DBPTK_Developer&amp;diff=5909"/>
		<updated>2022-05-23T09:21:00Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox tool&lt;br /&gt;
|image=DBPTK_developer.png&lt;br /&gt;
|purpose=DBPTK Developer - library and command-line tool for exection of database preservation actions&lt;br /&gt;
|homepage=https://database-preservation.com/&lt;br /&gt;
|sourcecode=https://github.com/keeps/dbptk-developer&lt;br /&gt;
|license=GNU LESSER GENERAL PUBLIC LICENSE&lt;br /&gt;
|language=Java&lt;br /&gt;
|formats_in=MySQL, MariaDB, PostgreSQL, Oracle, Microsoft SQL Server, Microsoft Access, Progress OpenEdge, Sybase ASA&lt;br /&gt;
|formats_out=SIARD1, SIARD2, SIARD DK&lt;br /&gt;
|function=Validation, File Format Migration&lt;br /&gt;
}}&lt;br /&gt;
{{Infobox tool details}}&lt;br /&gt;
== Description ==&lt;br /&gt;
&amp;lt;!-- Describe the what the tool does, focusing on it's digital preservation value. Keep it factual. --&amp;gt;&lt;br /&gt;
The Database Preservation Toolkit allows conversion between Database formats, including connection to live systems, for purposes of digitally preserving databases. The toolkit allows conversion of live or backed-up databases into preservation formats such as SIARD, a XML-based format created for the purpose of database preservation. The toolkit also allows conversion of the preservation formats back into live systems to allow the full functionality of databases.&lt;br /&gt;
&lt;br /&gt;
This toolkit was part of the RODA project and now has been released as a project by its own due to the increasing interest on this particular feature. It is now being further developed in the EARK project together with a new version of the SIARD preservation format.&lt;br /&gt;
&lt;br /&gt;
The toolkit is created as a platform that uses input and output modules. Each module supports read and/or write to a particular database format or live system. New modules can easily be added by implementation of a new interface and adding of new drivers.&lt;br /&gt;
&lt;br /&gt;
== User Experiences ==&lt;br /&gt;
&amp;lt;!-- Add hotlinks to user experiences with the tool (eg. blog posts). These should illustrate the effectiveness (or otherwise) of the tool. Use a bullet list. --&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=File:DBPTK_developer.png&amp;diff=5908</id>
		<title>File:DBPTK developer.png</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=File:DBPTK_developer.png&amp;diff=5908"/>
		<updated>2022-05-23T09:20:06Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=DBPTK_Developer&amp;diff=5907</id>
		<title>DBPTK Developer</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=DBPTK_Developer&amp;diff=5907"/>
		<updated>2022-05-23T09:19:21Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: Created page with &amp;quot;{{Infobox tool |image=DBTPK_Developer.png |purpose=DBPTK Developer - library and command-line tool for exection of database preservation actions |homepage=https://database-pre...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox tool&lt;br /&gt;
|image=DBTPK_Developer.png&lt;br /&gt;
|purpose=DBPTK Developer - library and command-line tool for exection of database preservation actions&lt;br /&gt;
|homepage=https://database-preservation.com/&lt;br /&gt;
|sourcecode=https://github.com/keeps/dbptk-developer&lt;br /&gt;
|license=GNU LESSER GENERAL PUBLIC LICENSE&lt;br /&gt;
|language=Java&lt;br /&gt;
|formats_in=MySQL, MariaDB, PostgreSQL, Oracle, Microsoft SQL Server, Microsoft Access, Progress OpenEdge, Sybase ASA&lt;br /&gt;
|formats_out=SIARD1, SIARD2, SIARD DK&lt;br /&gt;
|function=Validation, File Format Migration&lt;br /&gt;
}}&lt;br /&gt;
{{Infobox tool details}}&lt;br /&gt;
== Description ==&lt;br /&gt;
&amp;lt;!-- Describe the what the tool does, focusing on it's digital preservation value. Keep it factual. --&amp;gt;&lt;br /&gt;
The Database Preservation Toolkit allows conversion between Database formats, including connection to live systems, for purposes of digitally preserving databases. The toolkit allows conversion of live or backed-up databases into preservation formats such as SIARD, a XML-based format created for the purpose of database preservation. The toolkit also allows conversion of the preservation formats back into live systems to allow the full functionality of databases.&lt;br /&gt;
&lt;br /&gt;
This toolkit was part of the RODA project and now has been released as a project by its own due to the increasing interest on this particular feature. It is now being further developed in the EARK project together with a new version of the SIARD preservation format.&lt;br /&gt;
&lt;br /&gt;
The toolkit is created as a platform that uses input and output modules. Each module supports read and/or write to a particular database format or live system. New modules can easily be added by implementation of a new interface and adding of new drivers.&lt;br /&gt;
&lt;br /&gt;
== User Experiences ==&lt;br /&gt;
&amp;lt;!-- Add hotlinks to user experiences with the tool (eg. blog posts). These should illustrate the effectiveness (or otherwise) of the tool. Use a bullet list. --&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=ADIGRES&amp;diff=5317</id>
		<title>ADIGRES</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=ADIGRES&amp;diff=5317"/>
		<updated>2021-10-19T11:17:49Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox tool&lt;br /&gt;
|purpose=ADIGRES is a powerful cross-platform Document Management System written in Java.&lt;br /&gt;
|homepage=http://sourceforge.net/projects/adigres&lt;br /&gt;
|function=Access, File Management, Storage&lt;br /&gt;
|content=Document&lt;br /&gt;
}}&lt;br /&gt;
{{Infobox tool details&lt;br /&gt;
|ohloh_id=p_d_7823&lt;br /&gt;
}}&lt;br /&gt;
= Description =&lt;br /&gt;
ADIGRES is a powerful cross-platform Document Management System written in Java. It can be used to archive various document formats such as HTML,  PDF,  e-mail,  plain-text or images. A user management module and a full-text search engine are included. &lt;br /&gt;
&lt;br /&gt;
= User Experiences =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Development Activity =&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=ADIGRES&amp;diff=5316</id>
		<title>ADIGRES</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=ADIGRES&amp;diff=5316"/>
		<updated>2021-10-19T11:17:24Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox tool&lt;br /&gt;
|purpose=ADIGRES is a powerful cross-platform Document Management System written in Java.&lt;br /&gt;
|homepage=http://sourceforge.net/projects/adigres&lt;br /&gt;
|function=Access, File Management, Storage&lt;br /&gt;
|content=Document&lt;br /&gt;
}}&lt;br /&gt;
{{Infobox tool details&lt;br /&gt;
|ohloh_id=ADIGRES&lt;br /&gt;
}}&lt;br /&gt;
= Description =&lt;br /&gt;
ADIGRES is a powerful cross-platform Document Management System written in Java. It can be used to archive various document formats such as HTML,  PDF,  e-mail,  plain-text or images. A user management module and a full-text search engine are included. &lt;br /&gt;
&lt;br /&gt;
= User Experiences =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Development Activity =&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=ACE_(Audit_Control_Environment)&amp;diff=5315</id>
		<title>ACE (Audit Control Environment)</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=ACE_(Audit_Control_Environment)&amp;diff=5315"/>
		<updated>2021-10-19T11:16:12Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox tool&lt;br /&gt;
|purpose=The Auditing Control Environment is a mature set of software designed to help libraries and archives prove their holdings are intact and trustworthy.&lt;br /&gt;
|homepage=https://wiki.umiacs.umd.edu/adapt/index.php/Ace:Main&lt;br /&gt;
|license=Apache License&lt;br /&gt;
|platforms=Web-based and platform independent. Requires Java 1.6 or later; Tomcat 6.0 or later; MySQL 4.0 or later; and MySQL connector 5.0.7 or better&lt;br /&gt;
|function=Fixity&lt;br /&gt;
}}&lt;br /&gt;
{{Infobox tool details&lt;br /&gt;
|ohloh_id=ace&lt;br /&gt;
}}&lt;br /&gt;
= Description =&lt;br /&gt;
The Audit Control Environment is a mature set of software designed to help librarys and archives prove their holdings are intact and trustworthy. Recent developments of ACE include a new token store format to allow ACE tokens to be easily exported, transferred, and independently verified by third parties. To support the ACE tokens a python proof of concept has been developed to allow 3rd parties to write their own file validation routines using ACE tokens.  Developed by University of Maryland. Written in Java.&lt;br /&gt;
&lt;br /&gt;
= User Experiences =&lt;br /&gt;
&lt;br /&gt;
* I deployed ACE-AM a few years ago, in it's servlet form, and it worked pretty well. The only problem was that for very large collections (millions of individual files) it would start to fall over due to running out of RAM. There is no technical need to keep the entire collection's checksum data in memory (as the system has a database available), so this could easily have been fixed by now. If this is a potential concern, I recommend monitoring memory usage as part of a large-scale test during evaluation. [[User:Andy Jackson|Andy Jackson]] ([[User talk:Andy Jackson|talk]]) 11:02, 11 September 2014 (UTC)&lt;br /&gt;
* [https://groups.google.com/forum/#!topic/digital-curation/ZT21Ac1aLQQ Discussion of fixity tools, including ACE on the Digital Curation google groups]&lt;br /&gt;
&lt;br /&gt;
= Development Activity =&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=7train&amp;diff=5303</id>
		<title>7train</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=7train&amp;diff=5303"/>
		<updated>2021-10-19T11:04:30Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox tool&lt;br /&gt;
|purpose=XSLT 2.0 tool for generating METS files from XML input&lt;br /&gt;
|homepage=http://seventrain.sourceforge.net/&lt;br /&gt;
|license=BSD License&lt;br /&gt;
|formats_out=METS (Metadata Encoding and Transmission Standard)&lt;br /&gt;
|function=Metadata Processing&lt;br /&gt;
|content=Metadata&lt;br /&gt;
}}&lt;br /&gt;
{{Infobox tool details&lt;br /&gt;
|ohloh_id=seventrain&lt;br /&gt;
}}&lt;br /&gt;
== Description ==&lt;br /&gt;
&amp;lt;!-- Describe the what the tool does, focusing on it's digital preservation value. Keep it factual. --&amp;gt;&lt;br /&gt;
An XSLT 2.0 tool for generating METS files from XML input. It builds the basic METS structure so that the user can worry about what is specific to the user's project. It includes (and was first built for) a complete transformation from ContentDM XML export. &lt;br /&gt;
&lt;br /&gt;
== User Experiences ==&lt;br /&gt;
&amp;lt;!-- Add hotlinks to user experiences with the tool (eg. blog posts). These should illustrate the effectiveness (or otherwise) of the tool. Use a bullet list. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Development Activity ==&lt;br /&gt;
&amp;lt;!-- Provide *evidence* of development activity of the tool. For example, RSS feeds for code issues or commits. --&amp;gt;&lt;br /&gt;
&amp;lt;!-- Add the OpenHub.com ID for the tool, if known. --&amp;gt;&lt;br /&gt;
Development stopped. Last commit was done in 2012-12-12.&lt;br /&gt;
&lt;br /&gt;
Commits in SourceForge : https://sourceforge.net/p/seventrain/code/commit_browser&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=EmbARC&amp;diff=5279</id>
		<title>EmbARC</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=EmbARC&amp;diff=5279"/>
		<updated>2021-09-27T06:47:00Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox tool&lt;br /&gt;
|image={{PAGENAMEE}}.png&lt;br /&gt;
|purpose=internal file metadata management including embedding and validation&lt;br /&gt;
|homepage=http://www.digitizationguidelines.gov/guidelines/embARC.html&lt;br /&gt;
|license=CC0 1.0 Public Domain&lt;br /&gt;
|platforms=Windows, Mac&lt;br /&gt;
|function=Metadata Processing, Quality Assurance&lt;br /&gt;
|content=Video&lt;br /&gt;
}}&lt;br /&gt;
{{Infobox tool details}}&lt;br /&gt;
&amp;lt;!-- Use the structure provided in this template, do not change it! --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Note that to use the image field, you should leave the value as {{PAGENAMEE}}.png (or similar) and upload a copy of the image. Hot-linking is not supported. If you don't want an image, just remove that line. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&amp;lt;!-- Describe the what the tool does, focusing on it's digital preservation value. Keep it factual. --&amp;gt;&lt;br /&gt;
embARC (“metadata embedded for archival content”) manages internal file metadata including embedding and validation. Created by [http://www.digitizationguidelines.gov/  FADGI] (Federal Agencies Digital Guidelines Initiative), in conjunction with [https://www.weareavp.com/ AVP] and [https://www.portalmedia.com/ PortalMedia], embARC features flexible options for DPX (Digital Picture Exchange) and MXF (Material Exchange Format) files to support FADGI’s Guidelines. &lt;br /&gt;
&lt;br /&gt;
Guidelines implemented in validation routines within in embARC are currently: &lt;br /&gt;
* [http://www.digitizationguidelines.gov/guidelines/digitize-DPXembedding.html Guidelines for Embedded Metadata within DPX File Headers for Digitized Motion Picture Film] &lt;br /&gt;
* required SMPTE 268 metadata rules&lt;br /&gt;
* [http://www.digitizationguidelines.gov/guidelines/MXF_app_spec.html SMPTE RDD 48: MXF Archive and Preservation Format]&lt;br /&gt;
&lt;br /&gt;
embARC enables users to audit and correct internal metadata of both individual files or an entire DPX sequence while not impacting the image data. Functionality for additional file formats is in development, including MXF files. embARC is developed in JAVA. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Further information about the software and release history is available at:&lt;br /&gt;
http://www.digitizationguidelines.gov/guidelines/embARC.html &lt;br /&gt;
&lt;br /&gt;
== User Experiences ==&lt;br /&gt;
&amp;lt;!-- Add hotlinks to user experiences with the tool (eg. blog posts). These should illustrate the effectiveness (or otherwise) of the tool. Use a bullet list. --&amp;gt;&lt;br /&gt;
* [https://docs.google.com/document/d/1twXVvNwsQdc-u_kHyURyjmKQl3R7bOpYX_Po0uXJVXk/edit embARC GUI user guide]&lt;br /&gt;
* [https://docs.google.com/document/d/1lHL2ZQJ8Z2Yhpkjhk4ci0l0vHpsbjXgZZvr8umLSebM/edit embARC CLI user Guide]&lt;br /&gt;
* [https://blogs.loc.gov/thesignal/2021/09/fadgi-embarc/?loclr=eadpb Library of Congress Blog about v1 and CLI development] &lt;br /&gt;
&lt;br /&gt;
== Development Activity ==&lt;br /&gt;
&amp;lt;!-- Provide *evidence* of development activity of the tool. For example, RSS feeds for code issues or commits. --&amp;gt;&lt;br /&gt;
&amp;lt;!-- Add the OpenHub.com ID for the tool, if known. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Current release is 1.0.0 for GUI and Version 0.2.0 beta for CLI. &lt;br /&gt;
Github repo: https://github.com/LibraryOfCongress/embARC&lt;br /&gt;
Windows and Mac builds: http://www.digitizationguidelines.gov/guidelines/embARC.html&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=EmbARC&amp;diff=5278</id>
		<title>EmbARC</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=EmbARC&amp;diff=5278"/>
		<updated>2021-09-27T06:44:28Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox tool&lt;br /&gt;
|image={{PAGENAMEE}}.png&lt;br /&gt;
|purpose=internal file metadata management including embedding and validation&lt;br /&gt;
|homepage=http://www.digitizationguidelines.gov/guidelines/embARC.html&lt;br /&gt;
|license=CC0 1.0 Public Domain&lt;br /&gt;
|platforms=Windows, Mac&lt;br /&gt;
|function=Metadata Processing, Quality Assurance&lt;br /&gt;
|content=Video&lt;br /&gt;
}}&lt;br /&gt;
{{Infobox tool details}}&lt;br /&gt;
&amp;lt;!-- Use the structure provided in this template, do not change it! --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Note that to use the image field, you should leave the value as {{PAGENAMEE}}.png (or similar) and upload a copy of the image. Hot-linking is not supported. If you don't want an image, just remove that line. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&amp;lt;!-- Describe the what the tool does, focusing on it's digital preservation value. Keep it factual. --&amp;gt;&lt;br /&gt;
embARC (“metadata embedded for archival content”) manages internal file metadata including embedding and validation. Created by [http://www.digitizationguidelines.gov/  FADGI] (Federal Agencies Digital Guidelines Initiative), in conjunction with [https://www.weareavp.com/ AVP] and [https://www.portalmedia.com/ PortalMedia], embARC features flexible options for DPX (Digital Picture Exchange) and MXF (Material Exchange Format) files to support FADGI’s Guidelines. &lt;br /&gt;
&lt;br /&gt;
Guidelines implemented in validation routines within in embARC are currently: &lt;br /&gt;
* [http://www.digitizationguidelines.gov/guidelines/digitize-DPXembedding.html Guidelines for Embedded Metadata within DPX File Headers for Digitized Motion Picture Film] &lt;br /&gt;
* required SMPTE 268 metadata rules&lt;br /&gt;
* [http://www.digitizationguidelines.gov/guidelines/MXF_app_spec.html SMPTE RDD 48: MXF Archive and Preservation Format]&lt;br /&gt;
&lt;br /&gt;
embARC enables users to audit and correct internal metadata of both individual files or an entire DPX sequence while not impacting the image data. Functionality for additional file formats is in development, including MXF files. embARC is developed in JAVA. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Further information about the software and release history is available at:&lt;br /&gt;
http://www.digitizationguidelines.gov/guidelines/embARC.html &lt;br /&gt;
&lt;br /&gt;
== User Experiences ==&lt;br /&gt;
&amp;lt;!-- Add hotlinks to user experiences with the tool (eg. blog posts). These should illustrate the effectiveness (or otherwise) of the tool. Use a bullet list. --&amp;gt;&lt;br /&gt;
embARC GUI user guide:&lt;br /&gt;
https://docs.google.com/document/d/1twXVvNwsQdc-u_kHyURyjmKQl3R7bOpYX_Po0uXJVXk/edit&lt;br /&gt;
&lt;br /&gt;
embARC CLI user Guide:&lt;br /&gt;
https://docs.google.com/document/d/1lHL2ZQJ8Z2Yhpkjhk4ci0l0vHpsbjXgZZvr8umLSebM/edit &lt;br /&gt;
&lt;br /&gt;
Library of Congress Blog about v1 and CLI development: https://blogs.loc.gov/thesignal/2021/09/fadgi-embarc/?loclr=eadpb&lt;br /&gt;
&lt;br /&gt;
== Development Activity ==&lt;br /&gt;
&amp;lt;!-- Provide *evidence* of development activity of the tool. For example, RSS feeds for code issues or commits. --&amp;gt;&lt;br /&gt;
&amp;lt;!-- Add the OpenHub.com ID for the tool, if known. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Current release is 1.0.0 for GUI and Version 0.2.0 beta for CLI. &lt;br /&gt;
Github repo: https://github.com/LibraryOfCongress/embARC&lt;br /&gt;
Windows and Mac builds: http://www.digitizationguidelines.gov/guidelines/embARC.html&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=EmbARC&amp;diff=5277</id>
		<title>EmbARC</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=EmbARC&amp;diff=5277"/>
		<updated>2021-09-27T06:30:18Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox tool&lt;br /&gt;
|image={{PAGENAMEE}}.png&lt;br /&gt;
|purpose=internal file metadata management including embedding and validation&lt;br /&gt;
|homepage=http://www.digitizationguidelines.gov/guidelines/embARC.html&lt;br /&gt;
|license=CC0 1.0 Public Domain&lt;br /&gt;
|platforms=Windows, Mac&lt;br /&gt;
|function=Metadata Processing, Quality Assurance&lt;br /&gt;
|content=Video&lt;br /&gt;
}}&lt;br /&gt;
{{Infobox tool details}}&lt;br /&gt;
&amp;lt;!-- Use the structure provided in this template, do not change it! --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Note that to use the image field, you should leave the value as {{PAGENAMEE}}.png (or similar) and upload a copy of the image. Hot-linking is not supported. If you don't want an image, just remove that line. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&amp;lt;!-- Describe the what the tool does, focusing on it's digital preservation value. Keep it factual. --&amp;gt;&lt;br /&gt;
embARC (“metadata embedded for archival content”) manages internal file metadata including embedding and validation. Created by [http://www.digitizationguidelines.gov/  FADGI] (Federal Agencies Digital Guidelines Initiative), in conjunction with [https://www.weareavp.com/ AVP] and [https://www.portalmedia.com/ PortalMedia], embARC features flexible options for DPX (Digital Picture Exchange) files to support FADGI’s Guidelines for Embedded Metadata within DPX File Headers for Digitized Motion Picture Film as well as required SMPTE 268 metadata rules. embARC enables users to audit and correct internal metadata of both individual files or an entire DPX sequence while not impacting the image data. Functionality for additional file formats is in development, including MXF files. embARC is developed in JAVA. &lt;br /&gt;
&lt;br /&gt;
Further information about the software and release history is available at:&lt;br /&gt;
http://www.digitizationguidelines.gov/guidelines/embARC.html &lt;br /&gt;
&lt;br /&gt;
== User Experiences ==&lt;br /&gt;
&amp;lt;!-- Add hotlinks to user experiences with the tool (eg. blog posts). These should illustrate the effectiveness (or otherwise) of the tool. Use a bullet list. --&amp;gt;&lt;br /&gt;
A google doc of the user guide is availabe at:&lt;br /&gt;
https://docs.google.com/document/d/1twXVvNwsQdc-u_kHyURyjmKQl3R7bOpYX_Po0uXJVXk/edit&lt;br /&gt;
Library of Congress Blog about v1 and CLI development: https://blogs.loc.gov/thesignal/2021/09/fadgi-embarc/?loclr=eadpb&lt;br /&gt;
&lt;br /&gt;
== Development Activity ==&lt;br /&gt;
&amp;lt;!-- Provide *evidence* of development activity of the tool. For example, RSS feeds for code issues or commits. --&amp;gt;&lt;br /&gt;
&amp;lt;!-- Add the OpenHub.com ID for the tool, if known. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Current release is 1.0.0 for GUI and Version 0.2.0 beta for CLI. &lt;br /&gt;
Github repo: https://github.com/LibraryOfCongress/embARC&lt;br /&gt;
Windows and Mac builds: http://www.digitizationguidelines.gov/guidelines/embARC.html&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=ADC_Test&amp;diff=5273</id>
		<title>ADC Test</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=ADC_Test&amp;diff=5273"/>
		<updated>2021-09-17T06:05:51Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox tool&lt;br /&gt;
|purpose=Tests and reports on audio analog-to-digital converters&lt;br /&gt;
|homepage=https://www.weareavp.com/products/adctest/&lt;br /&gt;
|license=Public domain and licensed under a 3-Clause BSD license.&lt;br /&gt;
|platforms=Windows&lt;br /&gt;
|function=Validation&lt;br /&gt;
|content=Audio&lt;br /&gt;
}}&lt;br /&gt;
{{Infobox tool details}}&lt;br /&gt;
== Description ==&lt;br /&gt;
&amp;lt;!-- Describe the what the tool does, focusing on it's digital preservation value. Keep it factual. --&amp;gt;&lt;br /&gt;
ADCTest is a free Windows-based open source application that tests and reports on audio analog-to-digital converters in accordance with Federal Agencies Digital Guidelines Initiative ([http://www.digitizationguidelines.gov/ FADGI]) established test methods and performance metrics.&lt;br /&gt;
&lt;br /&gt;
The application was designed for simplicity and ease, with everyone from archivists to audio technicians in mind. ADCTest generates and analyzes test signals and provides simple pass/fail reporting along with detailed results to support users of diverse skill levels.&lt;br /&gt;
&lt;br /&gt;
For the advanced user, all tests are fully customizable to allow test methods and reporting in addition to the FADGI guidelines.&lt;br /&gt;
&lt;br /&gt;
== User Experiences ==&lt;br /&gt;
&amp;lt;!-- Add hotlinks to user experiences with the tool (eg. blog posts). These should illustrate the effectiveness (or otherwise) of the tool. Use a bullet list. --&amp;gt;&lt;br /&gt;
* Guidelines: Audio Digitization System Performance http://www.digitizationguidelines.gov/guidelines/digitize-audioperf.html&lt;br /&gt;
* Using FADGI's ADCTest for Quality Control in Outsourced Audio Digitization: https://blogs.loc.gov/thesignal/2021/09/fadgi-adctest&lt;br /&gt;
&lt;br /&gt;
== Development Activity ==&lt;br /&gt;
&amp;lt;!-- Provide *evidence* of development activity of the tool. For example, RSS feeds for code issues or commits. --&amp;gt;&lt;br /&gt;
&amp;lt;!-- Add the OpenHub.com ID for the tool, if known. --&amp;gt;&lt;br /&gt;
ADCTest is maintained by [http://weareavp.com AVP] on [https://github.com/WeAreAVP/ADCTest GitHub].&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=DupeGuru&amp;diff=4751</id>
		<title>DupeGuru</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=DupeGuru&amp;diff=4751"/>
		<updated>2021-05-02T12:36:49Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Use the structure provided in this template, do not change it! --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Infobox_tool&lt;br /&gt;
|purpose=A brief description&lt;br /&gt;
|image=dg_logo_big_med.png&lt;br /&gt;
|homepage=https://dupeguru.voltaicideas.net/&lt;br /&gt;
|license= GPL-3.0 License&lt;br /&gt;
|platforms=Cross-plattform with Windows, MacOS and Ubuntu builds available&lt;br /&gt;
|function=De-Duplication&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;!-- Note that to use the image field, you should leave the value as {{PAGENAMEE}}.png (or similar) and upload a copy of the image. Hot-linking is not supported. If you don't want an image, just remove that line. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add one or more categories to describe the function of the tool, such as:&lt;br /&gt;
[[Category:De-Duplication]] or [[Category:Preservation System]] or [[Category:Backup]]&lt;br /&gt;
Choose carefully, and view the list of existing categories first (see the Navigation sidebar on the left) --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add relevant categories to describe the content type that the tool addresses, such as:&lt;br /&gt;
[[Category:Audio]] or [[Category:Document]] or [[Category:Research Data]]&lt;br /&gt;
Choose carefully, and view the list of existing categories first (see the Navigation sidebar on the left). If the tool works on any content type, do not add a category. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&amp;lt;!-- Describe the what the tool does, focusing on it's digital preservation value. Keep it factual. --&amp;gt;&lt;br /&gt;
Cross-platform (Linux, OS X, Windows) GUI tool to find duplicate files in a system. Can scan either filenames using a fuzzy matching algorithm or contents. Results can be filtered, sorted, deleted, copied or moved. &lt;br /&gt;
Tool and matching engine is customizable and special modes are available:&lt;br /&gt;
* Music mode scans tags and shows music-specific info in the duplicate results window. &lt;br /&gt;
* Picture mode scans pictures fuzzily, allowing to find pictures that are similar, but not exactly the same.&lt;br /&gt;
&lt;br /&gt;
Supported languages: English, French, German, Chinese (Simplified), Czech, Italian, Armenian, Russian, Ukrainian, Brazilian, Vietnamese.&lt;br /&gt;
&lt;br /&gt;
Witten mostly in Python3. &lt;br /&gt;
&lt;br /&gt;
== User Experiences ==&lt;br /&gt;
&amp;lt;!-- Add hotlinks to user experiences with the tool (eg. blog posts). These should illustrate the effectiveness (or otherwise) of the tool. Use a bullet list. --&amp;gt;&lt;br /&gt;
GUI-View DupeGuru&lt;br /&gt;
[[File:Dupeguru screenshot start.png|thumb|Screenshot DupeGuru UI]]&lt;br /&gt;
&lt;br /&gt;
== Development Activity ==&lt;br /&gt;
&amp;lt;!-- Provide *evidence* of development activity of the tool. For example, RSS feeds for code issues or commits. --&amp;gt;&lt;br /&gt;
&amp;lt;!-- Add the OpenHub.com ID for the tool, if known. --&amp;gt;&lt;br /&gt;
GitHub Repo: https://github.com/arsenetar/dupeguru/&lt;br /&gt;
&lt;br /&gt;
OpenHub Record: https://www.openhub.net/p/dupeguru&lt;br /&gt;
&lt;br /&gt;
{{Infobox_tool_details&lt;br /&gt;
|releases_rss=&lt;br /&gt;
|issues_rss=&lt;br /&gt;
|mailing_lists=&lt;br /&gt;
|ohloh_id=dupeguru&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=File:Dupeguru_screenshot_start.png&amp;diff=4750</id>
		<title>File:Dupeguru screenshot start.png</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=File:Dupeguru_screenshot_start.png&amp;diff=4750"/>
		<updated>2021-05-02T12:34:24Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: Screenshot DupeGuru Startpage&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Screenshot DupeGuru Startpage&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=File:Dg_logo_big_med.png&amp;diff=4749</id>
		<title>File:Dg logo big med.png</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=File:Dg_logo_big_med.png&amp;diff=4749"/>
		<updated>2021-05-02T12:31:29Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: DupeGuru Logo&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
DupeGuru Logo&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=DupeGuru&amp;diff=4748</id>
		<title>DupeGuru</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=DupeGuru&amp;diff=4748"/>
		<updated>2021-05-02T12:30:33Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: Created page with &amp;quot;&amp;lt;!-- Use the structure provided in this template, do not change it! --&amp;gt;  {{Infobox_tool |purpose=A brief description |image={{PAGENAMEE}}.png |homepage=https://dupeguru.voltai...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Use the structure provided in this template, do not change it! --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Infobox_tool&lt;br /&gt;
|purpose=A brief description&lt;br /&gt;
|image={{PAGENAMEE}}.png&lt;br /&gt;
|homepage=https://dupeguru.voltaicideas.net/&lt;br /&gt;
|license= GPL-3.0 License&lt;br /&gt;
|platforms=Cross-plattform with Windows, MacOS and Ubuntu builds available&lt;br /&gt;
|function=De-Duplication&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;!-- Note that to use the image field, you should leave the value as {{PAGENAMEE}}.png (or similar) and upload a copy of the image. Hot-linking is not supported. If you don't want an image, just remove that line. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add one or more categories to describe the function of the tool, such as:&lt;br /&gt;
[[Category:De-Duplication]] or [[Category:Preservation System]] or [[Category:Backup]]&lt;br /&gt;
Choose carefully, and view the list of existing categories first (see the Navigation sidebar on the left) --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add relevant categories to describe the content type that the tool addresses, such as:&lt;br /&gt;
[[Category:Audio]] or [[Category:Document]] or [[Category:Research Data]]&lt;br /&gt;
Choose carefully, and view the list of existing categories first (see the Navigation sidebar on the left). If the tool works on any content type, do not add a category. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&amp;lt;!-- Describe the what the tool does, focusing on it's digital preservation value. Keep it factual. --&amp;gt;&lt;br /&gt;
Cross-platform (Linux, OS X, Windows) GUI tool to find duplicate files in a system. Can scan either filenames using a fuzzy matching algorithm or contents. Results can be filtered, sorted, deleted, copied or moved. &lt;br /&gt;
Tool and matching engine is customizable and special modes are available:&lt;br /&gt;
* Music mode scans tags and shows music-specific info in the duplicate results window. &lt;br /&gt;
* Picture mode scans pictures fuzzily, allowing to find pictures that are similar, but not exactly the same.&lt;br /&gt;
&lt;br /&gt;
Supported languages: English, French, German, Chinese (Simplified), Czech, Italian, Armenian, Russian, Ukrainian, Brazilian, Vietnamese.&lt;br /&gt;
&lt;br /&gt;
Witten mostly in Python3. &lt;br /&gt;
&lt;br /&gt;
== User Experiences ==&lt;br /&gt;
&amp;lt;!-- Add hotlinks to user experiences with the tool (eg. blog posts). These should illustrate the effectiveness (or otherwise) of the tool. Use a bullet list. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Development Activity ==&lt;br /&gt;
&amp;lt;!-- Provide *evidence* of development activity of the tool. For example, RSS feeds for code issues or commits. --&amp;gt;&lt;br /&gt;
&amp;lt;!-- Add the OpenHub.com ID for the tool, if known. --&amp;gt;&lt;br /&gt;
GitHub Repo: https://github.com/arsenetar/dupeguru/&lt;br /&gt;
OpenHub Record: https://www.openhub.net/p/dupeguru&lt;br /&gt;
&lt;br /&gt;
{{Infobox_tool_details&lt;br /&gt;
|releases_rss=&lt;br /&gt;
|issues_rss=&lt;br /&gt;
|mailing_lists=&lt;br /&gt;
|ohloh_id=dupeguru&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=JWAT&amp;diff=3747</id>
		<title>JWAT</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=JWAT&amp;diff=3747"/>
		<updated>2020-10-01T13:01:08Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Use the structure provided in this template, do not change it! --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Infobox_tool&lt;br /&gt;
|purpose=Java Web Archive Toolkit&lt;br /&gt;
|image=&lt;br /&gt;
|homepage=http://jwat.org/&lt;br /&gt;
|license=Apache License, Version 2.0&lt;br /&gt;
|platforms=Java&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add one ore more categories to describe the function of the tool. Choose carefully, and view the list of existing categories first (see the Navigation sidebar on the left). The following are common category examples, remove those that don't apply --&amp;gt;&lt;br /&gt;
[[Category:Metadata Extraction]]&lt;br /&gt;
[[Category:Validation]]&lt;br /&gt;
[[Category:File Format Migration]]&lt;br /&gt;
[[Category:ARC To WARC Migration]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add relevant categories to describe the content type that the tool addresses. Choose carefully, and view the list of existing categories first (see the Navigation sidebar on the left). If the tool works on any content type, do not add a category. The following are common category examples, remove those that don't apply --&amp;gt;&lt;br /&gt;
[[Category:Web]]&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&amp;lt;!-- Describe the what the tool does, focusing on it's digital preservation value. Keep it factual. --&amp;gt;&lt;br /&gt;
An IIPC funded byproduct which can be used to read, validate and write ARC, WARC and GZip files.&lt;br /&gt;
&lt;br /&gt;
Also includes the [https://sbforge.org/display/JWAT/JWAT-Tools JWAT Tools], which provides a command-line application for working with ARCs and WARCs, including conversion from ARC to WARC.&lt;br /&gt;
&lt;br /&gt;
== User Experiences ==&lt;br /&gt;
&amp;lt;!-- Add hotlinks to user experiences with the tool (eg. blog posts). These should illustrate the effectiveness (or otherwise) of the tool. --&amp;gt;&lt;br /&gt;
* [http://wiki.opf-labs.org/display/SP/ARC2WARC+Experiment+at+ONB SCAPE ARC2WARC Experiment at ONB]&lt;br /&gt;
* [https://openpreservation.org/blogs/warc-validation-tool-experiences/?order=date%3ADESC&amp;amp;page=1 Comparison of different WARC Tools by National Archives of the Netherlands, 2020]&lt;br /&gt;
&lt;br /&gt;
== Development Activity ==&lt;br /&gt;
&amp;lt;!-- Provide *evidence* of development activity of the tool. For example, RSS feeds for code issues or commits. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add the Ohloh.com ID for the tool, if known. --&amp;gt;&lt;br /&gt;
{{Infobox_tool_details&lt;br /&gt;
|ohloh_id=jwat-tools&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=Pdfcpu&amp;diff=3746</id>
		<title>Pdfcpu</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=Pdfcpu&amp;diff=3746"/>
		<updated>2020-09-30T08:47:10Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Use the structure provided in this template, do not change it! --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Infobox_tool&lt;br /&gt;
|purpose=A Go library and command line tool for PDF processing incl. validation&lt;br /&gt;
|image=pdfcpuLogoSmall.png&lt;br /&gt;
|homepage=https://pdfcpu.io/&lt;br /&gt;
|license=Apache-2.0 License &lt;br /&gt;
|platforms=&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;!-- Note that to use the image field, you should leave the value as {{PAGENAMEE}}.png (or similar) and upload a copy of the image. Hot-linking is not supported. If you don't want an image, just remove that line. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add one or more categories to describe the function of the tool, such as:&lt;br /&gt;
[[Category:Validation]]&lt;br /&gt;
[[Category:Metadata Extraction]]&lt;br /&gt;
[[Category:Metadata Extraction]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add relevant categories to describe the content type that the tool addresses, such as:&lt;br /&gt;
[[Category:Document]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&amp;lt;!-- Describe the what the tool does, focusing on it's digital preservation value. Keep it factual. --&amp;gt;&lt;br /&gt;
pdfcpu is a powerful Go library and command line tool that supports many PDF processing functions such as reading and writing the xref table, extracting images, fonts and embedded file attachments and encryption detection as well as decryption. &lt;br /&gt;
A full list of the command set is avaiable at:&lt;br /&gt;
https://pdfcpu.io/about/command_set &lt;br /&gt;
&lt;br /&gt;
=== Validation ===&lt;br /&gt;
pdfcpu validates PDFs up to version 1.7. There are two different levels of validation, strict and relaxed, and the option to run validation in verbose mode which shows the output of the entire PDF syntax. &lt;br /&gt;
&lt;br /&gt;
 pdfcpu validate -mode strict this.pdf&lt;br /&gt;
 validating(mode=strict) this.pdf ...&lt;br /&gt;
 validation error (try -mode=relaxed): dict=type1FontDict required entry=FirstChar missing&lt;br /&gt;
&lt;br /&gt;
 pdfcpu validate -mode relaxed this.pdf&lt;br /&gt;
 validating(mode=relaxed) this.pdf ...&lt;br /&gt;
 validation ok&lt;br /&gt;
&lt;br /&gt;
=== Metadata Extraction ===&lt;br /&gt;
&lt;br /&gt;
Extraction of Metadata is possible in two ways. The argument ''info'' prints Information such as title, author, PDF producer, creation / modification data and some technical metadata such as encryption and permission information and whether the PDF is tagged, linearized or includes watermarks.&lt;br /&gt;
Sample output:&lt;br /&gt;
 &lt;br /&gt;
 pdfcpu info this.pdf&lt;br /&gt;
         PDF version: 1.6&lt;br /&gt;
          Page count: 96&lt;br /&gt;
           Page size: 21.00 x 29.70 cm&lt;br /&gt;
    .........................................&lt;br /&gt;
               Title: This is just a test&lt;br /&gt;
              Author: Digiman&lt;br /&gt;
             Subject: &lt;br /&gt;
        PDF Producer: Adobe PDF Library 15.0&lt;br /&gt;
     Content creator: Adobe InDesign CC 207 (Macintosh)&lt;br /&gt;
       Creation date: D:20190912181416+02'00'&lt;br /&gt;
   Modification date: D:20190918120753+02'00'&lt;br /&gt;
            Keywords: key1&lt;br /&gt;
                      key2&lt;br /&gt;
    ..........................................&lt;br /&gt;
              Tagged: Yes&lt;br /&gt;
              Hybrid: No&lt;br /&gt;
          Linearized: No&lt;br /&gt;
  Using XRef streams: Yes&lt;br /&gt;
  Using object streams: Yes&lt;br /&gt;
          Watermarks: No&lt;br /&gt;
    ..........................................&lt;br /&gt;
           Encrypted: No&lt;br /&gt;
         Permissions: Full access&lt;br /&gt;
&lt;br /&gt;
The second option is to extract any embedded metadata via the extract -mode meta flags. This creates txt files with the extracted metadata entries in a specified directory.&lt;br /&gt;
Sample output:&lt;br /&gt;
&lt;br /&gt;
 pdfcpu extract -mode meta this.pdf mdout&lt;br /&gt;
   extracting metadata from this.pdf into mdout/ ...&lt;br /&gt;
   writing mdout\this_Metadata_XObject_6499_6500.txt&lt;br /&gt;
   writing mdout\this_Metadata_unknown_401_33.txt&lt;br /&gt;
   writing mdout\this_Metadata_XObject_292_289.txt&lt;br /&gt;
   writing mdout\this_Metadata_Catalog_6455_385.txt&lt;br /&gt;
   writing mdout\this_Metadata_XObject_291_290.txt&lt;br /&gt;
   writing mdout\this_Metadata_unknown_6491_6475.txt&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== User Experiences ==&lt;br /&gt;
&amp;lt;!-- Add hotlinks to user experiences with the tool (eg. blog posts). These should illustrate the effectiveness (or otherwise) of the tool. Use a bullet list. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Development Activity ==&lt;br /&gt;
&amp;lt;!-- Provide *evidence* of development activity of the tool. For example, RSS feeds for code issues or commits. --&amp;gt;&lt;br /&gt;
pdfcpu has an active user and developer community. All activity can be viewed via the github repo:&lt;br /&gt;
[https://github.com/pdfcpu/pdfcpu https://github.com/pdfcpu/pdfcpu]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add the OpenHub.com ID for the tool, if known. --&amp;gt;&lt;br /&gt;
{{Infobox_tool_details&lt;br /&gt;
|releases_rss=&lt;br /&gt;
|issues_rss=&lt;br /&gt;
|mailing_lists=&lt;br /&gt;
|ohloh_id=&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=File:PdfcpuLogoSmall.png&amp;diff=3745</id>
		<title>File:PdfcpuLogoSmall.png</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=File:PdfcpuLogoSmall.png&amp;diff=3745"/>
		<updated>2020-09-30T08:46:20Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=Pdfcpu&amp;diff=3744</id>
		<title>Pdfcpu</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=Pdfcpu&amp;diff=3744"/>
		<updated>2020-09-30T08:45:27Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: Created page with &amp;quot;&amp;lt;!-- Use the structure provided in this template, do not change it! --&amp;gt;  {{Infobox_tool |purpose=A Go library and command line tool for PDF processing incl. validation |image=...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Use the structure provided in this template, do not change it! --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Infobox_tool&lt;br /&gt;
|purpose=A Go library and command line tool for PDF processing incl. validation&lt;br /&gt;
|image={{PAGENAMEE}}.png&lt;br /&gt;
|homepage=https://pdfcpu.io/&lt;br /&gt;
|license=Apache-2.0 License &lt;br /&gt;
|platforms=&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;!-- Note that to use the image field, you should leave the value as {{PAGENAMEE}}.png (or similar) and upload a copy of the image. Hot-linking is not supported. If you don't want an image, just remove that line. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add one or more categories to describe the function of the tool, such as:&lt;br /&gt;
[[Category:Validation]]&lt;br /&gt;
[[Category:Metadata Extraction]]&lt;br /&gt;
[[Category:Metadata Extraction]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add relevant categories to describe the content type that the tool addresses, such as:&lt;br /&gt;
[[Category:Document]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&amp;lt;!-- Describe the what the tool does, focusing on it's digital preservation value. Keep it factual. --&amp;gt;&lt;br /&gt;
pdfcpu is a powerful Go library and command line tool that supports many PDF processing functions such as reading and writing the xref table, extracting images, fonts and embedded file attachments and encryption detection as well as decryption. &lt;br /&gt;
A full list of the command set is avaiable at:&lt;br /&gt;
https://pdfcpu.io/about/command_set &lt;br /&gt;
&lt;br /&gt;
=== Validation ===&lt;br /&gt;
pdfcpu validates PDFs up to version 1.7. There are two different levels of validation, strict and relaxed, and the option to run validation in verbose mode which shows the output of the entire PDF syntax. &lt;br /&gt;
&lt;br /&gt;
 pdfcpu validate -mode strict this.pdf&lt;br /&gt;
 validating(mode=strict) this.pdf ...&lt;br /&gt;
 validation error (try -mode=relaxed): dict=type1FontDict required entry=FirstChar missing&lt;br /&gt;
&lt;br /&gt;
 pdfcpu validate -mode relaxed this.pdf&lt;br /&gt;
 validating(mode=relaxed) this.pdf ...&lt;br /&gt;
 validation ok&lt;br /&gt;
&lt;br /&gt;
=== Metadata Extraction ===&lt;br /&gt;
&lt;br /&gt;
Extraction of Metadata is possible in two ways. The argument ''info'' prints Information such as title, author, PDF producer, creation / modification data and some technical metadata such as encryption and permission information and whether the PDF is tagged, linearized or includes watermarks.&lt;br /&gt;
Sample output:&lt;br /&gt;
 &lt;br /&gt;
 pdfcpu info this.pdf&lt;br /&gt;
         PDF version: 1.6&lt;br /&gt;
          Page count: 96&lt;br /&gt;
           Page size: 21.00 x 29.70 cm&lt;br /&gt;
    .........................................&lt;br /&gt;
               Title: This is just a test&lt;br /&gt;
              Author: Digiman&lt;br /&gt;
             Subject: &lt;br /&gt;
        PDF Producer: Adobe PDF Library 15.0&lt;br /&gt;
     Content creator: Adobe InDesign CC 207 (Macintosh)&lt;br /&gt;
       Creation date: D:20190912181416+02'00'&lt;br /&gt;
   Modification date: D:20190918120753+02'00'&lt;br /&gt;
            Keywords: key1&lt;br /&gt;
                      key2&lt;br /&gt;
    ..........................................&lt;br /&gt;
              Tagged: Yes&lt;br /&gt;
              Hybrid: No&lt;br /&gt;
          Linearized: No&lt;br /&gt;
  Using XRef streams: Yes&lt;br /&gt;
  Using object streams: Yes&lt;br /&gt;
          Watermarks: No&lt;br /&gt;
    ..........................................&lt;br /&gt;
           Encrypted: No&lt;br /&gt;
         Permissions: Full access&lt;br /&gt;
&lt;br /&gt;
The second option is to extract any embedded metadata via the extract -mode meta flags. This creates txt files with the extracted metadata entries in a specified directory.&lt;br /&gt;
Sample output:&lt;br /&gt;
&lt;br /&gt;
 pdfcpu extract -mode meta this.pdf mdout&lt;br /&gt;
   extracting metadata from this.pdf into mdout/ ...&lt;br /&gt;
   writing mdout\this_Metadata_XObject_6499_6500.txt&lt;br /&gt;
   writing mdout\this_Metadata_unknown_401_33.txt&lt;br /&gt;
   writing mdout\this_Metadata_XObject_292_289.txt&lt;br /&gt;
   writing mdout\this_Metadata_Catalog_6455_385.txt&lt;br /&gt;
   writing mdout\this_Metadata_XObject_291_290.txt&lt;br /&gt;
   writing mdout\this_Metadata_unknown_6491_6475.txt&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== User Experiences ==&lt;br /&gt;
&amp;lt;!-- Add hotlinks to user experiences with the tool (eg. blog posts). These should illustrate the effectiveness (or otherwise) of the tool. Use a bullet list. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Development Activity ==&lt;br /&gt;
&amp;lt;!-- Provide *evidence* of development activity of the tool. For example, RSS feeds for code issues or commits. --&amp;gt;&lt;br /&gt;
pdfcpu has an active user and developer community. All activity can be viewed via the github repo:&lt;br /&gt;
[https://github.com/pdfcpu/pdfcpu https://github.com/pdfcpu/pdfcpu]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add the OpenHub.com ID for the tool, if known. --&amp;gt;&lt;br /&gt;
{{Infobox_tool_details&lt;br /&gt;
|releases_rss=&lt;br /&gt;
|issues_rss=&lt;br /&gt;
|mailing_lists=&lt;br /&gt;
|ohloh_id=&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=OSFMount&amp;diff=3734</id>
		<title>OSFMount</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=OSFMount&amp;diff=3734"/>
		<updated>2020-08-26T08:33:57Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Use the structure provided in this template, do not change it! --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Infobox_tool&lt;br /&gt;
|purpose=disk image file mounting&lt;br /&gt;
|image={{PAGENAMEE}}.png&lt;br /&gt;
|homepage=https://www.osforensics.com/tools/mount-disk-images.html&lt;br /&gt;
|license=Free software; Copyrighted by PassMark® Software Pty Ltd (‘PassMark’)&lt;br /&gt;
|platforms=Windows &lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;!-- Note that to use the image field, you should leave the value as {{PAGENAMEE}}.png (or similar) and upload a copy of the image. Hot-linking is not supported. If you don't want an image, just remove that line. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add one or more categories to describe the function of the tool, such as:&lt;br /&gt;
[[Category:Disk Imaging]] or [[Category:Preservation System]] or [[Category:Backup]]&lt;br /&gt;
Choose carefully, and view the list of existing categories first (see the Navigation sidebar on the left) --&amp;gt;&lt;br /&gt;
[[Category:Disk Imaging]]&lt;br /&gt;
[[Category:Forensic]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add relevant categories to describe the content type that the tool addresses, such as:&lt;br /&gt;
[[Category:Audio]] or [[Category:Document]] or [[Category:Research Data]]&lt;br /&gt;
Choose carefully, and view the list of existing categories first (see the Navigation sidebar on the left). If the tool works on any content type, do not add a category. --&amp;gt;&lt;br /&gt;
[[Category:Disk Image]]&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&amp;lt;!-- Describe the what the tool does, focusing on it's digital preservation value. Keep it factual. --&amp;gt;&lt;br /&gt;
OSFMount allows you to mount local disk image files (bit-for-bit copies of an entire disk or disk partition) in Windows as a physical disk or a logical drive letter.&lt;br /&gt;
OSFMount is a 64-bit Windows utility. An older version (OSFMount V2.0.1001) is available for 32-bit as well.&lt;br /&gt;
While images are mounted as read-only per default, the tool also supports opening images in a &amp;quot;write cache&amp;quot; mode, where changes are written into a delta file. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The tool supports the following Windows image file formats:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope&amp;quot;col&amp;quot;|Image Format&lt;br /&gt;
! scope&amp;quot;col&amp;quot;|Read&lt;br /&gt;
! scope&amp;quot;col&amp;quot;|Write&lt;br /&gt;
! scope&amp;quot;col&amp;quot;|Mount as RAM drive&lt;br /&gt;
! scope&amp;quot;col&amp;quot;|Convert to Image file &lt;br /&gt;
! scope&amp;quot;col&amp;quot;|Extend&lt;br /&gt;
! scope&amp;quot;col&amp;quot;|Format &lt;br /&gt;
|-&lt;br /&gt;
|Raw Image (.IMG, .DD) &lt;br /&gt;
|yes&lt;br /&gt;
|yes &lt;br /&gt;
|yes&lt;br /&gt;
|yes&lt;br /&gt;
|yes&lt;br /&gt;
|yes				&lt;br /&gt;
|-&lt;br /&gt;
|Raw CD Image (.ISO, .BIN)  						&lt;br /&gt;
|yes&lt;br /&gt;
|no &lt;br /&gt;
|yes &lt;br /&gt;
|yes&lt;br /&gt;
|no&lt;br /&gt;
|no				&lt;br /&gt;
|-&lt;br /&gt;
|Split Raw Image (.00n)  						&lt;br /&gt;
|yes&lt;br /&gt;
|yes &lt;br /&gt;
|yes &lt;br /&gt;
|no&lt;br /&gt;
|no&lt;br /&gt;
|yes				&lt;br /&gt;
|-&lt;br /&gt;
|Nero Burning ROM Image (.NRG)&lt;br /&gt;
|yes&lt;br /&gt;
|yes &lt;br /&gt;
|yes &lt;br /&gt;
|no&lt;br /&gt;
|yes&lt;br /&gt;
|yes				&lt;br /&gt;
|- 						&lt;br /&gt;
|System Deployment Image (.SDI)&lt;br /&gt;
|yes&lt;br /&gt;
|yes &lt;br /&gt;
|yes &lt;br /&gt;
|no&lt;br /&gt;
|yes&lt;br /&gt;
|yes				&lt;br /&gt;
|-						&lt;br /&gt;
|Advanced Forensics Format Images* (AFF) ´&lt;br /&gt;
|yes&lt;br /&gt;
|yes &lt;br /&gt;
|yes &lt;br /&gt;
|yes&lt;br /&gt;
|no&lt;br /&gt;
|yes				&lt;br /&gt;
|-  						&lt;br /&gt;
|Advanced Forensics Format Images w/ meta data* (AFM)&lt;br /&gt;
|yes&lt;br /&gt;
|yes &lt;br /&gt;
|yes&lt;br /&gt;
|yes&lt;br /&gt;
|no&lt;br /&gt;
|yes				&lt;br /&gt;
|- 						&lt;br /&gt;
|Advanced Forensics Format Directories* (AFD) &lt;br /&gt;
|yes&lt;br /&gt;
|yes &lt;br /&gt;
|yes &lt;br /&gt;
|yes&lt;br /&gt;
|no&lt;br /&gt;
|yes				&lt;br /&gt;
|-					&lt;br /&gt;
|VMWare Image (.VMDK)&lt;br /&gt;
|yes&lt;br /&gt;
|no &lt;br /&gt;
|yes &lt;br /&gt;
|no&lt;br /&gt;
|no&lt;br /&gt;
|no				&lt;br /&gt;
|- 						&lt;br /&gt;
|EnCase EWF (.E01)&lt;br /&gt;
|yes&lt;br /&gt;
|no &lt;br /&gt;
|yes &lt;br /&gt;
|yes&lt;br /&gt;
|no&lt;br /&gt;
|no				&lt;br /&gt;
|-  						&lt;br /&gt;
|SMART EWF (.S01)&lt;br /&gt;
|yes&lt;br /&gt;
|no &lt;br /&gt;
|yes &lt;br /&gt;
|yes&lt;br /&gt;
|no&lt;br /&gt;
|no				&lt;br /&gt;
|- 					&lt;br /&gt;
|VHD Image (.VHD)&lt;br /&gt;
|yes&lt;br /&gt;
|no &lt;br /&gt;
|yes&lt;br /&gt;
|no&lt;br /&gt;
|no&lt;br /&gt;
|no				&lt;br /&gt;
|- 						&lt;br /&gt;
|}&lt;br /&gt;
(*) The supported version of Advanced Forensics Format is AFFv3 with zlib compression support. Encryption and signatures are not supported.&lt;br /&gt;
&lt;br /&gt;
== User Experiences ==&lt;br /&gt;
&amp;lt;!-- Add hotlinks to user experiences with the tool (eg. blog posts). These should illustrate the effectiveness (or otherwise) of the tool. Use a bullet list. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* Screenshot of version 3.0 showing mount drive options&lt;br /&gt;
[[File:OSFMount_1.png|550px|Screenshot of version 3.0 showing mount drive options]]&lt;br /&gt;
&lt;br /&gt;
* Screenshot of version 3.0 showing available drive options&lt;br /&gt;
[[File:OSFMount_2.png|550px|Screenshot of version 3.0 showing available drive options]]&lt;br /&gt;
&lt;br /&gt;
== Development Activity ==&lt;br /&gt;
&amp;lt;!-- Provide *evidence* of development activity of the tool. For example, RSS feeds for code issues or commits. --&amp;gt;&lt;br /&gt;
&amp;lt;!-- Add the OpenHub.com ID for the tool, if known. --&amp;gt;&lt;br /&gt;
{{Infobox_tool_details&lt;br /&gt;
|releases_rss=&lt;br /&gt;
|issues_rss=&lt;br /&gt;
|mailing_lists=&lt;br /&gt;
|ohloh_id=&lt;br /&gt;
}}&lt;br /&gt;
Release notes of current and previous versions are available via: https://www.osforensics.com/tools/mount-disk-images.html &lt;br /&gt;
Version history (visit website to see current history:&lt;br /&gt;
* v3.0.1006, 7 May 2020&lt;br /&gt;
* v3.0.1005, 29 Jul 2019&lt;br /&gt;
* v3.0.1005, 29 Jul 2019&lt;br /&gt;
* v3.0.1005, 29 Jul 2019&lt;br /&gt;
* v3.0.1004, 24 May 2019&lt;br /&gt;
* v3.0.1003, 10 May 2019&lt;br /&gt;
* v3.0.1002, 8 May 2019&lt;br /&gt;
* v3.0.1001, 17 Apr 2019&lt;br /&gt;
* v3.0.1000, 5 Apr 2019&lt;br /&gt;
* v2.0.1001, 21 Mar 2018&lt;br /&gt;
* v2.0.1000, 08 Mar 2018&lt;br /&gt;
* v1.5.1018, 18 Jan 2018&lt;br /&gt;
* v1.5.1017, 12 Dec 2017&lt;br /&gt;
* v1.5.1016, 27 Nov 2017&lt;br /&gt;
* v1.5.1015, 7 Feb 2014&lt;br /&gt;
* v1.5.1014, 22 Oct 2013&lt;br /&gt;
* v1.5.1013, 7 Mar 2013&lt;br /&gt;
* v1.5.1012, 27 Dec 2012&lt;br /&gt;
* v1.5.1011, 09 May 2012&lt;br /&gt;
* v1.5.1010, 03 Apr 2012&lt;br /&gt;
* v1.5.1009, 13 Mar 2012&lt;br /&gt;
* v1.5.1008, 22 Nov 2011&lt;br /&gt;
* v1.5.1007, 27 Jun 2011&lt;br /&gt;
* v1.5.1006, 16 Jun 2011&lt;br /&gt;
* v1.5.1005, 01 Jun 2011&lt;br /&gt;
* v1.5.1004, 25 Apr 2011&lt;br /&gt;
* v1.5.1003, 21 Apr 2011&lt;br /&gt;
* v1.5.1002, 20 Apr 2011&lt;br /&gt;
* v1.5.1001, 14 Apr 2011&lt;br /&gt;
* v1.5.1000, 16 Mar 2011&lt;br /&gt;
* v1.4.1005, 27 Jan 2011&lt;br /&gt;
* v1.4.1004, 21 Jan 2011&lt;br /&gt;
* v1.4.1003, 17 Dec 2010&lt;br /&gt;
* v1.4.1002, 15 Dec 2010&lt;br /&gt;
* v1.4.1001, 8 Dec 2010&lt;br /&gt;
* v1.4.1000, 6 Dec 2010&lt;br /&gt;
* v1.3.1000, 25 Oct 2010&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=OSFMount&amp;diff=3733</id>
		<title>OSFMount</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=OSFMount&amp;diff=3733"/>
		<updated>2020-08-26T08:30:44Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Use the structure provided in this template, do not change it! --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Infobox_tool&lt;br /&gt;
|purpose=disk image file mounting&lt;br /&gt;
|image={{PAGENAMEE}}.png&lt;br /&gt;
|homepage=https://www.osforensics.com/tools/mount-disk-images.html&lt;br /&gt;
|license=Free software; Copyrighted by PassMark® Software Pty Ltd (‘PassMark’)&lt;br /&gt;
|platforms=Windows &lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;!-- Note that to use the image field, you should leave the value as {{PAGENAMEE}}.png (or similar) and upload a copy of the image. Hot-linking is not supported. If you don't want an image, just remove that line. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add one or more categories to describe the function of the tool, such as:&lt;br /&gt;
[[Category:Disk Imaging]] or [[Category:Preservation System]] or [[Category:Backup]]&lt;br /&gt;
Choose carefully, and view the list of existing categories first (see the Navigation sidebar on the left) --&amp;gt;&lt;br /&gt;
[[Category:Disk Imaging]]&lt;br /&gt;
[[Category:Forensic]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add relevant categories to describe the content type that the tool addresses, such as:&lt;br /&gt;
[[Category:Audio]] or [[Category:Document]] or [[Category:Research Data]]&lt;br /&gt;
Choose carefully, and view the list of existing categories first (see the Navigation sidebar on the left). If the tool works on any content type, do not add a category. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&amp;lt;!-- Describe the what the tool does, focusing on it's digital preservation value. Keep it factual. --&amp;gt;&lt;br /&gt;
OSFMount allows you to mount local disk image files (bit-for-bit copies of an entire disk or disk partition) in Windows as a physical disk or a logical drive letter.&lt;br /&gt;
OSFMount is a 64-bit Windows utility. An older version (OSFMount V2.0.1001) is available for 32-bit as well.&lt;br /&gt;
While images are mounted as read-only per default, the tool also supports opening images in a &amp;quot;write cache&amp;quot; mode, where changes are written into a delta file. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The tool supports the following Windows image file formats:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope&amp;quot;col&amp;quot;|Image Format&lt;br /&gt;
! scope&amp;quot;col&amp;quot;|Read&lt;br /&gt;
! scope&amp;quot;col&amp;quot;|Write&lt;br /&gt;
! scope&amp;quot;col&amp;quot;|Mount as RAM drive&lt;br /&gt;
! scope&amp;quot;col&amp;quot;|Convert to Image file &lt;br /&gt;
! scope&amp;quot;col&amp;quot;|Extend&lt;br /&gt;
! scope&amp;quot;col&amp;quot;|Format &lt;br /&gt;
|-&lt;br /&gt;
|Raw Image (.IMG, .DD) &lt;br /&gt;
|yes&lt;br /&gt;
|yes &lt;br /&gt;
|yes&lt;br /&gt;
|yes&lt;br /&gt;
|yes&lt;br /&gt;
|yes				&lt;br /&gt;
|-&lt;br /&gt;
|Raw CD Image (.ISO, .BIN)  						&lt;br /&gt;
|yes&lt;br /&gt;
|no &lt;br /&gt;
|yes &lt;br /&gt;
|yes&lt;br /&gt;
|no&lt;br /&gt;
|no				&lt;br /&gt;
|-&lt;br /&gt;
|Split Raw Image (.00n)  						&lt;br /&gt;
|yes&lt;br /&gt;
|yes &lt;br /&gt;
|yes &lt;br /&gt;
|no&lt;br /&gt;
|no&lt;br /&gt;
|yes				&lt;br /&gt;
|-&lt;br /&gt;
|Nero Burning ROM Image (.NRG)&lt;br /&gt;
|yes&lt;br /&gt;
|yes &lt;br /&gt;
|yes &lt;br /&gt;
|no&lt;br /&gt;
|yes&lt;br /&gt;
|yes				&lt;br /&gt;
|- 						&lt;br /&gt;
|System Deployment Image (.SDI)&lt;br /&gt;
|yes&lt;br /&gt;
|yes &lt;br /&gt;
|yes &lt;br /&gt;
|no&lt;br /&gt;
|yes&lt;br /&gt;
|yes				&lt;br /&gt;
|-						&lt;br /&gt;
|Advanced Forensics Format Images* (AFF) ´&lt;br /&gt;
|yes&lt;br /&gt;
|yes &lt;br /&gt;
|yes &lt;br /&gt;
|yes&lt;br /&gt;
|no&lt;br /&gt;
|yes				&lt;br /&gt;
|-  						&lt;br /&gt;
|Advanced Forensics Format Images w/ meta data* (AFM)&lt;br /&gt;
|yes&lt;br /&gt;
|yes &lt;br /&gt;
|yes&lt;br /&gt;
|yes&lt;br /&gt;
|no&lt;br /&gt;
|yes				&lt;br /&gt;
|- 						&lt;br /&gt;
|Advanced Forensics Format Directories* (AFD) &lt;br /&gt;
|yes&lt;br /&gt;
|yes &lt;br /&gt;
|yes &lt;br /&gt;
|yes&lt;br /&gt;
|no&lt;br /&gt;
|yes				&lt;br /&gt;
|-					&lt;br /&gt;
|VMWare Image (.VMDK)&lt;br /&gt;
|yes&lt;br /&gt;
|no &lt;br /&gt;
|yes &lt;br /&gt;
|no&lt;br /&gt;
|no&lt;br /&gt;
|no				&lt;br /&gt;
|- 						&lt;br /&gt;
|EnCase EWF (.E01)&lt;br /&gt;
|yes&lt;br /&gt;
|no &lt;br /&gt;
|yes &lt;br /&gt;
|yes&lt;br /&gt;
|no&lt;br /&gt;
|no				&lt;br /&gt;
|-  						&lt;br /&gt;
|SMART EWF (.S01)&lt;br /&gt;
|yes&lt;br /&gt;
|no &lt;br /&gt;
|yes &lt;br /&gt;
|yes&lt;br /&gt;
|no&lt;br /&gt;
|no				&lt;br /&gt;
|- 					&lt;br /&gt;
|VHD Image (.VHD)&lt;br /&gt;
|yes&lt;br /&gt;
|no &lt;br /&gt;
|yes&lt;br /&gt;
|no&lt;br /&gt;
|no&lt;br /&gt;
|no				&lt;br /&gt;
|- 						&lt;br /&gt;
|}&lt;br /&gt;
(*) The supported version of Advanced Forensics Format is AFFv3 with zlib compression support. Encryption and signatures are not supported.&lt;br /&gt;
&lt;br /&gt;
== User Experiences ==&lt;br /&gt;
&amp;lt;!-- Add hotlinks to user experiences with the tool (eg. blog posts). These should illustrate the effectiveness (or otherwise) of the tool. Use a bullet list. --&amp;gt;&lt;br /&gt;
Screenshot of version 3.0 showing mount drive options&lt;br /&gt;
&lt;br /&gt;
[[File:OSFMount_1.png|550px]]&lt;br /&gt;
&lt;br /&gt;
Screenshot of version 3.0 showing available drive options&lt;br /&gt;
[[File:OSFMount_2.png|550px]]&lt;br /&gt;
&lt;br /&gt;
== Development Activity ==&lt;br /&gt;
&amp;lt;!-- Provide *evidence* of development activity of the tool. For example, RSS feeds for code issues or commits. --&amp;gt;&lt;br /&gt;
&amp;lt;!-- Add the OpenHub.com ID for the tool, if known. --&amp;gt;&lt;br /&gt;
{{Infobox_tool_details&lt;br /&gt;
|releases_rss=&lt;br /&gt;
|issues_rss=&lt;br /&gt;
|mailing_lists=&lt;br /&gt;
|ohloh_id=&lt;br /&gt;
}}&lt;br /&gt;
Release notes of current and previous versions are available via: https://www.osforensics.com/tools/mount-disk-images.html &lt;br /&gt;
Version history (visit website to see current history:&lt;br /&gt;
* v3.0.1006, 7 May 2020&lt;br /&gt;
* v3.0.1005, 29 Jul 2019&lt;br /&gt;
* v3.0.1005, 29 Jul 2019&lt;br /&gt;
* v3.0.1005, 29 Jul 2019&lt;br /&gt;
* v3.0.1004, 24 May 2019&lt;br /&gt;
* v3.0.1003, 10 May 2019&lt;br /&gt;
* v3.0.1002, 8 May 2019&lt;br /&gt;
* v3.0.1001, 17 Apr 2019&lt;br /&gt;
* v3.0.1000, 5 Apr 2019&lt;br /&gt;
* v2.0.1001, 21 Mar 2018&lt;br /&gt;
* v2.0.1000, 08 Mar 2018&lt;br /&gt;
* v1.5.1018, 18 Jan 2018&lt;br /&gt;
* v1.5.1017, 12 Dec 2017&lt;br /&gt;
* v1.5.1016, 27 Nov 2017&lt;br /&gt;
* v1.5.1015, 7 Feb 2014&lt;br /&gt;
* v1.5.1014, 22 Oct 2013&lt;br /&gt;
* v1.5.1013, 7 Mar 2013&lt;br /&gt;
* v1.5.1012, 27 Dec 2012&lt;br /&gt;
* v1.5.1011, 09 May 2012&lt;br /&gt;
* v1.5.1010, 03 Apr 2012&lt;br /&gt;
* v1.5.1009, 13 Mar 2012&lt;br /&gt;
* v1.5.1008, 22 Nov 2011&lt;br /&gt;
* v1.5.1007, 27 Jun 2011&lt;br /&gt;
* v1.5.1006, 16 Jun 2011&lt;br /&gt;
* v1.5.1005, 01 Jun 2011&lt;br /&gt;
* v1.5.1004, 25 Apr 2011&lt;br /&gt;
* v1.5.1003, 21 Apr 2011&lt;br /&gt;
* v1.5.1002, 20 Apr 2011&lt;br /&gt;
* v1.5.1001, 14 Apr 2011&lt;br /&gt;
* v1.5.1000, 16 Mar 2011&lt;br /&gt;
* v1.4.1005, 27 Jan 2011&lt;br /&gt;
* v1.4.1004, 21 Jan 2011&lt;br /&gt;
* v1.4.1003, 17 Dec 2010&lt;br /&gt;
* v1.4.1002, 15 Dec 2010&lt;br /&gt;
* v1.4.1001, 8 Dec 2010&lt;br /&gt;
* v1.4.1000, 6 Dec 2010&lt;br /&gt;
* v1.3.1000, 25 Oct 2010&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=File:OSFMount_2.png&amp;diff=3732</id>
		<title>File:OSFMount 2.png</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=File:OSFMount_2.png&amp;diff=3732"/>
		<updated>2020-08-26T08:19:17Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=File:OSFMount_1.png&amp;diff=3731</id>
		<title>File:OSFMount 1.png</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=File:OSFMount_1.png&amp;diff=3731"/>
		<updated>2020-08-26T08:18:45Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=OSFMount&amp;diff=3730</id>
		<title>OSFMount</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=OSFMount&amp;diff=3730"/>
		<updated>2020-08-26T08:15:41Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: Created page with &amp;quot;&amp;lt;!-- Use the structure provided in this template, do not change it! --&amp;gt;  {{Infobox_tool |purpose=disk image file mounting |image={{PAGENAMEE}}.png |homepage=https://www.osfore...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Use the structure provided in this template, do not change it! --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Infobox_tool&lt;br /&gt;
|purpose=disk image file mounting&lt;br /&gt;
|image={{PAGENAMEE}}.png&lt;br /&gt;
|homepage=https://www.osforensics.com/tools/mount-disk-images.html&lt;br /&gt;
|license=Free software; Copyrighted by PassMark® Software Pty Ltd (‘PassMark’)&lt;br /&gt;
|platforms=Windows &lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;!-- Note that to use the image field, you should leave the value as {{PAGENAMEE}}.png (or similar) and upload a copy of the image. Hot-linking is not supported. If you don't want an image, just remove that line. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add one or more categories to describe the function of the tool, such as:&lt;br /&gt;
[[Category:Disk Imaging]] or [[Category:Preservation System]] or [[Category:Backup]]&lt;br /&gt;
Choose carefully, and view the list of existing categories first (see the Navigation sidebar on the left) --&amp;gt;&lt;br /&gt;
[[Category:Disk Imaging]]&lt;br /&gt;
[[Category:Forensic]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add relevant categories to describe the content type that the tool addresses, such as:&lt;br /&gt;
[[Category:Audio]] or [[Category:Document]] or [[Category:Research Data]]&lt;br /&gt;
Choose carefully, and view the list of existing categories first (see the Navigation sidebar on the left). If the tool works on any content type, do not add a category. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&amp;lt;!-- Describe the what the tool does, focusing on it's digital preservation value. Keep it factual. --&amp;gt;&lt;br /&gt;
OSFMount allows you to mount local disk image files (bit-for-bit copies of an entire disk or disk partition) in Windows as a physical disk or a logical drive letter.&lt;br /&gt;
OSFMount is a 64-bit Windows utility. An older version (OSFMount V2.0.1001) is available for 32-bit as well.&lt;br /&gt;
While images are mounted as read-only per default, the tool also supports opening images in a &amp;quot;write cache&amp;quot; mode, where changes are written into a delta file. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The tool supports the following Windows image file formats:&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
!Image Format ||	Read ||	Write ||	Mount as RAM drive ||	Convert to Image file ||	Extend ||	Format ||	&lt;br /&gt;
|-&lt;br /&gt;
|Raw Image (.IMG, .DD) &lt;br /&gt;
|yes&lt;br /&gt;
|yes &lt;br /&gt;
|yes&lt;br /&gt;
|yes&lt;br /&gt;
|yes&lt;br /&gt;
|yes				&lt;br /&gt;
|-&lt;br /&gt;
|Raw CD Image (.ISO, .BIN)  						&lt;br /&gt;
|yes&lt;br /&gt;
|no &lt;br /&gt;
|yes &lt;br /&gt;
|yes&lt;br /&gt;
|no&lt;br /&gt;
|no				&lt;br /&gt;
|-&lt;br /&gt;
|Split Raw Image (.00n)  						&lt;br /&gt;
|yes&lt;br /&gt;
|yes &lt;br /&gt;
|yes &lt;br /&gt;
|no&lt;br /&gt;
|no&lt;br /&gt;
|yes				&lt;br /&gt;
|-&lt;br /&gt;
|Nero Burning ROM Image (.NRG)&lt;br /&gt;
|yes&lt;br /&gt;
|yes &lt;br /&gt;
|yes &lt;br /&gt;
|no&lt;br /&gt;
|yes&lt;br /&gt;
|yes				&lt;br /&gt;
|- 						&lt;br /&gt;
|System Deployment Image (.SDI)&lt;br /&gt;
|yes&lt;br /&gt;
|yes &lt;br /&gt;
|yes &lt;br /&gt;
|no&lt;br /&gt;
|yes&lt;br /&gt;
|yes				&lt;br /&gt;
|-						&lt;br /&gt;
|Advanced Forensics Format Images* (AFF) ´&lt;br /&gt;
|yes&lt;br /&gt;
|yes &lt;br /&gt;
|yes &lt;br /&gt;
|yes&lt;br /&gt;
|no&lt;br /&gt;
|yes				&lt;br /&gt;
|-  						&lt;br /&gt;
|Advanced Forensics Format Images w/ meta data* (AFM)&lt;br /&gt;
|yes&lt;br /&gt;
|yes &lt;br /&gt;
|yes&lt;br /&gt;
|yes&lt;br /&gt;
|no&lt;br /&gt;
|yes				&lt;br /&gt;
|- 						&lt;br /&gt;
|Advanced Forensics Format Directories* (AFD) &lt;br /&gt;
|yes&lt;br /&gt;
|yes &lt;br /&gt;
|yes &lt;br /&gt;
|yes&lt;br /&gt;
|no&lt;br /&gt;
|yes				&lt;br /&gt;
|-					&lt;br /&gt;
|VMWare Image (.VMDK)&lt;br /&gt;
|yes&lt;br /&gt;
|no &lt;br /&gt;
|yes &lt;br /&gt;
|no&lt;br /&gt;
|no&lt;br /&gt;
|no				&lt;br /&gt;
|- 						&lt;br /&gt;
|EnCase EWF (.E01)&lt;br /&gt;
|yes&lt;br /&gt;
|no &lt;br /&gt;
|yes &lt;br /&gt;
|yes&lt;br /&gt;
|no&lt;br /&gt;
|no				&lt;br /&gt;
|-  						&lt;br /&gt;
|SMART EWF (.S01)&lt;br /&gt;
|yes&lt;br /&gt;
|no &lt;br /&gt;
|yes &lt;br /&gt;
|yes&lt;br /&gt;
|no&lt;br /&gt;
|no				&lt;br /&gt;
|- 					&lt;br /&gt;
|VHD Image (.VHD)&lt;br /&gt;
|yes&lt;br /&gt;
|no &lt;br /&gt;
|yes&lt;br /&gt;
|no&lt;br /&gt;
|no&lt;br /&gt;
|no				&lt;br /&gt;
|- 						&lt;br /&gt;
|}&lt;br /&gt;
(*) The supported version of Advanced Forensics Format is AFFv3 with zlib compression support. Encryption and signatures are not supported.&lt;br /&gt;
&lt;br /&gt;
== User Experiences ==&lt;br /&gt;
&amp;lt;!-- Add hotlinks to user experiences with the tool (eg. blog posts). These should illustrate the effectiveness (or otherwise) of the tool. Use a bullet list. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Development Activity ==&lt;br /&gt;
&amp;lt;!-- Provide *evidence* of development activity of the tool. For example, RSS feeds for code issues or commits. --&amp;gt;&lt;br /&gt;
&amp;lt;!-- Add the OpenHub.com ID for the tool, if known. --&amp;gt;&lt;br /&gt;
{{Infobox_tool_details&lt;br /&gt;
|releases_rss=&lt;br /&gt;
|issues_rss=&lt;br /&gt;
|mailing_lists=&lt;br /&gt;
|ohloh_id=&lt;br /&gt;
}}&lt;br /&gt;
Release notes of current and previous versions are available via: https://www.osforensics.com/tools/mount-disk-images.html &lt;br /&gt;
Version history (visit website to see current history:&lt;br /&gt;
* v3.0.1006, 7 May 2020&lt;br /&gt;
* v3.0.1005, 29 Jul 2019&lt;br /&gt;
* v3.0.1005, 29 Jul 2019&lt;br /&gt;
* v3.0.1005, 29 Jul 2019&lt;br /&gt;
* v3.0.1004, 24 May 2019&lt;br /&gt;
* v3.0.1003, 10 May 2019&lt;br /&gt;
* v3.0.1002, 8 May 2019&lt;br /&gt;
* v3.0.1001, 17 Apr 2019&lt;br /&gt;
* v3.0.1000, 5 Apr 2019&lt;br /&gt;
* v2.0.1001, 21 Mar 2018&lt;br /&gt;
* v2.0.1000, 08 Mar 2018&lt;br /&gt;
* v1.5.1018, 18 Jan 2018&lt;br /&gt;
* v1.5.1017, 12 Dec 2017&lt;br /&gt;
* v1.5.1016, 27 Nov 2017&lt;br /&gt;
* v1.5.1015, 7 Feb 2014&lt;br /&gt;
* v1.5.1014, 22 Oct 2013&lt;br /&gt;
* v1.5.1013, 7 Mar 2013&lt;br /&gt;
* v1.5.1012, 27 Dec 2012&lt;br /&gt;
* v1.5.1011, 09 May 2012&lt;br /&gt;
* v1.5.1010, 03 Apr 2012&lt;br /&gt;
* v1.5.1009, 13 Mar 2012&lt;br /&gt;
* v1.5.1008, 22 Nov 2011&lt;br /&gt;
* v1.5.1007, 27 Jun 2011&lt;br /&gt;
* v1.5.1006, 16 Jun 2011&lt;br /&gt;
* v1.5.1005, 01 Jun 2011&lt;br /&gt;
* v1.5.1004, 25 Apr 2011&lt;br /&gt;
* v1.5.1003, 21 Apr 2011&lt;br /&gt;
* v1.5.1002, 20 Apr 2011&lt;br /&gt;
* v1.5.1001, 14 Apr 2011&lt;br /&gt;
* v1.5.1000, 16 Mar 2011&lt;br /&gt;
* v1.4.1005, 27 Jan 2011&lt;br /&gt;
* v1.4.1004, 21 Jan 2011&lt;br /&gt;
* v1.4.1003, 17 Dec 2010&lt;br /&gt;
* v1.4.1002, 15 Dec 2010&lt;br /&gt;
* v1.4.1001, 8 Dec 2010&lt;br /&gt;
* v1.4.1000, 6 Dec 2010&lt;br /&gt;
* v1.3.1000, 25 Oct 2010&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=File:EmbARC.png&amp;diff=3528</id>
		<title>File:EmbARC.png</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=File:EmbARC.png&amp;diff=3528"/>
		<updated>2019-10-05T07:35:23Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=File:EmbARC-1.png&amp;diff=3527</id>
		<title>File:EmbARC-1.png</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=File:EmbARC-1.png&amp;diff=3527"/>
		<updated>2019-10-05T07:34:38Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: Lindlar uploaded a new version of &amp;amp;quot;File:EmbARC-1.png&amp;amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=User:Lindlar&amp;diff=3526</id>
		<title>User:Lindlar</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=User:Lindlar&amp;diff=3526"/>
		<updated>2019-10-05T07:29:19Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: Created page with &amp;quot;You can find me on [https://twitter.com/mickylindlar Twitter]&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;You can find me on [https://twitter.com/mickylindlar Twitter]&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=File:EmbARC-1.png&amp;diff=3525</id>
		<title>File:EmbARC-1.png</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=File:EmbARC-1.png&amp;diff=3525"/>
		<updated>2019-10-05T07:13:21Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=EmbARC&amp;diff=3524</id>
		<title>EmbARC</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=EmbARC&amp;diff=3524"/>
		<updated>2019-10-05T07:10:22Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: Created page with &amp;quot;&amp;lt;!-- Use the structure provided in this template, do not change it! --&amp;gt;  {{Infobox_tool |purpose=Embedded metadata auditing and correction for DPX files |image={{PAGENAMEE}}.p...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Use the structure provided in this template, do not change it! --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Infobox_tool&lt;br /&gt;
|purpose=Embedded metadata auditing and correction for DPX files&lt;br /&gt;
|image={{PAGENAMEE}}.png&lt;br /&gt;
|homepage=https://www.weareavp.com/products/embarc/&lt;br /&gt;
|license=CC0 1.0 Public Domain&lt;br /&gt;
|platforms=Windows, Mac&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;!-- Note that to use the image field, you should leave the value as {{PAGENAMEE}}.png (or similar) and upload a copy of the image. Hot-linking is not supported. If you don't want an image, just remove that line. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add one or more categories to describe the function of the tool, such as:&lt;br /&gt;
[[Category:Metadata Extraction]] or [[Category:Preservation System]] or [[Category:Backup]]&lt;br /&gt;
Choose carefully, and view the list of existing categories first (see the Navigation sidebar on the left) --&amp;gt;&lt;br /&gt;
[[Category:Metadata Processing]]&lt;br /&gt;
[[Category:Quality Assurance]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add relevant categories to describe the content type that the tool addresses, such as:&lt;br /&gt;
[[Category:Audio]] or [[Category:Document]] or [[Category:Research Data]]&lt;br /&gt;
Choose carefully, and view the list of existing categories first (see the Navigation sidebar on the left). If the tool works on any content type, do not add a category. --&amp;gt;&lt;br /&gt;
[[Category:Video]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&amp;lt;!-- Describe the what the tool does, focusing on it's digital preservation value. Keep it factual. --&amp;gt;&lt;br /&gt;
embARC (Metadata Embedded for Archival Content)is a tool for metadata embedding and validation in DPX files. It currently supports checking against FADGI’s Guidelines for Embedded Metadata within DPX File Headers for Digitized Motion Picture Film as well as required SMPTE 268 metadata rules. embARC enables users to audit and correct internal metadata of both individual files or an entire DPX sequence while not impacting the image data.&lt;br /&gt;
embARC is created and maintained by FADGI (Federal Agencies Digital Guidelines Initiative), in conjunction with [https://www.weareavp.com/ AVP] and [https://www.portalmedia.com/ PortalMedia].&lt;br /&gt;
&lt;br /&gt;
The tool wraps FFmpeg, CRC32C and uses Nitrite. It is developed in JAVA. &lt;br /&gt;
&lt;br /&gt;
Further information about the software and release history is available at:&lt;br /&gt;
http://www.digitizationguidelines.gov/guidelines/embARC.html &lt;br /&gt;
&lt;br /&gt;
== User Experiences ==&lt;br /&gt;
&amp;lt;!-- Add hotlinks to user experiences with the tool (eg. blog posts). These should illustrate the effectiveness (or otherwise) of the tool. Use a bullet list. --&amp;gt;&lt;br /&gt;
A google doc of the user guide is availabe at:&lt;br /&gt;
https://docs.google.com/document/d/1twXVvNwsQdc-u_kHyURyjmKQl3R7bOpYX_Po0uXJVXk/edit&lt;br /&gt;
&lt;br /&gt;
== Development Activity ==&lt;br /&gt;
&amp;lt;!-- Provide *evidence* of development activity of the tool. For example, RSS feeds for code issues or commits. --&amp;gt;&lt;br /&gt;
&amp;lt;!-- Add the OpenHub.com ID for the tool, if known. --&amp;gt;&lt;br /&gt;
{{Infobox_tool_details&lt;br /&gt;
|releases_rss=&lt;br /&gt;
|issues_rss=&lt;br /&gt;
|mailing_lists=&lt;br /&gt;
|ohloh_id=&lt;br /&gt;
}}&lt;br /&gt;
Current release is 0.1.5 beta.&lt;br /&gt;
Github repo: https://github.com/LibraryOfCongress/embARC&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=AVP_Fixity&amp;diff=3267</id>
		<title>AVP Fixity</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=AVP_Fixity&amp;diff=3267"/>
		<updated>2018-09-03T15:26:04Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Use the structure provided in this template, do not change it! --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Infobox_tool&lt;br /&gt;
|purpose=Fixity monitoring for digital collections&lt;br /&gt;
|homepage=https://www.weareavp.com/products/fixity/&lt;br /&gt;
|license=Apache 2.0&lt;br /&gt;
|platforms=Windows, Mac&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add one ore more categories to describe the function of the tool. Choose carefully, and view the list of existing categories first (see the Navigation sidebar on the left). The following are common category examples, remove those that don't apply --&amp;gt;&lt;br /&gt;
[[Category:Fixity]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add relevant categories to describe the content type that the tool addresses. Choose carefully, and view the list of existing categories first (see the Navigation sidebar on the left). If the tool works on any content type, do not add a category. The following are common category examples, remove those that don't apply --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&amp;lt;!-- Describe the what the tool does, focusing on it's digital preservation value. Keep it factual. --&amp;gt;&lt;br /&gt;
Fixity is a tool for monitoring file integrity and attendance over time.  It is designed to be easy-to-use (GUI interface) and automated (scheduled checks, email alerts/reports) to help institutions ensure the integrity of their digital assets. &lt;br /&gt;
&lt;br /&gt;
=== Provider ===&lt;br /&gt;
Fixity was developed and is maintained by [http://weareavp.com AVP].&lt;br /&gt;
&lt;br /&gt;
== User Experiences ==&lt;br /&gt;
&amp;lt;!-- Add hotlinks to user experiences with the tool (eg. blog posts). These should illustrate the effectiveness (or otherwise) of the tool. --&amp;gt;&lt;br /&gt;
* Fixity User Group: https://groups.google.com/forum/#!forum/fixity-users&lt;br /&gt;
* Fixity Webinar https://www.weareavp.com/avp-webinar-series-fixity/&lt;br /&gt;
* Blog Post by Jenny Mitcham http://digital-archiving.blogspot.com/2018/07/checksum-or-fixity-which-tool-is-for-me.html &lt;br /&gt;
&lt;br /&gt;
== Development Activity ==&lt;br /&gt;
&amp;lt;!-- Provide *evidence* of development activity of the tool. For example, RSS feeds for code issues or commits. --&amp;gt;&lt;br /&gt;
The project repository is on [http://www.github.com/avpreserve/fixity Github]&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=ClairMeta&amp;diff=3241</id>
		<title>ClairMeta</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=ClairMeta&amp;diff=3241"/>
		<updated>2018-06-11T08:01:37Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: Created page with &amp;quot;&amp;lt;!-- Use the structure provided in this template, do not change it! --&amp;gt;  {{Infobox_tool |purpose=Clairmeta is a python package for Digital Cinema Package (DCP) probing and che...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Use the structure provided in this template, do not change it! --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Infobox_tool&lt;br /&gt;
|purpose=Clairmeta is a python package for Digital Cinema Package (DCP) probing and checking. &lt;br /&gt;
|image={{PAGENAMEE}}.png&lt;br /&gt;
|homepage=https://github.com/Ymagis/ClairMeta&lt;br /&gt;
|license=BSD 3-Clause &amp;quot;New&amp;quot; or &amp;quot;Revised&amp;quot; License&lt;br /&gt;
|platforms=Should work on Windows, macOS, Linux, Tested on : macOS 10.12&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;!-- Note that to use the image field, you should leave the value as {{PAGENAMEE}}.png (or similar) and upload a copy of the image. Hot-linking is not supported. If you don't want an image, just remove that line. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add one or more categories to describe the function of the tool, such as:&lt;br /&gt;
[[Category:Metadata Extraction]] or [[Category:Preservation System]] or [[Category:Backup]]&lt;br /&gt;
Choose carefully, and view the list of existing categories first (see the Navigation sidebar on the left) --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add relevant categories to describe the content type that the tool addresses, such as:&lt;br /&gt;
[[Category:Audio]] or [[Category:Document]] or [[Category:Research Data]]&lt;br /&gt;
Choose carefully, and view the list of existing categories first (see the Navigation sidebar on the left). If the tool works on any content type, do not add a category. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&amp;lt;!-- Describe the what the tool does, focusing on it's digital preservation value. Keep it factual. --&amp;gt;&lt;br /&gt;
Clairmeta is a python package for Digital Cinema Package (DCP) probing and checking.&lt;br /&gt;
This project status is Beta, the following needs to be done for the release :&lt;br /&gt;
* Large scale tests on lots of DCPs (including D-Box, DVIs, OCAP, CCAP, ...)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Features'''&lt;br /&gt;
* DCP Probe : metadata extraction of the whole DCP, including all XML fields and MXF assets inspection.&lt;br /&gt;
* DCP Checker : advanced DCP validation tool, including (non exhaustive):&lt;br /&gt;
** SMPTE / Interop standard convention (naming, …)&lt;br /&gt;
** Integrity (MIME type, size, hash) of all assets&lt;br /&gt;
** Foreign file identification&lt;br /&gt;
** XSD Schema validation for XML files (VOLINDEX, ASSETMAP, CPL, PKL)&lt;br /&gt;
** Digital signature validation (CPL, PKL)&lt;br /&gt;
** Intra / Inter Reels integrity and coherence&lt;br /&gt;
** Metadata match between CPL assets and MXF headers&lt;br /&gt;
** Re-link VF / OV&lt;br /&gt;
** Picture tests : FrameRate, BitRate, …&lt;br /&gt;
** Sound tests : Channels, Sampling, …&lt;br /&gt;
** Subtitle : Deep inspection of Interop and SMPTE subtitles&lt;br /&gt;
* DSM / DCDM Checker : basic image file sequence validation with some specific rules.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Usage'''&lt;br /&gt;
&lt;br /&gt;
ClairMeta can be used as a general command line tool as well as a python library.&lt;br /&gt;
&lt;br /&gt;
Examples for command line calls:&lt;br /&gt;
&lt;br /&gt;
   python3 -m clairmeta.cli probe -type dcp path/to/dcp&lt;br /&gt;
   python3 -m clairmeta.cli probe -type dcp path/to/dcp -format json &amp;gt; dcp.json&lt;br /&gt;
   python3 -m clairmeta.cli probe -type dcp path/to/dcp -format xml &amp;gt; dcp.xml&lt;br /&gt;
   python3 -m clairmeta.cli check -type dcp path/to/dcp&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Installation / Dependencies'''&lt;br /&gt;
&lt;br /&gt;
Installation notes are available on the github page: https://github.com/Ymagis/ClairMeta &lt;br /&gt;
&lt;br /&gt;
Dependencies:&lt;br /&gt;
* Python&lt;br /&gt;
** Should work on python 2.7 and python 3.3+&lt;br /&gt;
** Tested on : python 2.7, python 3.6&lt;br /&gt;
* Platform&lt;br /&gt;
** Should work on Windows, macOS, Linux&lt;br /&gt;
** Tested on : macOS 10.12&lt;br /&gt;
* External (non-python) dependencies :&lt;br /&gt;
** libmagic&lt;br /&gt;
** asdcplib&lt;br /&gt;
** mediainfo (opt)&lt;br /&gt;
** sox (opt)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== User Experiences ==&lt;br /&gt;
&amp;lt;!-- Add hotlinks to user experiences with the tool (eg. blog posts). These should illustrate the effectiveness (or otherwise) of the tool. Use a bullet list. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Development Activity ==&lt;br /&gt;
&amp;lt;!-- Provide *evidence* of development activity of the tool. For example, RSS feeds for code issues or commits. --&amp;gt;&lt;br /&gt;
All development activity is visible on GitHub: https://github.com/Ymagis/ClairMeta/commits/develop &lt;br /&gt;
&lt;br /&gt;
=== Release Feed ===&lt;br /&gt;
Below the last 3 release feeds:&lt;br /&gt;
&amp;lt;rss max=3&amp;gt;https://github.com/Ymagis/ClairMeta/releases.atom&amp;lt;/rss&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
=== Activity Feed ===&lt;br /&gt;
Below the last 5 commits:&lt;br /&gt;
&amp;lt;rss max=5&amp;gt;https://github.com/Ymagis/ClairMeta/commits/master.atom&amp;lt;/rss&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add the OpenHub.com ID for the tool, if known. --&amp;gt;&lt;br /&gt;
{{Infobox_tool_details&lt;br /&gt;
|releases_rss=&lt;br /&gt;
|issues_rss=&lt;br /&gt;
|mailing_lists=&lt;br /&gt;
|ohloh_id=&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=Exactly&amp;diff=3069</id>
		<title>Exactly</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=Exactly&amp;diff=3069"/>
		<updated>2018-04-26T06:05:48Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Use the structure provided in this template, do not change it! --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Infobox_tool&lt;br /&gt;
|purpose=Packs data in BagIt bags and transfers them to/from remote location via FTP, SFTP&lt;br /&gt;
|image=Exactly-50-small-300x279.png&lt;br /&gt;
|homepage=https://www.weareavp.com/products/exactly/&lt;br /&gt;
|license=Apache License 2.0&lt;br /&gt;
|platforms=Mac and Windows&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;!-- Note that to use the image field, you should leave the value as {{PAGENAMEE}}.png (or similar) and upload a copy of the image. Hot-linking is not supported. If you don't want an image, just remove that line. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add one or more categories to describe the function of the tool, such as:&lt;br /&gt;
[[Category:Metadata Extraction]] or [[Category:Preservation System]] or [[Category:Backup]]&lt;br /&gt;
Choose carefully, and view the list of existing categories first (see the Navigation sidebar on the left) --&amp;gt;&lt;br /&gt;
[[Category:Transfer]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add relevant categories to describe the content type that the tool addresses, such as:&lt;br /&gt;
[[Category:Audio]] or [[Category:Document]] or [[Category:Research Data]]&lt;br /&gt;
Choose carefully, and view the list of existing categories first (see the Navigation sidebar on the left). If the tool works on any content type, do not add a category. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&amp;lt;!-- Describe the what the tool does, focusing on it's digital preservation value. Keep it factual. --&amp;gt;&lt;br /&gt;
Exactly allows to pack local data into BagIt bags and to transfer them to remote locations via FTP or SFTP protocol. While creating the bags, the users can choose to add user-info metadata which is added to tbe bag-info file. The UI offers reserved fields, such as source-organization, organization-adress, etc. per default, but also supports non-bagit fields to be added. Metadata profiles, (S)FTP parameters, email preferences and other settings can be stored in preset settings files for usage in client installations. &lt;br /&gt;
During bag creation, the user has the option to choose whether the bag should be zipped or not. &lt;br /&gt;
The tool integrates into desktop-based file sharing worfklows such as Dropbox or Google Transfer and is designed to assist data producers in easy data transfer to archiving institutions. &lt;br /&gt;
&lt;br /&gt;
==== Provider ====&lt;br /&gt;
[https://www.weareavp.com/ AVP]&lt;br /&gt;
&lt;br /&gt;
==== Licensing and cost ====&lt;br /&gt;
[https://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0] &amp;amp;ndash; free.&lt;br /&gt;
&lt;br /&gt;
== User Experiences ==&lt;br /&gt;
&amp;lt;!-- Add hotlinks to user experiences with the tool (eg. blog posts). These should illustrate the effectiveness (or otherwise) of the tool. Use a bullet list. --&amp;gt;&lt;br /&gt;
Exactly Users Google Group: https://groups.google.com/forum/#!forum/exactly-users &lt;br /&gt;
&lt;br /&gt;
Exactly webinar: https://vimeo.com/200403270&lt;br /&gt;
&lt;br /&gt;
== Development Activity ==&lt;br /&gt;
&amp;lt;!-- Provide *evidence* of development activity of the tool. For example, RSS feeds for code issues or commits. --&amp;gt;&lt;br /&gt;
&amp;lt;!-- Add the OpenHub.com ID for the tool, if known. --&amp;gt;&lt;br /&gt;
Exactly on Open Hub: https://www.openhub.net/p/exactly&lt;br /&gt;
&lt;br /&gt;
All development activity is visible on github: https://github.com/WeAreAVP/uk-exactly/&lt;br /&gt;
&lt;br /&gt;
{{Infobox_tool_details&lt;br /&gt;
|releases_rss=https://github.com/WeAreAVP/uk-exactly/releases.atom&lt;br /&gt;
|issues_rss=https://github.com/WeAreAVP/uk-exactly/issues.atom&lt;br /&gt;
|mailing_lists=https://groups.google.com/forum/#!forum/exactly-users &lt;br /&gt;
|ohloh_id=exactly&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=Exactly&amp;diff=3068</id>
		<title>Exactly</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=Exactly&amp;diff=3068"/>
		<updated>2018-04-26T05:49:47Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Use the structure provided in this template, do not change it! --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Infobox_tool&lt;br /&gt;
|purpose=Packs data in BagIt bags and transfers them to/from remote location via FTP, SFTP&lt;br /&gt;
|image=Exactly-50-small-300x279.png&lt;br /&gt;
|homepage=https://www.weareavp.com/products/exactly/&lt;br /&gt;
|license=Apache License 2.0&lt;br /&gt;
|platforms=Mac and Windows&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;!-- Note that to use the image field, you should leave the value as {{PAGENAMEE}}.png (or similar) and upload a copy of the image. Hot-linking is not supported. If you don't want an image, just remove that line. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add one or more categories to describe the function of the tool, such as:&lt;br /&gt;
[[Category:Metadata Extraction]] or [[Category:Preservation System]] or [[Category:Backup]]&lt;br /&gt;
Choose carefully, and view the list of existing categories first (see the Navigation sidebar on the left) --&amp;gt;&lt;br /&gt;
[[Category:Transfer]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add relevant categories to describe the content type that the tool addresses, such as:&lt;br /&gt;
[[Category:Audio]] or [[Category:Document]] or [[Category:Research Data]]&lt;br /&gt;
Choose carefully, and view the list of existing categories first (see the Navigation sidebar on the left). If the tool works on any content type, do not add a category. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&amp;lt;!-- Describe the what the tool does, focusing on it's digital preservation value. Keep it factual. --&amp;gt;&lt;br /&gt;
Exactly allows to pack local data into BagIt bags and to transfer them to remote locations via FTP or SFTP protocol. While creating the bags, the users can choose to add user-info metadata which is added to tbe bag-info file. The UI offers reserved fields, such as source-organization, organization-adress, etc. per default, but also supports non-bagit fields to be added. Metadata profiles, (S)FTP parameters, email preferences and other settings can be stored in preset settings files for usage in client installations. &lt;br /&gt;
During bag creation, the user has the option to choose whether the bag should be zipped or not. &lt;br /&gt;
The tool integrates into desktop-based file sharing worfklows such as Dropbox or Google Transfer and is designed to assist data producers in easy data transfer to archiving institutions. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== User Experiences ==&lt;br /&gt;
&amp;lt;!-- Add hotlinks to user experiences with the tool (eg. blog posts). These should illustrate the effectiveness (or otherwise) of the tool. Use a bullet list. --&amp;gt;&lt;br /&gt;
Exactly Users Google Group: https://groups.google.com/forum/#!forum/exactly-users &lt;br /&gt;
&lt;br /&gt;
== Development Activity ==&lt;br /&gt;
&amp;lt;!-- Provide *evidence* of development activity of the tool. For example, RSS feeds for code issues or commits. --&amp;gt;&lt;br /&gt;
&amp;lt;!-- Add the OpenHub.com ID for the tool, if known. --&amp;gt;&lt;br /&gt;
Exactly on Open Hub: https://www.openhub.net/p/exactly&lt;br /&gt;
&lt;br /&gt;
All development activity is visible on github: https://github.com/WeAreAVP/uk-exactly/&lt;br /&gt;
&lt;br /&gt;
{{Infobox_tool_details&lt;br /&gt;
|releases_rss=https://github.com/WeAreAVP/uk-exactly/releases.atom&lt;br /&gt;
|issues_rss=https://github.com/WeAreAVP/uk-exactly/issues.atom&lt;br /&gt;
|mailing_lists=https://groups.google.com/forum/#!forum/exactly-users &lt;br /&gt;
|ohloh_id=exactly&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=Exactly&amp;diff=3067</id>
		<title>Exactly</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=Exactly&amp;diff=3067"/>
		<updated>2018-04-26T05:45:38Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Use the structure provided in this template, do not change it! --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Infobox_tool&lt;br /&gt;
|purpose=Packs data in BagIt bags and transfers them to/from remote location via FTP, SFTP&lt;br /&gt;
|image=Exactly-50-small-300x279.png&lt;br /&gt;
|homepage=https://www.weareavp.com/products/exactly/&lt;br /&gt;
|license=Apache License&lt;br /&gt;
|platforms=Mac and Windows&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;!-- Note that to use the image field, you should leave the value as {{PAGENAMEE}}.png (or similar) and upload a copy of the image. Hot-linking is not supported. If you don't want an image, just remove that line. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add one or more categories to describe the function of the tool, such as:&lt;br /&gt;
[[Category:Metadata Extraction]] or [[Category:Preservation System]] or [[Category:Backup]]&lt;br /&gt;
Choose carefully, and view the list of existing categories first (see the Navigation sidebar on the left) --&amp;gt;&lt;br /&gt;
[[Category:Transfer]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Add relevant categories to describe the content type that the tool addresses, such as:&lt;br /&gt;
[[Category:Audio]] or [[Category:Document]] or [[Category:Research Data]]&lt;br /&gt;
Choose carefully, and view the list of existing categories first (see the Navigation sidebar on the left). If the tool works on any content type, do not add a category. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&amp;lt;!-- Describe the what the tool does, focusing on it's digital preservation value. Keep it factual. --&amp;gt;&lt;br /&gt;
Exactly allows to pack local data into BagIt bags and to transfer them to remote locations via FTP or SFTP protocol. While creating the bags, the users can choose to add user-info metadata which is added to tbe bag-info file. The UI offers reserved fields, such as source-organization, organization-adress, etc. per default, but also supports non-bagit fields to be added. Metadata profiles, (S)FTP parameters, email preferences and other settings can be stored in preset settings files for usage in client installations. &lt;br /&gt;
During bag creation, the user has the option to choose whether the bag should be zipped or not. &lt;br /&gt;
The tool integrates into desktop-based file sharing worfklows such as Dropbox or Google Transfer and is designed to assist data producers in easy data transfer to archiving institutions. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== User Experiences ==&lt;br /&gt;
&amp;lt;!-- Add hotlinks to user experiences with the tool (eg. blog posts). These should illustrate the effectiveness (or otherwise) of the tool. Use a bullet list. --&amp;gt;&lt;br /&gt;
Exactly Users Google Group: https://groups.google.com/forum/#!forum/exactly-users &lt;br /&gt;
&lt;br /&gt;
== Development Activity ==&lt;br /&gt;
&amp;lt;!-- Provide *evidence* of development activity of the tool. For example, RSS feeds for code issues or commits. --&amp;gt;&lt;br /&gt;
&amp;lt;!-- Add the OpenHub.com ID for the tool, if known. --&amp;gt;&lt;br /&gt;
Exactly on Open Hub: https://www.openhub.net/p/exactly&lt;br /&gt;
&lt;br /&gt;
All development activity is visible on github: https://github.com/WeAreAVP/uk-exactly/&lt;br /&gt;
&lt;br /&gt;
{{Infobox_tool_details&lt;br /&gt;
|releases_rss=https://github.com/WeAreAVP/uk-exactly/releases.atom&lt;br /&gt;
|issues_rss=https://github.com/WeAreAVP/uk-exactly/issues.atom&lt;br /&gt;
|mailing_lists=https://groups.google.com/forum/#!forum/exactly-users &lt;br /&gt;
|ohloh_id=exactly&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=File:Slide1.png&amp;diff=3066</id>
		<title>File:Slide1.png</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=File:Slide1.png&amp;diff=3066"/>
		<updated>2018-04-26T05:39:46Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: Exactly transfer workflow&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Exactly transfer workflow&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
	<entry>
		<id>https://coptr.digipres.org/index.php?title=File:Exactly-50-small-300x279.png&amp;diff=3065</id>
		<title>File:Exactly-50-small-300x279.png</title>
		<link rel="alternate" type="text/html" href="https://coptr.digipres.org/index.php?title=File:Exactly-50-small-300x279.png&amp;diff=3065"/>
		<updated>2018-04-26T05:38:54Z</updated>

		<summary type="html">&lt;p&gt;Lindlar: Logo for Exactly&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Logo for Exactly&lt;/div&gt;</summary>
		<author><name>Lindlar</name></author>
	</entry>
</feed>