adium 5709:7c547c4f63b0: A new page for XMPP featuring documenta...
commits at adium.im
commits at adium.im
Wed Oct 16 16:52:48 UTC 2013
details: http://hg.adium.im/adium/rev/7c547c4f63b0
revision: 5709:7c547c4f63b0
branch: adium-1.5.8
author: Robert Vehse <robertvehse at fastmail.fm>
date: Wed Oct 16 18:52:27 2013 +0200
A new page for XMPP featuring documentation of MUC commands which work in Adium - based Thijs' list in a Cocoaforge thread: http://www.cocoaforge.com/viewtopic.php?p=133739#p133739
diffs (117 lines):
diff -r 523f607af941 -r 7c547c4f63b0 AdiumHelp/pgs/AdiumDocumentation.html
--- a/AdiumHelp/pgs/AdiumDocumentation.html Wed Oct 16 11:55:57 2013 +0200
+++ b/AdiumHelp/pgs/AdiumDocumentation.html Wed Oct 16 18:52:27 2013 +0200
@@ -41,6 +41,7 @@
<ul>
<li><a href="ServiceInformation-IRCSupport.html">IRC ▸</a></li>
<li><a href="ServiceInformation-TwitterSupport.html">Twitter ▸</a></li>
+ <li><a href="ServiceInformation-XMPPSupport.html">XMPP ▸</a></li>
</ul>
</li>
</ul></td>
diff -r 523f607af941 -r 7c547c4f63b0 AdiumHelp/pgs/ServiceInformation-IRCSupport.html
--- a/AdiumHelp/pgs/ServiceInformation-IRCSupport.html Wed Oct 16 11:55:57 2013 +0200
+++ b/AdiumHelp/pgs/ServiceInformation-IRCSupport.html Wed Oct 16 18:52:27 2013 +0200
@@ -46,7 +46,7 @@
<table class="list" cellspacing="0">
<tr>
<th width="100">Command</th>
- <th>Equivalent acton</th>
+ <th>Equivalent action</th>
</tr>
<tr>
<td>/join</td>
diff -r 523f607af941 -r 7c547c4f63b0 AdiumHelp/pgs/ServiceInformation-XMPPSupport.html
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/AdiumHelp/pgs/ServiceInformation-XMPPSupport.html Wed Oct 16 18:52:27 2013 +0200
@@ -0,0 +1,74 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+<head>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+<link media="all" rel="stylesheet" href="../css/topicpage.css" type="text/css" />
+<title>XMPP (Jabber) in Adium</title>
+<meta name="keywords" content="xmpp, jabber" />
+<meta name="description" content="XMPP (Jabber) in Adium" />
+</head>
+<body>
+<div id="banner"> <a name="tabs" id="tabs"></a>
+ <div id="navleft"><a class="navleftsty" href="../AdiumHelp.html">Adium Help</a> <a class="navleftsty" href="AdiumDocumentation.html">Adium Documentation</a></div>
+</div>
+<div id="mainbox">
+ <div id="caticon"> <img src="../gfx/AdiumIcon.png" alt="Adium Icon" height="32" width="32" border="0" /> </div>
+ <div id="pagetitle">
+ <h1>XMPP (Jabber) in Adium</h1>
+ </div>
+ <p>This page deals with XMPP (historically known as "Jabber") specialities.</p>
+ <div class="taskboxline">
+ <div class="taskboxheader">
+ <h3>Commands in multi-user chats (MUCs)</h3>
+ </div>
+ <p>Adium supports the following commands in multi-user chats.</p>
+ <div class="taskboxtext">
+ <table class="list" cellspacing="0">
+ <tr>
+ <th width="150">Command</th>
+ <th>Meaning</th>
+ </tr>
+ <tr>
+ <td>/affiliate owner <nickname></td>
+ <td>sets user affiliation to "owner" / gives user full permission over a room</td>
+ </tr>
+ <tr>
+ <td>/affiliate admin <nickname></td>
+ <td>sets user affiliation to "admin"</td>
+ </tr>
+ <tr>
+ <td>/affiliate member <nickname></td>
+ <td>sets user affiliation to "member"</td>
+ </tr>
+ <tr>
+ <td>/affiliate outcast <nickname></td>
+ <td>sets user affiliation to "outcast" / bans user</td>
+ </tr>
+ <tr>
+ <td>/affiliate none <nickname></td>
+ <td>sets user affiliation to "none"</td>
+ </tr>
+ <tr>
+ <td>/role moderator <nickname></td>
+ <td>sets user role to "moderator"</td>
+ </tr>
+ <tr>
+ <td>/role participant <nickname></td>
+ <td>sets user role to "participant"</td>
+ </tr>
+ <tr>
+ <td>/role visitor <nickname></td>
+ <td>sets user role to "visitor"</td>
+ </tr>
+ <tr>
+ <td>/role none <nickname></td>
+ <td>sets user role to "none" / kicks user</td>
+ </tr>
+ </table>
+ </div>
+ </div>
+</div>
+<script type="text/javascript" src="../js/help.js"></script>
+</body>
+</html>
\ No newline at end of file
diff -r 523f607af941 -r 7c547c4f63b0 Source/AIChatCyclingPlugin.m
--- a/Source/AIChatCyclingPlugin.m Wed Oct 16 11:55:57 2013 +0200
+++ b/Source/AIChatCyclingPlugin.m Wed Oct 16 18:52:27 2013 +0200
@@ -55,9 +55,9 @@
keyEquivalent:@""];
[menuController addMenuItem:nextChatMenuItem toLocation:LOC_Window_Commands];
- /* Adium 1.5.4+ use the new defaults for chat switching, ctrl+tab, to match Safari's default user-visible behavior */
+ /* Adium 1.5.8+ use the new defaults for chat switching, ctrl+tab, to match Safari's default user-visible behavior */
NSDictionary *defaults = [NSDictionary dictionaryNamed:(([adium compareVersion:adium.earliestLaunchedAdiumVersion
- toVersion:@"1.5.4"] == NSOrderedAscending) ?
+ toVersion:@"1.5.8"] == NSOrderedAscending) ?
OLD_DEFAULT_CHAT_CYCLING_PREFS :
DEFAULT_CHAT_CYCLING_PREFS)
forClass:[self class]];
More information about the commits
mailing list