Re: Issue report: search function not working for private lists

Поиск
Список
Период
Сортировка
От Magnus Hagander
Тема Re: Issue report: search function not working for private lists
Дата
Msg-id CABUevEz4mvffKcrCuwH7=+JL6Z5HdvpQWOy+zA3NCNM+6653dA@mail.gmail.com
обсуждение исходный текст
Ответ на Issue report: search function not working for private lists  (Célestin Matte <celestin.matte@cmatte.me>)
Список pgsql-www


On Thu, Nov 4, 2021 at 10:42 AM Célestin Matte <celestin.matte@cmatte.me> wrote:
There are several issues that prevent the correct installation of search functions for private lists:
- it is only possible to define a single archive search server in pgweb's settings.py, which makes it impossible to define both a public and a private archives server,
- there does not seem to be any kind of permissions verifications in pgweb/search/views.py that would allow only users subscribed to a list to search into it.

I've been told that this functionality did not indeed work for postresql.org's private lists.

Yes, this is a known limitation. This is "documented" in a code comment:

def search(request):
    if not settings.PUBLIC_ARCHIVES:
        # We don't support searching of non-public archives at all at this point.
        # XXX: room for future improvement
        return HttpResponseForbidden('Not public archives')
 

--

В списке pgsql-www по дате отправления:

Предыдущее
От: Magnus Hagander
Дата:
Сообщение: Re: [PATCH] pglister: Add possibility to override settings.py in settings_local.py
Следующее
От: Magnus Hagander
Дата:
Сообщение: Re: [PATCHES] pglister: make organization name generic