HTML::Widgets::NavMenu::Url - URL manipulation class.


NAME

HTML::Widgets::NavMenu::Url - URL manipulation class.


SYNOPSIS

For internal use only.


METHODS =cut

sub _init { my $self = shift;

    my $url = shift;
    $self->{'url'} = ((ref($url) eq "ARRAY") ? 
        [ @$url ] :
        [ split(/\//, $url) ])
        ;
    $self->{'_is_dir'} = shift || 0;
    $self->{'mode'} = shift || 'server';
    return 0;
    }

sub _get_url { my $self = shift;

    return [ @{$self->{'url'}} ];
    }

sub _is_dir { my $self = shift;


    return $self->{'_is_dir'};
}

sub _get_relative_url { my $base = shift; my $to = shift; my $slash_terminated = shift;

    my @this_url = @{$base->_get_url()};
    my @other_url = @{$to->_get_url()};
    my $ret;
    my @this_url_bak = @this_url;
    my @other_url_bak = @other_url;
    while(
        scalar(@this_url) &&
        scalar(@other_url) &&
        ($this_url[0] eq $other_url[0])
    )
    {
        shift(@this_url);
        shift(@other_url);
    }
    if ((! @this_url) && (! @other_url))
    {
        if ((!$base->_is_dir() ) ne (!$to->_is_dir()))
        {
            die "Two identical URLs with non-matching _is_dir()'s";
        }
        if (! $base->_is_dir())
        {
            if (scalar(@this_url_bak))
            {
                return "./" . $this_url_bak[-1];
            }
            else
            {
                die "Root URL is not a directory";
            }
        }
    }
    if (($base->{'mode'} eq "harddisk") && ($to->_is_dir()))
    {
        push @other_url, "index.html";
    }
    $ret = "";
    if ($slash_terminated)
    {
        if ((scalar(@this_url) == 0) && (scalar(@other_url) == 0))
        {
            $ret = "./";
        }
        else
        {
            $ret .= join("/", (map { ".." } @this_url), @other_url);         
            if ($to->_is_dir() && ($base->{'mode'} ne "harddisk"))
            {
                $ret .= "/";
            }
        }
    }
    else
    {
        my @components = ((map { ".." } @this_url[1..$#this_url]), @other_url);
        $ret .= ("./" . join("/", @components)); 
        if (($to->_is_dir()) && ($base->{'mode'} ne "harddisk") && scalar(@components))
        {
            $ret .= "/";
        }
    }
    #if (($to->_is_dir()) && (scalar(@other_url) || $slash_terminated))
    return $ret;
    }


COPYRIGHT & LICENSE

Copyright 2006 Shlomi Fish, all rights reserved.

This program is released under the following license: MIT X11.