X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=nrt%2Ftheme.pm;h=f9674adcd3a0665688c0cb46ba60e5c5a65f483e;hb=HEAD;hp=780ade0009ff7804034a288d6f078858346e1547;hpb=326051281153aa80cd90265f36c6ff8967685dd0;p=gallery.git diff --git a/nrt/theme.pm b/nrt/theme.pm deleted file mode 100644 index 780ade0..0000000 --- a/nrt/theme.pm +++ /dev/null @@ -1,37 +0,0 @@ -# NRT Theme for MJ's Photo Gallery -# (c) 2003--2004 Martin Mares ; GPL'ed -# Theme images taken from the cthumb package (c) Carlos Puchol - -package Gallery::Theme; - -use strict; -use warnings; - -sub Init($) { - my ($u) = @_; - Gallery::SetOptions( - "StyleSheet" => "$u/style.css", - "ThumbW" => 114, - "ThumbH" => 94, - "TopImg" => "$u/top.png", - "TopH" => 14, - "BotImg" => "$u/bot.png", - "BotH" => 18, - "LeftImg" => "$u/left.png", - "LeftW" => 14, - "RightImg" => "$u/right.png", - "RightW" => 18, - "InteriorMargin" => 4, - "ParentImg" => "$u/back.png", - "ParentH" => 48, - "ParentW" => 48, - "BackImg" => "$u/prev.png", - "BackH" => 48, - "BackW" => 48, - "FwdImg" => "$u/next.png", - "FwdH" => 48, - "FwdW" => 48 - ); -} - -1;