[Koha-cvs] CVS: koha/koha-tmpl/intranet-tmpl/default/en/includes menus.inc,NONE,1.1.2.1 about-top.inc,1.20,1.20.2.1 acquisitions-top.inc,1.24.2.2,1.24.2.3 auth-top.inc,1.7,1.7.2.1 bull-top.inc,1.5,1.5.2.1 cat-top.inc,1.35,1.35.2.1 circulation-top.inc,1.30,1.30.2.1 common-style.css,1.34.2.3,1.34.2.4 marc-editor.css,1.5,1.5.2.1 marc-top.inc,1.12.2.3,1.12.2.4 parameters-top.inc,1.31,1.31.2.1 reports-top.inc,1.25,1.25.2.1

Paul POULAIN tipaul at users.sourceforge.net
Thu Jul 28 17:28:59 CEST 2005


Update of /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/includes
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14365/koha-tmpl/intranet-tmpl/default/en/includes

Modified Files:
      Tag: rel_2_2
	about-top.inc acquisitions-top.inc auth-top.inc bull-top.inc 
	cat-top.inc circulation-top.inc common-style.css 
	marc-editor.css marc-top.inc parameters-top.inc 
	reports-top.inc 
Added Files:
      Tag: rel_2_2
	menus.inc 
Log Message:
adding dynamic submenus to the main menu. Changing some CSS rules to have Koha more nice.

--- NEW FILE ---
<script language="JavaScript" type="text/javascript">
var TID; //the timeout identifier
var Mduration=500; // how long before closing the menu
function Help() {
	newin=window.open("/cgi-bin/koha/help.pl","Koha Help",'width=600,height=600,toolbar=false,scrollbars=yes');
}
/*var ie = (document.all) ? 1:0;
var ns7 = (document.getElementById) ? 1:0;*/
		function MM_findObj(n, d) { //v4.0
			var p,i,x;
			if(!d) d=document;
			if((p=n.indexOf("?"))>0&&parent.frames.length) {
				d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);
			}
			if(!(x=d[n])&&d.all) x=d.all[n];
			for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
			for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
			if(!x && document.getElementById) x=document.getElementById(n);
			return x;
		}
		function SetOn(item) {
			for(i=1;i<=7;i++) {
				SetOff(i);
			}
			CancelTimeOut(TID);
			if (!(layer = MM_findObj('Subm' + item))) return;
			layer.style.visibility = 'visible';
		}
		function LaunchSetOff(item) {
			if (TID) {
				CancelTimeOut(TID);
			}
			TID=setTimeout('SetOff('+item+')',Mduration);
		}
		function CancelTimeOut(TID) {
			clearTimeout(TID);
		}
		function SetOff(item) {
			if (!(layer = MM_findObj('Subm' + item))) return;
			layer.style.visibility = 'hidden';
		}
</script>

<!-- MENUS -->
<!-- ACQUISITION -->
<div id="Subm1"> 
  <a href="/cgi-bin/koha/acqui/acqui-home.pl" class="submenu acquisition" onMouseOver="CancelTimeOut(TID)" onMouseOut="LaunchSetOff(1)">Main page</a>
  <a href="/cgi-bin/koha/acqui/histsearch.pl" class="submenu acquisition" onMouseOver="CancelTimeOut(TID)" onMouseOut="LaunchSetOff(1)">History search</a>
</div>

<!-- CATALOGUE -->
<div id="Subm2"> 
	<a href="/cgi-bin/koha/loadmodules.pl?module=search&amp;marc=1&amp;type=intranet" class="submenu catalogue" onMouseOver="CancelTimeOut(TID)" onMouseOut="LaunchSetOff(2)">Search</a>
	<a href="/cgi-bin/koha/loadmodules.pl?module=addbiblio&amp;type=intranet" class="submenu catalogue" onMouseOver="CancelTimeOut(TID)" onMouseOut="LaunchSetOff(2)">Add biblio</a>
	<hr>
	<a class="submenu bull" href="/cgi-bin/koha/bull-home.pl" onMouseOver="CancelTimeOut(TID)" onMouseOut="LaunchSetOff(2)">Subscriptions</a>
	<a href="/cgi-bin/koha/bull/lateissues.pl" class="submenu bull" onMouseOver="CancelTimeOut(TID)" onMouseOut="LaunchSetOff(2)">Late issues</a>
	<hr>
	<a href="/cgi-bin/koha/bookshelves/shelves.pl" class="submenu catalogue" onMouseOver="CancelTimeOut(TID)" onMouseOut="LaunchSetOff(2)">Virtual shelves</a>
</div>
<!-- CIRC -->
<div id="Subm3"> 
	<a href="/cgi-bin/koha/circ/circulation.pl" class="submenu circulation" onMouseOver="CancelTimeOut(TID)" onMouseOut="LaunchSetOff(3)">Issues</a>
	<a href="/cgi-bin/koha/circ/returns.pl" class="submenu circulation" onMouseOver="CancelTimeOut(TID)" onMouseOut="LaunchSetOff(3)">Returns</a>
	<a href="/cgi-bin/koha/circ/branchtransfers.pl" class="submenu circulation" onMouseOver="CancelTimeOut(TID)" onMouseOut="LaunchSetOff(3)">Branch transfers</a>
</div>
<!-- MEMBERS -->
<div id="Subm4"> 
 	<a href="/cgi-bin/koha/members/members-home.pl" class="submenu members" onMouseOver="CancelTimeOut(TID)" onMouseOut="LaunchSetOff(4)">Search</a>
	<a href="/cgi-bin/koha/members/memberentry.pl?actionType=Add" class="submenu members" onMouseOver="CancelTimeOut(TID)" onMouseOut="LaunchSetOff(4)">Add member</a>
	<a href="/cgi-bin/koha/members/memberentry.pl?categorycode=I&amp;actionType=Add" class="submenu members" onMouseOver="CancelTimeOut(TID)" onMouseOut="LaunchSetOff(4)">Add organisation</a>
</div>
<!-- AUTHORITIES -->
<div id="Subm5"> 
	<a href="/cgi-bin/koha/authorities/authorities-home.pl" class="submenu authority" onMouseOver="CancelTimeOut(TID)" onMouseOut="LaunchSetOff(5)">Authorities</a>
