Skip to content

Commit

Permalink
Add core team description.
Browse files Browse the repository at this point in the history
  • Loading branch information
dpage committed May 18, 2015
1 parent d2df8f0 commit d7c0f24
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 1 deletion.
1 change: 1 addition & 0 deletions pgweb/util/contexts.py
Expand Up @@ -57,6 +57,7 @@
],
'developer': [
{'title': 'Developers', 'link':'/developer/'},
{'title': 'Core Team', 'link':'/developer/core/'},
{'title': 'Roadmap', 'link':'/developer/roadmap/'},
{'title': 'Coding', 'link':'/developer/coding/'},
{'title': 'Testing', 'link':'/developer/testing/', 'submenu': [
Expand Down
2 changes: 1 addition & 1 deletion templates/contributors/list.html
Expand Up @@ -8,7 +8,7 @@ <h1>Contributor Profiles</h1>

{%for t in contributortypes%}
<h2>{{t.typename}}</h2>
{%if t.extrainfo%}<p>{{t.extrainfo}}</p>{%endif%}
{%if t.extrainfo%}<p>{{t.extrainfo|safe}}</p>{%endif%}
<div class="tblBasic">
<table border="0" cellpadding="0" cellspacing="0" class="tblBasicGrey">
{%if t.detailed%}
Expand Down
24 changes: 24 additions & 0 deletions templates/pages/developer/core.html
@@ -0,0 +1,24 @@
{%extends "base/page.html"%}
{%block title%}Core Team{%endblock%}
{%block contents%}

<h1>Core Team</h1>

<p>The Postgres core team is composed of six long-time community members
with various specializations. Their roles include:</p>
<ul>
<li>Coordinating release activities.</li>
<li>Acting as a conduit for confidential communication.</li>
<li>Making policy announcements.</li>
<li>Managing permissions for commits, infrastructure, etc.</li>
<li>Handling disciplinary issues.</li>
<li>Making difficult decisions when consensus is lacking.</li>
</ul>

<p>The core team avoids involvement in topics that are best dealt with in
an open forum, like technical direction and advocacy. Core team members
are appointed by existing core team members.</p>

<p>The core team members are listed on the
<a href="/community/contributors/">Contributor Profiles</a> page.
{%endblock%}

0 comments on commit d7c0f24

Please sign in to comment.