41
42
url(r'^$', mainpage, name="mainpage"),
42
43
url(r'^changelog/$', "mainpage.views.changelog", name="changelog"),
43
44
url(r'^developers/$', "mainpage.views.developers", name="developers"),
45
url(r'^help/(?P<path>.*)', redirect_to, { "url": "/encyclopedia/%(path)s", "permanent": True }), # to not break old links
45
47
url(r'^webchat/', include("wlwebchat.urls")),
46
48
url(r'^images/', include("wlimages.urls")),
47
49
url(r'^profile/', include("wlprofile.urls")),