Changeset 703 for oss/headstock/headstock/example/microblog
- Timestamp:
- 06/19/08 16:29:16 (2 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
oss/headstock/headstock/example/microblog/microblog/jabber/client.py
r696 r703 477 477 c = Client(atompub, unicode(username), unicode(password), 478 478 domain=Client.Domain, server=Client.Host, port=Client.Port, 479 usetls= True, register=True, profile=profile)479 usetls=False, register=True, profile=profile) 480 480 Client.Sessions[c.username] = c 481 481 c.activate() … … 484 484 c = Client(atompub, unicode(username), unicode(password), 485 485 domain=Client.Domain, server=Client.Host, port=Client.Port, 486 usetls= True, register=True, profile=profile)486 usetls=False, register=True, profile=profile) 487 487 Client.Sessions[c.username] = c 488 488 c.activate() … … 499 499 c = Client(atompub, unicode(username), unicode(password), 500 500 domain=Client.Domain, server=Client.Host, port=Client.Port, 501 usetls= True, register=False, profile=profile)501 usetls=False, register=False, profile=profile) 502 502 Client.Sessions[c.username] = c 503 503 c.activate()
