summaryrefslogtreecommitdiff
path: root/scripts/asciidoc2html.py
diff options
context:
space:
mode:
authorAxel Dahlberg <axel.dahlberg12@gmail.com>2020-07-01 16:07:22 +0200
committerAxel Dahlberg <axel.dahlberg12@gmail.com>2020-07-01 16:07:22 +0200
commitacff1f1312f07f1ab080b05791d1c4111d76db64 (patch)
tree460eb4873a44b711a4d8cfb61eafe99309cdb58c /scripts/asciidoc2html.py
parent6e9f24bc808509a66bde6b3156eaec5701bfa489 (diff)
downloadqutebrowser-acff1f1312f07f1ab080b05791d1c4111d76db64.tar.gz
qutebrowser-acff1f1312f07f1ab080b05791d1c4111d76db64.zip
Fixed paths in asciidoc2html
Diffstat (limited to 'scripts/asciidoc2html.py')
-rwxr-xr-xscripts/asciidoc2html.py15
1 files changed, 8 insertions, 7 deletions
diff --git a/scripts/asciidoc2html.py b/scripts/asciidoc2html.py
index e337c54db..3917ea053 100755
--- a/scripts/asciidoc2html.py
+++ b/scripts/asciidoc2html.py
@@ -35,7 +35,8 @@ sys.path.insert(0, str(pathlib.Path(__file__).resolve().parents[1]))
from scripts import utils
-DOC_DIR = pathlib.Path("qutebrowser/html/doc")
+REPO_ROOT = pathlib.Path(__file__).parent.parent
+DOC_DIR = pathlib.Path(REPO_ROOT, "qutebrowser/html/doc")
class AsciiDoc:
@@ -79,9 +80,9 @@ class AsciiDoc:
def _build_docs(self) -> None:
"""Render .asciidoc files to .html sites."""
- files = [(pathlib.Path('doc/{}.asciidoc'.format(f)),
+ files = [(pathlib.Path(REPO_ROOT, 'doc/{}.asciidoc'.format(f)),
DOC_DIR / (f + ".html")) for f in self.FILES]
- for src in pathlib.Path('doc/help/').glob('*.asciidoc'):
+ for src in pathlib.Path(REPO_ROOT, 'doc/help/').glob('*.asciidoc'):
dst = DOC_DIR / (src.stem + ".html")
files.append((src, dst))
@@ -111,7 +112,7 @@ class AsciiDoc:
dst_path = DOC_DIR / 'img'
dst_path.mkdir(exist_ok=True)
for filename in ['cheatsheet-big.png', 'cheatsheet-small.png']:
- src = pathlib.Path('doc') / 'img' / filename
+ src = pathlib.Path(REPO_ROOT, 'doc') / 'img' / filename
dst = dst_path / filename
shutil.copy(str(src), str(dst))
@@ -125,7 +126,7 @@ class AsciiDoc:
assert self._tempdir is not None # for mypy
modified_src = self._tempdir / src.name
- shutil.copy('www/header.asciidoc', modified_src)
+ shutil.copy(os.path.join(REPO_ROOT, 'www/header.asciidoc'), modified_src)
outfp = io.StringIO()
@@ -181,7 +182,7 @@ class AsciiDoc:
def _build_website(self) -> None:
"""Prepare and build the website."""
- theme_file = (pathlib.Path('www') / 'qute.css').resolve()
+ theme_file = (pathlib.Path(REPO_ROOT, 'www') / 'qute.css').resolve()
assert self._themedir is not None # for mypy
shutil.copy(theme_file, self._themedir)
@@ -205,7 +206,7 @@ class AsciiDoc:
for dst, link_name in [
('README.html', 'index.html'),
- ((pathlib.Path('doc') / 'quickstart.html'),
+ ((pathlib.Path(REPO_ROOT, 'doc') / 'quickstart.html'),
'quickstart.html')]:
assert isinstance(dst, (str, pathlib.Path)) # for mypy
try: