Changes between Version 28 and Version 29 of PyDocPlugin


Ignore:
Timestamp:
Dec 9, 2016, 10:05:12 PM (7 years ago)
Author:
figaro
Comment:

Moved example to functional description

Legend:

Unmodified
Added
Removed
Modified
  • PyDocPlugin

    v28 v29  
    11[[PageOutline(2-5,Contents,pullout)]]
    22
    3 = Python documentation plugin
     3= Generate Python documentation using pydoc
    44
    55== Description
     
    88
    99It was originally written for Trac 0.9, but there's a fully 0.10 compatible version, as well as a Genshi version for Trac 0.11dev.
     10
     11Its usage is as follows:
     12
     13Use `pydoc:trac` to view the Python documentation for Trac.
     14
     15Use `[[pydoc(os.path.isdir)]]` to inline the documentation for `os.path.isdir()`.
    1016
    1117=== Alternatives to `pydoc`
     
    8692
    8793Added `show_private` configuration setting for `[pydoc]`.
    88 The Python private documentation can now be displayed for the modules that are found in this space separated list of module patterns. For example, in order to show the private documentation for Trac and the WebAdmin plugin:
     94The Python private documentation can now be displayed for the modules that are found in this space separated list of module patterns. For example, in order to show the private documentation for Trac and the web administration panel:
    8995
    9096{{{#!ini
     
    9298show_private = trac.*  webadmin.*
    9399}}}
    94 
    95 == Example
    96 
    97 Use `pydoc:trac` to view the Python documentation for Trac.
    98 
    99 Use `[[pydoc(os.path.isdir)]]` to inline the documentation for `os.path.isdir()`.
    100100
    101101== Recent Changes