Skip to content

Commit

Permalink
GH-4779 Maintain RDFa support (#4858)
Browse files Browse the repository at this point in the history
  • Loading branch information
hmottestad authored Jan 23, 2024
2 parents 11781a0 + 4f2f5c4 commit 0d74ce1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,14 @@
public class RDFaParserSettings {

/**
* Boolean setting for parser to determine the RDFa version to use when processing the document.
* <p>
* Defaults to {@link RDFaVersion#RDFA_1_0}.
* Boolean setting for parser to determine the RDFa version to use when processing the document. Note that although
* these settings are not used within RDF4J, they are in use by external plugins.
*
* @see <a href=
* "https://github.com/eclipse-rdf4j/rdf4j/issues/4779">https://github.com/eclipse-rdf4j/rdf4j/issues/4779</a>
* <p>
* Defaults to {@link RDFaVersion#RDFA_1_0}.
*/
@Deprecated(since = "4.3.0", forRemoval = true)
public static final RioSetting<RDFaVersion> RDFA_COMPATIBILITY = new RioSettingImpl<>(
"org.eclipse.rdf4j.rio.rdfa.version", "RDFa Version Compatibility", RDFaVersion.RDFA_1_0);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,14 @@
package org.eclipse.rdf4j.rio.helpers;

/**
* Enumeration for tracking versions of the RDFa specification to specify processing capabilities of RDFa modules.
* Enumeration for tracking versions of the RDFa specification to specify processing capabilities of RDFa modules. Note
* that although these settings are not used within RDF4J, they are in use by external plugins.
*
* @see <a href=
* "https://github.com/eclipse-rdf4j/rdf4j/issues/4779">https://github.com/eclipse-rdf4j/rdf4j/issues/4779</a>
*
* @author Peter Ansell
*/
@Deprecated(since = "4.3.0", forRemoval = true)
public enum RDFaVersion {

/**
Expand Down

0 comments on commit 0d74ce1

Please sign in to comment.