diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-03-15 15:42:52 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-03-15 15:42:52 -0400 |
commit | 646392f3672094b90dec02eff1b0d4ac4ebb0742 (patch) | |
tree | 5fb718eb1e31610bbd11e26495af508f260ca46d | |
parent | 06fb2357e446541618cef8beadd2ab659f6c22ca (diff) |
rename register_hook to just hook, for consistency with the perl
-rw-r--r-- | plugins/proxy.py | 2 | ||||
-rwxr-xr-x | plugins/rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/proxy.py b/plugins/proxy.py index 55c552ab2..582010c9a 100644 --- a/plugins/proxy.py +++ b/plugins/proxy.py @@ -151,7 +151,7 @@ class IkiWikiProcedureProxy(object): self._xmlrpc_handler = _IkiWikiExtPluginXMLRPCHandler(self._debug_fn) self._xmlrpc_handler.register_function(self._importme, name='import') - def register_hook(self, type, function): + def hook(self, type, function): self._hooks.append((type, function.__name__)) self._xmlrpc_handler.register_function(function) diff --git a/plugins/rst b/plugins/rst index febc14e97..9e0fb2548 100755 --- a/plugins/rst +++ b/plugins/rst @@ -34,5 +34,5 @@ def debug(s): sys.stderr.flush() proxy = IkiWikiProcedureProxy(__name__, debug_fn=None) -proxy.register_hook('htmlize', rst2html) +proxy.hook('htmlize', rst2html) proxy.run() |