From c9ef1cccb14ec64c4a589f2c0bcf6d93e7abb0bb Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Thu, 12 Nov 2020 17:05:38 +0000 Subject: [PATCH] Move to external css --- webapp.py | 126 +++++------ webapp_about.py | 39 ++-- webapp_calendar.py | 82 ++++--- webapp_login.py | 10 +- webapp_moderation.py | 96 ++++----- webapp_person_options.py | 18 +- webapp_post.py | 17 +- webapp_profile.py | 452 +++++++++++++++++++-------------------- webapp_suspended.py | 17 +- webapp_tos.py | 30 ++- 10 files changed, 395 insertions(+), 492 deletions(-) diff --git a/webapp.py b/webapp.py index 02061882b..47d23f1da 100644 --- a/webapp.py +++ b/webapp.py @@ -8,7 +8,6 @@ __status__ = "Production" import os from shutil import copyfile -from utils import getCSS from utils import getNicknameFromActor from utils import getDomainFromActor from utils import locatePost @@ -16,7 +15,7 @@ from utils import loadJson from shares import getValidSharedItemID from webapp_utils import getAltPath from webapp_utils import getIconsDir -from webapp_utils import htmlHeader +from webapp_utils import htmlHeaderWithExternalStyle from webapp_utils import htmlFooter from webapp_post import individualPostAsHtml @@ -34,15 +33,13 @@ def htmlFollowingList(cssCache: {}, baseDir: str, if os.path.isfile(baseDir + '/epicyon.css'): cssFilename = baseDir + '/epicyon.css' - profileCSS = getCSS(baseDir, cssFilename, cssCache) - if profileCSS: - followingListHtml = htmlHeader(cssFilename, profileCSS) - for followingAddress in followingList: - if followingAddress: - followingListHtml += \ - '

@' + followingAddress + '

' - followingListHtml += htmlFooter() - msg = followingListHtml + followingListHtml = htmlHeaderWithExternalStyle(cssFilename) + for followingAddress in followingList: + if followingAddress: + followingListHtml += \ + '

@' + followingAddress + '

' + followingListHtml += htmlFooter() + msg = followingListHtml return msg return '' @@ -55,18 +52,16 @@ def htmlHashtagBlocked(cssCache: {}, baseDir: str, translate: {}) -> str: if os.path.isfile(baseDir + '/suspended.css'): cssFilename = baseDir + '/suspended.css' - blockedHashtagCSS = getCSS(baseDir, cssFilename, cssCache) - if blockedHashtagCSS: - blockedHashtagForm = htmlHeader(cssFilename, blockedHashtagCSS) - blockedHashtagForm += '
\n' - blockedHashtagForm += \ - '

' + \ - translate['Hashtag Blocked'] + '

\n' - blockedHashtagForm += \ - '

See ' + \ - translate['Terms of Service'] + '

\n' - blockedHashtagForm += '
\n' - blockedHashtagForm += htmlFooter() + blockedHashtagForm = htmlHeaderWithExternalStyle(cssFilename) + blockedHashtagForm += '
\n' + blockedHashtagForm += \ + '

' + \ + translate['Hashtag Blocked'] + '

\n' + blockedHashtagForm += \ + '

See ' + \ + translate['Terms of Service'] + '

\n' + blockedHashtagForm += '
\n' + blockedHashtagForm += htmlFooter() return blockedHashtagForm @@ -108,8 +103,7 @@ def htmlRemoveSharedItem(cssCache: {}, translate: {}, baseDir: str, if os.path.isfile(baseDir + '/follow.css'): cssFilename = baseDir + '/follow.css' - profileStyle = getCSS(baseDir, cssFilename, cssCache) - sharesStr = htmlHeader(cssFilename, profileStyle) + sharesStr = htmlHeaderWithExternalStyle(cssFilename) sharesStr += '
\n' sharesStr += '
\n' sharesStr += '
\n' @@ -179,45 +173,40 @@ def htmlDeletePost(cssCache: {}, if os.path.isfile(baseDir + '/epicyon.css'): cssFilename = baseDir + '/epicyon.css' - profileStyle = getCSS(baseDir, cssFilename, cssCache) - if profileStyle: - if httpPrefix != 'https': - profileStyle = profileStyle.replace('https://', - httpPrefix + '://') - deletePostStr = htmlHeader(cssFilename, profileStyle) - deletePostStr += \ - individualPostAsHtml(True, recentPostsCache, maxRecentPosts, - iconsDir, translate, pageNumber, - baseDir, session, wfRequest, personCache, - nickname, domain, port, postJsonObject, - None, True, False, - httpPrefix, projectVersion, 'outbox', - YTReplacementDomain, - showPublishedDateOnly, - False, False, False, False, False) - deletePostStr += '
' - deletePostStr += \ - '

' + \ - translate['Delete this post?'] + '

' + deletePostStr = htmlHeaderWithExternalStyle(cssFilename) + deletePostStr += \ + individualPostAsHtml(True, recentPostsCache, maxRecentPosts, + iconsDir, translate, pageNumber, + baseDir, session, wfRequest, personCache, + nickname, domain, port, postJsonObject, + None, True, False, + httpPrefix, projectVersion, 'outbox', + YTReplacementDomain, + showPublishedDateOnly, + False, False, False, False, False) + deletePostStr += '
' + deletePostStr += \ + '

' + \ + translate['Delete this post?'] + '

' - postActor = getAltPath(actor, domainFull, callingDomain) - deletePostStr += \ - '
\n' - deletePostStr += \ - ' \n' - deletePostStr += \ - ' \n' - deletePostStr += \ - ' \n' - deletePostStr += \ - ' \n' - deletePostStr += '
\n' - deletePostStr += '
\n' - deletePostStr += htmlFooter() + postActor = getAltPath(actor, domainFull, callingDomain) + deletePostStr += \ + '
\n' + deletePostStr += \ + ' \n' + deletePostStr += \ + ' \n' + deletePostStr += \ + ' \n' + deletePostStr += \ + ' \n' + deletePostStr += '
\n' + deletePostStr += '
\n' + deletePostStr += htmlFooter() return deletePostStr @@ -238,8 +227,7 @@ def htmlFollowConfirm(cssCache: {}, translate: {}, baseDir: str, if os.path.isfile(baseDir + '/follow.css'): cssFilename = baseDir + '/follow.css' - profileStyle = getCSS(baseDir, cssFilename, cssCache) - followStr = htmlHeader(cssFilename, profileStyle) + followStr = htmlHeaderWithExternalStyle(cssFilename) followStr += '