</div>
<!-- REPORTS -->
<div id="Subm6"> 
	<a href="/cgi-bin/koha/reports/acquisitions_stats.pl" class="submenu reports" onMouseOver="CancelTimeOut(TID)" onMouseOut="LaunchSetOff(6)">Acquisitions</a>
	<a href="/cgi-bin/koha/reports/borrowers_stats.pl" class="submenu reports" onMouseOver="CancelTimeOut(TID)" onMouseOut="LaunchSetOff(6)">Borrowers</a>
	<a href="/cgi-bin/koha/reports/catalogue_stats.pl" class="submenu reports" onMouseOver="CancelTimeOut(TID)" onMouseOut="LaunchSetOff(6)">Catalogue</a>
	<a href="/cgi-bin/koha/reports/issues_stats.pl" class="submenu reports" onMouseOver="CancelTimeOut(TID)" onMouseOut="LaunchSetOff(6)">Circulation</a>
	<hr>
	<a href="/cgi-bin/koha/reports/bor_issues_top.pl" class="submenu reports" onMouseOver="CancelTimeOut(TID)" onMouseOut="LaunchSetOff(6)">Most issuing Borrowers</a>
	<a href="/cgi-bin/koha/reports/cat_issues_top.pl" class="submenu reports" onMouseOver="CancelTimeOut(TID)" onMouseOut="LaunchSetOff(6)">Most issued items</a>
	<hr>
	<a href="/cgi-bin/koha/reports/borrowers_out.pl" class="submenu reports" onMouseOver="CancelTimeOut(TID)" onMouseOut="LaunchSetOff(6)">Borrowers without issues</a>
	<a href="/cgi-bin/koha/reports/catalogue_out.pl" class="submenu reports" onMouseOver="CancelTimeOut(TID)" onMouseOut="LaunchSetOff(6)">Items not issued</a>
	<a href="/cgi-bin/koha/reports/inventory.pl" class="submenu reports" onMouseOver="CancelTimeOut(TID)" onMouseOut="LaunchSetOff(6)">Inventory/Stocktaking</a>
	<a href="/cgi-bin/koha/reports/manager.pl?report_name=itemtypes" class="submenu reports" onMouseOver="CancelTimeOut(TID)" onMouseOut="LaunchSetOff(6)">Catalogue by itemtype</a>
	<a href="/cgi-bin/koha/stats.pl?time=yesterday" class="submenu reports" onMouseOver="CancelTimeOut(TID)" onMouseOut="LaunchSetOff(6)">Till Reconciliation (yesterday)</a>
	<a href="/cgi-bin/koha/stats.pl?time=today" class="submenu reports" onMouseOver="CancelTimeOut(TID)" onMouseOut="LaunchSetOff(6)">Till Reconciliation (today)</a>
	<a href="/cgi-bin/koha/overdue.pl" class="submenu reports" onMouseOver="CancelTimeOut(TID)" onMouseOut="LaunchSetOff(6)">Overdue items</a>
	<a href="/cgi-bin/koha/reports/manager.pl?report_name=issues_by_borrower_category" class="submenu reports" onMouseOver="CancelTimeOut(TID)" onMouseOut="LaunchSetOff(6)">Issues by borrower category</a>
	<a href="/cgi-bin/koha/reports/issues_avg_stats.pl" class="submenu reports" onMouseOver="CancelTimeOut(TID)" onMouseOut="LaunchSetOff(6)">Average loan time</a>
</div>
<!-- PARAMETERS -->
<div id="Subm7"> 
	<TMPL_IF name="CAN_user_parameters">	
		<a class="submenu parameters" href="/cgi-bin/koha/admin/branches.pl" title="The different branches you manage with this Koha server." onMouseOver="CancelTimeOut(TID)" onMouseOut="TID=setTimeout('SetOff(7)',Mduration)">Library branches</a>
	</TMPL_IF>
	<TMPL_IF name="CAN_user_management">
		<a href="/cgi-bin/koha/admin/aqbookfund.pl" title="Book fund administration. Remember to edit your book funds before you start editing the budgets." class="submenu parameters" onMouseOver="CancelTimeOut(TID)" onMouseOut="TID=setTimeout('SetOff(7)',Mduration)">Book funds</a>
		<a href="/cgi-bin/koha/admin/currency.pl" title="Define exchange rates"class="submenu parameters" onMouseOver="CancelTimeOut(TID)" onMouseOut="TID=setTimeout('SetOff(7)',Mduration)">Currencies</a>
		<a href="/cgi-bin/koha/admin/itemtypes.pl" title="Define item types"class="submenu parameters" onMouseOver="CancelTimeOut(TID)" onMouseOut="TID=setTimeout('SetOff(7)',Mduration)">Item types</a>
		<hr>
		<a href="/cgi-bin/koha/admin/categorie.pl" title="Define the categories of borrowers"class="submenu parameters" onMouseOver="CancelTimeOut(TID)" onMouseOut="TID=setTimeout('SetOff(7)',Mduration)">Borrower categories</a>
		<a href="/cgi-bin/koha/admin/issuingrules.pl" title="Define issuing rules for branches / borrowers / item types (nb of issues, duration, cost...)"class="submenu parameters" onMouseOver="CancelTimeOut(TID)" onMouseOut="TID=setTimeout('SetOff(7)',Mduration)">Issuing rules</a>
		<hr>
		<a href="/cgi-bin/koha/admin/authorised_values.pl" title="Define categories and authorised values for them. Authorised values are used in MARC form to limit and help editing MARC biblios" class="submenu parameters" onMouseOver="CancelTimeOut(TID)" onMouseOut="TID=setTimeout('SetOff(7)',Mduration)">Authorised values</a>
	</TMPL_IF>
		
	<TMPL_IF name="CAN_user_parameters">
		<a href="/cgi-bin/koha/admin/authtypes.pl" title="Define categories and thesaurus/authority MARC structure" class="submenu parameters" onMouseOver="CancelTimeOut(TID)" onMouseOut="TID=setTimeout('SetOff(7)',Mduration)">Thesaurus Structure</a>
		<a href="/cgi-bin/koha/admin/biblio_framework.pl" title="the frameworks defined for the MARC editor. Create frameworks, then define the MARC structure (fields &amp; subfields)" class="submenu parameters" onMouseOver="CancelTimeOut(TID)" onMouseOut="TID=setTimeout('SetOff(7)',Mduration)">Biblio framework (MARC structure)</a>
		<a href="/cgi-bin/koha/admin/koha2marclinks.pl" title="Define links between the Koha standard DB and the MARC one. Note those links can be defined through MARC structure. This tool is just a shortcut to speed up linkage" class="submenu parameters" onMouseOver="CancelTimeOut(TID)" onMouseOut="TID=setTimeout('SetOff(7)',Mduration)">Links Koha - MARC DB</a>
		<a href="/cgi-bin/koha/admin/checkmarc.pl" title="Checks the MARC structure. USE IT before working with real data. It will show mistakes that can BREAK Koha's database!" class="submenu parameters" onMouseOver="CancelTimeOut(TID)" onMouseOut="TID=setTimeout('SetOff(7)',Mduration)">MARC Check</a>
		<hr>
		<a href="/cgi-bin/koha/admin/printers.pl" title="Printers (UNIX paths)" class="submenu parameters" onMouseOver="CancelTimeOut(TID)" onMouseOut="TID=setTimeout('SetOff(7)',Mduration)">Printers</a>
	</TMPL_IF>
	
	<TMPL_IF name="CAN_user_management">
		<a href="/cgi-bin/koha/admin/stopwords.pl" title="Words deleted during searches" class="submenu parameters" onMouseOver="CancelTimeOut(TID)" onMouseOut="TID=setTimeout('SetOff(7)',Mduration)">Stop words</a>
	</TMPL_IF>
	
	<TMPL_IF name="CAN_user_parameters">
		<a href="/cgi-bin/koha/admin/z3950servers.pl" title="Servers to query for MARC data"class="submenu parameters" onMouseOver="CancelTimeOut(TID)" onMouseOut="TID=setTimeout('SetOff(7)',Mduration)">Z39.50 Servers</a>
		<a href="/cgi-bin/koha/admin/systempreferences.pl" title="System preferences"class="submenu parameters" onMouseOver="CancelTimeOut(TID)" onMouseOut="TID=setTimeout('SetOff(7)',Mduration)">System preferences</a>
	</TMPL_IF>

