Moved the connect screen to the connect_screen config directive. Made the conf_value field on the configvalue model a TextField so we're not getting truncated at 255 as with a CharField. This means you'll need to delete your config tables and re-sync.

This commit is contained in:
Greg Taylor 2007-10-27 03:25:42 +00:00
parent f3b4422990
commit 4d94132c54
4 changed files with 17 additions and 11 deletions

View file

@ -10,6 +10,8 @@ from django.contrib.auth.models import User
import functions_db
import functions_general
import session_mgr
import ansi
import gameconf
class SessionProtocol(StatefulTelnetProtocol):
"""
@ -117,15 +119,9 @@ class SessionProtocol(StatefulTelnetProtocol):
def game_connect_screen(self):
"""
Show the banner screen.
Show the banner screen. Grab from the 'connect_screen' config directive.
"""
buffer = '-'*50
buffer += ' \n\rWelcome to Evennia!\n\r'
buffer += '-'*50 + '\n\r'
buffer += """Please type one of the following to begin:\n\r
connect <email> <password>\n\r
create \"<username>\" <email> <password>\n\r"""
buffer += '-'*50
buffer = ansi.parse_ansi(gameconf.get_configvalue('connect_screen'))
self.msg(buffer)
def is_loggedin(self):