mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
16ca492938
* CLICKHOUSE-4063: less manual html @ index.md * CLICKHOUSE-4063: recommend markdown="1" in README.md * CLICKHOUSE-4003: manually purge custom.css for now * CLICKHOUSE-4064: expand <details> before any print (including to pdf) * CLICKHOUSE-3927: rearrange interfaces/formats.md a bit * CLICKHOUSE-3306: add few http headers * Remove copy-paste introduced in #3392 * Hopefully better chinese fonts #3392 * get rid of tabs @ custom.css * Apply comments and patch from #3384 * Add jdbc.md to ToC and some translation, though it still looks badly incomplete * minor punctuation * Add some backlinks to official website from mirrors that just blindly take markdown sources * Do not make fonts extra light * find . -name '*.md' -type f | xargs -I{} perl -pi -e 's//g' {} * find . -name '*.md' -type f | xargs -I{} perl -pi -e 's/ sql/g' {} * Remove outdated stuff from roadmap.md * Not so light font on front page too * Refactor Chinese formats.md to match recent changes in other languages * Update some links on front page * Remove some outdated comment * Add twitter link to front page * More front page links tuning * Add Amsterdam meetup link * Smaller font to avoid second line * Add Amsterdam link to README.md * Proper docs nav translation * Back to 300 font-weight except Chinese * fix docs build * Update Amsterdam link * remove symlinks * more zh punctuation * apply lost comment by @zhang2014 * Apply comments by @zhang2014 from #3417 * Remove Beijing link * rm incorrect symlink * restore content of docs/zh/operations/table_engines/index.md * CLICKHOUSE-3751: stem terms while searching docs * CLICKHOUSE-3751: use English stemmer in non-English docs too * CLICKHOUSE-4135 fix * Remove past meetup link * Add blog link to top nav * Add ContentSquare article link * Add form link to front page + refactor some texts * couple markup fixes * minor * Introduce basic ODBC driver page in docs * More verbose 3rd party libs disclaimer * Put third-party stuff into a separate folder * Separate third-party stuff in ToC too * Update links * Move stuff that is not really (only) a client library into a separate page * Add clickhouse-hdfs-loader link * Some introduction for "interfaces" section * Rewrite tcp.md * http_interface.md -> http.md * fix link * Remove unconvenient error for now * try to guess anchor instead of failing * remove symlink * Remove outdated info from introduction * remove ru roadmap.md * replace ru roadmap.md with symlink * Update roadmap.md * lost file * Title case in toc_en.yml * Sync "Functions" ToC section with en * Remove reference to pretty old ClickHouse release from docs * couple lost symlinks in fa * Close quote in proper place * Rewrite en/getting_started/index.md * Sync en<>ru getting_started/index.md * minor changes * Some gui.md refactoring * Translate DataGrip section to ru * Translate DataGrip section to zh * Translate DataGrip section to fa * Translate DBeaver section to fa * Translate DBeaver section to zh * Split third-party GUI to open-source and commercial * Mention some RDBMS integrations + ad-hoc translation fixes * Add rel="external nofollow" to outgoing links from docs * Lost blank lines * Fix class name * More rel="external nofollow" * Apply suggestions by @sundy-li * Mobile version of front page improvements * test * test 2 * test 3 * Update LICENSE * minor docs fix * Highlight current article as suggested by @sundy-li * fix link destination * Introduce backup.md (only "en" for now) * Mention INSERT+SELECT in backup.md * Some improvements for replication.md * Add backup.md to toc * Mention clickhouse-backup tool * Mention LightHouse in third-party GUI list * Introduce interfaces/third-party/proxy.md * Add clickhouse-bulk to proxy.md * Major extension of integrations.md contents * fix link target * remove unneeded file * better toc item name * fix markdown * better ru punctuation * Add yet another possible backup approach * Simplify copying permalinks to headers * Support non-eng link anchors in docs + update some deps * Generate anchors for single-page mode automatically * Remove anchors to top of pages * Remove anchors that nobody links to * build fixes * fix few links * restore css * fix some links * restore gifs * fix lost words * more docs fixes * docs fixes * NULL anchor * update urllib3 dependency * more fixes
229 lines
7.4 KiB
Python
Executable File
229 lines
7.4 KiB
Python
Executable File
#!/usr/bin/env python
|
||
# -*- coding: utf-8 -*-
|
||
from __future__ import unicode_literals
|
||
|
||
import argparse
|
||
import contextlib
|
||
import datetime
|
||
import logging
|
||
import os
|
||
import shutil
|
||
import subprocess
|
||
import sys
|
||
import tempfile
|
||
import time
|
||
|
||
import markdown.extensions
|
||
import markdown.util
|
||
|
||
from mkdocs import config
|
||
from mkdocs import exceptions
|
||
from mkdocs.commands import build as mkdocs_build
|
||
|
||
from concatenate import concatenate
|
||
import mdx_clickhouse
|
||
|
||
@contextlib.contextmanager
|
||
def temp_dir():
|
||
path = tempfile.mkdtemp(dir=os.environ.get('TEMP'))
|
||
try:
|
||
yield path
|
||
finally:
|
||
shutil.rmtree(path)
|
||
|
||
|
||
@contextlib.contextmanager
|
||
def autoremoved_file(path):
|
||
try:
|
||
with open(path, 'w') as handle:
|
||
yield handle
|
||
finally:
|
||
os.unlink(path)
|
||
|
||
class ClickHouseMarkdown(markdown.extensions.Extension):
|
||
class ClickHousePreprocessor(markdown.util.Processor):
|
||
def run(self, lines):
|
||
for line in lines:
|
||
if '<!--hide-->' not in line:
|
||
yield line
|
||
|
||
def extendMarkdown(self, md):
|
||
md.preprocessors.register(self.ClickHousePreprocessor(), 'clickhouse_preprocessor', 31)
|
||
|
||
markdown.extensions.ClickHouseMarkdown = ClickHouseMarkdown
|
||
|
||
def build_for_lang(lang, args):
|
||
logging.info('Building %s docs' % lang)
|
||
os.environ['SINGLE_PAGE'] = '0'
|
||
|
||
config_path = os.path.join(args.docs_dir, 'toc_%s.yml' % lang)
|
||
|
||
try:
|
||
theme_cfg = {
|
||
'name': 'mkdocs',
|
||
'custom_dir': os.path.join(os.path.dirname(__file__), args.theme_dir),
|
||
'language': lang,
|
||
'direction': 'rtl' if lang == 'fa' else 'ltr',
|
||
'feature': {
|
||
'tabs': False
|
||
},
|
||
'palette': {
|
||
'primary': 'white',
|
||
'accent': 'white'
|
||
},
|
||
'font': False,
|
||
'logo': 'images/logo.svg',
|
||
'favicon': 'assets/images/favicon.ico',
|
||
'include_search_page': False,
|
||
'search_index_only': True,
|
||
'static_templates': ['404.html'],
|
||
'extra': {
|
||
'single_page': False,
|
||
'now': int(time.mktime(datetime.datetime.now().timetuple())) # TODO better way to avoid caching
|
||
}
|
||
}
|
||
|
||
site_names = {
|
||
'en': 'ClickHouse Documentation',
|
||
'ru': 'Документация ClickHouse',
|
||
'zh': 'ClickHouse文档',
|
||
'fa': 'مستندات ClickHouse'
|
||
}
|
||
|
||
cfg = config.load_config(
|
||
config_file=config_path,
|
||
site_name=site_names.get(lang, site_names['en']),
|
||
site_url='https://clickhouse.yandex/docs/%s/' % lang,
|
||
docs_dir=os.path.join(args.docs_dir, lang),
|
||
site_dir=os.path.join(args.output_dir, lang),
|
||
strict=True,
|
||
theme=theme_cfg,
|
||
copyright='©2016–2018 Yandex LLC',
|
||
use_directory_urls=True,
|
||
repo_name='yandex/ClickHouse',
|
||
repo_url='https://github.com/yandex/ClickHouse/',
|
||
edit_uri='edit/master/docs/%s' % lang,
|
||
extra_css=['assets/stylesheets/custom.css'],
|
||
markdown_extensions=[
|
||
'clickhouse',
|
||
'admonition',
|
||
'attr_list',
|
||
'codehilite',
|
||
'extra',
|
||
{
|
||
'toc': {
|
||
'permalink': True,
|
||
'slugify': mdx_clickhouse.slugify
|
||
}
|
||
}
|
||
],
|
||
plugins=[{
|
||
'search': {
|
||
'lang': ['en', 'ru'] if lang == 'ru' else ['en']
|
||
}
|
||
}],
|
||
extra={
|
||
'search': {
|
||
'language': 'en,ru' if lang == 'ru' else 'en'
|
||
}
|
||
}
|
||
)
|
||
|
||
mkdocs_build.build(cfg)
|
||
|
||
if not args.skip_single_page:
|
||
build_single_page_version(lang, args, cfg)
|
||
|
||
except exceptions.ConfigurationError as e:
|
||
raise SystemExit('\n' + str(e))
|
||
|
||
|
||
def build_single_page_version(lang, args, cfg):
|
||
logging.info('Building single page version for ' + lang)
|
||
os.environ['SINGLE_PAGE'] = '1'
|
||
|
||
with autoremoved_file(os.path.join(args.docs_dir, lang, 'single.md')) as single_md:
|
||
concatenate(lang, args.docs_dir, single_md)
|
||
|
||
with temp_dir() as site_temp:
|
||
with temp_dir() as docs_temp:
|
||
docs_temp_lang = os.path.join(docs_temp, lang)
|
||
shutil.copytree(os.path.join(args.docs_dir, lang), docs_temp_lang)
|
||
for root, _, filenames in os.walk(docs_temp_lang):
|
||
for filename in filenames:
|
||
if filename != 'single.md' and filename.endswith('.md'):
|
||
os.unlink(os.path.join(root, filename))
|
||
|
||
cfg.load_dict({
|
||
'docs_dir': docs_temp_lang,
|
||
'site_dir': site_temp,
|
||
'extra': {
|
||
'single_page': True
|
||
},
|
||
'nav': [
|
||
{cfg.data.get('site_name'): 'single.md'}
|
||
]
|
||
})
|
||
|
||
mkdocs_build.build(cfg)
|
||
|
||
single_page_output_path = os.path.join(args.docs_dir, args.output_dir, lang, 'single')
|
||
|
||
if os.path.exists(single_page_output_path):
|
||
shutil.rmtree(single_page_output_path)
|
||
|
||
shutil.copytree(
|
||
os.path.join(site_temp, 'single'),
|
||
single_page_output_path
|
||
)
|
||
|
||
single_page_index_html = os.path.abspath(os.path.join(single_page_output_path, 'index.html'))
|
||
single_page_pdf = single_page_index_html.replace('index.html', 'clickhouse_%s.pdf' % lang)
|
||
create_pdf_command = ['wkhtmltopdf', '--print-media-type', single_page_index_html, single_page_pdf]
|
||
logging.debug(' '.join(create_pdf_command))
|
||
subprocess.check_call(' '.join(create_pdf_command), shell=True)
|
||
|
||
|
||
def build_redirects(args):
|
||
lang_re_fragment = args.lang.replace(',', '|')
|
||
rewrites = []
|
||
with open(os.path.join(args.docs_dir, 'redirects.txt'), 'r') as f:
|
||
for line in f:
|
||
from_path, to_path = line.split(' ', 1)
|
||
from_path = '^/docs/(' + lang_re_fragment + ')/' + from_path.replace('.md', '/?') + '$'
|
||
to_path = '/docs/$1/' + to_path.replace('.md', '/')
|
||
rewrites.append(' '.join(['rewrite', from_path, to_path, 'permanent;']))
|
||
|
||
with open(os.path.join(args.output_dir, 'redirects.conf'), 'w') as f:
|
||
f.write('\n'.join(rewrites))
|
||
|
||
|
||
def build(args):
|
||
for lang in args.lang.split(','):
|
||
build_for_lang(lang, args)
|
||
|
||
build_redirects(args)
|
||
|
||
|
||
if __name__ == '__main__':
|
||
arg_parser = argparse.ArgumentParser()
|
||
arg_parser.add_argument('--lang', default='en,ru,zh,fa')
|
||
arg_parser.add_argument('--docs-dir', default='.')
|
||
arg_parser.add_argument('--theme-dir', default='mkdocs-material-theme')
|
||
arg_parser.add_argument('--output-dir', default='build')
|
||
arg_parser.add_argument('--skip-single-page', action='store_true')
|
||
arg_parser.add_argument('--verbose', action='store_true')
|
||
|
||
args = arg_parser.parse_args()
|
||
os.chdir(os.path.join(os.path.dirname(__file__), '..'))
|
||
|
||
logging.basicConfig(
|
||
level=logging.DEBUG if args.verbose else logging.INFO,
|
||
stream=sys.stderr
|
||
)
|
||
|
||
logging.getLogger('MARKDOWN').setLevel(logging.INFO)
|
||
|
||
from build import build
|
||
build(args)
|