socializer/doc/generator.py

59 lines
2.0 KiB
Python
Raw Normal View History

2016-06-06 09:41:42 +02:00
# -*- coding: utf-8 -*-
import markdown
import os
import shutil
2016-06-06 09:41:42 +02:00
from codecs import open as _open
import languageHandler
languageHandler.setLanguage("en")
import strings
import changelog
2016-06-06 09:41:42 +02:00
# the list of supported language codes
languages = ["en", "ru", "es"]
2016-06-06 09:41:42 +02:00
def generate_document(language, document_type="documentation"):
2016-06-06 09:41:42 +02:00
reload(languageHandler)
if document_type == "documentation":
translation_file = "socializer-documentation"
languageHandler.setLanguage(language, translation_file)
reload(strings)
markdown_file = markdown.markdown("\n".join(strings.documentation[1:]), extensions=["markdown.extensions.toc"])
title = strings.documentation[0]
filename = "manual.html"
elif document_type == "changelog":
translation_file = "socializer-changelog"
languageHandler.setLanguage(language, translation_file)
reload(changelog)
markdown_file = markdown.markdown("\n".join(changelog.documentation[1:]), extensions=["markdown.extensions.toc"])
title = changelog.documentation[0]
filename = "changelog.html"
2016-06-06 09:41:42 +02:00
first_html_block = """<!doctype html>
<html lang="%s">
<head>
<title>%s</title>
<meta charset="utf-8">
</head>
<body>
<header><h1>%s</h1></header>
""" % (language, title, title)
2016-06-06 09:41:42 +02:00
first_html_block = first_html_block+ markdown_file
first_html_block = first_html_block + "\n</body>\n</html>"
if not os.path.exists(os.path.join("documentation", language)):
os.mkdir(os.path.join("documentation", language))
mdfile = _open(os.path.join("documentation", language, filename), "w", encoding="utf-8")
2016-06-06 09:41:42 +02:00
mdfile.write(first_html_block)
mdfile.close()
def create_documentation():
print("Creating documentation in the supported languages...\n")
if not os.path.exists("documentation"):
os.mkdir("documentation")
if os.path.exists(os.path.join("documentation", "license.txt")) == False:
shutil.copy(os.path.join("..", "license.txt"), os.path.join("documentation", "license.txt"))
2016-06-06 09:41:42 +02:00
for i in languages:
print("Creating documentation for: %s" % (i,))
generate_document(i)
generate_document(i, "changelog")
2016-06-06 09:41:42 +02:00
print("Done")
create_documentation()