Put rendered messages in messages/ instead

master
Sven Slootweg 12 years ago
parent a5e725dbea
commit 926f48756e

@ -61,12 +61,12 @@ for message_id, sender, recipient, subject, timestamp, textbody, htmlbody, sha1_
# Text version # Text version
body = "<pre>%s</pre>" % textbody body = "<pre>%s</pre>" % textbody
generated = template_message % {'subject': subject, 'date': timestamp, 'from': sender, 'to': recipient, 'body': body, 'title': options['title'], 'version': "Plaintext version", 'index': "../index.html", 'versions': version_list} generated = template_message % {'subject': subject, 'date': timestamp, 'from': sender, 'to': recipient, 'body': body, 'title': options['title'], 'version': "Plaintext version", 'index': "../index.html", 'versions': version_list}
open('%s/%s_text.html' % (options['output_dir'], sha1_hash), 'w').write(generated.encode('UTF-8')) open('%s/messages/%s_text.html' % (options['output_dir'], sha1_hash), 'w').write(generated.encode('UTF-8'))
if available_html == True: if available_html == True:
# HTML version # HTML version
body = htmlbody body = htmlbody
generated = template_message % {'subject': subject, 'date': timestamp, 'from': sender, 'to': recipient, 'body': body, 'title': options['title'], 'version': "HTML version", 'index': "../index.html", 'versions': version_list} generated = template_message % {'subject': subject, 'date': timestamp, 'from': sender, 'to': recipient, 'body': body, 'title': options['title'], 'version': "HTML version", 'index': "../index.html", 'versions': version_list}
open('%s/%s_html.html' % (options['output_dir'], sha1_hash), 'w').write(generated.encode('UTF-8')) open('%s/messages/%s_html.html' % (options['output_dir'], sha1_hash), 'w').write(generated.encode('UTF-8'))
shutil.copy('%s/style.css' % options['template_dir'], '%s/style.css' % options['output_dir']) shutil.copy('%s/style.css' % options['template_dir'], '%s/style.css' % options['output_dir'])

@ -2,7 +2,7 @@
<html> <html>
<head> <head>
<title>"%(subject)s" from %(from)s (%(date)s) - %(title)s</title> <title>"%(subject)s" from %(from)s (%(date)s) - %(title)s</title>
<link rel="stylesheet" href="style.css"> <link rel="stylesheet" href="../style.css">
</head> </head>
<body> <body>
<h1>?title</h1> <h1>?title</h1>

Loading…
Cancel
Save