Metadata-Version: 2.1
Name: trac-IncludeSource
Version: 0.5.1
Summary: Include (parts of) a source file into the current wiki page
Home-page: http://trac-hacks.org/wiki/IncludeSourcePartialPlugin
Author: Chris Heller
Maintainer: Thomas Tressieres
Maintainer-email: ttressieres@gmail.com
License: BSD
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2
Classifier: Operating System :: OS Independent
Classifier: Framework :: Trac
Description-Content-Type: text/markdown
Requires-Dist: Trac

# Description

IncludeSourcePartialPlugin  allows source files to be partially or wholly
included in other wiki content.

# Samples

Include entire file:
> [[IncludeSource(trunk/proj/file.py)]]

Includes line 20-50 inclusive:
> [[IncludeSource(trunk/proj/file.py, start=20, end=50)]]

Includes last 30 lines of file at revision 1200:
> [[IncludeSource(trunk/proj/file.py, start=-30, rev=1200)]]

Include entire file but formatted plain:
> [[IncludeSource(trunk/proj/file.py, mimetype=text/plain)]]

For docs on installation, configuration, and examples, please refer to
https://trac-hacks.org/wiki/IncludeSourcePartialPlugin


