diff options
author | goodger <goodger@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2005-04-03 19:53:28 +0000 |
---|---|---|
committer | goodger <goodger@929543f6-e4f2-0310-98a6-ba3bd3dd1d04> | 2005-04-03 19:53:28 +0000 |
commit | deaa2766e465759d6170e365bb5138efc46aeda7 (patch) | |
tree | 786964b62a8275838cc9424422c7d8df61f76aab /docutils/nodes.py | |
parent | 57bf55dd3cd2653736fe9e1b90c2ffab7a5a91d7 (diff) | |
download | docutils-reporter-categories.tar.gz |
removed docutils.utils.Reporter.categories, docutils.utils.ConditionSet, and all references to them, to simplify error reportingreporter-categories
git-svn-id: http://svn.code.sf.net/p/docutils/code/branches/reporter-categories@3163 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
Diffstat (limited to 'docutils/nodes.py')
-rw-r--r-- | docutils/nodes.py | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/docutils/nodes.py b/docutils/nodes.py index d347d9dda..e6bb52fac 100644 --- a/docutils/nodes.py +++ b/docutils/nodes.py @@ -111,8 +111,8 @@ class Node: ``visit`` implementation for each `Node` subclass encountered. """ visitor.document.reporter.debug( - 'calling dispatch_visit for %s' % self.__class__.__name__, - category='nodes.Node.walk') + 'docutils.nodes.Node.walk calling dispatch_visit for %s' + % self.__class__.__name__) try: visitor.dispatch_visit(self) except (SkipChildren, SkipNode): @@ -138,8 +138,8 @@ class Node: """ call_depart = 1 visitor.document.reporter.debug( - 'calling dispatch_visit for %s' % self.__class__.__name__, - category='nodes.Node.walkabout') + 'docutils.nodes.Node.walkabout calling dispatch_visit for %s' + % self.__class__.__name__) try: try: visitor.dispatch_visit(self) @@ -157,8 +157,8 @@ class Node: pass if call_depart: visitor.document.reporter.debug( - 'calling dispatch_departure for %s' % self.__class__.__name__, - category='nodes.Node.walkabout') + 'docutils.nodes.Node.walkabout calling dispatch_departure ' + 'for %s' % self.__class__.__name__) visitor.dispatch_departure(self) def traverse(self, condition=None, @@ -1409,8 +1409,8 @@ class NodeVisitor: node_name = node.__class__.__name__ method = getattr(self, 'visit_' + node_name, self.unknown_visit) self.document.reporter.debug( - 'calling %s for %s' % (method.__name__, node_name), - category='nodes.NodeVisitor.dispatch_visit') + 'docutils.nodes.NodeVisitor.dispatch_visit calling %s for %s' + % (method.__name__, node_name)) return method(node) def dispatch_departure(self, node): @@ -1422,8 +1422,8 @@ class NodeVisitor: node_name = node.__class__.__name__ method = getattr(self, 'depart_' + node_name, self.unknown_departure) self.document.reporter.debug( - 'calling %s for %s' % (method.__name__, node_name), - category='nodes.NodeVisitor.dispatch_departure') + 'docutils.nodes.NodeVisitor.dispatch_departure calling %s for %s' + % (method.__name__, node_name)) return method(node) def unknown_visit(self, node): |