Finished the merge, Disabling comments, Community bans.

This commit is contained in:
some weird guy
2023-08-12 14:55:51 -07:00
parent 46844a7cfb
commit 74ef0db34c
67 changed files with 870 additions and 759 deletions
+25 -16
View File
@@ -1,30 +1,39 @@
"""closedverse URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/1.10/topics/http/urls/
https://docs.djangoproject.com/en/2.2/topics/http/urls/
Examples:
Function views
1. Add an import: from my_app import views
2. Add a URL to urlpatterns: url(r'^$', views.home, name='home')
2. Add a URL to urlpatterns: path('', views.home, name='home')
Class-based views
1. Add an import: from other_app.views import Home
2. Add a URL to urlpatterns: url(r'^$', Home.as_view(), name='home')
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
Including another URLconf
1. Import the include() function: from django.conf.urls import url, include
2. Add a URL to urlpatterns: url(r'^blog/', include('blog.urls'))
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.conf.urls import url, include
from django.contrib import admin
from .settings import INSTALLED_APPS, MEDIA_ROOT, MEDIA_URL
from django.conf.urls.static import static
from django.urls import include, path, re_path
from django.views.static import serve
#from closedverse_main import urls
from closedverse.settings import STATIC_URL
# determine static root for admin app
#admin_root = admin.__file__.replace('__init__.py', 'static/admin')
# Set internal server error handler
handler500 = 'closedverse_main.views.server_err'
urlpatterns = [
url(r'^admin/', admin.site.urls),
url(r'^', include('closedverse_main.urls'))
path('admin/', admin.site.urls),
# edit - the below snippet and admin_root variable are only for if you don't want to use whitenoise
# translation: i made all of this before realizing whitenoise could serve it lmao
# serve static for admin, in production? since admin is the only app now
# accomodations might be needed for other apps (e.g silk?)
# also the slice is meant to normalize e.g static_url being '/s/' to just 's/', etc. (is this necessary? prob not)
#re_path(r'^'+STATIC_URL[1:]+'admin/(?P<path>.*)$', serve, {'document_root': admin_root}),
# URLs for Closedverse
path('', include('closedverse_main.urls'))
]
if 'silk' in INSTALLED_APPS:
urlpatterns += [url(r'^silk/', include('silk.urls', namespace='silk'))]
urlpatterns += static(MEDIA_URL, document_root=MEDIA_ROOT)