Adding new Style templates and CSS from TWG.
The new css/wg-css replaces /webgui.css. It is removed in this upgrade.
This commit is contained in:
parent
c9d1cba820
commit
97ce509059
8 changed files with 34 additions and 0 deletions
BIN
docs/upgrades/packages-7.8.5/css.wgpkg
Normal file
BIN
docs/upgrades/packages-7.8.5/css.wgpkg
Normal file
Binary file not shown.
BIN
docs/upgrades/packages-7.8.5/root_import_style.wgpkg
Normal file
BIN
docs/upgrades/packages-7.8.5/root_import_style.wgpkg
Normal file
Binary file not shown.
BIN
docs/upgrades/packages-7.8.5/style_01.wgpkg
Normal file
BIN
docs/upgrades/packages-7.8.5/style_01.wgpkg
Normal file
Binary file not shown.
BIN
docs/upgrades/packages-7.8.5/style_02.wgpkg
Normal file
BIN
docs/upgrades/packages-7.8.5/style_02.wgpkg
Normal file
Binary file not shown.
BIN
docs/upgrades/packages-7.8.5/style_03.wgpkg
Normal file
BIN
docs/upgrades/packages-7.8.5/style_03.wgpkg
Normal file
Binary file not shown.
|
|
@ -32,6 +32,7 @@ my $session = start(); # this line required
|
|||
fixPackageFlagOnOlder( $session );
|
||||
addEMSSubmissionTables($session);
|
||||
configEMSActivities($session);
|
||||
removeOldWebGUICSS($session);
|
||||
|
||||
|
||||
# upgrade functions go here
|
||||
|
|
@ -48,6 +49,19 @@ finish($session); # this line required
|
|||
# print "DONE!\n" unless $quiet;
|
||||
#}
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
# Describe what our function does
|
||||
sub removeOldWebGUICSS {
|
||||
my $session = shift;
|
||||
print "\tRemoving the old webgui.css file... " unless $quiet;
|
||||
my $snippet = WebGUI::Asset->newByDynamicClass($session, 'PcRRPhh-0KfvLLNIPdxJTw');
|
||||
if ($snippet) {
|
||||
$snippet->purge;
|
||||
}
|
||||
# and here's our code
|
||||
print "DONE!\n" unless $quiet;
|
||||
}
|
||||
|
||||
#----------------------------------------------------------------------------
|
||||
# Describe what our function does
|
||||
sub configEMSActivities {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue