mirror of https://gitlab.com/bashrc2/epicyon
Displaying website Url
parent
5a68eece77
commit
b27fa065b4
|
@ -4837,10 +4837,13 @@ class PubServer(BaseHTTPRequestHandler):
|
||||||
actorChanged = True
|
actorChanged = True
|
||||||
|
|
||||||
# change website
|
# change website
|
||||||
currentWebsite = getWebsite(actorJson,
|
currentWebsite = \
|
||||||
self.server.translate)
|
getWebsite(actorJson, self.server.translate)
|
||||||
|
print('websiteUrl: 0')
|
||||||
if fields.get('websiteUrl'):
|
if fields.get('websiteUrl'):
|
||||||
|
print('websiteUrl: 1 ' + fields['websiteUrl'])
|
||||||
if fields['websiteUrl'] != currentWebsite:
|
if fields['websiteUrl'] != currentWebsite:
|
||||||
|
print('websiteUrl: 2 ' + fields['websiteUrl'])
|
||||||
setWebsite(actorJson,
|
setWebsite(actorJson,
|
||||||
fields['websiteUrl'],
|
fields['websiteUrl'],
|
||||||
self.server.translate)
|
self.server.translate)
|
||||||
|
|
|
@ -559,7 +559,7 @@ def htmlProfile(rssIconAtTop: bool,
|
||||||
briarAddress = getBriarAddress(profileJson)
|
briarAddress = getBriarAddress(profileJson)
|
||||||
jamiAddress = getJamiAddress(profileJson)
|
jamiAddress = getJamiAddress(profileJson)
|
||||||
cwtchAddress = getCwtchAddress(profileJson)
|
cwtchAddress = getCwtchAddress(profileJson)
|
||||||
if donateUrl or xmppAddress or matrixAddress or \
|
if donateUrl or websiteUrl or xmppAddress or matrixAddress or \
|
||||||
ssbAddress or toxAddress or briarAddress or \
|
ssbAddress or toxAddress or briarAddress or \
|
||||||
jamiAddress or cwtchAddress or PGPpubKey or \
|
jamiAddress or cwtchAddress or PGPpubKey or \
|
||||||
PGPfingerprint or emailAddress:
|
PGPfingerprint or emailAddress:
|
||||||
|
@ -570,6 +570,10 @@ def htmlProfile(rssIconAtTop: bool,
|
||||||
' <p><a href="' + donateUrl + \
|
' <p><a href="' + donateUrl + \
|
||||||
'"><button class="donateButton">' + translate['Donate'] + \
|
'"><button class="donateButton">' + translate['Donate'] + \
|
||||||
'</button></a></p>\n'
|
'</button></a></p>\n'
|
||||||
|
if websiteUrl:
|
||||||
|
donateSection += \
|
||||||
|
'<p>' + translate['Website'] + ': <a href="' + \
|
||||||
|
websiteUrl + '">' + websiteUrl + '</a></p>\n'
|
||||||
if emailAddress:
|
if emailAddress:
|
||||||
donateSection += \
|
donateSection += \
|
||||||
'<p>' + translate['Email'] + ': <a href="mailto:' + \
|
'<p>' + translate['Email'] + ': <a href="mailto:' + \
|
||||||
|
@ -1854,7 +1858,7 @@ def htmlEditProfile(cssCache: {}, translate: {}, baseDir: str, path: str,
|
||||||
isBot = isGroup = followDMs = removeTwitter = ''
|
isBot = isGroup = followDMs = removeTwitter = ''
|
||||||
notifyLikes = hideLikeButton = mediaInstanceStr = ''
|
notifyLikes = hideLikeButton = mediaInstanceStr = ''
|
||||||
blogsInstanceStr = newsInstanceStr = movedTo = ''
|
blogsInstanceStr = newsInstanceStr = movedTo = ''
|
||||||
bioStr = donateUrl = emailAddress = PGPpubKey = ''
|
bioStr = donateUrl = websiteUrl = emailAddress = PGPpubKey = ''
|
||||||
PGPfingerprint = xmppAddress = matrixAddress = ''
|
PGPfingerprint = xmppAddress = matrixAddress = ''
|
||||||
ssbAddress = blogAddress = toxAddress = jamiAddress = ''
|
ssbAddress = blogAddress = toxAddress = jamiAddress = ''
|
||||||
cwtchAddress = briarAddress = manuallyApprovesFollowers = ''
|
cwtchAddress = briarAddress = manuallyApprovesFollowers = ''
|
||||||
|
|
Loading…
Reference in New Issue