Cloaks

Differences between revisions 9 and 10
Revision 9 as of 2010-12-22 20:06:47
Size: 3597
Editor: 99-21-107-94
Comment:
Revision 10 as of 2011-02-13 14:05:43
Size: 3939
Editor: cpc3-smal7-0-0-cust172
Comment: add information about dual-cloaks
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
There are 2 different Ubuntu cloaks possible on [[http://freenode.net/|freenode]]: There are 4 different Ubuntu cloaks possible on [[http://freenode.net/|freenode]]:
Line 4: Line 4:
 * "ubuntu/member/other.cloak.''nickname''"
 * "other/cloak/ubuntu.member.''nickname''"
Line 11: Line 13:

If you want the second or third form of cloak, where you already have a project cloak and want to add the "ubuntu.member.''nickname''" or "other.cloak.''nickname''" to it; you will need to ask a contact from both groups to approve the cloak change.

There are 4 different Ubuntu cloaks possible on freenode:

  • "ubuntu/member/nickname"

  • "ubuntu/member/other.cloak.nickname"

  • "other/cloak/ubuntu.member.nickname"

  • "ubuntu/bot/nickname"

Member cloaks

All Ubuntu members can request an Ubuntu cloak by asking a member of the IRC Council for one. Please do not go to freenode staff first as they require approval from a group contact for group cloaks.

Before you request a cloak please make sure your Launchpad profile contains your IRC nicknames. Then just join #ubuntu-irc and ask, giving a link to your Launchpad profile and make sure you have set up your account as per these steps.

If you want the second or third form of cloak, where you already have a project cloak and want to add the "ubuntu.member.nickname" or "other.cloak.nickname" to it; you will need to ask a contact from both groups to approve the cloak change.

All cloaked people will be added to the ubuntu-irc-cloaks Launchpad team.

Bot cloaks

The ubuntu/bot cloak is only available for bots approved by the IRC council. More information about the bots may be found at UbuntuBots. The following bots currently have a cloak:

Bots can be cloaked if the following conditions are met

  • The bot performs a useful function in Ubuntu teamchannels or LoCo channels of official LoCoTeams

  • There is no other bot performing this function in those channels
  • The bot is allowed by the channel admins of the channels it is in
  • The bot owner is trusted by the IRC council and/or the channel admins of the channels it is in
  • The bot will not join other channels unless the channel owner agrees
  • Preferably, the code for the bot is free software so we can inspect it

Cloaking your bot by linking it to your cloaked nickname is not allowed and will result in your cloak being revoked. If your bot does not meet these requirements, you can always ask freenode staff for an unaffiliated bot cloak.

Canonical Cloaks

For Canonical Employees wishing to obtain an @canonical cloak, please read the internal canonical wiki and/or ping joey. If a canonical employee is an Ubuntu member and would prefer an Ubuntu cloak, then they need to follow the instructions as described above.

Maintenance

Verifying that all members of that team are still Ubuntu members can be done with this python snippet:

import urllib2
from xml.dom import minidom

def get_team(team):
    string = urllib2.urlopen('http://launchpad.net/~%s/+rdf' % team).read()
    tree = minidom.parseString(string)
    members = tree.getElementsByTagName('foaf:Person')
    members = [(x.getElementsByTagName('foaf:name'), x.getElementsByTagName('foaf:mbox_sha1sum')) for x in members ]
    members = [(x[0][0].firstChild.toxml(), x[1][0].firstChild.toxml()) for x in members if len(x[1])]
    return members

cloaks = get_team('ubuntu-irc-cloaks')
members = get_team('ubuntumembers')
print "\n".join(x[0] for x in cloaks if x not in members)


CategoryIRC

IRC/Cloaks (last edited 2022-08-17 13:08:46 by kewisch)