Hi, I am working on a trac plug-in that I developed a few years ago, I am modifying it on it to put it on my Github account. When I tried the plug-in with the the latest Trac, I get an error. It cannot find the Context. So I went inside
trac.mimeview.api to search for Context, and I realized that it has been removed and maybe replaced with RenderingContext. Just to see if it would work I tried to replace Context with rendering context but that did not work. I was wondering if anyone had a similar problem and if you know how to fix this? context = Context.from_request(self.req, 'wiki') context = RenderingContext.from_request(self.req, 'wiki') Many thanks. -- You received this message because you are subscribed to the Google Groups "Trac Development" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/trac-dev/c0bb2b41-1677-4b0e-9609-6d4538d926f5%40googlegroups.com.
