forked from indymedia/epicyon
List index
parent
74a0b0b2c1
commit
6572e57d9d
10
posts.py
10
posts.py
|
@ -2297,12 +2297,10 @@ def archivePostsForPerson(httpPrefix: str,nickname: str,domain: str,baseDir: str
|
|||
publishedStr=content.split('"published":')[1]
|
||||
if '"' in publishedStr:
|
||||
publishedStr=publishedStr.split('"')[1]
|
||||
print('publishedStr: '+publishedStr)
|
||||
postsInBoxDict[secondsSinceEpoch]=postFilename
|
||||
if publishedStr.endswith('Z'):
|
||||
postsInBoxDict[publishedStr]=postFilename
|
||||
postsCtr+=1
|
||||
|
||||
return
|
||||
|
||||
noOfPosts=postsCtr
|
||||
if noOfPosts<=maxPostsInBox:
|
||||
return
|
||||
|
@ -2313,7 +2311,9 @@ def archivePostsForPerson(httpPrefix: str,nickname: str,domain: str,baseDir: str
|
|||
# directory containing cached html posts
|
||||
postCacheDir=boxDir.replace('/'+boxname,'/postcache')
|
||||
|
||||
for secondsSinceEpoch,postFilename in postsInBoxSorted.items():
|
||||
for publishedStr,postFilename in postsInBoxSorted.items():
|
||||
print('publishedStr: '+publishedStr)
|
||||
break
|
||||
filePath=os.path.join(boxDir,postFilename)
|
||||
if not os.path.isfile(filePath):
|
||||
continue
|
||||
|
|
Loading…
Reference in New Issue