Search code examples
asp-classicdocumentationdoxygen

Doxygen with classic ASP (VBscript)


Is it possible to use Doxygen on classic-asp-files (written in VBscript)?

I found something called vbfilter.py, but I don't know how to use it. Can somebody please help me?


Solution

  • Finally, i could get it running.

    requirements: python 2.x

    https://code.google.com/p/doxy-filter/source/browse/trunk/vbfilter.py?spec=svn1&r=1 download the vbfilter.py from Basti Grembowietz

    in vbfilter.py modify def filter. you have to add a line for "asp". then save the file in the root directory of the project

    in Doxygen-settings, in the expert/input-area you have to set input_filter to vbfilter.py and the file_patterns to *.asp

    (if you have python 3.x, there is another version, but take care. it's optimized for japanese usage. somewhere in that vbfilter.py codepage is set to CP932 and you have to set it to IS-8859-15 or whatever you need )