[Trac] Re: TracHours plugin problem ...

2009-02-11 Thread Jeff Hammel

Enable verbose logging and look at the log.  If a trac component is installed 
but doesn't show up in the admin panel, that usually (always?) means there is 
an error that is swallowedbut not so silently, as trac has logging ;)

Jeff

On Tue, Feb 10, 2009 at 05:03:23PM -0800, Jamie @ Sierra wrote:
 
 Hey Guys,
 
 I'm having a little grief trying to get the TracHours plugin running:
 
 Everything appears to be in order and I was able to download and
 install the plugin. It shows up in the plugin folder and entries were
 added to the TRAC.INI but I have yet to see the 'Hours' link on the
 Trac main page.
 
 When I try to reinstall the plugin I receive the following error in
 Trac:
 
 Plugin TracHoursPlugin-0.2.2-py2.5.egg already installed
 
 The TarcHours plugi nalso does not appear in the 'Plugins' list in the
 'Admin' menu.
 
 Could it be that I've stumbled on to some version incompatibility?
 
 We are running:
 
 Trac 0.11.2.1
 Python 2.5.4
 Apache 2.2.11
 
 Thanks in advance for your assistance.
 
 Jamie
  

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-users@googlegroups.com
To unsubscribe from this group, send email to 
trac-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: TracHours plugin problem ...

2009-02-11 Thread Jamie @ Sierra

Thanks Jeff. I did have Trac in debug mode and here is the relevant
entry for TracHours:

Trac[loader] DEBUG: Skipping TracHoursPlugin 0.2.2: (FeedParser
not found)

Any hints as to what to look for relating to FeedParser?

===

On Feb 11, 7:38 am, Jeff Hammel jham...@openplans.org wrote:
 Enable verbose logging and look at the log.  If a trac component is installed 
 but doesn't show up in the admin panel, that usually (always?) means there is 
 an error that is swallowedbut not so silently, as trac has logging ;)

 Jeff



 On Tue, Feb 10, 2009 at 05:03:23PM -0800, Jamie @ Sierra wrote:

  Hey Guys,

  I'm having a little grief trying to get the TracHours plugin running:

  Everything appears to be in order and I was able to download and
  install the plugin. It shows up in the plugin folder and entries were
  added to the TRAC.INI but I have yet to see the 'Hours' link on the
  Trac main page.

  When I try to reinstall the plugin I receive the following error in
  Trac:

  Plugin TracHoursPlugin-0.2.2-py2.5.egg already installed

  The TarcHours plugi nalso does not appear in the 'Plugins' list in the
  'Admin' menu.

  Could it be that I've stumbled on to some version incompatibility?

  We are running:

  Trac 0.11.2.1
  Python 2.5.4
  Apache 2.2.11

  Thanks in advance for your assistance.

  Jamie- Hide quoted text -

 - Show quoted text -
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-users@googlegroups.com
To unsubscribe from this group, send email to 
trac-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: TracHours plugin problem ...

2009-02-11 Thread Jeff Hammel

This is one reason I don't use plugins as eggs.  I suppose I'm not very 
interested in packaging good eggs.

FeedParser is easy_installable:

easy_install FeedParser

If you easy_install TracHours or DL and do `python setup.py {develop|install}` 
it should pull down this requirement automagically.  If you installed TracHours 
using easy_install or `python setup.py` and it still didn't download 
FeedParser, please send me the commands you run and the output, or ticket at 
trac-hacks.org

Jeff

