public inbox for [email protected]
help / color / mirror / Atom feedhttps://www.postgresql.org/developer/summerofcode/
4+ messages / 3 participants
[nested] [flat]
* https://www.postgresql.org/developer/summerofcode/
@ 2026-01-18 17:00 Jesper Pedersen <[email protected]>
2026-01-19 08:49 ` Re: https://www.postgresql.org/developer/summerofcode/ Andrey Borodin <[email protected]>
0 siblings, 1 reply; 4+ messages in thread
From: Jesper Pedersen @ 2026-01-18 17:00 UTC (permalink / raw)
To: [email protected]; +Cc: Pavlo Golub <[email protected]>
Hi,
Could somebody make $SUBJECT redirect to
https://wiki.postgresql.org/wiki/GSoC
or remove the content, and provide a link to the Wiki instead.
We can provide content as well...
Thanks in advance !
Best regards,
Pavlo and Jesper
^ permalink raw reply [nested|flat] 4+ messages in thread
* Re: https://www.postgresql.org/developer/summerofcode/
2026-01-18 17:00 https://www.postgresql.org/developer/summerofcode/ Jesper Pedersen <[email protected]>
@ 2026-01-19 08:49 ` Andrey Borodin <[email protected]>
2026-01-19 09:25 ` Re[2]: https://www.postgresql.org/developer/summerofcode/ Pavlo Golub <[email protected]>
2026-01-19 10:30 ` Re: https://www.postgresql.org/developer/summerofcode/ Jesper Pedersen <[email protected]>
0 siblings, 2 replies; 4+ messages in thread
From: Andrey Borodin @ 2026-01-19 08:49 UTC (permalink / raw)
To: Jesper Pedersen <[email protected]>; +Cc: [email protected]; Pavlo Golub <[email protected]>
> On 18 Jan 2026, at 22:00, Jesper Pedersen <[email protected]> wrote:
>
> Could somebody make $SUBJECT redirect to
>
> https://wiki.postgresql.org/wiki/GSoC
Makes sense. Here's a patch.
BTW, do you guys plan to attend PGConf.dev? Let's make a community workshop about GSoC projects there.
Best regards, Andrey Borodin.
Attachments:
[application/octet-stream] 0001-Redirect-from-GSoC-page-to-wiki.patch (4.6K, ../../[email protected]/2-0001-Redirect-from-GSoC-page-to-wiki.patch)
download | inline diff:
From 49d169443f766cb917373b3953fd588f7b991c1e Mon Sep 17 00:00:00 2001
From: Andrey Borodin <[email protected]>
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%}
-
-<h1>PostgreSQL and Google Summer of Code <i class="fa fa-code"></i></h1>
-
-<p>The PostgreSQL Project is participating in the Google <a
-href="https://summerofcode.withgoogle.com/" target="_blank" rel="noopener">Summer of Code 2018</a>
-program! This program funds students to contribute to an open source project over
-their summer break.</p>
-
-<ul>
-<li><a href="#2018mentors">2018 Mentors</a></li>
-
-<li><a href="#2018projects">2018 Accepted Projects</a></li>
-
-<li><a href="#past">Previously Accepted Projects</a></li>
-
-<li><a href="#faq">Frequently Asked Questions</a></li>
-</ul>
-
-<a id="2018mentors" name="2018mentors"></a>
-
-<h2>2018 Mentors</h2>
-
-<p>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.</p>
-
-<p>The GSoC Admins are:</p>
-<ul>
- <li>Stephen Frost <sfrost @ snowman.net></li>
- <li>David Steele <david.steele @ crunchydata.com></li>
-</ul>
-
-<p>The mentors for GSoC 2018 are:</p>
-
-<ul>
- <li>Anastasia Lubennikova</li>
- <li>Atri Sharma</li>
- <li>Andrey Borodin</li>
- <li>Mark Wong</li>
- <li>Aleksander Alekseev</li>
-</ul>
-
-<a id="2018projects" name="2018projects"></a>
-
-<h2>2018 Accepted Projects</h2>
-
-<p>The PostgreSQL project accepted the following proposals:</p>
-
-<ul>
- <li>Performance Farm - Hongyuan Ma</li>
- <li>Implement pg_thrift plugin - Yan (Charles) Cui</li>
- <li>Sorting Algorithms Benchmark and Implementation - Kefan Yang</li>
-</ul>
-
-<a id="past" name="past"></a>
-<h2>Previously Accepted Projects</h2>
-<ul>
- <li>Re-logging of unlogged tables</li>
- <li>Index-Only scans for GiST</li>
- <li>Fast GiST index build</li>
- <li>New phpPgAdmin Plugin Architecture</li>
- <li>pgAdmin database designer</li>
- <li>Better indexing for ranges</li>
- <li>Document Collection Foreign-data Wrapper</li>
-</ul>
-
-<p>More information on past GSoC participation can be found on PostgreSQL GSoC pages:
-(<a href="https://wiki.postgresql.org/wiki/GSoC_2017">2017</a>
- | <a href="https://wiki.postgresql.org/wiki/GSoC_2016">2016</a>
- | <a href="https://wiki.postgresql.org/wiki/GSoC_2015">2015</a>
- | <a href="https://wiki.postgresql.org/wiki/GSoC_2014">2014</a>
- | <a href="https://wiki.postgresql.org/wiki/GSoC_2013">2013</a>
- | <a href="https://wiki.postgresql.org/wiki/GSoC_2012">2012</a>
- | <a href="https://wiki.postgresql.org/wiki/GSoC_2011">2011</a>
- | <a href="https://wiki.postgresql.org/wiki/GSoC_2010">2010</a>
- | <a href="https://code.google.com/soc/2008/postgres/about.html">2008</a>
- | <a href="https://code.google.com/soc/2007/postgres/about.html">2007</a>
- | <a href="https://code.google.com/soc/2006/pgsql/about.html">2006</a>)</p>
-
-
-<a id="faq" name="faq"></a>
-
-<h2>Frequently Asked Questions</h2>
-
-<ul>
-<li>
-<p><strong>What is the timeline for GSoC 2018?</strong></p>
-
-<p>Please see the <a href="https://developers.google.com/open-source/gsoc/timeline">
-Google Summer of Code 2018 Timeline</a> for the complete GSoC 2018 timeline.</p>
-
-</li>
-
-</ul>
-{%endblock%}
--
2.51.2
^ permalink raw reply [nested|flat] 4+ messages in thread
* Re[2]: https://www.postgresql.org/developer/summerofcode/
2026-01-18 17:00 https://www.postgresql.org/developer/summerofcode/ Jesper Pedersen <[email protected]>
2026-01-19 08:49 ` Re: https://www.postgresql.org/developer/summerofcode/ Andrey Borodin <[email protected]>
@ 2026-01-19 09:25 ` Pavlo Golub <[email protected]>
1 sibling, 0 replies; 4+ messages in thread
From: Pavlo Golub @ 2026-01-19 09:25 UTC (permalink / raw)
To: Andrey Borodin <[email protected]>; Jesper Pedersen <[email protected]>; +Cc: [email protected]
>
>BTW, do you guys plan to attend PGConf.dev? Let's make a community workshop about GSoC projects there.
>
I applied for a 25min talk but I'm open to workshop. Should we dedicate
it to all mentoring programs we have atm, not only GSoC?
Best regards,
Pavlo Golub
^ permalink raw reply [nested|flat] 4+ messages in thread
* Re: https://www.postgresql.org/developer/summerofcode/
2026-01-18 17:00 https://www.postgresql.org/developer/summerofcode/ Jesper Pedersen <[email protected]>
2026-01-19 08:49 ` Re: https://www.postgresql.org/developer/summerofcode/ Andrey Borodin <[email protected]>
@ 2026-01-19 10:30 ` Jesper Pedersen <[email protected]>
1 sibling, 0 replies; 4+ messages in thread
From: Jesper Pedersen @ 2026-01-19 10:30 UTC (permalink / raw)
To: Andrey Borodin <[email protected]>; +Cc: [email protected]; Pavlo Golub <[email protected]>
Hi Andrey,
On 1/19/26 3:49 AM, Andrey Borodin wrote:
>> Could somebody make $SUBJECT redirect to
>>
>> https://wiki.postgresql.org/wiki/GSoC
>
>
> Makes sense. Here's a patch.
>
Thanks for working on this !
There is something going on my side (USA) where I can only see the new
Wiki page changes if I'm logged in. There must be a caching layer that
needs a reset - or ?
> BTW, do you guys plan to attend PGConf.dev? Let's make a community workshop about GSoC projects there.
>
Unfortunately, I won't be there but I can attend visually :)
Best regards,
Jesper
^ permalink raw reply [nested|flat] 4+ messages in thread
end of thread, other threads:[~2026-01-19 10:30 UTC | newest]
Thread overview: 4+ messages (download: mbox mbox.gz follow: Atom feed)
-- links below jump to the message on this page --
2026-01-18 17:00 https://www.postgresql.org/developer/summerofcode/ Jesper Pedersen <[email protected]>
2026-01-19 08:49 ` Andrey Borodin <[email protected]>
2026-01-19 09:25 ` Re[2]: https://www.postgresql.org/developer/summerofcode/ Pavlo Golub <[email protected]>
2026-01-19 10:30 ` Jesper Pedersen <[email protected]>
This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox