forked from varia/distribusi
first working version since long time
This commit is contained in:
parent
48f1889ee9
commit
eec6016737
@ -102,20 +102,18 @@ def check_distribusi_index(args, index):
|
|||||||
|
|
||||||
def write_index(args, index, html):
|
def write_index(args, index, html):
|
||||||
with open(index, "w") as index_file:
|
with open(index, "w") as index_file:
|
||||||
if not args.no_template:
|
if args.style:
|
||||||
if args.style:
|
file_style = open(args.style, "r")
|
||||||
file_style = open(args.style, "r")
|
style = file_style.read()
|
||||||
style = file_style.read()
|
styled_html_head = html_head % style
|
||||||
styled_html_head = html_head % style
|
else:
|
||||||
else:
|
styled_html_head = html_head % ""
|
||||||
styled_html_head = html_head % ""
|
|
||||||
index_file.write(styled_html_head)
|
index_file.write(styled_html_head)
|
||||||
|
|
||||||
for line in html:
|
for line in html:
|
||||||
index_file.write(line + "\n")
|
index_file.write(line + "\n")
|
||||||
|
|
||||||
if not args.no_template:
|
index_file.write(html_footer)
|
||||||
index_file.write(html_footer)
|
|
||||||
|
|
||||||
|
|
||||||
def handle_text_files(name, full_path, subtype):
|
def handle_text_files(name, full_path, subtype):
|
||||||
@ -144,7 +142,7 @@ def handle_image_files(name, full_path, args):
|
|||||||
|
|
||||||
image_alttext = add_alttext(full_path)
|
image_alttext = add_alttext(full_path)
|
||||||
image_description = add_description(full_path)
|
image_description = add_description(full_path)
|
||||||
|
|
||||||
if not image_alttext and not image_description:
|
if not image_alttext and not image_description:
|
||||||
return image_no_description.format(
|
return image_no_description.format(
|
||||||
name=name, thumbnail_filename=thumbnail_filename
|
name=name, thumbnail_filename=thumbnail_filename
|
||||||
|
Loading…
Reference in New Issue
Block a user