--- /Users/arthurclemens/Desktop/SlideShowPlugin-org.pm Fri Apr 23 10:55:46 2004 +++ /Users/arthurclemens/Desktop/SlideShowPlugin-new.pm Fri Apr 23 10:56:28 2004 @@ -188,13 +188,18 @@ my $prev = $theNum - 1 || 1; my $next = $theNum + 1; my $text = ""; + my $skin = &TWiki::Prefs::getPreferencesValue( "SKIN" ); + if ( $skin ) { + $skin .= "."; + } + my $viewUrl = "%SCRIPTURLPATH%/view%SCRIPTSUFFIX%/$theWeb/$theTopic"; if( $theButtons =~ /f/ ) { # first slide button if( $theButtons =~ / f/ ) { $text .= " "; } - $text .= "" + $text .= "" . "\"First"; } @@ -203,7 +208,7 @@ if( $theButtons =~ / p/ ) { $text .= " "; } - $text .= "" + $text .= "" . "\"Previous\""; } @@ -212,7 +217,7 @@ if( $theButtons =~ / n/ ) { $text .= " "; } - $text .= "" + $text .= "" . "\"Next\""; } @@ -221,7 +226,7 @@ if( $theButtons =~ / l/ ) { $text .= " "; } - $text .= "" + $text .= "" . "\"Last"; } @@ -239,7 +244,7 @@ if( $theButtons =~ / s/ ) { $text .= " "; } - $text .= "" + $text .= "" . "\"Start"; } @@ -254,10 +259,14 @@ my $slideNum = 1; my $text = ""; + my $skin = &TWiki::Prefs::getPreferencesValue( "SKIN" ); + if ( $skin ) { + $skin .= "."; + } my $viewUrl = "%SCRIPTURLPATH%/view%SCRIPTSUFFIX%/$theWeb/$theTopic"; foreach( @theTitles ) { $text .= "\t\* "; - $text .= ""; + $text .= ""; $text .= " $_ \n"; $slideNum++; }