Skip to content

Commit

Permalink
FIX: Unimplemented profile checks (#219)
Browse files Browse the repository at this point in the history
* REL: v0.16.0 (#210)

* DEV: v0.15.0 dev version. (#202)

* FIX: Double validation reporting (#201)

- removed the validation report output from profile reporting.

* FIX: Policy crash when document unparsable (#203)

* Dev/0.15 (#204)

* DEV: v0.15.0 dev version.

* DEV: v0.15.0 dev version.

* FIX: Policy crash when package has no manifest (#205)

- added check for null manifest when attempting to list package XML files.

Closes #193

* FIX: Crashing policy macro check of unreadable entries. (#206)

- null stream entries are no longer checked for macros.

* FIX: Version detection issues (#207)

* FIX: Version detection issues

- using full manifest entry name rather than simply file name; and
- use appropriate namespace for detection.

* FIX: Version detection fall-through.

* FIX: Handling of encrypted entries (#208)

- `PackageParser` changes:
  - parsing of `mimetype` and `META-INF/manifest.xml` are now done up front;
  - simpleified entry handling;
  - dedicated methods for mimetype and manifest parsing;
  - cleaned up handling of bad zip entries prior to moving this to the zip classes;
- `OdfPackage` now has an `isEncrypted()` method to check if the package contains encrypted entries;
- simplifed message processing in `ValidatingParser`;
- addded encryption detection to prevent validation and profiling of encrypted package entries;
- CLI reports incomplete validation for packages with encrypted entries, though this is still a little hacky.

* REL: v0.16.0 (#209)

- bumped maven version -> 0.16.0;
- updated version in batch start files; and
- updated version in README and other documentation.

* FIX: Encryption checking of bad documents (#213)

- fixed bug where checking encryption of unparseable packages caused an NPE;
- bumped version to 0.16.1 for the fix;
- updated documentation and batch files for new version number.

* DEV: Version 0.16.2-SNAPSHOT (#216)

- bumped `pom.xml` versions to `0.16.2-SNAPSHOT`; and
- updated version in documents and batch files.

* FIX: Don't parse check missing entries (#217)

- check that an XML document in the manifest exists before grabbing the parse entry.

* PARK: Policy checking single files

- fixed a few rules so that single files don't crash; BUT
- a better approach would be to simply offer a single document based check method.

* FIX: Unimplemented profile checks

- for unimplemented profile checks against a single file, return an empty message log;
- added protection against missing package at the start of the profile check;
- added some null checks to profile checking methods; and
- removed some unused imports and parameters.

TODO: Implement schematron checks for a single file.
  • Loading branch information
carlwilson authored Nov 19, 2024
1 parent aebc547 commit bcf7ab6
Show file tree
Hide file tree
Showing 355 changed files with 1,190 additions and 1,119 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# ODF Validator

Latest version is 0.16.0.
Latest version is 0.16.2-SNAPSHOT.
=======

## About

Expand Down
2 changes: 1 addition & 1 deletion docs/developer/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ To include the core validation library in your project, add the following depend
<dependency>
<groupId>org.openpreservation.odf</groupId>
<artifactId>odf-core</artifactId>
<version>0.16.0</version>
<version>0.16.2-SNAPSHOT</version>
</dependency>
```

Expand Down
6 changes: 3 additions & 3 deletions docs/site/apidocs/allclasses-index.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<!-- Generated by javadoc (17) on Mon Sep 30 10:59:03 BST 2024 -->
<title>All Classes and Interfaces (ODF spreadsheet validator. 0.14.0 API)</title>
<!-- Generated by javadoc (17) on Thu Oct 31 10:57:21 GMT 2024 -->
<title>All Classes and Interfaces (ODF spreadsheet validator. 0.16.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="dc.created" content="2024-09-30">
<meta name="dc.created" content="2024-10-31">
<meta name="description" content="class index">
<meta name="generator" content="javadoc/AllClassesIndexWriter">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
Expand Down
6 changes: 3 additions & 3 deletions docs/site/apidocs/allpackages-index.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<!-- Generated by javadoc (17) on Mon Sep 30 10:59:03 BST 2024 -->
<title>All Packages (ODF spreadsheet validator. 0.14.0 API)</title>
<!-- Generated by javadoc (17) on Thu Oct 31 10:57:21 GMT 2024 -->
<title>All Packages (ODF spreadsheet validator. 0.16.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="dc.created" content="2024-09-30">
<meta name="dc.created" content="2024-10-31">
<meta name="description" content="package index">
<meta name="generator" content="javadoc/AllPackagesIndexWriter">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
Expand Down
6 changes: 3 additions & 3 deletions docs/site/apidocs/constant-values.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<!-- Generated by javadoc (17) on Mon Sep 30 10:59:03 BST 2024 -->
<title>Constant Field Values (ODF spreadsheet validator. 0.14.0 API)</title>
<!-- Generated by javadoc (17) on Thu Oct 31 10:57:21 GMT 2024 -->
<title>Constant Field Values (ODF spreadsheet validator. 0.16.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="dc.created" content="2024-09-30">
<meta name="dc.created" content="2024-10-31">
<meta name="description" content="summary of constants">
<meta name="generator" content="javadoc/ConstantsSummaryWriterImpl">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
Expand Down
6 changes: 3 additions & 3 deletions docs/site/apidocs/help-doc.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<!-- Generated by javadoc (17) on Mon Sep 30 10:59:03 BST 2024 -->
<title>API Help (ODF spreadsheet validator. 0.14.0 API)</title>
<!-- Generated by javadoc (17) on Thu Oct 31 10:57:21 GMT 2024 -->
<title>API Help (ODF spreadsheet validator. 0.16.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="dc.created" content="2024-09-30">
<meta name="dc.created" content="2024-10-31">
<meta name="description" content="help">
<meta name="generator" content="javadoc/HelpWriter">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
Expand Down
10 changes: 7 additions & 3 deletions docs/site/apidocs/index-all.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<!-- Generated by javadoc (17) on Mon Sep 30 10:59:03 BST 2024 -->
<title>Index (ODF spreadsheet validator. 0.14.0 API)</title>
<!-- Generated by javadoc (17) on Thu Oct 31 10:57:21 GMT 2024 -->
<title>Index (ODF spreadsheet validator. 0.16.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="dc.created" content="2024-09-30">
<meta name="dc.created" content="2024-10-31">
<meta name="description" content="index">
<meta name="generator" content="javadoc/IndexWriter">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
Expand Down Expand Up @@ -973,6 +973,10 @@ <h2 class="title" id="I:I">I</h2>
<dd>
<div class="block">Is the file entry encrypted?</div>
</dd>
<dt><a href="org/openpreservation/odf/pkg/OdfPackage.html#isEncrypted()" class="member-name-link">isEncrypted()</a> - Method in interface org.openpreservation.odf.pkg.<a href="org/openpreservation/odf/pkg/OdfPackage.html" title="interface in org.openpreservation.odf.pkg">OdfPackage</a></dt>
<dd>
<div class="block">Discover if the package had any encrypted entries.</div>
</dd>
<dt><a href="org/openpreservation/messages/Message.html#isError()" class="member-name-link">isError()</a> - Method in interface org.openpreservation.messages.<a href="org/openpreservation/messages/Message.html" title="interface in org.openpreservation.messages">Message</a></dt>
<dd>
<div class="block">Test whether the message has <a href="org/openpreservation/messages/Message.Severity.html" title="enum class in org.openpreservation.messages"><code>Message.Severity</code></a> ERROR.</div>
Expand Down
8 changes: 4 additions & 4 deletions docs/site/apidocs/index.html
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<!-- Generated by javadoc (17) on Mon Sep 30 10:59:03 BST 2024 -->
<title>Overview (ODF spreadsheet validator. 0.14.0 API)</title>
<!-- Generated by javadoc (17) on Thu Oct 31 10:57:21 GMT 2024 -->
<title>Overview (ODF spreadsheet validator. 0.16.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="dc.created" content="2024-09-30">
<meta name="dc.created" content="2024-10-31">
<meta name="description" content="package index">
<meta name="generator" content="javadoc/PackageIndexWriter">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
Expand Down Expand Up @@ -49,7 +49,7 @@
<div class="flex-content">
<main role="main">
<div class="header">
<h1 class="title">ODF spreadsheet validator. 0.14.0 API</h1>
<h1 class="title">ODF spreadsheet validator. 0.16.1 API</h1>
</div>
<div id="all-packages-table">
<div class="caption"><span>Packages</span></div>
Expand Down
2 changes: 1 addition & 1 deletion docs/site/apidocs/member-search-index.js

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<!-- Generated by javadoc (17) on Mon Sep 30 10:59:03 BST 2024 -->
<title>Attribute (ODF spreadsheet validator. 0.14.0 API)</title>
<!-- Generated by javadoc (17) on Thu Oct 31 10:57:21 GMT 2024 -->
<title>Attribute (ODF spreadsheet validator. 0.16.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="dc.created" content="2024-09-30">
<meta name="dc.created" content="2024-10-31">
<meta name="description" content="declaration: package: org.openpreservation.format.xml, interface: Attribute">
<meta name="generator" content="javadoc/ClassWriterImpl">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<!-- Generated by javadoc (17) on Mon Sep 30 10:59:03 BST 2024 -->
<title>Encodings (ODF spreadsheet validator. 0.14.0 API)</title>
<!-- Generated by javadoc (17) on Thu Oct 31 10:57:21 GMT 2024 -->
<title>Encodings (ODF spreadsheet validator. 0.16.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="dc.created" content="2024-09-30">
<meta name="dc.created" content="2024-10-31">
<meta name="description" content="declaration: package: org.openpreservation.format.xml, enum: Encodings">
<meta name="generator" content="javadoc/ClassWriterImpl">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<!-- Generated by javadoc (17) on Mon Sep 30 10:59:03 BST 2024 -->
<title>MessageHandler (ODF spreadsheet validator. 0.14.0 API)</title>
<!-- Generated by javadoc (17) on Thu Oct 31 10:57:21 GMT 2024 -->
<title>MessageHandler (ODF spreadsheet validator. 0.16.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="dc.created" content="2024-09-30">
<meta name="dc.created" content="2024-10-31">
<meta name="description" content="declaration: package: org.openpreservation.format.xml, class: MessageHandler">
<meta name="generator" content="javadoc/ClassWriterImpl">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<!-- Generated by javadoc (17) on Mon Sep 30 10:59:03 BST 2024 -->
<title>Namespace (ODF spreadsheet validator. 0.14.0 API)</title>
<!-- Generated by javadoc (17) on Thu Oct 31 10:57:21 GMT 2024 -->
<title>Namespace (ODF spreadsheet validator. 0.16.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="dc.created" content="2024-09-30">
<meta name="dc.created" content="2024-10-31">
<meta name="description" content="declaration: package: org.openpreservation.format.xml, interface: Namespace">
<meta name="generator" content="javadoc/ClassWriterImpl">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<!-- Generated by javadoc (17) on Mon Sep 30 10:59:03 BST 2024 -->
<title>ParseResult (ODF spreadsheet validator. 0.14.0 API)</title>
<!-- Generated by javadoc (17) on Thu Oct 31 10:57:21 GMT 2024 -->
<title>ParseResult (ODF spreadsheet validator. 0.16.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="dc.created" content="2024-09-30">
<meta name="dc.created" content="2024-10-31">
<meta name="description" content="declaration: package: org.openpreservation.format.xml, interface: ParseResult">
<meta name="generator" content="javadoc/ClassWriterImpl">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<!-- Generated by javadoc (17) on Mon Sep 30 10:59:03 BST 2024 -->
<title>ParsingHandler (ODF spreadsheet validator. 0.14.0 API)</title>
<!-- Generated by javadoc (17) on Thu Oct 31 10:57:21 GMT 2024 -->
<title>ParsingHandler (ODF spreadsheet validator. 0.16.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="dc.created" content="2024-09-30">
<meta name="dc.created" content="2024-10-31">
<meta name="description" content="declaration: package: org.openpreservation.format.xml, class: ParsingHandler">
<meta name="generator" content="javadoc/ClassWriterImpl">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<!-- Generated by javadoc (17) on Mon Sep 30 10:59:03 BST 2024 -->
<title>ValidationResult (ODF spreadsheet validator. 0.14.0 API)</title>
<!-- Generated by javadoc (17) on Thu Oct 31 10:57:21 GMT 2024 -->
<title>ValidationResult (ODF spreadsheet validator. 0.16.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="dc.created" content="2024-09-30">
<meta name="dc.created" content="2024-10-31">
<meta name="description" content="declaration: package: org.openpreservation.format.xml, interface: ValidationResult">
<meta name="generator" content="javadoc/ClassWriterImpl">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<!-- Generated by javadoc (17) on Mon Sep 30 10:59:03 BST 2024 -->
<title>ValidationResults (ODF spreadsheet validator. 0.14.0 API)</title>
<!-- Generated by javadoc (17) on Thu Oct 31 10:57:21 GMT 2024 -->
<title>ValidationResults (ODF spreadsheet validator. 0.16.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="dc.created" content="2024-09-30">
<meta name="dc.created" content="2024-10-31">
<meta name="description" content="declaration: package: org.openpreservation.format.xml, class: ValidationResults">
<meta name="generator" content="javadoc/ClassWriterImpl">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<!-- Generated by javadoc (17) on Mon Sep 30 10:59:03 BST 2024 -->
<title>XmlParser (ODF spreadsheet validator. 0.14.0 API)</title>
<!-- Generated by javadoc (17) on Thu Oct 31 10:57:21 GMT 2024 -->
<title>XmlParser (ODF spreadsheet validator. 0.16.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="dc.created" content="2024-09-30">
<meta name="dc.created" content="2024-10-31">
<meta name="description" content="declaration: package: org.openpreservation.format.xml, class: XmlParser">
<meta name="generator" content="javadoc/ClassWriterImpl">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<!-- Generated by javadoc (17) on Mon Sep 30 10:59:03 BST 2024 -->
<title>XmlValidator (ODF spreadsheet validator. 0.14.0 API)</title>
<!-- Generated by javadoc (17) on Thu Oct 31 10:57:21 GMT 2024 -->
<title>XmlValidator (ODF spreadsheet validator. 0.16.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="dc.created" content="2024-09-30">
<meta name="dc.created" content="2024-10-31">
<meta name="description" content="declaration: package: org.openpreservation.format.xml, class: XmlValidator">
<meta name="generator" content="javadoc/ClassWriterImpl">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<!-- Generated by javadoc (17) on Mon Sep 30 10:59:03 BST 2024 -->
<title>Uses of Interface org.openpreservation.format.xml.Attribute (ODF spreadsheet validator. 0.14.0 API)</title>
<!-- Generated by javadoc (17) on Thu Oct 31 10:57:21 GMT 2024 -->
<title>Uses of Interface org.openpreservation.format.xml.Attribute (ODF spreadsheet validator. 0.16.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="dc.created" content="2024-09-30">
<meta name="dc.created" content="2024-10-31">
<meta name="description" content="use: package: org.openpreservation.format.xml, interface: Attribute">
<meta name="generator" content="javadoc/ClassUseWriter">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<!-- Generated by javadoc (17) on Mon Sep 30 10:59:03 BST 2024 -->
<title>Uses of Enum Class org.openpreservation.format.xml.Encodings (ODF spreadsheet validator. 0.14.0 API)</title>
<!-- Generated by javadoc (17) on Thu Oct 31 10:57:21 GMT 2024 -->
<title>Uses of Enum Class org.openpreservation.format.xml.Encodings (ODF spreadsheet validator. 0.16.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="dc.created" content="2024-09-30">
<meta name="dc.created" content="2024-10-31">
<meta name="description" content="use: package: org.openpreservation.format.xml, enum: Encodings">
<meta name="generator" content="javadoc/ClassUseWriter">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<!-- Generated by javadoc (17) on Mon Sep 30 10:59:03 BST 2024 -->
<title>Uses of Class org.openpreservation.format.xml.MessageHandler (ODF spreadsheet validator. 0.14.0 API)</title>
<!-- Generated by javadoc (17) on Thu Oct 31 10:57:21 GMT 2024 -->
<title>Uses of Class org.openpreservation.format.xml.MessageHandler (ODF spreadsheet validator. 0.16.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="dc.created" content="2024-09-30">
<meta name="dc.created" content="2024-10-31">
<meta name="description" content="use: package: org.openpreservation.format.xml, class: MessageHandler">
<meta name="generator" content="javadoc/ClassUseWriter">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<!-- Generated by javadoc (17) on Mon Sep 30 10:59:03 BST 2024 -->
<title>Uses of Interface org.openpreservation.format.xml.Namespace (ODF spreadsheet validator. 0.14.0 API)</title>
<!-- Generated by javadoc (17) on Thu Oct 31 10:57:21 GMT 2024 -->
<title>Uses of Interface org.openpreservation.format.xml.Namespace (ODF spreadsheet validator. 0.16.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="dc.created" content="2024-09-30">
<meta name="dc.created" content="2024-10-31">
<meta name="description" content="use: package: org.openpreservation.format.xml, interface: Namespace">
<meta name="generator" content="javadoc/ClassUseWriter">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<!-- Generated by javadoc (17) on Mon Sep 30 10:59:03 BST 2024 -->
<title>Uses of Interface org.openpreservation.format.xml.ParseResult (ODF spreadsheet validator. 0.14.0 API)</title>
<!-- Generated by javadoc (17) on Thu Oct 31 10:57:21 GMT 2024 -->
<title>Uses of Interface org.openpreservation.format.xml.ParseResult (ODF spreadsheet validator. 0.16.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="dc.created" content="2024-09-30">
<meta name="dc.created" content="2024-10-31">
<meta name="description" content="use: package: org.openpreservation.format.xml, interface: ParseResult">
<meta name="generator" content="javadoc/ClassUseWriter">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<!-- Generated by javadoc (17) on Mon Sep 30 10:59:03 BST 2024 -->
<title>Uses of Class org.openpreservation.format.xml.ParsingHandler (ODF spreadsheet validator. 0.14.0 API)</title>
<!-- Generated by javadoc (17) on Thu Oct 31 10:57:21 GMT 2024 -->
<title>Uses of Class org.openpreservation.format.xml.ParsingHandler (ODF spreadsheet validator. 0.16.1 API)</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="dc.created" content="2024-09-30">
<meta name="dc.created" content="2024-10-31">
<meta name="description" content="use: package: org.openpreservation.format.xml, class: ParsingHandler">
<meta name="generator" content="javadoc/ClassUseWriter">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
Expand Down
Loading

0 comments on commit bcf7ab6

Please sign in to comment.