mirror of https://gitlab.com/bashrc2/epicyon
Graphic design section on edit profile screen
parent
46687f8b6d
commit
7a78f8e7d8
103
daemon.py
103
daemon.py
|
@ -214,6 +214,7 @@ from utils import hasUsersPath
|
||||||
from utils import getFullDomain
|
from utils import getFullDomain
|
||||||
from utils import removeHtml
|
from utils import removeHtml
|
||||||
from utils import isEditor
|
from utils import isEditor
|
||||||
|
from utils import isArtist
|
||||||
from utils import getImageExtensions
|
from utils import getImageExtensions
|
||||||
from utils import mediaFileMimeType
|
from utils import mediaFileMimeType
|
||||||
from utils import getCSS
|
from utils import getCSS
|
||||||
|
@ -4269,6 +4270,38 @@ class PubServer(BaseHTTPRequestHandler):
|
||||||
if checkNameAndBio:
|
if checkNameAndBio:
|
||||||
redirectPath = 'previewAvatar'
|
redirectPath = 'previewAvatar'
|
||||||
|
|
||||||
|
if nickname == adminNickname or \
|
||||||
|
isArtist(baseDir, nickname):
|
||||||
|
# change theme
|
||||||
|
if fields.get('themeDropdown'):
|
||||||
|
self.server.themeName = fields['themeDropdown']
|
||||||
|
setTheme(baseDir, self.server.themeName, domain,
|
||||||
|
allowLocalNetworkAccess, systemLanguage)
|
||||||
|
self.server.textModeBanner = \
|
||||||
|
getTextModeBanner(self.server.baseDir)
|
||||||
|
self.server.iconsCache = {}
|
||||||
|
self.server.fontsCache = {}
|
||||||
|
self.server.showPublishAsIcon = \
|
||||||
|
getConfigParam(self.server.baseDir,
|
||||||
|
'showPublishAsIcon')
|
||||||
|
self.server.fullWidthTimelineButtonHeader = \
|
||||||
|
getConfigParam(self.server.baseDir,
|
||||||
|
'fullWidthTimelineButtonHeader')
|
||||||
|
self.server.iconsAsButtons = \
|
||||||
|
getConfigParam(self.server.baseDir,
|
||||||
|
'iconsAsButtons')
|
||||||
|
self.server.rssIconAtTop = \
|
||||||
|
getConfigParam(self.server.baseDir,
|
||||||
|
'rssIconAtTop')
|
||||||
|
self.server.publishButtonAtTop = \
|
||||||
|
getConfigParam(self.server.baseDir,
|
||||||
|
'publishButtonAtTop')
|
||||||
|
setNewsAvatar(baseDir,
|
||||||
|
fields['themeDropdown'],
|
||||||
|
httpPrefix,
|
||||||
|
domain,
|
||||||
|
domainFull)
|
||||||
|
|
||||||
if nickname == adminNickname:
|
if nickname == adminNickname:
|
||||||
# change media instance status
|
# change media instance status
|
||||||
if fields.get('mediaInstance'):
|
if fields.get('mediaInstance'):
|
||||||
|
@ -4353,36 +4386,6 @@ class PubServer(BaseHTTPRequestHandler):
|
||||||
"blogsInstance",
|
"blogsInstance",
|
||||||
self.server.blogsInstance)
|
self.server.blogsInstance)
|
||||||
|
|
||||||
# change theme
|
|
||||||
if fields.get('themeDropdown'):
|
|
||||||
self.server.themeName = fields['themeDropdown']
|
|
||||||
setTheme(baseDir, self.server.themeName, domain,
|
|
||||||
allowLocalNetworkAccess, systemLanguage)
|
|
||||||
self.server.textModeBanner = \
|
|
||||||
getTextModeBanner(self.server.baseDir)
|
|
||||||
self.server.iconsCache = {}
|
|
||||||
self.server.fontsCache = {}
|
|
||||||
self.server.showPublishAsIcon = \
|
|
||||||
getConfigParam(self.server.baseDir,
|
|
||||||
'showPublishAsIcon')
|
|
||||||
self.server.fullWidthTimelineButtonHeader = \
|
|
||||||
getConfigParam(self.server.baseDir,
|
|
||||||
'fullWidthTimelineButtonHeader')
|
|
||||||
self.server.iconsAsButtons = \
|
|
||||||
getConfigParam(self.server.baseDir,
|
|
||||||
'iconsAsButtons')
|
|
||||||
self.server.rssIconAtTop = \
|
|
||||||
getConfigParam(self.server.baseDir,
|
|
||||||
'rssIconAtTop')
|
|
||||||
self.server.publishButtonAtTop = \
|
|
||||||
getConfigParam(self.server.baseDir,
|
|
||||||
'publishButtonAtTop')
|
|
||||||
setNewsAvatar(baseDir,
|
|
||||||
fields['themeDropdown'],
|
|
||||||
httpPrefix,
|
|
||||||
domain,
|
|
||||||
domainFull)
|
|
||||||
|
|
||||||
# change instance title
|
# change instance title
|
||||||
if fields.get('instanceTitle'):
|
if fields.get('instanceTitle'):
|
||||||
currInstanceTitle = \
|
currInstanceTitle = \
|
||||||
|
@ -4953,7 +4956,10 @@ class PubServer(BaseHTTPRequestHandler):
|
||||||
|
|
||||||
# remove a custom font
|
# remove a custom font
|
||||||
if fields.get('removeCustomFont'):
|
if fields.get('removeCustomFont'):
|
||||||
if fields['removeCustomFont'] == 'on':
|
if (fields['removeCustomFont'] == 'on' and
|
||||||
|
(isArtist(baseDir, nickname) or
|
||||||
|
path.startswith('/users/' +
|
||||||
|
adminNickname + '/'))):
|
||||||
fontExt = ('woff', 'woff2', 'otf', 'ttf')
|
fontExt = ('woff', 'woff2', 'otf', 'ttf')
|
||||||
for ext in fontExt:
|
for ext in fontExt:
|
||||||
if os.path.isfile(baseDir +
|
if os.path.isfile(baseDir +
|
||||||
|
@ -4969,28 +4975,30 @@ class PubServer(BaseHTTPRequestHandler):
|
||||||
currTheme = getTheme(baseDir)
|
currTheme = getTheme(baseDir)
|
||||||
if currTheme:
|
if currTheme:
|
||||||
self.server.themeName = currTheme
|
self.server.themeName = currTheme
|
||||||
|
allowLocalNetworkAccess = \
|
||||||
|
self.server.allowLocalNetworkAccess
|
||||||
setTheme(baseDir, currTheme, domain,
|
setTheme(baseDir, currTheme, domain,
|
||||||
self.server.allowLocalNetworkAccess,
|
allowLocalNetworkAccess,
|
||||||
systemLanguage)
|
systemLanguage)
|
||||||
self.server.textModeBanner = \
|
self.server.textModeBanner = \
|
||||||
getTextModeBanner(self.server.baseDir)
|
getTextModeBanner(baseDir)
|
||||||
self.server.iconsCache = {}
|
self.server.iconsCache = {}
|
||||||
self.server.fontsCache = {}
|
self.server.fontsCache = {}
|
||||||
self.server.showPublishAsIcon = \
|
self.server.showPublishAsIcon = \
|
||||||
getConfigParam(self.server.baseDir,
|
getConfigParam(baseDir,
|
||||||
'showPublishAsIcon')
|
'showPublishAsIcon')
|
||||||
self.server.fullWidthTimelineButtonHeader = \
|
self.server.fullWidthTimelineButtonHeader = \
|
||||||
getConfigParam(self.server.baseDir,
|
getConfigParam(baseDir,
|
||||||
'fullWidthTimeline' +
|
'fullWidthTimeline' +
|
||||||
'ButtonHeader')
|
'ButtonHeader')
|
||||||
self.server.iconsAsButtons = \
|
self.server.iconsAsButtons = \
|
||||||
getConfigParam(self.server.baseDir,
|
getConfigParam(baseDir,
|
||||||
'iconsAsButtons')
|
'iconsAsButtons')
|
||||||
self.server.rssIconAtTop = \
|
self.server.rssIconAtTop = \
|
||||||
getConfigParam(self.server.baseDir,
|
getConfigParam(baseDir,
|
||||||
'rssIconAtTop')
|
'rssIconAtTop')
|
||||||
self.server.publishButtonAtTop = \
|
self.server.publishButtonAtTop = \
|
||||||
getConfigParam(self.server.baseDir,
|
getConfigParam(baseDir,
|
||||||
'publishButtonAtTop')
|
'publishButtonAtTop')
|
||||||
|
|
||||||
# only receive DMs from accounts you follow
|
# only receive DMs from accounts you follow
|
||||||
|
@ -5090,14 +5098,17 @@ class PubServer(BaseHTTPRequestHandler):
|
||||||
actorChanged = True
|
actorChanged = True
|
||||||
|
|
||||||
# grayscale theme
|
# grayscale theme
|
||||||
grayscale = False
|
if path.startswith('/users/' +
|
||||||
if fields.get('grayscale'):
|
adminNickname + '/') or \
|
||||||
if fields['grayscale'] == 'on':
|
isArtist(baseDir, nickname):
|
||||||
grayscale = True
|
grayscale = False
|
||||||
if grayscale:
|
if fields.get('grayscale'):
|
||||||
enableGrayscale(baseDir)
|
if fields['grayscale'] == 'on':
|
||||||
else:
|
grayscale = True
|
||||||
disableGrayscale(baseDir)
|
if grayscale:
|
||||||
|
enableGrayscale(baseDir)
|
||||||
|
else:
|
||||||
|
disableGrayscale(baseDir)
|
||||||
|
|
||||||
# save filtered words list
|
# save filtered words list
|
||||||
filterFilename = \
|
filterFilename = \
|
||||||
|
|
|
@ -443,5 +443,6 @@
|
||||||
"Joined": "تاريخ الانضمام",
|
"Joined": "تاريخ الانضمام",
|
||||||
"City for spoofed GPS image metadata": "مدينة للبيانات الوصفية لصور GPS المخادعة",
|
"City for spoofed GPS image metadata": "مدينة للبيانات الوصفية لصور GPS المخادعة",
|
||||||
"Occupation": "الاحتلال",
|
"Occupation": "الاحتلال",
|
||||||
"Artists": "الفنانين"
|
"Artists": "الفنانين",
|
||||||
|
"Graphic Design": "التصميم الجرافيكي"
|
||||||
}
|
}
|
||||||
|
|
|
@ -443,5 +443,6 @@
|
||||||
"Joined": "Data d'unió",
|
"Joined": "Data d'unió",
|
||||||
"City for spoofed GPS image metadata": "Ciutat per a metadades d'imatges GPS falsificades",
|
"City for spoofed GPS image metadata": "Ciutat per a metadades d'imatges GPS falsificades",
|
||||||
"Occupation": "Ocupació",
|
"Occupation": "Ocupació",
|
||||||
"Artists": "Artistes"
|
"Artists": "Artistes",
|
||||||
|
"Graphic Design": "Disseny gràfic"
|
||||||
}
|
}
|
||||||
|
|
|
@ -443,5 +443,6 @@
|
||||||
"Joined": "Dyddiad ymuno",
|
"Joined": "Dyddiad ymuno",
|
||||||
"City for spoofed GPS image metadata": "Dinas ar gyfer metadata delwedd GPS spoofed",
|
"City for spoofed GPS image metadata": "Dinas ar gyfer metadata delwedd GPS spoofed",
|
||||||
"Occupation": "Ngalwedigaeth",
|
"Occupation": "Ngalwedigaeth",
|
||||||
"Artists": "Artistiaid"
|
"Artists": "Artistiaid",
|
||||||
|
"Graphic Design": "Dylunio Graffig"
|
||||||
}
|
}
|
||||||
|
|
|
@ -443,5 +443,6 @@
|
||||||
"Joined": "Verbundenes Datum",
|
"Joined": "Verbundenes Datum",
|
||||||
"City for spoofed GPS image metadata": "Stadt für gefälschte GPS-Bildmetadaten",
|
"City for spoofed GPS image metadata": "Stadt für gefälschte GPS-Bildmetadaten",
|
||||||
"Occupation": "Besetzung",
|
"Occupation": "Besetzung",
|
||||||
"Artists": "Künstler"
|
"Artists": "Künstler",
|
||||||
|
"Graphic Design": "Grafikdesign"
|
||||||
}
|
}
|
||||||
|
|
|
@ -443,5 +443,6 @@
|
||||||
"Joined": "Joined",
|
"Joined": "Joined",
|
||||||
"City for spoofed GPS image metadata": "City for spoofed GPS image metadata",
|
"City for spoofed GPS image metadata": "City for spoofed GPS image metadata",
|
||||||
"Occupation": "Occupation",
|
"Occupation": "Occupation",
|
||||||
"Artists": "Artists"
|
"Artists": "Artists",
|
||||||
|
"Graphic Design": "Graphic Design"
|
||||||
}
|
}
|
||||||
|
|
|
@ -443,5 +443,6 @@
|
||||||
"Joined": "Fecha unida",
|
"Joined": "Fecha unida",
|
||||||
"City for spoofed GPS image metadata": "Ciudad para metadatos de imagen GPS falsificados",
|
"City for spoofed GPS image metadata": "Ciudad para metadatos de imagen GPS falsificados",
|
||||||
"Occupation": "Ocupación",
|
"Occupation": "Ocupación",
|
||||||
"Artists": "Artistas"
|
"Artists": "Artistas",
|
||||||
|
"Graphic Design": "Diseño gráfico"
|
||||||
}
|
}
|
||||||
|
|
|
@ -443,5 +443,6 @@
|
||||||
"Joined": "Joint",
|
"Joined": "Joint",
|
||||||
"City for spoofed GPS image metadata": "Ville pour les métadonnées d'image GPS falsifiées",
|
"City for spoofed GPS image metadata": "Ville pour les métadonnées d'image GPS falsifiées",
|
||||||
"Occupation": "Occupation",
|
"Occupation": "Occupation",
|
||||||
"Artists": "Artistes"
|
"Artists": "Artistes",
|
||||||
|
"Graphic Design": "Conception graphique"
|
||||||
}
|
}
|
||||||
|
|
|
@ -443,5 +443,6 @@
|
||||||
"Joined": "Dáta comhcheangailte",
|
"Joined": "Dáta comhcheangailte",
|
||||||
"City for spoofed GPS image metadata": "Cathair le haghaidh meiteashonraí íomhá GPS spoofed",
|
"City for spoofed GPS image metadata": "Cathair le haghaidh meiteashonraí íomhá GPS spoofed",
|
||||||
"Occupation": "Slí bheatha",
|
"Occupation": "Slí bheatha",
|
||||||
"Artists": "Ealaíontóirí"
|
"Artists": "Ealaíontóirí",
|
||||||
|
"Graphic Design": "Dearadh grafach"
|
||||||
}
|
}
|
||||||
|
|
|
@ -443,5 +443,6 @@
|
||||||
"Joined": "दिनांक",
|
"Joined": "दिनांक",
|
||||||
"City for spoofed GPS image metadata": "स्पूफ जीपीएस जीपीएस मेटाडेटा के लिए शहर",
|
"City for spoofed GPS image metadata": "स्पूफ जीपीएस जीपीएस मेटाडेटा के लिए शहर",
|
||||||
"Occupation": "व्यवसाय",
|
"Occupation": "व्यवसाय",
|
||||||
"Artists": "कलाकार की"
|
"Artists": "कलाकार की",
|
||||||
|
"Graphic Design": "ग्राफ़िक डिज़ाइन"
|
||||||
}
|
}
|
||||||
|
|
|
@ -443,5 +443,6 @@
|
||||||
"Joined": "Unito",
|
"Joined": "Unito",
|
||||||
"City for spoofed GPS image metadata": "Città per metadati di immagini GPS falsificate",
|
"City for spoofed GPS image metadata": "Città per metadati di immagini GPS falsificate",
|
||||||
"Occupation": "Occupazione",
|
"Occupation": "Occupazione",
|
||||||
"Artists": "Artiste"
|
"Artists": "Artiste",
|
||||||
|
"Graphic Design": "Graphic design"
|
||||||
}
|
}
|
||||||
|
|
|
@ -443,5 +443,6 @@
|
||||||
"Joined": "参加日",
|
"Joined": "参加日",
|
||||||
"City for spoofed GPS image metadata": "なりすましGPS画像メタデータの都市",
|
"City for spoofed GPS image metadata": "なりすましGPS画像メタデータの都市",
|
||||||
"Occupation": "職業",
|
"Occupation": "職業",
|
||||||
"Artists": "アーティスト"
|
"Artists": "アーティスト",
|
||||||
|
"Graphic Design": "グラフィックデザイン"
|
||||||
}
|
}
|
||||||
|
|
|
@ -443,5 +443,6 @@
|
||||||
"Joined": "Beşdarbûna Dîrokê",
|
"Joined": "Beşdarbûna Dîrokê",
|
||||||
"City for spoofed GPS image metadata": "Bajar ji bo metadata wêneya GPS ya xapînok",
|
"City for spoofed GPS image metadata": "Bajar ji bo metadata wêneya GPS ya xapînok",
|
||||||
"Occupation": "Sinet",
|
"Occupation": "Sinet",
|
||||||
"Artists": "Hunermend"
|
"Artists": "Hunermend",
|
||||||
|
"Graphic Design": "Sêwirana grafîkî"
|
||||||
}
|
}
|
||||||
|
|
|
@ -439,5 +439,6 @@
|
||||||
"Joined": "Joined",
|
"Joined": "Joined",
|
||||||
"City for spoofed GPS image metadata": "City for spoofed GPS image metadata",
|
"City for spoofed GPS image metadata": "City for spoofed GPS image metadata",
|
||||||
"Occupation": "Occupation",
|
"Occupation": "Occupation",
|
||||||
"Artists": "Artists"
|
"Artists": "Artists",
|
||||||
|
"Graphic Design": "Graphic Design"
|
||||||
}
|
}
|
||||||
|
|
|
@ -443,5 +443,6 @@
|
||||||
"Joined": "Data juntada",
|
"Joined": "Data juntada",
|
||||||
"City for spoofed GPS image metadata": "Cidade para metadados de imagem GPS falsificados",
|
"City for spoofed GPS image metadata": "Cidade para metadados de imagem GPS falsificados",
|
||||||
"Occupation": "Ocupação",
|
"Occupation": "Ocupação",
|
||||||
"Artists": "Artistas"
|
"Artists": "Artistas",
|
||||||
|
"Graphic Design": "Design gráfico"
|
||||||
}
|
}
|
||||||
|
|
|
@ -443,5 +443,6 @@
|
||||||
"Joined": "Присоединенная дата",
|
"Joined": "Присоединенная дата",
|
||||||
"City for spoofed GPS image metadata": "Город для поддельных метаданных изображения GPS",
|
"City for spoofed GPS image metadata": "Город для поддельных метаданных изображения GPS",
|
||||||
"Occupation": "Занятие",
|
"Occupation": "Занятие",
|
||||||
"Artists": "Художники"
|
"Artists": "Художники",
|
||||||
|
"Graphic Design": "Графический дизайн"
|
||||||
}
|
}
|
||||||
|
|
|
@ -443,5 +443,6 @@
|
||||||
"Joined": "加入日期",
|
"Joined": "加入日期",
|
||||||
"City for spoofed GPS image metadata": "欺骗性GPS影像元数据的城市",
|
"City for spoofed GPS image metadata": "欺骗性GPS影像元数据的城市",
|
||||||
"Occupation": "职业",
|
"Occupation": "职业",
|
||||||
"Artists": "艺人"
|
"Artists": "艺人",
|
||||||
|
"Graphic Design": "平面设计"
|
||||||
}
|
}
|
||||||
|
|
28
utils.py
28
utils.py
|
@ -194,6 +194,34 @@ def isEditor(baseDir: str, nickname: str) -> bool:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
|
||||||
|
def isArtist(baseDir: str, nickname: str) -> bool:
|
||||||
|
"""Returns true if the given nickname is an artist
|
||||||
|
"""
|
||||||
|
artistsFile = baseDir + '/accounts/artists.txt'
|
||||||
|
|
||||||
|
if not os.path.isfile(artistsFile):
|
||||||
|
adminName = getConfigParam(baseDir, 'admin')
|
||||||
|
if not adminName:
|
||||||
|
return False
|
||||||
|
if adminName == nickname:
|
||||||
|
return True
|
||||||
|
return False
|
||||||
|
|
||||||
|
with open(artistsFile, "r") as f:
|
||||||
|
lines = f.readlines()
|
||||||
|
if len(lines) == 0:
|
||||||
|
adminName = getConfigParam(baseDir, 'admin')
|
||||||
|
if not adminName:
|
||||||
|
return False
|
||||||
|
if adminName == nickname:
|
||||||
|
return True
|
||||||
|
for artist in lines:
|
||||||
|
artist = artist.strip('\n').strip('\r')
|
||||||
|
if artist == nickname:
|
||||||
|
return True
|
||||||
|
return False
|
||||||
|
|
||||||
|
|
||||||
def getImageExtensions() -> []:
|
def getImageExtensions() -> []:
|
||||||
"""Returns a list of the possible image file extensions
|
"""Returns a list of the possible image file extensions
|
||||||
"""
|
"""
|
||||||
|
|
|
@ -12,6 +12,7 @@ from utils import getOccupationName
|
||||||
from utils import getLockedAccount
|
from utils import getLockedAccount
|
||||||
from utils import hasUsersPath
|
from utils import hasUsersPath
|
||||||
from utils import getFullDomain
|
from utils import getFullDomain
|
||||||
|
from utils import isArtist
|
||||||
from utils import isDormant
|
from utils import isDormant
|
||||||
from utils import getNicknameFromActor
|
from utils import getNicknameFromActor
|
||||||
from utils import getDomainFromActor
|
from utils import getDomainFromActor
|
||||||
|
@ -1292,6 +1293,49 @@ def htmlEditProfile(cssCache: {}, translate: {}, baseDir: str, path: str,
|
||||||
peertubeStr = ''
|
peertubeStr = ''
|
||||||
|
|
||||||
adminNickname = getConfigParam(baseDir, 'admin')
|
adminNickname = getConfigParam(baseDir, 'admin')
|
||||||
|
|
||||||
|
if isArtist(baseDir, nickname) or \
|
||||||
|
path.startswith('/users/' + str(adminNickname) + '/'):
|
||||||
|
graphicsStr = '<details><summary class="cw">' + \
|
||||||
|
translate['Graphic Design'] + '</summary>\n'
|
||||||
|
graphicsStr += '<div class="container">'
|
||||||
|
|
||||||
|
# Themes section
|
||||||
|
themes = getThemesList(baseDir)
|
||||||
|
themesDropdown += ' <br><label class="labels">' + \
|
||||||
|
translate['Theme'] + '</label><br>\n'
|
||||||
|
grayscaleFilename = \
|
||||||
|
baseDir + '/accounts/.grayscale'
|
||||||
|
grayscale = ''
|
||||||
|
if os.path.isfile(grayscaleFilename):
|
||||||
|
grayscale = 'checked'
|
||||||
|
themesDropdown += \
|
||||||
|
' <input type="checkbox" class="profilecheckbox" ' + \
|
||||||
|
'name="grayscale" ' + grayscale + \
|
||||||
|
'> ' + translate['Grayscale'] + '<br>'
|
||||||
|
themesDropdown += ' <select id="themeDropdown" ' + \
|
||||||
|
'name="themeDropdown" class="theme">'
|
||||||
|
for themeName in themes:
|
||||||
|
themesDropdown += ' <option value="' + \
|
||||||
|
themeName.lower() + '">' + \
|
||||||
|
translate[themeName] + '</option>'
|
||||||
|
themesDropdown += ' </select><br>'
|
||||||
|
if os.path.isfile(baseDir + '/fonts/custom.woff') or \
|
||||||
|
os.path.isfile(baseDir + '/fonts/custom.woff2') or \
|
||||||
|
os.path.isfile(baseDir + '/fonts/custom.otf') or \
|
||||||
|
os.path.isfile(baseDir + '/fonts/custom.ttf'):
|
||||||
|
themesDropdown += \
|
||||||
|
' <input type="checkbox" class="profilecheckbox" ' + \
|
||||||
|
'name="removeCustomFont"> ' + \
|
||||||
|
translate['Remove the custom font'] + '<br>'
|
||||||
|
themeName = getConfigParam(baseDir, 'theme')
|
||||||
|
themesDropdown = \
|
||||||
|
themesDropdown.replace('<option value="' + themeName + '">',
|
||||||
|
'<option value="' + themeName +
|
||||||
|
'" selected>')
|
||||||
|
graphicsStr += themesDropdown
|
||||||
|
graphicsStr += ' </div></details>\n'
|
||||||
|
|
||||||
if adminNickname:
|
if adminNickname:
|
||||||
if path.startswith('/users/' + adminNickname + '/'):
|
if path.startswith('/users/' + adminNickname + '/'):
|
||||||
# Instance details section
|
# Instance details section
|
||||||
|
@ -1346,40 +1390,6 @@ def htmlEditProfile(cssCache: {}, translate: {}, baseDir: str, path: str,
|
||||||
' <input type="file" id="instanceLogo" name="instanceLogo"'
|
' <input type="file" id="instanceLogo" name="instanceLogo"'
|
||||||
instanceStr += ' accept="' + imageFormats + '"><br>\n'
|
instanceStr += ' accept="' + imageFormats + '"><br>\n'
|
||||||
|
|
||||||
# Themes section
|
|
||||||
themes = getThemesList(baseDir)
|
|
||||||
themesDropdown += ' <br><label class="labels">' + \
|
|
||||||
translate['Theme'] + '</label><br>\n'
|
|
||||||
grayscaleFilename = \
|
|
||||||
baseDir + '/accounts/.grayscale'
|
|
||||||
grayscale = ''
|
|
||||||
if os.path.isfile(grayscaleFilename):
|
|
||||||
grayscale = 'checked'
|
|
||||||
themesDropdown += \
|
|
||||||
' <input type="checkbox" class="profilecheckbox" ' + \
|
|
||||||
'name="grayscale" ' + grayscale + \
|
|
||||||
'> ' + translate['Grayscale'] + '<br>'
|
|
||||||
themesDropdown += ' <select id="themeDropdown" ' + \
|
|
||||||
'name="themeDropdown" class="theme">'
|
|
||||||
for themeName in themes:
|
|
||||||
themesDropdown += ' <option value="' + \
|
|
||||||
themeName.lower() + '">' + \
|
|
||||||
translate[themeName] + '</option>'
|
|
||||||
themesDropdown += ' </select><br>'
|
|
||||||
if os.path.isfile(baseDir + '/fonts/custom.woff') or \
|
|
||||||
os.path.isfile(baseDir + '/fonts/custom.woff2') or \
|
|
||||||
os.path.isfile(baseDir + '/fonts/custom.otf') or \
|
|
||||||
os.path.isfile(baseDir + '/fonts/custom.ttf'):
|
|
||||||
themesDropdown += \
|
|
||||||
' <input type="checkbox" class="profilecheckbox" ' + \
|
|
||||||
'name="removeCustomFont"> ' + \
|
|
||||||
translate['Remove the custom font'] + '<br>'
|
|
||||||
themeName = getConfigParam(baseDir, 'theme')
|
|
||||||
themesDropdown = \
|
|
||||||
themesDropdown.replace('<option value="' + themeName + '">',
|
|
||||||
'<option value="' + themeName +
|
|
||||||
'" selected>')
|
|
||||||
instanceStr += themesDropdown
|
|
||||||
instanceStr += \
|
instanceStr += \
|
||||||
' <br><label class="labels">' + \
|
' <br><label class="labels">' + \
|
||||||
translate['Security'] + '</label><br>\n'
|
translate['Security'] + '</label><br>\n'
|
||||||
|
@ -1942,7 +1952,7 @@ def htmlEditProfile(cssCache: {}, translate: {}, baseDir: str, path: str,
|
||||||
editProfileForm += ' <label class="labels">' + \
|
editProfileForm += ' <label class="labels">' + \
|
||||||
translate[idx] + '</label>\n'
|
translate[idx] + '</label>\n'
|
||||||
editProfileForm += skillsStr
|
editProfileForm += skillsStr
|
||||||
editProfileForm += roleAssignStr + peertubeStr + instanceStr
|
editProfileForm += roleAssignStr + peertubeStr + graphicsStr + instanceStr
|
||||||
|
|
||||||
# danger zone section
|
# danger zone section
|
||||||
editProfileForm += ' <details><summary class="cw">' + \
|
editProfileForm += ' <details><summary class="cw">' + \
|
||||||
|
|
Loading…
Reference in New Issue