<TMPL_IF name="CAN_user_tools">
	<hr>
		<a href="/cgi-bin/koha/export/marc.pl" title="Exporting in MARC format" class="submenu parameters" onMouseOver="CancelTimeOut(TID)" onMouseOut="TID=setTimeout('SetOff(7)',Mduration)">MARC biblio export</a>
		<a href="/cgi-bin/koha/import/breeding.pl" title="The reservoir is a table where imported MARC records are stored. A MARC record is stored in the reservoir as long as you have no item. When you type the ISBN or title of a biblio, it's searched for in the reservoir. If it is found, the biblio is added to Koha active table" class="submenu parameters" onMouseOver="CancelTimeOut(TID)" onMouseOut="TID=setTimeout('SetOff(7)',Mduration)">Upload MARC records in reservoir</a>
		<a href="/cgi-bin/koha/barcodes/barcodes.pl" title="the barcode generator deals with generating barcodes for items you acquire" class="submenu parameters" onMouseOver="CancelTimeOut(TID)" onMouseOut="TID=setTimeout('SetOff(7)',Mduration)">Generate barcodes</a>
		<a href="/cgi-bin/koha/admin/letter.pl" title="Letters to use in Koha" class="submenu parameters" onMouseOver="CancelTimeOut(TID)" onMouseOut="TID=setTimeout('SetOff(7)',Mduration)">Letters</a>
</TMPL_IF>

</div>
<!-- MENUS -->
<div id="menubar">
	<span class="koha"><a class="home" href="/cgi-bin/koha/mainpage.pl">Koha</a></span>
	<a class="acquisition" href="/cgi-bin/koha/loadmodules.pl?module=acquisitions" onMouseOver="SetOn(1)">Acquisitions</a>
	<a class="catalogue" href="/cgi-bin/koha/loadmodules.pl?module=search&amp;type=intranet" onMouseOver="SetOn(2)">Catalogue</a>
	<a class="circulation"  href="/cgi-bin/koha/circ/circulation.pl" onMouseOver="SetOn(3)">Circulation</a>
	<a class="members" href="/cgi-bin/koha/members/members-home.pl" onMouseOver="SetOn(4)">Members</a>
	<a class="authority" href="/cgi-bin/koha/authorities/authorities-home.pl" onMouseOver="SetOn(5)">Authorities</a>
	<a class="reports" href="/cgi-bin/koha/reports-home.pl" onMouseOver="SetOn(6)">Reports</a>
	<a class="parameters" href="/cgi-bin/koha/admin-home.pl" onMouseOver="SetOn(7)" onMouseOut="TID=setTimeout('SetOff(7)',Mduration)">Parameters</a>
	<a class="about" href="/cgi-bin/koha/about.pl">About</a>
	<a class="catalogue" href="/cgi-bin/koha/help.pl" onclick="Help(); return false;">Help</a>
</div>
Index: about-top.inc
===================================================================
RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/includes/about-top.inc,v
retrieving revision 1.20
retrieving revision 1.20.2.1
diff -C2 -r1.20 -r1.20.2.1
*** about-top.inc	27 Oct 2004 07:53:15 -0000	1.20
--- about-top.inc	28 Jul 2005 15:28:56 -0000	1.20.2.1
***************
*** 18,22 ****
  	color: #FFFFFF;
  	text-decoration: normal;
- 	font-weight: bold;
  	}
  a.about:hover {
--- 18,21 ----
***************
*** 24,28 ****
  	color: #FFFFFF;
  	text-decoration: normal;
- 	font-weight: bold;
  	}
  </style>
--- 23,26 ----
***************
*** 30,50 ****
  <body>
  
- <!-- MENUS -->
- <div id="menubar">
- 	<span class="koha"><a class="home" href="/cgi-bin/koha/mainpage.pl">Koha</a></span>
- 	<a class="acquisition" href="/cgi-bin/koha/loadmodules.pl?module=acquisitions">Acquisitions</a>
- 	<a class="catalogue" href="/cgi-bin/koha/loadmodules.pl?module=search&amp;type=intranet">Catalogue</a>
- 	<a class="circulation"  href="/cgi-bin/koha/circ/circulation.pl">Circulation</a>
- 	<a class="members" href="/cgi-bin/koha/members/members-home.pl">Members</a>
- 	<a class="authority" href="/cgi-bin/koha/authorities/authorities-home.pl">Authorities</a>
- 	<a class="reports" href="/cgi-bin/koha/reports-home.pl">Reports</a>
- 	<a class="parameters" href="/cgi-bin/koha/admin-home.pl">Parameters</a>
- 	<a class="about" href="/cgi-bin/koha/about.pl">About</a>
- 	<a class="catalogue" href="/cgi-bin/koha/help.pl" onclick="Help(); return false;">Help</a>
- </div>
  
  <!-- TMPL_IF NAME="loggedinusername" -->
!     <p align="left">Logged in as: <!-- TMPL_VAR NAME="loggedinusername" --> [<a href="/cgi-bin/koha/mainpage.pl?logout.x=1">Log Out</a>]</p>
  <!-- TMPL_ELSE -->
!     <p align="left"><a href="/cgi-bin/koha/opac-user.pl">Log In</a> to Koha</p>
  <!-- /TMPL_IF -->
--- 28,36 ----
  <body>
  
  
+ <!-- TMPL_INCLUDE name="menus.inc" -->
  <!-- TMPL_IF NAME="loggedinusername" -->
!     <p class="user">Logged in as: <!-- TMPL_VAR NAME="loggedinusername" --> [<a href="/cgi-bin/koha/mainpage.pl?logout.x=1">Log Out</a>]</p>
  <!-- TMPL_ELSE -->
!     <p class="user"><a href="/cgi-bin/koha/opac-user.pl">Log In</a> to Koha</p>
  <!-- /TMPL_IF -->

