1 #=====================================================================
 
   4 # Based on SQL-Ledger Version 2.1.9
 
   5 # Web http://www.lx-office.org
 
   7 ######################################################################
 
   8 # SQL-Ledger Accounting
 
   9 # Copyright (c) 1998-2002
 
  11 #  Author: Dieter Simader
 
  12 #   Email: dsimader@sql-ledger.org
 
  13 #     Web: http://www.sql-ledger.org
 
  15 #  Contributors: Christopher Browne
 
  17 # This program is free software; you can redistribute it and/or modify
 
  18 # it under the terms of the GNU General Public License as published by
 
  19 # the Free Software Foundation; either version 2 of the License, or
 
  20 # (at your option) any later version.
 
  22 # This program is distributed in the hope that it will be useful,
 
  23 # but WITHOUT ANY WARRANTY; without even the implied warranty of
 
  24 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
  25 # GNU General Public License for more details.
 
  26 # You should have received a copy of the GNU General Public License
 
  27 # along with this program; if not, write to the Free Software
 
  28 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
  29 #######################################################################
 
  31 # three frame layout with refractured menu
 
  34 #   DS. 2002-03-25  Created
 
  35 #  2004-12-14 - New Optik - Marco Welter <mawe@linux-studio.de>
 
  36 #  2007-10-14 - XMLified  - Holger Will  <holger@treebuilder.de>
 
  37 #######################################################################
 
  39 $menufile = "menu.ini";
 
  42 use CGI::Carp qw(fatalsToBrowser);
 
  49   print "Content-type: text/xml; charset=iso-8859-1\n\n";
 
  50   print qq|<?xml version="1.0" encoding="iso-8859-1"?>\n|;
 
  51   print qq|<?xml-stylesheet href="xslt/xulmenu.xsl" type="text/xsl"?>\n|;
 
  52   print qq|<!DOCTYPE doc [
 
  60   print $form->{password};
 
  61   print qq|</password>|;
 
  63   print %myconfig->{name};
 
  66   print %myconfig->{dbname};
 
  68   print qq|<favorites>|;
 
  69   my $fav=%myconfig->{favorites};
 
  70   my @favorites = split(/;/, $fav);
 
  71   foreach (@favorites) {
 
  72     print qq|<link name="$_"/>|;
 
  74   print qq|</favorites>|;
 
  76 my $isoencodedmenu=&acc_menu($menu);
 
  77  print encode("iso-8859-1",$isoencodedmenu );
 
  86   $locale = Locale->new($language, "menu");
 
  88   $mainlevel = $form->{level};
 
  89   $mainlevel =~ s/$mainlevel--//g;
 
  90   my $menu = new Menu "$menufile";
 
  94   return print_menu($menu);
 
  98   my ($menu, $parent, $depth) = @_;
 
 101   die if ($depth * 1 > 5);
 
 105   @menuorder = $menu->access_control(\%myconfig, $parent);
 
 107   $parent .= "--" if ($parent);
 
 109   foreach my $item (@menuorder) {
 
 110     my $menu_item_id = $item;
 
 111     substr($item, 0, length($parent)) = "";
 
 112     next if (($item eq "") || ($item =~ /--/));
 
 114     my $menu_item = $menu->{"${parent}${item}"};
 
 115     my $menu_title = $locale->text($item);
 
 116     my $menu_text = $menu_title;
 
 118     my $target = "main_window";
 
 119     $target = $menu_item->{"target"} if ($menu_item->{"target"});
 
 121     if ($menu_item->{"submenu"} || !defined($menu_item->{"module"}) ||
 
 122         ($menu_item->{"module"} eq "menu.pl")) {
 
 124       my $h = print_menu($menu, "${parent}${item}", $depth * 1 + 1)."\n";
 
 126         $html .= qq|<item name='${menu_text}' id='${menu_item_id}'>${h}</item>\n|;
 
 128         $html .= qq|<item name='${menu_text}' id='${menu_item_id}'>${h}</item>\n|;
 
 132       $html .= $menu->menuitem_XML(\%myconfig, $form, "${parent}$item",
 
 133                                   { "title" => $menu_title,
 
 134                                     "target" => $target });
 
 135       $html .= qq| name="${menu_text}" id='${menu_item_id}'/>\n|;