[Trac] newbie installing trac on windows 2012 server error in setup.py

2013-08-09 Thread russh
I'm really excited to get trac up and running - have bumbled through to the point that I'm actually installing trac using easy_install Trac==1.0, but this dies after a while complaining about a syntax error in setup.py. The exact error is: File c:...

Re: [Trac] newbie installing trac on windows 2012 server error in setup.py

2013-08-09 Thread Peter Suter
You seem to be using Python 3.3, but Trac 1.0 requires Python 2.5, 2.6 or 2.7. See http://trac.edgewall.org/wiki/TracInstall#MandatoryDependencies -- Peter On Fri, Aug 9, 2013 at 2:48 AM, ru...@doublejoy.com wrote: I'm really excited to get trac up and running - have bumbled through to the

[Trac] TracHours plugin works fine except for TracHoursRoadmapFilter

2013-08-09 Thread Jader Meros
Hi all, After installing TracHoursPlugin on my BitNami Trac Stack server all functionality from trachours plugin is available except for TracHoursRoadmapFilter (although enabled on the plugins page). When accessing the roadmap or a specific milestone page, no information regarding the

Re: [Trac] newbie installing trac on windows 2012 server error in setup.py

2013-08-09 Thread russh
Thx Peter. The devil really *is* in the details eh? r On Friday, August 9, 2013 3:28:22 AM UTC-7, Peter Suter wrote: You seem to be using Python 3.3, but Trac 1.0 requires Python 2.5, 2.6 or 2.7. See http://trac.edgewall.org/wiki/TracInstall#MandatoryDependencies -- Peter On Fri,

Re: [Trac] newbie installing trac on windows 2012 server error in setup.py

2013-08-09 Thread RjOllos
On Friday, August 9, 2013 3:28:22 AM UTC-7, Peter Suter wrote: You seem to be using Python 3.3, but Trac 1.0 requires Python 2.5, 2.6 or 2.7. See http://trac.edgewall.org/wiki/TracInstall#MandatoryDependencies -- Peter Do you know of a good way that we can fix that print statement to

[Trac] Re: TracHours plugin works fine except for TracHoursRoadmapFilter

2013-08-09 Thread RjOllos
On Friday, August 9, 2013 7:24:47 AM UTC-7, Jader Meros wrote: Hi all, After installing TracHoursPlugin on my BitNami Trac Stack server all functionality from trachours plugin is available except for TracHoursRoadmapFilter (although enabled on the plugins page). When accessing the roadmap

Re: [Trac] Re: TracHours plugin works fine except for TracHoursRoadmapFilter

2013-08-09 Thread Jader Meros
Yes, the sever is running Trac 1.0. The ticket is opened: https://trac-hacks.org/ticket/11275 Thanks, Jader On Fri, Aug 9, 2013 at 2:46 PM, RjOllos rjol...@gmail.com wrote: On Friday, August 9, 2013 7:24:47 AM UTC-7, Jader Meros wrote: Hi all, After installing TracHoursPlugin on my

[Trac] [ANN] TracGViz 1.4.2

2013-08-09 Thread Olemis Lang
Hi! After a long time of low activity I'm pleased to announce the release of version 1.4.2 of TracGViz plugin [1]_ . It offers integration of Trac and Apacheā„¢ Bloodhound with Google Charts API, amongst other features. It's available for download from PyPI [2]_ and sourceforge.net [8]_ . The

Re: [Trac] newbie installing trac on windows 2012 server error in setup.py

2013-08-09 Thread Peter Suter
On 09.08.2013 18:15, RjOllos wrote: Do you know of a good way that we can fix that print statement to also print correctly in Python 3.x? from __future__ import print_function is not available until Python 2.6. How about?: try: print Trac requires Python %d.%d or later % min_python