mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
add --relative to testURI
Example: testURI --relative --base file:///a/b/c file:///a/x/y Result: ../x/y
This commit is contained in:
parent
c7461f6547
commit
25f13e77e6
11
testURI.c
11
testURI.c
@ -19,6 +19,7 @@
|
||||
static const char *base = NULL;
|
||||
static int escape = 0;
|
||||
static int debug = 0;
|
||||
static int relative = 0;
|
||||
|
||||
static void handleURI(const char *str) {
|
||||
int ret;
|
||||
@ -56,8 +57,13 @@ static void handleURI(const char *str) {
|
||||
printf("\n");
|
||||
}
|
||||
}
|
||||
} else {
|
||||
if (relative) {
|
||||
res = xmlBuildRelativeURI((xmlChar *)str, (xmlChar *) base);
|
||||
} else {
|
||||
res = xmlBuildURI((xmlChar *)str, (xmlChar *) base);
|
||||
}
|
||||
|
||||
if (res != NULL) {
|
||||
printf("%s\n", (char *) res);
|
||||
}
|
||||
@ -74,6 +80,11 @@ static void handleURI(const char *str) {
|
||||
int main(int argc, char **argv) {
|
||||
int i, arg = 1;
|
||||
|
||||
if ((argc > arg) && (argv[arg] != NULL) &&
|
||||
(!strcmp(argv[arg], "--relative"))) {
|
||||
arg++;
|
||||
relative++;
|
||||
}
|
||||
if ((argc > arg) && (argv[arg] != NULL) &&
|
||||
((!strcmp(argv[arg], "-base")) || (!strcmp(argv[arg], "--base")))) {
|
||||
arg++;
|
||||
|
Loading…
x
Reference in New Issue
Block a user