Modify ↓
Opened 14 years ago
Closed 14 years ago
#8187 closed defect (fixed)
htdocs/messages not found
Reported by: | lucid | Owned by: | Jun Omae |
---|---|---|---|
Priority: | normal | Component: | TracDragDropPlugin |
Severity: | normal | Keywords: | |
Cc: | Trac Release: | 0.12 |
Description
With the latest version [9355] I can't get the plugin loaded. It seems to look for a htdocs/messages directory that doesn't exist:
Trac[loader] ERROR: Skipping "tracdragdrop = tracdragdrop.web_ui": Traceback (most recent call last): File "C:\Program Files\Python 2.6.2\lib\site-packages\trac\loader.py", line 70 , in _load_eggs entry.load(require=True) File "C:\Program Files\Python 2.6.2\lib\site-packages\pkg_resources.py", line 1954, in load entry = __import__(self.module_name, globals(),globals(), ['__name__']) File "build\bdist.win32\egg\tracdragdrop\web_ui.py", line 31, in <module> File "build\bdist.win32\egg\tracdragdrop\web_ui.py", line 35, in TracDragDropM odule File "build\bdist.win32\egg\tracdragdrop\web_ui.py", line 28, in _list_message _files WindowsError: (3, 'The system cannot find the path specified'))
The plugin loads when a previous version [9288] is used.
(Is this related to translations? I have no real need for that and so didn't set anything up.)
(I installed the plugin using python setup.py bdist_egg
and copied the egg to the trac environments plugins folder. Are there any other required steps?)
(Runnning Trac 12.1)
Attachments (0)
Note: See
TracTickets for help on using
tickets.
(In [9561]) fixed #8187 - Checks
htdocs/messages
in order to work without babel. Thanks lucid!