add --relative to testURI

Example: testURI --relative --base file:///a/b/c file:///a/x/y

Result: ../x/y
This commit is contained in:
Thomas Holder 2018-11-05 13:53:00 +01:00 committed by Daniel Veillard
parent c7461f6547
commit 25f13e77e6

View File

@ -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++;