Documented the heretofore undocumented Deactivate Account Template in the Auth modules.

Broke out code scanning tests into their own tests, and required the CODE_COP environment
variable be set before they were run.
Fixed two bugs in the Workflow test, wrong number of tests and inverse test logic.
More Auth template inheritance work.  Almost time to reflect it over to
the LDAP module.
This commit is contained in:
Colin Kuskie 2006-11-24 21:05:44 +00:00
parent 860a71bc5d
commit ee9cae98a8
11 changed files with 385 additions and 201 deletions

View file

@ -14,6 +14,9 @@ our $HELP = {
{
'name' => 'account.message'
},
{
'name' => 'account.noform'
},
{
'name' => 'account.form.username'
},
@ -32,9 +35,6 @@ our $HELP = {
{
'name' => 'account.form.passwordConfirm.label'
},
{
'name' => 'account.noform'
},
{
'name' => 'account.nofields'
}
@ -47,46 +47,16 @@ our $HELP = {
'webgui authentication login template' => {
title => 'login template title',
body => 'login template body',
isa => [
{
namespace => "Auth",
tag => "login template"
},
],
variables => [
{
'name' => 'login.form.header'
},
{
'name' => 'login.form.hidden'
},
{
'name' => 'login.form.footer'
},
{
'name' => 'login.form.submit'
},
{
'name' => 'login.form.username'
},
{
'name' => 'login.form.username.label'
},
{
'name' => 'login.form.password'
},
{
'name' => 'login.form.password.label'
},
{
'name' => 'title'
},
{
'name' => 'login.message'
},
{
'name' => 'anonymousRegistration.isAllowed'
},
{
'name' => 'createAccount.url'
},
{
'name' => 'createAccount.label'
},
{
'name' => 'recoverPassword.isAllowed'
},
@ -258,6 +228,19 @@ our $HELP = {
}
]
},
'webgui deactivate account template' => {
title => 'deactivate account template title',
body => 'deactivate account template body',
isa => [
{
namespace => "Auth",
tag => "deactivate account template"
},
],
variables => [ ],
fields => [ ],
related => [ ],
},
};
1;