Index: acquisitions-top.inc
===================================================================
RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/includes/acquisitions-top.inc,v
retrieving revision 1.24.2.2
retrieving revision 1.24.2.3
diff -C2 -r1.24.2.2 -r1.24.2.3
*** acquisitions-top.inc	26 May 2005 09:21:29 -0000	1.24.2.2
--- acquisitions-top.inc	28 Jul 2005 15:28:56 -0000	1.24.2.3
***************
*** 29,33 ****
  	background-image:none;
  	text-decoration: normal;
- 	font-weight: bold;
  	}
  a.acquisition:hover {
--- 29,32 ----
***************
*** 35,39 ****
  	color: #000000;
  	text-decoration: normal;
- 	font-weight: bold;
  	}
  </style>
--- 34,37 ----
***************
*** 41,60 ****
  <body>
  
! <!-- MENUS -->
! <div id="menubar">
! 	<span class="koha"><a class="home" href="/cgi-bin/koha/mainpage.pl">Koha</a></span>
! 	<a class="acquisition" href="/cgi-bin/koha/loadmodules.pl?module=acquisitions">Acquisitions</a>
! 	<a class="catalogue" href="/cgi-bin/koha/loadmodules.pl?module=search&amp;type=intranet">Catalogue</a>
! 	<a class="circulation"  href="/cgi-bin/koha/circ/circulation.pl">Circulation</a>
! 	<a class="members" href="/cgi-bin/koha/members/members-home.pl">Members</a>
! 	<a class="authority" href="/cgi-bin/koha/authorities/authorities-home.pl">Authorities</a>
! 	<a class="reports" href="/cgi-bin/koha/reports-home.pl">Reports</a>
! 	<a class="parameters" href="/cgi-bin/koha/admin-home.pl">Parameters</a>
! 	<a class="about" href="/cgi-bin/koha/about.pl">About</a>
! 	<a class="catalogue" href="/cgi-bin/koha/help.pl" onclick="Help(); return false;">Help</a>
! </div>
  <!-- TMPL_IF NAME="loggedinusername" -->
!     <p align="left">Logged in as: <!-- TMPL_VAR NAME="loggedinusername" --> [<a href="/cgi-bin/koha/mainpage.pl?logout.x=1">Log Out</a>]</p>
  <!-- TMPL_ELSE -->
!     <p align="left"><a href="/cgi-bin/koha/opac-user.pl">Log In</a> to Koha</p>
  <!-- /TMPL_IF -->
--- 39,47 ----
  <body>
  
! 
! <!-- TMPL_INCLUDE name="menus.inc" -->
  <!-- TMPL_IF NAME="loggedinusername" -->
!     <p class="user">Logged in as: <!-- TMPL_VAR NAME="loggedinusername" --> [<a href="/cgi-bin/koha/mainpage.pl?logout.x=1">Log Out</a>]</p>
  <!-- TMPL_ELSE -->
!     <p class="user"><a href="/cgi-bin/koha/opac-user.pl">Log In</a> to Koha</p>
  <!-- /TMPL_IF -->

Index: auth-top.inc
===================================================================
RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/includes/auth-top.inc,v
retrieving revision 1.7
retrieving revision 1.7.2.1
diff -C2 -r1.7 -r1.7.2.1
*** auth-top.inc	2 Dec 2004 16:43:28 -0000	1.7
--- auth-top.inc	28 Jul 2005 15:28:56 -0000	1.7.2.1
***************
*** 37,41 ****
  	color:#FFFFFF;
  	text-decoration: normal;
- 	font-weight: bold;
  	background-image:none;
  	}
--- 37,40 ----
***************
*** 44,48 ****
  	color: #FFFFFF;
  	text-decoration: normal;
- 	font-weight: bold;
  	}
  </style>
--- 43,46 ----
***************
*** 50,95 ****
  
  <body>
! <!-- MENUS -->
! <div id="menubar">
! 	<span class="koha"><a class="home" href="/cgi-bin/koha/mainpage.pl">Koha</a></span>
! 	<a class="acquisition" href="/cgi-bin/koha/loadmodules.pl?module=acquisitions">Acquisitions</a>
! 	<a class="catalogue" href="/cgi-bin/koha/loadmodules.pl?module=search&amp;type=intranet">Catalogue</a>
! 	<a class="circulation"  href="/cgi-bin/koha/circ/circulation.pl">Circulation</a>
! 	<a class="members" href="/cgi-bin/koha/members/members-home.pl">Members</a>
! 	<a class="authority" href="/cgi-bin/koha/authorities/authorities-home.pl">Authorities</a>
! 	<a class="reports" href="/cgi-bin/koha/reports-home.pl">Reports</a>
! 	<a class="parameters" href="/cgi-bin/koha/admin-home.pl">Parameters</a>
! 	<a class="about" href="/cgi-bin/koha/about.pl">About</a>
! 	<a class="catalogue" href="/cgi-bin/koha/help.pl" onclick="Help(); return false;">Help</a>
! </div>
! <form>
! <div id="submenu">
! 	<span class="koha">options &gt;&gt;&nbsp;&nbsp;</span>
! 	<select name="authtype2">
! 		<!-- TMPL_LOOP name="authtypesloop" -->
! 			<option value="<!-- TMPL_VAR name="value" -->" <!-- TMPL_IF name="selected" -->selected<!-- /TMPL_IF -->>
! 				<!-- TMPL_VAR name="authtypetext" -->
! 			</option>
! 		<!-- /TMPL_LOOP -->
! 	</select>
! 	<input type="text" size="10" maxlength="100" name="value">
! 	<a href="javascript:searchauthority()" class="submenu">
! 		Search
! 	</a>
! 	<select name="authtype">
! 		<!-- TMPL_LOOP name="authtypesloop" -->
! 			<option value="<!-- TMPL_VAR name="value" -->" <!-- TMPL_IF name="selected" -->selected<!-- /TMPL_IF -->>
! 				<!-- TMPL_VAR name="authtypetext" -->
! 			</option>
! 		<!-- /TMPL_LOOP -->
! 	</select>
! 	<a href="javascript:addauthority()" class="submenu2">
! 		Add authority
! 	</a>
! </div>
! </form>
  <!-- TMPL_IF NAME="loggedinusername" -->
!     <p align="left">Logged in as: <!-- TMPL_VAR NAME="loggedinusername" --> [<a href="/cgi-bin/koha/mainpage.pl?logout.x=1">Log Out</a>]</p>
  <!-- TMPL_ELSE -->
!     <p align="left"><a href="/cgi-bin/koha/opac-user.pl">Log In</a> to Koha</p>
  <!-- /TMPL_IF -->
--- 48,56 ----
  
  <body>
! 
! <!-- TMPL_INCLUDE name="menus.inc" -->
  <!-- TMPL_IF NAME="loggedinusername" -->
!     <p class="user">Logged in as: <!-- TMPL_VAR NAME="loggedinusername" --> [<a href="/cgi-bin/koha/mainpage.pl?logout.x=1">Log Out</a>]</p>
  <!-- TMPL_ELSE -->
