From 9d122f8ac2cdc9312fd2b828c0870817d027b9ab Mon Sep 17 00:00:00 2001 From: Taeyoung Son Date: Thu, 25 Apr 2013 20:06:15 +0900 Subject: [PATCH] [Title] fixed bug in web-template (only windows) - invalid url path. [Desc.] [Issue] Change-Id: Ibb93112922e67a7b3e135ad32b83cd94ee1e4849 --- org.tizen.cli/doc/install/bin_/web-template.bat | 2 +- org.tizen.cli/doc/install/realm/config.json | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/org.tizen.cli/doc/install/bin_/web-template.bat b/org.tizen.cli/doc/install/bin_/web-template.bat index 0669a16..39bf039 100755 --- a/org.tizen.cli/doc/install/bin_/web-template.bat +++ b/org.tizen.cli/doc/install/bin_/web-template.bat @@ -28,7 +28,7 @@ set READ_ARG="n" FOR %%W IN ( %* ) DO ( call:parseArg %%W ) -set OPT=%OPT_TRACE% %OPT_LOGGING% %OPT_PRG_NAME% -Dtizen.template.realm=file://%CLI_HOME%\realm\config.json +set OPT=%OPT_TRACE% %OPT_LOGGING% %OPT_PRG_NAME% -Dtizen.template.realm=file:///%CLI_HOME%\realm\config.json set EXEC=java -cp %CLI_HOME%\conf;%classpath% %OPT% %MAIN% %* IF NOT "" == "%OPT_TRACE%" ( echo Command :%EXEC% ) diff --git a/org.tizen.cli/doc/install/realm/config.json b/org.tizen.cli/doc/install/realm/config.json index 1cbdb78..7b93173 100755 --- a/org.tizen.cli/doc/install/realm/config.json +++ b/org.tizen.cli/doc/install/realm/config.json @@ -1,7 +1,7 @@ { "id": "tizen-standard-realm", - "loader": "file://$${CLI_HOME}/realm/realm.jar", - "template-query-url": "file://$${CLI_HOME}/realm/template/$${id}.jar", + "loader": "file:///$${CLI_HOME}/realm/realm.jar", + "template-query-url": "file:///$${CLI_HOME}/realm/template/$${id}.jar", "search-query-type": "directory", - "search-query-url": "file://$${CLI_HOME}/realm/template" -} \ No newline at end of file + "search-query-url": "file:///$${CLI_HOME}/realm/template" +} -- 2.7.4