mirror of
https://github.com/polserver/polserver
synced 2026-08-13 08:23:08 -04:00
102 lines
2.2 KiB
Python
102 lines
2.2 KiB
Python
#!/usr/bin/env python3
|
|
|
|
'''
|
|
***INCOMPLETE DRAFT***
|
|
|
|
Reformats the e-script guide.
|
|
This is probably a one-shot script that can be deleted
|
|
'''
|
|
|
|
import os
|
|
import html.parser
|
|
|
|
|
|
class Parser(html.parser.HTMLParser):
|
|
def __init__(self):
|
|
super().__init__()
|
|
|
|
self.status = 'root'
|
|
|
|
def handle_starttag(self, tag, attrs):
|
|
attrs = dict(attrs)
|
|
|
|
if tag == 'h3' and self.status == 'root':
|
|
self.status = 'newChapterA'
|
|
return
|
|
elif tag == 'a' and self.status == 'newChapterA':
|
|
self.chapAnchor = attrs['name']
|
|
self.status = 'newChapterData'
|
|
self.chapName = ''
|
|
return
|
|
|
|
raise RuntimeError('Unexpected tag {} in status "{}"'.format(tag, self.status))
|
|
|
|
def handle_endtag(self, tag):
|
|
|
|
if tag == 'a' and self.status == 'newChapterData':
|
|
self.newChapter()
|
|
self.status = 'newChapterClose'
|
|
return
|
|
if tag == 'h3' and self.status == 'newChapterClose':
|
|
self.status = 'chapter'
|
|
return
|
|
|
|
raise RuntimeError('Unexpected end tag {} in status "{}"'.format(tag, self.status))
|
|
|
|
# print("Encountered an end tag :", tag)
|
|
def handle_data(self, data):
|
|
data = data.strip()
|
|
if not len(data):
|
|
return
|
|
|
|
if self.status == 'newChapterData':
|
|
self.chapName += data.strip()
|
|
return
|
|
|
|
raise RuntimeError('Unexpected data "{}" in status "{}"'.format(data, self.status))
|
|
|
|
def handle_startendtag(self, tag, attrs):
|
|
if tag == 'br' and self.status == 'chapter':
|
|
return
|
|
|
|
raise RuntimeError('Unexpected full tag {} in status "{}"'.format(tag, self.status))
|
|
|
|
def handle_entityref(self, name):
|
|
raise NotImplementedError()
|
|
|
|
def handle_charref(self, name):
|
|
raise NotImplementedError()
|
|
|
|
def handle_comment(self, data):
|
|
raise NotImplementedError()
|
|
|
|
def handle_decl(self, decl):
|
|
raise NotImplementedError()
|
|
|
|
def handle_pi(self, data):
|
|
raise NotImplementedError()
|
|
|
|
def unknown_decl(self, data):
|
|
raise NotImplementedError()
|
|
|
|
def newChapter(self):
|
|
print('<h3><a name="{}">{}</a></h3>'.format(self.chapAnchor, self.chapName))
|
|
del self.chapAnchor
|
|
del self.chapName
|
|
|
|
|
|
|
|
class Main:
|
|
|
|
def run(self):
|
|
parser = Parser()
|
|
with open(os.path.join('..','docs','docs.polserver.com','pol100','include','escriptguide.inc')) as f:
|
|
while True:
|
|
l = f.readline()
|
|
if not l:
|
|
break
|
|
parser.feed(l)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
Main().run()
|