From ad55ea6f970b42430c18c80fc0521860e4a24d7d Mon Sep 17 00:00:00 2001
From: Bob Mottram
Date: Sat, 11 Jul 2020 21:44:20 +0100
Subject: [PATCH] Rename function
---
webinterface.py | 16 ++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)
diff --git a/webinterface.py b/webinterface.py
index b607f711..85faa020 100644
--- a/webinterface.py
+++ b/webinterface.py
@@ -79,9 +79,9 @@ from petnames import getPetName
from followingCalendar import receivingCalendarEvents
-def getUrlPath(actor: str, domainFull: str, callingDomain: str) -> str:
- """Returns path from url
- eg. https://somedomain/users/bob becomes /users/bob
+def getAltPath(actor: str, domainFull: str, callingDomain: str) -> str:
+ """Returns alternate path from the actor
+ eg. https://clearnetdomain/path becomes http://oniondomain/path
"""
postActor = actor
if callingDomain not in actor and domainFull in actor:
@@ -552,7 +552,7 @@ def htmlSearchSharedItems(translate: {},
sharedItemsForm += '
'
if not resultsExist and currPage > 1:
postActor = \
- getUrlPath(actor, domainFull,
+ getAltPath(actor, domainFull,
callingDomain)
# previous page link, needs to be a POST
sharedItemsForm += \
@@ -585,7 +585,7 @@ def htmlSearchSharedItems(translate: {},
currPage += 1
if currPage > pageNumber:
postActor = \
- getUrlPath(actor, domainFull,
+ getAltPath(actor, domainFull,
callingDomain)
# next page link, needs to be a POST
sharedItemsForm += \
@@ -5118,7 +5118,7 @@ def htmlRemoveSharedItem(translate: {}, baseDir: str,
sharesStr += \
' ' + translate['Remove'] + \
' ' + sharedItemDisplayName + ' ?
'
- postActor = getUrlPath(actor, domainFull, callingDomain)
+ postActor = getAltPath(actor, domainFull, callingDomain)
sharesStr += '