From ae01ea2cd80fdc2bb5c5d60bf64deaa04cd77fb4 Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Thu, 2 Apr 2009 23:43:15 +0000 Subject: [PATCH] Remove Help for the RSSFromParent asset. --- lib/WebGUI/Help/Asset_RSSFromParent.pm | 53 -------------------------- 1 file changed, 53 deletions(-) delete mode 100644 lib/WebGUI/Help/Asset_RSSFromParent.pm diff --git a/lib/WebGUI/Help/Asset_RSSFromParent.pm b/lib/WebGUI/Help/Asset_RSSFromParent.pm deleted file mode 100644 index f20decaa4..000000000 --- a/lib/WebGUI/Help/Asset_RSSFromParent.pm +++ /dev/null @@ -1,53 +0,0 @@ -package WebGUI::Help::Asset_RSSFromParent; -use strict; - -our $HELP = { - 'rss from parent' => { - title => 'rss from parent title', - body => 'rss from parent body', - - # use the following to inherit stuff other help entries - isa => [ - { tag => 'template variables', - namespace => 'Asset_Template' - }, - ], - fields => [ #This array is used to list hover help for form fields. - ], - variables => [ - { 'name' => 'title', - 'description' => 'title.parent' - }, - { 'name' => 'link', - 'description' => 'title.parent' - }, - { 'name' => 'description', - 'description' => 'description.parent' - }, - { 'name' => 'generator' }, - { 'name' => 'lastBuildDate' }, - { 'name' => 'webMaster' }, - { 'name' => 'docs' }, - { 'name' => 'item_loop', - variables => [ - { 'name' => 'title', - 'description' => 'title.item' - }, - { 'name' => 'link', - 'description' => 'title.item' - }, - { 'name' => 'description', - 'description' => 'description.item' - }, - { 'name' => 'guid' }, - { 'name' => 'pubDate' }, - ] - }, - ], - related => [ ##This lists other help articles that are related to this one - ], - }, - -}; - -1; ##All perl modules must return true