Splitting web stuff off into a separate apps directory. This stuff will end up being replaced/re-written, it's ancient and really badly done.

This commit is contained in:
Greg Taylor 2008-06-15 04:40:14 +00:00
parent 75b39ada13
commit ed1510c4a7
12 changed files with 23 additions and 23 deletions

View file

@ -0,0 +1,9 @@
import gameconf
def general_context(request):
"""
Returns common Evennia-related context stuff.
"""
return {
'game_name': gameconf.get_configvalue('site_name'),
}