Revert "Ticket 2107: remove "not implemented" items from sms/xmpp help; nobody likes being told what they can't do!"
This reverts commit 5d9a2eb17e
.
These are commands that are/were implemented by Twitter, and we don't
(yet) implemented. People will be looking for that information.
This commit is contained in:
parent
a55939f3b1
commit
f4fa785fb7
11
doc-src/sms
11
doc-src/sms
|
@ -56,4 +56,13 @@ You can use the following commands with %%site.name%%.
|
||||||
* sub <nickname> - same as 'follow'
|
* sub <nickname> - same as 'follow'
|
||||||
* unsub <nickname> - same as 'leave'
|
* unsub <nickname> - same as 'leave'
|
||||||
* last <nickname> - same as 'get'
|
* last <nickname> - same as 'get'
|
||||||
* nudge <nickname> - remind a user to update.
|
* on <nickname> - not yet implemented.
|
||||||
|
* off <nickname> - not yet implemented.
|
||||||
|
* nudge <nickname> - not yet implemented.
|
||||||
|
* invite <phone number> - not yet implemented.
|
||||||
|
* track <word> - not yet implemented.
|
||||||
|
* untrack <word> - not yet implemented.
|
||||||
|
* track off - not yet implemented.
|
||||||
|
* untrack all - not yet implemented.
|
||||||
|
* tracks - not yet implemented.
|
||||||
|
* tracking - not yet implemented.
|
||||||
|
|
|
@ -742,42 +742,42 @@ class HelpCommand extends Command
|
||||||
function execute($channel)
|
function execute($channel)
|
||||||
{
|
{
|
||||||
$channel->output($this->user,
|
$channel->output($this->user,
|
||||||
_("Commands:")."\n".
|
_("Commands:\n".
|
||||||
_("on - turn on notifications")."\n".
|
"on - turn on notifications\n".
|
||||||
_("off - turn off notifications")."\n".
|
"off - turn off notifications\n".
|
||||||
_("help - show this help")."\n".
|
"help - show this help\n".
|
||||||
_("follow <nickname> - subscribe to user")."\n".
|
"follow <nickname> - subscribe to user\n".
|
||||||
_("groups - lists the groups you have joined")."\n".
|
"groups - lists the groups you have joined\n".
|
||||||
_("subscriptions - list the people you follow")."\n".
|
"subscriptions - list the people you follow\n".
|
||||||
_("subscribers - list the people that follow you")."\n".
|
"subscribers - list the people that follow you\n".
|
||||||
_("leave <nickname> - unsubscribe from user")."\n".
|
"leave <nickname> - unsubscribe from user\n".
|
||||||
_("d <nickname> <text> - direct message to user")."\n".
|
"d <nickname> <text> - direct message to user\n".
|
||||||
_("get <nickname> - get last notice from user")."\n".
|
"get <nickname> - get last notice from user\n".
|
||||||
_("whois <nickname> - get profile info on user")."\n".
|
"whois <nickname> - get profile info on user\n".
|
||||||
_("fav <nickname> - add user's last notice as a 'fave'")."\n".
|
"fav <nickname> - add user's last notice as a 'fave'\n".
|
||||||
_("fav #<notice_id> - add notice with the given id as a 'fave'")."\n".
|
"fav #<notice_id> - add notice with the given id as a 'fave'\n".
|
||||||
_("repeat #<notice_id> - repeat a notice with a given id")."\n".
|
"repeat #<notice_id> - repeat a notice with a given id\n".
|
||||||
_("repeat <nickname> - repeat the last notice from user")."\n".
|
"repeat <nickname> - repeat the last notice from user\n".
|
||||||
_("reply #<notice_id> - reply to notice with a given id")."\n".
|
"reply #<notice_id> - reply to notice with a given id\n".
|
||||||
_("reply <nickname> - reply to the last notice from user")."\n".
|
"reply <nickname> - reply to the last notice from user\n".
|
||||||
_("join <group> - join group")."\n".
|
"join <group> - join group\n".
|
||||||
#_("login - Get a link to login to the web interface")."\n".
|
"login - Get a link to login to the web interface\n".
|
||||||
_("drop <group> - leave group")."\n".
|
"drop <group> - leave group\n".
|
||||||
_("stats - get your stats")."\n".
|
"stats - get your stats\n".
|
||||||
_("stop - same as 'off'")."\n".
|
"stop - same as 'off'\n".
|
||||||
_("quit - same as 'off'")."\n".
|
"quit - same as 'off'\n".
|
||||||
_("sub <nickname> - same as 'follow'")."\n".
|
"sub <nickname> - same as 'follow'\n".
|
||||||
_("unsub <nickname> - same as 'leave'")."\n".
|
"unsub <nickname> - same as 'leave'\n".
|
||||||
_("last <nickname> - same as 'get'")."\n".
|
"last <nickname> - same as 'get'\n".
|
||||||
#_("on <nickname> - not yet implemented.")."\n".
|
"on <nickname> - not yet implemented.\n".
|
||||||
#_("off <nickname> - not yet implemented.")."\n".
|
"off <nickname> - not yet implemented.\n".
|
||||||
_("nudge <nickname> - remind a user to update.")."\n");
|
"nudge <nickname> - remind a user to update.\n".
|
||||||
#_("invite <phone number> - not yet implemented.")."\n".
|
"invite <phone number> - not yet implemented.\n".
|
||||||
#_("track <word> - not yet implemented.")."\n".
|
"track <word> - not yet implemented.\n".
|
||||||
#_("untrack <word> - not yet implemented.")."\n".
|
"untrack <word> - not yet implemented.\n".
|
||||||
#_("track off - not yet implemented.")."\n".
|
"track off - not yet implemented.\n".
|
||||||
#_("untrack all - not yet implemented.")."\n".
|
"untrack all - not yet implemented.\n".
|
||||||
#_("tracks - not yet implemented.")."\n".
|
"tracks - not yet implemented.\n".
|
||||||
#_("tracking - not yet implemented.")."\n"
|
"tracking - not yet implemented.\n"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user