summaryrefslogtreecommitdiff
path: root/sandbox/davidg
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/davidg')
-rw-r--r--sandbox/davidg/pysource_reader/en.py31
-rw-r--r--sandbox/davidg/pysource_reader/nodes.py98
2 files changed, 0 insertions, 129 deletions
diff --git a/sandbox/davidg/pysource_reader/en.py b/sandbox/davidg/pysource_reader/en.py
deleted file mode 100644
index 78a383ab3..000000000
--- a/sandbox/davidg/pysource_reader/en.py
+++ /dev/null
@@ -1,31 +0,0 @@
-#! /usr/bin/env python
-
-"""
-:Author: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
-
-"""
-
-interpreted = {
- 'package': nodes.package,
- 'module': nodes.module,
- 'class': nodes.inline_class,
- 'method': nodes.method,
- 'function': nodes.function,
- 'variable': nodes.variable,
- 'parameter': nodes.parameter,
- 'type': nodes.type,
- 'class attribute': nodes.class_attribute,
- 'classatt': nodes.class_attribute,
- 'instance attribute': nodes.instance_attribute,
- 'instanceatt': nodes.instance_attribute,
- 'module attribute': nodes.module_attribute,
- 'moduleatt': nodes.module_attribute,
- 'exception class': nodes.exception_class,
- 'exception': nodes.exception_class,
- 'warning class': nodes.warning_class,
- 'warning': nodes.warning_class,}
-"""Mapping of interpreted text role name to nodes.py class."""
diff --git a/sandbox/davidg/pysource_reader/nodes.py b/sandbox/davidg/pysource_reader/nodes.py
deleted file mode 100644
index 6aae3bdb6..000000000
--- a/sandbox/davidg/pysource_reader/nodes.py
+++ /dev/null
@@ -1,98 +0,0 @@
-#! /usr/bin/env python
-
-"""
-:Author: David Goodger
-:Contact: goodger@users.sourceforge.net
-:Revision: $Revision$
-:Date: $Date$
-:Copyright: This module has been placed in the public domain.
-
-"""
-
-from dps import nodes
-from dps.nodes import Element, TextElement, Structural, Component, Inline
-
-
-# =====================
-# Structural Elements
-# =====================
-
-class package_section(Structural, Element): pass
-class module_section(Structural, Element): pass
-class class_section(Structural, Element): pass
-class method_section(Structural, Element): pass
-class function_section(Structural, Element): pass
-class module_attribute_section(Structural, Element): pass
-class class_attribute_section(Structural, Element): pass
-class instance_attribute_section(Structural, Element): pass
-
-# Structural Support Elements
-# ---------------------------
-
-class inheritance_list(Component, Element): pass
-class parameter_list(Component, Element): pass
-class parameter_item(Component, Element): pass
-class optional_parameters(Component, Element): pass
-class parameter_tuple(Component, Element): pass
-class parameter_default(Component, TextElement): pass
-class initial_value(Component, TextElement): pass
-
-
-# =================
-# Inline Elements
-# =================
-
-class package(Component, Inline, TextElement): pass
-class module(Component, Inline, TextElement): pass
-
-
-class inline_class(Component, Inline, TextElement):
-
- tagname = 'class'
-
-
-class method(Component, Inline, TextElement): pass
-class function(Component, Inline, TextElement): pass
-class variable(Inline, TextElement): pass
-class parameter(Component, Inline, TextElement): pass
-class type(Inline, TextElement): pass
-class class_attribute(Component, Inline, TextElement): pass
-class module_attribute(Component, Inline, TextElement): pass
-class instance_attribute(Component, Inline, TextElement): pass
-class exception_class(Inline, TextElement): pass
-class warning_class(Inline, TextElement): pass
-
-
-class SpecificVisitor(nodes.SpecificVisitor):
-
- """
- """
-
- def visit_class_attribute(self, node, ancestry): pass
- def visit_class_attribute_section(self, node, ancestry): pass
- def visit_class_section(self, node, ancestry): pass
- def visit_exception_class(self, node, ancestry): pass
- def visit_function(self, node, ancestry): pass
- def visit_function_section(self, node, ancestry): pass
- def visit_inheritance_list(self, node, ancestry): pass
- def visit_initial_value(self, node, ancestry): pass
- def visit_inline_class(self, node, ancestry): pass
- def visit_instance_attribute(self, node, ancestry): pass
- def visit_instance_attribute_section(self, node, ancestry): pass
- def visit_method(self, node, ancestry): pass
- def visit_method_section(self, node, ancestry): pass
- def visit_module(self, node, ancestry): pass
- def visit_module_attribute(self, node, ancestry): pass
- def visit_module_attribute_section(self, node, ancestry): pass
- def visit_module_section(self, node, ancestry): pass
- def visit_optional_parameters(self, node, ancestry): pass
- def visit_package(self, node, ancestry): pass
- def visit_package_section(self, node, ancestry): pass
- def visit_parameter(self, node, ancestry): pass
- def visit_parameter_default(self, node, ancestry): pass
- def visit_parameter_item(self, node, ancestry): pass
- def visit_parameter_list(self, node, ancestry): pass
- def visit_parameter_tuple(self, node, ancestry): pass
- def visit_type(self, node, ancestry): pass
- def visit_variable(self, node, ancestry): pass
- def visit_warning_class(self, node, ancestry): pass