head	1.2;
access;
symbols;
locks; strict;
comment	@# @;


1.2
date	2000.08.28.02.28.19;	author chuck;	state dead;
branches;
next	1.1;

1.1
date	99.07.20.07.36.25;	author jon;	state Exp;
branches;
next	;


desc
@@


1.2
log
@starting to modernize babel - nothing autogenerated, standard
directory/library names, etc.
@
text
@function build_navigation_bar (&$request_ref, &$nav_bar_ref) {
  $request_ref->link = $request_ref->action == 'tree' ? 'tree' : 'show';
  
  if (!(build_home_button($request_ref, $c1)))
    return error("could not build home button");
  
  if (!(build_up_button($request_ref, $c2)))
	return error("could not build up button");
  
  if (!(build_help_button($request_ref, $c3)))
    return error("could not build help button");
  
  if (!(build_left_button($request_ref, $c4)))
    return error("could not build left button");
  
  if (!(build_tree_button($request_ref, $c5)))
    return error("could not build tree button");
  
  if (!(build_right_button($request_ref, $c6)))
    return error("could not build right button");
  
  if (!(build_prev_button($request_ref, $c7)))
    return error("could not build prev button");
  
  if (!(build_down_button($request_ref, $c8)))
    return error("could not build down button");
  
  if (!(build_next_button($request_ref, $c9)))
    return error("could not build next button");
  
  if (!(build_post_button($request_ref, $c10)))
    return error("could not build post button");
  
  $nav_bar_ref  = "$c1$c2$c3<br>\n";
  $nav_bar_ref .= "$c4$c5$c6<br>\n";
  $nav_bar_ref .= "$c7$c8$c9<br>\n";
  $nav_bar_ref .= "$c10<br>\n";
  
  return success();
}
@


1.1
log
@
jon: alrighty, babel.php3.in is now broken down into seperate
     function files.  they're jusy dying to be combined into
     objects and seperate source files.
@
text
@@

