Browse Source

1. Update TODO list.
2. Remove unused variable "CONST_COMMAND_NODE" according Jelte's review.

git-svn-id: svn://bind10.isc.org/svn/bind10/trunk@1473 e5f2f494-b856-4b98-b285-d166d9295462

Likun Zhang 15 years ago
parent
commit
3831ebf57b
2 changed files with 4 additions and 3 deletions
  1. 3 0
      src/bin/bindctl/TODO
  2. 1 3
      src/bin/bindctl/bindcmd.py

+ 3 - 0
src/bin/bindctl/TODO

@@ -15,3 +15,6 @@ functions should be updated first.):
             get_param_name_by_position
 5. Understandable error message when cert_file is missing.
 6. Pick location to save default user. Or use the cfgmgr for this.
+   If the default user is saved in file, its password shouldn't be saved in plaintext.
+7. Need to think of what exactly to do with responses received to commands
+   (currently it simply print the map)

+ 1 - 3
src/bin/bindctl/bindcmd.py

@@ -50,7 +50,7 @@ except ImportError:
     my_readline = sys.stding.readline
 
 
-CONST_BINDCTL_HELP = """BindCtl, version 0.1
+CONST_BINDCTL_HELP = """
 usage: <module name> <command name> [param1 = value1 [, param2 = value2]]
 Type Tab character to get the hint of module/command/parameters.
 Type \"help(? h)\" for help on bindctl.
@@ -58,8 +58,6 @@ Type \"<module_name> help\" for help on the specific module.
 Type \"<module_name> <command_name> help\" for help on the specific command.
 \nAvailable module names: """
 
-CONST_COMMAND_NODE = "command"
-
 class BindCmdInterpreter(Cmd):
     """simple bindctl example."""