On Wed, Feb 11, 2009 at 10:32:06AM -0800, Jamie @ Sierra wrote:
 
 Thanks Jeff. I did have Trac in debug mode and here is the relevant
 entry for TracHours:
 
 Trac[loader] DEBUG: Skipping TracHoursPlugin 0.2.2: (FeedParser
 not found)
 
 Any hints as to what to look for relating to FeedParser?
 
 ===
 
 On Feb 11, 7:38 am, Jeff Hammel jham...@openplans.org wrote:
  Enable verbose logging and look at the log.  If a trac component is 
  installed but doesn't show up in the admin panel, that usually (always?) 
  means there is an error that is swallowedbut not so silently, as trac 
  has logging ;)
 
  Jeff
 
 
 
  On Tue, Feb 10, 2009 at 05:03:23PM -0800, Jamie @ Sierra wrote:
 
   Hey Guys,
 
   I'm having a little grief trying to get the TracHours plugin running:
 
   Everything appears to be in order and I was able to download and
   install the plugin. It shows up in the plugin folder and entries were
   added to the TRAC.INI but I have yet to see the 'Hours' link on the
   Trac main page.
 
   When I try to reinstall the plugin I receive the following error in
   Trac:
 
   Plugin TracHoursPlugin-0.2.2-py2.5.egg already installed
 
   The TarcHours plugi nalso does not appear in the 'Plugins' list in the
   'Admin' menu.
 
   Could it be that I've stumbled on to some version incompatibility?
 
   We are running:
 
   Trac 0.11.2.1
   Python 2.5.4
   Apache 2.2.11
 
   Thanks in advance for your assistance.
 
   Jamie- Hide quoted text -
 
  - Show quoted text -
  

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-users@googlegroups.com
To unsubscribe from this group, send email to 
trac-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: TracHours plugin problem ...

2009-02-11 Thread Jamie @ Sierra

Resolved. It turns out that the egg that was built did not contain
FeedParser or Python-DateUtil  both of which caused Trac to fail
during the Plugin installation. Thanks to Jeff Hammel who helped guide
me in the right direction.

Resolved by running:

easy_install FeedParser
easy_install Python-DateUtil

Then upgraded Trac envirnoment

trac-admin \path\to\project upgrade



On Feb 11, 11:15 am, Jeff Hammel jham...@openplans.org wrote:
 This is one reason I don't use plugins as eggs.  I suppose I'm not very 
 interested in packaging good eggs.

 FeedParser is easy_installable:

 easy_install FeedParser

 If you easy_install TracHours or DL and do `python setup.py 
 {develop|install}` it should pull down this requirement automagically.  If 
 you installed TracHours using easy_install or `python setup.py` and it still 
 didn't download FeedParser, please send me the commands you run and the 
 output, or ticket at trac-hacks.org

 Jeff



 On Wed, Feb 11, 2009 at 10:32:06AM -0800, Jamie @ Sierra wrote:

  Thanks Jeff. I did have Trac in debug mode and here is the relevant
  entry for TracHours:

  Trac[loader] DEBUG: Skipping TracHoursPlugin 0.2.2: (FeedParser
  not found)

  Any hints as to what to look for relating to FeedParser?

  ===

  On Feb 11, 7:38 am, Jeff Hammel jham...@openplans.org wrote:
   Enable verbose logging and look at the log.  If a trac component is 
   installed but doesn't show up in the admin panel, that usually (always?) 
   means there is an error that is swallowedbut not so silently, as trac 
   has logging ;)

   Jeff

   On Tue, Feb 10, 2009 at 05:03:23PM -0800, Jamie @ Sierra wrote:

Hey Guys,

I'm having a little grief trying to get the TracHours plugin running:

Everything appears to be in order and I was able to download and
install the plugin. It shows up in the plugin folder and entries were
added to the TRAC.INI but I have yet to see the 'Hours' link on the
Trac main page.

When I try to reinstall the plugin I receive the following error in
Trac:

Plugin TracHoursPlugin-0.2.2-py2.5.egg already installed

The TarcHours plugi nalso does not appear in the 'Plugins' list in the
'Admin' menu.

Could it be that I've stumbled on to some version incompatibility?

We are running:

Trac 0.11.2.1
Python 2.5.4
Apache 2.2.11

Thanks in advance for your assistance.

Jamie- Hide quoted text -

   - Show quoted text -- Hide quoted text -

 - Show quoted text -
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups Trac 
Users group.
To post to this group, send email to trac-users@googlegroups.com
To unsubscribe from this group, send email to 
trac-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---