-
-
Notifications
You must be signed in to change notification settings - Fork 180
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
more url scheme handling #1894
Comments
As per rfc2396 appendix A: the scheme should start with a letter and can contain letters, numbers, "+", "-" and "." Once this is finished, we should register them here: https://www.iana.org/assignments/uri-schemes/uri-schemes.xhtml |
Done in r19856 and tested on:
We still validate the desktop file during rpmbuild.
The "legacy" one still does though:
What on earth do we need to do to get the system to update the mapping? |
So xdg-open just delegates opening URLs and files to other utilities, depending on what OS and DE is running. In the case of gnome3 that's "gio" which is part of "glib2".
We get tons of dbus calls, it seems to query Other scheme types fail in different ways, equally undecipherable. |
Well, that's interesting: this problem doesn't occur on any other test systems, only my main development one. PITA. r20271 fixes URL scheme patching, this will do. @maxmylyn: the URL in the ticket description should fire xpra on all platforms (with the correct transport type).
|
xpra://....
xpras://....
(inc win32 changes)See also:
We should support more transport types using a more generic scheme:
xpra://
for TCPxpra+ssl://
for SSLxpra+ssh://
for SSHxpra+ws://
for websocketsxpra+wss://
for secure websocketsRelated: Web-based protocol handlers can be used to register protocols with the browser.
The text was updated successfully, but these errors were encountered: