Request a Hat

A hat is a formal, verified, way of posting a comment while speaking for a project, organization, or company. Each user may have multiple hats, one of which may be worn at any time when posting a comment or sending a private message.

Hats are intended for core project developers and company employees that are authorized to make comments on behalf of those organizations, and are usually reserved for notable projects and organizations. Hats are not intended to list every contribution a person has made to any software project.

Hats will not be authorized for occasional contributors to projects, developers of projects which are not widely known, past employees of companies, or other situations where it cannot be verified that one is authorized to represent that organization. In general, unless one has an e-mail address at a compay domain or have commit access to a project, a hat will not be authorized.

To request a hat for your account, provide a short description of the hat (e.g., "OpenBSD Developer"), a public link that will be shown when hovering over the hat that users can see, such as your e-mail address at that project or company, or a link to a company website showing your employment, and private comments that will be seen only by moderators during approval.

Once your hat is requested, a moderator will verify your request by e-mailing the address you submitted as the link, or doing some other manual verification of project association.

<%= form_for @hat_request, :url => create_hat_request_path do |f| %>

<%= f.label :hat, "Hat:" %> <%= f.text_field :hat, :size => 20, :placeholder => "XYZ Project Member" %>
<%= f.label :link, "Link:" %> <%= f.text_field :link, :size => 50, :placeholder => "user@project.org, or a URL to an employment page" %>
<%= f.label :comment, "Comment:" %> <%= f.text_area :comment, :rows => 4, :placeholder => "Will only be shown to moderators during approval" %>

<%= submit_tag "Request Hat" %>

<% end %>