| /sfw/usr/src/lib/logilab-common/logilab-common-0.40.0/doc/ |
| makefile | 1 all: epydoc 3 epydoc: 4 #epydoc -o apidoc --html -v --graph all --no-private --exclude="__pkginfo__" --exclude="setup" -n "Logilab's common library" ../ 6 epydoc -o apidoc --html -v --no-private --exclude="__pkginfo__" --exclude="setup" -n "Logilab's common library" ../
|
| /sfw/usr/src/cmd/epydoc/epydoc-3.0.1/scripts/ |
| epydocgui | 3 # Call the graphical interface for Epydoc. 6 from epydoc.gui import gui
|
| epydoc | 3 # Call the command line interface for Epydoc. 6 # Make sure that we don't get confused between an epydoc.py script and 7 # the real epydoc package. 9 if os.path.exists(os.path.join(sys.path[0], 'epydoc.py')): 12 from epydoc.cli import cli
|
| epydoc.py | 3 # Call the command line interface for Epydoc. 7 # confused about the difference between this epydoc module, and the 8 # real epydoc package. So remove sys.path[0], which contains the 15 from epydoc.cli import cli
|
| epydoc.pyw | 3 # Call the graphical interface for Epydoc. 7 # confused about the difference between this epydoc module, and the 8 # real epydoc package. So sys.path[0], which contains the directory 15 from epydoc.gui import gui
|
| apirst2html.py | 12 .. _Epydoc: http://epydoc.sourceforge.net/ 28 # confused about the difference between the ``epydoc.py`` script, and the 29 # real ``epydoc`` package. So remove ``sys.path[0]``, which contains the 35 import epydoc.docwriter.xlink as xlink
|
| /sfw/usr/src/pkgdefs/SUNWepydoc/ |
| prototype_com | 51 f none usr/bin/epydoc 0555 root bin 57 d none usr/lib/python2.4/site-packages/epydoc 0755 root bin 58 f none usr/lib/python2.4/site-packages/epydoc/__init__.py 0444 root bin 59 f none usr/lib/python2.4/site-packages/epydoc/apidoc.py 0444 root bin 60 f none usr/lib/python2.4/site-packages/epydoc/checker.py 0444 root bin 61 f none usr/lib/python2.4/site-packages/epydoc/cli.py 0444 root bin 62 f none usr/lib/python2.4/site-packages/epydoc/compat.py 0444 root bin 63 f none usr/lib/python2.4/site-packages/epydoc/docbuilder.py 0444 root bin 64 f none usr/lib/python2.4/site-packages/epydoc/docintrospecter.py 0444 root bin 65 f none usr/lib/python2.4/site-packages/epydoc/docparser.py 0444 root bi [all...] |
| /sfw/usr/src/cmd/epydoc/epydoc-3.0.1/ |
| setup.py | 10 import re, sys, epydoc 12 VERSION = str(epydoc.__version__) 13 (AUTHOR, EMAIL) = re.match('^(.*?)\s*<(.*)>$', epydoc.__author__).groups() 14 URL = epydoc.__url__ 15 LICENSE = epydoc.__license__ 18 SCRIPTS = ['scripts/epydoc.pyw', 'scripts/epydoc.py'] 20 SCRIPTS = ['scripts/epydoc', 'scripts/epydocgui'] 24 setup(name="epydoc", 32 packages=['epydoc', 'epydoc.markup', 'epydoc.test', 'epydoc.docwriter'] [all...] |
| README.txt | 2 ### Epydoc ### 6 ### URL: <http://epydoc.sourceforge.net> ### 12 Epydoc is a tool for generating API documentation for Python 20 Documentation for epydoc, including installation and usage 22 language, is available on the epydoc homepage: 24 <http://epydoc.sourceforge.net/> 31 To install epydoc, use make: 33 [user epydoc-3.0]$ su 35 [root epydoc-3.0]# make install 36 [root epydoc-3.0]# make installdoc [all...] |
| Makefile | 2 ## epydoc Makefile 25 @echo " make install -- Install epydoc" 26 @echo " make installdocs -- Install the documentation for epydoc" 42 cp -r doc ${DOC}/epydoc/ 54 rm -f *.pyc epydoc/*.pyc epydoc/*/*.pyc 55 rm -f *.pyo epydoc/*.pyo epydoc/*/*.pyo
|
| /sfw/usr/src/cmd/epydoc/ |
| install-sfw | 45 _install S scripts/epydoc ${BINDIR}/epydoc 555 49 for i in `find epydoc -type f` 57 _install N doc/${i} ${SHAREDIR}/doc/epydoc/${i} 444 61 _install M man/epydoc.1 ${MAN1DIR}/epydoc.1 444
|
| /sfw/usr/src/cmd/epydoc/epydoc-3.0.1/epydoc/ |
| __init__.py | 0 # epydoc 5 # URL: <http://epydoc.sf.net> 10 Automatic Python reference documentation generator. Epydoc processes 12 in the form of HTML pages. Epydoc can be used via a command-line 13 interface (`epydoc.cli`) and a graphical interface (`epydoc.gui`). 52 .. digraph:: Overview of epydoc's architecture 53 :caption: The boxes represent steps in epydoc's processing chain. 137 l3 -> l4 [label=" epydoc.\\l docbuilder.\\l build_doc_index()", 139 l1 -> l2 [label=" epydoc.\\l cli()", href="<cli>" [all...] |
| cli.py | 0 # epydoc -- Command line interface 5 # URL: <http://epydoc.sf.net> 10 Command-line interface for epydoc. Abbreviated Usage:: 12 epydoc [options] NAMES... 20 -V, --version Print the version of epydoc. 23 Run \"epydoc --help\" for a complete option list. See the epydoc(1) 40 [epydoc] 70 import epydoc 71 from epydoc import lo [all...] |
| gui.py | 3 # objdoc: epydoc command-line interface 11 Graphical interface to epydoc. This interface might be useful for 22 FILE.prj An epydoc GUI project file. 24 -V, --version Print the version of epydoc. 144 from epydoc import log 145 from epydoc.util import wordwrap 215 from epydoc.docwriter.html import HTMLWriter 216 from epydoc.docbuilder import build_doc_index 217 import epydoc.docstringparser 221 epydoc.docstringparser.DEFAULT_DOCFORMAT = docforma [all...] |
| docstringparser.py | 0 # epydoc -- Docstring processing 5 # URL: <http://epydoc.sf.net> 33 from epydoc import markup 34 from epydoc.markup import epytext 35 from epydoc.apidoc import * 36 from epydoc.docintrospecter import introspect_docstring_lineno 37 from epydoc.util import py_src_filename 38 from epydoc import log 39 import epydoc.docparser 100 #: A list of the standard simple fields accepted by epydoc. Thi [all...] |
| apidoc.py | 0 # epydoc -- API Documentation Classes 5 # URL: <http://epydoc.sf.net> 42 from epydoc import log 43 import epydoc 45 from epydoc.compat import * # Backwards compatibility 46 from epydoc.util import decode_with_backslashreplace, py_src_filename 47 import epydoc.markup.pyval_repr 59 >>> name = DottedName('epydoc', 'api_doc', 'DottedName') 61 epydoc.apidoc.DottedName 140 >>> print DottedName('epydoc', 'api_doc', DottedName' [all...] |
| /sfw/usr/src/cmd/epydoc/epydoc-3.0.1/epydoc/markup/ |
| __init__.py | 2 # epydoc package file 24 C{epydoc.markup} package: it takes a docstring and the name of a 31 the documentation that epydoc generates. C{DocstringLinker}s are 59 from epydoc import log 60 from epydoc.util import plaintext_to_html, plaintext_to_latex 61 import epydoc 62 from epydoc.compat import * 81 'restructuredtext': 'epydoc.markup.restructuredtext', 82 'epytext': 'epydoc.markup.epytext', 83 'plaintext': 'epydoc.markup.plaintext' [all...] |
| plaintext.py | 15 from epydoc.markup import * 16 from epydoc.util import plaintext_to_html, plaintext_to_latex
|
| pyval_repr.py | 0 # epydoc -- Marked-up Representations for Python Values 5 # URL: <http://epydoc.sf.net> 35 import epydoc.apidoc 36 from epydoc.util import decode_with_backslashreplace 37 from epydoc.util import plaintext_to_html, plaintext_to_latex 38 from epydoc.compat import * 41 from epydoc.markup.epytext import Element, ParsedEpytextDocstring 146 UNKNOWN = epydoc.apidoc.UNKNOWN
|
| restructuredtext.py | 10 Epydoc parser for ReStructuredText strings. ReStructuredText is the 87 from epydoc.compat import * # Backwards compatibility 88 from epydoc.markup import * 89 from epydoc.apidoc import ModuleDoc, ClassDoc 90 from epydoc.docwriter.dotgraph import * 91 from epydoc.docwriter.xlink import ApiLinkReader 92 from epydoc.markup.doctest import doctest_to_html, doctest_to_latex, \ 96 #: recognized by epydoc; and whose values are the corresponding epydoc 140 shave a couple seconds off of epydoc's run time, since docutil [all...] |
| javadoc.py | 10 Epydoc parser for U{Javadoc<http://java.sun.com/j2se/javadoc/>} 16 - X{Javadoc block tags} correspond to Epydoc fields. They are 25 epydoc uses them for crossreference links between documentation. 30 Epydoc supports all Javadoc tags, I{except}: 41 @warning: Epydoc only supports HTML output for Javadoc docstrings. 48 from epydoc.markup import * 137 # Special processing for @see fields, since Epydoc
|
| /sfw/usr/src/cmd/epydoc/epydoc-3.0.1/epydoc/test/ |
| util.py | 2 # epydoc -- Utility functions used by regression tests (*.doctest) 15 from epydoc.docbuilder import build_doc, build_doc_index 16 from epydoc.docparser import parse_docs 17 from epydoc.docintrospecter import introspect_docs 18 from epydoc.apidoc import ClassDoc, RoutineDoc 19 from epydoc.markup import ParsedDocstring 20 from epydoc.docwriter.html import HTMLWriter 132 from epydoc import log
|
| __init__.py | 0 # epydoc -- Regression testing 5 # URL: <http://epydoc.sf.net> 14 import unittest, doctest, epydoc, os, os.path, re, sys 51 epydoc.DEBUG = True
|
| /sfw/usr/src/cmd/epydoc/epydoc-3.0.1/epydoc/docwriter/ |
| latex.py | 2 # epydoc.py: epydoc LaTeX output generator 10 The LaTeX output generator for epydoc. The main interface provided by 19 from epydoc.apidoc import * 20 from epydoc.compat import * 21 import epydoc 22 from epydoc import log 23 from epydoc import markup 24 from epydoc.util import plaintext_to_latex 25 import epydoc.marku [all...] |
| html_colorize.py | 2 # epydoc.html: HTML colorizers 17 from epydoc import log 18 from epydoc.util import py_src_filename 19 from epydoc.apidoc import * [all...] |