]> www.average.org Git - mkgallery.git/commitdiff
work in progress on rss generation
authorEugene Crosser <crosser@average.org>
Thu, 4 Sep 2008 16:39:46 +0000 (16:39 +0000)
committerEugene Crosser <crosser@average.org>
Thu, 4 Sep 2008 16:39:46 +0000 (16:39 +0000)
include/footer.pl
include/header.pl
mkgallery.pl

index 1c246e3cab194661c34f9076fa084db46970ff06..5b2aab1b1b91bd2e5ac3172dd9e941bf73e072a2 100644 (file)
@@ -5,6 +5,6 @@
 # $_{-version}         SVN release of the running script
 # $_{-depth}           subdir depth relative to the "top" with .gallery2
 # $_{-title}           title of the current subdir (.title contents)
-# $_{-breadcrumbs}     not implemented at the moment
+# $_{-path}            path from the dir that contains .gallery2
 
 "<div class=\"genby\">generated by $_{-version}</div>"
index 62ef345d90c0aec5e056ad1730a8260dc21071e0..e6cbdd07914ae09a837ff7b011e8014252f4275f 100644 (file)
@@ -5,7 +5,9 @@
 # $_{-version}         SVN release of the running script
 # $_{-depth}           subdir depth relative to the "top" with .gallery2
 # $_{-title}           title of the current subdir (.title contents)
-# $_{-breadcrumbs}     not implemented at the moment
+# $_{-path}            path from the dir that contains .gallery2
 
 "<h1 class=\"title\">$_{-title}</h1>".
-($_{-depth}?"<div class=\"linkup\"><a href=\"../index.html\">UP</a></div>":"")
+($_{-depth}?
+       "<div class=\"linkup\"><a href=\"../index.html\">UP</a></div>":
+       "<div class=\"linkup\"><a href=\"/\">HOME</a></div>")
index ad32e66407aee4a62726e952edb6c8928151cd55..f672b6c3895234f6665d6da8a8eda1abb566bfa2 100755 (executable)
@@ -101,15 +101,15 @@ sub new {
                $class = ref($this);
                my $parent = $this;
                my $name = shift;
-               my $fullpath = $parent->{-fullpath}.'/'.$name;
                $self = {
                                -parent=>$parent,
                                -root=>$parent->{-root},
+                               -toppath=>$parent->{-toppath},
                                -depth=>$parent->{-depth}+1,
                                -base=>$name,
-                               -fullpath=>$fullpath,
+                               -fullpath=>$parent->{-fullpath}.'/'.$name,
+                               -relpath=>$parent->{-relpath}.'/'.$name,
                                -inc=>'../'.$parent->{-inc},
-                               -rss=>'../'.$parent->{-rss},
                        };
        } else {
                $class = $this;
@@ -118,9 +118,9 @@ sub new {
                                -depth=>0,
                                -root=>$root,
                                -fullpath=>$root,
-                               -inc=>getinc($root),
-                               -rss=>getrss($root),
                        };
+               # fill in -inc, -rss, -relpath
+               initpaths($self); # we are not blessed yet, so cheat.
        }
        bless $self, $class;
        if ($debug) {
@@ -132,30 +132,51 @@ sub new {
        return $self;
 }
 
-sub getinc {
-       my $fullpath=shift;     # this is not a method
+sub initpaths {
+       my $self=shift;         # this is not a method but we cheat
        my $depth=20;           # arbitrary max depth
+       my $fullpath=$self->{-fullpath};
+       my $inc;
+       my $rss;
+       my $relpath;
 
        if ($incpath) {
-               return $incpath."/.gallery2";
-       }
-
-       my $inc=".gallery2";
-       while ( ! -d $fullpath."/".$inc ) {
-               $inc = "../".$inc;
-               last unless ($depth-- > 0);
+               $inc = $incpath."/.gallery2";
+       } else {
+               $inc=".gallery2";
+               while ( ! -d $fullpath."/".$inc ) {
+                       $inc = "../".$inc;
+                       last unless ($depth-- > 0);
+               }
        }
        if ($depth > 0) {
-               return $inc.'/';                # prefix with trailing slash
+               $self->{-inc} = $inc.'/';
+               my $dp=0;
+               my $pos;
+               for ($pos=index($inc,'/');$pos>=0;
+                                       $pos=index($inc,'/',$pos+1)) {
+                       $dp++;
+               }
+               for ($pos=length($fullpath);$dp-->0 && $pos>0;
+                                       $pos=rindex($fullpath,'/',$pos-1)) {;}
+               my $relpath = substr($fullpath,$pos);
+               $relpath =~ s%^/%%;
+               $self->{-relpath} = $relpath;
+               $self->{-toppath} = substr($fullpath,0,$pos);
+               initrss($self);
        } else {
-               return 'NO-.INCLUDE-IN-PATH/';  # won't work anyway
+               $self->{-inc} = 'NO-.INCLUDE-IN-PATH/'; # won't work anyway
+               $self->{-rss} = '';
+               $self->{-relpath} = '';
        }
 }
 
-sub getrss {
-       my $fullpath=shift;     # this is not a method
-       my $depth=20;           # arbitrary max depth
+sub initrss {
+       my $self=shift;         # this is not a method but we cheat
+       my $fullpath=$self->{-fullpath};
+       my $depth=20;
 
+       return;
        return "" unless $rssfile;
 
        my $rss=$rssfile;
@@ -366,7 +387,7 @@ sub edittitle {
                close($T);
        }
        if ($asktitle || (!$title && !$noasktitle)) {
-               my $prompt = $self->{-base};
+               my $prompt = $self->{-relpath};
                $prompt = '/' unless ($prompt);
                my $OUT = $term->OUT || \*STDOUT;
                print $OUT "Enter title for $fullpath\n";
@@ -378,7 +399,7 @@ sub edittitle {
                }
        }
        unless ($title) {
-               $title=substr($fullpath,length($self->{-root}));
+               $title=$self->{-relpath};
        }
        $self->{-title}=$title;
        print "title in $fullpath is $title\n" if ($debug);