Mercurial > p > roundup > code
comparison doc/customizing.txt @ 2583:a3ec9023dd1a maint-0.7
merge from HEAD
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Mon, 19 Jul 2004 01:49:12 +0000 |
| parents | 7e823f8938e9 |
| children | 9e1c4c932323 |
comparison
equal
deleted
inserted
replaced
| 2581:4a72b2ded24b | 2583:a3ec9023dd1a |
|---|---|
| 2961 | 2961 |
| 2962 # user doesn't exist in the file | 2962 # user doesn't exist in the file |
| 2963 return 0 | 2963 return 0 |
| 2964 | 2964 |
| 2965 class Client(client.Client): | 2965 class Client(client.Client): |
| 2966 actions = client.Client.actions + ( | 2966 actions = ( |
| 2967 ('login', ExternalPasswordLoginAction) | 2967 ('login', ExternalPasswordLoginAction), |
| 2968 ) | 2968 ) + client.Client.actions |
| 2969 | 2969 |
| 2970 What this does is look through the file, line by line, looking for a | 2970 What this does is look through the file, line by line, looking for a |
| 2971 name that matches. | 2971 name that matches. |
| 2972 | 2972 |
| 2973 We also remove the redundant password fields from the ``user.item`` | 2973 We also remove the redundant password fields from the ``user.item`` |
