From db3d2f191a4ab3e0da37426a18ba54c2c7669a38 Mon Sep 17 00:00:00 2001 From: Anders Ingemann Date: Sun, 19 Apr 2015 19:23:50 +0200 Subject: [PATCH] Fix links to tests/ READMEs --- docs/transform_github_links.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/transform_github_links.py b/docs/transform_github_links.py index e136eda..7fc3469 100644 --- a/docs/transform_github_links.py +++ b/docs/transform_github_links.py @@ -11,8 +11,8 @@ includes_mapping = { r'^(providers|plugins)/index$': r'bootstrapvz/\1/', r'^(providers|plugins)/(?!index)([^/]+)$': r'bootstrapvz/\1/\2/', r'^manifest$': r'manifests/', - r'^testing/index$': r'testing/', - r'^testing/(?!index)([^/]+)_tests$': r'testing/\1/', + r'^testing/index$': r'tests/', + r'^testing/(?!index)([^/]+)_tests$': r'tests/\1/', r'^remote_bootstrapping$': r'bootstrapvz/remote/', r'^developers/index$': r'bootstrapvz/', r'^developers/contributing$': r'CONTRIBUTING.rst', @@ -26,9 +26,9 @@ links_mapping = { r'^$': r'', r'^bootstrapvz/(providers|plugins)$': r'\1', r'^bootstrapvz/(providers|plugins)/([^/]+)$': r'\1/\2.html', - r'^testing$': r'testing', + r'^tests$': r'testing', r'^manifests$': r'manifest.html', - r'^testing/([^/]+)$': r'testing/\1_tests.html', + r'^tests/([^/]+)$': r'testing/\1_tests.html', r'^bootstrapvz/remote$': r'remote_bootstrapping.html', r'^bootstrapvz$': r'developers', r'^CONTRIBUTING\.rst$': r'developers/contributing.html',