!     <p class="user"><a href="/cgi-bin/koha/opac-user.pl">Log In</a> to Koha</p>
  <!-- /TMPL_IF -->

Index: bull-top.inc
===================================================================
RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/includes/bull-top.inc,v
retrieving revision 1.5
retrieving revision 1.5.2.1
diff -C2 -r1.5 -r1.5.2.1
*** bull-top.inc	2 Dec 2004 16:43:28 -0000	1.5
--- bull-top.inc	28 Jul 2005 15:28:56 -0000	1.5.2.1
***************
*** 17,21 ****
  	color:#FFFFFF;
  	text-decoration: normal;
- 	font-weight: bold;
  	background-image:none;
  	}
--- 17,20 ----
***************
*** 24,28 ****
  	color: #FFFFFF;
  	text-decoration: normal;
- 	font-weight: bold;
  	}
  </style>
--- 23,26 ----
***************
*** 30,55 ****
  <body>
  
! <!-- MENUS -->
! <div id="menubar">
! 	<span class="koha"><a class="home" href="/cgi-bin/koha/mainpage.pl">Koha</a></span>
! 	<a class="acquisition" href="/cgi-bin/koha/loadmodules.pl?module=acquisitions">Acquisitions</a>
! 	<a class="catalogue" href="/cgi-bin/koha/loadmodules.pl?module=search&amp;type=intranet">Catalogue</a>
! 	<a class="circulation"  href="/cgi-bin/koha/circ/circulation.pl">Circulation</a>
! 	<a class="members" href="/cgi-bin/koha/members/members-home.pl">Members</a>
! 	<a class="authority" href="/cgi-bin/koha/authorities/authorities-home.pl">Authorities</a>
! 	<a class="reports" href="/cgi-bin/koha/reports-home.pl">Reports</a>
! 	<a class="parameters" href="/cgi-bin/koha/admin-home.pl">Parameters</a>
! 	<a class="about" href="/cgi-bin/koha/about.pl">About</a>
! 	<a class="catalogue" href="/cgi-bin/koha/help.pl" onclick="Help(); return false;">Help</a>
! </div>
! <div id="submenu">
! 	<span class="koha">options &gt;&gt;&nbsp;&nbsp;</span>
! 	<a href="/cgi-bin/koha/bull-home.pl" class="submenu">Search subscription</a>
! 	<a href="/cgi-bin/koha/bull/lateissues.pl" class="submenu2">Late issues</a>
! </div>
! 
  <!-- TMPL_IF NAME="loggedinusername" -->
!     <p align="left">Logged in as: <!-- TMPL_VAR NAME="loggedinusername" --> [<a href="/cgi-bin/koha/mainpage.pl?logout.x=1">Log Out</a>]</p>
  <!-- TMPL_ELSE -->
!     <p align="left"><a href="/cgi-bin/koha/opac-user.pl">Log In</a> to Koha</p>
  <!-- /TMPL_IF -->
--- 28,35 ----
  <body>
  
! <!-- TMPL_INCLUDE name="menus.inc" -->
  <!-- TMPL_IF NAME="loggedinusername" -->
!     <p class="user">Logged in as: <!-- TMPL_VAR NAME="loggedinusername" --> [<a href="/cgi-bin/koha/mainpage.pl?logout.x=1">Log Out</a>]</p>
  <!-- TMPL_ELSE -->
!     <p class="user"><a href="/cgi-bin/koha/opac-user.pl">Log In</a> to Koha</p>
  <!-- /TMPL_IF -->

Index: cat-top.inc
===================================================================
RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/includes/cat-top.inc,v
retrieving revision 1.35
retrieving revision 1.35.2.1
diff -C2 -r1.35 -r1.35.2.1
*** cat-top.inc	9 Dec 2004 16:28:16 -0000	1.35
--- cat-top.inc	28 Jul 2005 15:28:56 -0000	1.35.2.1
***************
*** 34,60 ****
  
  <body>
! <!-- MENUS -->
! <div id="menubar">
! 	<span class="koha"><a class="home" href="/cgi-bin/koha/mainpage.pl">Koha</a></span>
! 	<a class="acquisition" href="/cgi-bin/koha/loadmodules.pl?module=acquisitions">Acquisitions</a>
! 	<a class="catalogue" href="/cgi-bin/koha/loadmodules.pl?module=search&amp;type=intranet">Catalogue</a>
! 	<a class="circulation"  href="/cgi-bin/koha/circ/circulation.pl">Circulation</a>
! 	<a class="members" href="/cgi-bin/koha/members/members-home.pl">Members</a>
! 	<a class="authority" href="/cgi-bin/koha/authorities/authorities-home.pl">Authorities</a>
! 	<a class="reports" href="/cgi-bin/koha/reports-home.pl">Reports</a>
! 	<a class="parameters" href="/cgi-bin/koha/admin-home.pl">Parameters</a>
! 	<a class="about" href="/cgi-bin/koha/about.pl">About</a>
! 	<a class="catalogue" href="/cgi-bin/koha/help.pl" onclick="Help(); return false;">Help</a>
! </div>
! <div id="submenu">
! 	<span class="koha">options &gt;&gt;&nbsp;&nbsp;</span>
! 	<a href="/cgi-bin/koha/loadmodules.pl?module=search&amp;marc=1&amp;type=intranet" class="submenu2">search</a>
! 	<a href="/cgi-bin/koha/loadmodules.pl?module=addbiblio&amp;type=intranet" class="submenu">Add biblio</a>
! 	<a class="submenu2" href="/cgi-bin/koha/bull-home.pl">Serial</a>
! 	<a href="/cgi-bin/koha/bookshelves/shelves.pl" class="submenu">Virtual shelves</a>
! </div>
  <!-- TMPL_IF NAME="loggedinusername" -->
!     <p align="left">Logged in as: <!-- TMPL_VAR NAME="loggedinusername" --> [<a href="/cgi-bin/koha/mainpage.pl?logout.x=1">Log Out</a>]</p>
  <!-- TMPL_ELSE -->
!     <p align="left"><a href="/cgi-bin/koha/opac-user.pl">Log In</a> to Koha</p>
  <!-- /TMPL_IF -->
--- 34,43 ----
  
  <body>
! 
! <!-- TMPL_INCLUDE name="menus.inc" -->
  <!-- TMPL_IF NAME="loggedinusername" -->
!     <p class="user">Logged in as: <!-- TMPL_VAR NAME="loggedinusername" --> [<a href="/cgi-bin/koha/mainpage.pl?logout.x=1">Log Out</a>]</p>
  <!-- TMPL_ELSE -->
!     <p class="user"><a href="/cgi-bin/koha/opac-user.pl">Log In</a> to Koha</p>
  <!-- /TMPL_IF -->
+ 

