-depth=>$parent->{-depth}+1,
-base=>$name,
-fullpath=>$parent->{-fullpath}.'/'.$name,
- -relpath=>$parent->{-relpath}.'/'.$name,
+ -relpath=>$parent->{-relpath}.$name.'/',
-inc=>'../'.$parent->{-inc},
};
} else {
}
my $relpath = substr($fullpath,$pos);
$relpath =~ s%^/%%;
+ $relpath .= '/' if ($relpath);
$self->{-relpath} = $relpath;
$self->{-toppath} = substr($fullpath,0,$pos);
#print "rel=$relpath, top=$self->{-toppath}, inc=$inc\n";
my $self=shift; # this is not a method but we cheat
my $fullpath=$self->{-fullpath};
my $inc=$self->{-inc}.$incdir.'/';
- my $conffile=$inc.'rss.conf';
+ my $conffile=$self->{-toppath}.'/'.$incdir.'/rss.conf';
my $CONF;
if ($rssfile) {
my $inc = $self->{-inc}.$incdir.'/';
my $title = $self->{-title};
my $rsslink="";
- if ($self->{-rss}) {
+ if ($rssobj) {
$rsslink=Link({-rel=>'alternate',
-type=>'application/rss+xml',
-title=>'RSS',
- -href=>$self->{-rss}});
+ -href=>$self->{-inc}.$rssfile});
}
print $IND start_html(-title => $title,
-encoding=>"utf-8",
-id => 'indexContainer'}),
"\n";
my $EVL;
- if (open($EVL,$inc.'header.pl')) {
+ if (open($EVL,$self->{-toppath}.'/'.$incdir.'/header.pl')) {
my $prm;
while (<$EVL>) {
$prm .= $_;
print $IND end_div;
my $EVL;
- if (open($EVL,$self->{-inc}.$incdir.'/footer.pl')) {
+ if (open($EVL,$self->{-toppath}.'/'.$incdir.'/footer.pl')) {
my $prm;
while (<$EVL>) {
$prm .= $_;
$self->{-numofimgs},
$self->{-numofsubs};
my $rsslink=$rssobj->{'rss'}->channel('link').
- $self->{-relpath}."/index.html";
+ $self->{-relpath}."index.html";
$rssobj->{'rss'}->add_item(
title => $self->{-title},
link => $rsslink,