aboutsummaryrefslogtreecommitdiffstats
path: root/serd
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-07-05 21:01:12 +0200
committerDavid Robillard <d@drobilla.net>2020-10-27 13:13:58 +0100
commit7515bb32246098af42bb105e9e1256ce1f6018ae (patch)
treef5845c842f119f5be747ac6dd86bb30bc8bd5ebc /serd
parent8bc4e0d94cdcd7b05ec50533cb8b618e47eb13aa (diff)
downloadserd-7515bb32246098af42bb105e9e1256ce1f6018ae.tar.gz
serd-7515bb32246098af42bb105e9e1256ce1f6018ae.tar.bz2
serd-7515bb32246098af42bb105e9e1256ce1f6018ae.zip
Simplify writer style options
Diffstat (limited to 'serd')
-rw-r--r--serd/serd.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/serd/serd.h b/serd/serd.h
index 6e68e349..4f17babe 100644
--- a/serd/serd.h
+++ b/serd/serd.h
@@ -299,11 +299,10 @@ typedef struct {
always ASCII).
*/
typedef enum {
- SERD_STYLE_ABBREVIATED = 1, /**< Abbreviate triples when possible. */
- SERD_STYLE_ASCII = 1 << 1, /**< Escape all non-ASCII characters. */
- SERD_STYLE_RESOLVED = 1 << 2, /**< Resolve URIs against base URI. */
- SERD_STYLE_CURIED = 1 << 3, /**< Shorten URIs into CURIEs. */
- SERD_STYLE_BULK = 1 << 4 /**< Write output in pages. */
+ SERD_STYLE_ASCII = 1 << 0, /**< Escape all non-ASCII characters. */
+ SERD_STYLE_BULK = 1 << 1, /**< Write output in pages. */
+ SERD_STYLE_UNQUALIFIED = 1 << 2, /**< Do not shorten URIs into CURIEs. */
+ SERD_STYLE_UNRESOLVED = 1 << 3 /**< Do not make URIs relative. */
} SerdStyle;
/**