Index: circulation-top.inc
===================================================================
RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/includes/circulation-top.inc,v
retrieving revision 1.30
retrieving revision 1.30.2.1
diff -C2 -r1.30 -r1.30.2.1
*** circulation-top.inc	17 Sep 2004 13:19:56 -0000	1.30
--- circulation-top.inc	28 Jul 2005 15:28:56 -0000	1.30.2.1
***************
*** 32,36 ****
  	background-image:none;
  	text-decoration: normal;
- 	font-weight: bold;
  	}
  a.circulation:hover {
--- 32,35 ----
***************
*** 38,42 ****
  	color: #FFFFFF;
  	text-decoration: normal;
- 	font-weight: bold;
  	}
  </style>
--- 37,40 ----
***************
*** 45,71 ****
  <body onload="javascript:focusOnFirst()">
  
! <!-- MENUS -->
! <div id="menubar">
! 	<span class="koha"><a class="home" href="/cgi-bin/koha/mainpage.pl">Koha</a></span>
! 	<a class="acquisition" href="/cgi-bin/koha/loadmodules.pl?module=acquisitions">Acquisitions</a>
! 	<a class="catalogue" href="/cgi-bin/koha/loadmodules.pl?module=search&amp;type=intranet">Catalogue</a>
! 	<a class="circulation"  href="/cgi-bin/koha/circ/circulation.pl">Circulation</a>
! 	<a class="members" href="/cgi-bin/koha/members/members-home.pl">Members</a>
! 	<a class="authority" href="/cgi-bin/koha/authorities/authorities-home.pl">Authorities</a>
! 	<a class="reports" href="/cgi-bin/koha/reports-home.pl">Reports</a>
! 	<a class="parameters" href="/cgi-bin/koha/admin-home.pl">Parameters</a>
! 	<a class="about" href="/cgi-bin/koha/about.pl">About</a>
! 	<a class="catalogue" href="/cgi-bin/koha/help.pl" onclick="Help(); return false;">Help</a>
! </div>
! <div id="submenu">
! 	<span class="koha">options &gt;&gt;&nbsp;&nbsp;</span>
! 	<a href="/cgi-bin/koha/circ/circulation.pl" class="submenu">Issues</a>
! 	<a href="/cgi-bin/koha/circ/returns.pl" class="submenu2">Returns</a>
! 	<a href="/cgi-bin/koha/circ/branchtransfers.pl" class="submenu">Branch transfers</a>
! </div>
! 
  <!-- TMPL_IF NAME="loggedinusername" -->
!     <p align="left">Logged in as: <!-- TMPL_VAR NAME="loggedinusername" --> [<a href="/cgi-bin/koha/mainpage.pl?logout.x=1">Log Out</a>]</p>
  <!-- TMPL_ELSE -->
!     <p align="left"><a href="/cgi-bin/koha/opac-user.pl">Log In</a> to Koha</p>
  <!-- /TMPL_IF -->
--- 43,50 ----
  <body onload="javascript:focusOnFirst()">
  
! <!-- TMPL_INCLUDE name="menus.inc" -->
  <!-- TMPL_IF NAME="loggedinusername" -->
!     <p class="user">Logged in as: <!-- TMPL_VAR NAME="loggedinusername" --> [<a href="/cgi-bin/koha/mainpage.pl?logout.x=1">Log Out</a>]</p>
  <!-- TMPL_ELSE -->
!     <p class="user"><a href="/cgi-bin/koha/opac-user.pl">Log In</a> to Koha</p>
  <!-- /TMPL_IF -->

Index: common-style.css
===================================================================
RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/includes/common-style.css,v
retrieving revision 1.34.2.3
retrieving revision 1.34.2.4
diff -C2 -r1.34.2.3 -r1.34.2.4
*** common-style.css	19 Jul 2005 18:59:35 -0000	1.34.2.3
--- common-style.css	28 Jul 2005 15:28:56 -0000	1.34.2.4
***************
*** 48,68 ****
  .button {
  	text-align: center;
! 	font: 1.2em sans-serif;
  	padding: 0px 5px 0px 5px;
  	margin:2px;
  	display:inline;
  	position:static;
! 	border-style: solid;
! 	border-width: 1px;
! 	border-color: black;
  	text-decoration: none;
- 	color: black;
  	cursor:pointer;
  	vertical-align:middle;
- 	-moz-border-radius: 6px;
  	background-color:#FFFFFF;
  	background-image:url("/intranet-tmpl/default/images/background-mem.gif");
  }
  
  /* TABLES */
  table {
--- 48,71 ----
  .button {
  	text-align: center;
! 	font-family: Arial;
! 	font-size:12px;
  	padding: 0px 5px 0px 5px;
  	margin:2px;
  	display:inline;
  	position:static;
! 	border : 1px solid black;
! /*	border-width: 1px;
! 	border-color: black;*/
  	text-decoration: none;
  	cursor:pointer;
  	vertical-align:middle;
  	background-color:#FFFFFF;
  	background-image:url("/intranet-tmpl/default/images/background-mem.gif");
  }
  
+ .button:hover {
+ 	background-image:url("/intranet-tmpl/default/images/background-mem.gif");
+ }
+ 
  /* TABLES */
  table {
***************
*** 141,145 ****
  	text-align:center;
  	padding: 4px;
! 	border: 4px inset #666666;
  }
  
--- 144,148 ----
  	text-align:center;
  	padding: 4px;
! /* 	border: 1px solid #666666; */
  }
  
***************
*** 201,204 ****
--- 204,208 ----
  	border-bottom:3px solid #000000;
  	background-color:#FFFFFF;
+ 	margin-top:10px;
  	margin-left:10px;
  	margin-right:10px;
***************
*** 282,332 ****
  }
  
- a.submenu {
- 	text-decoration: none;
- 	cursor : pointer;
- 	color:#777777;
- 	background-color:#EEEEEE;
- 	font-weight: bold;
- 	margin:0;
- }
- a.submenu:hover {
- 	text-decoration: none;
- 	cursor:pointer;
- 	color:#777777;
- 	background-color:#EEEEEE;
- 	font-weight: bold;
- 	margin:0;
- 	background-image:url("/intranet-tmpl/default/images/background-mem.gif");
- }
- 
- a.submenu2 {
- 	text-decoration: none;
- 	cursor:pointer;
- 	color:#777777;
- 	background-color:#CCCCCC;
- 	font-weight: bold;
- 	margin:0;
- }
- a.submenu2:hover {
- 	text-decoration: none;
- 	cursor:pointer;
- 	color:#777777;
- 	background-color:#CCCCCC;
- 	font-weight: bold;
- 	background-image:url("/intranet-tmpl/default/images/background-mem.gif");
- 	margin:0;
- }
- 
  #menubar {
  	border-top:1px solid #666666;
! 	font: 125% bold sans-serif;
  	background-color:#DDDDDD;
  	padding-bottom:5px;
  }
