Changeset - 6f618e110fb0
[Not reviewed]
0 1 0
Ben Sturmfels (bsturmfels) - 3 months ago 2024-03-18 07:47:39
ben@sturm.com.au
Fix /fossy/community-tracks/
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
conservancy/urls.py
Show inline comments
...
 
@@ -9,53 +9,53 @@
 
# AGPL published by the FSF.
 
#
 
# This program is distributed in the hope that it will be useful, but
 
# WITHOUT ANY WARRANTY; without even the implied warranty of
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Affero
 
# General Public License for more details.
 
#
 
# You should have received a copy of the GNU Affero General Public License
 
# along with this program in a file in the toplevel directory called
 
# "AGPLv3".  If not, see <http://www.gnu.org/licenses/>.
 

	
 
from django.urls import include, path, re_path
 
from django.contrib import admin
 

	
 
from . import feeds, frontpage, sponsors
 
from .fundgoal import views as fundgoal_views
 
from . import views as static_views
 

	
 
admin.autodiscover()
 

	
 
urlpatterns = [
 
    path('', frontpage.view),
 
    path('sponsors/', sponsors.view),
 
    path('sponsors/index.html', sponsors.view),
 
    path('admin/', admin.site.urls),
 
    path('feeds/blog/', feeds.BlogFeed()),
 
    path('feeds/news/', feeds.PressReleaseFeed()),
 
    path('feeds/omnibus/', feeds.OmnibusFeed()),
 
    path('feeds/', feeds.view),
 
    path('news/', include('conservancy.news.urls')),
 
    path('blog/', include('conservancy.blog.urls')),
 
    # formerly static templated things... (dirs with templates)
 
    re_path(r'^about/', static_views.index),
 
    re_path(r'^activities/', static_views.index),
 
    re_path(r'^donate/', static_views.index),
 
    re_path(r'^copyleft-compliance/', static_views.index, {'fundraiser_sought': 'vmware-match-0'}),
 
    re_path(r'^learn/', static_views.index),
 
    re_path(r'^press/', static_views.index),
 
    re_path(r'^projects/', static_views.index),
 
    re_path(r'^GiveUpGitHub', static_views.index),
 
    re_path(r'^npoacct/', static_views.index, {'fundraiser_sought': 'npoacct'}),
 
    path('contractpatch/', include('conservancy.contractpatch.urls')),
 
    re_path(r'^overview/', static_views.index),
 
    re_path(r'^privacy-policy/', static_views.index),
 
    path('sustainer/', include('conservancy.supporter.urls')),
 
    re_path(r'^coming-soon.html', static_views.index),
 
    path('fundraiser_data/', fundgoal_views.view),
 
    path('assignment/', include('conservancy.assignment.urls')),
 
    re_path(r'^fossy/', static_views.index),
 
    path('fossy/', static_views.index),
 
    path('fossy/', include('conservancy.fossy.urls')),
 
    path('casts/the-corresponding-source/', include('conservancy.podjango.urls')),
 
    path('usethesource/', include('conservancy.usethesource.urls')),
 
]
0 comments (0 inline, 0 general)