Changeset 808 for trunk/cgi-bin
- Timestamp:
- 03/08/16 13:16:44 (9 years ago)
- Location:
- trunk/cgi-bin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/cgi-bin/IPDB.pm
r806 r808 1391 1391 sub getBreadCrumbs { 1392 1392 my $dbh = shift; 1393 my $parent = shift; 1393 my $parent = shift || 0; 1394 my $vrf = shift; # if we're not browsing into netblocks yet, caller can pass the VRF for breadcrumbs 1394 1395 my @result; 1395 1396 1396 my $sth = $dbh-> prepare("SELECT cidr,type,id,parent_id FROM allocations WHERE id=?");1397 my $sth = $dbh-> prepare("SELECT cidr,type,id,parent_id,vrf FROM allocations WHERE id=?"); 1397 1398 1398 1399 while ($parent != 0) { 1399 1400 $sth->execute($parent); 1400 my ($cidr,$type,$id,$pid) = $sth->fetchrow_array; 1401 push @result, {cidr => $cidr, link => $id, ispool => ($type =~ /^.[dp]$/ ? 1 : 0)}; 1401 my ($cidr,$type,$id,$pid,$bvrf) = $sth->fetchrow_array; 1402 $vrf = $bvrf; 1403 push @result, { cidr => $cidr, link => $id, ispool => ($type =~ /^.[dp]$/ ? 1 : 0) }; 1402 1404 $parent = $pid; 1403 1405 } 1404 1406 1407 push @result, { cidr => "vrf:$vrf", link => $vrf, isvrf => 1 } 1408 if $vrf; 1409 1405 1410 return \@result; 1406 } # end getBread ()1411 } # end getBreadCrumbs() 1407 1412 1408 1413 -
trunk/cgi-bin/main.cgi
r806 r808 108 108 if($webvar{action} eq 'index') { 109 109 showSummary(); 110 } elsif ($webvar{action} eq 'showvrf') { 111 showVRF(); 110 112 } elsif ($webvar{action} eq 'addmaster') { 111 113 if ($IPDBacl{$authuser} !~ /a/) { … … 269 271 270 272 273 # Show IP blocks in a VRF 274 sub showVRF { 275 my $masterlist = listSummary($ip_dbh, $webvar{vrf}); 276 $page->param(vrf => $webvar{vrf}); 277 $page->param(masterlist => $masterlist); 278 279 # we don't have a netblock; pass 0 for the block ID 280 # Tree navigation 281 my $crumbs = getBreadCrumbs($ip_dbh, 0, $webvar{vrf}); 282 my @rcrumbs = reverse (@$crumbs); 283 $utilbar->param(breadcrumb => \@rcrumbs); 284 285 $page->param(addmaster => ($IPDBacl{$authuser} =~ /s/) ); 286 } # showVRF 287 288 271 289 # Display blocks immediately within a given parent 272 290 sub showSubs { … … 306 324 #$page->param(editme => 1) unless $pinfo->{type} ne 'mm'; 307 325 308 my $crumbs = getBreadCrumbs($ip_dbh, $pinfo->{parent_id} );326 my $crumbs = getBreadCrumbs($ip_dbh, $pinfo->{parent_id}, $pinfo->{vrf}); 309 327 my @rcrumbs = reverse (@$crumbs); 310 328 $utilbar->param(breadcrumb => \@rcrumbs);
Note:
See TracChangeset
for help on using the changeset viewer.