Contents
Display the text of an attachment
Description
This macro embeds the contents of an attachment in a wiki-formatted text, for example a wiki page or a ticket. The text of the attachment is syntax-highlighted according to its MIME type. Currently only attachments of mime types starting with text/
are accepted.
To include the attachment named attachment.txt
of the MyPage
wiki page:
[[IncludeAttachment(wiki:MyPage:attachment.txt)]]
To include a source file from a ticket attachment:
[[IncludeAttachment(ticket:42:somefile.c)]]
The user must have the ATTACHMENT_VIEW
permission on the attachment to be able to include it using this macro.
Bugs/Feature Requests
Existing bugs and feature requests for IncludeAttachmentMacro are here.
If you have any issues, create a new ticket.
defect |
1 / 1 |
---|
Download
Download the zipped source from here.
Source
You can check out IncludeAttachmentMacro from here using Subversion, or browse the source with Trac.
Installation
General instructions on installing Trac plugins can be found on the TracPlugins page.
Change to the directory where you unpacked or checked out the sources and generate the .egg file:
$ cd includeattachmentmacro/trunk
$ python setup.py bdist_egg
Copy the .egg file to the plugins
directory of your Trac environment:
$ cp dist/IncludeAttachment-0.1-py2.7.egg /path/to/trac/env/plugins
Enable the plugin in the trac configuration file /path/to/trac/env/conf/trac.ini
:
[components] includeattachment.* = enabled
Restart your web server to finish the installation of the macro.
Recent Changes