Skip to content

Commit 0d74ce1

Browse files
authored
GH-4779 Maintain RDFa support (#4858)
2 parents 11781a0 + 4f2f5c4 commit 0d74ce1

2 files changed

Lines changed: 12 additions & 6 deletions

File tree

core/rio/api/src/main/java/org/eclipse/rdf4j/rio/helpers/RDFaParserSettings.java

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,14 @@
2222
public class RDFaParserSettings {
2323

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

core/rio/api/src/main/java/org/eclipse/rdf4j/rio/helpers/RDFaVersion.java

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,14 @@
1111
package org.eclipse.rdf4j.rio.helpers;
1212

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

2124
/**

0 commit comments

Comments
 (0)