# HG changeset patch
# User Peter Kovacs <kpeter@inf.elte.hu>
# Date 1258073440 -3600
# Node ID c06eacc1f28e7460423386a763ce55ac49708ebc
# Parent 1a7fe3bef5144989cc90fe53f4f0a23337fc493f
Modify the header of scripts/bib2dox.py (#184)
diff --git a/scripts/bib2dox.py b/scripts/bib2dox.py
a
|
b
|
|
1 | | #!/usr/bin/env /usr/local/Python/bin/python2.1 |
| 1 | #! /usr/bin/env python |
| 2 | # |
| 3 | # BibTeX to Doxygen converter |
| 4 | # Usage: python bib2dox.py bibfile.bib > bibfile.dox |
| 5 | # |
| 6 | # This file is a part of LEMON, a generic C++ optimization library. |
| 7 | # |
| 8 | # This code is the modification of the BibTeX to XML converter |
| 9 | # by Vidar Bronken Gundersen et al. |
| 10 | # See the original copyright notices below. |
| 11 | |
2 | 12 | """ |
3 | | BibTeX to Doxygen converter |
4 | | Usage: python bib2dox.py bibfile.bib > bibfile.dox |
5 | | |
6 | | This code is the modification of the BibTeX to XML converter |
7 | | by Vidar Bronken Gundersen et al. See the original copyright notices below. |
8 | | |
9 | | ********************************************************************** |
10 | | |
11 | 13 | Decoder for bibliographic data, BibTeX |
12 | 14 | Usage: python bibtex2xml.py bibfile.bib > bibfile.xml |
13 | 15 | |