[Doxygen-develop] tree.html: meta items: there is one quot to much !
Brought to you by:
dimitri
From: <enn...@t-...> - 2004-12-19 13:52:39
|
Hi I am using doxygen version 1.3.9.1-20041213 I think in the "tree.html" files that are generate by doxygen there is one quot too much ! > find . -name "*.html" -exec grep -H meta {} \; | grep iso | grep charset=\" ./const_char_p.c.dir_docu/html/tree.html: <meta http-equiv="Content-Type" content="text/xhtml;charset="iso-8859-1" /> ./const_char_p_const.c.dir_docu/html/tree.html:<meta http-equiv="Content-Type" content="text/xhtml;charset="iso-8859-1" /> ./char_p_const.c.dir_docu/html/tree.html: <meta http-equiv="Content-Type" content="text/xhtml;charset="iso-8859-1" /> ./int_p_const.c.dir_docu/html/tree.html: <meta http-equiv="Content-Type" content="text/xhtml;charset="iso-8859-1" /> ./int_p.c.dir_docu/html/tree.html: <meta http-equiv="Content-Type" content="text/xhtml;charset="iso-8859-1" /> ./char_p.c.dir_docu/html/tree.html: <meta http-equiv="Content-Type" content="text/xhtml;charset="iso-8859-1" /> ./const_int.c.dir_docu/html/tree.html: <meta http-equiv="Content-Type" content="text/xhtml;charset="iso-8859-1" /> ./const_const.c.dir_docu/html/tree.html: <meta http-equiv="Content-Type" content="text/xhtml;charset="iso-8859-1" /> wrong: <meta http-equiv="Content-Type" content="text/xhtml;charset="iso-8859-1" /> right: <meta http-equiv="Content-Type" content="text/xhtml;charset=iso-8859-1" /> Found in source code (in dir "src"): > grep -n meta *.c* | grep http ok: ftvhelp.cpp:597: t << "<meta http-equiv=\"Content-Type\" content=\"text/html;charset=" err: ftvhelp.cpp:633: t << " <meta http-equiv=\"Content-Type\" content=\"text/xhtml;charset=\"" ok: ftvhelp.cpp:635: t << " <meta http-equiv=\"Content-Style-Type\" content=\"text/css\" />\n"; ok: ftvhelp.cpp:636: t << " <meta http-equiv=\"Content-Language\" content=\"en\" />\n"; ok: htmlgen.cpp:405: "<meta http-equiv=\"Content-Type\" content=\"text/html;charset=" Can you please correct that one in ftvhelp.cpp line 633 ? Thanks for listening Enno |