Added feature to the Syndicated Content Wobject that allows the use of macros in the RSS URL property

This commit is contained in:
Roy Johnson 2006-11-02 20:17:47 +00:00
parent 46055a5812
commit c197ded0a9
4 changed files with 42 additions and 2 deletions

View file

@ -15,6 +15,8 @@
- Test: Added t/lib/WebGUI/PseudoRequest, which is a mostly functional
Apache::Request object replacement. It doesn't do everything, but it
does enough to test Session/Http.pm, except for cookies.
- Added an option to the Syndicated Content Wobject that allows use of macros
inside the RSS Url property.
7.1.4
- Template variables in the main Survey Template were out of date in the

View file

@ -22,9 +22,17 @@ my $session = start(); # this line required
commerceSalesTax($session);
createDictionaryStorage($session);
addRssUrlMacroProcessing($session);
finish($session); # this line required
#--------------------------------------------------
sub addRssUrlMacroProcessing {
my $session = shift;
print "\tAdding option to process macros in a Syndicated Content RSS Url.\n" unless ($quiet);
$session->db->write("alter table SyndicatedContent add column processMacroInRssUrl int(11) default 0");
}
##-------------------------------------------------
sub commerceSalesTax {