68
edits
(Added how-to for MediaWiki) |
|||
(6 intermediate revisions by the same user not shown) | |||
Line 3: | Line 3: | ||
= Formal Definition = | = Formal Definition = | ||
For those interested in a formal definition of XMPP URIs, read RFC 4622 | For those interested in a formal definition of XMPP URIs, read RFC 4622, [http://www.jabber.org/jeps/jep-0147.html JEP-0147] and the [http://www.xmpp.org/registrar/querytypes.html querytypes registry]. | ||
= Web browsers = | = Web browsers = | ||
Line 56: | Line 56: | ||
== jabber.el == | == jabber.el == | ||
[http://emacs-jabber.sf.net jabber.el] supports XMPP URIs from version 0.7.1. How to set it up is described in the documentation. | |||
== Gajim == | == Gajim == | ||
Using Firefox, set the string for network.protocol-handler.app.xmpp to 'gajim-remote | Using Firefox, set the string for network.protocol-handler.app.xmpp to 'gajim-remote handle_uri' in about:config. For Opera add 'xmpp=0,0,gajim-remote handle_uri' under [Trusted Protocols] (I had to add Trusted Protocols at the bottom) in opera6.ini. | ||
== Coccinella == | |||
[http://Coccinella.im/ Coccinella] supports many of them but not all, see coccinella/components/ParseURI.tcl | |||
And the Mac desktop bindings may be flaky. | |||
== Miranda IM== | |||
[http://miranda-im.org/ Miranda IM] supports handling of XMMP URIs since version 0.7.1.2 of jabber plugin. Implementation requires File Association Manager plugin which can be found at http://addons.miranda-im. | |||
= MediaWiki = | |||
If you run a MediaWiki you may also want it to support xmpp: URIs, which it doesn't by default. Thankfully the fix is easy. In your LocalSettings.php file, add the line: | |||
$wgUrlProtocols[] = "xmpp:"; | |||
That's all you technically need to do. It can also make things prettier though if you add the Jabber icon next to all such links. To do this, locate the .css file for the skin you are using (e.g. skins/monobook/main.css) and append the following code: | |||
#bodyContent a[href ^="xmpp:"], | |||
.link-xmpp { | |||
background: url(xmpp_icon.gif) center right no-repeat; | |||
padding-right: 10px; | |||
} | |||
and in the same folder as the CSS file, download and place [http://wiki.jabber.org/skins/jabberorg/xmpp_icon.gif this icon file]. |