Update of /cvsroot/wpdev/xmlscripts/web
In directory sc8-pr-cvs1:/tmp/cvs-serv25207
Modified Files:
account.py console.py
Log Message:
ActionQueue implementation.
Index: account.py
===================================================================
RCS file: /cvsroot/wpdev/xmlscripts/web/account.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** account.py 9 Aug 2003 03:14:05 -0000 1.3
--- account.py 8 Oct 2003 01:55:36 -0000 1.4
***************
*** 15,22 ****
--- 15,24 ----
letter = form.getvalue( 'letter', '#' )
account = form.getvalue( 'username', '' )
+
try:
save = int( form.getvalue( 'save', '0' ) )
except:
pass
+
message = None
Index: console.py
===================================================================
RCS file: /cvsroot/wpdev/xmlscripts/web/console.py,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** console.py 24 Mar 2003 13:02:44 -0000 1.2
--- console.py 8 Oct 2003 01:55:36 -0000 1.3
***************
*** 7,10 ****
--- 7,11 ----
import sys
import wolfpack.console
+ from wolfpack.consts import *
import re
***************
*** 29,33 ****
print "Content-type: text/html\n\n"
print "Server is reloading, you will have to re-login after reloading is done"
! wolfpack.console.reloadScripts()
sys.exit()
--- 30,34 ----
print "Content-type: text/html\n\n"
print "Server is reloading, you will have to re-login after reloading is done"
! wolfpack.queueaction( RELOAD_SCRIPTS )
sys.exit()
|