From b591dedf7fda5ba399937a7db13e22f3d22de405 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 7 Apr 2015 22:38:51 +0200 Subject: [PATCH] Move FAQ/INSTALL to repo root. That's where most people probably expect them... --- doc/FAQ.asciidoc => FAQ.asciidoc | 0 doc/INSTALL.asciidoc => INSTALL.asciidoc | 0 README.asciidoc | 10 +++++----- scripts/asciidoc2html.py | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) rename doc/FAQ.asciidoc => FAQ.asciidoc (100%) rename doc/INSTALL.asciidoc => INSTALL.asciidoc (100%) diff --git a/doc/FAQ.asciidoc b/FAQ.asciidoc similarity index 100% rename from doc/FAQ.asciidoc rename to FAQ.asciidoc diff --git a/doc/INSTALL.asciidoc b/INSTALL.asciidoc similarity index 100% rename from doc/INSTALL.asciidoc rename to INSTALL.asciidoc diff --git a/README.asciidoc b/README.asciidoc index ff3b536b7..e686ea522 100644 --- a/README.asciidoc +++ b/README.asciidoc @@ -34,7 +34,7 @@ See the https://github.com/The-Compiler/qutebrowser/releases[github releases page] for available downloads (currently a source archive, and standalone packages as well as MSI installers for Windows). -See link:doc/INSTALL.asciidoc[INSTALL] for detailed instructions on how to get +See link:INSTALL.asciidoc[INSTALL] for detailed instructions on how to get qutebrowser running for various platforms. Documentation @@ -46,9 +46,9 @@ available: * A http://qutebrowser.org/img/cheatsheet-big.png[key binding cheatsheet]: + image:http://qutebrowser.org/img/cheatsheet-small.png["qutebrowser key binding cheatsheet",link="http://qutebrowser.org/img/cheatsheet-big.png"] * link:doc/quickstart.asciidoc[Quick start guide] -* link:doc/FAQ.asciidoc[Frequently asked questions] +* link:FAQ.asciidoc[Frequently asked questions] * link:CONTRIBUTING.asciidoc[Contributing to qutebrowser] -* link:doc/INSTALL.asciidoc[INSTALL] +* link:INSTALL.asciidoc[INSTALL] * link:CHANGELOG.asciidoc[Change Log] * link:doc/stacktrace.asciidoc[Reporting segfaults] * link:doc/userscripts.asciidoc[How to write userscripts] @@ -108,8 +108,8 @@ console: * https://pypi.python.org/pypi/colorlog/[colorlog] * On Windows: https://pypi.python.org/pypi/colorama/[colorama] -See link:doc/INSTALL.asciidoc[INSTALL] for directions on how to install -qutebrowser and its dependencies. +See link:INSTALL.asciidoc[INSTALL] for directions on how to install qutebrowser +and its dependencies. Donating -------- diff --git a/scripts/asciidoc2html.py b/scripts/asciidoc2html.py index b5ca60b20..707a780c9 100755 --- a/scripts/asciidoc2html.py +++ b/scripts/asciidoc2html.py @@ -89,7 +89,7 @@ def main(colors=False): metavar=('PYTHON', 'ASCIIDOC')) args = parser.parse_args() asciidoc_files = [ - ('doc/FAQ.asciidoc', 'qutebrowser/html/doc/FAQ.html'), + ('FAQ.asciidoc', 'qutebrowser/html/doc/FAQ.html'), ('CHANGELOG.asciidoc', 'qutebrowser/html/doc/CHANGELOG.html'), ('doc/quickstart.asciidoc', 'qutebrowser/html/doc/quickstart.html'), ('doc/userscripts.asciidoc', 'qutebrowser/html/doc/userscripts.html'),