From 9ad2d9e91da049bd1deb9e0845ee6577c572bc8a Mon Sep 17 00:00:00 2001 From: "Jonathan S. Katz" Date: Thu, 9 Apr 2020 20:33:15 -0400 Subject: [PATCH] Add "Related Projects" section to "Developers" This provides information about other projects that people can contribute to outside of the core PostgreSQL software. Includes descriptions of each project, how they are used, and how one can get involved. Author: Andreas 'ads' Scherbaum , with editing by me. --- pgweb/util/contexts.py | 1 + .../pages/developer/related-projects.html | 200 ++++++++++++++++++ 2 files changed, 201 insertions(+) create mode 100644 templates/pages/developer/related-projects.html diff --git a/pgweb/util/contexts.py b/pgweb/util/contexts.py index fbf0036..ba8248a 100644 --- a/pgweb/util/contexts.py +++ b/pgweb/util/contexts.py @@ -61,6 +61,7 @@ sitenav = { ]}, {'title': 'Mailing Lists', 'link': '/list/'}, {'title': 'Developer FAQ', 'link': 'https://wiki.postgresql.org/wiki/Developer_FAQ'}, + {'title': 'Related Projects', 'link': '/developer/related-projects/'}, ], 'support': [ {'title': 'Support', 'link': '/support/'}, diff --git a/templates/pages/developer/related-projects.html b/templates/pages/developer/related-projects.html new file mode 100644 index 0000000..5913829 --- /dev/null +++ b/templates/pages/developer/related-projects.html @@ -0,0 +1,200 @@ +{%extends "base/page.html"%} +{% block title %}Related Projects{% endblock %} +{% block contents %} + +
+
+

Related Projects

+

+ There are a vareity of projects that help provide infrastructure and resources + across the community. These projects range from providing event management + software that is used by many of the PostgreSQL community events, + to package management, to even the PostgreSQL.org website + itself! +

+

+ Much like the core PostgreSQL software, these projects rely on the support of + contributors for new features and ongoing maintenance. There are written in a + variety of programming langauges (or in some cases, natural languages!) and + are all ways for people to provide meaningful contributions to the PostgreSQL + community. In addition to what each project provides, there are instructions + for how you can start contributing to the project. +

+

+ If you believe a project belongs on this list, please send an email to + pgsql-www@lists.postgresql.org. +

+ +

Website Infrastructure

+ +

pgweb

+

+ "pgweb" is the base code for the postgresql.org website + and serves as both a content management system and an authentication + provider for many other PostgreSQL family websites. +

+

+ The PostgreSQL website is split into a dynamic and static part: +

+ +

+ The site itself runs on the Django + web framework. You can get involved in this project by communicating on + the pgsql-www mailing + list. +

+ +

Mailing List Infrastructure

+ +

pglister

+

+ The PostgreSQL mailinglist system is powered by "pglister": +

+ + +

pgarchives

+

+ The "pgarchives" codebase powers the display for the PostgreSQL mailing + list archives, which are an essential part of the development workflow for + the PostgreSQL project. +

+ +

+ You can get involved in this project by communicating on + the pgsql-www mailing + list. +

+ +

Development Tools

+ +

PostgreSQL Build Farm

+

+ The PostgreSQL Build Farm tests the current PostgreSQL code, and all supported versions, on a great number of devices provided by the community: +

+ For Buildfarm related discussions, use the buildfarm-members mailing list. +

+ +

Commitfest

+

+ PostgreSQL uses a unique system for managing "Commitfests", which is a + single development cycle. People who use the Commitfest app discuss their + patches on the pgsql-hackers + mailing list. +

+ +

+ You can get involved in this project by communicating on + the pgsql-www mailing + list. +

+ + +

PostgreSQL Performance Farm

+

+ The PostgreSQL Performance Farm gathers performance data: +

+ +

+ You can get involved in this project by communicating on + the pgsql-www mailing + list. +

+ +

Package Management

+ +

apt.postgresql.org

+

+ The APT repository provides PostgreSQL packages for Debian/Ubuntu based + systems: +

+ +

+ You can get involved in this project by communicating on + the pgsql-pkg-debian + mailing list. +

+ +

yum.postgresql.org

+

+ The YUM repository provides PostgreSQL packages for Red Hat/CentOS/Fedora + based systems (and derivatives): +

+ +

+ You can get involved in this project by communicating on + the pgsql-pkg-yum + mailing list. +

+ +

Event Management

+ +

pgeu conference system

+

+ The "pgeu-system" powers a number of PostgreSQL conferences, including: +

+ +

+ The conference system runs on the django web framework, and is Open Source with a MIT License. +

+

+ The code is hosted on git.postgresql.org, and mirrorred to GitHub: +

+ +

+ The GitHub mirror can be used to submit Issues and Pull Requests. You can + get involved in this project by communicating on the + pgeu-system@lists.postgresql.eu + mailing list. +

+ + +

Advocacy

+ +

Press Releases

+

+ The press release repository contains archives of major PostgreSQL + releases, their press kits, and translations, as well as the periodic + minor updates. +

+ +

+ If you are interested in becoming a press release translator, you can get + involved in this project by sending an email to + press@postgresql.org. +

+ +
+
+ +{%endblock%} -- 2.21.1 (Apple Git-122.3)