summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'python/templates/pages/inside-gentoo/developers/herds.html')
-rw-r--r--python/templates/pages/inside-gentoo/developers/herds.html65
1 files changed, 0 insertions, 65 deletions
diff --git a/python/templates/pages/inside-gentoo/developers/herds.html b/python/templates/pages/inside-gentoo/developers/herds.html
deleted file mode 100644
index 2537126..0000000
--- a/python/templates/pages/inside-gentoo/developers/herds.html
+++ /dev/null
@@ -1,65 +0,0 @@
----
-title: 'Gentoo Package Herds'
-navtitle: 'Herds'
-
-nav1: inside-gentoo
-
-nav2: developers
-
-nav3: herds
-nav3-show: true
-nav3-weight: 40
-
-layout: page-nav3
----
-
-<p>
- This page lists all package maintenance groups (herds) in the Gentoo project.
-</p>
-
-{% for entry in site.data.herds %}
-<h3>{{ entry[0] | xml_escape }}</h3>
-
-<table class="table">
- <tr>
- <th class="herd-desc-col">Description</th>
- <td>{{ entry[1].description | xml_escape }}</td>
- </tr>
- <tr>
- <th>Contact</th>
- <td><a href="mailto:{{ entry[1].email | xml_escape }}">{{ entry[1].email | xml_escape }}</a></td>
- </tr>
- <tr>
- <th>Maintainers</th>
- <td>
- {% if entry[1].maintainers %}
- <table class="table table-condensed">
- <tr>
- <th class="herd-maint-col">Maintainer</th>
- <th>Roles</th>
- </tr>
- {% for maint in entry[1].maintainers %}
- <tr>
- <td>
- {% if maint.name %}
- <a href="mailto:{{ maint.email | xml_escape }}">{{ maint.name | xml_escape }}</a>
- {% else %}
- <a href="mailto:{{ maint.email | xml_escape }}">{{ maint.email | xml_escape }}</a>
- {% endif %}
- </td>
- <td>
- {{ maint.role | xml_escape }}
- </td>
- </tr>
- {% endfor %}
- </table>
- {% endif %}
-
- {% if entry[1].proj %}
- A Gentoo project is (also) listed as participating in the maintenance of packages in this herd.
- Listing maintainers of this project is currently not possible.
- {% endif %}
- </td>
- </tr>
-</table>
-{% endfor %}