From b3f4e720d063bf039a373e283b02fb8eae952dc0 Mon Sep 17 00:00:00 2001 From: David Lynch Date: Sat, 29 Sep 2018 12:00:41 -0500 Subject: [PATCH] Include AlternateHistory as a xenforo site Fixes #18. Well, makes it unnecessary. Strictly, it'd maybe still be useful to show how to do a XenForo site via `arbitary`. --- sites/xenforo.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/sites/xenforo.py b/sites/xenforo.py index 386ac0f..60b760c 100644 --- a/sites/xenforo.py +++ b/sites/xenforo.py @@ -265,3 +265,11 @@ class QuestionableQuesting(XenForo): @register class QuestionableQuestingIndex(QuestionableQuesting, XenForoIndex): pass + +@register +class AlternateHistory(XenForo): + domain = 'www.alternatehistory.com/forum' + +@register +class AlternateHistoryIndex(AlternateHistory, XenForoIndex): + pass