[Python-checkins] r65491 - doctools/trunk/sphinx/application.py

georg.brandl python-checkins at python.org
Mon Aug 4 17:57:27 CEST 2008


Author: georg.brandl
Date: Mon Aug  4 17:57:26 2008
New Revision: 65491

Log:
Add missing events.


Modified:
   doctools/trunk/sphinx/application.py

Modified: doctools/trunk/sphinx/application.py
==============================================================================
--- doctools/trunk/sphinx/application.py	(original)
+++ doctools/trunk/sphinx/application.py	Mon Aug  4 17:57:26 2008
@@ -48,8 +48,10 @@
 # List of all known core events. Maps name to arguments description.
 events = {
     'builder-inited': '',
-    'doctree-read' : 'the doctree before being pickled',
-    'doctree-resolved' : 'doctree, docname',
+    'doctree-read': 'the doctree before being pickled',
+    'missing-reference': 'env, node, contnode',
+    'doctree-resolved': 'doctree, docname',
+    'env-updated': 'env',
     'html-page-context': 'pagename, context, doctree or None',
 }
 


More information about the Python-checkins mailing list