Fixed long file names

[SVN r11933]
This commit is contained in:
Vesa Karvonen
2001-12-05 18:21:47 +00:00
parent 4c2d36fad3
commit 692025092b
5 changed files with 31 additions and 6 deletions

25
doc/doxygen_reference.bash Executable file
View File

@ -0,0 +1,25 @@
#!/bin/bash
# Copyright (C) 2001
# Housemarque Oy
# http://www.housemarque.com
#
# Permission to copy, use, modify, sell and distribute this software is
# granted provided this copyright notice appears in all copies. This
# software is provided "as is" without express or implied warranty, and
# with no claim as to its suitability for any purpose.
rm -f reference/*.html reference/*.htm
doxygen doxygen_reference.dox
rm reference/doxygen.css reference/doxygen.gif
cd reference
for html in *.html
do
sed -e 's/enum__params__with__a__default_8hpp.html/enum_params_with_a_default.htm/g' -e 's/enum__params__with__defaults_8hpp.html/enum_params_with_defaults.htm/g' $html > $html.tmp
mv $html.tmp $html
done
mv enum__params__with__a__default_8hpp.html enum_params_with_a_default.htm
mv enum__params__with__defaults_8hpp.html enum_params_with_defaults.htm