Huge amount of ISA work for Assets (as opposed to Wobjects).

Bug fix for toolbar button rows that do not go away when all buttons
are deselected.
This commit is contained in:
Colin Kuskie 2006-12-23 23:58:51 +00:00
parent 224b2c08d1
commit 93288c8332
20 changed files with 518 additions and 71 deletions

View file

@ -5,6 +5,12 @@ our $HELP = {
'zip archive add/edit' => {
title => 'zip archive add/edit title',
body => 'zip archive add/edit body',
isa => [
{
namespace => "Asset_File",
tag => "file add/edit"
},
],
fields => [
{
title => 'new file',
@ -24,18 +30,10 @@ our $HELP = {
],
related => [
{
tag => 'asset fields',
namespace => 'Asset',
},
{
tag => 'zip archive template',
namespace => 'Asset_ZipArchive',
},
{
tag => 'file add/edit',
namespace => 'Asset_File',
},
]
},
@ -43,6 +41,10 @@ our $HELP = {
title => 'zip archive template title',
body => 'zip archive template body',
isa => [
{
namespace => "Asset_ZipArchive",
tag => "zip archive asset variables"
},
{
namespace => "Asset_Template",
tag => "template variables"
@ -76,6 +78,29 @@ our $HELP = {
]
},
'zip archive asset variables' => {
title => 'zip archive asset variables title',
body => 'zip archive asset variables body',
isa => [
{
namespace => "Asset_File",
tag => "file template asset variables"
},
],
fields => [
],
variables => [
{
'name' => 'showPage'
},
{
'name' => 'templateId'
},
],
related => [
]
},
};
1;