! #submenu {
! 	background-color:#EEEEEE;
! 	border-left:1px solid #000000;
! 	padding-bottom:5px;
! 	font-size:110%;
  }
  
--- 286,301 ----
  }
  
  #menubar {
+ 	z-index:2;
+ 	position:absolute;
+ 	top:0px;
+ 	left:0px;
  	border-top:1px solid #666666;
! 	font-size: 14px;
  	background-color:#DDDDDD;
  	padding-bottom:5px;
  }
! html>body #menubar {
! position: fixed;
  }
  
***************
*** 334,339 ****
  	padding:5px;
  }
! #submenu a {
! 	padding:5px;
  }
  
--- 303,361 ----
  	padding:5px;
  }
! 
! a.submenu {
! 	padding:0px 10px 0px 10px;
! 	display:block;
! 	background-color:#FFFFFF;
! 	color:#000000;
! }
! a.submenu:hover {
! 	padding:0px 10px 0px 10px;
! 	display:block;
! 	background-color:#DDDDDD;
! 	color:#000000;
! }
! #Subm1 {
! 	z-index: 11; left: 75px; visibility: hidden; position: absolute; top: 24px; background-color:white; border:1px solid black;
! }
! html>body #Subm1 {
! position: fixed;
! }
! #Subm2 {
! 	z-index: 12; left: 150px; visibility: hidden; position: absolute; top: 24px; background-color:white; border:1px solid black;
! }
! html>body #Subm2 {
! position: fixed;
! }
! #Subm3 {
! 	z-index: 12; left: 250px; visibility: hidden; position: absolute; top: 24px; background-color:white; border:1px solid black;
! }
! html>body #Subm3 {
! position: fixed;
! }
! #Subm4 {
! 	z-index: 12; left: 320px; visibility: hidden; position: absolute; top: 24px; background-color:white; border:1px solid black;
! }
! html>body #Subm4 {
! position: fixed;
! }
! #Subm5 {
! 	z-index: 12; left: 400px; visibility: hidden; position: absolute; top: 24px; background-color:white; border:1px solid black;
! }
! html>body #Subm5 {
! position: fixed;
! }
! #Subm6 {
! 	z-index: 12; left: 480px; visibility: hidden; position: absolute; top: 24px; background-color:white; border:1px solid black;
! }
! html>body #Subm6 {
! position: fixed;
! }
! 
! #Subm7 {
! 	z-index: 12; left: 550px; visibility: hidden; position: absolute; top: 24px; background-color:white; border:1px solid black;
! }
! html>body #Subm7 {
! position: fixed;
  }
  

Index: marc-editor.css
===================================================================
RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/includes/marc-editor.css,v
retrieving revision 1.5
retrieving revision 1.5.2.1
diff -C2 -r1.5 -r1.5.2.1
*** marc-editor.css	13 Jul 2004 12:56:21 -0000	1.5
--- marc-editor.css	28 Jul 2005 15:28:56 -0000	1.5.2.1
***************
*** 44,50 ****
  	font-weight:bold;
  	color:#ad11ad;
! 	background-color:FFFFFF;
  	background-image:url('');
- 	border-bottom: thin solid #ad11ad;
  	margin-right:30%;
  }
--- 44,49 ----
  	font-weight:bold;
  	color:#ad11ad;
! 	background-color:#E8E0F1;
  	background-image:url('');
  	margin-right:30%;
  }
***************
*** 55,57 ****
--- 54,57 ----
  	margin-left:30px;
  	display:inline;
+ 	color:#000000;
  }

Index: marc-top.inc
===================================================================
RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/includes/marc-top.inc,v
retrieving revision 1.12.2.3
retrieving revision 1.12.2.4
diff -C2 -r1.12.2.3 -r1.12.2.4
*** marc-top.inc	25 May 2005 09:34:40 -0000	1.12.2.3
--- marc-top.inc	28 Jul 2005 15:28:56 -0000	1.12.2.4
***************
*** 38,67 ****
  </head>
  
! <body>
! <!-- TMPL_UNLESS name="popup" -->
! 	<!-- MENUS -->
! 	<div id="menubar">
! 		<span class="koha"><a class="home" href="/cgi-bin/koha/mainpage.pl">Koha</a></span>
! 		<a class="acquisition" href="/cgi-bin/koha/loadmodules.pl?module=acquisitions">Acquisitions</a>
! 		<a class="catalogue" href="/cgi-bin/koha/loadmodules.pl?module=search&amp;type=intranet">Catalogue</a>
! 		<a class="circulation"  href="/cgi-bin/koha/circ/circulation.pl">Circulation</a>
! 		<a class="members" href="/cgi-bin/koha/members/members-home.pl">Members</a>
! 		<a class="authority" href="/cgi-bin/koha/authorities/authorities-home.pl">Authorities</a>
! 		<a class="reports" href="/cgi-bin/koha/reports-home.pl">Reports</a>
! 		<a class="parameters" href="/cgi-bin/koha/admin-home.pl">Parameters</a>
! 		<a class="about" href="/cgi-bin/koha/about.pl">About</a>
! 		<a class="catalogue" href="/cgi-bin/koha/help.pl" onclick="Help(); return false;">Help</a>
! 	</div>
! 	<div id="submenu">
! 		<span class="koha">options &gt;&gt;&nbsp;&nbsp;</span>
! 		<a href="/cgi-bin/koha/loadmodules.pl?module=search&marc=1&amp;type=intranet" class="submenu2">search</a>
! 		<a href="/cgi-bin/koha/loadmodules.pl?module=addbiblio&amp;type=intranet" class="submenu">Add biblio</a>
! 		<a class="submenu2" href="/cgi-bin/koha/bull-home.pl">Serial</a>
! 		<a href="/cgi-bin/koha/bookshelves/shelves.pl" class="submenu">Virtual shelves</a>
! 	</div>
! <!-- /TMPL_UNLESS -->
  <!-- TMPL_IF NAME="loggedinusername" -->
!     <p> Logged in as: <!-- TMPL_VAR NAME="loggedinusername" --> [<a href="/cgi-bin/koha/mainpage.pl?logout.x=1">Log Out</a>]</p>
  <!-- TMPL_ELSE -->
!     <p><a href="/cgi-bin/koha/opac-user.pl">Log In</a> to Koha</p>
  <!-- /TMPL_IF -->
--- 38,45 ----
  </head>
  
! <!-- TMPL_INCLUDE name="menus.inc" -->
  <!-- TMPL_IF NAME="loggedinusername" -->
!     <p class="user">Logged in as: <!-- TMPL_VAR NAME="loggedinusername" --> [<a href="/cgi-bin/koha/mainpage.pl?logout.x=1">Log Out</a>]</p>
  <!-- TMPL_ELSE -->
!     <p class="user"><a href="/cgi-bin/koha/opac-user.pl">Log In</a> to Koha</p>
  <!-- /TMPL_IF -->

