* FeedTracker http://code.google.com/p/feedtracker/ This is a very simple Trac plugin for pulling web feeds into the Trac timeline. It can be useful if you use the Trac timeline as the central hub for following activity on a project where some information can come from external feeds (a project blog, for example). * Requirements: - Trac ( trac.edgewall.org ) - v0.9 or higher - Universal Feed Parser ( feedparser.org ) * Installation: 1. Build the python egg and copy it to the plugins directory of your Trac project > cd feedtracker > python setup.py bdist_egg > cp dist/FeedTracker-0.01-py2.4.egg /var/trac/project/plugins/ 2. Edit the Trac configuration file /var/trac/project/conf/trac.ini adding a 'feeds' section with a nameN and urlN for each feed you want to integrate. For example: [feeds] name1 = LShift Blog url1 = http://www.lshift.net/blog/feed/ name2 = Tom's LJ url2 = http://intellectronica.livejournal.com/data/rss * Limitations: - No caching! Every time you refresh the timeline FeedTracker will request your feeds again. If this is a high-traffic public feed, chances you will be sooner or later banned. - Many others. This is just a little hack. * Licensing: FeedTracker is Free Software and comes with absolutely no warranty. The following licence applies to all source code and documentation: (C) 2006 Tom Berger ( http://intellectronica.net/ ) (C) 2006 LShift ( http://www.lshift.net/ ) ___________________________________________________________________________________________________ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ___________________________________________________________________________________________________