diff --git a/docs/changelog/6.x.x.txt b/docs/changelog/6.x.x.txt index 5e872cf7e..5e337ab7a 100644 --- a/docs/changelog/6.x.x.txt +++ b/docs/changelog/6.x.x.txt @@ -29,3 +29,5 @@ matching collateral is found. - Added style personalization. - Added admin style option. + - Added per page printable styles. + - Wobject privileges are available per page rather than site-wide. diff --git a/docs/upgrades/upgrade_5.5.3-6.0.0.pl b/docs/upgrades/upgrade_5.5.3-6.0.0.pl deleted file mode 100644 index 9e360d981..000000000 --- a/docs/upgrades/upgrade_5.5.3-6.0.0.pl +++ /dev/null @@ -1,489 +0,0 @@ -#!/usr/bin/perl - -use lib "../../lib"; -use Getopt::Long; -use Parse::PlainConfig; -use strict; -use WebGUI::Session; -use WebGUI::SQL; -use WebGUI::Forum; - -my $configFile; -my $quiet; -GetOptions( - 'configFile=s'=>\$configFile, - 'quiet'=>\$quiet -); -WebGUI::Session::open("../..",$configFile); - - -#-------------------------------------------- -print "\tMigrating styles.\n" unless ($quiet); -my $sth = WebGUI::SQL->read("select * from style"); -while (my $style = $sth->hashRef) { - my ($header,$footer) = split(/\^\-\;/,$style->{body}); - my ($newStyleId) = WebGUI::SQL->quickArray("select max(templateId) from template where namespace='style'"); - if ($style->{styleId} > 0 && $style->{styleId} < 25) { - $newStyleId = $style->{styleId}; - } elsif ($newStyleId > 999) { - $newStyleId++; - } else { - $newStyleId = 1000; - } - my $newStyle = $session{setting}{docTypeDec}.' - -
-