# -*- coding: utf-8 -*- import gettext import os import locale import markdown import shutil from codecs import open as _open from importlib import reload def change_language(name, language): global _ os.environ["lang"] = language _ = gettext.install(name, os.path.join(os.getcwd(), "locales")) languages = ["en", "ru"] def generate_document(language, document_type="documentation"): translation_file = "socializer-documentation" change_language(translation_file, language) if document_type == "documentation": reload(strings) markdown_file = markdown.markdown("\n".join(strings.documentation[1:]), extensions=["markdown.extensions.toc"]) title = strings.documentation[0][1:] filename = "manual.html" elif document_type == "changelog": reload(changelog) markdown_file = markdown.markdown("\n".join(changelog.documentation[1:]), extensions=["markdown.extensions.toc"]) title = changelog.documentation[0][1:] filename = "changelog.html" first_html_block = """ %s

%s

""" % (language, title, title) first_html_block = first_html_block+ markdown_file first_html_block = first_html_block + "\n\n" 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") 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")) for i in languages: print("Creating documentation for: %s" % (i,)) generate_document(i) generate_document(i, "changelog") print("Done") change_language("socializer-documentation", "en") import strings import changelog create_documentation()