Compare commits
29 Commits
6f05f05410
...
master
Author | SHA1 | Date | |
---|---|---|---|
eff22ff325 | |||
6ab90d5fff | |||
d98354046b | |||
f1ae73b737 | |||
d062ca6787 | |||
a9adf51453 | |||
7157757d43 | |||
5859ee0408 | |||
b33ea016d5 | |||
ab29250b74 | |||
167a03be3c | |||
f65361e06b | |||
c37cf4fc44 | |||
ef3f3dd60c | |||
0e3f1274cc | |||
1b7e3ce08b | |||
646b840be4 | |||
a382e6d4fd | |||
ade44491d4 | |||
2e73ecd59f | |||
2aa1a7cf47 | |||
77b160a35b | |||
ea7e1294b1 | |||
df25b09eb7 | |||
43a36ba730 | |||
d19ca39838 | |||
38cdb811b0 | |||
54fa852897 | |||
0b1320a9da |
@@ -3,6 +3,18 @@ HOSTNAME=glitchcity.info
|
|||||||
ARCHIVE_PATH=/var/www/html/gclarchives
|
ARCHIVE_PATH=/var/www/html/gclarchives
|
||||||
|
|
||||||
cd archives
|
cd archives
|
||||||
tar -cf forums.tar forums && gzip -f forums.tar
|
scp index.html style.css $HOSTNAME:$ARCHIVE_PATH
|
||||||
scp forums.tar.gz $HOSTNAME:$ARCHIVE_PATH
|
|
||||||
ssh $HOSTNAME "cd $ARCHIVE_PATH; tar -xf forums.tar.gz"
|
if [ -d "forums" ]; then
|
||||||
|
cat ../forum/structure.sql ../forum/categories.sql ../forum/boards.sql ../forum/threads.sql ../forum/misc_data.sql > forums.sql
|
||||||
|
cp ../forum/forum.sqlite forums.sqlite # forum or forums?
|
||||||
|
tar -cf forums.tar forums && gzip -f forums.tar forums.sqlite forums.sql
|
||||||
|
scp forums.sql.gz forums.sqlite.gz forums.tar.gz $HOSTNAME:$ARCHIVE_PATH
|
||||||
|
ssh $HOSTNAME "cd $ARCHIVE_PATH; tar -xf forums.tar.gz"
|
||||||
|
fi;
|
||||||
|
|
||||||
|
if [ -d "wiki" ]; then
|
||||||
|
tar -cf wiki.tar wiki && gzip -f wiki.tar wiki.xml
|
||||||
|
scp wiki.xml.gz wiki.tar.gz $HOSTNAME:$ARCHIVE_PATH
|
||||||
|
ssh $HOSTNAME "cd $ARCHIVE_PATH; tar -xf wiki.tar.gz"
|
||||||
|
fi;
|
@@ -4,6 +4,7 @@ from .wiki import Wiki
|
|||||||
from .archive_generator import ArchiveGenerator
|
from .archive_generator import ArchiveGenerator
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
|
import shutil
|
||||||
|
|
||||||
BASEDIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
BASEDIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
|
||||||
FORUM_DATABASE = os.path.join(BASEDIR, "forum", "forum.sqlite")
|
FORUM_DATABASE = os.path.join(BASEDIR, "forum", "forum.sqlite")
|
||||||
@@ -11,6 +12,8 @@ WIKI_DIRECTORY = os.path.join(BASEDIR, "wiki")
|
|||||||
TEMPLATES_DIR = os.path.join(BASEDIR, "templates")
|
TEMPLATES_DIR = os.path.join(BASEDIR, "templates")
|
||||||
STATIC_DIR = os.path.join(BASEDIR, "static")
|
STATIC_DIR = os.path.join(BASEDIR, "static")
|
||||||
|
|
||||||
|
ARCHIVE_GENERATOR = ArchiveGenerator(TEMPLATES_DIR, STATIC_DIR)
|
||||||
|
|
||||||
ARCHIVES_BASEDIR = "archives"
|
ARCHIVES_BASEDIR = "archives"
|
||||||
FORUM_ARCHIVES = os.path.join(ARCHIVES_BASEDIR, "forums")
|
FORUM_ARCHIVES = os.path.join(ARCHIVES_BASEDIR, "forums")
|
||||||
WIKI_ARCHIVES = os.path.join(ARCHIVES_BASEDIR, "wiki")
|
WIKI_ARCHIVES = os.path.join(ARCHIVES_BASEDIR, "wiki")
|
||||||
@@ -22,18 +25,14 @@ def main():
|
|||||||
if not args:
|
if not args:
|
||||||
args = DEFAULT_ARGUMENTS
|
args = DEFAULT_ARGUMENTS
|
||||||
|
|
||||||
|
ARCHIVE_GENERATOR.generate_index(ARCHIVES_BASEDIR)
|
||||||
|
|
||||||
if "forum" in args or "forums" in args:
|
if "forum" in args or "forums" in args:
|
||||||
archive_forum()
|
ARCHIVE_GENERATOR.generate_forum(Forum(FORUM_DATABASE), FORUM_ARCHIVES)
|
||||||
|
|
||||||
if "wiki" in args:
|
if "wiki" in args:
|
||||||
archive_wiki()
|
archive_wiki()
|
||||||
|
|
||||||
def archive_forum():
|
|
||||||
forum = Forum(FORUM_DATABASE)
|
|
||||||
|
|
||||||
generator = ArchiveGenerator(TEMPLATES_DIR, STATIC_DIR)
|
|
||||||
generator.generate_forum(forum, FORUM_ARCHIVES)
|
|
||||||
|
|
||||||
def archive_wiki():
|
def archive_wiki():
|
||||||
wiki = None
|
wiki = None
|
||||||
for entry in os.listdir(WIKI_DIRECTORY):
|
for entry in os.listdir(WIKI_DIRECTORY):
|
||||||
@@ -41,5 +40,5 @@ def archive_wiki():
|
|||||||
wiki = Wiki(os.path.join(WIKI_DIRECTORY, entry))
|
wiki = Wiki(os.path.join(WIKI_DIRECTORY, entry))
|
||||||
|
|
||||||
if wiki:
|
if wiki:
|
||||||
generator = ArchiveGenerator(TEMPLATES_DIR, STATIC_DIR)
|
shutil.copyfile(wiki.xml_path, os.path.join(ARCHIVES_BASEDIR, "wiki.xml"))
|
||||||
generator.generate_wiki(wiki, WIKI_ARCHIVES)
|
ARCHIVE_GENERATOR.generate_wiki(wiki, WIKI_ARCHIVES)
|
@@ -1,17 +1,71 @@
|
|||||||
import os
|
import os
|
||||||
import logging
|
import logging
|
||||||
import shutil
|
import shutil
|
||||||
|
import math
|
||||||
|
import json
|
||||||
|
import gzip
|
||||||
|
|
||||||
|
from itertools import chain
|
||||||
|
from traceback import print_exc
|
||||||
|
|
||||||
import chevron
|
import chevron
|
||||||
import bbcode
|
import bbcode
|
||||||
import html
|
import html
|
||||||
|
|
||||||
from .wiki import NAMESPACES as WIKI_NAMESPACES
|
from .forum import DEFAULT_POSTS_PER_PAGE
|
||||||
import mwparserfromhell
|
from .wiki import Template, Renderer, Linker, NAMESPACES as WIKI_NAMESPACES
|
||||||
|
|
||||||
logging.basicConfig(level=logging.INFO)
|
logging.basicConfig(level=logging.INFO)
|
||||||
logger = logging.getLogger("ArchiveGenerator")
|
logger = logging.getLogger("ArchiveGenerator")
|
||||||
|
|
||||||
|
DEX_LANGUAGES = ["", "DE", "ES", "FR", "IT", "JP", "KO"]
|
||||||
|
DEX_TYPES = [
|
||||||
|
"GlitchDex", "AttackDex", "DexDex", "AreaDex", "TrainerDex", "FieldMoveDex", "ItemDex", "FamilyDex", "DecDex", "DayDex",
|
||||||
|
"MDIGlitchDex", "MetascriptDex", "TMHMDex", "StatDex", "PosterDex", "TypeDex", "UnownDex", "DollDex", "DefaultNameDex",
|
||||||
|
"BattleTypeDe", "BadgeDescriptionDex", "FacingDex"
|
||||||
|
]
|
||||||
|
DEXES = list(chain.from_iterable([["{}{}".format(dex_type, language) for dex_type in DEX_TYPES] for language in DEX_LANGUAGES]))
|
||||||
|
|
||||||
|
FORUM_THREAD_INDEX = "thread_index.json.gz"
|
||||||
|
IMAGE_DIRECTORY = "images"
|
||||||
|
|
||||||
|
class ArchiveLinker(Linker):
|
||||||
|
def __init__ (self, directory_names=[]):
|
||||||
|
super().__init__()
|
||||||
|
self.directory_names = directory_names
|
||||||
|
self.image_directory = IMAGE_DIRECTORY
|
||||||
|
self.replacements = {
|
||||||
|
"/": "+",
|
||||||
|
#":": ""
|
||||||
|
}
|
||||||
|
|
||||||
|
def translate_page_title (self, page_title):
|
||||||
|
page_title = super().translate_page_title(page_title)
|
||||||
|
fragment = ""
|
||||||
|
|
||||||
|
if "#" in page_title:
|
||||||
|
fragment = page_title[page_title.find("#"):]
|
||||||
|
page_title = page_title[:-len(fragment)]
|
||||||
|
|
||||||
|
directory_name = ""
|
||||||
|
for name in self.directory_names:
|
||||||
|
if page_title.startswith("{}/".format(name)):
|
||||||
|
directory_name = name
|
||||||
|
page_title = page_title[len(directory_name) + 1:]
|
||||||
|
break
|
||||||
|
|
||||||
|
for key, value in self.replacements.items():
|
||||||
|
page_title = page_title.replace(key, value)
|
||||||
|
|
||||||
|
return "{}{}{}.html{}".format(directory_name, '/' if directory_name else '', page_title, fragment)
|
||||||
|
|
||||||
|
def translate_image_title (self, page_title):
|
||||||
|
image_title = super().translate_image_title(page_title)
|
||||||
|
if not image_title:
|
||||||
|
return
|
||||||
|
|
||||||
|
return "{}/{}".format(self.image_directory, image_title)
|
||||||
|
|
||||||
def prepare_thread (thread):
|
def prepare_thread (thread):
|
||||||
thread.subject = html.unescape(thread.subject)
|
thread.subject = html.unescape(thread.subject)
|
||||||
return thread
|
return thread
|
||||||
@@ -27,6 +81,16 @@ class ArchiveGenerator():
|
|||||||
self.template_dir = template_dir
|
self.template_dir = template_dir
|
||||||
self.static_dir = static_dir
|
self.static_dir = static_dir
|
||||||
|
|
||||||
|
def generate_index (self, out_dir):
|
||||||
|
logger.info("Generating index page at %s", out_dir)
|
||||||
|
try:
|
||||||
|
os.makedirs(out_dir)
|
||||||
|
except FileExistsError: pass
|
||||||
|
|
||||||
|
shutil.copyfile(os.path.join(self.static_dir, "style.css"), os.path.join(out_dir, "style.css"))
|
||||||
|
renderer = TemplateRenderer(self.template_dir, out_dir)
|
||||||
|
renderer.render_template_to_file("index", "index.html", {})
|
||||||
|
|
||||||
def generate_wiki (self, wiki, out_dir):
|
def generate_wiki (self, wiki, out_dir):
|
||||||
logger.info("Archiving wiki to %s", out_dir)
|
logger.info("Archiving wiki to %s", out_dir)
|
||||||
try:
|
try:
|
||||||
@@ -35,29 +99,72 @@ class ArchiveGenerator():
|
|||||||
|
|
||||||
shutil.copyfile(os.path.join(self.static_dir, "style.css"), os.path.join(out_dir, "style.css"))
|
shutil.copyfile(os.path.join(self.static_dir, "style.css"), os.path.join(out_dir, "style.css"))
|
||||||
renderer = TemplateRenderer(self.template_dir, out_dir)
|
renderer = TemplateRenderer(self.template_dir, out_dir)
|
||||||
|
renderer.render_template_to_file("redirect", "index.html", {
|
||||||
|
"target": "Main_Page.html"
|
||||||
|
})
|
||||||
|
|
||||||
|
categories = {}
|
||||||
|
templates = dict([(page.title.split(":")[1], Template(page.get_latest().text)) for page in wiki.get_pages() if page.namespace == WIKI_NAMESPACES['TEMPLATE']])
|
||||||
|
linker = ArchiveLinker(directory_names=DEXES)
|
||||||
|
wikitext_renderer = Renderer(templates, linker)
|
||||||
for page in wiki.get_pages():
|
for page in wiki.get_pages():
|
||||||
if page.redirect:
|
try:
|
||||||
continue
|
if page.namespace != WIKI_NAMESPACES['MAIN']:
|
||||||
|
continue
|
||||||
if page.namespace != WIKI_NAMESPACES['MAIN']:
|
|
||||||
continue
|
|
||||||
|
|
||||||
page_out = "{}.html".format(page.title).replace(" ", "_")
|
page_out = linker.translate_page_title(page.title)
|
||||||
base = ""
|
base = "./"
|
||||||
if "/" in page_out:
|
if "/" in page_out:
|
||||||
base = "../" * page_out.count("/")
|
base = "../" * page_out.count("/")
|
||||||
try:
|
try:
|
||||||
os.makedirs(os.path.dirname(os.path.join(out_dir, page_out)))
|
os.makedirs(os.path.dirname(os.path.join(out_dir, page_out)))
|
||||||
except FileExistsError: pass
|
except FileExistsError: pass
|
||||||
|
|
||||||
logger.info("Archiving page %s to %s", page.title, page_out)
|
if page.redirect:
|
||||||
renderer.render_template_to_file("page", page_out, {
|
logger.info("Archiving redirect page (%s -> %s) to %s", page.title, page.redirect, page_out)
|
||||||
"title": " - {}".format(page.title),
|
renderer.render_template_to_file("redirect", page_out, {
|
||||||
"page": page,
|
"target": "{}{}".format(base, linker.translate_page_title(page.redirect))
|
||||||
"base": base,
|
})
|
||||||
"text": mwparserfromhell.parse(page.get_latest().text)
|
else:
|
||||||
})
|
logger.info("Archiving page %s to %s", page.title, page_out)
|
||||||
|
(rendered, page_categories) = wikitext_renderer.render(page.get_latest().text, base, page=page)
|
||||||
|
|
||||||
|
for category in page_categories:
|
||||||
|
if not category in categories:
|
||||||
|
categories[category] = []
|
||||||
|
|
||||||
|
categories[category].append({
|
||||||
|
"url": page_out,
|
||||||
|
"title": page.title
|
||||||
|
})
|
||||||
|
|
||||||
|
renderer.render_template_to_file("page", page_out, {
|
||||||
|
"title": " - {}".format(page.title),
|
||||||
|
"pagename": page.title,
|
||||||
|
"page": page,
|
||||||
|
"base": base,
|
||||||
|
"text": rendered
|
||||||
|
})
|
||||||
|
except Exception as e:
|
||||||
|
logger.error("Error encountered when archiving %s: %s", page.title, e)
|
||||||
|
print_exc()
|
||||||
|
if isinstance(e, ValueError):
|
||||||
|
raise e
|
||||||
|
|
||||||
|
for category, pages in categories.items():
|
||||||
|
category_out = "Category:{}".format(linker.translate_page_title(category))
|
||||||
|
logger.info("Archiving category %s to %s", category, category_out)
|
||||||
|
|
||||||
|
try:
|
||||||
|
renderer.render_template_to_file("category", category_out, {
|
||||||
|
"title": " - {}".format(category),
|
||||||
|
"pagename": "Category:{}".format(category),
|
||||||
|
"category": category,
|
||||||
|
"pages": pages
|
||||||
|
})
|
||||||
|
except Exception as e:
|
||||||
|
logger.error("Error encountered when archiving %s: %s", category, e)
|
||||||
|
print_exc()
|
||||||
|
|
||||||
def generate_forum (self, forum, out_dir):
|
def generate_forum (self, forum, out_dir):
|
||||||
logger.info("Archiving forum to %s", out_dir)
|
logger.info("Archiving forum to %s", out_dir)
|
||||||
@@ -71,10 +178,15 @@ class ArchiveGenerator():
|
|||||||
"categories": forum.get_board_tree()
|
"categories": forum.get_board_tree()
|
||||||
})
|
})
|
||||||
|
|
||||||
|
threads = []
|
||||||
for board in forum.get_boards():
|
for board in forum.get_boards():
|
||||||
self.generate_forum_board(forum, board, out_dir)
|
forum_threads = forum.get_threads_in_board(board)
|
||||||
|
threads = threads + forum_threads
|
||||||
|
self.generate_forum_board(forum, board, forum_threads, out_dir)
|
||||||
|
|
||||||
def generate_forum_board (self, forum, board, out_dir):
|
self.generate_thread_index(threads, os.path.join(out_dir, FORUM_THREAD_INDEX))
|
||||||
|
|
||||||
|
def generate_forum_board (self, forum, board, threads, out_dir):
|
||||||
board_out_dir = os.path.join(out_dir, "board-{}".format(board.id))
|
board_out_dir = os.path.join(out_dir, "board-{}".format(board.id))
|
||||||
logger.info("Archiving board %s to %s", board.name, board_out_dir)
|
logger.info("Archiving board %s to %s", board.name, board_out_dir)
|
||||||
try:
|
try:
|
||||||
@@ -82,7 +194,7 @@ class ArchiveGenerator():
|
|||||||
except FileExistsError: pass
|
except FileExistsError: pass
|
||||||
|
|
||||||
renderer = TemplateRenderer(self.template_dir, board_out_dir)
|
renderer = TemplateRenderer(self.template_dir, board_out_dir)
|
||||||
threads = [prepare_thread(thread) for thread in forum.get_threads_in_board(board)]
|
threads = [prepare_thread(thread) for thread in threads]
|
||||||
renderer.render_template_to_file("threads", "index.html", {
|
renderer.render_template_to_file("threads", "index.html", {
|
||||||
"title": " - {}".format(board.name),
|
"title": " - {}".format(board.name),
|
||||||
"base": "../",
|
"base": "../",
|
||||||
@@ -101,8 +213,12 @@ class ArchiveGenerator():
|
|||||||
except FileExistsError: pass
|
except FileExistsError: pass
|
||||||
|
|
||||||
renderer = TemplateRenderer(self.template_dir, thread_out_dir)
|
renderer = TemplateRenderer(self.template_dir, thread_out_dir)
|
||||||
renderer.render_template_to_file("page-0-redirect", "index.html")
|
renderer.render_template_to_file("redirect", "index.html", {
|
||||||
|
"target": "page-0.html"
|
||||||
|
})
|
||||||
|
|
||||||
|
total_pages = math.ceil((thread.num_replies + 1) / DEFAULT_POSTS_PER_PAGE)
|
||||||
|
page_links = [{"label": page + 1, "link": "page-{}.html".format(page)} for page in range(total_pages)]
|
||||||
page = 0
|
page = 0
|
||||||
while True:
|
while True:
|
||||||
posts = [prepare_post(post) for post in forum.get_posts_in_thread(thread, page)]
|
posts = [prepare_post(post) for post in forum.get_posts_in_thread(thread, page)]
|
||||||
@@ -117,11 +233,19 @@ class ArchiveGenerator():
|
|||||||
"thread": thread,
|
"thread": thread,
|
||||||
"page": page,
|
"page": page,
|
||||||
"next": page + 1,
|
"next": page + 1,
|
||||||
|
"page_links": page_links,
|
||||||
"prev": page - 1,
|
"prev": page - 1,
|
||||||
"posts": posts
|
"posts": posts
|
||||||
})
|
})
|
||||||
page = page + 1
|
page = page + 1
|
||||||
|
|
||||||
|
def generate_thread_index (self,threads, out_path):
|
||||||
|
# with open(out_path, "wb") as out:
|
||||||
|
# pickle.dump({thread.id: {"parent": thread.parent} for thread in threads}, out, protocol=4)
|
||||||
|
threads = {thread.id: {"parent": thread.parent} for thread in threads}
|
||||||
|
with gzip.open(out_path, "w") as out:
|
||||||
|
out.write(json.dumps(threads).encode())
|
||||||
|
|
||||||
class TemplateRenderer():
|
class TemplateRenderer():
|
||||||
def __init__ (self, template_dir, out_dir):
|
def __init__ (self, template_dir, out_dir):
|
||||||
self.template_dir = template_dir
|
self.template_dir = template_dir
|
||||||
@@ -135,4 +259,4 @@ class TemplateRenderer():
|
|||||||
def render_template_to_file (self, template_name, out_file, data={}):
|
def render_template_to_file (self, template_name, out_file, data={}):
|
||||||
with self.open_template(template_name) as template:
|
with self.open_template(template_name) as template:
|
||||||
with open(os.path.join(self.out_dir, out_file), "w") as out:
|
with open(os.path.join(self.out_dir, out_file), "w") as out:
|
||||||
out.write(chevron.render(template, data, self.partials_dir, self.extension))
|
out.write(chevron.render(template, data, self.partials_dir, self.extension))
|
||||||
|
@@ -23,6 +23,9 @@ GET_POSTS = """
|
|||||||
LIMIT ? OFFSET ?
|
LIMIT ? OFFSET ?
|
||||||
""".format(PREFIX)
|
""".format(PREFIX)
|
||||||
|
|
||||||
|
DEFAULT_POSTS_PER_PAGE = 15
|
||||||
|
DEFAULT_THREADS_PER_PAGE = 2000
|
||||||
|
|
||||||
def fix_encoding (string):
|
def fix_encoding (string):
|
||||||
return string.encode("latin1", errors="ignore").decode(errors="ignore")
|
return string.encode("latin1", errors="ignore").decode(errors="ignore")
|
||||||
|
|
||||||
@@ -50,7 +53,7 @@ class Forum():
|
|||||||
cursor.execute(GET_BOARDS)
|
cursor.execute(GET_BOARDS)
|
||||||
return [Board(board) for board in cursor.fetchall()]
|
return [Board(board) for board in cursor.fetchall()]
|
||||||
|
|
||||||
def get_threads_in_board (self, board, page=0, per_page=2000):
|
def get_threads_in_board (self, board, page=0, per_page=DEFAULT_THREADS_PER_PAGE):
|
||||||
try:
|
try:
|
||||||
board = board.id
|
board = board.id
|
||||||
except ValueError: pass
|
except ValueError: pass
|
||||||
@@ -58,7 +61,7 @@ class Forum():
|
|||||||
cursor.execute(GET_THREADS, (board, per_page, page * per_page))
|
cursor.execute(GET_THREADS, (board, per_page, page * per_page))
|
||||||
return [Thread(thread) for thread in cursor.fetchall()]
|
return [Thread(thread) for thread in cursor.fetchall()]
|
||||||
|
|
||||||
def get_posts_in_thread (self, thread, page=0, per_page=15):
|
def get_posts_in_thread (self, thread, page=0, per_page=DEFAULT_POSTS_PER_PAGE):
|
||||||
try:
|
try:
|
||||||
thread = thread.id
|
thread = thread.id
|
||||||
except ValueError: pass
|
except ValueError: pass
|
||||||
@@ -89,6 +92,7 @@ class Thread():
|
|||||||
self.datetime = datetime.fromtimestamp(row['poster_time'])
|
self.datetime = datetime.fromtimestamp(row['poster_time'])
|
||||||
self.subject = fix_encoding(row['subject'])
|
self.subject = fix_encoding(row['subject'])
|
||||||
self.poster_name = fix_encoding(row['poster_name'])
|
self.poster_name = fix_encoding(row['poster_name'])
|
||||||
|
self.num_replies = row['num_replies']
|
||||||
|
|
||||||
class Post():
|
class Post():
|
||||||
def __init__ (self, row):
|
def __init__ (self, row):
|
||||||
|
98
epilogue/redirector.py
Normal file
98
epilogue/redirector.py
Normal file
@@ -0,0 +1,98 @@
|
|||||||
|
import argparse
|
||||||
|
import gzip
|
||||||
|
import urllib.request
|
||||||
|
import json
|
||||||
|
|
||||||
|
from .archive_generator import ArchiveLinker, DEXES, FORUM_THREAD_INDEX
|
||||||
|
|
||||||
|
from flask import Flask, redirect, request
|
||||||
|
app = Flask(__name__)
|
||||||
|
|
||||||
|
DEFAULT_ARCHIVES_DOMAIN = "https://archives.glitchcity.info/"
|
||||||
|
DEFAULT_FORUMS_ARCHIVE = "{}forums".format(DEFAULT_ARCHIVES_DOMAIN)
|
||||||
|
DEFAULT_WIKI_ARCHIVE = "{}wiki".format(DEFAULT_ARCHIVES_DOMAIN)
|
||||||
|
|
||||||
|
## Wiki redirector
|
||||||
|
@app.route("/wiki/")
|
||||||
|
def redirect_wiki_main ():
|
||||||
|
return redirect_wiki("Main Page")
|
||||||
|
|
||||||
|
@app.route("/wiki/<path:path>")
|
||||||
|
def redirect_wiki (path):
|
||||||
|
return redirect(make_wiki_url(path))
|
||||||
|
|
||||||
|
def make_wiki_url (path):
|
||||||
|
if path.endswith("/"):
|
||||||
|
path = path[:-1]
|
||||||
|
|
||||||
|
return app.args.wiki_archive + app.wiki_linker.translate_page_title(path)
|
||||||
|
|
||||||
|
## Forum redirector
|
||||||
|
@app.route('/forums/')
|
||||||
|
def redirect_forums_index ():
|
||||||
|
return redirect_forums("")
|
||||||
|
|
||||||
|
@app.route('/forums/<path:path>')
|
||||||
|
def redirect_forums (path):
|
||||||
|
return redirect(make_forum_url(request))
|
||||||
|
|
||||||
|
def make_forum_url (request):
|
||||||
|
thread_id = request.args.get("topic", None)
|
||||||
|
board_id = request.args.get("board", None)
|
||||||
|
post_id = None
|
||||||
|
|
||||||
|
if thread_id:
|
||||||
|
thread_id = strip_extension(thread_id)
|
||||||
|
|
||||||
|
if "." in thread_id:
|
||||||
|
(thread_id, post_id) = thread_id.split(".")
|
||||||
|
post_id = post_id[len("msg"):]
|
||||||
|
|
||||||
|
if not board_id:
|
||||||
|
board_id = app.thread_index[thread_id]['parent']
|
||||||
|
|
||||||
|
try:
|
||||||
|
if "." in board_id:
|
||||||
|
board_id = board_id.split(".")[0]
|
||||||
|
except TypeError: pass
|
||||||
|
|
||||||
|
url = app.args.forums_archive
|
||||||
|
|
||||||
|
if board_id:
|
||||||
|
url = url + "board-{}".format(board_id)
|
||||||
|
|
||||||
|
if thread_id:
|
||||||
|
url = url + "/thread-{}".format(thread_id)
|
||||||
|
|
||||||
|
if not url.endswith("/"):
|
||||||
|
url = url + "/"
|
||||||
|
|
||||||
|
return url
|
||||||
|
|
||||||
|
def strip_extension (item):
|
||||||
|
for extension in [".html"]:
|
||||||
|
if item.endswith(extension):
|
||||||
|
item = item[:-len(extension)]
|
||||||
|
return item
|
||||||
|
|
||||||
|
def read_thread_index (forums_archive):
|
||||||
|
with urllib.request.urlopen("{}{}".format(forums_archive, FORUM_THREAD_INDEX)) as gzipped_in:
|
||||||
|
data = gzipped_in.read()
|
||||||
|
return json.loads(gzip.decompress(data).decode())
|
||||||
|
|
||||||
|
def main ():
|
||||||
|
parser = argparse.ArgumentParser()
|
||||||
|
parser.add_argument("--wiki-archive", help="URL to wiki archive", default=DEFAULT_WIKI_ARCHIVE)
|
||||||
|
parser.add_argument("--forums-archive", help="URL to forums archive", default=DEFAULT_FORUMS_ARCHIVE)
|
||||||
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
if not args.wiki_archive.endswith("/"):
|
||||||
|
args.wiki_archive = args.wiki_archive + "/"
|
||||||
|
|
||||||
|
if not args.forums_archive.endswith("/"):
|
||||||
|
args.forums_archive = args.forums_archive + "/"
|
||||||
|
|
||||||
|
app.args = args
|
||||||
|
app.thread_index = read_thread_index(args.forums_archive)
|
||||||
|
app.wiki_linker = ArchiveLinker(directory_names=DEXES)
|
||||||
|
app.run()
|
156
epilogue/wiki.py
156
epilogue/wiki.py
@@ -1,5 +1,8 @@
|
|||||||
from xml.etree import ElementTree
|
from xml.etree import ElementTree
|
||||||
|
|
||||||
|
import mwparserfromhell
|
||||||
|
from mwparserfromhell.nodes import Wikilink, Comment, ExternalLink, Heading, Tag, Template, Text
|
||||||
|
|
||||||
NAMESPACE = "{http://www.mediawiki.org/xml/export-0.10/}"
|
NAMESPACE = "{http://www.mediawiki.org/xml/export-0.10/}"
|
||||||
PAGE_TAG = "{}page".format(NAMESPACE)
|
PAGE_TAG = "{}page".format(NAMESPACE)
|
||||||
ID_TAG = "{}id".format(NAMESPACE)
|
ID_TAG = "{}id".format(NAMESPACE)
|
||||||
@@ -22,6 +25,15 @@ NAMESPACES = {
|
|||||||
"TEMPLATE": 10
|
"TEMPLATE": 10
|
||||||
}
|
}
|
||||||
|
|
||||||
|
INTERWIKI_NAMESPACES = {
|
||||||
|
"bp:": "https://bulbapedia.bulbagarden.net/wiki/{}",
|
||||||
|
"wikipedia:": "https://en.wikipedia.org/wiki/{}"
|
||||||
|
}
|
||||||
|
|
||||||
|
FILE_NAMESPACES = ["File:", "Image:"]
|
||||||
|
CATEGORY_NAMESPACE = "Category:"
|
||||||
|
CATEGORY_LINK_NAMESPACE = ":{}".format(CATEGORY_NAMESPACE)
|
||||||
|
|
||||||
class Wiki():
|
class Wiki():
|
||||||
def __init__ (self, xml_path):
|
def __init__ (self, xml_path):
|
||||||
self.xml_path = xml_path
|
self.xml_path = xml_path
|
||||||
@@ -71,4 +83,146 @@ class Contributor():
|
|||||||
if child.tag == ID_TAG:
|
if child.tag == ID_TAG:
|
||||||
self.id = child.text
|
self.id = child.text
|
||||||
elif child.tag == USERNAME_TAG:
|
elif child.tag == USERNAME_TAG:
|
||||||
self.username = child.text
|
self.username = child.text
|
||||||
|
|
||||||
|
class Renderer():
|
||||||
|
def __init__ (self, templates={}, linker=None):
|
||||||
|
self.templates = templates
|
||||||
|
self.linker = linker if linker else Linker()
|
||||||
|
|
||||||
|
def render (self, wikitext, base="", *args, **kwargs):
|
||||||
|
categories = []
|
||||||
|
wikitext = self.transclude_templates(wikitext, *args, **kwargs)
|
||||||
|
|
||||||
|
# parse out categories
|
||||||
|
for link in wikitext.ifilter_wikilinks():
|
||||||
|
if not link.title.startswith(CATEGORY_NAMESPACE):
|
||||||
|
continue
|
||||||
|
|
||||||
|
wikitext.remove(link)
|
||||||
|
categories.append(link.title[len(CATEGORY_NAMESPACE):])
|
||||||
|
|
||||||
|
rendered = [render(wikitext, base, self.linker)]
|
||||||
|
if categories:
|
||||||
|
rendered.append('<h2>Categories</h2><ul class="categories">')
|
||||||
|
for category in categories:
|
||||||
|
rendered.append('<li><a href="{}Category:{}">{}</a></li>'.format(
|
||||||
|
base,
|
||||||
|
self.linker.translate_page_title(category),
|
||||||
|
category
|
||||||
|
))
|
||||||
|
rendered.append("</ul>")
|
||||||
|
|
||||||
|
return ("".join(rendered), categories)
|
||||||
|
|
||||||
|
def transclude_templates (self, wikitext, *args, **kwargs):
|
||||||
|
wikitext = mwparserfromhell.parse(wikitext)
|
||||||
|
for inclusion in wikitext.ifilter_templates():
|
||||||
|
template_key = str(inclusion.name)
|
||||||
|
template = self.templates.get(template_key, self.templates.get(template_key[0].upper() + template_key[1:], None))
|
||||||
|
result = None
|
||||||
|
if template:
|
||||||
|
result = template(inclusion, *args, **kwargs)
|
||||||
|
else:
|
||||||
|
result = "<span class='unknown-template'>Template:{0}</span>".format(inclusion.name)
|
||||||
|
|
||||||
|
try:
|
||||||
|
wikitext.replace(inclusion, result) #self.transclude_templates(result))
|
||||||
|
except ValueError: pass
|
||||||
|
return wikitext
|
||||||
|
|
||||||
|
def render (wikitext, base="", linker=None):
|
||||||
|
rendered = []
|
||||||
|
|
||||||
|
if not linker:
|
||||||
|
linker = Linker()
|
||||||
|
|
||||||
|
for node in wikitext.ifilter(False):
|
||||||
|
# node types:
|
||||||
|
# https://mwparserfromhell.readthedocs.io/en/latest/api/mwparserfromhell.nodes.html#module-mwparserfromhell.nodes.text
|
||||||
|
node_type = type(node)
|
||||||
|
if node_type is Wikilink:
|
||||||
|
image_name = linker.translate_image_title(node.title)
|
||||||
|
if image_name:
|
||||||
|
rendered.append('<img src="{}{}" />'.format(
|
||||||
|
base,
|
||||||
|
image_name,
|
||||||
|
render(mwparserfromhell.parse(node.text), base, linker)
|
||||||
|
))
|
||||||
|
else:
|
||||||
|
url = linker.translate_interwiki_title(node.title)
|
||||||
|
if not url:
|
||||||
|
url = "{}{}".format(base, linker.translate_page_title(node.title))
|
||||||
|
|
||||||
|
rendered.append('<a href="{}">{}</a>'.format(
|
||||||
|
url,
|
||||||
|
render(node.text if node.text else node.title, base, linker)
|
||||||
|
))
|
||||||
|
elif node_type is ExternalLink:
|
||||||
|
rendered.append('<a href="{}">{}</a>'.format(
|
||||||
|
node.url,
|
||||||
|
render(node.title if node.title else node.url)
|
||||||
|
))
|
||||||
|
elif node_type is Tag:
|
||||||
|
rendered.append("<{}>{}</{}>".format(
|
||||||
|
render(node.tag),
|
||||||
|
render(node.contents, base, linker),
|
||||||
|
render(node.tag)
|
||||||
|
))
|
||||||
|
elif node_type is Heading:
|
||||||
|
rendered.append('<h{} id="{}">{}</h{}>'.format(
|
||||||
|
node.level,
|
||||||
|
reformat_page_title(node.title),
|
||||||
|
render(node.title, base, linker),
|
||||||
|
node.level
|
||||||
|
))
|
||||||
|
elif node_type is Text:
|
||||||
|
rendered.append(node.value)
|
||||||
|
|
||||||
|
return "".join(rendered).strip().replace("\n\n", "<br /><br />")
|
||||||
|
|
||||||
|
class Linker():
|
||||||
|
def __init__ (self, file_namespaces=FILE_NAMESPACES, interwiki_namespaces=INTERWIKI_NAMESPACES):
|
||||||
|
self.file_namespaces = file_namespaces
|
||||||
|
self.interwiki_namespaces = interwiki_namespaces
|
||||||
|
|
||||||
|
def translate_interwiki_title (self, page_title):
|
||||||
|
for namespace, url in self.interwiki_namespaces.items():
|
||||||
|
if page_title.startswith(namespace):
|
||||||
|
return url.format(page_title[len(namespace):])
|
||||||
|
|
||||||
|
def translate_page_title (self, page_title):
|
||||||
|
if page_title.startswith(CATEGORY_LINK_NAMESPACE):
|
||||||
|
page_title = page_title[1:]
|
||||||
|
|
||||||
|
return reformat_page_title(page_title)
|
||||||
|
|
||||||
|
def translate_image_title (self, page_title):
|
||||||
|
for namespace in self.file_namespaces:
|
||||||
|
if page_title.startswith(namespace):
|
||||||
|
return reformat_page_title(page_title[len(namespace):])
|
||||||
|
|
||||||
|
def reformat_page_title (page_title):
|
||||||
|
if not page_title:
|
||||||
|
return ""
|
||||||
|
|
||||||
|
return "{}{}".format(page_title[0].upper(), page_title[1:].replace(' ', '_'))
|
||||||
|
|
||||||
|
class Template():
|
||||||
|
def __init__ (self, wikicode):
|
||||||
|
self.wikicode = mwparserfromhell.parse(wikicode)
|
||||||
|
for tag in self.wikicode.ifilter_tags():
|
||||||
|
if tag.tag == "noinclude":
|
||||||
|
self.wikicode.remove(tag)
|
||||||
|
|
||||||
|
def __call__ (self, inclusion, *args, **kwargs):
|
||||||
|
parsed_wikicode = mwparserfromhell.parse(self.wikicode)
|
||||||
|
for argument in parsed_wikicode.ifilter_arguments():
|
||||||
|
value = argument.default if argument.default else argument.name
|
||||||
|
if inclusion.has(argument.name):
|
||||||
|
value = inclusion.get(argument.name)
|
||||||
|
|
||||||
|
try:
|
||||||
|
parsed_wikicode.replace(argument, value)
|
||||||
|
except ValueError: pass
|
||||||
|
return parsed_wikicode
|
||||||
|
@@ -68,6 +68,7 @@ TOPICS_DUMP = "threads.sql"
|
|||||||
# Categories we are not interested in archiving.
|
# Categories we are not interested in archiving.
|
||||||
# `id_cat` in (1, 2)
|
# `id_cat` in (1, 2)
|
||||||
DO_NOT_ARCHIVE_CATEGORIES = [
|
DO_NOT_ARCHIVE_CATEGORIES = [
|
||||||
|
7, # Links
|
||||||
12, # Epsilon: ?????
|
12, # Epsilon: ?????
|
||||||
6, # Sigma: Higher Access
|
6, # Sigma: Higher Access
|
||||||
8 # Omega: Garbage
|
8 # Omega: Garbage
|
||||||
@@ -76,17 +77,21 @@ DO_NOT_ARCHIVE_CATEGORIES = [
|
|||||||
# Boards we are not interested in archiving.
|
# Boards we are not interested in archiving.
|
||||||
# `id_board` in (1, 2)
|
# `id_board` in (1, 2)
|
||||||
DO_NOT_ARCHIVE_BOARDS = [
|
DO_NOT_ARCHIVE_BOARDS = [
|
||||||
40, # Exclusive Board
|
24, 94, 118, 121, # Links
|
||||||
65, # Requests for Moderatorship
|
40, # Exclusive Board
|
||||||
66, # Requests for Membership+
|
65, # Requests for Moderatorship
|
||||||
67, # Requests for Distinguished Membership
|
66, # Requests for Membership+
|
||||||
23, # M.A.S.K. HQ (Staff Board)
|
67, # Requests for Distinguished Membership
|
||||||
22, # Admins Only Board
|
23, # M.A.S.K. HQ (Staff Board)
|
||||||
89, # Test Board
|
22, # Admins Only Board
|
||||||
86, # Omega Archives
|
89, # Test Board
|
||||||
51, 37, 79, 26, 47, 44, 99, 93, 119, 96,
|
86, # Omega Archives
|
||||||
28, # The Dumpster Out Back
|
51, 37, 79, 26, 47, 44, 45, 99, 93, 119, 96,
|
||||||
123 # ?????
|
62, 60, 80, 84, # Submit-A-Glitch Archives
|
||||||
|
3, 4, 5, 57, 58, 59, 38, 54, 63, 64,
|
||||||
|
68, 69, 70, 81, 82, 83,
|
||||||
|
28, # The Dumpster Out Back
|
||||||
|
123 # ?????
|
||||||
]
|
]
|
||||||
|
|
||||||
# Regexes for sensitive information
|
# Regexes for sensitive information
|
||||||
|
5
setup.py
5
setup.py
@@ -8,10 +8,11 @@ setup(
|
|||||||
description='Tools for exporting and creating archives of Glitch City Labs data',
|
description='Tools for exporting and creating archives of Glitch City Labs data',
|
||||||
author='Adrian Kuschelyagi Malacoda',
|
author='Adrian Kuschelyagi Malacoda',
|
||||||
packages=['epilogue'],
|
packages=['epilogue'],
|
||||||
install_requires=['pysqlite3 >= 0.4.3', 'chevron >= 0.13.1', 'bbcode >= 1.1.0', 'mwparserfromhell >= 0.5.4'],
|
install_requires=['pysqlite3 >= 0.4.3', 'chevron >= 0.13.1', 'bbcode >= 1.1.0', 'mwparserfromhell >= 0.5.4', 'flask >= 1.1.2'],
|
||||||
entry_points={
|
entry_points={
|
||||||
'console_scripts': [
|
'console_scripts': [
|
||||||
'epilogue = epilogue:main'
|
'epilogue = epilogue:main',
|
||||||
|
'gclredirector = epilogue.redirector:main'
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
@@ -11,4 +11,11 @@ ul.boards { margin-left: 0; padding-left: 0; }
|
|||||||
.label { font-weight: bold }
|
.label { font-weight: bold }
|
||||||
article { border-top: 1px solid black; }
|
article { border-top: 1px solid black; }
|
||||||
section { margin-top: 15px; margin-bottom: 15px; }
|
section { margin-top: 15px; margin-bottom: 15px; }
|
||||||
.next { float: right; }
|
|
||||||
|
.next { float: right; }
|
||||||
|
.pagination { margin-bottom: 10px; }
|
||||||
|
.pagination ul { list-style-type: none; margin-left: 0; padding-left: 0; display: inline; }
|
||||||
|
.pagination li { display: inline; }
|
||||||
|
|
||||||
|
.page { padding-top: 15px; }
|
||||||
|
.page table { width: 100%; }
|
@@ -1,4 +1,5 @@
|
|||||||
{{>header}}
|
{{>header}}
|
||||||
|
{{>forums_notice}}
|
||||||
{{#categories}}
|
{{#categories}}
|
||||||
<h2 class="category-name">{{name}}</h2>
|
<h2 class="category-name">{{name}}</h2>
|
||||||
{{>child_boards}}
|
{{>child_boards}}
|
||||||
|
9
templates/category.mustache
Normal file
9
templates/category.mustache
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{{>header}}
|
||||||
|
{{>wiki_notice}}
|
||||||
|
<h2>{{pagename}}</h2>
|
||||||
|
<ul>
|
||||||
|
{{#pages}}
|
||||||
|
<li><a href="{{url}}">{{title}}</a></li>
|
||||||
|
{{/pages}}
|
||||||
|
</ul>
|
||||||
|
{{>footer}}
|
11
templates/index.mustache
Normal file
11
templates/index.mustache
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
{{>header}}
|
||||||
|
Welcome to the <b>Glitch City Laboratories Archives</b>.
|
||||||
|
<p>Glitch City Laboratories was a Pokémon glitch website that existed from March 2006 to September 2020 (<a href="forums/board-2/thread-9114/page-0.html">announcement of closure</a>). This is an <b>archive</b> of content from the website prior to its closure.</p>
|
||||||
|
<p>Further development and discussion is happening at <b><a href="https://discord.com/invite/EA7jxJ6">Glitch City Research Institute</a></b>, the successor community.</p>
|
||||||
|
<p>The <b><a href="https://glitchcity.wiki/">Glitch City Wiki</a></b> is the continuation of the Glitch City Laboratories wiki.</p>
|
||||||
|
<h2>Archives</h2>
|
||||||
|
<ul>
|
||||||
|
<li><a href="forums">Forums</a> (<a href="forums.tar.gz">.tar.gz</a>) (<a href="forums.sql.gz">.sql.gz</a>) (<a href="forums.sqlite.gz">.sqlite.gz</a>)</li>
|
||||||
|
<li><a href="wiki">Wiki</a> (<a href="wiki.tar.gz">.tar.gz</a>) (<a href="wiki.xml.gz">.xml.gz</a>)</li>
|
||||||
|
</ul>
|
||||||
|
{{>footer}}
|
@@ -1,4 +0,0 @@
|
|||||||
<html>
|
|
||||||
<head><meta http-equiv="refresh" content="0; url=page-0.html" /></head>
|
|
||||||
<body><p><a href="page-0.html">Redirect</a></p></body>
|
|
||||||
</html>
|
|
@@ -1,6 +1,7 @@
|
|||||||
{{>header}}
|
{{>header}}
|
||||||
|
{{>wiki_notice}}
|
||||||
<h2>{{page.title}}</h2>
|
<h2>{{page.title}}</h2>
|
||||||
<article>
|
<article class="page">
|
||||||
{{text}}
|
{{{text}}}
|
||||||
</article>
|
</article>
|
||||||
{{>footer}}
|
{{>footer}}
|
5
templates/partials/forums_notice.mustache
Normal file
5
templates/partials/forums_notice.mustache
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
<div class="notice">
|
||||||
|
<p>Glitch City Laboratories closed on 1 September 2020 (<a href="{{base}}board-2/thread-9114/page-0.html">announcement</a>). This is an <b>archived</b> copy of a thread from Glitch City Laboratories Forums.</p>
|
||||||
|
<p>You can join <a href="https://discord.com/invite/EA7jxJ6">Glitch City Research Institute</a> to ask questions or discuss current developments.</p>
|
||||||
|
<p>You may also download the archive of this forum in <a href="{{base}}../forums.tar.gz">.tar.gz</a>, <a href="{{base}}../forums.sql.gz">.sql.gz</a>, or <a href="{{base}}../forums.sqlite.gz">.sqlite.gz</a> formats.</p>
|
||||||
|
</div>
|
@@ -2,6 +2,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<title>Glitch City Laboratories Archives{{title}}</title>
|
<title>Glitch City Laboratories Archives{{title}}</title>
|
||||||
<link href="{{base}}style.css" rel="stylesheet" type="text/css" />
|
<link href="{{base}}style.css" rel="stylesheet" type="text/css" />
|
||||||
|
<meta charset="UTF-8" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1><a href="{{base}}">Glitch City Laboratories Archives</a></h1>
|
<h1><a href="{{base}}">Glitch City Laboratories Archives</a></h1>
|
@@ -1,4 +1,9 @@
|
|||||||
<div class="pagination">
|
<div class="pagination">
|
||||||
<a class="prev" href="page-{{prev}}.html">Previous Page</a>
|
<a class="prev" href="page-{{prev}}.html">Previous Page</a>
|
||||||
|
<ul>
|
||||||
|
{{#page_links}}
|
||||||
|
<li><a href="{{link}}">{{label}}</a></li>
|
||||||
|
{{/page_links}}
|
||||||
|
</ul>
|
||||||
<a class="next" href="page-{{next}}.html">Next Page</a>
|
<a class="next" href="page-{{next}}.html">Next Page</a>
|
||||||
</div>
|
</div>
|
6
templates/partials/wiki_notice.mustache
Normal file
6
templates/partials/wiki_notice.mustache
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<div class="notice">
|
||||||
|
<p>Glitch City Laboratories closed on 1 September 2020 (<a href="{{base}}../forums/board-2/thread-9114/page-0.html">announcement</a>). This is an <b>archived</b> copy of an article from Glitch City Laboratories wiki.</p>
|
||||||
|
<p><b>A live version of this article is available at the <a href="https://glitchcity.wiki/">Glitch City Wiki</a> <a href="https://glitchcity.wiki/{{pagename}}">here</a>.</b></p>
|
||||||
|
<p>You can join <a href="https://discord.com/invite/EA7jxJ6">Glitch City Research Institute</a> to ask questions or discuss current developments.</p>
|
||||||
|
<p>You may also download the archive of the wiki in <a href="{{base}}../wiki.tar.gz">.tar.gz</a> or <a href="{{base}}../wiki.xml.gz">.xml.gz</a> formats.</p>
|
||||||
|
</div>
|
@@ -1,4 +1,5 @@
|
|||||||
{{>header}}
|
{{>header}}
|
||||||
|
{{>forums_notice}}
|
||||||
<h2><a href="../">{{board.name}}</a></h2>
|
<h2><a href="../">{{board.name}}</a></h2>
|
||||||
<h3>{{thread.subject}} - Page {{next}}</h3>
|
<h3>{{thread.subject}} - Page {{next}}</h3>
|
||||||
{{>pagination}}
|
{{>pagination}}
|
||||||
|
4
templates/redirect.mustache
Normal file
4
templates/redirect.mustache
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
<html>
|
||||||
|
<head><meta http-equiv="refresh" content="0; url={{target}}" /></head>
|
||||||
|
<body><p><a href="{{target}}">Redirect</a></p></body>
|
||||||
|
</html>
|
@@ -1,16 +1,19 @@
|
|||||||
{{>header}}
|
{{>header}}
|
||||||
|
{{>forums_notice}}
|
||||||
<h2>{{board.name}}</h2>
|
<h2>{{board.name}}</h2>
|
||||||
<table id="threads">
|
<table id="threads">
|
||||||
<tr>
|
<tr>
|
||||||
<th>Title</th>
|
<th>Title</th>
|
||||||
<th>Poster</th>
|
<th>Poster</th>
|
||||||
<th>Date</th>
|
<th>Date</th>
|
||||||
|
<th>Replies</th>
|
||||||
</tr>
|
</tr>
|
||||||
{{#threads}}
|
{{#threads}}
|
||||||
<tr>
|
<tr>
|
||||||
<td class="thread-subject"><a href="thread-{{id}}">{{subject}}</a></td>
|
<td class="thread-subject"><a href="thread-{{id}}">{{subject}}</a></td>
|
||||||
<td class="thread-poster">{{poster_name}}</td>
|
<td class="thread-poster">{{poster_name}}</td>
|
||||||
<td class="thread-date">{{datetime}}</td>
|
<td class="thread-date">{{datetime}}</td>
|
||||||
|
<td class="replies">{{num_replies}}</td>
|
||||||
</tr>
|
</tr>
|
||||||
{{/threads}}
|
{{/threads}}
|
||||||
</table>
|
</table>
|
||||||
|
Reference in New Issue
Block a user