User Tools

Site Tools


stats:proc:changeattributes_account

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
stats:proc:changeattributes_account [2011/09/29 01:00]
Patrick Michel
stats:proc:changeattributes_account [2013/07/10 12:32] (current)
Line 2: Line 2:
  
 <code xcend> <code xcend>
-# the current implementation also changes the username, i.e. it would need an additional parameter, I can't support it and I would forbid it anyway. +# the current implementation also changes the username, i.e. it would need an additional parameter, 
-changeAttributes(ident username, string firstName, string lastName, string email, string password) { +I can't support it and I would forbid it anyway. 
-  assume exists //accounts/​account[username];​ # implicitly true in OO implementations+changeAttributes(ident uid, ident username, string firstName, string lastName) { 
 +  assume exists /account[uid]/admin || uid = username; 
 + 
 +  assume exists ​/​account[username];​ # implicitly true in OO implementations
    
-  update ​//accounts/​account[username]/​firstName firstName;​ +  update /​account[username]/​firstName firstName;​ 
-  update ​//accounts/​account[username]/​lastName lastName+  update /​account[username]/​lastName lastName; 
-  update //​accounts/​account[username]/​email email; +}
-  update //​accounts/​account[username]/​password password+
-# roles: admin, user[username]+
 </​code>​ </​code>​
stats/proc/changeattributes_account.1317250810.txt.gz · Last modified: 2011/09/29 01:00 by Patrick Michel