Changeset 4140

Show
Ignore:
Timestamp:
08/14/08 09:23:38 (3 months ago)
Author:
oneirist
Message:

Changed content-type and xml-version, and added a BSD license.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • detailedrssfeedplugin/ReportToDetailedRSS/ReportToDetailedRSS.py

    r4134 r4140  
    3838        if rmodule.match_request(req) and 'id' in req.args and req.args.get('action', 'view') == 'view': 
    3939            add_link(req, 'alternate', '?format=rss&detailed=true' , _('Detailed RSS Feed'), 
    40                 'application/rss+xml', 'rss') 
     40                'application/xhtml+xml', 'rss') 
    4141        return handler 
    4242         
  • detailedrssfeedplugin/ReportToDetailedRSS/templates/detailedrss.rss

    r4134 r4140  
    1 <?xml version="1.1"?> 
     1<?xml version="1.0"?> 
    22<rss version="2.0" xmlns:py="http://genshi.edgewall.org/" 
    33                   xmlns:xi="http://www.w3.org/2001/XInclude"> 
  • detailedrssfeedplugin/setup.py

    r4114 r4140  
     1# Copyright (C) 2003-2008 Fetch Softworks LLC 
     2# All rights reserved. 
     3# 
     4# This software is licensed as described in the file license.txt, which 
     5# you should have received as part of this distribution. 
     6 
     7 
    18from setuptools import find_packages, setup 
    29 
    3 # name can be any name.  This name will be used to create .egg file. 
    4 # name that is used in packages is the one that is used in the trac.ini file. 
    5 # use package name as entry_points 
    610setup( 
    711    name='ReportToDetailedRSS', version='1.0',