From 49d169443f766cb917373b3953fd588f7b991c1e Mon Sep 17 00:00:00 2001 From: Andrey Borodin Date: Mon, 19 Jan 2026 13:46:55 +0500 Subject: [PATCH] Redirect from GSoC page to wiki --- pgweb/urls.py | 5 + templates/pages/developer/summerofcode.html | 101 -------------------- 2 files changed, 5 insertions(+), 101 deletions(-) delete mode 100644 templates/pages/developer/summerofcode.html diff --git a/pgweb/urls.py b/pgweb/urls.py index d9b81f75..c87e081b 100644 --- a/pgweb/urls.py +++ b/pgweb/urls.py @@ -144,6 +144,11 @@ urlpatterns = [ ### re_path(r'^about/license/$', RedirectView.as_view(url='/about/licence', permanent=True)), + ### + # Redirect developer/summerofcode to wiki + ### + re_path(r'^developer/summerofcode/$', RedirectView.as_view(url='https://wiki.postgresql.org/wiki/GSoC', permanent=True)), + ### # Links included in emails on the lists (do we need to check this for XSS?) ### diff --git a/templates/pages/developer/summerofcode.html b/templates/pages/developer/summerofcode.html deleted file mode 100644 index b503f645..00000000 --- a/templates/pages/developer/summerofcode.html +++ /dev/null @@ -1,101 +0,0 @@ -{%extends "base/page.html"%} -{%block title%}Google Summer of Code Program{%endblock%} -{%block contents%} - -

PostgreSQL and Google Summer of Code

- -

The PostgreSQL Project is participating in the Google Summer of Code 2018 -program! This program funds students to contribute to an open source project over -their summer break.

- - - - - -

2018 Mentors

- -

PostgreSQL follows an open community development model, so student projects -are likely to be reviewed and commented on by any and all members of the -PostgreSQL community. This also means that we may be able to find mentors for -additional projects by reaching out to this community. If you are interested in -working on a project not explicitly mentioned above, you may want to contact -one of the Summer of Code liaisons below about writing a proposal.

- -

The GSoC Admins are:

- - -

The mentors for GSoC 2018 are:

- - - - - -

2018 Accepted Projects

- -

The PostgreSQL project accepted the following proposals:

- - - - -

Previously Accepted Projects

- - -

More information on past GSoC participation can be found on PostgreSQL GSoC pages: -(2017 - | 2016 - | 2015 - | 2014 - | 2013 - | 2012 - | 2011 - | 2010 - | 2008 - | 2007 - | 2006)

- - - - -

Frequently Asked Questions

- - -{%endblock%} -- 2.51.2