Update of /cvsroot/sandweb/sandweb/lib/SandWeb
In directory usw-pr-cvs1:/tmp/cvs-serv28671/lib/SandWeb
Modified Files:
UI.pm
Log Message:
* added footer to display on all menus. worked into the framework.html and
the UI.pm
Index: UI.pm
===================================================================
RCS file: /cvsroot/sandweb/sandweb/lib/SandWeb/UI.pm,v
retrieving revision 1.24
retrieving revision 1.25
diff -U2 -r1.24 -r1.25
--- UI.pm 4 Dec 2001 00:46:32 -0000 1.24
+++ UI.pm 21 Feb 2002 05:43:14 -0000 1.25
@@ -26,4 +26,5 @@
my $menu_bar = $self->get_menu_bar();
my $log = $self->_logobj();
+ my $footer = '<font size="2"<a href="http://sandweb.sf.net">SandWeb</a> - Web Basaed Version Control Management System.</font>';
my @debug_msgs = ();
@@ -47,5 +48,5 @@
MENU_TITLE => $args{'MENU_TITLE'},
SUBMENU_TITLE => $args{'SUBMENU_TITLE'},
- FOOTER => $args{'FOOTER'},
+ FOOTER => $footer,
CONTENT => $args{'CONTENT'},
MENU_BAR => $menu_bar,
|