forked from indymedia/epicyon
Relative paths
parent
6a4ab8c411
commit
ec4a80e5d5
|
@ -3549,7 +3549,7 @@ def htmlTimeline(defaultTimeline: str, \
|
||||||
if len(line)>0:
|
if len(line)>0:
|
||||||
# show follow approvals icon
|
# show follow approvals icon
|
||||||
followApprovals= \
|
followApprovals= \
|
||||||
'<a href="'+actor+'/followers"><img loading="lazy" class="timelineicon" alt="'+ \
|
'<a href="'+usersPath+'/followers"><img loading="lazy" class="timelineicon" alt="'+ \
|
||||||
translate['Approve follow requests']+ \
|
translate['Approve follow requests']+ \
|
||||||
'" title="'+translate['Approve follow requests']+ \
|
'" title="'+translate['Approve follow requests']+ \
|
||||||
'" src="/'+iconsDir+'/person.png"/></a>'
|
'" src="/'+iconsDir+'/person.png"/></a>'
|
||||||
|
@ -3558,17 +3558,17 @@ def htmlTimeline(defaultTimeline: str, \
|
||||||
moderationButtonStr=''
|
moderationButtonStr=''
|
||||||
if moderator:
|
if moderator:
|
||||||
moderationButtonStr= \
|
moderationButtonStr= \
|
||||||
'<a href="'+actor+'/moderation"><button class="'+ \
|
'<a href="'+usersPath+'/moderation"><button class="'+ \
|
||||||
moderationButton+'"><span>'+ \
|
moderationButton+'"><span>'+ \
|
||||||
translate['Mod']+' </span></button></a>'
|
translate['Mod']+' </span></button></a>'
|
||||||
|
|
||||||
sharesButtonStr= \
|
sharesButtonStr= \
|
||||||
'<a href="'+actor+'/tlshares"><button class="'+ \
|
'<a href="'+usersPath+'/tlshares"><button class="'+ \
|
||||||
sharesButton+'"><span>'+translate['Shares']+ \
|
sharesButton+'"><span>'+translate['Shares']+ \
|
||||||
' </span></button></a>'
|
' </span></button></a>'
|
||||||
|
|
||||||
bookmarksButtonStr= \
|
bookmarksButtonStr= \
|
||||||
'<a href="'+actor+'/tlbookmarks"><button class="'+ \
|
'<a href="'+usersPath+'/tlbookmarks"><button class="'+ \
|
||||||
bookmarksButton+'"><span>'+translate['Bookmarks']+ \
|
bookmarksButton+'"><span>'+translate['Bookmarks']+ \
|
||||||
' </span></button></a>'
|
' </span></button></a>'
|
||||||
|
|
||||||
|
@ -3581,24 +3581,24 @@ def htmlTimeline(defaultTimeline: str, \
|
||||||
if boxName!='tlblogs':
|
if boxName!='tlblogs':
|
||||||
if not manuallyApproveFollowers:
|
if not manuallyApproveFollowers:
|
||||||
newPostButtonStr= \
|
newPostButtonStr= \
|
||||||
'<a href="'+actor+'/newpost"><img loading="lazy" src="/'+ \
|
'<a href="'+usersPath+'/newpost"><img loading="lazy" src="/'+ \
|
||||||
iconsDir+'/newpost.png" title="'+ \
|
iconsDir+'/newpost.png" title="'+ \
|
||||||
translate['Create a new post']+'" alt="'+ \
|
translate['Create a new post']+'" alt="'+ \
|
||||||
translate['Create a new post']+'" class="timelineicon"/></a>'
|
translate['Create a new post']+'" class="timelineicon"/></a>'
|
||||||
else:
|
else:
|
||||||
newPostButtonStr= \
|
newPostButtonStr= \
|
||||||
'<a href="'+actor+'/newfollowers"><img loading="lazy" src="/'+ \
|
'<a href="'+usersPath+'/newfollowers"><img loading="lazy" src="/'+ \
|
||||||
iconsDir+'/newpost.png" title="'+translate['Create a new post']+ \
|
iconsDir+'/newpost.png" title="'+translate['Create a new post']+ \
|
||||||
'" alt="'+translate['Create a new post']+'" class="timelineicon"/></a>'
|
'" alt="'+translate['Create a new post']+'" class="timelineicon"/></a>'
|
||||||
else:
|
else:
|
||||||
newPostButtonStr= \
|
newPostButtonStr= \
|
||||||
'<a href="'+actor+'/newblog"><img loading="lazy" src="/'+ \
|
'<a href="'+usersPath+'/newblog"><img loading="lazy" src="/'+ \
|
||||||
iconsDir+'/newpost.png" title="'+ \
|
iconsDir+'/newpost.png" title="'+ \
|
||||||
translate['Create a new post']+'" alt="'+ \
|
translate['Create a new post']+'" alt="'+ \
|
||||||
translate['Create a new post']+'" class="timelineicon"/></a>'
|
translate['Create a new post']+'" class="timelineicon"/></a>'
|
||||||
else:
|
else:
|
||||||
newPostButtonStr= \
|
newPostButtonStr= \
|
||||||
'<a href="'+actor+'/newdm"><img loading="lazy" src="/'+ \
|
'<a href="'+usersPath+'/newdm"><img loading="lazy" src="/'+ \
|
||||||
iconsDir+'/newpost.png" title="'+translate['Create a new DM']+ \
|
iconsDir+'/newpost.png" title="'+translate['Create a new DM']+ \
|
||||||
'" alt="'+translate['Create a new DM']+'" class="timelineicon"/></a>'
|
'" alt="'+translate['Create a new DM']+'" class="timelineicon"/></a>'
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue