Modified help messages
authorkh5325.kim <kh5325.kim@samsung.com>
Fri, 26 Jul 2013 12:32:56 +0000 (21:32 +0900)
committerkh5325.kim <kh5325.kim@samsung.com>
Fri, 26 Jul 2013 12:32:56 +0000 (21:32 +0900)
org.tizen.cli/src/org/tizen/cli/exec/LaunchOptionConstants.java
org.tizen.cli/src/org/tizen/cli/exec/WRTLauncher.java
org.tizen.cli/src/org/tizen/cli/exec/sign/Main.java
org.tizen.cli/src/org/tizen/cli/exec/uninstall/Main.java
org.tizen.cli/src/org/tizen/cli/exec/web/build/Main.java
org.tizen.cli/src/org/tizen/cli/exec/wgt/Main.java

index dc0ea89..3c980fc 100644 (file)
@@ -74,7 +74,7 @@ public class LaunchOptionConstants
      * 
      * @see #OPT_WIDGETID
      */
-    public static final String DESC_WIDGETID = "Command is performed of running widget kill in target, application id is user written id in config.xml";
+    public static final String DESC_WIDGETID = "Application id (user-written id in config.xml)";
 
     /**
      * <p>
@@ -92,7 +92,7 @@ public class LaunchOptionConstants
      * 
      * @see #OPT_WIDGETFILE
      */
-    public static final String DESC_WIDGETFILE = "Command is performed of widget file install in target";
+    public static final String DESC_WIDGETFILE = "Widget file (*.wgt)";
 
     /**
      * <p>
@@ -117,7 +117,7 @@ public class LaunchOptionConstants
      * 
      * @see #OPT_WIDGETFILE
      */
-    public static final String DESC_NAME = "Generation project name";
+    public static final String DESC_NAME = "Project name";
 
     /**
      * <p>
@@ -135,7 +135,7 @@ public class LaunchOptionConstants
      * 
      * @see #OPT_WIDGETFILE
      */
-    public static final String DESC_PATH = "Generation project path";
+    public static final String DESC_PATH = "Project path";
 
     
     /**
index b52dd3f..e0f3fba 100755 (executable)
@@ -71,7 +71,7 @@ extends AbstractLauncher
      * 
      * @see #OPT_DEVICE
      */
-    protected static final String DESC_DEVICE = "Command is performed of selected device";
+    protected static final String DESC_DEVICE = "Command to the given device";
 
     /**
      * <p>
@@ -89,7 +89,7 @@ extends AbstractLauncher
      * 
      * @see #OPT_TIME
      */
-    protected static final String DESC_TIME = "Sdb daemon connection and command completion waiting time( sec )";
+    protected static final String DESC_TIME = "Waiting time for sdb daemon connection and command completion (sec)";
 
     /**
      * <p>
index b983889..8b384b2 100644 (file)
@@ -94,7 +94,7 @@ extends AbstractLauncher
      * 
      * @see #OPT_PROFILE
      */
-    protected static final String DESC_PROFILE = "Specify profile name with or without profile file( ex - test, test:/opt/profile.xml )";
+    protected static final String DESC_PROFILE = "Specify profile name with or without profile file. E.g., test or test:/opt/profile.xml.";
 
     /**
      * <p>
index a3c4510..af72507 100644 (file)
@@ -35,6 +35,7 @@ import org.apache.commons.cli.CommandLine;
 import org.apache.commons.cli.OptionBuilder;
 import org.apache.commons.cli.Options;
 import org.tizen.cli.exec.Help;
+import org.tizen.cli.exec.LaunchOptionConstants;
 import org.tizen.cli.exec.WRTLauncher;
 import org.tizen.common.core.command.Executor;
 import org.tizen.common.core.command.Prompter;
@@ -64,7 +65,7 @@ extends WRTLauncher
      * 
      * @see #OPT_WIDGETID
      */
