1uri_urn(n) Tcl Uniform Resource Identifier Management uri_urn(n)
2
3
4
5______________________________________________________________________________
6
8 uri_urn - URI utilities, URN scheme
9
11 package require Tcl 8.2
12
13 package require uri::urn ?1.1.2?
14
15 uri::urn::quote url
16
17 uri::urn::unquote url
18
19_________________________________________________________________
20
22 This package provides two commands to quote and unquote the disallowed
23 characters for url using the urn scheme, registers the scheme with the
24 package uri, and provides internal helpers which will be automatically
25 used by the commands uri::split and uri::join of package uri to handle
26 urls using the urn scheme.
27
29 uri::urn::quote url
30 This command quotes the characters disallowed by the urn scheme
31 (per RFC 2141 sec2.2) in the url and returns the modified url as
32 its result.
33
34 uri::urn::unquote url
35 This commands performs the reverse of ::uri::urn::quote. It
36 takes an urn url, removes the quoting from all disallowed char‐
37 acters, and returns the modified urls as its result.
38
40 This document, and the package it describes, will undoubtedly contain
41 bugs and other problems. Please report such in the category uri of the
42 Tcllib SF Trackers [http://sourceforge.net/tracker/?group_id=12883].
43 Please also report any ideas for enhancements you may have for either
44 package and/or documentation.
45
47 rfc 2141, uri, url, urn
48
49
50
51uri 1.1.2 uri_urn(n)