Changeset 488 for topdoc


Ignore:
Timestamp:
Apr 10, 2011 11:34:11 AM (14 years ago)
Author:
jemian
Message:

PYTHONPATH should be modified in conf.py, relative to its directory

Location:
topdoc/doc
Files:
2 deleted
18 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified topdoc/doc/Makefile

    • Property svn:eol-style set to native
    r458 r488  
    55SPHINXOPTS    =
    66SPHINXBUILD   = sphinx-build
    7 PAPER         =
     7PAPER         = letter
    88BUILDDIR      = build
    99
  • topdoc/doc/make-clean.bat

    • Property svn:eol-style set to native
  • topdoc/doc/make-html.bat

    • Property svn:eol-style set to native
  • topdoc/doc/make.bat

    • Property svn:eol-style set to native
  • TabularUnified topdoc/doc/source/TopDoc/CmdReader.rst

    • Property svn:eol-style set to native
    • Property svn:keywords set to Id
    r458 r488  
    1 
    21--------------------------
    32CmdReader
    43--------------------------
    54
    6 .. automodule:: CmdReader
     5.. automodule:: TopDoc.CmdReader
    76     :synopsis: parses EPICS IOC startup command files
    87     :members:
  • TabularUnified topdoc/doc/source/TopDoc/CommandTable.rst

    • Property svn:eol-style set to native
    • Property svn:keywords set to Id
    r468 r488  
    1 
    21--------------------------
    32CommandTable
    43--------------------------
    54
    6 .. automodule:: CommandTable
     5.. automodule:: TopDoc.CommandTable
    76     :synopsis: global command list
    87     :members:
  • TabularUnified topdoc/doc/source/TopDoc/EpicsDatabase.rst

    • Property svn:eol-style set to native
    • Property svn:keywords set to Id
    r468 r488  
    1 
    21--------------------------
    32EpicsDatabase
    43--------------------------
    54
    6 .. automodule:: EpicsDatabase
     5.. automodule:: TopDoc.EpicsDatabase
    76     :synopsis: reads an EPICS database file
    87     :members:
  • TabularUnified topdoc/doc/source/TopDoc/EpicsTemplate.rst

    • Property svn:eol-style set to native
    • Property svn:keywords set to Id
    r468 r488  
    1 
    21--------------------------
    32EpicsTemplate
    43--------------------------
    54
    6 .. automodule:: EpicsTemplate
     5.. automodule:: TopDoc.EpicsTemplate
    76     :synopsis: reads an EPICS template (substitutions) file
    87     :members:
  • TabularUnified topdoc/doc/source/TopDoc/SymbolTable.rst

    • Property svn:eol-style set to native
    • Property svn:keywords set to Id
    r468 r488  
    1 
    21--------------------------
    32SymbolTable
    43--------------------------
    54
    6 .. automodule:: SymbolTable
     5.. automodule:: TopDoc.SymbolTable
    76     :synopsis: global symbol table
    87     :members:
  • TabularUnified topdoc/doc/source/TopDoc/TokenLog.rst

    • Property svn:eol-style set to native
    • Property svn:keywords set to Id
    r468 r488  
    1 
    21--------------------------
    32TokenLog
    43--------------------------
    54
    6 .. automodule:: TokenLog
     5.. automodule:: TopDoc.TokenLog
    76     :synopsis: Applies Python :mod:`tokenize` analysis to each line of a file.
    87     :members:
  • TabularUnified topdoc/doc/source/TopDoc/TopDoc.rst

    • Property svn:eol-style set to native
    • Property svn:keywords set to Id
    r460 r488  
    1 
    21--------------------------
    32TopDoc
    43--------------------------
    54
    6 .. automodule:: TopDoc
     5.. automodule:: TopDoc.TopDoc
    76     :synopsis: autogenerates documentation of EPICS IOCs
    87     :members:
  • TabularUnified topdoc/doc/source/TopDoc/Trove.rst

    • Property svn:eol-style set to native
    • Property svn:keywords set to Id
    r468 r488  
    1 
    21--------------------------
    32Trove
    43--------------------------
    54
    6 .. automodule:: Trove
     5.. automodule:: TopDoc.Trove
    76     :synopsis: items discovered and collected while analyzing an EPICS IOC's startup files
    87     :members:
  • TabularUnified topdoc/doc/source/TopDoc/utilities.rst

    • Property svn:eol-style set to native
    • Property svn:keywords set to Id
    r468 r488  
    1 
    21--------------------------
    32utilities
    43--------------------------
    54
    6 .. automodule:: utilities
     5.. automodule:: TopDoc.utilities
    76     :synopsis: utility routines
    87     :members:
  • TabularUnified topdoc/doc/source/TopDoc/xmlTools.rst

    • Property svn:eol-style set to native
    • Property svn:keywords set to Id
    r468 r488  
    1 
    21--------------------------
    32xmlTools
    43--------------------------
    54
    6 .. automodule:: xmlTools
     5.. automodule:: TopDoc.xmlTools
    76     :synopsis: Support for XML files
    87     :members:
  • TabularUnified topdoc/doc/source/conf.py

    r471 r488  
    1818# documentation root, use os.path.abspath to make it absolute, like shown here.
    1919#sys.path.insert(0, os.path.abspath('.'))
     20#
     21# relative to directory with conf.py
     22sys.path.insert(0, os.path.abspath('../../src'))
    2023
    2124# -- General configuration -----------------------------------------------------
  • TabularUnified topdoc/doc/source/discover/build_config.rst

    • Property svn:eol-style set to native
    • Property svn:keywords set to Id
    r485 r488  
    1 
    21--------------------------
    32build_config
    43--------------------------
    54
    6 .. automodule:: build_config
    7      :synopsis: builds config.xml for use by :mod:`TopDoc`
     5Writes a `config.xml` file using selected IOCs.
     6All the input for :mod:'build_config' is contained
     7within the source code.  This works for now but should
     8be streamlined with :mod:'vespucci'.
     9
     10.. automodule:: discover.build_config
     11     :synopsis: builds `config.xml for use by :mod:'TopDoc'
    812     :members:
  • TabularUnified topdoc/doc/source/discover/vespucci.rst

    • Property svn:eol-style set to native
    • Property svn:keywords set to Id
    r458 r488  
    1 
    21--------------------------
    32vespucci
     
    1817
    1918
    20 .. automodule:: vespucci
     19.. automodule:: discover.vespucci
    2120     :synopsis: walks XSD file server looking for IOC boot directories
    2221     :members:
  • TabularUnified topdoc/doc/source/index.rst

    • Property svn:eol-style set to native
    • Property svn:keywords set to Id
    r484 r488  
    6060* :ref:`modindex`
    6161* :ref:`search`
    62 
Note: See TracChangeset for help on using the changeset viewer.