More debug

main2
Bob Mottram 2019-09-29 14:58:05 +01:00
parent e311d61a6e
commit b5bcb75c3c
1 changed files with 34 additions and 31 deletions

View File

@ -2636,7 +2636,10 @@ class PubServer(BaseHTTPRequestHandler):
This creates a thread to send the new post This creates a thread to send the new post
""" """
pageNumber=1 pageNumber=1
if authorized and '/users/' in path and '?'+postType+'?' in path: if not (authorized and '/users/' in path and '?'+postType+'?' in path):
print('Not receiving new post for '+path)
return None
if '?page=' in path: if '?page=' in path:
pageNumberStr=path.split('?page=')[1] pageNumberStr=path.split('?page=')[1]
if '?' in pageNumberStr: if '?' in pageNumberStr:
@ -2662,6 +2665,7 @@ class PubServer(BaseHTTPRequestHandler):
headers={} headers={}
for dictEntryName,headerLine in self.headers.items(): for dictEntryName,headerLine in self.headers.items():
headers[dictEntryName]=headerLine headers[dictEntryName]=headerLine
print('New post headers: '+str(headers))
print('Creating new post thread') print('Creating new post thread')
self.server.newPostThread[newPostThreadName]= \ self.server.newPostThread[newPostThreadName]= \
@ -2671,7 +2675,6 @@ class PubServer(BaseHTTPRequestHandler):
print('Starting new post thread') print('Starting new post thread')
self.server.newPostThread[newPostThreadName].start() self.server.newPostThread[newPostThreadName].start()
return pageNumber return pageNumber
return None
def do_POST(self): def do_POST(self):
if not self.server.session: if not self.server.session: