\n'
profileHeaderStr += ' \n'
- iconsPath = getIconsWebPath(baseDir)
profileHeaderStr += \
getLeftColumnContent(baseDir, 'news', domainFull,
httpPrefix, translate,
- iconsPath, False,
+ 'icons', False,
False, None, rssIconAtTop, True,
True)
profileHeaderStr += ' | \n'
@@ -155,11 +151,10 @@ def htmlFrontScreen(rssIconAtTop: bool,
# Footer which is only used for system accounts
profileFooterStr = ' \n'
profileFooterStr += ' \n'
- iconsPath = getIconsWebPath(baseDir)
profileFooterStr += \
getRightColumnContent(baseDir, 'news', domainFull,
httpPrefix, translate,
- iconsPath, False, False,
+ 'icons', False, False,
newswire, False,
False, None, False, False,
False, True, authorized, True)
diff --git a/webapp_headerbuttons.py b/webapp_headerbuttons.py
index ae987be95..92486927f 100644
--- a/webapp_headerbuttons.py
+++ b/webapp_headerbuttons.py
@@ -212,7 +212,7 @@ def headerButtonsTimeline(defaultTimeline: str,
tlStr += \
' '
@@ -239,7 +239,7 @@ def headerButtonsTimeline(defaultTimeline: str,
tlStr += \
'  \n'
@@ -256,7 +256,7 @@ def headerButtonsTimeline(defaultTimeline: str,
tlStr += \
'  \n'
@@ -278,7 +278,7 @@ def headerButtonsTimeline(defaultTimeline: str,
tlStr += \
'' + \
- ' '
@@ -296,7 +296,7 @@ def headerButtonsTimeline(defaultTimeline: str,
tlStr += \
'' + \
- ' '
diff --git a/webapp_post.py b/webapp_post.py
index d2bad9612..bc7f67940 100644
--- a/webapp_post.py
+++ b/webapp_post.py
@@ -53,7 +53,6 @@ from webapp_utils import addEmojiToDisplayName
from webapp_utils import postContainsPublic
from webapp_utils import getContentWarningButton
from webapp_utils import getPostAttachmentsAsHtml
-from webapp_utils import getIconsWebPath
from webapp_utils import htmlHeaderWithExternalStyle
from webapp_utils import htmlFooter
from webapp_media import addEmbeddedElements
@@ -207,7 +206,7 @@ def getBrokenLinkSubstitute(iconsPath: str) -> str:
an image is broken
"""
return " onerror=\"this.onerror=null; this.src='" + \
- iconsPath + "/avatar_default.png'\""
+ "icons/avatar_default.png'\""
def getAvatarImageHtml(showAvatarOptions: bool,
@@ -224,7 +223,7 @@ def getAvatarImageHtml(showAvatarOptions: bool,
avatarLink += \
' \n'
+ getBrokenLinkSubstitute('icons') + '/>\n'
if showAvatarOptions and \
domainFull + '/users/' + nickname not in postActor:
@@ -237,14 +236,14 @@ def getAvatarImageHtml(showAvatarOptions: bool,
' \n'
+ getBrokenLinkSubstitute('icons') + '/>\n'
else:
# don't link to the person options for the news account
avatarLink += \
' \n'
+ getBrokenLinkSubstitute('icons') + '/>\n'
return avatarLink.strip()
@@ -303,7 +302,7 @@ def getReplyIconHtml(nickname: str, isPublicRepeat: bool,
' ' + \
' \n'
+ ' |" src="/icons/reply.png"/>\n'
return replyStr
@@ -336,7 +335,7 @@ def getEditIconHtml(baseDir: str, nickname: str, domainFull: str,
'" title="' + editBlogPostStr + '">' + \
' \n'
+ ' |" src="/icons/edit.png"/>\n'
else:
editStr += \
' ' + \
@@ -347,7 +346,7 @@ def getEditIconHtml(baseDir: str, nickname: str, domainFull: str,
'" title="' + editBlogPostStr + '">' + \
' \n'
+ ' |" src="/icons/edit.png"/>\n'
elif isEvent:
editEventStr = translate['Edit event']
editStr += \
@@ -359,7 +358,7 @@ def getEditIconHtml(baseDir: str, nickname: str, domainFull: str,
'" title="' + editEventStr + '">' + \
' \n'
+ ' |" src="/icons/edit.png"/>\n'
return editStr
@@ -401,7 +400,7 @@ def getAnnounceIconHtml(nickname: str, domainFull: str,
' ' + \
' \n'
+ ' |" src="/icons/' + announceIcon + '"/>\n'
return announceStr
@@ -459,7 +458,7 @@ def getLikeIconHtml(nickname: str, domainFull: str,
' ' + \
' \n'
+ ' |" src="/icons/' + likeIcon + '"/>\n'
return likeStr
@@ -497,7 +496,7 @@ def getBookmarkIconHtml(nickname: str, domainFull: str,
bookmarkStr += \
' ' + \
' \n'
return bookmarkStr
@@ -531,7 +530,7 @@ def getMuteIconHtml(isMuted: bool,
' \n'
+ '" src="/icons/mute.png"/>\n'
else:
muteStr = \
' \n'
+ '" src="/icons/unmute.png"/>\n'
return muteStr
@@ -573,7 +572,7 @@ def getDeleteIconHtml(nickname: str, domainFull: str,
' \n'
+ '" src="/icons/delete.png"/>\n'
return deleteStr
@@ -651,7 +650,7 @@ def boostOwnTootHtml(translate: {}, iconsPath) -> str:
return ' \n'
@@ -662,7 +661,7 @@ def announceUnattributedHtml(translate: {}, iconsPath: str,
"""
return ' \n' + \
' \n' + \
' @' + \
@@ -695,7 +694,7 @@ def announceWithDisplayNameHtml(translate: {},
return ' \n' + \
' \n \n'
else:
titleStr += \
- announceWithoutDisplayNameHtml(translate, iconsPath,
+ announceWithoutDisplayNameHtml(translate, 'icons',
announceNickname,
announceDomain,
postJsonObject)
else:
titleStr += \
- announceUnattributedHtml(translate, iconsPath,
+ announceUnattributedHtml(translate, 'icons',
postJsonObject)
else:
titleStr += \
- announceUnattributedHtml(translate, iconsPath, postJsonObject)
+ announceUnattributedHtml(translate, 'icons', postJsonObject)
return (titleStr, replyAvatarImageInPost,
containerClassIcons, containerClass)
@@ -817,7 +816,7 @@ def replyToYourselfHtml(translate: {}, iconsPath: str) -> str:
return ' \n'
@@ -827,8 +826,7 @@ def replyToUnknownHtml(translate: {}, iconsPath: str,
"""
return ' \n' + \
' \n' + \
' \n' + \
' ' + \
@@ -877,7 +874,7 @@ def getReplyWithoutDisplayName(translate: {}, iconsPath: str,
return ' ' + \
' \n' + ' @' + \
replyNickname + '@' + replyDomain + '\n'
@@ -915,7 +912,7 @@ def getPostTitleReplyHtml(baseDir: str,
containerClassIcons = 'containericons darker'
containerClass = 'container darker'
if postJsonObject['object']['inReplyTo'].startswith(postActor):
- titleStr += replyToYourselfHtml(translate, iconsPath)
+ titleStr += replyToYourselfHtml(translate, 'icons')
return (titleStr, replyAvatarImageInPost,
containerClassIcons, containerClass)
@@ -948,7 +945,7 @@ def getPostTitleReplyHtml(baseDir: str,
logPostTiming(enableTimingLog, postStartTime, '13.6')
titleStr += \
- getReplyHtml(translate, iconsPath,
+ getReplyHtml(translate, 'icons',
inReplyTo, replyDisplayName)
logPostTiming(enableTimingLog, postStartTime, '13.7')
@@ -984,18 +981,18 @@ def getPostTitleReplyHtml(baseDir: str,
replyAvatarImageInPost += \
'" alt=" "' + \
avatarPosition + \
- getBrokenLinkSubstitute(iconsPath) + \
+ getBrokenLinkSubstitute('icons') + \
'/>\n \n'
else:
inReplyTo = \
postJsonObject['object']['inReplyTo']
titleStr += \
- getReplyWithoutDisplayName(translate, iconsPath,
+ getReplyWithoutDisplayName(translate, 'icons',
inReplyTo,
replyNickname, replyDomain)
else:
titleStr += \
- replyToUnknownHtml(translate, iconsPath, postJsonObject)
+ replyToUnknownHtml(translate, 'icons', postJsonObject)
else:
postDomain = \
postJsonObject['object']['inReplyTo']
@@ -1006,7 +1003,7 @@ def getPostTitleReplyHtml(baseDir: str,
postDomain = postDomain.split('/', 1)[0]
if postDomain:
titleStr += \
- replyWithUnknownPathHtml(translate, iconsPath,
+ replyWithUnknownPathHtml(translate, 'icons',
postJsonObject, postDomain)
return (titleStr, replyAvatarImageInPost,
@@ -1050,7 +1047,7 @@ def getPostTitleHtml(baseDir: str,
postJsonObject,
postActor,
translate,
- iconsPath,
+ 'icons',
enableTimingLog,
postStartTime,
boxName,
@@ -1070,7 +1067,7 @@ def getPostTitleHtml(baseDir: str,
postJsonObject,
postActor,
translate,
- iconsPath,
+ 'icons',
enableTimingLog,
postStartTime,
boxName,
@@ -1225,7 +1222,7 @@ def individualPostAsHtml(allowDownloads: bool,
avatarUrl, postActor,
translate, avatarPosition,
pageNumber, messageIdStr,
- iconsPath)
+ 'icons')
avatarImageInPost = \
' ' + avatarLink + ' \n'
@@ -1322,7 +1319,7 @@ def individualPostAsHtml(allowDownloads: bool,
if showDMicon:
titleStr = \
titleStr + ' \n'
+ 'icons/dm.png" class="DMicon"/>\n'
# check if replying is permitted
commentsEnabled = True
@@ -1333,7 +1330,7 @@ def individualPostAsHtml(allowDownloads: bool,
replyStr = getReplyIconHtml(nickname, isPublicRepeat,
showIcons, commentsEnabled,
postJsonObject, pageNumberParam,
- iconsPath, translate)
+ 'icons', translate)
logPostTiming(enableTimingLog, postStartTime, '10')
@@ -1343,7 +1340,7 @@ def individualPostAsHtml(allowDownloads: bool,
editStr = getEditIconHtml(baseDir, nickname, domainFull,
postJsonObject, actorNickname,
- translate, iconsPath, isEvent)
+ translate, 'icons', isEvent)
announceStr = \
getAnnounceIconHtml(nickname, domainFull,
@@ -1354,7 +1351,7 @@ def individualPostAsHtml(allowDownloads: bool,
translate,
pageNumberParam,
timelinePostBookmark,
- boxName, iconsPath)
+ boxName, 'icons')
logPostTiming(enableTimingLog, postStartTime, '12')
@@ -1373,7 +1370,7 @@ def individualPostAsHtml(allowDownloads: bool,
postStartTime,
translate, pageNumberParam,
timelinePostBookmark,
- boxName, iconsPath)
+ boxName, 'icons')
logPostTiming(enableTimingLog, postStartTime, '12.5')
@@ -1386,7 +1383,7 @@ def individualPostAsHtml(allowDownloads: bool,
postStartTime, boxName,
pageNumberParam,
timelinePostBookmark,
- iconsPath)
+ 'icons')
logPostTiming(enableTimingLog, postStartTime, '12.9')
@@ -1401,7 +1398,7 @@ def individualPostAsHtml(allowDownloads: bool,
nickname, domainFull,
allowDeletion,
pageNumberParam,
- iconsPath,
+ 'icons',
boxName,
timelinePostBookmark,
translate)
@@ -1413,7 +1410,7 @@ def individualPostAsHtml(allowDownloads: bool,
messageId,
postJsonObject,
pageNumberParam,
- iconsPath,
+ 'icons',
translate)
logPostTiming(enableTimingLog, postStartTime, '13.1')
@@ -1430,7 +1427,7 @@ def individualPostAsHtml(allowDownloads: bool,
postJsonObject,
postActor,
translate,
- iconsPath,
+ 'icons',
enableTimingLog,
postStartTime,
boxName,
@@ -1627,7 +1624,6 @@ def htmlIndividualPost(cssCache: {},
showPublishedDateOnly: bool) -> str:
"""Show an individual post as html
"""
- iconsPath = getIconsWebPath(baseDir)
postStr = ''
if likedBy:
likedByNickname = getNicknameFromActor(likedBy)
@@ -1663,7 +1659,7 @@ def htmlIndividualPost(cssCache: {},
postStr += \
individualPostAsHtml(True, recentPostsCache, maxRecentPosts,
- iconsPath, translate, None,
+ 'icons', translate, None,
baseDir, session, wfRequest, personCache,
nickname, domain, port, postJsonObject,
None, True, False,
@@ -1686,7 +1682,7 @@ def htmlIndividualPost(cssCache: {},
postStr = \
individualPostAsHtml(True, recentPostsCache,
maxRecentPosts,
- iconsPath, translate, None,
+ 'icons', translate, None,
baseDir, session, wfRequest,
personCache,
nickname, domain, port,
@@ -1715,7 +1711,7 @@ def htmlIndividualPost(cssCache: {},
postStr += \
individualPostAsHtml(True, recentPostsCache,
maxRecentPosts,
- iconsPath, translate, None,
+ 'icons', translate, None,
baseDir, session, wfRequest,
personCache,
nickname, domain, port, item,
@@ -1742,14 +1738,13 @@ def htmlPostReplies(cssCache: {},
showPublishedDateOnly: bool) -> str:
"""Show the replies to an individual post as html
"""
- iconsPath = getIconsWebPath(baseDir)
repliesStr = ''
if repliesJson.get('orderedItems'):
for item in repliesJson['orderedItems']:
repliesStr += \
individualPostAsHtml(True, recentPostsCache,
maxRecentPosts,
- iconsPath, translate, None,
+ 'icons', translate, None,
baseDir, session, wfRequest, personCache,
nickname, domain, port, item,
None, True, False,
diff --git a/webapp_profile.py b/webapp_profile.py
index a7f3df790..fce7f2a2f 100644
--- a/webapp_profile.py
+++ b/webapp_profile.py
@@ -35,7 +35,6 @@ from jami import getJamiAddress
from webapp_frontscreen import htmlFrontScreen
from webapp_utils import scheduledPostsExist
from webapp_utils import getPersonAvatarUrl
-from webapp_utils import getIconsWebPath
from webapp_utils import htmlHeaderWithExternalStyle
from webapp_utils import htmlFooter
from webapp_utils import addEmojiToDisplayName
@@ -256,7 +255,6 @@ def htmlProfileAfterSearch(cssCache: {},
profileStr += ' \n'
profileStr += '\n'
- iconsPath = getIconsWebPath(baseDir)
i = 0
for item in parseUserFeed(session, outboxUrl, asHeader,
projectVersion, httpPrefix, domain):
@@ -268,7 +266,7 @@ def htmlProfileAfterSearch(cssCache: {},
continue
profileStr += \
individualPostAsHtml(True, recentPostsCache, maxRecentPosts,
- iconsPath, translate, None, baseDir,
+ 'icons', translate, None, baseDir,
session, cachedWebfingers, personCache,
nickname, domain, port,
item, avatarUrl, False, False,
@@ -313,7 +311,7 @@ def getProfileHeader(baseDir: str, nickname: str, domain: str,
' ' + \
- ' \n'
htmlStr += ' ' + profileDescriptionShort + ' \n'
htmlStr += loginButton
@@ -481,17 +479,16 @@ def htmlProfile(rssIconAtTop: bool,
donateSection += ' \n'
donateSection += '\n'
- iconsPath = getIconsWebPath(baseDir)
if authorized:
editProfileStr = \
'' + \
- ' \n'
logoutStr = \
'' + \
- ' \n'
@@ -564,7 +561,7 @@ def htmlProfile(rssIconAtTop: bool,
avatarUrl = profileJson['icon']['url']
profileHeaderStr = \
getProfileHeader(baseDir, nickname, domain,
- domainFull, translate, iconsPath,
+ domainFull, translate, 'icons',
defaultTimeline, displayName,
avatarDescription,
profileDescriptionShort,
@@ -672,7 +669,6 @@ def htmlProfilePosts(recentPostsCache: {}, maxRecentPosts: int,
"""Shows posts on the profile screen
These should only be public posts
"""
- iconsPath = getIconsWebPath(baseDir)
separatorStr = htmlPostSeparator(baseDir, None)
profileStr = ''
maxItems = 4
@@ -697,7 +693,7 @@ def htmlProfilePosts(recentPostsCache: {}, maxRecentPosts: int,
postStr = \
individualPostAsHtml(True, recentPostsCache,
maxRecentPosts,
- iconsPath, translate, None,
+ 'icons', translate, None,
baseDir, session, wfRequest,
personCache,
nickname, domain, port, item,
@@ -728,7 +724,6 @@ def htmlProfileFollowing(translate: {}, baseDir: str, httpPrefix: str,
"""
profileStr = ''
- iconsPath = getIconsWebPath(baseDir)
if authorized and pageNumber:
if authorized and pageNumber > 1:
# page up arrow
@@ -737,7 +732,7 @@ def htmlProfileFollowing(translate: {}, baseDir: str, httpPrefix: str,
' \n' + \
' \n'
@@ -757,7 +752,7 @@ def htmlProfileFollowing(translate: {}, baseDir: str, httpPrefix: str,
' \n' + \
' \n'
diff --git a/webapp_search.py b/webapp_search.py
index 2733fe8cc..8015d75b2 100644
--- a/webapp_search.py
+++ b/webapp_search.py
@@ -23,7 +23,6 @@ from utils import getHashtagCategory
from feeds import rss2TagHeader
from feeds import rss2TagFooter
from webapp_utils import getAltPath
-from webapp_utils import getIconsWebPath
from webapp_utils import getImageFile
from webapp_utils import htmlHeaderWithExternalStyle
from webapp_utils import htmlFooter
@@ -102,7 +101,6 @@ def htmlSearchSharedItems(cssCache: {}, translate: {},
callingDomain: str) -> str:
"""Search results for shared items
"""
- iconsPath = getIconsWebPath(baseDir)
currPage = 1
ctr = 0
sharedItemsForm = ''
@@ -215,7 +213,7 @@ def htmlSearchSharedItems(cssCache: {}, translate: {},
'" type="submit" name="submitSearch">\n'
sharedItemsForm += \
' \n'
sharedItemsForm += \
' \n'
+ 'icons/logorss.png" />\n'
# edit the category for this hashtag
if isEditor(baseDir, nickname):
@@ -711,7 +707,7 @@ def htmlHashtagSearch(cssCache: {},
' \n \n'
@@ -756,7 +752,7 @@ def htmlHashtagSearch(cssCache: {},
postStr = \
individualPostAsHtml(allowDownloads, recentPostsCache,
maxRecentPosts,
- iconsPath, translate, None,
+ 'icons', translate, None,
baseDir, session, wfRequest,
personCache,
nickname, domain, port,
@@ -781,7 +777,7 @@ def htmlHashtagSearch(cssCache: {},
' \n' + \
'  ' + \
' '
diff --git a/webapp_timeline.py b/webapp_timeline.py
index 526f37fca..2895bb931 100644
--- a/webapp_timeline.py
+++ b/webapp_timeline.py
@@ -12,7 +12,6 @@ from utils import isEditor
from utils import removeIdEnding
from follow import followerApprovalActive
from person import isPersonSnoozed
-from webapp_utils import getIconsWebPath
from webapp_utils import htmlPostSeparator
from webapp_utils import getBannerFile
from webapp_utils import htmlHeaderWithExternalStyle
@@ -112,10 +111,6 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str,
if boxName == 'moderation':
os.remove(newReportFile)
- # directory where icons are found
- # This changes depending upon theme
- iconsPath = getIconsWebPath(baseDir)
-
separatorStr = ''
if boxName != 'tlmedia':
separatorStr = htmlPostSeparator(baseDir, None)
@@ -222,7 +217,7 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str,
'class="timelineicon" alt="' + \
translate['Approve follow requests'] + \
'" title="' + translate['Approve follow requests'] + \
- '" src="/' + iconsPath + '/person.png"/>\n'
+ '" src="/icons/person.png"/>\n'
break
logTimelineTiming(enableTimingLog, timelineStartTime, boxName, '3')
@@ -279,7 +274,7 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str,
newPostButtonStr += \
' \n'
@@ -295,7 +290,7 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str,
newPostButtonStr += \
' \n'
@@ -309,7 +304,7 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str,
newPostButtonStr += \
' \n'
@@ -323,7 +318,7 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str,
newPostButtonStr += \
' \n'
@@ -338,7 +333,7 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str,
newPostButtonStr += \
' \n'
@@ -352,7 +347,7 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str,
newPostButtonStr += \
' \n'
@@ -388,7 +383,7 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str,
sharesButtonStr, bookmarksButtonStr,
eventsButtonStr, moderationButtonStr,
newPostButtonStr, baseDir, nickname,
- domain, iconsPath, timelineStartTime,
+ domain, 'icons', timelineStartTime,
newCalendarEvent, calendarPath,
calendarImage, followApprovals,
iconsAsButtons)
@@ -411,7 +406,7 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str,
# left column
leftColumnStr = \
getLeftColumnContent(baseDir, nickname, domainFull,
- httpPrefix, translate, iconsPath,
+ httpPrefix, translate, 'icons',
editor, False, None, rssIconAtTop,
True, False)
tlStr += ' | ' + \
@@ -430,7 +425,7 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str,
sharesButtonStr, bookmarksButtonStr,
eventsButtonStr, moderationButtonStr,
newPostButtonStr, baseDir, nickname,
- domain, iconsPath, timelineStartTime,
+ domain, 'icons', timelineStartTime,
newCalendarEvent, calendarPath,
calendarImage, followApprovals,
iconsAsButtons)
@@ -495,7 +490,7 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str,
' \n' + \
' \n'
@@ -545,7 +540,7 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str,
currTlStr = \
individualPostAsHtml(False, recentPostsCache,
maxRecentPosts,
- iconsPath, translate, pageNumber,
+ 'icons', translate, pageNumber,
baseDir, session, wfRequest,
personCache,
nickname, domain, port,
@@ -577,7 +572,7 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str,
' \n' + \
' \n'
@@ -590,7 +585,7 @@ def htmlTimeline(cssCache: {}, defaultTimeline: str,
# right column
rightColumnStr = getRightColumnContent(baseDir, nickname, domainFull,
- httpPrefix, translate, iconsPath,
+ httpPrefix, translate, 'icons',
moderator, editor,
newswire, positiveVoting,
False, None, True,
@@ -662,13 +657,12 @@ def htmlSharesTimeline(translate: {}, pageNumber: int, itemsPerPage: int,
timelineStr = ''
if pageNumber > 1:
- iconsPath = getIconsWebPath(baseDir)
timelineStr += \
' \n' + \
' \n' + \
' \n'
@@ -686,13 +680,12 @@ def htmlSharesTimeline(translate: {}, pageNumber: int, itemsPerPage: int,
timelineStr += separatorStr
if not lastPage:
- iconsPath = getIconsWebPath(baseDir)
timelineStr += \
' \n' + \
' \n' + \
' \n'
diff --git a/webapp_utils.py b/webapp_utils.py
index 9119fc743..537122858 100644
--- a/webapp_utils.py
+++ b/webapp_utils.py
@@ -110,13 +110,13 @@ def headerButtonsFrontScreen(translate: {},
headerStr += \
' ' + \
- ' \n'
headerStr += \
' ' + \
- ' \n'
else:
@@ -390,12 +390,6 @@ def getPersonAvatarUrl(baseDir: str, personUrl: str, personCache: {},
return None
-def getIconsWebPath(baseDir: str) -> str:
- """Returns the web path where icons exist
- """
- return 'icons'
-
-
def scheduledPostsExist(baseDir: str, nickname: str, domain: str) -> bool:
"""Returns true if there are posts scheduled to be delivered
"""
@@ -832,7 +826,6 @@ def getPostAttachmentsAsHtml(postJsonObject: {}, boxName: str, translate: {},
def htmlPostSeparator(baseDir: str, column: str) -> str:
"""Returns the html for a timeline post separator image
"""
- iconsPath = getIconsWebPath(baseDir)
theme = getConfigParam(baseDir, 'theme')
filename = 'separator.png'
separatorClass = "postSeparatorImage"
@@ -844,7 +837,7 @@ def htmlPostSeparator(baseDir: str, column: str) -> str:
if os.path.isfile(separatorImageFilename):
separatorStr = \
'' + \
- ' ' + \
+ ' ' + \
' \n'
return separatorStr
|