mirror of
https://github.com/jlu5/PyLink.git
synced 2024-11-01 09:19:23 +01:00
e5493eac87
- channel-modes: split inspircd column into insp20, insp3 sections - this will let us account for current and future differences between the two - channel-modes: modularize unreal mode list
143 lines
3.2 KiB
Python
Executable File
143 lines
3.2 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
"""
|
|
Generates HTML versions of the mode list .csv definitions.
|
|
"""
|
|
|
|
import csv
|
|
import os
|
|
import os.path
|
|
|
|
os.chdir(os.path.dirname(__file__))
|
|
|
|
FILES = {
|
|
'user-modes.csv': 'Supported User Modes for PyLink',
|
|
'channel-modes.csv': 'Supported Channel Modes for PyLink',
|
|
'extbans.csv': 'Supported Extbans for PyLink',
|
|
}
|
|
|
|
def _write(outf, text):
|
|
print(text, end='')
|
|
outf.write(text)
|
|
|
|
def _format(articlename, text):
|
|
# More formatting
|
|
if text:
|
|
if text.startswith('('):
|
|
text = '<td class="tablecell-partial">%s</td>' % text
|
|
else:
|
|
if 'modes' in articlename:
|
|
text = '+' + text
|
|
try:
|
|
text, note = text.split(' ', 1)
|
|
except ValueError:
|
|
if text.endswith('*'):
|
|
text = '<td class="tablecell-special">%s</td>' % text
|
|
else:
|
|
text = '<td class="tablecell-yes">%s</td>' % text
|
|
else:
|
|
text = '%s<br><span class="note">%s</span>' % (text, note)
|
|
text = '<td class="tablecell-yes2">%s</td>' % text
|
|
else:
|
|
text = '<td class="tablecell-na note">n/a</td>'
|
|
return text
|
|
|
|
for fname, title in FILES.items():
|
|
outfname = os.path.splitext(fname)[0] + '.html'
|
|
print('Generating HTML for %s to %s:' % (fname, outfname))
|
|
with open(fname) as csvfile:
|
|
csvdata = csv.reader(csvfile)
|
|
|
|
with open(outfname, 'w') as outf:
|
|
# CSS in HTML in Python, how lovely...
|
|
_write(outf, """
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<meta charset="UTF-8">
|
|
<meta name=viewport content="width=device-width, initial-scale=1">
|
|
|
|
<head>
|
|
<title>%s</title>
|
|
<style>
|
|
|
|
html {
|
|
background-color: white;
|
|
}
|
|
|
|
.note {
|
|
color: #555555;
|
|
}
|
|
|
|
/* (╮°-°)╮┳━┳ */
|
|
table, th, td {
|
|
border: 1px solid black;
|
|
}
|
|
|
|
td, th {
|
|
text-align: center;
|
|
padding: 3px;
|
|
}
|
|
|
|
td:first-child, th[scope="row"] {
|
|
text-align: left;
|
|
}
|
|
|
|
/* Table cells */
|
|
.tablecell-yes {
|
|
background-color: #A7F2A5
|
|
}
|
|
|
|
.tablecell-no {
|
|
background-color: #F08496
|
|
}
|
|
|
|
.tablecell-na {
|
|
background-color: #F0F0F0
|
|
}
|
|
|
|
.tablecell-planned, .tablecell-yes2 {
|
|
background-color: #B1FCDE
|
|
}
|
|
|
|
.tablecell-partial {
|
|
background-color: #EDE8A4
|
|
}
|
|
|
|
.tablecell-special {
|
|
background-color: #DCB1FC
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<table>""" % title)
|
|
notes = False
|
|
for idx, row in enumerate(csvdata):
|
|
if not any(row): # Empty row
|
|
continue
|
|
elif row[0] == '----':
|
|
notes = True
|
|
continue
|
|
|
|
if notes:
|
|
_write(outf, "<p>%s</p>" % row[0])
|
|
continue
|
|
|
|
_write(outf, "<tr>\n")
|
|
for colidx, coltext in enumerate(row):
|
|
if idx == 0:
|
|
text = '<th scope="col">%s</th>\n' % coltext
|
|
elif colidx == 0:
|
|
text = '<th scope="row">%s</th>\n' % coltext
|
|
else:
|
|
text = _format(fname, coltext)
|
|
_write(outf, text)
|
|
|
|
_write(outf, "</tr>\n")
|
|
_write(outf, """
|
|
|
|
</table>
|
|
</body>
|
|
</html>""")
|