"forward",\r
"uninstall",\r
"install",\r
- "shell",\r
+ //"shell",\r
"disconnect",\r
"connect",\r
"devices"\r
};\r
public final static String SHOW_COMMAND = "show";\r
- public final static String SYSTEM_COMMAND = "system";\r
+ // TODO: Currently disabled by stdin processing cf.)) sdb shell\r
+ //public final static String SYSTEM_COMMAND = "system";\r
public final static String TIME_COMMAND = "time";\r
\r
public final static int QUERY_COMMAND_MAX_ANSWERS = 5;\r
.addCommand(createCommand("@<project> create", "Create the project by the active perspective").setProperty("projectExists", false))\r
.addCommand(createCommand("@<project> create --uifw", "Create the project with UI Framework").setProperty("projectExists", false))\r
.addCommand(createCommand("@<project> tizen", "View the project [Tizen Settings] properties").setProperty("projectExists", true));\r
- createCommandGroup(SYSTEM_COMMAND)\r
- .addCommand(createCommand("#<cmd>", "Run system command"));\r
+ // cf.)) org.tizen.common.ui.commandbar.command.launcher.CommandLauncher.executeImpl(CommandLine, String, String[])\r
+ //createCommandGroup(SYSTEM_COMMAND)\r
+ //.addCommand(createCommand("#<cmd>", "Run system command"));\r
createCommandGroup(QUERY_COMMAND)\r
.addCommand(createCommand("query <query>", "View the instant coding answers from http://stackoverflow.com"))\r
.addCommand(createCommand("query --tizen <query>", "View the instant answers from https://developer.tizen.org"));\r
}
private boolean check(String[] opts) {
- // "sdb shell" can cause IDE hang by its interactive shell
- if (opts != null && opts.length == 1 && "shell".equals(opts[0])) {
+ // "sdb shell" or "sdb shell su" can cause IDE hang by its interactive shell
+ if (opts != null && opts.length >= 1 && "shell".equals(opts[0])) {
ConsoleManager console = new ConsoleManager(CONSOLE_NAME, true);
final MessageConsoleStream stream = console.getMessageConsoleStream();
try {
- stream.println("Interactive command 'sdb shell' is not supported. Command Bar just supports direct command like 'sdb shell ls'.");
+ stream.println("Interactive command 'sdb shell' is not supported.");
return false;
} finally {
IOUtil.tryClose(stream);
else if (args[0].startsWith(Commands.IDENTIFIER_SYSTEM_COMMAND)) {\r
final String systemCmd = args[0].substring(Commands.IDENTIFIER_SYSTEM_COMMAND.length());\r
args = (String[]) ArrayUtil.prepend(ArrayUtil.remove(args, 0), systemCmd);\r
- command = new SystemCommand();\r
+ // TODO: Currently disabled by stdin processing cf.)) #time\r
+ //command = new SystemCommand();\r
+ command = null;\r
}\r
}\r
}\r
+* 2.1.134
+- Disabled Command Bar "sdb shell" and system command
+- Added method that removes resource information file for RDS on target
+== kh5325.kim <kh5325.kim@samsung.com> 2014-01-15
* 2.1.133
- Fixed not to run interactive command 'sdb shell' (it can cause an IDE hang)
== kh5325.kim <kh5325.kim@samsung.com> 2013-12-31
-Version:2.1.133
+Version:2.1.134
Source:common-eplugin
Maintainer:kangho kim <kh5325.kim@samsung.com>, yoonki park <yoonki.park@samsung.com>, hyunsik non <hyunsik.noh@samsung.com>, taeyoung son <taeyoung2.son@samsung.com>, gune Kim <gune.kim@samsung.com>, ho namkoong <ho.namkoong@samsung.com>, hyeongseok heo <hyeong-seok.heo@samsung.com>, gyeongseok seo <gyeongseok.seo@samsung.com>, jihoon song <jihoon80.song@samsung.com>, changhyun lee <changhyun1.lee@samsung.com>, bonyong lee <bonyong.lee@samsung.com>, shingil kang <shingil.kang@samsung.com>