forked from indymedia/epicyon
Rename benchmarks for consistency
parent
9aab438d73
commit
e9509c58b0
|
@ -3815,7 +3815,7 @@ def individualPostAsHtml(recentPostsCache: {}, maxRecentPosts: int,
|
||||||
# benchmark 1
|
# benchmark 1
|
||||||
timeDiff = int((time.time() - postStartTime) * 1000)
|
timeDiff = int((time.time() - postStartTime) * 1000)
|
||||||
if timeDiff > 100:
|
if timeDiff > 100:
|
||||||
print('TIMELINE INDIV ' + boxName + ' 1 = ' + str(timeDiff))
|
print('TIMING INDIV ' + boxName + ' 1 = ' + str(timeDiff))
|
||||||
|
|
||||||
avatarPosition = ''
|
avatarPosition = ''
|
||||||
messageId = ''
|
messageId = ''
|
||||||
|
@ -3825,7 +3825,7 @@ def individualPostAsHtml(recentPostsCache: {}, maxRecentPosts: int,
|
||||||
# benchmark 2
|
# benchmark 2
|
||||||
timeDiff = int((time.time() - postStartTime) * 1000)
|
timeDiff = int((time.time() - postStartTime) * 1000)
|
||||||
if timeDiff > 100:
|
if timeDiff > 100:
|
||||||
print('TIMELINE INDIV ' + boxName + ' 2 = ' + str(timeDiff))
|
print('TIMING INDIV ' + boxName + ' 2 = ' + str(timeDiff))
|
||||||
|
|
||||||
messageIdStr = ''
|
messageIdStr = ''
|
||||||
if messageId:
|
if messageId:
|
||||||
|
@ -3862,13 +3862,13 @@ def individualPostAsHtml(recentPostsCache: {}, maxRecentPosts: int,
|
||||||
# benchmark 3
|
# benchmark 3
|
||||||
timeDiff = int((time.time() - postStartTime) * 1000)
|
timeDiff = int((time.time() - postStartTime) * 1000)
|
||||||
if timeDiff > 100:
|
if timeDiff > 100:
|
||||||
print('TIMELINE INDIV ' + boxName + ' 3 = ' + str(timeDiff))
|
print('TIMING INDIV ' + boxName + ' 3 = ' + str(timeDiff))
|
||||||
return postHtml
|
return postHtml
|
||||||
|
|
||||||
# benchmark 4
|
# benchmark 4
|
||||||
timeDiff = int((time.time() - postStartTime) * 1000)
|
timeDiff = int((time.time() - postStartTime) * 1000)
|
||||||
if timeDiff > 100:
|
if timeDiff > 100:
|
||||||
print('TIMELINE INDIV ' + boxName + ' 4 = ' + str(timeDiff))
|
print('TIMING INDIV ' + boxName + ' 4 = ' + str(timeDiff))
|
||||||
|
|
||||||
if not avatarUrl:
|
if not avatarUrl:
|
||||||
avatarUrl = \
|
avatarUrl = \
|
||||||
|
@ -3883,7 +3883,7 @@ def individualPostAsHtml(recentPostsCache: {}, maxRecentPosts: int,
|
||||||
# benchmark 5
|
# benchmark 5
|
||||||
timeDiff = int((time.time() - postStartTime) * 1000)
|
timeDiff = int((time.time() - postStartTime) * 1000)
|
||||||
if timeDiff > 100:
|
if timeDiff > 100:
|
||||||
print('TIMELINE INDIV ' + boxName + ' 5 = ' + str(timeDiff))
|
print('TIMING INDIV ' + boxName + ' 5 = ' + str(timeDiff))
|
||||||
|
|
||||||
if not avatarUrl:
|
if not avatarUrl:
|
||||||
avatarUrl = postActor + '/avatar.png'
|
avatarUrl = postActor + '/avatar.png'
|
||||||
|
@ -3899,7 +3899,7 @@ def individualPostAsHtml(recentPostsCache: {}, maxRecentPosts: int,
|
||||||
# benchmark 6
|
# benchmark 6
|
||||||
timeDiff = int((time.time() - postStartTime) * 1000)
|
timeDiff = int((time.time() - postStartTime) * 1000)
|
||||||
if timeDiff > 100:
|
if timeDiff > 100:
|
||||||
print('TIMELINE INDIV ' + boxName + ' 6 = ' + str(timeDiff))
|
print('TIMING INDIV ' + boxName + ' 6 = ' + str(timeDiff))
|
||||||
|
|
||||||
if avatarUrl2:
|
if avatarUrl2:
|
||||||
avatarUrl = avatarUrl2
|
avatarUrl = avatarUrl2
|
||||||
|
@ -3913,7 +3913,7 @@ def individualPostAsHtml(recentPostsCache: {}, maxRecentPosts: int,
|
||||||
# benchmark 7
|
# benchmark 7
|
||||||
timeDiff = int((time.time() - postStartTime) * 1000)
|
timeDiff = int((time.time() - postStartTime) * 1000)
|
||||||
if timeDiff > 100:
|
if timeDiff > 100:
|
||||||
print('TIMELINE INDIV ' + boxName + ' 7 = ' + str(timeDiff))
|
print('TIMING INDIV ' + boxName + ' 7 = ' + str(timeDiff))
|
||||||
|
|
||||||
avatarLink = ' <a class="imageAnchor" href="' + postActor + '">'
|
avatarLink = ' <a class="imageAnchor" href="' + postActor + '">'
|
||||||
avatarLink += \
|
avatarLink += \
|
||||||
|
@ -3971,7 +3971,7 @@ def individualPostAsHtml(recentPostsCache: {}, maxRecentPosts: int,
|
||||||
# benchmark 8
|
# benchmark 8
|
||||||
timeDiff = int((time.time() - postStartTime) * 1000)
|
timeDiff = int((time.time() - postStartTime) * 1000)
|
||||||
if timeDiff > 100:
|
if timeDiff > 100:
|
||||||
print('TIMELINE INDIV ' + boxName + ' 8 = ' + str(timeDiff))
|
print('TIMING INDIV ' + boxName + ' 8 = ' + str(timeDiff))
|
||||||
|
|
||||||
if not isinstance(postJsonObject['object'], dict):
|
if not isinstance(postJsonObject['object'], dict):
|
||||||
return ''
|
return ''
|
||||||
|
@ -4024,7 +4024,7 @@ def individualPostAsHtml(recentPostsCache: {}, maxRecentPosts: int,
|
||||||
# benchmark 9
|
# benchmark 9
|
||||||
timeDiff = int((time.time() - postStartTime) * 1000)
|
timeDiff = int((time.time() - postStartTime) * 1000)
|
||||||
if timeDiff > 100:
|
if timeDiff > 100:
|
||||||
print('TIMELINE INDIV ' + boxName + ' 9 = ' + str(timeDiff))
|
print('TIMING INDIV ' + boxName + ' 9 = ' + str(timeDiff))
|
||||||
|
|
||||||
# Show a DM icon for DMs in the inbox timeline
|
# Show a DM icon for DMs in the inbox timeline
|
||||||
if showDMicon:
|
if showDMicon:
|
||||||
|
@ -4086,14 +4086,14 @@ def individualPostAsHtml(recentPostsCache: {}, maxRecentPosts: int,
|
||||||
# benchmark 10
|
# benchmark 10
|
||||||
timeDiff = int((time.time() - postStartTime) * 1000)
|
timeDiff = int((time.time() - postStartTime) * 1000)
|
||||||
if timeDiff > 100:
|
if timeDiff > 100:
|
||||||
print('TIMELINE INDIV ' + boxName + ' 10 = ' + str(timeDiff))
|
print('TIMING INDIV ' + boxName + ' 10 = ' + str(timeDiff))
|
||||||
|
|
||||||
isEvent = isEventPost(postJsonObject)
|
isEvent = isEventPost(postJsonObject)
|
||||||
|
|
||||||
# benchmark 11
|
# benchmark 11
|
||||||
timeDiff = int((time.time() - postStartTime) * 1000)
|
timeDiff = int((time.time() - postStartTime) * 1000)
|
||||||
if timeDiff > 100:
|
if timeDiff > 100:
|
||||||
print('TIMELINE INDIV ' + boxName + ' 11 = ' + str(timeDiff))
|
print('TIMING INDIV ' + boxName + ' 11 = ' + str(timeDiff))
|
||||||
|
|
||||||
editStr = ''
|
editStr = ''
|
||||||
if fullDomain + '/users/' + nickname in postJsonObject['actor']:
|
if fullDomain + '/users/' + nickname in postJsonObject['actor']:
|
||||||
|
@ -4151,7 +4151,7 @@ def individualPostAsHtml(recentPostsCache: {}, maxRecentPosts: int,
|
||||||
# benchmark 12
|
# benchmark 12
|
||||||
timeDiff = int((time.time() - postStartTime) * 1000)
|
timeDiff = int((time.time() - postStartTime) * 1000)
|
||||||
if timeDiff > 100:
|
if timeDiff > 100:
|
||||||
print('TIMELINE INDIV ' + boxName + ' 12 = ' + str(timeDiff))
|
print('TIMING INDIV ' + boxName + ' 12 = ' + str(timeDiff))
|
||||||
|
|
||||||
# whether to show a like button
|
# whether to show a like button
|
||||||
hideLikeButtonFile = \
|
hideLikeButtonFile = \
|
||||||
|
@ -4216,7 +4216,7 @@ def individualPostAsHtml(recentPostsCache: {}, maxRecentPosts: int,
|
||||||
# benchmark 13
|
# benchmark 13
|
||||||
timeDiff = int((time.time() - postStartTime) * 1000)
|
timeDiff = int((time.time() - postStartTime) * 1000)
|
||||||
if timeDiff > 100:
|
if timeDiff > 100:
|
||||||
print('TIMELINE INDIV ' + boxName + ' 13 = ' + str(timeDiff))
|
print('TIMING INDIV ' + boxName + ' 13 = ' + str(timeDiff))
|
||||||
|
|
||||||
deleteStr = ''
|
deleteStr = ''
|
||||||
muteStr = ''
|
muteStr = ''
|
||||||
|
@ -4464,7 +4464,7 @@ def individualPostAsHtml(recentPostsCache: {}, maxRecentPosts: int,
|
||||||
# benchmark 14
|
# benchmark 14
|
||||||
timeDiff = int((time.time() - postStartTime) * 1000)
|
timeDiff = int((time.time() - postStartTime) * 1000)
|
||||||
if timeDiff > 100:
|
if timeDiff > 100:
|
||||||
print('TIMELINE INDIV ' + boxName + ' 14 = ' + str(timeDiff))
|
print('TIMING INDIV ' + boxName + ' 14 = ' + str(timeDiff))
|
||||||
|
|
||||||
attachmentStr, galleryStr = \
|
attachmentStr, galleryStr = \
|
||||||
getPostAttachmentsAsHtml(postJsonObject, boxName, translate,
|
getPostAttachmentsAsHtml(postJsonObject, boxName, translate,
|
||||||
|
@ -4492,7 +4492,7 @@ def individualPostAsHtml(recentPostsCache: {}, maxRecentPosts: int,
|
||||||
# benchmark 15
|
# benchmark 15
|
||||||
timeDiff = int((time.time() - postStartTime) * 1000)
|
timeDiff = int((time.time() - postStartTime) * 1000)
|
||||||
if timeDiff > 100:
|
if timeDiff > 100:
|
||||||
print('TIMELINE INDIV ' + boxName + ' 15 = ' + str(timeDiff))
|
print('TIMING INDIV ' + boxName + ' 15 = ' + str(timeDiff))
|
||||||
|
|
||||||
publishedLink = messageId
|
publishedLink = messageId
|
||||||
# blog posts should have no /statuses/ in their link
|
# blog posts should have no /statuses/ in their link
|
||||||
|
@ -4554,7 +4554,7 @@ def individualPostAsHtml(recentPostsCache: {}, maxRecentPosts: int,
|
||||||
# benchmark 16
|
# benchmark 16
|
||||||
timeDiff = int((time.time() - postStartTime) * 1000)
|
timeDiff = int((time.time() - postStartTime) * 1000)
|
||||||
if timeDiff > 100:
|
if timeDiff > 100:
|
||||||
print('TIMELINE INDIV ' + boxName + ' 16 = ' + str(timeDiff))
|
print('TIMING INDIV ' + boxName + ' 16 = ' + str(timeDiff))
|
||||||
|
|
||||||
if not isPatch:
|
if not isPatch:
|
||||||
objectContent = \
|
objectContent = \
|
||||||
|
@ -4599,7 +4599,7 @@ def individualPostAsHtml(recentPostsCache: {}, maxRecentPosts: int,
|
||||||
# benchmark 17
|
# benchmark 17
|
||||||
timeDiff = int((time.time() - postStartTime) * 1000)
|
timeDiff = int((time.time() - postStartTime) * 1000)
|
||||||
if timeDiff > 100:
|
if timeDiff > 100:
|
||||||
print('TIMELINE INDIV ' + boxName + ' 17 = ' + str(timeDiff))
|
print('TIMING INDIV ' + boxName + ' 17 = ' + str(timeDiff))
|
||||||
|
|
||||||
if postJsonObject['object'].get('tag') and not isPatch:
|
if postJsonObject['object'].get('tag') and not isPatch:
|
||||||
contentStr = \
|
contentStr = \
|
||||||
|
@ -4632,7 +4632,7 @@ def individualPostAsHtml(recentPostsCache: {}, maxRecentPosts: int,
|
||||||
# benchmark 18
|
# benchmark 18
|
||||||
timeDiff = int((time.time() - postStartTime) * 1000)
|
timeDiff = int((time.time() - postStartTime) * 1000)
|
||||||
if timeDiff > 100:
|
if timeDiff > 100:
|
||||||
print('TIMELINE INDIV ' + boxName + ' 18 = ' + str(timeDiff))
|
print('TIMING INDIV ' + boxName + ' 18 = ' + str(timeDiff))
|
||||||
|
|
||||||
if not showPublicOnly and storeToCache and \
|
if not showPublicOnly and storeToCache and \
|
||||||
boxName != 'tlmedia' and boxName != 'tlbookmarks' and \
|
boxName != 'tlmedia' and boxName != 'tlbookmarks' and \
|
||||||
|
@ -4645,7 +4645,7 @@ def individualPostAsHtml(recentPostsCache: {}, maxRecentPosts: int,
|
||||||
# benchmark 19
|
# benchmark 19
|
||||||
timeDiff = int((time.time() - postStartTime) * 1000)
|
timeDiff = int((time.time() - postStartTime) * 1000)
|
||||||
if timeDiff > 100:
|
if timeDiff > 100:
|
||||||
print('TIMELINE INDIV ' + boxName + ' 19 = ' + str(timeDiff))
|
print('TIMING INDIV ' + boxName + ' 19 = ' + str(timeDiff))
|
||||||
|
|
||||||
return postHtml
|
return postHtml
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue