From 9b24821e470fdd064a002e2a842bdd271c001638 Mon Sep 17 00:00:00 2001 From: Cyrille L Date: Fri, 25 Nov 2022 18:37:32 +0100 Subject: [PATCH] check: fix global post_url --- src/var/lib/tyto/program/check.py | 7 +++++-- src/var/lib/tyto/program/wip.py | 9 +++++++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/src/var/lib/tyto/program/check.py b/src/var/lib/tyto/program/check.py index 8a7cfd3..a8164c6 100644 --- a/src/var/lib/tyto/program/check.py +++ b/src/var/lib/tyto/program/check.py @@ -67,6 +67,9 @@ def post_IDs(file_post): file_html = file_post.replace('.tyto','.html') if file_html.endswith('index.html'): file_html = file_html.remplace('index.html', '') + + # Complete URL post file + global post_url post_url = '%s%s/%s'%( domain.domain_protocol, domain.domain_name, file_html ) @@ -88,11 +91,11 @@ def post_IDs(file_post): # Get Hash from article's content global hash_chk - hash_chk = get_filesum(post_uri,True) + hash_chk = get_filesum(post_uri, True) # Get Hash ID from URI global curr_post_ID, curr_post_db, post_logs - curr_post_ID = get_filesum(post_uri,False) + curr_post_ID = get_filesum(post_uri, False) # Set database file for this article curr_post_db = '%s%s.conf'%(domain.domain_db, curr_post_ID) diff --git a/src/var/lib/tyto/program/wip.py b/src/var/lib/tyto/program/wip.py index 9374386..cc76e05 100644 --- a/src/var/lib/tyto/program/wip.py +++ b/src/var/lib/tyto/program/wip.py @@ -129,10 +129,15 @@ def manage_wip(file_post, Force): page_file.write(wip_html) page_file.close() + post_uri = '%s%s'%(domain.domain_articles, file_post) time_wip = log.nowdate() - print("T",time_wip) - + hash_wip = check.get_filesum(post_uri, True) + rep_post_wip = 'post_wip = %s'%str(check.post_wip) + tmp_post_wip = ('"%s"'%hash_wip, '"%s"'%time_wip) + post_wip = 'post_wip = %s'%str(tmp_post_wip) + print(rep_post_wip, '>>', post_wip) + #============================# # HTML CONVERTERS #