Re: Reviewboard not detecting custom pygments

2018-06-20 Thread Christian Hammond
How are you registering that lexer? I don’t see how Review Board would know about it if it’s just in its own standalone package. Christian On Wed, Jun 20, 2018 at 16:48 manoj m wrote: > 1. I'm trying to install a pygments file for a custom file type > 2. Its installed under >

Re: Reviewboard not detecting custom pygments

2018-06-20 Thread manoj m
1. I'm trying to install a pygments file for a custom file type 2. Its installed under /usr/lib/python2.7/site-pacakges/customPygment/__init__.py with following content: class customLexer( CppLexer ): name = "custom files" aliases = [ "custom" ] filenames = [ '*.custom' ] That's

Re: Reviewboard not detecting custom pygments

2018-06-20 Thread Christian Hammond
Hi, I’ll need to know more about what you’re trying to do and what changes you’ve made, and how you’ve installed the custom one. Can you provide more detail about this? Christian On Wed, Jun 20, 2018 at 11:28 manoj m wrote: > Any pointers on debugging this would help :) > > > On Friday, 8

Re: Reviewboard not detecting custom pygments

2018-06-20 Thread manoj m
Any pointers on debugging this would help :) On Friday, 8 June 2018 16:55:29 UTC-7, manoj m wrote: > > Hello, > > I’m running reviewboard 2.5.9 with a custom pygment installed. > > Following command produce correct syntax highlighted html output but same > file in Reviewboard fails to

Reviewboard not detecting custom pygments

2018-06-08 Thread manoj m
Hello, I’m running reviewboard 2.5.9 with a custom pygment installed. Following command produce correct syntax highlighted html output but same file in Reviewboard fails to highlight properly http://pygments.org/docs/quickstart/ pygmentize -f html -O full -o test.html test.custom Is