forked from IKS/rdfQuery
-
Notifications
You must be signed in to change notification settings - Fork 1
/
jquery.curie.js
238 lines (228 loc) · 12.2 KB
/
jquery.curie.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
/*
* jQuery CURIE @VERSION
*
* Copyright (c) 2008,2009 Jeni Tennison
* Licensed under the MIT (MIT-LICENSE.txt)
*
* Depends:
* jquery.uri.js
* jquery.xmlns.js
*/
/**
* @fileOverview jQuery CURIE handling
* @author <a href="mailto:jeni@jenitennison.com">Jeni Tennison</a>
* @copyright (c) 2008,2009 Jeni Tennison
* @license MIT license (MIT-LICENSE.txt)
* @version 1.0
* @requires jquery.uri.js
* @requires jquery.xmlns.js
*/
(function ($) {
/**
* Creates a {@link jQuery.uri} object by parsing a CURIE.
* @methodOf jQuery
* @param {String} curie The CURIE to be parsed
* @param {String} uri The URI string to be converted to a CURIE.
* @param {Object} [options] CURIE parsing options
* @param {string} [options.reservedNamespace='http://www.w3.org/1999/xhtml/vocab#'] The namespace to apply to a CURIE that has no prefix and either starts with a colon or is in the list of reserved local names
* @param {string} [options.defaultNamespace] The namespace to apply to a CURIE with no prefix which is not mapped to the reserved namespace by the rules given above.
* @param {Object} [options.namespaces] A map of namespace bindings used to map CURIE prefixes to URIs.
* @param {string[]} [options.reserved=['alternate', 'appendix', 'bookmark', 'cite', 'chapter', 'contents', 'copyright', 'first', 'glossary', 'help', 'icon', 'index', 'last', 'license', 'meta', 'next', 'p3pv1', 'prev', 'role', 'section', 'stylesheet', 'subsection', 'start', 'top', 'up']] A list of local names that will always be mapped to the URI specified by reservedNamespace.
* @param {string} [options.charcase='lower'] Specifies whether the curie's case is altered before it's interpreted. Acceptable values are:
* <dl>
* <dt>lower</dt><dd>Force the CURIE string to lower case.</dd>
* <dt>upper</dt><dd>Force the CURIE string to upper case.</dd>
* <dt>preserve</dt><dd>Preserve the original case of the CURIE. Note that this might not be possible if the CURIE has been taken from an HTML attribute value because of the case conversions performed automatically by browsers. For this reason, it's a good idea to avoid mixed-case CURIEs within RDFa.</dd>
* </dl>
* @returns {jQuery.uri} A new {@link jQuery.uri} object representing the full absolute URI specified by the CURIE.
*/
$.curie = function (curie, options) {
var
opts = $.extend({}, $.curie.defaults, options || {}),
m = /^(([^:]*):)?(.+)$/.exec(curie),
prefix = m[2],
local = m[3],
ns = opts.namespaces[prefix];
if (/^:.+/.test(curie)) { // This is the case of a CURIE like ":test"
if (opts.reservedNamespace === undefined || opts.reservedNamespace === null) {
throw "Malformed CURIE: No prefix and no default namespace for unprefixed CURIE " + curie;
} else {
ns = opts.reservedNamespace;
}
} else if (prefix) {
if (ns === undefined) {
throw "Malformed CURIE: No namespace binding for " + prefix + " in CURIE " + curie;
}
} else {
if (opts.charcase === 'lower') {
curie = curie.toLowerCase();
} else if (opts.charcase === 'upper') {
curie = curie.toUpperCase();
}
if (opts.reserved.length && $.inArray(curie, opts.reserved) >= 0) {
ns = opts.reservedNamespace;
local = curie;
} else if (opts.defaultNamespace === undefined || opts.defaultNamespace === null) {
// the default namespace is provided by the application; it's not clear whether
// the default XML namespace should be used if there's a colon but no prefix
throw "Malformed CURIE: No prefix and no default namespace for unprefixed CURIE " + curie;
} else {
ns = opts.defaultNamespace;
}
}
return $.uri(ns + local);
};
$.curie.defaults = {
namespaces: {},
reserved: [],
reservedNamespace: undefined,
defaultNamespace: undefined,
charcase: 'preserve'
};
/**
* Creates a {@link jQuery.uri} object by parsing a safe CURIE string (a CURIE
* contained within square brackets). If the input safeCurie string does not
* start with '[' and end with ']', the entire string content will be interpreted
* as a URI string.
* @methodOf jQuery
* @param {String} safeCurie The safe CURIE string to be parsed.
* @param {Object} [options] CURIE parsing options
* @param {string} [options.reservedNamespace='http://www.w3.org/1999/xhtml/vocab#'] The namespace to apply to a CURIE that has no prefix and either starts with a colon or is in the list of reserved local names
* @param {string} [options.defaultNamespace] The namespace to apply to a CURIE with no prefix which is not mapped to the reserved namespace by the rules given above.
* @param {Object} [options.namespaces] A map of namespace bindings used to map CURIE prefixes to URIs.
* @param {string[]} [options.reserved=['alternate', 'appendix', 'bookmark', 'cite', 'chapter', 'contents', 'copyright',
'first', 'glossary', 'help', 'icon', 'index', 'last', 'license', 'meta', 'next',
'p3pv1', 'prev', 'role', 'section', 'stylesheet', 'subsection', 'start', 'top', 'up']]
A list of local names that will always be mapped to the URI specified by reservedNamespace.
* @param {string} [options.charcase='lower'] Specifies whether the curie's case is altered before it's interpreted. Acceptable values are:
* <dl>
* <dt>lower</dt><dd>Force the CURIE string to lower case.</dd>
* <dt>upper</dt><dd>Force the CURIE string to upper case.</dd>
* <dt>preserve</dt><dd>Preserve the original case of the CURIE. Note that this might not be possible if the CURIE has been taken from an HTML attribute value because of the case conversions performed automatically by browsers. For this reason, it's a good idea to avoid mixed-case CURIEs within RDFa.</dd>
* </dl>
* @returns {jQuery.uri} A new {@link jQuery.uri} object representing the full absolute URI specified by the CURIE.
*/
$.safeCurie = function (safeCurie, options) {
var m = /^\[([^\]]+)\]$/.exec(safeCurie);
return m ? $.curie(m[1], options) : $.uri(safeCurie);
};
/**
* Creates a CURIE string from a URI string.
* @methodOf jQuery
* @param {String} uri The URI string to be converted to a CURIE.
* @param {Object} [options] CURIE parsing options
* @param {string} [options.reservedNamespace='http://www.w3.org/1999/xhtml/vocab#']
* If the input URI starts with this value, the generated CURIE will
* have no namespace prefix and will start with a colon character (:),
* unless the local part of the CURIE is one of the reserved names specified
* by the reservedNames option (see below), in which case the generated
* CURIE will have no namespace prefix and will not start with a colon
* character.
* @param {string} [options.defaultNamespace] If the input URI starts with this value, the generated CURIE will have no namespace prefix and will not start with a colon.
* @param {Object} [options.namespaces] A map of namespace bindings used to map CURIE prefixes to URIs.
* @param {string[]} [options.reserved=['alternate', 'appendix', 'bookmark', 'cite', 'chapter', 'contents', 'copyright',
'first', 'glossary', 'help', 'icon', 'index', 'last', 'license', 'meta', 'next',
'p3pv1', 'prev', 'role', 'section', 'stylesheet', 'subsection', 'start', 'top', 'up']]
A list of local names that will always be mapped to the URI specified by reservedNamespace.
* @param {string} [options.charcase='lower'] Specifies the case normalisation done to the CURIE. Acceptable values are:
* <dl>
* <dt>lower</dt><dd>Normalise the CURIE to lower case.</dd>
* <dt>upper</dt><dd>Normalise the CURIE to upper case.</dd>
* <dt>preserve</dt><dd>Preserve the original case of the CURIE. Note that this might not be possible if the CURIE has been taken from an HTML attribute value because of the case conversions performed automatically by browsers. For this reason, it's a good idea to avoid mixed-case CURIEs within RDFa.</dd>
* </dl>
* @returns {jQuery.uri} A new {@link jQuery.uri} object representing the full absolute URI specified by the CURIE.
*/
$.createCurie = function (uri, options) {
var opts = $.extend({}, $.curie.defaults, options || {}),
ns = opts.namespaces,
curie;
uri = $.uri(uri).toString();
if (opts.reservedNamespace !== undefined &&
uri.substring(0, opts.reservedNamespace.toString().length) === opts.reservedNamespace.toString()) {
curie = uri.substring(opts.reservedNamespace.toString().length);
if ($.inArray(curie, opts.reserved) === -1) {
curie = ':' + curie;
}
} else {
$.each(ns, function (prefix, namespace) {
if (uri.substring(0, namespace.toString().length) === namespace.toString()) {
curie = prefix + ':' + uri.substring(namespace.toString().length);
return null;
}
});
}
if (curie === undefined) {
throw "No Namespace Binding: There's no appropriate namespace binding for generating a CURIE from " + uri;
} else {
return curie;
}
};
/**
* Creates a {@link jQuery.uri} object by parsing the specified
* CURIE string in the context of the namespaces defined by the
* jQuery selection.
* @methodOf jQuery#
* @name jQuery#curie
* @param {String} curie The CURIE string to be parsed
* @param {Object} options The CURIE parsing options.
* See {@link jQuery.curie} for details of the supported options.
* The namespace declarations declared on the current jQuery
* selection (and inherited from any ancestor elements) will automatically
* be included in the options.namespaces property.
* @returns {jQuery.uri}
* @see jQuery.curie
*/
$.fn.curie = function (curie, options) {
var opts = $.extend({}, $.fn.curie.defaults, { namespaces: this.xmlns() }, options || {});
return $.curie(curie, opts);
};
/**
* Creates a {@link jQuery.uri} object by parsing the specified
* safe CURIE string in the context of the namespaces defined by
* the jQuery selection.
*
* @methodOf jQuery#
* @name jQuery#safeCurie
* @param {String} safeCurie The safe CURIE string to be parsed. See {@link jQuery.safeCurie} for details on how safe CURIE strings are processed.
* @param {Object} options The CURIE parsing options.
* See {@link jQuery.safeCurie} for details of the supported options.
* The namespace declarations declared on the current jQuery
* selection (and inherited from any ancestor elements) will automatically
* be included in the options.namespaces property.
* @returns {jQuery.uri}
* @see jQuery.safeCurie
*/
$.fn.safeCurie = function (safeCurie, options) {
var opts = $.extend({}, $.fn.curie.defaults, { namespaces: this.xmlns() }, options || {});
return $.safeCurie(safeCurie, opts);
};
/**
* Creates a CURIE string from a URI string using the namespace
* bindings in the context of the current jQuery selection.
*
* @methodOf jQuery#
* @name jQuery#createCurie
* @param {String|jQuery.uri} uri The URI string to be converted to a CURIE
* @param {Object} options the CURIE parsing options.
* See {@link jQuery.createCurie} for details of the supported options.
* The namespace declarations declared on the current jQuery
* selection (and inherited from any ancestor elements) will automatically
* be included in the options.namespaces property.
* @returns {String}
* @see jQuery.createCurie
*/
$.fn.createCurie = function (uri, options) {
var opts = $.extend({}, $.fn.curie.defaults, { namespaces: this.xmlns() }, options || {});
return $.createCurie(uri, opts);
};
$.fn.curie.defaults = {
reserved: [
'alternate', 'appendix', 'bookmark', 'cite', 'chapter', 'contents', 'copyright',
'first', 'glossary', 'help', 'icon', 'index', 'last', 'license', 'meta', 'next',
'p3pv1', 'prev', 'role', 'section', 'stylesheet', 'subsection', 'start', 'top', 'up'
],
reservedNamespace: 'http://www.w3.org/1999/xhtml/vocab#',
defaultNamespace: undefined,
charcase: 'lower'
};
})(jQuery);