elements containing other
elements with "display:block" style, see
- https://github.com/The-Compiler/qutebrowser/issues/1298
+ https://github.com/qutebrowser/qutebrowser/issues/1298
Args:
elem_geometry: The geometry of the element, or None.
diff --git a/qutebrowser/browser/webkit/webkittab.py b/qutebrowser/browser/webkit/webkittab.py
index 9cb4ea68c..6c12d875c 100644
--- a/qutebrowser/browser/webkit/webkittab.py
+++ b/qutebrowser/browser/webkit/webkittab.py
@@ -677,7 +677,7 @@ class WebKitTab(browsertab.AbstractTab):
While Qt has a bool "ok" attribute for loadFinished, it always is True
when using error pages... See
- https://github.com/The-Compiler/qutebrowser/issues/84
+ https://github.com/qutebrowser/qutebrowser/issues/84
"""
self._on_load_finished(not self._widget.page().error_occurred)
@@ -690,8 +690,8 @@ class WebKitTab(browsertab.AbstractTab):
def _on_frame_created(self, frame):
"""Connect the contentsSizeChanged signal of each frame."""
# FIXME:qtwebengine those could theoretically regress:
- # https://github.com/The-Compiler/qutebrowser/issues/152
- # https://github.com/The-Compiler/qutebrowser/issues/263
+ # https://github.com/qutebrowser/qutebrowser/issues/152
+ # https://github.com/qutebrowser/qutebrowser/issues/263
frame.contentsSizeChanged.connect(self._on_contents_size_changed)
@pyqtSlot(QSize)
diff --git a/qutebrowser/browser/webkit/webview.py b/qutebrowser/browser/webkit/webview.py
index 7795f3962..6494b04b8 100644
--- a/qutebrowser/browser/webkit/webview.py
+++ b/qutebrowser/browser/webkit/webview.py
@@ -59,7 +59,7 @@ class WebView(QWebView):
super().__init__(parent)
if sys.platform == 'darwin' and qtutils.version_check('5.4'):
# WORKAROUND for https://bugreports.qt.io/browse/QTBUG-42948
- # See https://github.com/The-Compiler/qutebrowser/issues/462
+ # See https://github.com/qutebrowser/qutebrowser/issues/462
self.setStyle(QStyleFactory.create('Fusion'))
# FIXME:qtwebengine this is only used to set the zoom factor from
# the QWebPage - we should get rid of it somehow (signals?)
diff --git a/qutebrowser/completion/completer.py b/qutebrowser/completion/completer.py
index c5c1915ca..74c759c0d 100644
--- a/qutebrowser/completion/completer.py
+++ b/qutebrowser/completion/completer.py
@@ -239,7 +239,7 @@ class Completer(QObject):
# This is a search or gibberish, so we don't need to complete
# anything (yet)
# FIXME complete searches
- # https://github.com/The-Compiler/qutebrowser/issues/32
+ # https://github.com/qutebrowser/qutebrowser/issues/32
completion.set_model(None)
return
diff --git a/qutebrowser/completion/completiondelegate.py b/qutebrowser/completion/completiondelegate.py
index b48952d1c..dfb479b3f 100644
--- a/qutebrowser/completion/completiondelegate.py
+++ b/qutebrowser/completion/completiondelegate.py
@@ -54,7 +54,7 @@ class CompletionItemDelegate(QStyledItemDelegate):
# FIXME this is horribly slow when resizing.
# We should probably cache something in _get_textdoc or so, but as soon as
# we implement eliding that cache probably isn't worth much anymore...
- # https://github.com/The-Compiler/qutebrowser/issues/121
+ # https://github.com/qutebrowser/qutebrowser/issues/121
def __init__(self, parent=None):
self._painter = None
@@ -173,7 +173,7 @@ class CompletionItemDelegate(QStyledItemDelegate):
"""
# FIXME we probably should do eliding here. See
# qcommonstyle.cpp:viewItemDrawText
- # https://github.com/The-Compiler/qutebrowser/issues/118
+ # https://github.com/qutebrowser/qutebrowser/issues/118
text_option = QTextOption()
if self._opt.features & QStyleOptionViewItem.WrapText:
text_option.setWrapMode(QTextOption.WordWrap)
diff --git a/qutebrowser/completion/completionwidget.py b/qutebrowser/completion/completionwidget.py
index 8a8f9cfb6..294d50332 100644
--- a/qutebrowser/completion/completionwidget.py
+++ b/qutebrowser/completion/completionwidget.py
@@ -134,7 +134,7 @@ class CompletionView(QTreeView):
self.setUniformRowHeights(True)
self.hide()
# FIXME set elidemode
- # https://github.com/The-Compiler/qutebrowser/issues/118
+ # https://github.com/qutebrowser/qutebrowser/issues/118
def __repr__(self):
return utils.get_repr(self)
diff --git a/qutebrowser/completion/models/configmodel.py b/qutebrowser/completion/models/configmodel.py
index 2983dbe5c..4058a5f00 100644
--- a/qutebrowser/completion/models/configmodel.py
+++ b/qutebrowser/completion/models/configmodel.py
@@ -30,7 +30,7 @@ class SettingSectionCompletionModel(base.BaseCompletionModel):
"""A CompletionModel filled with settings sections."""
- # https://github.com/The-Compiler/qutebrowser/issues/545
+ # https://github.com/qutebrowser/qutebrowser/issues/545
# pylint: disable=abstract-method
COLUMN_WIDTHS = (20, 70, 10)
@@ -52,7 +52,7 @@ class SettingOptionCompletionModel(base.BaseCompletionModel):
_section: The config section this model shows.
"""
- # https://github.com/The-Compiler/qutebrowser/issues/545
+ # https://github.com/qutebrowser/qutebrowser/issues/545
# pylint: disable=abstract-method
COLUMN_WIDTHS = (20, 70, 10)
@@ -108,7 +108,7 @@ class SettingValueCompletionModel(base.BaseCompletionModel):
_option: The config option this model shows.
"""
- # https://github.com/The-Compiler/qutebrowser/issues/545
+ # https://github.com/qutebrowser/qutebrowser/issues/545
# pylint: disable=abstract-method
COLUMN_WIDTHS = (20, 70, 10)
diff --git a/qutebrowser/completion/models/miscmodels.py b/qutebrowser/completion/models/miscmodels.py
index 450549057..15ec21fc6 100644
--- a/qutebrowser/completion/models/miscmodels.py
+++ b/qutebrowser/completion/models/miscmodels.py
@@ -32,7 +32,7 @@ class CommandCompletionModel(base.BaseCompletionModel):
"""A CompletionModel filled with non-hidden commands and descriptions."""
- # https://github.com/The-Compiler/qutebrowser/issues/545
+ # https://github.com/qutebrowser/qutebrowser/issues/545
# pylint: disable=abstract-method
COLUMN_WIDTHS = (20, 60, 20)
@@ -50,7 +50,7 @@ class HelpCompletionModel(base.BaseCompletionModel):
"""A CompletionModel filled with help topics."""
- # https://github.com/The-Compiler/qutebrowser/issues/545
+ # https://github.com/qutebrowser/qutebrowser/issues/545
# pylint: disable=abstract-method
def __init__(self, parent=None):
@@ -87,7 +87,7 @@ class QuickmarkCompletionModel(base.BaseCompletionModel):
"""A CompletionModel filled with all quickmarks."""
- # https://github.com/The-Compiler/qutebrowser/issues/545
+ # https://github.com/qutebrowser/qutebrowser/issues/545
# pylint: disable=abstract-method
def __init__(self, parent=None):
@@ -102,7 +102,7 @@ class BookmarkCompletionModel(base.BaseCompletionModel):
"""A CompletionModel filled with all bookmarks."""
- # https://github.com/The-Compiler/qutebrowser/issues/545
+ # https://github.com/qutebrowser/qutebrowser/issues/545
# pylint: disable=abstract-method
def __init__(self, parent=None):
@@ -117,7 +117,7 @@ class SessionCompletionModel(base.BaseCompletionModel):
"""A CompletionModel filled with session names."""
- # https://github.com/The-Compiler/qutebrowser/issues/545
+ # https://github.com/qutebrowser/qutebrowser/issues/545
# pylint: disable=abstract-method
def __init__(self, parent=None):
@@ -249,7 +249,7 @@ class BindCompletionModel(base.BaseCompletionModel):
"""A CompletionModel filled with all bindable commands and descriptions."""
- # https://github.com/The-Compiler/qutebrowser/issues/545
+ # https://github.com/qutebrowser/qutebrowser/issues/545
# pylint: disable=abstract-method
COLUMN_WIDTHS = (20, 60, 20)
diff --git a/qutebrowser/config/config.py b/qutebrowser/config/config.py
index 9e8f14621..aa9ac1ca3 100644
--- a/qutebrowser/config/config.py
+++ b/qutebrowser/config/config.py
@@ -233,7 +233,7 @@ def _init_misc():
# doesn't overwrite our config.
#
# This fixes one of the corruption issues here:
- # https://github.com/The-Compiler/qutebrowser/issues/515
+ # https://github.com/qutebrowser/qutebrowser/issues/515
path = os.path.join(standarddir.config(), 'qsettings')
for fmt in [QSettings.NativeFormat, QSettings.IniFormat]:
diff --git a/qutebrowser/keyinput/modeman.py b/qutebrowser/keyinput/modeman.py
index 54487ae5c..741fe87ec 100644
--- a/qutebrowser/keyinput/modeman.py
+++ b/qutebrowser/keyinput/modeman.py
@@ -299,7 +299,7 @@ class ModeManager(QObject):
log.modes.debug("Leaving mode {}{}".format(
mode, '' if reason is None else ' (reason: {})'.format(reason)))
# leaving a mode implies clearing keychain, see
- # https://github.com/The-Compiler/qutebrowser/issues/1805
+ # https://github.com/qutebrowser/qutebrowser/issues/1805
self.clear_keychain()
self.mode = usertypes.KeyMode.normal
self.left.emit(mode, self.mode, self._win_id)
diff --git a/qutebrowser/mainwindow/prompt.py b/qutebrowser/mainwindow/prompt.py
index 5af2f6b7c..8943d8fb8 100644
--- a/qutebrowser/mainwindow/prompt.py
+++ b/qutebrowser/mainwindow/prompt.py
@@ -112,7 +112,7 @@ class PromptQueue(QObject):
if not sip.isdeleted(question):
# the question could already be deleted, e.g. by a cancelled
# download. See
- # https://github.com/The-Compiler/qutebrowser/issues/415
+ # https://github.com/qutebrowser/qutebrowser/issues/415
self.ask_question(question, blocking=False)
def shutdown(self):
@@ -153,7 +153,7 @@ class PromptQueue(QObject):
if self._shutting_down:
# If we're currently shutting down we have to ignore this question
# to avoid segfaults - see
- # https://github.com/The-Compiler/qutebrowser/issues/95
+ # https://github.com/qutebrowser/qutebrowser/issues/95
log.prompt.debug("Ignoring question because we're shutting down.")
question.abort()
return None
diff --git a/qutebrowser/mainwindow/tabbedbrowser.py b/qutebrowser/mainwindow/tabbedbrowser.py
index 0cdb5eff9..d65360359 100644
--- a/qutebrowser/mainwindow/tabbedbrowser.py
+++ b/qutebrowser/mainwindow/tabbedbrowser.py
@@ -270,7 +270,7 @@ class TabbedBrowser(tabwidget.TabWidget):
# There are some good reasons why a URL could be empty
# (target="_blank" with a download, see [1]), so we silently ignore
# this.
- # [1] https://github.com/The-Compiler/qutebrowser/issues/163
+ # [1] https://github.com/qutebrowser/qutebrowser/issues/163
pass
else:
# We display a warnings for URLs which are not empty but invalid -
diff --git a/qutebrowser/mainwindow/tabwidget.py b/qutebrowser/mainwindow/tabwidget.py
index de65fa280..c4c4beaa5 100644
--- a/qutebrowser/mainwindow/tabwidget.py
+++ b/qutebrowser/mainwindow/tabwidget.py
@@ -253,7 +253,7 @@ class TabBar(QTabBar):
fixing this would be a lot of effort, so we'll postpone it until we're
reimplementing drag&drop for other reasons.
- https://github.com/The-Compiler/qutebrowser/issues/126
+ https://github.com/qutebrowser/qutebrowser/issues/126
Attributes:
vertical: When the tab bar is currently vertical.
diff --git a/qutebrowser/misc/earlyinit.py b/qutebrowser/misc/earlyinit.py
index def252a91..66bc55ca0 100644
--- a/qutebrowser/misc/earlyinit.py
+++ b/qutebrowser/misc/earlyinit.py
@@ -69,7 +69,7 @@ def _missing_str(name, *, windows=None, pip=None, webengine=False):
'(like Debian/Ubuntu), so you need to start without '
'--backend webengine there.'),
('QtWebEngine is currently unsupported with the OS X .app, see '
- 'https://github.com/The-Compiler/qutebrowser/issues/1692'),
+ 'https://github.com/qutebrowser/qutebrowser/issues/1692'),
]
else:
lines = ['If you installed a qutebrowser package for your '
diff --git a/qutebrowser/misc/editor.py b/qutebrowser/misc/editor.py
index 1705df09c..a6f2854d8 100644
--- a/qutebrowser/misc/editor.py
+++ b/qutebrowser/misc/editor.py
@@ -107,7 +107,7 @@ class ExternalEditor(QObject):
# Close while the external process is running, as otherwise systems
# with exclusive write access (e.g. Windows) may fail to update
# the file from the external editor, see
- # https://github.com/The-Compiler/qutebrowser/issues/1767
+ # https://github.com/qutebrowser/qutebrowser/issues/1767
with tempfile.NamedTemporaryFile(
mode='w', prefix='qutebrowser-editor-', encoding=encoding,
delete=False) as fobj:
diff --git a/qutebrowser/misc/ipc.py b/qutebrowser/misc/ipc.py
index 6641a9ee8..2e918ed07 100644
--- a/qutebrowser/misc/ipc.py
+++ b/qutebrowser/misc/ipc.py
@@ -222,7 +222,7 @@ class IPCServer(QObject):
try:
os.chmod(self._server.fullServerName(), 0o700)
except FileNotFoundError:
- # https://github.com/The-Compiler/qutebrowser/issues/1530
+ # https://github.com/qutebrowser/qutebrowser/issues/1530
# The server doesn't actually exist even if ok was reported as
# True, so report this as an error.
raise ListenError(self._server)
diff --git a/qutebrowser/misc/sessions.py b/qutebrowser/misc/sessions.py
index 9a544c738..3b18c39a5 100644
--- a/qutebrowser/misc/sessions.py
+++ b/qutebrowser/misc/sessions.py
@@ -167,7 +167,7 @@ class SessionManager(QObject):
if item.title():
data['title'] = item.title()
else:
- # https://github.com/The-Compiler/qutebrowser/issues/879
+ # https://github.com/qutebrowser/qutebrowser/issues/879
if tab.history.current_idx() == idx:
data['title'] = tab.title()
else:
@@ -306,7 +306,7 @@ class SessionManager(QObject):
if 'zoom' in data:
# The zoom was accidentally stored in 'data' instead of per-tab
# earlier.
- # See https://github.com/The-Compiler/qutebrowser/issues/728
+ # See https://github.com/qutebrowser/qutebrowser/issues/728
user_data['zoom'] = data['zoom']
elif 'zoom' in histentry:
user_data['zoom'] = histentry['zoom']
@@ -314,7 +314,7 @@ class SessionManager(QObject):
if 'scroll-pos' in data:
# The scroll position was accidentally stored in 'data' instead
# of per-tab earlier.
- # See https://github.com/The-Compiler/qutebrowser/issues/728
+ # See https://github.com/qutebrowser/qutebrowser/issues/728
pos = data['scroll-pos']
user_data['scroll-pos'] = QPoint(pos['x'], pos['y'])
elif 'scroll-pos' in histentry:
diff --git a/qutebrowser/utils/debug.py b/qutebrowser/utils/debug.py
index e342446b4..89ae62faf 100644
--- a/qutebrowser/utils/debug.py
+++ b/qutebrowser/utils/debug.py
@@ -137,7 +137,7 @@ def qflags_key(base, value, add_base=False, klass=None):
Note: Passing a combined value (such as Qt.AlignCenter) will get the names
for the individual bits (e.g. Qt.AlignVCenter | Qt.AlignHCenter). FIXME
- https://github.com/The-Compiler/qutebrowser/issues/42
+ https://github.com/qutebrowser/qutebrowser/issues/42
Args:
base: The object the flags are in, e.g. QtCore.Qt
diff --git a/qutebrowser/utils/log.py b/qutebrowser/utils/log.py
index 07ec78741..e9ce3d463 100644
--- a/qutebrowser/utils/log.py
+++ b/qutebrowser/utils/log.py
@@ -406,9 +406,9 @@ def qt_message_handler(msg_type, context, msg):
# When enabling debugging with QtWebEngine
"Remote debugging server started successfully. Try pointing a "
"Chromium-based browser to ",
- # https://github.com/The-Compiler/qutebrowser/issues/1287
+ # https://github.com/qutebrowser/qutebrowser/issues/1287
"QXcbClipboard: SelectionRequest too old",
- # https://github.com/The-Compiler/qutebrowser/issues/2071
+ # https://github.com/qutebrowser/qutebrowser/issues/2071
'QXcbWindow: Unhandled client message: ""',
# https://codereview.qt-project.org/176831
"QObject::disconnect: Unexpected null parameter",
@@ -551,7 +551,7 @@ class RAMHandler(logging.Handler):
FIXME: We should do all the HTML formatter via jinja2.
(probably obsolete when moving to a widget for logging,
- https://github.com/The-Compiler/qutebrowser/issues/34
+ https://github.com/qutebrowser/qutebrowser/issues/34
"""
minlevel = LOG_LEVELS.get(level.upper(), VDEBUG_LEVEL)
lines = []
diff --git a/qutebrowser/utils/objreg.py b/qutebrowser/utils/objreg.py
index d05424fc3..e54502ef8 100644
--- a/qutebrowser/utils/objreg.py
+++ b/qutebrowser/utils/objreg.py
@@ -111,7 +111,7 @@ class ObjectRegistry(collections.UserDict):
#
# With older PyQt-versions (5.2.1) we'll get a "TypeError:
# pyqtSignal must be bound to a QObject" instead:
- # https://github.com/The-Compiler/qutebrowser/issues/257
+ # https://github.com/qutebrowser/qutebrowser/issues/257
pass
del partial_objs[name]
diff --git a/qutebrowser/utils/urlutils.py b/qutebrowser/utils/urlutils.py
index 1199c73f4..7e3827fcd 100644
--- a/qutebrowser/utils/urlutils.py
+++ b/qutebrowser/utils/urlutils.py
@@ -36,7 +36,7 @@ from qutebrowser.browser.network import pac
# FIXME: we probably could raise some exceptions on invalid URLs
-# https://github.com/The-Compiler/qutebrowser/issues/108
+# https://github.com/qutebrowser/qutebrowser/issues/108
class InvalidUrlError(ValueError):
@@ -297,7 +297,7 @@ def qurl_from_user_input(urlstr):
WORKAROUND - https://bugreports.qt.io/browse/QTBUG-41089
FIXME - Maybe https://codereview.qt-project.org/#/c/93851/ has a better way
to solve this?
- https://github.com/The-Compiler/qutebrowser/issues/109
+ https://github.com/qutebrowser/qutebrowser/issues/109
Args:
urlstr: The URL as string.
diff --git a/qutebrowser/utils/utils.py b/qutebrowser/utils/utils.py
index fbed4ede3..f3eab1eab 100644
--- a/qutebrowser/utils/utils.py
+++ b/qutebrowser/utils/utils.py
@@ -400,7 +400,7 @@ def keyevent_to_string(e):
if sys.platform == 'darwin':
# Qt swaps Ctrl/Meta on OS X, so we switch it back here so the user can
# use it in the config as expected. See:
- # https://github.com/The-Compiler/qutebrowser/issues/110
+ # https://github.com/qutebrowser/qutebrowser/issues/110
# http://doc.qt.io/qt-5.4/osx-issues.html#special-keys
modmask2str = collections.OrderedDict([
(Qt.MetaModifier, 'Ctrl'),
diff --git a/scripts/dev/download_release.sh b/scripts/dev/download_release.sh
index 80b68d2f0..7ec4d9159 100644
--- a/scripts/dev/download_release.sh
+++ b/scripts/dev/download_release.sh
@@ -14,7 +14,7 @@ fi
cd "$tmpdir"
mkdir windows
-base="https://github.com/The-Compiler/qutebrowser/releases/download/v$1"
+base="https://github.com/qutebrowser/qutebrowser/releases/download/v$1"
wget "$base/qutebrowser-$1.tar.gz" || exit 1
wget "$base/qutebrowser-$1.tar.gz.asc" || exit 1
diff --git a/tests/conftest.py b/tests/conftest.py
index d016f2e58..bafd1cf74 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -133,7 +133,7 @@ def pytest_collection_modifyitems(config, items):
if item.get_marker('issue2183'):
item.add_marker(pytest.mark.xfail(
config.webengine and qtutils.version_check('5.7.1'),
- reason='https://github.com/The-Compiler/qutebrowser/issues/'
+ reason='https://github.com/qutebrowser/qutebrowser/issues/'
'2183'))
if deselected:
diff --git a/tests/end2end/data/downloads/issue1535.html b/tests/end2end/data/downloads/issue1535.html
index aec88420b..2c147bff6 100644
--- a/tests/end2end/data/downloads/issue1535.html
+++ b/tests/end2end/data/downloads/issue1535.html
@@ -4,7 +4,7 @@
Cancelling a download that belongs to an mhtml download.
- See also GitHub
+ See also GitHub