chromecow
Visitor
|
server.doAction('onClientJoinRoom',self,room) - 2008/03/28 23:27
I'm creating a flow diagram for Palabre (mostly to get my head around it, but I'll post it when I'm done).
I ran across this line in PalabreClient.py -> def clientJoinRoom:
server.doAction('onClientJoinRoom',self,room)
I traced this back to palabre.Server.py -> doAction, which "Executes a specific module action."
What I can't find, is what part of the program or module is registering the action: 'onClientJoinRoom'
A search of server, client and room only comes up with the one line that references it.
I'm confused.
|