Changeset 3606
- Timestamp:
- 05/05/08 15:53:17 (7 months ago)
- Files:
-
- includemacro/0.11/includemacro/macros.py (modified) (1 diff)
- includemacro/0.11/setup.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
includemacro/0.11/includemacro/macros.py
r3260 r3606 77 77 out = node.get_content().read() 78 78 if dest_format is None: 79 dest_format = get_mimetype(source_obj, out)79 dest_format = node.content_type or get_mimetype(source_obj, out) 80 80 ctxt = Context.from_request(req, 'source', source_obj) 81 81 # RFE: Add ticket: and comment: sources. <NPK> includemacro/0.11/setup.py
r3416 r3606 6 6 setup( 7 7 name = 'TracIncludeMacro', 8 version = '2.0 ',8 version = '2.0.1', 9 9 packages = ['includemacro'], 10 #package_data = { 'includemacro': ['templates/*.cs', 'htdocs/*.js', 'htdocs/*.css' ] },11 10 12 author = "Noah Kantrowitz",13 author_email = "noah@coderanger.net",14 description = "Include the contents of external URLs and other Trac objects in a wiki page.",15 license = "BSD",16 keywords = "trac plugin wiki include macro",17 url = "http://trac-hacks.org/wiki/IncludeMacro",11 author = 'Noah Kantrowitz', 12 author_email = 'noah@coderanger.net', 13 description = 'Include the contents of external URLs and other Trac objects in a wiki page.', 14 license = 'BSD', 15 keywords = 'trac plugin wiki include macro', 16 url = 'http://trac-hacks.org/wiki/IncludeMacro', 18 17 classifiers = [ 19 18 'Framework :: Trac',
