Re: [Doxygen-users] FILE_PATTERNS: one custom plus all defaults

2015-08-31 Thread Albert
Dear Clayton, The pull request 383 has been integrated in the main branch. Albert On Mon, Aug 24, 2015 at 11:11 AM, Clayton wrote: > Hi Albert, I just built your pull request > > https://github.com/doxygen/doxygen/pull/383 > > from source and tested it on a hundred+ github javascript r

Re: [Doxygen-users] FILE_PATTERNS: one custom plus all defaults

2015-08-24 Thread Clayton
Hi Albert, I just built your pull request https://github.com/doxygen/doxygen/pull/383 from source and tested it on a hundred+ github javascript repositories, it works as expected: lots of javascript output. We would really like to see this patch merged into master. Plus, the current mas

Re: [Doxygen-users] FILE_PATTERNS: one custom plus all defaults

2015-08-18 Thread Clayton
Thanks to both of you. I think to achieve this another configuration parameter may be required, since no other suggestions are falling out. Clayton On Mon, 17 Aug 2015 18:33:04 +0200 Albert wrote: > The += won't work as it will add the *.js to an empty list resulting > in a non empty list and a

Re: [Doxygen-users] FILE_PATTERNS: one custom plus all defaults

2015-08-17 Thread Albert
Bug report is not really needed. I don't think the other places are in conflict. There is no separate javascript parser but it is more or less integrated in the c parser. The g_lang2extMap tells that javascript type of files have to be parsed by the c parser and that the type of language is SrcLan

Re: [Doxygen-users] FILE_PATTERNS: one custom plus all defaults

2015-08-17 Thread Albert
The += won't work as it will add the *.js to an empty list resulting in a non empty list and as a consequence doxygen thinks non empty list so I don't have to apply the defaults. Albert On Sun, Aug 16, 2015 at 8:07 PM, Richard Damon wrote: > On 8/16/15 7:45 AM, Clayton wrote: > > Hi doxygen, >

Re: [Doxygen-users] FILE_PATTERNS: one custom plus all defaults

2015-08-17 Thread Clayton
Thanks for the quick work, Albert. Does this mean a bug report is now no longer needed? (That's quite the list of bugs in Bugzilla) It looks to me like your patch leaves js in. And I am in fact seeing at least two different references in util.cpp, which also might be in conflict: g_lang2extMa

Re: [Doxygen-users] FILE_PATTERNS: one custom plus all defaults

2015-08-16 Thread Richard Damon
On 8/16/15 7:45 AM, Clayton wrote: > Hi doxygen, > > I am looking at the config file and writing to ask if I am missing > something. > > I am using > > FILE_PATTERNS = *.js > FILTER_PATTERNS = *.js=plugins/js2doxy/js2doxy.pl > > to successfully (more or less) process javascript files. H

Re: [Doxygen-users] FILE_PATTERNS: one custom plus all defaults

2015-08-16 Thread Albert
I've just pushed a proposed patch to github (pull request 383) Albert On Sun, Aug 16, 2015 at 4:06 PM, Albert wrote: > The following does not yet solve your problem, but points in the direction > where we have to look to solve the problem: > There is in util.cpp another list which does contain

Re: [Doxygen-users] FILE_PATTERNS: one custom plus all defaults

2015-08-16 Thread Albert
The following does not yet solve your problem, but points in the direction where we have to look to solve the problem: There is in util.cpp another list which does contain .js, looks like a small inconsistency between config.xml, util.cpp and config.l. Please file a bug report to signal this discre

Re: [Doxygen-users] FILE_PATTERNS: one custom plus all defaults

2015-08-16 Thread Clayton
On Sun, 16 Aug 2015 14:05:56 +0200 Stefan Pendl wrote: > Am 16.08.2015 um 13:45 schrieb Clayton: > > Hi doxygen, > > > > I am looking at the config file and writing to ask if I am missing > > something. > > > > I am using > > > > FILE_PATTERNS = *.js > > FILTER_PATTERNS = *.js=plugins/js2

Re: [Doxygen-users] FILE_PATTERNS: one custom plus all defaults

2015-08-16 Thread Stefan Pendl
Am 16.08.2015 um 13:45 schrieb Clayton: > Hi doxygen, > > I am looking at the config file and writing to ask if I am missing > something. > > I am using > > FILE_PATTERNS = *.js > FILTER_PATTERNS = *.js=plugins/js2doxy/js2doxy.pl > From the help file topic "Configuration => Configurat