Updated settings help URL to avoid redirect

0.60.x
Simon Willison 2022-01-13 16:38:16 -08:00
rodzic 714b4df1b1
commit ab7d6a7179
4 zmienionych plików z 5 dodań i 4 usunięć

Wyświetl plik

@ -400,7 +400,7 @@ def uninstall(packages, yes):
"--setting",
"settings",
type=Setting(),
help="Setting, see docs.datasette.io/en/stable/config.html",
help="Setting, see docs.datasette.io/en/stable/settings.html",
multiple=True,
)
@click.option(

Wyświetl plik

@ -493,7 +493,7 @@ class DataView(BaseView):
raise DatasetteError(
"""
SQL query took too long. The time limit is controlled by the
<a href="https://docs.datasette.io/en/stable/config.html#sql-time-limit-ms">sql_time_limit_ms</a>
<a href="https://docs.datasette.io/en/stable/settings.html#sql-time-limit-ms">sql_time_limit_ms</a>
configuration option.
""",
title="SQL Interrupted",

Wyświetl plik

@ -94,7 +94,8 @@ datasette serve --help
--memory Make /_memory database available
--config CONFIG Deprecated: set config option using
configname:value. Use --setting instead.
--setting SETTING... Setting, see docs.datasette.io/en/stable/config.html
--setting SETTING... Setting, see
docs.datasette.io/en/stable/settings.html
--secret TEXT Secret used for signing secure values, such as
signed cookies
--root Output URL that sets a cookie authenticating the

Wyświetl plik

@ -155,7 +155,7 @@ def test_sql_time_limit(app_client_shorter_time_limit):
response = app_client_shorter_time_limit.get("/fixtures?sql=select+sleep(0.5)")
assert 400 == response.status
expected_html_fragment = """
<a href="https://docs.datasette.io/en/stable/config.html#sql-time-limit-ms">sql_time_limit_ms</a>
<a href="https://docs.datasette.io/en/stable/settings.html#sql-time-limit-ms">sql_time_limit_ms</a>
""".strip()
assert expected_html_fragment in response.text