diff options
author | Stefan Radomski <radomski@tk.informatik.tu-darmstadt.de> | 2014-12-14 13:20:04 (GMT) |
---|---|---|
committer | Stefan Radomski <radomski@tk.informatik.tu-darmstadt.de> | 2014-12-14 13:20:04 (GMT) |
commit | 330576fcb4d97504e0d6951067b753499d91b541 (patch) | |
tree | 9c583dd3e13ff574295f559a7b92dfe9a1dafd2d /apps | |
parent | 9608216597fd17021d38e80689644beb3c85abb9 (diff) | |
download | uscxml-330576fcb4d97504e0d6951067b753499d91b541.zip uscxml-330576fcb4d97504e0d6951067b753499d91b541.tar.gz uscxml-330576fcb4d97504e0d6951067b753499d91b541.tar.bz2 |
Renamed URI to URL
Some fixes for Xincludes
Diffstat (limited to 'apps')
-rw-r--r-- | apps/uscxml-browser.cpp | 2 | ||||
-rw-r--r-- | apps/uscxml-dot.cpp | 2 | ||||
-rw-r--r-- | apps/uscxml-transform.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/apps/uscxml-browser.cpp b/apps/uscxml-browser.cpp index 359a9a0..87b1b1d 100644 --- a/apps/uscxml-browser.cpp +++ b/apps/uscxml-browser.cpp @@ -190,7 +190,7 @@ int main(int argc, char** argv) { LOG(INFO) << "Processing " << documentURL; try { - Interpreter interpreter = Interpreter::fromURI(documentURL); + Interpreter interpreter = Interpreter::fromURL(documentURL); if (interpreter) { if (options.checking) { diff --git a/apps/uscxml-dot.cpp b/apps/uscxml-dot.cpp index e79c3f9..e72b2d4 100644 --- a/apps/uscxml-dot.cpp +++ b/apps/uscxml-dot.cpp @@ -86,7 +86,7 @@ int main(int argc, char** argv) { try { // current option has to be the interpreter's name URL inputFile(argv[optind]); - Interpreter interpreter = Interpreter::fromURI(inputFile.asString()); + Interpreter interpreter = Interpreter::fromURL(inputFile.asString()); optind++; while(optind < argc) { diff --git a/apps/uscxml-transform.cpp b/apps/uscxml-transform.cpp index 62e9278..3d68242 100644 --- a/apps/uscxml-transform.cpp +++ b/apps/uscxml-transform.cpp @@ -178,7 +178,7 @@ int main(int argc, char** argv) { tmp.toAbsoluteCwd(); interpreter = Interpreter::fromXML(ss.str(), tmp); } else { - interpreter = Interpreter::fromURI(inputFile); + interpreter = Interpreter::fromURL(inputFile); } if (!interpreter) { LOG(ERROR) << "Cannot create interpreter from " << inputFile; |