Index: parameters-top.inc
===================================================================
RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/includes/parameters-top.inc,v
retrieving revision 1.31
retrieving revision 1.31.2.1
diff -C2 -r1.31 -r1.31.2.1
*** parameters-top.inc	17 Sep 2004 13:19:56 -0000	1.31
--- parameters-top.inc	28 Jul 2005 15:28:56 -0000	1.31.2.1
***************
*** 13,17 ****
  	color: #FFFFFF;
  	text-decoration: normal;
- 	font-weight: bold;
  	background-image:none;
  	}
--- 13,16 ----
***************
*** 20,24 ****
  	color: #FFFFFF;
  	text-decoration: normal;
- 	font-weight: bold;
  	}
  </style>
--- 19,22 ----
***************
*** 31,57 ****
  }
  </script>
! <!-- MENUS -->
! <div id="menubar">
! 	<span class="koha"><a class="home" href="/cgi-bin/koha/mainpage.pl">Koha</a></span>
! 	<a class="acquisition" href="/cgi-bin/koha/loadmodules.pl?module=acquisitions">Acquisitions</a>
! 	<a class="catalogue" href="/cgi-bin/koha/loadmodules.pl?module=search&amp;type=intranet">Catalogue</a>
! 	<a class="circulation"  href="/cgi-bin/koha/circ/circulation.pl">Circulation</a>
! 	<a class="members" href="/cgi-bin/koha/members/members-home.pl">Members</a>
! 	<a class="authority" href="/cgi-bin/koha/authorities/authorities-home.pl">Authorities</a>
! 	<a class="reports" href="/cgi-bin/koha/reports-home.pl">Reports</a>
! 	<a class="parameters" href="/cgi-bin/koha/admin-home.pl">Parameters</a>
! 	<a class="about" href="/cgi-bin/koha/about.pl">About</a>
! 	<a class="catalogue" href="/cgi-bin/koha/help.pl" onclick="Help(); return false;">Help</a>
! </div>
! <div id="submenu">
! 	<span class="koha">options &gt;&gt;&nbsp;&nbsp;</span>
! 	<a href="/cgi-bin/koha/admin/aqbookfund.pl" class="submenu">Funds</a>
! 	<a href="/cgi-bin/koha/admin/authorised_values.pl" class="submenu2">Auth value</a>
! 	<a href="/cgi-bin/koha/admin/currency.pl" class="submenu2">Currencies</a>
! 	<a href="/cgi-bin/koha/admin/printers.pl" class="submenu">Printers</a>
! </div>
  <!-- TMPL_IF NAME="loggedinusername" -->
!     <p align="left">Logged in as: <!-- TMPL_VAR NAME="loggedinusername" --> [<a href="/cgi-bin/koha/mainpage.pl?logout.x=1">Log Out</a>]</p>
  <!-- TMPL_ELSE -->
!     <p align="left"><a href="/cgi-bin/koha/opac-user.pl">Log In</a> to Koha</p>
  <!-- /TMPL_IF -->
--- 29,37 ----
  }
  </script>
! 
! <!-- TMPL_INCLUDE name="menus.inc" -->
  <!-- TMPL_IF NAME="loggedinusername" -->
!     <p class="user">Logged in as: <!-- TMPL_VAR NAME="loggedinusername" --> [<a href="/cgi-bin/koha/mainpage.pl?logout.x=1">Log Out</a>]</p>
  <!-- TMPL_ELSE -->
!     <p class="user"><a href="/cgi-bin/koha/opac-user.pl">Log In</a> to Koha</p>
  <!-- /TMPL_IF -->

Index: reports-top.inc
===================================================================
RCS file: /cvsroot/koha/koha/koha-tmpl/intranet-tmpl/default/en/includes/reports-top.inc,v
retrieving revision 1.25
retrieving revision 1.25.2.1
diff -C2 -r1.25 -r1.25.2.1
*** reports-top.inc	13 Oct 2004 15:29:45 -0000	1.25
--- reports-top.inc	28 Jul 2005 15:28:56 -0000	1.25.2.1
***************
*** 17,21 ****
  	color:#FFFFFF;
  	text-decoration: normal;
- 	font-weight: bold;
  	background-image:none;
  	}
--- 17,20 ----
***************
*** 24,28 ****
  	color: #FFFFFF;
  	text-decoration: normal;
- 	font-weight: bold;
  	}
  </style>
--- 23,26 ----
***************
*** 30,54 ****
  <body>
  
! <!-- MENUS -->
! <div id="menubar">
! 	<span class="koha"><a class="home" href="/cgi-bin/koha/mainpage.pl">Koha</a></span>
! 	<a class="acquisition" href="/cgi-bin/koha/loadmodules.pl?module=acquisitions">Acquisitions</a>
! 	<a class="catalogue" href="/cgi-bin/koha/loadmodules.pl?module=search&amp;type=intranet">Catalogue</a>
! 	<a class="circulation"  href="/cgi-bin/koha/circ/circulation.pl">Circulation</a>
! 	<a class="members" href="/cgi-bin/koha/members/members-home.pl">Members</a>
! 	<a class="authority" href="/cgi-bin/koha/authorities/authorities-home.pl">Authorities</a>
! 	<a class="reports" href="/cgi-bin/koha/reports-home.pl">Reports</a>
! 	<a class="parameters" href="/cgi-bin/koha/admin-home.pl">Parameters</a>
! 	<a class="about" href="/cgi-bin/koha/about.pl">About</a>
! 	<a class="catalogue" href="/cgi-bin/koha/help.pl" onclick="Help(); return false;">Help</a>
! </div>
! <div id="submenu">
! 	<span class="koha">options &gt;&gt;&nbsp;&nbsp;</span>
! 	<a href="/cgi-bin/koha/reports/manager.pl?report_name=itemtypes" class="submenu">Itemtypes</a>
! </div>
! 
  <!-- TMPL_IF NAME="loggedinusername" -->
!     <p align="left">Logged in as: <!-- TMPL_VAR NAME="loggedinusername" --> [<a href="/cgi-bin/koha/mainpage.pl?logout.x=1">Log Out</a>]</p>
  <!-- TMPL_ELSE -->
!     <p align="left"><a href="/cgi-bin/koha/opac-user.pl">Log In</a> to Koha</p>
  <!-- /TMPL_IF -->
--- 28,35 ----
  <body>
  
! <!-- TMPL_INCLUDE name="menus.inc" -->
  <!-- TMPL_IF NAME="loggedinusername" -->
!     <p class="user">Logged in as: <!-- TMPL_VAR NAME="loggedinusername" --> [<a href="/cgi-bin/koha/mainpage.pl?logout.x=1">Log Out</a>]</p>
  <!-- TMPL_ELSE -->
!     <p class="user"><a href="/cgi-bin/koha/opac-user.pl">Log In</a> to Koha</p>
  <!-- /TMPL_IF -->





More information about the Koha-cvs mailing list