1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- (**
- * Summary: library of generic URI related routines
- * Description: library of generic URI related routines
- * Implements RFC 2396
- *
- * Copy: See Copyright for the status of this software.
- *
- * Author: Daniel Veillard
- *)
- {$IFDEF POINTER}
- xmlURIPtr = ^xmlURI;
- {$ENDIF}
- {$IFDEF TYPE}
- (**
- * xmlURI:
- *
- * A parsed URI reference. This is a struct containing the various fields
- * as described in RFC 2396 but separated for further processing.
- *
- * Note: query is a deprecated field which is incorrectly unescaped.
- * query_raw takes precedence over query if the former is set.
- * See: http://mail.gnome.org/archives/xml/2007-April/thread.html#00127
- *)
- xmlUri = record
- scheme : pchar; (* the URI scheme *)
- opaque : pchar; (* opaque part *)
- authority : pchar; (* the authority part *)
- server : pchar; (* the server part *)
- user : pchar; (* the user part *)
- port : cint; (* the port number *)
- path : pchar; (* the path string *)
- query : pchar; (* the query string (deprecated - use with caution) *)
- fragment : pchar; (* the fragment identifier *)
- cleanup : cint; (* parsing potentially unclean URI *)
- query_raw : pchar; (* the query string (as it appears in the URI) *)
- end;
- {$ENDIF}
- {$IFDEF FUNCTION}
- (*
- * This function is in tree.h:
- * xmlChar * xmlNodeGetBase (xmlDocPtr doc,
- * xmlNodePtr cur);
- *)
- function xmlCreateURI(): xmlURIPtr; EXTDECL; external xml2lib;
- function xmlBuildURI(URI: xmlCharPtr; base: xmlCharPtr): xmlCharPtr; EXTDECL; external xml2lib;
- function xmlBuildRelativeURI(URI: xmlCharPtr; base: xmlCharPtr): xmlCharPtr; EXTDECL; external xml2lib;
- function xmlParseURI(str: pchar): xmlURIPtr; EXTDECL; external xml2lib;
- function xmlParseURI(str: pchar; raw: cint): xmlURIPtr; EXTDECL; external xml2lib;
- function xmlParseURIReference(uri: xmlURIPtr; str: pchar): cint; EXTDECL; external xml2lib;
- function xmlSaveUri(uri: xmlURIPtr): pchar; EXTDECL; external xml2lib;
- procedure xmlPrintURI(stream: PFILE; uri: xmlURIPtr); EXTDECL; external xml2lib;
- function xmlURIEscapeStr(str: xmlCharPtr; list: xmlCharPtr): xmlCharPtr; EXTDECL; external xml2lib;
- function xmlURIUnescapeString(str: pchar; len: cint; target: pchar): xmlCharPtr; EXTDECL; external xml2lib;
- function xmlNormalizeURIPath(path: pchar): cint; EXTDECL; external xml2lib;
- function xmlURIEscape(str: xmlCharPtr): xmlCharPtr; EXTDECL; external xml2lib;
- procedure xmlPrintURI(uri: xmlURIPtr); EXTDECL; external xml2lib;
- function xmlCanonicPath(path: xmlCharPtr): xmlCharPtr; EXTDECL; external xml2lib;
- function xmlPathToURI(path: xmlCharPtr): xmlCharPtr; EXTDECL; external xml2lib;
- {$ENDIF}
|