webgui/lib/WebGUI/Help/Auth.pm
Colin Kuskie ee9cae98a8 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.
2006-11-24 21:05:44 +00:00

177 lines
3.6 KiB
Perl

package WebGUI::Help::Auth;
our $HELP = {
'display account template' => {
title => 'display account template title',
body => 'display account template body',
isa => [
{
namespace => "Asset_Template",
tag => "template variables"
},
],
variables => [
{
'name' => 'account.form.header'
},
{
'name' => 'account.form.submit'
},
{
'name' => 'account.form.footer'
},
{
'name' => 'account.form.karma'
},
{
'name' => 'account.form.karma.label'
},
{
'name' => 'account.options'
},
],
fields => [
],
related => [
]
},
'login template' => {
title => 'login template title',
body => 'login template body',
isa => [
{
namespace => "Asset_Template",
tag => "template variables"
},
],
variables => [
{
'name' => 'title'
},
{
'name' => 'login.form.header'
},
{
'name' => 'login.form.hidden'
},
{
'name' => 'login.form.username'
},
{
'name' => 'login.form.username.label'
},
{
'name' => 'login.form.password'
},
{
'name' => 'login.form.password.label'
},
{
'name' => 'anonymousRegistration.isAllowed'
},
{
'name' => 'createAccount.url'
},
{
'name' => 'createAccount.label'
},
],
fields => [
],
related => [
]
},
'anonymous registration template' => {
title => 'anon reg template title',
body => 'anon reg template body',
isa => [
{
namespace => "Asset_Template",
tag => "template variables"
},
],
fields => [
],
variables => [
{
'name' => 'create.form.header'
},
{
'name' => 'create.form.footer'
},
{
'name' => 'create.form.submit'
},
{
'name' => 'title',
},
{
'name' => 'create.form.profile',
'variables' => [
{
'name' => 'profile.formElement'
},
{
'name' => 'profile.formElement.label'
},
{
'name' => 'profile.required'
},
],
},
{
'name' => 'create.form.profile.id.formElement',
},
{
'name' => 'create.form.profile.id.formElement.label',
},
{
'name' => 'create.form.profile.id.required',
},
{
'name' => 'login.url',
},
{
'name' => 'login.label',
},
],
related => [
]
},
'deactivate account template' => {
title => 'deactivate account template title',
body => 'deactivate account template body',
isa => [
{
namespace => "Asset_Template",
tag => "template variables"
},
],
variables => [
{
'name' => 'title'
},
{
'name' => 'question'
},
{
'name' => 'yes.label'
},
{
'name' => 'yes.url'
},
{
'name' => 'no.label'
},
{
'name' => 'no.url'
},
],
fields => [
],
related => [
]
},
};
1;