mirror of https://gitlab.com/bashrc2/epicyon
Show the newest hashtags first
parent
fbdad05971
commit
3203cffb99
|
@ -114,7 +114,6 @@ def manualApproveFollowRequest(session,baseDir: str, \
|
||||||
sendThreads,postLog, \
|
sendThreads,postLog, \
|
||||||
cachedWebfingers,personCache, \
|
cachedWebfingers,personCache, \
|
||||||
debug,projectVersion)
|
debug,projectVersion)
|
||||||
os.remove(followActivityfilename)
|
|
||||||
updateApprovedFollowers=True
|
updateApprovedFollowers=True
|
||||||
else:
|
else:
|
||||||
approvefilenew.write(handle)
|
approvefilenew.write(handle)
|
||||||
|
|
|
@ -370,6 +370,8 @@ def htmlHashtagSearch(nickname: str,domain: str,port: int, \
|
||||||
# read the index
|
# read the index
|
||||||
with open(hashtagIndexFile, "r") as f:
|
with open(hashtagIndexFile, "r") as f:
|
||||||
lines = f.readlines()
|
lines = f.readlines()
|
||||||
|
|
||||||
|
# read the css
|
||||||
cssFilename=baseDir+'/epicyon-profile.css'
|
cssFilename=baseDir+'/epicyon-profile.css'
|
||||||
if os.path.isfile(baseDir+'/epicyon.css'):
|
if os.path.isfile(baseDir+'/epicyon.css'):
|
||||||
cssFilename=baseDir+'/epicyon.css'
|
cssFilename=baseDir+'/epicyon.css'
|
||||||
|
@ -378,17 +380,25 @@ def htmlHashtagSearch(nickname: str,domain: str,port: int, \
|
||||||
if httpPrefix!='https':
|
if httpPrefix!='https':
|
||||||
hashtagSearchCSS=hashtagSearchCSS.replace('https://',httpPrefix+'://')
|
hashtagSearchCSS=hashtagSearchCSS.replace('https://',httpPrefix+'://')
|
||||||
|
|
||||||
startIndex=len(lines)-1-int(pageNumber*postsPerPage)
|
# ensure that the page number is in bounds
|
||||||
if startIndex<0:
|
if not pageNumber:
|
||||||
startIndex=len(lines)-1
|
pageNumber=1
|
||||||
endIndex=startIndex-postsPerPage
|
elif pageNumber<1:
|
||||||
if endIndex<0:
|
pageNumber=1
|
||||||
endIndex=0
|
|
||||||
|
|
||||||
|
# get the start end end within the index file
|
||||||
|
startIndex=int((pageNumber-1)*postsPerPage)
|
||||||
|
endIndex=startIndex+postsPerPage
|
||||||
|
noOfLines=len(lines)
|
||||||
|
if endIndex>=noOfLines and noOfLines>0:
|
||||||
|
endIndex=noOfLines-1
|
||||||
|
|
||||||
|
# add the page title
|
||||||
hashtagSearchForm=htmlHeader(cssFilename,hashtagSearchCSS)
|
hashtagSearchForm=htmlHeader(cssFilename,hashtagSearchCSS)
|
||||||
hashtagSearchForm+='<script>'+contentWarningScript()+'</script>'
|
hashtagSearchForm+='<script>'+contentWarningScript()+'</script>'
|
||||||
hashtagSearchForm+='<center><h1>#'+hashtag+'</h1></center>'
|
hashtagSearchForm+='<center><h1>#'+hashtag+'</h1></center>'
|
||||||
if startIndex!=len(lines)-1:
|
|
||||||
|
if startIndex>0:
|
||||||
# previous page link
|
# previous page link
|
||||||
hashtagSearchForm+= \
|
hashtagSearchForm+= \
|
||||||
'<center><a href="/tags/'+hashtag+'?page='+ \
|
'<center><a href="/tags/'+hashtag+'?page='+ \
|
||||||
|
@ -432,9 +442,9 @@ def htmlHashtagSearch(nickname: str,domain: str,port: int, \
|
||||||
None,True,allowDeletion, \
|
None,True,allowDeletion, \
|
||||||
httpPrefix,projectVersion,'search', \
|
httpPrefix,projectVersion,'search', \
|
||||||
False,showIndividualPostIcons,False,False,False)
|
False,showIndividualPostIcons,False,False,False)
|
||||||
index-=1
|
index+=1
|
||||||
|
|
||||||
if endIndex>0:
|
if endIndex<noOfLines-1:
|
||||||
# next page link
|
# next page link
|
||||||
hashtagSearchForm+= \
|
hashtagSearchForm+= \
|
||||||
'<center><a href="/tags/'+hashtag+'?page='+str(pageNumber+1)+ \
|
'<center><a href="/tags/'+hashtag+'?page='+str(pageNumber+1)+ \
|
||||||
|
|
Loading…
Reference in New Issue