diff --git a/templates/pages/developer/related.html b/templates/pages/developer/related.html new file mode 100644 index 0000000..5d6388b --- /dev/null +++ b/templates/pages/developer/related.html @@ -0,0 +1,108 @@ +{%extends "base/page.html"%} +{%block title%}Related Projects{%endblock%} +{%block contents%} + +

Related Projects

+ +

The following are information about related projects which the PostgreSQL community uses.

+ +

To suggest additions to the list, please email + pgsql-www@lists.postgresql.org. +

+ +
+
+

pgweb

+

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

+ The site itself runs on the django web framework. Changes are discussed on the pgsql-www mailing list. +

+
+
+ +
+
+

pgeu conference system

+

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

+ 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. For feature discussions, please send an email to pgeu-system@lists.postgresql.eu. +

+
+
+ +
+
+

pglister

+

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

+

+
+
+ +
+
+

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: +

+ Discussions related to any of the patches listed on the Commitfest pages take place on the pgsql-hackers mailing list. Any discussion related to the Commitfest tool itself is best asked on the pgsql-www mailing list. +

+
+
+ +
+
+

PostgreSQL Performance Farm

+

+ The PostgreSQL Performance Farm gathers performance data: +

+ For Perffarm related discussions, use the pgsql-www mailing list.
+ Note: this project is currently under development. +

+
+
+ +{%endblock%} diff --git a/pgweb/util/contexts.py b/pgweb/util/contexts.py index fbf0036..d86e8f2 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/'}, ], 'support': [ {'title': 'Support', 'link': '/support/'},