diff options
Diffstat (limited to 'project2/common/environment.cpp')
-rw-r--r-- | project2/common/environment.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/project2/common/environment.cpp b/project2/common/environment.cpp index e99be54..891f1d9 100644 --- a/project2/common/environment.cpp +++ b/project2/common/environment.cpp @@ -2,7 +2,7 @@ #include "environment.h" #include "optionsSource.h" #include "loggers.h" -#include "xmlObjectLoader.h" +#include "scriptLoader.h" #include <stdio.h> #include <fstream> #include <boost/filesystem/convenience.hpp> @@ -24,12 +24,12 @@ Environment::Environment() : "Log to console with level <arg> (default WARNING)")("c") ("common.datasourceRoot", Options::value(&datasourceRoot, "datasources"), "The folder in which to find datasource definitions") - ("common.namespace", Options::value(&xmlNamespace, "http://project2.randomdan.homeip.net"), + ("common.namespace", Options::value(&scriptNamespace, "http://project2.randomdan.homeip.net"), "The namespace to use for Project2 components and responses") - ("common.namespacePrefix", Options::value(&xmlPrefix, "project2"), + ("common.namespacePrefix", Options::value(&scriptNamespacePrefix, "project2"), "The namespace prefix to use for the Project2 namespace") ("common.sessionTimeOut", Options::value(&sessionTimeOut, 3600), - "The time after which idle sessions are forgetten") + "The time after which idle sessions are forgotten") ; } |