s/an URL/a URL/g
This commit is contained in:
parent
409e0d33cd
commit
2152081d82
@ -1244,7 +1244,7 @@ Added
|
||||
- New `:debug-log-filter` command to change console log filtering on-the-fly.
|
||||
- New `:debug-log-level` command to change the console loglevel on-the-fly.
|
||||
- New `general -> yank-ignored-url-parameters` option to configure which URL
|
||||
parameters (like `utm_source` etc.) to strip off when yanking an URL.
|
||||
parameters (like `utm_source` etc.) to strip off when yanking a URL.
|
||||
- Support for the
|
||||
https://developer.mozilla.org/en-US/docs/Web/API/Page_Visibility_API[HTML5 page visibility API]
|
||||
- New `readability` userscript which shows a readable version of a page (using
|
||||
@ -1355,7 +1355,7 @@ Changed
|
||||
- `:hint` has a new `--add-history` argument to add the URL to the history for
|
||||
yank/spawn targets.
|
||||
- `:set` now cycles through values if more than one argument is given.
|
||||
- `:open` now opens `default-page` without an URL even without `-t`/`-b`/`-w` given.
|
||||
- `:open` now opens `default-page` without a URL even without `-t`/`-b`/`-w` given.
|
||||
|
||||
Deprecated
|
||||
~~~~~~~~~~
|
||||
|
@ -215,8 +215,8 @@ What's the difference between insert and passthrough mode?::
|
||||
be useful to rebind escape to something else in passthrough mode only, to be
|
||||
able to send an escape keypress to the website.
|
||||
|
||||
Why does it take longer to open an URL in qutebrowser than in chromium?::
|
||||
When opening an URL in an existing instance, the normal qutebrowser
|
||||
Why does it take longer to open a URL in qutebrowser than in chromium?::
|
||||
When opening a URL in an existing instance, the normal qutebrowser
|
||||
Python script is started and a few PyQt libraries need to be
|
||||
loaded until it is detected that there is an instance running
|
||||
to which the URL is then passed. This takes some time.
|
||||
|
@ -303,10 +303,10 @@ def process_pos_args(args, via_ipc=False, cwd=None, target_arg=None):
|
||||
|
||||
|
||||
def open_url(url, target=None, no_raise=False, via_ipc=True):
|
||||
"""Open an URL in new window/tab.
|
||||
"""Open a URL in new window/tab.
|
||||
|
||||
Args:
|
||||
url: An URL to open.
|
||||
url: A URL to open.
|
||||
target: same as new_instance_open_target (used as a default).
|
||||
no_raise: suppress target window raising.
|
||||
via_ipc: Whether the arguments were transmitted over IPC.
|
||||
|
@ -845,7 +845,7 @@ class AbstractTab(QWidget):
|
||||
|
||||
@pyqtSlot(QUrl)
|
||||
def _on_predicted_navigation(self, url):
|
||||
"""Adjust the title if we are going to visit an URL soon."""
|
||||
"""Adjust the title if we are going to visit a URL soon."""
|
||||
qtutils.ensure_valid(url)
|
||||
url_string = url.toDisplayString()
|
||||
log.webview.debug("Predicted navigation: {}".format(url_string))
|
||||
|
@ -1390,7 +1390,7 @@ class WebEngineTab(browsertab.AbstractTab):
|
||||
|
||||
@pyqtSlot(QUrl)
|
||||
def _on_predicted_navigation(self, url):
|
||||
"""If we know we're going to visit an URL soon, change the settings.
|
||||
"""If we know we're going to visit a URL soon, change the settings.
|
||||
|
||||
This is a WORKAROUND for https://bugreports.qt.io/browse/QTBUG-66656
|
||||
"""
|
||||
|
@ -357,7 +357,7 @@ class Config(QObject):
|
||||
"""Get an object which can be mutated, e.g. in a config.py.
|
||||
|
||||
If a pattern is given, return the value for that pattern.
|
||||
Note that it's impossible to get a mutable object for an URL as we
|
||||
Note that it's impossible to get a mutable object for a URL as we
|
||||
wouldn't know what pattern to apply.
|
||||
"""
|
||||
self.get_opt(name) # To make sure it exists
|
||||
|
@ -60,7 +60,7 @@
|
||||
details.method = details.method ? details.method.toUpperCase() : "GET";
|
||||
|
||||
if (!details.url) {
|
||||
throw new Error("GM_xmlhttpRequest requires an URL.");
|
||||
throw new Error("GM_xmlhttpRequest requires a URL.");
|
||||
}
|
||||
|
||||
// build XMLHttpRequest object
|
||||
|
@ -89,7 +89,8 @@ def check_spelling():
|
||||
'[Ww]ether', '[Pp]rogramatically', '[Ss]plitted', '[Ee]xitted',
|
||||
'[Mm]ininum', '[Rr]esett?ed', '[Rr]ecieved', '[Rr]egularily',
|
||||
'[Uu]nderlaying', '[Ii]nexistant', '[Ee]lipsis', 'commiting',
|
||||
'existant', '[Rr]esetted', '[Ss]imilarily', '[Ii]nformations'}
|
||||
'existant', '[Rr]esetted', '[Ss]imilarily', '[Ii]nformations',
|
||||
'[Aa]n [Uu][Rr][Ll]'}
|
||||
|
||||
# Words which look better when splitted, but might need some fine tuning.
|
||||
words |= {'[Ww]ebelements', '[Mm]ouseevent', '[Kk]eysequence',
|
||||
|
@ -183,7 +183,7 @@ def test_fail_return():
|
||||
])
|
||||
@pytest.mark.parametrize('from_file', [True, False])
|
||||
def test_secret_url(url, has_secret, from_file):
|
||||
"""Make sure secret parts in an URL are stripped correctly.
|
||||
"""Make sure secret parts in a URL are stripped correctly.
|
||||
|
||||
The following parts are considered secret:
|
||||
- If the PAC info is loaded from a local file, nothing.
|
||||
|
@ -473,7 +473,7 @@ class TestConfig:
|
||||
assert conf.get('colors.completion.category.fg') == QColor('white')
|
||||
|
||||
def test_get_for_url(self, conf):
|
||||
"""Test conf.get() with an URL/pattern."""
|
||||
"""Test conf.get() with a URL/pattern."""
|
||||
pattern = urlmatch.UrlPattern('*://example.com/')
|
||||
name = 'content.javascript.enabled'
|
||||
conf.set_obj(name, False, pattern=pattern)
|
||||
@ -484,7 +484,7 @@ class TestConfig:
|
||||
(False, configutils.UNSET)
|
||||
])
|
||||
def test_get_for_url_fallback(self, conf, fallback, expected):
|
||||
"""Test conf.get() with an URL and fallback."""
|
||||
"""Test conf.get() with a URL and fallback."""
|
||||
value = conf.get('content.javascript.enabled',
|
||||
url=QUrl('https://example.com/'),
|
||||
fallback=fallback)
|
||||
|
@ -142,7 +142,7 @@ def test_parse_path(pattern, path):
|
||||
("data:monkey", 'data', None, 'monkey'), # existing scheme
|
||||
])
|
||||
def test_lightweight_patterns(pattern, scheme, host, path):
|
||||
"""Make sure we can leave off parts of an URL.
|
||||
"""Make sure we can leave off parts of a URL.
|
||||
|
||||
This is a deviation from Chromium to make patterns more user-friendly.
|
||||
"""
|
||||
|
Loading…
Reference in New Issue
Block a user