forked from indymedia/epicyon
Second part
parent
b3ca4af05e
commit
5411344622
|
@ -870,7 +870,9 @@ class PubServer(BaseHTTPRequestHandler):
|
||||||
def _pathContainsBlogLink(self,baseDir: str,httpPrefix: str,domain: str,path: str) -> (str,str):
|
def _pathContainsBlogLink(self,baseDir: str,httpPrefix: str,domain: str,path: str) -> (str,str):
|
||||||
"""If the path contains a blog entry then return its filename
|
"""If the path contains a blog entry then return its filename
|
||||||
"""
|
"""
|
||||||
userEnding=path.split('/users/',1)
|
if '/users/' not in path:
|
||||||
|
return None,None
|
||||||
|
userEnding=path.split('/users/',1)[1]
|
||||||
print('Test1 '+path+' '+str(userEnding))
|
print('Test1 '+path+' '+str(userEnding))
|
||||||
if '/' not in userEnding:
|
if '/' not in userEnding:
|
||||||
return None,None
|
return None,None
|
||||||
|
|
Loading…
Reference in New Issue