Definition at line 3 of file configfiles.py.
References join().
5 input = open(PROJECT_LOCATION+
"/doc/html/namespaces.html",
"r")
10 lines = lines.replace(
"\n<ul>",
"<ul>")
11 lines = lines.replace(
"<ul>\n",
"<ul>")
12 lines = lines.replace(
"\n</ul>",
"</ul>")
13 lines = lines.replace(
"</ul>\n",
"</ul>")
14 lines = lines.replace(
"\n<li>",
"<li>")
15 lines = lines.replace(
"<li>\n",
"<li>")
18 lines = lines.split(
"\n")
21 contentStarted =
False
25 if (line.find(
"</table>") != -1)
and (contentStarted):
26 contentStarted =
False
29 if (line.find(
"<tr><td class=\"indexkey\">") == -1):
32 if (line.find(
"__cff.html") == -1)
and \
33 (line.find(
"__cfg.html") == -1)
and \
34 (line.find(
"__cfi.html") == -1):
37 if (line.find(
"<table>") != -1)
and (
not contentStarted):
45 html =
"\n".
join(html)
47 output = open(PROJECT_LOCATION+
"/doc/html/configfiles.html",
"w")
static std::string join(char **cmd)
def generateConfigFilesPage