Modify

Opened 16 years ago

Closed 13 years ago

#3428 closed defect (fixed)

No macro or processor named 'WikiInclude' found

Reported by: risto.kankkunen@… Owned by: Ryan J Ollos
Priority: normal Component: WikiIncludePlugin
Severity: blocker Keywords:
Cc: Trac Release: 0.11

Description

I get the error message

Error: Failed to load processor WikiInclude
No macro or processor named 'WikiInclude' found

when trying to uses the latest SVN version of WikiIncludePlugin with Trac 0.11.

Attachments (0)

Change History (4)

comment:1 Changed 16 years ago by risto.kankkunen@…

It seems that the plugin was loaded but Trac was not using it at all. I got it working by making the following change to setup.py:

  • setup.py

     
    33PACKAGE = 'WikiInclude'
    44VERSION = '0.1'
    55
    6 setup(name=PACKAGE, version=VERSION, packages=['wikiinclude'])
     6setup(
     7    name=PACKAGE,
     8    version=VERSION,
     9    packages=['wikiinclude'],
     10
     11    entry_points = {
     12        'trac.plugins': [
     13            'wikiinclude.macros = wikiinclude',
     14        ]
     15    }
     16)

comment:2 Changed 13 years ago by Tonin

I confirm this patch work as of Trac 0.11.7 and WikiIncludePlugin 0.2.

comment:3 Changed 13 years ago by Ryan J Ollos

Owner: changed from yu-ji to Ryan J Ollos
Status: newassigned

Looks reasonable. I'll try to commit this to the repository tomorrow.

comment:4 Changed 13 years ago by Ryan J Ollos

Resolution: fixed
Status: assignedclosed

(In [9581]) Add 0.11 version to repository, previously attached to wiki page, and patch setup.py. Fixes #3428.

Modify Ticket

Change Properties
Set your email in Preferences
Action
as closed The owner will remain Ryan J Ollos.
The resolution will be deleted. Next status will be 'reopened'.

Add Comment


E-mail address and name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.