mirror of
https://github.com/postgres/pgweb.git
synced 2025-08-03 15:38:59 +00:00
95 lines
3.5 KiB
Python
95 lines
3.5 KiB
Python
from django.conf.urls.defaults import *
|
|
|
|
# Register our save signal handlers
|
|
from pgweb.util.bases import register_basic_signal_handlers
|
|
register_basic_signal_handlers()
|
|
|
|
# Uncomment the next two lines to enable the admin:
|
|
from django.contrib import admin
|
|
admin.autodiscover()
|
|
|
|
|
|
# dict with all the RSS feeds we can serve
|
|
from core.feeds import VersionFeed
|
|
from news.feeds import NewsFeed
|
|
from events.feeds import EventFeed
|
|
feeds = {
|
|
'versions': VersionFeed,
|
|
'news': NewsFeed,
|
|
'events': EventFeed,
|
|
}
|
|
|
|
urlpatterns = patterns('',
|
|
(r'^$', 'pgweb.core.views.home'),
|
|
|
|
(r'^about/newsarchive/$', 'news.views.archive'),
|
|
(r'^about/news/(\d+)(-.*)?/$', 'news.views.item'),
|
|
(r'^about/eventarchive/$', 'events.views.archive'),
|
|
(r'^about/event/(\d+)(-.*)?/$', 'events.views.item'),
|
|
(r'^about/featurematrix/$', 'featurematrix.views.root'),
|
|
(r'^about/featurematrix/detail/(\d+)/$', 'featurematrix.views.detail'),
|
|
(r'^about/quotesarchive/$', 'quotes.views.allquotes'),
|
|
|
|
(r'^ftp/(.*/)?$', 'downloads.views.ftpbrowser'),
|
|
(r'^download/mirrors-ftp/+(.*)$', 'downloads.views.mirrorselect'),
|
|
(r'^download/product-categories/$', 'downloads.views.categorylist'),
|
|
(r'^download/products/(\d+)(-.*)?/$', 'downloads.views.productlist'),
|
|
(r'^redir/(\d+)/([hf])/([a-zA-Z0-9/\._-]+)$', 'downloads.views.mirror_redirect'),
|
|
(r'^redir$', 'downloads.views.mirror_redirect_old'),
|
|
(r'^mirrors.xml$', 'downloads.views.mirrors_xml'),
|
|
(r'^applications-v2.xml$', 'downloads.views.applications_v2_xml'),
|
|
|
|
(r'^docs/(current|\d\.\d)/(static|interactive)/(.*).html$', 'docs.views.docpage'),
|
|
(r'^docs/(current|\d\.\d)/(static|interactive)/$', 'docs.views.docsrootpage'),
|
|
|
|
(r'^community/$', 'core.views.community'),
|
|
(r'^community/contributors/$', 'contributors.views.completelist'),
|
|
(r'^community/lists/$', 'lists.views.root'),
|
|
(r'^community/lists/subscribe/$', 'lists.views.subscribe'),
|
|
(r'^community/survey/vote/(\d+)/$', 'survey.views.vote'),
|
|
(r'^community/survey[/\.](\d+)(-.*)?/$', 'survey.views.results'),
|
|
|
|
(r'^support/professional_(support|hosting)/$', 'profserv.views.root'),
|
|
(r'^support/professional_(support|hosting)[/_](.*)/$', 'profserv.views.region'),
|
|
(r'^support/submitbug/$', 'misc.views.submitbug'),
|
|
|
|
(r'^about/sponsors/$', 'pgweb.sponsors.views.sponsors'),
|
|
(r'^about/servers/$', 'pgweb.sponsors.views.servers'),
|
|
|
|
###
|
|
# RSS feeds
|
|
###
|
|
(r'^(versions|news|events).rss$', 'django.contrib.syndication.views.feed', {'feed_dict':feeds}),
|
|
|
|
###
|
|
# Special secttions
|
|
###
|
|
(r'account/', include('account.urls')),
|
|
|
|
###
|
|
# Legacy URLs from the old website, that are likely to be used from other
|
|
# sites or press releases or such
|
|
###
|
|
(r'^about/press/presskit(\d+)\.html\.(\w+)$', 'pgweb.legacyurl.views.presskit'),
|
|
(r'^about/news\.(\d+)$', 'pgweb.legacyurl.views.news'),
|
|
(r'^about/event\.(\d+)$', 'pgweb.legacyurl.views.event'),
|
|
(r'^community/signup', 'pgweb.legacyurl.views.signup'),
|
|
|
|
# Override some URLs in admin, to provide our own pages
|
|
(r'^admin/pending/$', 'pgweb.core.views.admin_pending'),
|
|
# Uncomment the next line to enable the admin:
|
|
(r'^admin/(.*)', admin.site.root),
|
|
|
|
# This should not happen in production - serve by the webserver natively!
|
|
url(r'^media/(.*)$', 'django.views.static.serve', {
|
|
'document_root': '../media',
|
|
}),
|
|
url(r'^(favicon.ico)$', 'django.views.static.serve', {
|
|
'document_root': '../media',
|
|
}),
|
|
|
|
# Fallback for static pages, must be at the bottom
|
|
(r'^(.*)/$', 'pgweb.core.views.fallback'),
|
|
)
|
|
|