~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to www/apps/userservice/__init__.py

  • Committer: mattgiuca
  • Date: 2008-02-18 00:32:43 UTC
  • Revision ID: svn-v3-trunk0:2b9c9e99-6f39-0410-b283-7f802c844ae2:trunk:487
setup.py: Added code to convert usrmgt_port into an int before writing to conf
    (and checking). Same as db_port.
userservice: Now uses config'd values for usrmgt settings instead of
    hard-coded.

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
from common import (util, chat, caps)
92
92
import conf
93
93
 
94
 
# TODO: Config these in setup.py
95
 
USERMGT_HOST = "localhost"
96
 
USERMGT_PORT = 3000
97
 
USERMGT_MAGIC = "magicuser"
 
94
from conf import (usrmgt_host, usrmgt_port, usrmgt_magic)
98
95
 
99
96
# The user must send this declaration message to ensure they acknowledge the
100
97
# TOS
157
154
    }
158
155
    msg = {'activate_user': args}
159
156
 
160
 
    response = chat.chat(USERMGT_HOST, USERMGT_PORT, msg, USERMGT_MAGIC,
 
157
    response = chat.chat(usrmgt_host, usrmgt_port, msg, usrmgt_magic,
161
158
        decode = False)
162
159
    # TODO: Figure out a way to let the user be "enabled" in this session.
163
160
    # (Would require a write to the session?)
203
200
    return
204
201
    # END TEMP
205
202
 
206
 
    response = chat.chat(USERMGT_HOST, USERMGT_PORT, msg, USERMGT_MAGIC,
 
203
    response = chat.chat(usrmgt_host, usrmgt_port, msg, usrmgt_magic,
207
204
        decode = False)
208
205
    req.content_type = "text/plain"
209
206
    req.write(response)
259
256
    return
260
257
    # END TEMP
261
258
 
262
 
    response = chat.chat(USERMGT_HOST, USERMGT_PORT, msg, USERMGT_MAGIC,
 
259
    response = chat.chat(usrmgt_host, usrmgt_port, msg, usrmgt_magic,
263
260
        decode = False)
264
261
    req.content_type = "text/plain"
265
262
    req.write(response)