[svn] commit: r1473 - in /trunk/src/bin/bindctl: TODO bindcmd.py
BIND 10 source code commits
bind10-changes at lists.isc.org
Wed Mar 17 03:26:04 UTC 2010
Author: zhanglikun
Date: Wed Mar 17 03:26:04 2010
New Revision: 1473
Log:
1. Update TODO list.
2. Remove unused variable "CONST_COMMAND_NODE" according Jelte's review.
Modified:
trunk/src/bin/bindctl/TODO
trunk/src/bin/bindctl/bindcmd.py
Modified: trunk/src/bin/bindctl/TODO
==============================================================================
--- trunk/src/bin/bindctl/TODO (original)
+++ trunk/src/bin/bindctl/TODO Wed Mar 17 03:26:04 2010
@@ -15,3 +15,6 @@
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)
Modified: trunk/src/bin/bindctl/bindcmd.py
==============================================================================
--- trunk/src/bin/bindctl/bindcmd.py (original)
+++ trunk/src/bin/bindctl/bindcmd.py Wed Mar 17 03:26:04 2010
@@ -50,15 +50,13 @@
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.
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."""
More information about the bind10-changes
mailing list