-    protected static final String DESC_WIDGETID = "Command is performed of widget id uninstall in target, widget id is user written id in config.xml";
+    protected static final String DESC_WIDGETID = LaunchOptionConstants.DESC_WIDGETID;
 
     /**
      * Entry point for cli main
index 53651b7..f20656a 100755 (executable)
@@ -87,25 +87,25 @@ extends AbstractLauncher
     // exclude ui framework and use target's original library option
     private static final String OPT_NAME_EXCLUDE_UI_FRAMEWORK = "exclude-uifw";
     private static final String OPT_NAME_EXCLUDE_UI_FRAMEWORK_SHORT = "euf";
-    private static final String OPT_DESC_EXCLUDE_UI_FRAMEWORK = "If you want to use Tizen ui framework in target, use -" + OPT_NAME_EXCLUDE_UI_FRAMEWORK_SHORT + " option.\nOnly for application using Tizen UI Framework.";
+    private static final String OPT_DESC_EXCLUDE_UI_FRAMEWORK = "If you want to use Tizen UI Framework in target, use -" + OPT_NAME_EXCLUDE_UI_FRAMEWORK_SHORT + " option.\nThis option is only for application using Tizen UI Framework.";
 
     // exclude ui framework and use target's minified library option
     private static final String OPT_NAME_EXCLUDE_UI_FRAMEWORK_USEMIN = "exclude-uifw-min";
     private static final String OPT_NAME_EXCLUDE_UI_FRAMEWORK_USEMIN_SHORT = "eufm";
-    private static final String OPT_DESC_EXCLUDE_UI_FRAMEWORK_USEMIN = "If you want to use minified Tizen ui framework in target, use -" + OPT_NAME_EXCLUDE_UI_FRAMEWORK_USEMIN_SHORT + " option.";
+    private static final String OPT_DESC_EXCLUDE_UI_FRAMEWORK_USEMIN = "If you want to use minified Tizen UI Framework in target, use -" + OPT_NAME_EXCLUDE_UI_FRAMEWORK_USEMIN_SHORT + " option.";
 
     // excluding files option
     private static final String OPT_NAME_EXCLUDE = "exclude";
-    private static final String OPT_DESC_EXCLUDE = "Add exclude file pattern. By default, following resources will be excluded.\n.build* , .project , .settings , .sdk_delta.info , *.wgt";
+    private static final String OPT_DESC_EXCLUDE = "Add exclude file pattern. By default, following resources will be excluded:\n.build*, .project, .settings, .sdk_delta.info, *.wgt";
 
     // set output option
     private static final String OPT_NAME_OUTPUT = "output";
-    private static final String OPT_DESC_OUTPUT = "Set output directory for build resources. Default is '.buildResult'";
+    private static final String OPT_DESC_OUTPUT = "Set output directory for build resources. By default, '.buildResult' is used.";
 
     // set reference project option
     private static final String OPT_NAME_REFERENCE_PROJECT = "ref-prj";
     private static final String OPT_NAME_REFERENCE_PROJECT_SHORT = "rp";
-    private static final String OPT_DESC_REFERENCE_PROJECT = "Set reference project.\nThe reference project must be native project. Only for Hybrid application.";
+    private static final String OPT_DESC_REFERENCE_PROJECT = "Set reference project.\nThe reference project must be a Tizen Native project. This option is only for hybrid application.";
 
     // ResourceLayer
     protected static final String RESOURCE_LAYER_START = "start";
index 4372a48..5902116 100644 (file)
@@ -180,7 +180,7 @@ extends AbstractLauncher
                 final Prompter prompter = getPrompter();
 
                 final Option option = prompter.interact(
-                        MessageFormat.format( "''.projet'' file doesn''t exist in ''{0}''\nDo you want to continue [Y/n]? ", baseDir ),
+                        MessageFormat.format( ".project file doesn''t exist in ''{0}''\nDo you want to continue [Y/n]? ", baseDir ),
                         yes,
                         no
                         );