[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Phpgroupware-cvs] [19063] update structure to match tarball structure
From: |
Dave Hall |
Subject: |
[Phpgroupware-cvs] [19063] update structure to match tarball structure |
Date: |
Wed, 11 Feb 2009 09:25:36 +0000 |
Revision: 19063
http://svn.sv.gnu.org/viewvc/?view=rev&root=phpgroupware&revision=19063
Author: skwashd
Date: 2009-02-11 09:25:35 +0000 (Wed, 11 Feb 2009)
Log Message:
-----------
update structure to match tarball structure
Added Paths:
-----------
branches/Version-0_9_16-branch/README.NOW-IMPORTANT
branches/Version-0_9_16-branch/about.php
branches/Version-0_9_16-branch/anon_wrapper.php
branches/Version-0_9_16-branch/doc/
branches/Version-0_9_16-branch/header.inc.php.template
branches/Version-0_9_16-branch/home.php
branches/Version-0_9_16-branch/index.php
branches/Version-0_9_16-branch/login.php
branches/Version-0_9_16-branch/logout.php
branches/Version-0_9_16-branch/notify.php
branches/Version-0_9_16-branch/notify_simple.php
branches/Version-0_9_16-branch/phpGroupWare - 0.9.16.kpf
branches/Version-0_9_16-branch/redirect.php
branches/Version-0_9_16-branch/set_box.php
branches/Version-0_9_16-branch/soap.php
branches/Version-0_9_16-branch/version.inc.php
branches/Version-0_9_16-branch/xmlrpc.php
Removed Paths:
-------------
branches/Version-0_9_16-branch/phpgroupware/README.NOW-IMPORTANT
branches/Version-0_9_16-branch/phpgroupware/about.php
branches/Version-0_9_16-branch/phpgroupware/anon_wrapper.php
branches/Version-0_9_16-branch/phpgroupware/doc/
branches/Version-0_9_16-branch/phpgroupware/header.inc.php.template
branches/Version-0_9_16-branch/phpgroupware/home.php
branches/Version-0_9_16-branch/phpgroupware/index.php
branches/Version-0_9_16-branch/phpgroupware/login.php
branches/Version-0_9_16-branch/phpgroupware/logout.php
branches/Version-0_9_16-branch/phpgroupware/notify.php
branches/Version-0_9_16-branch/phpgroupware/notify_simple.php
branches/Version-0_9_16-branch/phpgroupware/phpGroupWare - 0.9.16.kpf
branches/Version-0_9_16-branch/phpgroupware/redirect.php
branches/Version-0_9_16-branch/phpgroupware/set_box.php
branches/Version-0_9_16-branch/phpgroupware/soap.php
branches/Version-0_9_16-branch/phpgroupware/version.inc.php
branches/Version-0_9_16-branch/phpgroupware/xmlrpc.php
Copied: branches/Version-0_9_16-branch/README.NOW-IMPORTANT (from rev 19061,
branches/Version-0_9_16-branch/phpgroupware/README.NOW-IMPORTANT)
===================================================================
--- branches/Version-0_9_16-branch/README.NOW-IMPORTANT
(rev 0)
+++ branches/Version-0_9_16-branch/README.NOW-IMPORTANT 2009-02-11 09:25:35 UTC
(rev 19063)
@@ -0,0 +1,26 @@
+phpGroupWare makes all reasonable attempts to deliver secure code in our
+releases. At the same time, as a system administrator you should take
+some steps to protect your server.
+
+We have prepared some documentation that you should read before going
+any further.
+
+I know you just want to read the "short cut" section in the INSTALL doc,
+and start playing. You can do that, but you do so at you own risk.
+
+Documents to read (in order):
+* doc/SECURITY
+* doc/phpgw-apache.conf
+* doc/php-configuration.txt
+* doc/install/index.html
+
+If you have any questions regarding the documents please email
+phpgroupware-users at gnu.org, if you wish to help write documents
+phpgroupware-docteam at gnu.org
+
+Please enjoy using phpGroupWare, but be vigilant, as we are.
+
+Cheers
+
+phpGroupWare Development Crew
+$Id$
Property changes on: branches/Version-0_9_16-branch/README.NOW-IMPORTANT
___________________________________________________________________
Added: svn:keywords
+ Author Date Id Revision
Added: svn:mergeinfo
+
Added: svn:eol-style
+ native
Copied: branches/Version-0_9_16-branch/about.php (from rev 19061,
branches/Version-0_9_16-branch/phpgroupware/about.php)
===================================================================
--- branches/Version-0_9_16-branch/about.php (rev 0)
+++ branches/Version-0_9_16-branch/about.php 2009-02-11 09:25:35 UTC (rev
19063)
@@ -0,0 +1,128 @@
+<?php
+
/**************************************************************************\
+ * phpGroupWare
*
+ * http://www.phpgroupware.org
*
+ * --------------------------------------------
*
+ * This program is free software; you can redistribute it and/or modify
it *
+ * under the terms of the GNU General Public License as published by
the *
+ * Free Software Foundation; either version 2 of the License, or (at
your *
+ * option) any later version.
*
+
\**************************************************************************/
+ /* $Id$ */
+
+ $GLOBALS['phpgw_info']['flags']['currentapp'] = 'about';
+ $GLOBALS['phpgw_info']['flags']['disable_Template_class'] = True;
+ $GLOBALS['phpgw_info']['flags']['noheader'] = True;
+ include('header.inc.php');
+
+ $app = $_GET['app'];
+ if ($app)
+ {
+ if (!($included =
$GLOBALS['phpgw']->hooks->single('about',$app)))
+ {
+ function about_app()
+ {
+ global $app;
+ $icon =
$GLOBALS['phpgw']->common->image($app,'navbar');
+ include (PHPGW_INCLUDE_ROOT .
"/$app/setup/setup.inc.php");
+ $info = $setup_info[$app];
+ $info['title'] =
$GLOBALS['phpgw_info']['apps'][$app]['title'];
+ $other_infos = array(
+ 'author' => lang('Author'),
+ 'maintainer' => lang('Maintainer'),
+ 'version' => lang('Version'),
+ 'license' => lang('License')
+ );
+
+ $s = "<table width=\"70%\" cellpadding=\"4\">\n"
+ . "<tr><td align=\"right\"><img
src=\"$icon\"></td>"
+ . "<td
align=\"left\"><b>$info[title]</b></td></tr>";
+
+ if ($info['description'])
+ {
+ $info['description'] =
lang($info['description']);
+ $s .= "<tr><td colspan='2'
align='center'>$info[description]</td></tr>\n";
+ if ($info['note'])
+ {
+ $info['note'] =
lang($info['note']);
+ $s .= "<tr><td colspan='2'
align='center'><i>$info[note]</i></td></tr>\n";
+ }
+ }
+ foreach ($other_infos as $key => $val)
+ {
+ if (isset($info[$key]))
+ {
+ $s .= "<tr><td width='50%'
align='right'>$val</td><td>";
+ $infos = $info[$key];
+ for ($n = 0;
is_array($info[$key][$n]) && ($infos = $info[$key][$n]) || !$n; ++$n)
+ {
+ if (!is_array($infos)
&& isset($info[$key.'_email']))
+ {
+ $infos =
array('email' => $info[$key.'_email'],'name' => $infos);
+ }
+ if (is_array($infos))
+ {
+ $names =
explode('<br />',$infos['name']);
+ $emails =
split('@|<br />',$infos['email']);
+ if
(count($names) < count($emails)/2)
+ {
+ $names
= '';
+ }
+ $infos = '';
+ while
(list($user,$domain) = $emails)
+ {
+ if
($infos) $infos .= '<br />';
+ $name =
$names ? array_shift($names) : $user;
+ $infos
.= "<a href='mailto:$user at $domain'
onClick=\"document.location='mailto:$user'+'@'+'$domain'; return
false;\">$name</a>";
+
array_shift($emails); array_shift($emails);
+ }
+ }
+ $s .= ($n ? '<br />' :
'') . $infos;
+ }
+ $s .= "</td></tr>\n";
+ }
+ }
+ $s .= "</table>\n";
+
+ return $s;
+ }
+ $api_only = !($included =
file_exists(PHPGW_INCLUDE_ROOT . "/$app/setup/setup.inc.php"));
+ }
+ }
+ else
+ {
+ $api_only = True;
+ }
+
+ $tpl =
CreateObject('phpgwapi.Template',$GLOBALS['phpgw']->common->get_tpl_dir('phpgwapi'));
+ $tpl->set_file(array(
+ 'phpgw_about' => 'about.tpl',
+ 'phpgw_about_unknown' => 'about_unknown.tpl'
+ ));
+
+
$tpl->set_var('phpgw_logo',$GLOBALS['phpgw']->common->image('phpgwapi','logo'));
+ $tpl->set_var('phpgw_version','phpGroupWare API version ' .
$GLOBALS['phpgw_info']['server']['versions']['phpgwapi']);
+ if ($included)
+ {
+ $tpl->set_var('phpgw_app_about',about_app('',''));
+ //about_app($tpl,"phpgw_app_about");
+ }
+ else
+ {
+ if ($api_only)
+ {
+ $tpl->set_var('phpgw_app_about','');
+ }
+ else
+ {
+ $tpl->set_var('app_header',$app);
+ $tpl->parse('phpgw_app_about','phpgw_about_unknown');
+ }
+ }
+
+ $title = isset($GLOBALS['phpgw_info']['apps'][$app]) ?
$GLOBALS['phpgw_info']['apps'][$app]['title'] : 'phpGroupWare';
+ $GLOBALS['phpgw_info']['flags']['app_header'] = lang('About %1',$title);
+ $GLOBALS['phpgw']->common->phpgw_header();
+ $tpl->pparse('out','phpgw_about');
+ $GLOBALS['phpgw']->common->phpgw_footer();
+?>
Property changes on: branches/Version-0_9_16-branch/about.php
___________________________________________________________________
Added: svn:keywords
+ Author Date Id Revision
Added: svn:mergeinfo
+
Added: svn:eol-style
+ native
Copied: branches/Version-0_9_16-branch/anon_wrapper.php (from rev 19061,
branches/Version-0_9_16-branch/phpgroupware/anon_wrapper.php)
===================================================================
--- branches/Version-0_9_16-branch/anon_wrapper.php
(rev 0)
+++ branches/Version-0_9_16-branch/anon_wrapper.php 2009-02-11 09:25:35 UTC
(rev 19063)
@@ -0,0 +1,40 @@
+<?php
+
/**************************************************************************\
+ * phpGroupWare
*
+ * http://www.phpgroupware.org
*
+ * Written by Dan Kuykendall <address@hidden> *
+ * --------------------------------------------
*
+ * This program is free software; you can redistribute it and/or modify
it *
+ * under the terms of the GNU General Public License as published by
the *
+ * Free Software Foundation; either version 2 of the License, or (at
your *
+ * option) any later version.
*
+
\**************************************************************************/
+
+ /* $Id$ */
+
+ // TODO:
+ // Limit which users can access this program (ACL check)
+ // Global disabler
+ // Detect bad logins and passwords, spit out generic message
+
+ // If your are going to use multiable accounts, remove the following
lines
+ $login = 'anonymous';
+ $passwd = 'anonymous';
+
+ $GLOBALS['phpgw_info']['flags'] = array(
+ 'disable_Template_class' => True,
+ 'login' => True,
+ 'currentapp' => 'login',
+ 'noheader' => True
+ );
+ include('./header.inc.php');
+
+ // If your are going to use multiable accounts, remove the following
lines
+ // You must create the useraccount and check its permissions before use
+
+ $login = 'anonymous';
+ $passwd = 'anonymous';
+
+ $sessionid = $GLOBALS['phpgw']->session->create($login,$passwd,'text');
+ $GLOBALS['phpgw']->redirect_link('/index.php');
+?>
Property changes on: branches/Version-0_9_16-branch/anon_wrapper.php
___________________________________________________________________
Added: svn:keywords
+ Author Date Id Revision
Added: svn:mergeinfo
+
Added: svn:eol-style
+ native
Property changes on: branches/Version-0_9_16-branch/doc
___________________________________________________________________
Added: svn:mergeinfo
+
Copied: branches/Version-0_9_16-branch/header.inc.php.template (from rev 19061,
branches/Version-0_9_16-branch/phpgroupware/header.inc.php.template)
===================================================================
--- branches/Version-0_9_16-branch/header.inc.php.template
(rev 0)
+++ branches/Version-0_9_16-branch/header.inc.php.template 2009-02-11
09:25:35 UTC (rev 19063)
@@ -0,0 +1,126 @@
+<?php
+ ini_set('zend.ze1_compatibility_mode', true);
+
/**************************************************************************\
+ * phpGroupWare
*
+ * http://www.phpgroupware.org
*
+ * This file written by Dan Kuykendall <address@hidden> *
+ * --------------------------------------------
*
+ * This program is free software; you can redistribute it and/or modify
it *
+ * under the terms of the GNU General Public License as published by
the *
+ * Free Software Foundation; either version 2 of the License, or (at
your *
+ * option) any later version.
*
+
\**************************************************************************/
+ /* $Id$ */
+
+
/**************************************************************************\
+ * !!!!!!! EDIT THESE LINES !!!!!!!!
*
+ * This setting allows you to easily move the include directory and the
*
+ * base of the phpGroupWare install. Simple edit the following 2 lines
with *
+ * the absolute path to fit your site, and you should be up and running.
*
+
\**************************************************************************/
+
+ define('PHPGW_SERVER_ROOT','{SERVER_ROOT}');
+ define('PHPGW_INCLUDE_ROOT','{INCLUDE_ROOT}');
+ $GLOBALS['phpgw_info']['server']['header_admin_password'] =
'{HEADER_ADMIN_PASSWORD}';
+
+ /* phpGroupWare domain-specific db settings */{domains}
+ /*
+ ** If you want to have your domains in a select box, change to True
+ ** If not, users will have to login as address@hidden
+ ** Note: This is only for virtual domain support, default domain users
can login only using
+ ** there loginid.
+ */
+ $GLOBALS['phpgw_info']['server']['show_domain_selectbox'] =
{DOMAIN_SELECTBOX};
+
+ /*
+ ** As an alternative to the domain select box, set this option to True
+ ** to use the domain name from the browser provided hostname
($_SERVER['HTTP_HOST'])
+ */
+ $GLOBALS['phpgw_info']['server']['domain_from_host'] =
{DOMAIN_FROM_HOST};
+
+ $GLOBALS['phpgw_info']['server']['db_persistent'] = {DB_PERSISTENT};
+
+ /*
+ ** phpGroupWare can handle session management using the database, but if
+ ** you are using PHP4 you can usually get better performance by having
phpGroupWare
+ ** use the session support built into PHP4. PHP3 users will have to use
the database.
+ ** Your choices are 'db' or 'php4'
+ */
+ $GLOBALS['phpgw_info']['server']['sessions_type'] = '{SESSIONS_TYPE}';
+
+ /* Select which login template set you want, most people will use
default */
+ $GLOBALS['phpgw_info']['login_template_set'] = 'default';
+
+ /* This is used to control mcrypt's use */
+ $GLOBALS['phpgw_info']['server']['mcrypt_enabled'] = {ENABLE_MCRYPT};
+ /* Set this to 'old' for versions < 2.4, otherwise the exact mcrypt
version you use. */
+ $GLOBALS['phpgw_info']['server']['versions']['mcrypt'] =
'{MCRYPT_VERSION}';
+
+ /*
+ ** This is a random string used as the initialization vector for mcrypt
+ ** feel free to change it when setting up phpgroupware on a clean
database,
+ ** but you must not change it after that point!
+ ** It should be around 30 bytes in length.
+ */
+ $GLOBALS['phpgw_info']['server']['mcrypt_iv'] = '{MCRYPT_IV}';
+
+ /* If you want phpGroupWare to be cached by proxy servers, uncomment
the following */
+ /* This is NOT recommended, but phpGroupWare should still work fine. */
+ if(!isset($GLOBALS['phpgw_info']['flags']['nocachecontrol']) ||
!$GLOBALS['phpgw_info']['flags']['nocachecontrol'] == True)
+ {
+ header('Cache-Control: no-cache, must-revalidate'); // HTTP/1.1
+ header('Pragma: no-cache'); // HTTP/1.0
+ }
+
+ /* debugging settings */
+ define('DEBUG_APP', False);
+ define('DEBUG_API', False);
+ define('DEBUG_DATATYPES', True);
+ define('DEBUG_LEVEL', 3);
+ define('DEBUG_OUTPUT', 2); /* 1 = screen, 2 = DB (not supported with
PHP3). For both use 3. */
+ define('DEBUG_TIMER', False);
+
+ function perfgetmicrotime()
+ {
+ list($usec, $sec) = explode(' ',microtime());
+ return ((float)$usec + (float)$sec);
+ }
+
+ if (DEBUG_TIMER)
+ {
+ $GLOBALS['debug_timer_start'] = perfgetmicrotime();
+ }
+
+
/**************************************************************************\
+ * Do not edit these lines
*
+
\**************************************************************************/
+ define('PHPGW_API_INC',PHPGW_INCLUDE_ROOT.'/phpgwapi/inc');
+ include(PHPGW_SERVER_ROOT.'/phpgwapi/setup/setup.inc.php');
+ $GLOBALS['phpgw_info']['server']['versions']['phpgwapi'] =
$setup_info['phpgwapi']['version'];
+ $GLOBALS['phpgw_info']['server']['versions']['current_header'] =
$setup_info['phpgwapi']['versions']['current_header'];
+ unset($setup_info);
+ $GLOBALS['phpgw_info']['server']['versions']['header'] = '1.24';
+ /* This is a fix for NT */
+ if(!isset($GLOBALS['phpgw_info']['flags']['noapi']) ||
$GLOBALS['phpgw_info']['flags']['noapi'] != True)
+ {
+ include(PHPGW_API_INC . '/functions.inc.php');
+ include(PHPGW_API_INC . '/xml_functions.inc.php');
+ include(PHPGW_API_INC . '/soap_functions.inc.php');
+ }
+
+ /*
+ Leave off the final php closing tag, some editors will add
+ a \n or space after which will mess up cookies later on
+ */<!-- BEGIN domain -->
+ $GLOBALS['phpgw_domain']['{DB_DOMAIN}'] = array (
+ 'db_host' => '{DB_HOST}',
+ 'db_name' => '{DB_NAME}',
+ 'db_user' => '{DB_USER}',
+ 'db_pass' => '{DB_PASS}',
+ // Look at the README file
+ 'db_type' => '{DB_TYPE}',
+ // This will limit who is allowed to make configuration
modifications
+ 'config_passwd' => '{CONFIG_PASS}'
+ );
+
+<!-- END domain -->
Property changes on: branches/Version-0_9_16-branch/header.inc.php.template
___________________________________________________________________
Added: svn:keywords
+ Author Date Id Revision
Added: svn:mergeinfo
+
Added: svn:eol-style
+ native
Copied: branches/Version-0_9_16-branch/home.php (from rev 19061,
branches/Version-0_9_16-branch/phpgroupware/home.php)
===================================================================
--- branches/Version-0_9_16-branch/home.php (rev 0)
+++ branches/Version-0_9_16-branch/home.php 2009-02-11 09:25:35 UTC (rev
19063)
@@ -0,0 +1,265 @@
+<?php
+
/**************************************************************************\
+ * phpGroupWare
*
+ * http://www.phpgroupware.org
*
+ * The file written by Joseph Engo <address@hidden> *
+ * --------------------------------------------
*
+ * This program is free software; you can redistribute it and/or modify
it *
+ * under the terms of the GNU General Public License as published by
the *
+ * Free Software Foundation; either version 2 of the License, or (at
your *
+ * option) any later version.
*
+
\**************************************************************************/
+
+ /* $Id$ */
+
+ $phpgw_info = array();
+ if (!is_file('header.inc.php'))
+ {
+ echo '<p style="{text-align: center; font-weight: bold;}"><a
href="setup/index.php>"';
+ echo lang('It appears that phpGroupWare is not setup yet,
please run setup.');
+ echo '</a></p>';
+ exit;
+ }
+
+ $GLOBALS['sessionid'] = @$_GET['sessionid'] ? $_GET['sessionid'] :
$_COOKIE['sessionid'];
+ if (!isset($GLOBALS['sessionid']) || !$GLOBALS['sessionid'])
+ {
+ Header('Location: login.php');
+ exit;
+ }
+
+ $GLOBALS['phpgw_info']['flags'] = array(
+ 'noheader' => True,
+ 'nonavbar' => True,
+ 'currentapp' => 'home',
+ 'enable_network_class' => True,
+ 'enable_contacts_class' => True,
+ 'enable_nextmatchs_class' => True
+ );
+ include('header.inc.php');
+
+ // check if forward parameter is set
+ if (@$_GET['phpgw_forward'])
+ {
+ foreach($_GET as $name => $value)
+ {
+ // find phpgw_ in the $_GET parameters but skip
phpgw_forward because of redirect call below
+ if (ereg('phpgw_', $name) && ($name != 'phpgw_forward'))
+ {
+ $name = substr($name, 6); // cut 'phpgw_'
+ $extra_vars[$name] = $value;
+ }
+ }
+
+ $GLOBALS['phpgw']->redirect_link($_GET['phpgw_forward'],
$extra_vars);
+ exit;
+ }
+
+ if ($GLOBALS['phpgw_info']['server']['force_default_app']
+ && $GLOBALS['phpgw_info']['server']['force_default_app'] !=
'user_choice')
+ {
+
$GLOBALS['phpgw_info']['user']['preferences']['common']['default_app'] =
$GLOBALS['phpgw_info']['server']['force_default_app'];
+ }
+
+ if
(($GLOBALS['phpgw_info']['user']['preferences']['common']['useframes'] &&
+ $GLOBALS['phpgw_info']['server']['useframes'] == 'allowed') ||
+ ($GLOBALS['phpgw_info']['server']['useframes'] == 'always'))
+ {
+ if ($_GET['cd'] == 'yes')
+ {
+ if (! $navbarframe && ! $framebody)
+ {
+ $tpl = new Template(PHPGW_TEMPLATE_DIR);
+ $tpl->set_file(array(
+ 'frames' => 'frames.tpl',
+ 'frame_body' =>
'frames_body.tpl',
+ 'frame_navbar' =>
'frames_navbar.tpl'
+ ));
+
$tpl->set_var('navbar_link',$GLOBALS['phpgw']->link('index.php','navbarframe=True&cd=yes'));
+ if ($GLOBALS['forward'])
+ {
+
$tpl->set_var('body_link',$GLOBALS['phpgw']->link($GLOBALS['forward']));
+ }
+ else
+ {
+
$tpl->set_var('body_link',$GLOBALS['phpgw']->link('index.php','framebody=True&cd=yes'));
+ }
+
+ if
($GLOBALS['phpgw_info']['user']['preferences']['common']['frame_navbar_location']
== 'bottom')
+ {
+
$tpl->set_var('frame_size','*,60');
+
$tpl->parse('frames_','frame_body',True);
+
$tpl->parse('frames_','frame_navbar',True);
+ }
+ else
+ {
+
$tpl->set_var('frame_size','60,*');
+
$tpl->parse('frames_','frame_navbar',True);
+
$tpl->parse('frames_','frame_body',True);
+ }
+ $tpl->pparse('out','frames');
+ }
+ if ($navbarframe)
+ {
+
$GLOBALS['phpgw']->common->phpgw_header();
+ echo parse_navbar();
+ }
+ }
+ }
+ elseif ($_GET['cd']=='yes' &&
$GLOBALS['phpgw_info']['user']['preferences']['common']['default_app']
+ &&
$GLOBALS['phpgw_info']['user']['apps'][$GLOBALS['phpgw_info']['user']['preferences']['common']['default_app']])
+ {
+ $GLOBALS['phpgw']->redirect($GLOBALS['phpgw']->link('/'
. $GLOBALS['phpgw_info']['user']['preferences']['common']['default_app'] . '/'
. 'index.php'));
+ }
+ else
+ {
+ $GLOBALS['phpgw']->common->phpgw_header();
+ echo parse_navbar();
+ }
+
+ $GLOBALS['phpgw']->translation->add_app('mainscreen');
+ if (lang('mainscreen_message') != 'mainscreen_message*')
+ {
+ echo '<center>' .
stripslashes(lang('mainscreen_message')) . '</center>';
+ }
+
+ if ((isset($GLOBALS['phpgw_info']['user']['apps']['admin']) &&
+ $GLOBALS['phpgw_info']['user']['apps']['admin']) &&
+
(isset($GLOBALS['phpgw_info']['server']['checkfornewversion']) &&
+ $GLOBALS['phpgw_info']['server']['checkfornewversion']))
+ {
+ $GLOBALS['phpgw']->network->set_addcrlf(False);
+ $lines =
$GLOBALS['phpgw']->network->gethttpsocketfile('http://www.phpgroupware.org/currentversion');
+ for ($i=0; $i<count($lines); $i++)
+ {
+ if (ereg('currentversion',$lines[$i]))
+ {
+ $line_found =
explode(':',chop($lines[$i]));
+ }
+ }
+
if($GLOBALS['phpgw']->common->cmp_version($GLOBALS['phpgw_info']['server']['versions']['phpgwapi'],$line_found[1]))
+ {
+ echo '<p>There is a new version of phpGroupWare
available. <a href="'
+ .
'http://www.phpgroupware.org">http://www.phpgroupware.org</a>';
+ }
+
+ $_found = False;
+ $GLOBALS['phpgw']->db->query("select
app_name,app_version from phpgw_applications",__LINE__,__FILE__);
+ while($GLOBALS['phpgw']->db->next_record())
+ {
+ $_db_version =
$GLOBALS['phpgw']->db->f('app_version');
+ $_app_name =
$GLOBALS['phpgw']->db->f('app_name');
+ $_versionfile =
$GLOBALS['phpgw']->common->get_app_dir($_app_name) . '/setup/setup.inc.php';
+ if(file_exists($_versionfile))
+ {
+ include($_versionfile);
+ $_file_version =
$setup_info[$_app_name]['version'];
+ $_app_title =
$GLOBALS['phpgw_info']['apps'][$_app_name]['title'];
+ unset($setup_info);
+
+
if($GLOBALS['phpgw']->common->cmp_version_long($_db_version,$_file_version))
+ {
+ $_found = True;
+ $_app_string .= '<br />' .
$_app_title;
+ }
+ unset($_file_version);
+ unset($_app_title);
+ }
+ unset($_db_version);
+ unset($_versionfile);
+ }
+ if($_found)
+ {
+ echo '<br />' . lang('The following
applications require upgrades') . ':' . "\n";
+ echo $_app_string . "\n";
+ echo '<br />' . lang('Please run setup to
become current') . '.' . "\n";
+ unset($_app_string);
+ }
+ }
+
+ if (isset($GLOBALS['phpgw_info']['user']['apps']['notifywindow']) &&
+ $GLOBALS['phpgw_info']['user']['apps']['notifywindow'])
+ {
+?>
+<SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript">
+ var NotifyWindow;
+
+ function opennotifywindow()
+ {
+ if (NotifyWindow)
+ {
+ if (NotifyWindow.closed)
+ {
+ NotifyWindow.stop;
+ NotifyWindow.close;
+ }
+ }
+ NotifyWindow = window.open("<?php echo
$GLOBALS['phpgw']->link('/notify.php')?>", "NotifyWindow",
"width=300,height=35,location=no,menubar=no,directories=no,toolbar=no,scrollbars=yes,resizable=yes,status=yes");
+ if (NotifyWindow.opener == null)
+ {
+ NotifyWindow.opener = window;
+ }
+ }
+</SCRIPT>
+
+<?php
+ echo '<a href="javascript:opennotifywindow()">' . lang('Open
notify window') . '</a>';
+ }
+
+ /* This initializes the users portal_order preference if it does not
exist. */
+
if(!is_array($GLOBALS['phpgw_info']['user']['preferences']['portal_order']) &&
$GLOBALS['phpgw_info']['apps'])
+ {
+ $GLOBALS['phpgw']->preferences->delete('portal_order');
+ @reset($GLOBALS['phpgw_info']['apps']);
+ $order = 0;
+ while (list(,$p) = each($GLOBALS['phpgw_info']['apps']))
+ {
+ if($GLOBALS['phpgw_info']['user']['apps'][$p['name']])
+ {
+
$GLOBALS['phpgw']->preferences->add('portal_order',$order++,$p['id']);
+ }
+ }
+ $GLOBALS['phpgw_info']['user']['preferences'] =
$GLOBALS['phpgw']->preferences->save_repository();
+ }
+
+
if(is_array($GLOBALS['phpgw_info']['user']['preferences']['portal_order']))
+ {
+ $app_check = Array();
+
@ksort($GLOBALS['phpgw_info']['user']['preferences']['portal_order']);
+ while(list($order,$app) =
each($GLOBALS['phpgw_info']['user']['preferences']['portal_order']))
+ {
+ if(!isset($app_check[intval($app)]) ||
!$app_check[intval($app)])
+ {
+ $app_check[intval($app)] = True;
+ $sorted_apps[] =
$GLOBALS['phpgw']->applications->id2name(intval($app));
+ }
+ }
+ }
+ else
+ {
+ $sorted_apps = Array(
+ 'email',
+ 'calendar',
+ 'news_admin',
+ 'addressbook',
+ 'squirrelmail'
+ );
+ }
+ @reset($sorted_apps);
+ $GLOBALS['phpgw']->hooks->process('home',$sorted_apps);
+
+ if($GLOBALS['portal_order'])
+ {
+ $GLOBALS['phpgw']->preferences->delete('portal_order');
+ @reset($GLOBALS['portal_order']);
+ while(list($app_order,$app_id) = each($GLOBALS['portal_order']))
+ {
+
$GLOBALS['phpgw']->preferences->add('portal_order',$app_order,$app_id);
+ }
+ $GLOBALS['phpgw']->preferences->save_repository();
+ }
+
+ //$phpgw->common->debug_phpgw_info();
+ //$phpgw->common->debug_list_core_functions();
+ $GLOBALS['phpgw']->common->phpgw_footer();
+?>
Property changes on: branches/Version-0_9_16-branch/home.php
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:keywords
+ Author Date Id Revision
Added: svn:mergeinfo
+
Added: svn:eol-style
+ native
Copied: branches/Version-0_9_16-branch/index.php (from rev 19061,
branches/Version-0_9_16-branch/phpgroupware/index.php)
===================================================================
--- branches/Version-0_9_16-branch/index.php (rev 0)
+++ branches/Version-0_9_16-branch/index.php 2009-02-11 09:25:35 UTC (rev
19063)
@@ -0,0 +1,119 @@
+<?php
+
/**************************************************************************\
+ * phpGroupWare
*
+ * http://www.phpgroupware.org
*
+ * --------------------------------------------
*
+ * This program is free software; you can redistribute it and/or modify
it *
+ * under the terms of the GNU General Public License as published by
the *
+ * Free Software Foundation; either version 2 of the License, or (at
your *
+ * option) any later version.
*
+
\**************************************************************************/
+
+ /* $Id$ */
+
+ $phpgw_info = array();
+ if (!file_exists('header.inc.php'))
+ {
+ Header('Location: setup/index.php');
+ exit;
+ }
+
+ if ( !isset($_REQUEST['sessionid']) || !strlen($_REQUEST['sessionid']) )
+ {
+ Header('Location: login.php');
+ exit;
+ }
+ $GLOBALS['sessionid'] =& $_REQUEST['sessionid'];
+
+
+ /*
+ This is the preliminary menuaction driver for the new
multi-layered design
+ */
+ if (@isset($_GET['menuaction']))
+ {
+ list($app,$class,$method) = explode('.',$_GET['menuaction']);
+ if (! $app || ! $class || ! $method)
+ {
+ $invalid_data = True;
+ }
+ }
+ else
+ {
+ //$phpgw->log->message('W-BadmenuactionVariable, menuaction missing or
corrupt: %1',$menuaction);
+ //$phpgw->log->commit();
+
+ $app = 'home';
+ $invalid_data = True;
+ }
+
+ if ($app == 'phpgwapi')
+ {
+ $app = 'home';
+ $api_requested = True;
+ }
+
+ $GLOBALS['phpgw_info']['flags'] = array(
+ 'noheader' => True,
+ 'nonavbar' => True,
+ 'currentapp' => $app
+ );
+ include('./header.inc.php');
+
+ if ($app == 'home' && ! $api_requested)
+ {
+ Header('Location: ' . $GLOBALS['phpgw']->link('/home.php'));
+ }
+
+ if ($api_requested)
+ {
+ $app = 'phpgwapi';
+ }
+
+ $GLOBALS['obj'] = CreateObject(sprintf('%s.%s',$app,$class));
+ $GLOBALS[$class] = $GLOBALS['obj'];
+ if ((is_array($GLOBALS[$class]->public_functions) &&
$GLOBALS[$class]->public_functions[$method]) && ! $invalid_data)
+ {
+// eval("\$GLOBALS['obj']->$method();");
+ execmethod($_GET['menuaction']);
+ unset($app);
+ unset($obj);
+ unset($class);
+ unset($method);
+ unset($invalid_data);
+ unset($api_requested);
+ }
+ else
+ {
+ if (! $app || ! $class || ! $method)
+ {
+ $GLOBALS['phpgw']->log->message(array(
+ 'text' => 'W-BadmenuactionVariable, menuaction
missing or corrupt: %1',
+ 'p1' => $menuaction,
+ 'line' => __LINE__,
+ 'file' => __FILE__
+ ));
+ }
+
+ if (! is_array($obj->public_functions) || !
$obj->public_functions[$method] && $method)
+ {
+ $GLOBALS['phpgw']->log->message(array(
+ 'text' => 'W-BadmenuactionVariable, attempted
to access private method: %1',
+ 'p1' => $method,
+ 'line' => __LINE__,
+ 'file' => __FILE__
+ ));
+ }
+ $GLOBALS['phpgw']->log->commit();
+
+ $GLOBALS['phpgw']->redirect_link('/home.php');
+ /*
+ $_obj = CreateObject('home.home');
+ $_obj->get_list();
+ */
+ }
+
+ if (! $GLOBALS['phpgw_info']['nofooter'])
+ {
+ $GLOBALS['phpgw']->common->phpgw_footer();
+ }
+?>
Property changes on: branches/Version-0_9_16-branch/index.php
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:keywords
+ Author Date Id Revision
Added: svn:mergeinfo
+
Added: svn:eol-style
+ native
Copied: branches/Version-0_9_16-branch/login.php (from rev 19061,
branches/Version-0_9_16-branch/phpgroupware/login.php)
===================================================================
--- branches/Version-0_9_16-branch/login.php (rev 0)
+++ branches/Version-0_9_16-branch/login.php 2009-02-11 09:25:35 UTC (rev
19063)
@@ -0,0 +1,361 @@
+<?php
+
/**************************************************************************\
+ * phpGroupWare
*
+ * http://www.phpgroupware.org
*
+ * Written by Dan Kuykendall <address@hidden> *
+ * Joseph Engo <address@hidden> *
+ * --------------------------------------------
*
+ * This program is free software; you can redistribute it and/or modify
it *
+ * under the terms of the GNU General Public License as published by
the *
+ * Free Software Foundation; either version 2 of the License, or (at
your *
+ * option) any later version.
*
+
\**************************************************************************/
+
+ /* $Id$ */
+
+ $phpgw_info = array();
+ $GLOBALS['phpgw_info']['flags'] = array(
+ 'disable_template_class' => True,
+ 'login' => True,
+ 'currentapp' => 'login',
+ 'noheader' => True
+ );
+ if(file_exists('./header.inc.php'))
+ {
+ include('./header.inc.php');
+ $GLOBALS['phpgw']->sessions = createObject('phpgwapi.sessions');
+ }
+ else
+ {
+ Header('Location: setup/index.php');
+ exit;
+ }
+
+ $GLOBALS['phpgw_info']['server']['template_dir'] = PHPGW_SERVER_ROOT
+ .
'/phpgwapi/templates/'
+ .
$GLOBALS['phpgw_info']['login_template_set'];
+
+ $tmpl = CreateObject('phpgwapi.Template',
$GLOBALS['phpgw_info']['server']['template_dir']);
+
+ // This is used for system downtime, to prevent new logins.
+ if ($GLOBALS['phpgw_info']['server']['deny_all_logins'])
+ {
+ $tmpl->set_file(array(
+ 'login_form' => 'login_denylogin.tpl'
+ ));
+ $tmpl->set_var('template_set','default');
+ $tmpl->pfp('loginout','login_form');
+ exit;
+ }
+
+ // !! NOTE !!
+ // Do NOT and I repeat, do NOT touch ANYTHING to do with lang in this
file.
+ // If there is a problem, tell me and I will fix it. (jengo)
+
+/*
+ if ($_GET['cd'] != 10 && $GLOBALS['phpgw_info']['server']['usecookies']
== False)
+ {
+ $GLOBALS['phpgw']->sessions->setcookie('sessionid');
+ $GLOBALS['phpgw']->sessions->setcookie('kp3');
+ $GLOBALS['phpgw']->sessions->setcookie('domain');
+ }
+*/
+
+/* This is not working yet because I need to figure out a way to clear the $cd
=1
+ if (isset($_SERVER['PHP_AUTH_USER']) && $_GET['cd'] == '1')
+ {
+ Header('HTTP/1.0 401 Unauthorized');
+ Header('WWW-Authenticate: Basic realm="phpGroupWare"');
+ echo 'You have to re-authentificate yourself';
+ exit;
+ }
+*/
+
+ if (! $deny_login && !
$GLOBALS['phpgw_info']['server']['show_domain_selectbox'])
+ {
+ $tmpl->set_file(array('login_form' => 'login.tpl'));
+ $tmpl->set_var('charset',lang('charset'));
+ }
+ elseif ($GLOBALS['phpgw_info']['server']['show_domain_selectbox'])
+ {
+ $tmpl->set_file(array('login_form' =>
'login_selectdomain.tpl'));
+ $tmpl->set_var('charset',lang('charset'));
+ }
+
+ if(@$GLOBALS['phpgw_info']['server']['domain_from_host']
+ &&
address@hidden'phpgw_info']['server']['show_domain_selectbox'])
+ {
+ $tmpl->set_var('logindomain', '@' . $_SERVER['SERVER_NAME']
+ . '<input type="hidden" name="logindomain" value="'
+ . $_SERVER['SERVER_NAME'] . '">');
+ }
+
+
+ function check_logoutcode($code)
+ {
+ switch($code)
+ {
+ case 1:
+ return lang('You have been successfully logged
out');
+ break;
+ case 2:
+ return lang('Sorry, your login has expired');
+ break;
+ case 5:
+ return '<font color="FF0000">' . lang('Bad
login or password') . '</font>';
+ break;
+ case 99:
+ return '<font color="FF0000">' . lang('Blocked,
too many attempts') . '</font>';
+ break;
+ case 10:
+
$GLOBALS['phpgw']->sessions->phpgw_setcookie('sessionid');
+
$GLOBALS['phpgw']->sessions->phpgw_setcookie('kp3');
+
$GLOBALS['phpgw']->sessions->phpgw_setcookie('domain');
+
+ //fix for bug php4 expired sessions bug
+
if($GLOBALS['phpgw_info']['server']['sessions_type'] == 'php4')
+ {
+
$GLOBALS['phpgw']->sessions->phpgw_setcookie(PHPGW_PHPSESSID);
+ }
+
+ return '<font color=#FF0000>' . lang('Your
session could not be verified.') . '</font>';
+ break;
+ default:
+ return ' ';
+ }
+ }
+
+ function check_langs()
+ {
+ //echo "<h1>check_langs()</h1>\n";
+ if ($GLOBALS['phpgw_info']['server']['lang_ctimes'] &&
!is_array($GLOBALS['phpgw_info']['server']['lang_ctimes']))
+ {
+ $GLOBALS['phpgw_info']['server']['lang_ctimes'] =
unserialize($GLOBALS['phpgw_info']['server']['lang_ctimes']);
+ }
+ //_debug_array($GLOBALS['phpgw_info']['server']['lang_ctimes']);
+
+ $lang =
$GLOBALS['phpgw_info']['user']['preferences']['common']['lang'];
+ $apps = $GLOBALS['phpgw_info']['user']['apps'];
+ $apps['phpgwapi'] = true; // check the api too
+ while (list($app,$data) = each($apps))
+ {
+ $fname = PHPGW_SERVER_ROOT .
"/$app/setup/phpgw_$lang.lang";
+
+ if (file_exists($fname))
+ {
+ $ctime = filectime($fname);
+ $ltime =
intval($GLOBALS['phpgw_info']['server']['lang_ctimes'][$lang][$app]);
+ //echo "checking lang='$lang', app='$app',
ctime='$ctime', ltime='$ltime'<br />\n";
+
+ if ($ctime != $ltime)
+ {
+ update_langs(); // update all
langs
+ break;
+ }
+ }
+ }
+ }
+
+ function update_langs()
+ {
+ $GLOBALS['phpgw_setup'] = CreateObject('phpgwapi.setup');
+ $GLOBALS['phpgw_setup']->db = $GLOBALS['phpgw']->db;
+
+ $GLOBALS['phpgw_setup']->detection->check_lang(false); // get
installed langs
+ $langs = $GLOBALS['phpgw_info']['setup']['installed_langs'];
+ while (list($lang) = @each($langs))
+ {
+ $langs[$lang] = $lang;
+ }
+ $_POST['submit'] = true;
+ $_POST['lang_selected'] = $langs;
+ $_POST['upgrademethod'] = 'dumpold';
+ $included = 'from_login';
+
+ include(PHPGW_SERVER_ROOT . '/setup/lang.php');
+ }
+
+ /* Program starts here */
+
+ if ($GLOBALS['phpgw_info']['server']['auth_type'] == 'http' &&
isset($_SERVER['PHP_AUTH_USER']))
+ {
+ $submit = True;
+ $login = $_SERVER['PHP_AUTH_USER'];
+ $passwd = $_SERVER['PHP_AUTH_PW'];
+ }
+
+ # Apache + mod_ssl style SSL certificate authentication
+ # Certificate (chain) verification occurs inside mod_ssl
+ if ($GLOBALS['phpgw_info']['server']['auth_type'] == 'sqlssl' &&
isset($_SERVER['SSL_CLIENT_S_DN']) && !isset($_GET['cd']))
+ {
+ # an X.509 subject looks like:
+ #
/CN=john.doe/OU=Department/O=Company/C=xx/address@hidden/L=City/
+ # the username is deliberately lowercase, to ease LDAP
integration
+ $sslattribs = explode('/',$_SERVER['SSL_CLIENT_S_DN']);
+ # skip the part in front of the first '/' (nothing)
+ while ($sslattrib = next($sslattribs))
+ {
+ list($key,$val) = explode('=',$sslattrib);
+ $sslattributes[$key] = $val;
+ }
+
+ if (isset($sslattributes['Email']))
+ {
+ $submit = True;
+
+ # login will be set here if the user logged out and
uses a different username with
+ # the same SSL-certificate.
+ if
(!isset($_POST['login'])&&isset($sslattributes['Email'])) {
+ $login = $sslattributes['Email'];
+ # not checked against the database, but
delivered to authentication module
+ $passwd = $_SERVER['SSL_CLIENT_S_DN'];
+ }
+ }
+ unset($key);
+ unset($val);
+ unset($sslattributes);
+ }
+
+ if (isset($_POST['passwd_type']) || $_POST['submit'] ||
$_POST['submit_x'] || $_POST['submit_y'])
+ {
+ if (getenv(REQUEST_METHOD) != 'POST' &&
$_SERVER['REQUEST_METHOD'] != 'POST'
+ && !isset($_SERVER['PHP_AUTH_USER']) &&
!isset($_SERVER['SSL_CLIENT_S_DN']))
+ {
+
$GLOBALS['phpgw']->redirect($GLOBALS['phpgw']->link('/login.php','code=5'));
+ }
+ $login = $_POST['login'];
+ if (strstr($login,'@') === False &&
isset($_POST['logindomain']))
+ {
+ $login .= '@' . $_POST['logindomain'];
+ }
+ $GLOBALS['sessionid'] =
$GLOBALS['phpgw']->session->create($login,$_POST['passwd'],$_POST['passwd_type']);
+
+ if (! isset($GLOBALS['sessionid']) || ! $GLOBALS['sessionid'])
+ {
+
$GLOBALS['phpgw']->redirect($GLOBALS['phpgw_info']['server']['webserver_url'] .
'/login.php?cd=' . $GLOBALS['phpgw']->session->cd_reason);
+ }
+ else
+ {
+ $forward = get_var('phpgw_forward', array('GET',
'POST'), 0);
+ if($forward)
+ {
+ $extra_vars['phpgw_forward'] = $forward;
+ foreach($_GET as $name => $value)
+ {
+ if (ereg('phpgw_',$name))
+ {
+ $extra_vars[$name] = $value;
+ }
+ }
+ }
+ if
(!$GLOBALS['phpgw_info']['server']['disable_autoload_langfiles'])
+ {
+ check_langs();
+ }
+ $extra_vars['cd'] = 'yes';
+
+ $GLOBALS['phpgw']->hooks->process('login');
+ $GLOBALS['phpgw']->redirect_link('/home.php',
$extra_vars);
+ }
+ }
+ else
+ {
+ // !!! DONT CHANGE THESE LINES !!!
+ // If there is something wrong with this code TELL ME!
+ // Commenting out the code will not fix it. (jengo)
+ if (isset($_COOKIE['last_loginid']))
+ {
+ $accounts = CreateObject('phpgwapi.accounts');
+ $prefs = CreateObject('phpgwapi.preferences',
$accounts->name2id($_COOKIE['last_loginid']));
+
+ if (! $prefs->account_id)
+ {
+
$GLOBALS['phpgw_info']['user']['preferences']['common']['lang'] = 'en';
+ }
+ else
+ {
+ $GLOBALS['phpgw_info']['user']['preferences'] =
$prefs->read_repository();
+ }
+ #print 'LANG:' .
$GLOBALS['phpgw_info']['user']['preferences']['common']['lang'] . '<br />';
+ }
+ else
+ {
+ // If the lastloginid cookies isn't set, we will
default to english.
+ // Change this if you need.
+
$GLOBALS['phpgw_info']['user']['preferences']['common']['lang'] = 'en';
+ }
+ $GLOBALS['phpgw']->translation->add_app('login');
+ $GLOBALS['phpgw']->translation->add_app('loginscreen');
+ if (lang('loginscreen_message') != 'loginscreen_message*')
+ {
+
$tmpl->set_var('lang_message',stripslashes(lang('loginscreen_message')));
+ }
+ }
+
+ if( (address@hidden'phpgw_info']['server']['usecookies']) &&
@is_array($_COOKIE) )
+ {
+ unset($_COOKIE['last_loginid']);
+ unset($_COOKIE['last_domain']);
+ }
+
+ $last_loginid = $_COOKIE['last_loginid'];
+ if ($GLOBALS['phpgw_info']['server']['show_domain_selectbox'])
+ {
+ $domain_select = ''; // For security ... just in case
+ foreach($GLOBALS['phpgw_domain'] as $domain_name =>
$domain_vars)
+ {
+ $domain_select .= '<option value="' . $domain_name .
'"';
+
+ if ($domain_name == $_COOKIE['last_domain'])
+ {
+ $domain_select .= ' selected';
+ }
+ $domain_select .= '>' . $domain_name . '</option>';
+ }
+ $tmpl->set_var('select_domain',$domain_select);
+ }
+ elseif ($last_loginid !== '')
+ {
+ reset($GLOBALS['phpgw_domain']);
+ list($default_domain) = each($GLOBALS['phpgw_domain']);
+
+ if ($_COOKIE['last_domain'] != $default_domain &&
!empty($_COOKIE['last_domain']))
+ {
+ $last_loginid .= '@' . $_COOKIE['last_domain'];
+ }
+ }
+
+ foreach($_GET as $name => $value)
+ {
+ if (ereg('phpgw_',$name))
+ {
+ $extra_vars .= '&' . $name . '=' . urlencode($value);
+ }
+ }
+
+ if ($extra_vars)
+ {
+ $extra_vars = '?' . substr($extra_vars,1,strlen($extra_vars));
+ }
+
+ $tmpl->set_var('login_url',
$GLOBALS['phpgw_info']['server']['webserver_url'] . '/login.php' . $extra_vars);
+
$tmpl->set_var('registration_url',$GLOBALS['phpgw_info']['server']['webserver_url']
. '/registration/');
+
$tmpl->set_var('version',$GLOBALS['phpgw_info']['server']['versions']['phpgwapi']);
+ $tmpl->set_var('cd',check_logoutcode($_GET['cd']));
+ $tmpl->set_var('cookie',$last_loginid);
+
+ $tmpl->set_var('lang_username',lang('username'));
+ $tmpl->set_var('lang_password',lang('password'));
+ $tmpl->set_var('lang_login',lang('login'));
+
+ $tmpl->set_var('website_title',
$GLOBALS['phpgw_info']['server']['site_title']);
+
$tmpl->set_var('template_set',$GLOBALS['phpgw_info']['login_template_set']);
+
$tmpl->set_var('bg_color',($GLOBALS['phpgw_info']['server']['login_bg_color']?$GLOBALS['phpgw_info']['server']['login_bg_color']:'FFFFFF'));
+
$tmpl->set_var('bg_color_title',($GLOBALS['phpgw_info']['server']['login_bg_color_title']?$GLOBALS['phpgw_info']['server']['login_bg_color_title']:'486591'));
+
$tmpl->set_var('logo_url',($GLOBALS['phpgw_info']['server']['login_logo_url']?$GLOBALS['phpgw_info']['server']['login_logo_url']:'www.phpgroupware.org'));
+
$tmpl->set_var('logo_file',($GLOBALS['phpgw_info']['server']['login_logo_file']?$GLOBALS['phpgw_info']['server']['login_logo_file']:'logo.gif'));
+
$tmpl->set_var('logo_title',($GLOBALS['phpgw_info']['server']['login_logo_title']?$GLOBALS['phpgw_info']['server']['login_logo_title']:'phpGroupWare
--> home'));
+ $tmpl->set_var('autocomplete',
($GLOBALS['phpgw_info']['server']['autocomplete_login'] ? 'autocomplete="off"'
: ''));
+
+ $tmpl->pfp('loginout','login_form');
+?>
Property changes on: branches/Version-0_9_16-branch/login.php
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:keywords
+ Author Date Id Revision
Added: svn:mergeinfo
+
Added: svn:eol-style
+ native
Copied: branches/Version-0_9_16-branch/logout.php (from rev 19061,
branches/Version-0_9_16-branch/phpgroupware/logout.php)
===================================================================
--- branches/Version-0_9_16-branch/logout.php (rev 0)
+++ branches/Version-0_9_16-branch/logout.php 2009-02-11 09:25:35 UTC (rev
19063)
@@ -0,0 +1,67 @@
+<?php
+
/**************************************************************************\
+ * phpGroupWare
*
+ * http://www.phpgroupware.org
*
+ * Written by Joseph Engo <address@hidden> *
+ * --------------------------------------------
*
+ * This program is free software; you can redistribute it and/or modify
it *
+ * under the terms of the GNU General Public License as published by
the *
+ * Free Software Foundation; either version 2 of the License, or (at
your *
+ * option) any later version.
*
+
\**************************************************************************/
+
+ /* $Id$ */
+
+ $GLOBALS['phpgw_info'] = array();
+ $GLOBALS['phpgw_info']['flags'] = array(
+ 'disable_template_class' => True,
+ 'currentapp' => 'logout',
+ 'noheader' => True,
+ 'nofooter' => True,
+ 'nonavbar' => True
+ );
+
+ include('./header.inc.php');
+
+ $GLOBALS['sessionid'] = get_var('sessionid',array('GET','COOKIE'));
+ $GLOBALS['kp3'] = get_var('kp3',array('GET','COOKIE'));
+
+ $verified = $GLOBALS['phpgw']->session->verify();
+ if ($verified)
+ {
+ if (file_exists($GLOBALS['phpgw_info']['server']['temp_dir'] .
SEP . $GLOBALS['sessionid']))
+ {
+ $dh =
opendir($GLOBALS['phpgw_info']['server']['temp_dir'] . SEP .
$GLOBALS['sessionid']);
+ while ($file = readdir($dh))
+ {
+ if ($file != '.' && $file != '..')
+ {
+
unlink($GLOBALS['phpgw_info']['server']['temp_dir'] . SEP .
$GLOBALS['sessionid'] . SEP . $file);
+ }
+ }
+ rmdir($GLOBALS['phpgw_info']['server']['temp_dir'] .
SEP . $GLOBALS['sessionid']);
+ }
+ $GLOBALS['phpgw']->hooks->process('logout');
+
$GLOBALS['phpgw']->session->destroy($GLOBALS['sessionid'],$GLOBALS['kp3']);
+ }
+ else
+ {
+ if(is_object($GLOBALS['phpgw']->log))
+ {
+ $GLOBALS['phpgw']->log->write(array(
+ 'text' => 'W-VerifySession, could not verify
session during logout',
+ 'line' => __LINE__,
+ 'file' => __FILE__
+ ));
+ }
+ }
+ $GLOBALS['phpgw']->session->phpgw_setcookie('sessionid');
+ $GLOBALS['phpgw']->session->phpgw_setcookie('kp3');
+ $GLOBALS['phpgw']->session->phpgw_setcookie('domain');
+ if($GLOBALS['phpgw_info']['server']['sessions_type'] == 'php4')
+ {
+ $GLOBALS['phpgw']->session->phpgw_setcookie(PHPGW_PHPSESSID);
+ }
+
+
$GLOBALS['phpgw']->redirect($GLOBALS['phpgw_info']['server']['webserver_url'].'/login.php?cd=1');
+?>
Property changes on: branches/Version-0_9_16-branch/logout.php
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:keywords
+ Author Date Id Revision
Added: svn:mergeinfo
+
Added: svn:eol-style
+ native
Copied: branches/Version-0_9_16-branch/notify.php (from rev 19061,
branches/Version-0_9_16-branch/phpgroupware/notify.php)
===================================================================
--- branches/Version-0_9_16-branch/notify.php (rev 0)
+++ branches/Version-0_9_16-branch/notify.php 2009-02-11 09:25:35 UTC (rev
19063)
@@ -0,0 +1,36 @@
+<?php
+ /**************************************************************************\
+ * phpGroupWare *
+ * http://www.phpgroupware.org *
+ * -------------------------------------------- *
+ * This program is free software; you can redistribute it and/or modify it *
+ * under the terms of the GNU General Public License as published by the *
+ * Free Software Foundation; either version 2 of the License, or (at your *
+ * option) any later version. *
+ \**************************************************************************/
+
+ /* $Id$ */
+
+ $phpgw_info = array();
+ $GLOBALS['phpgw_info']['flags'] = array(
+ 'noheader' => True,
+ 'nonavbar' => True,
+ 'disable_Template_class' => True,
+ 'currentapp' => 'notifywindow'
+ );
+ include('header.inc.php');
+?>
+<html>
+<head>
+ <meta http-equiv="Refresh" content="300">
+ <title>Notify Window</title>
+</head>
+<body bgcolor="<?php echo $GLOBALS['phpgw_info']['theme']['bg_color']; ?>"
alink="blue" vlink="blue" link="blue">
+<table>
+ <tr><td><a href="<?php echo $GLOBALS['phpgw']->link('/notify.php');
?>">Check Now</a></td></tr>
+<?php
+ $GLOBALS['phpgw']->hooks->process('notifywindow');
+?>
+</table>
+</body>
+</html>
Property changes on: branches/Version-0_9_16-branch/notify.php
___________________________________________________________________
Added: svn:keywords
+ Author Date Id Revision
Added: svn:mergeinfo
+
Added: svn:eol-style
+ native
Copied: branches/Version-0_9_16-branch/notify_simple.php (from rev 19061,
branches/Version-0_9_16-branch/phpgroupware/notify_simple.php)
===================================================================
--- branches/Version-0_9_16-branch/notify_simple.php
(rev 0)
+++ branches/Version-0_9_16-branch/notify_simple.php 2009-02-11 09:25:35 UTC
(rev 19063)
@@ -0,0 +1,26 @@
+<?php
+ /**************************************************************************\
+ * phpGroupWare *
+ * http://www.phpgroupware.org *
+ * -------------------------------------------- *
+ * This program is free software; you can redistribute it and/or modify it *
+ * under the terms of the GNU General Public License as published by the *
+ * Free Software Foundation; either version 2 of the License, or (at your *
+ * option) any later version. *
+ \**************************************************************************/
+
+ /* $Id$ */
+
+ $phpgw_info = array();
+ $GLOBALS['phpgw_info']['flags'] = array(
+ 'noheader' => True,
+ 'nonavbar' => True,
+ 'disable_Template_class' => True,
+ 'currentapp' => 'notifywindow'
+ );
+ include('./header.inc.php');
+
+ echo '<html><body>';
+ $GLOBALS['phpgw']->hooks->process('notifywindow_simple',array('email'));
+ echo '</body></html>';
+?>
Property changes on: branches/Version-0_9_16-branch/notify_simple.php
___________________________________________________________________
Added: svn:keywords
+ Author Date Id Revision
Added: svn:mergeinfo
+
Added: svn:eol-style
+ native
Copied: branches/Version-0_9_16-branch/phpGroupWare - 0.9.16.kpf (from rev
19061, branches/Version-0_9_16-branch/phpgroupware/phpGroupWare - 0.9.16.kpf)
===================================================================
--- branches/Version-0_9_16-branch/phpGroupWare - 0.9.16.kpf
(rev 0)
+++ branches/Version-0_9_16-branch/phpGroupWare - 0.9.16.kpf 2009-02-11
09:25:35 UTC (rev 19063)
@@ -0,0 +1,14034 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Komodo Project File - DO NOT EDIT -->
+<project kpf_version="2" name="phpGroupWare - 0.9.16">
+<preference-set id="">
+</preference-set>
+<folder name="addressbook">
+<preference-set id="">
+ <string id="import_dirname">Q:\public_html\phpgw_0_9_16\addressbook</string>
+</preference-set>
+<file name="admin.php" url="addressbook/admin.php">
+</file>
+<file name="csv_import.php" url="addressbook/csv_import.php">
+</file>
+<file name="index.php" url="addressbook/index.php">
+</file>
+<folder name="help" url="addressbook/help">
+<file name="index.php" url="addressbook/help/index.php">
+</file>
+<folder name="DE" url="addressbook/help/DE">
+<file name="addressbook.php" url="addressbook/help/DE/addressbook.php">
+</file>
+</folder>
+<folder name="EN" url="addressbook/help/EN">
+<file name="addressbook.php" url="addressbook/help/EN/addressbook.php">
+</file>
+</folder>
+<folder name="FI" url="addressbook/help/FI">
+<file name="addressbook.php" url="addressbook/help/FI/addressbook.php">
+</file>
+</folder>
+<folder name="JA" url="addressbook/help/JA">
+<file name="addressbook.php" url="addressbook/help/JA/addressbook.php">
+</file>
+</folder>
+</folder>
+<folder name="inc" url="addressbook/inc">
+<file name="arr.php" url="addressbook/inc/arr.php">
+</file>
+<file name="class.boXport.inc.php" url="addressbook/inc/class.boXport.inc.php">
+</file>
+<file name="class.boaddressbook.inc.php"
url="addressbook/inc/class.boaddressbook.inc.php">
+</file>
+<file name="class.boaddressbook_prefs.inc.php"
url="addressbook/inc/class.boaddressbook_prefs.inc.php">
+</file>
+<file name="class.bocatalog_contact_addr_type.inc.php"
url="addressbook/inc/class.bocatalog_contact_addr_type.inc.php">
+</file>
+<file name="class.bocatalog_contact_comm_descr.inc.php"
url="addressbook/inc/class.bocatalog_contact_comm_descr.inc.php">
+</file>
+<file name="class.bocatalog_contact_comm_type.inc.php"
url="addressbook/inc/class.bocatalog_contact_comm_type.inc.php">
+</file>
+<file name="class.bocatalog_contact_note_type.inc.php"
url="addressbook/inc/class.bocatalog_contact_note_type.inc.php">
+</file>
+<file name="class.catalog_manager.inc.php"
url="addressbook/inc/class.catalog_manager.inc.php">
+</file>
+<file name="class.pdb.inc.php" url="addressbook/inc/class.pdb.inc.php">
+</file>
+<file name="class.soaddressbook.inc.php"
url="addressbook/inc/class.soaddressbook.inc.php">
+</file>
+<file name="class.socatalog_contact_addr_type.inc.php"
url="addressbook/inc/class.socatalog_contact_addr_type.inc.php">
+</file>
+<file name="class.socatalog_contact_comm_descr.inc.php"
url="addressbook/inc/class.socatalog_contact_comm_descr.inc.php">
+</file>
+<file name="class.socatalog_contact_comm_type.inc.php"
url="addressbook/inc/class.socatalog_contact_comm_type.inc.php">
+</file>
+<file name="class.socatalog_contact_note_type.inc.php"
url="addressbook/inc/class.socatalog_contact_note_type.inc.php">
+</file>
+<file name="class.uiXport.inc.php" url="addressbook/inc/class.uiXport.inc.php">
+</file>
+<file name="class.uiaddressbook_prefs.inc.php"
url="addressbook/inc/class.uiaddressbook_prefs.inc.php">
+</file>
+<file name="class.uicatalog_contact_addr_type.inc.php"
url="addressbook/inc/class.uicatalog_contact_addr_type.inc.php">
+</file>
+<file name="class.uicatalog_contact_comm_descr.inc.php"
url="addressbook/inc/class.uicatalog_contact_comm_descr.inc.php">
+</file>
+<file name="class.uicatalog_contact_comm_type.inc.php"
url="addressbook/inc/class.uicatalog_contact_comm_type.inc.php">
+</file>
+<file name="class.uicatalog_contact_note_type.inc.php"
url="addressbook/inc/class.uicatalog_contact_note_type.inc.php">
+</file>
+<file name="class.uifields.inc.php"
url="addressbook/inc/class.uifields.inc.php">
+</file>
+<file name="class.uivcard.inc.php" url="addressbook/inc/class.uivcard.inc.php">
+</file>
+<file name="functions.inc.php" url="addressbook/inc/functions.inc.php">
+</file>
+<file name="hook_add_def_pref.inc.php"
url="addressbook/inc/hook_add_def_pref.inc.php">
+</file>
+<file name="hook_addressbook_add_def_acl.inc.php"
url="addressbook/inc/hook_addressbook_add_def_acl.inc.php">
+</file>
+<file name="hook_admin.inc.php" url="addressbook/inc/hook_admin.inc.php">
+</file>
+<file name="hook_config_validate.inc.php"
url="addressbook/inc/hook_config_validate.inc.php">
+</file>
+<file name="hook_deleteaccount.inc.php"
url="addressbook/inc/hook_deleteaccount.inc.php">
+</file>
+<file name="hook_home.inc.php" url="addressbook/inc/hook_home.inc.php">
+</file>
+<file name="hook_manual.inc.php" url="addressbook/inc/hook_manual.inc.php">
+</file>
+<file name="hook_notifywindow.inc.php"
url="addressbook/inc/hook_notifywindow.inc.php">
+</file>
+<file name="hook_preferences.inc.php"
url="addressbook/inc/hook_preferences.inc.php">
+</file>
+<file name="hook_sidebox_menu.inc.php"
url="addressbook/inc/hook_sidebox_menu.inc.php">
+</file>
+<file name="class.uicategorize_contacts.inc.php"
url="addressbook/inc/class.uicategorize_contacts.inc.php">
+</file>
+<file name="class.widget_lists.inc.php"
url="addressbook/inc/class.widget_lists.inc.php">
+</file>
+<file name="class.uiaddressbook.inc.php"
url="addressbook/inc/class.uiaddressbook.inc.php">
+</file>
+<file name="class.ipc_addressbook.inc.php"
url="addressbook/inc/class.ipc_addressbook.inc.php">
+</file>
+<file name="class.addressbook_importer.inc.php"
url="addressbook/inc/class.addressbook_importer.inc.php">
+</file>
+<folder name="export" url="addressbook/inc/export">
+<file name="Multiple_VCard" url="addressbook/inc/export/Multiple_VCard">
+</file>
+<file name="Netscape_LDIF" url="addressbook/inc/export/Netscape_LDIF">
+</file>
+<file name="Outlook_CSV_-_Deutsch"
url="addressbook/inc/export/Outlook_CSV_-_Deutsch">
+</file>
+<file name="Outlook_CSV_-_English"
url="addressbook/inc/export/Outlook_CSV_-_English">
+</file>
+<file name="OpenOffice_-_calc" url="addressbook/inc/export/OpenOffice_-_calc">
+</file>
+<file name="Palm_PDB" url="addressbook/inc/export/Palm_PDB">
+</file>
+<file name="phpgw_LDIF" url="addressbook/inc/export/phpgw_LDIF">
+</file>
+<file name="phpgw_SQL" url="addressbook/inc/export/phpgw_SQL">
+</file>
+<file name="OpenOffice_-_writer"
url="addressbook/inc/export/OpenOffice_-_writer">
+</file>
+<file name="sample.sxc" url="addressbook/inc/export/sample.sxc">
+</file>
+<file name="sample.sxw" url="addressbook/inc/export/sample.sxw">
+</file>
+</folder>
+<folder name="import" url="addressbook/inc/import">
+<file name="Import_Multiple_VCard"
url="addressbook/inc/import/Import_Multiple_VCard">
+</file>
+<file name="Import_from_Netscape"
url="addressbook/inc/import/Import_from_Netscape">
+</file>
+<file name="Import_from_Outlook_-_Deutsch"
url="addressbook/inc/import/Import_from_Outlook_-_Deutsch">
+</file>
+<file name="Import_from_Outlook_-_English"
url="addressbook/inc/import/Import_from_Outlook_-_English">
+</file>
+</folder>
+</folder>
+<folder name="setup" url="addressbook/setup">
+<file name="phpgw_br.lang" url="addressbook/setup/phpgw_br.lang">
+</file>
+<file name="phpgw_cs.lang" url="addressbook/setup/phpgw_cs.lang">
+</file>
+<file name="phpgw_da.lang" url="addressbook/setup/phpgw_da.lang">
+</file>
+<file name="phpgw_de.lang" url="addressbook/setup/phpgw_de.lang">
+</file>
+<file name="phpgw_en.lang" url="addressbook/setup/phpgw_en.lang">
+</file>
+<file name="phpgw_es.lang" url="addressbook/setup/phpgw_es.lang">
+</file>
+<file name="phpgw_fi.lang" url="addressbook/setup/phpgw_fi.lang">
+</file>
+<file name="phpgw_fr.lang" url="addressbook/setup/phpgw_fr.lang">
+</file>
+<file name="phpgw_hu.lang" url="addressbook/setup/phpgw_hu.lang">
+</file>
+<file name="phpgw_it.lang" url="addressbook/setup/phpgw_it.lang">
+</file>
+<file name="phpgw_ja.lang" url="addressbook/setup/phpgw_ja.lang">
+</file>
+<file name="phpgw_ko.lang" url="addressbook/setup/phpgw_ko.lang">
+</file>
+<file name="phpgw_nl.lang" url="addressbook/setup/phpgw_nl.lang">
+</file>
+<file name="phpgw_no.lang" url="addressbook/setup/phpgw_no.lang">
+</file>
+<file name="phpgw_pl.lang" url="addressbook/setup/phpgw_pl.lang">
+</file>
+<file name="phpgw_pt.lang" url="addressbook/setup/phpgw_pt.lang">
+</file>
+<file name="phpgw_sv.lang" url="addressbook/setup/phpgw_sv.lang">
+</file>
+<file name="setup.inc.php" url="addressbook/setup/setup.inc.php">
+</file>
+</folder>
+<folder name="templates" url="addressbook/templates">
+<folder name="default" url="addressbook/templates/default">
+<file name="about.tpl" url="addressbook/templates/default/about.tpl">
+</file>
+<file name="account_form.tpl"
url="addressbook/templates/default/account_form.tpl">
+</file>
+<file name="add.tpl" url="addressbook/templates/default/add.tpl">
+</file>
+<file name="admin.tpl" url="addressbook/templates/default/admin.tpl">
+</file>
+<file name="body_detail.tpl"
url="addressbook/templates/default/body_detail.tpl">
+</file>
+<file name="body_detail_org.tpl"
url="addressbook/templates/default/body_detail_org.tpl">
+</file>
+<file name="cannot_delete.tpl"
url="addressbook/templates/default/cannot_delete.tpl">
+</file>
+<file name="comm_data.tpl" url="addressbook/templates/default/comm_data.tpl">
+</file>
+<file name="config.tpl" url="addressbook/templates/default/config.tpl">
+</file>
+<file name="csv_import.tpl" url="addressbook/templates/default/csv_import.tpl">
+</file>
+<file name="current_catalog_body.tpl"
url="addressbook/templates/default/current_catalog_body.tpl">
+</file>
+<file name="current_tab_body.tpl"
url="addressbook/templates/default/current_tab_body.tpl">
+</file>
+<file name="delete.tpl" url="addressbook/templates/default/delete.tpl">
+</file>
+<file name="delete_common.tpl"
url="addressbook/templates/default/delete_common.tpl">
+</file>
+<file name="edit.tpl" url="addressbook/templates/default/edit.tpl">
+</file>
+<file name="export.tpl" url="addressbook/templates/default/export.tpl">
+</file>
+<file name="field_form.tpl" url="addressbook/templates/default/field_form.tpl">
+</file>
+<file name="form.css" url="addressbook/templates/default/form.css">
+</file>
+<file name="form.tpl" url="addressbook/templates/default/form.tpl">
+</file>
+<file name="format_de.tpl" url="addressbook/templates/default/format_de.tpl">
+</file>
+<file name="format_us.tpl" url="addressbook/templates/default/format_us.tpl">
+</file>
+<file name="full_format_de.tpl"
url="addressbook/templates/default/full_format_de.tpl">
+</file>
+<file name="full_format_us.tpl"
url="addressbook/templates/default/full_format_us.tpl">
+</file>
+<file name="import.tpl" url="addressbook/templates/default/import.tpl">
+</file>
+<file name="index.tpl" url="addressbook/templates/default/index.tpl">
+</file>
+<file name="line_format_de.tpl"
url="addressbook/templates/default/line_format_de.tpl">
+</file>
+<file name="line_format_us.tpl"
url="addressbook/templates/default/line_format_us.tpl">
+</file>
+<file name="listfields.tpl" url="addressbook/templates/default/listfields.tpl">
+</file>
+<file name="many_actions.tpl"
url="addressbook/templates/default/many_actions.tpl">
+</file>
+<file name="org_data.tpl" url="addressbook/templates/default/org_data.tpl">
+</file>
+<file name="person_data1.tpl"
url="addressbook/templates/default/person_data1.tpl">
+</file>
+<file name="preference_acl.tpl"
url="addressbook/templates/default/preference_acl.tpl">
+</file>
+<file name="preference_acl_row.tpl"
url="addressbook/templates/default/preference_acl_row.tpl">
+</file>
+<file name="preference_colspan.tpl"
url="addressbook/templates/default/preference_colspan.tpl">
+</file>
+<file name="preferences.tpl"
url="addressbook/templates/default/preferences.tpl">
+</file>
+<file name="preferences_bits.tpl"
url="addressbook/templates/default/preferences_bits.tpl">
+</file>
+<file name="principal_tabs.tpl"
url="addressbook/templates/default/principal_tabs.tpl">
+</file>
+<file name="tab.tpl" url="addressbook/templates/default/tab.tpl">
+</file>
+<file name="tabbodycontents.tpl"
url="addressbook/templates/default/tabbodycontents.tpl">
+</file>
+<file name="tabholder.tpl" url="addressbook/templates/default/tabholder.tpl">
+</file>
+<file name="vcardin.tpl" url="addressbook/templates/default/vcardin.tpl">
+</file>
+<file name="view.tpl" url="addressbook/templates/default/view.tpl">
+</file>
+<file name="categorize_contacts.tpl"
url="addressbook/templates/default/categorize_contacts.tpl">
+</file>
+<file name="widget_lists.tpl"
url="addressbook/templates/default/widget_lists.tpl">
+</file>
+<folder name="images" url="addressbook/templates/default/images">
+<file name="navbar.gif" url="addressbook/templates/default/images/navbar.gif">
+</file>
+<file name="navbar.png" url="addressbook/templates/default/images/navbar.png">
+</file>
+</folder>
+</folder>
+<folder name="idots" url="addressbook/templates/idots">
+<folder name="images" url="addressbook/templates/idots/images">
+<file name="navbar.png" url="addressbook/templates/idots/images/navbar.png">
+</file>
+</folder>
+</folder>
+<folder name="idsociety" url="addressbook/templates/idsociety">
+<folder name="images" url="addressbook/templates/idsociety/images">
+<file name="navbar-over.gif"
url="addressbook/templates/idsociety/images/navbar-over.gif">
+</file>
+<file name="navbar-over.png"
url="addressbook/templates/idsociety/images/navbar-over.png">
+</file>
+<file name="navbar.gif"
url="addressbook/templates/idsociety/images/navbar.gif">
+</file>
+<file name="navbar.png"
url="addressbook/templates/idsociety/images/navbar.png">
+</file>
+</folder>
+</folder>
+<folder name="probusiness" url="addressbook/templates/probusiness">
+<file name="about.tpl" url="addressbook/templates/probusiness/about.tpl">
+</file>
+<file name="account_form.tpl"
url="addressbook/templates/probusiness/account_form.tpl">
+</file>
+<file name="add.tpl" url="addressbook/templates/probusiness/add.tpl">
+</file>
+<file name="admin.tpl" url="addressbook/templates/probusiness/admin.tpl">
+</file>
+<file name="body_detail.tpl"
url="addressbook/templates/probusiness/body_detail.tpl">
+</file>
+<file name="body_detail_org.tpl"
url="addressbook/templates/probusiness/body_detail_org.tpl">
+</file>
+<file name="comm_data.tpl"
url="addressbook/templates/probusiness/comm_data.tpl">
+</file>
+<file name="config.tpl" url="addressbook/templates/probusiness/config.tpl">
+</file>
+<file name="csv_import.tpl"
url="addressbook/templates/probusiness/csv_import.tpl">
+</file>
+<file name="current_tab_body.tpl"
url="addressbook/templates/probusiness/current_tab_body.tpl">
+</file>
+<file name="delete.tpl" url="addressbook/templates/probusiness/delete.tpl">
+</file>
+<file name="delete_common.tpl"
url="addressbook/templates/probusiness/delete_common.tpl">
+</file>
+<file name="edit.tpl" url="addressbook/templates/probusiness/edit.tpl">
+</file>
+<file name="export.tpl" url="addressbook/templates/probusiness/export.tpl">
+</file>
+<file name="field_form.tpl"
url="addressbook/templates/probusiness/field_form.tpl">
+</file>
+<file name="form.tpl" url="addressbook/templates/probusiness/form.tpl">
+</file>
+<file name="format_de.tpl"
url="addressbook/templates/probusiness/format_de.tpl">
+</file>
+<file name="format_us.tpl"
url="addressbook/templates/probusiness/format_us.tpl">
+</file>
+<file name="full_format_de.tpl"
url="addressbook/templates/probusiness/full_format_de.tpl">
+</file>
+<file name="full_format_us.tpl"
url="addressbook/templates/probusiness/full_format_us.tpl">
+</file>
+<file name="import.tpl" url="addressbook/templates/probusiness/import.tpl">
+</file>
+<file name="index.tpl" url="addressbook/templates/probusiness/index.tpl">
+</file>
+<file name="line_format_de.tpl"
url="addressbook/templates/probusiness/line_format_de.tpl">
+</file>
+<file name="line_format_us.tpl"
url="addressbook/templates/probusiness/line_format_us.tpl">
+</file>
+<file name="listfields.tpl"
url="addressbook/templates/probusiness/listfields.tpl">
+</file>
+<file name="many_actions.tpl"
url="addressbook/templates/probusiness/many_actions.tpl">
+</file>
+<file name="org_data.tpl" url="addressbook/templates/probusiness/org_data.tpl">
+</file>
+<file name="person_data1.tpl"
url="addressbook/templates/probusiness/person_data1.tpl">
+</file>
+<file name="preference_acl.tpl"
url="addressbook/templates/probusiness/preference_acl.tpl">
+</file>
+<file name="preference_acl_row.tpl"
url="addressbook/templates/probusiness/preference_acl_row.tpl">
+</file>
+<file name="preference_colspan.tpl"
url="addressbook/templates/probusiness/preference_colspan.tpl">
+</file>
+<file name="preferences.tpl"
url="addressbook/templates/probusiness/preferences.tpl">
+</file>
+<file name="preferences_bits.tpl"
url="addressbook/templates/probusiness/preferences_bits.tpl">
+</file>
+<file name="principal_tabs.tpl"
url="addressbook/templates/probusiness/principal_tabs.tpl">
+</file>
+<file name="tab.tpl" url="addressbook/templates/probusiness/tab.tpl">
+</file>
+<file name="tabbodycontents.tpl"
url="addressbook/templates/probusiness/tabbodycontents.tpl">
+</file>
+<file name="tabholder.tpl"
url="addressbook/templates/probusiness/tabholder.tpl">
+</file>
+<file name="vcardin.tpl" url="addressbook/templates/probusiness/vcardin.tpl">
+</file>
+<file name="view.tpl" url="addressbook/templates/probusiness/view.tpl">
+</file>
+<file name="cannot_delete.tpl"
url="addressbook/templates/probusiness/cannot_delete.tpl">
+</file>
+<file name="current_catalog_body.tpl"
url="addressbook/templates/probusiness/current_catalog_body.tpl">
+</file>
+<folder name="images" url="addressbook/templates/probusiness/images">
+<file name="navbar.png"
url="addressbook/templates/probusiness/images/navbar.png">
+</file>
+<file name="newcntc.png"
url="addressbook/templates/probusiness/images/newcntc.png">
+</file>
+<file name="folders.png"
url="addressbook/templates/probusiness/images/folders.png">
+</file>
+</folder>
+</folder>
+</folder>
+</folder>
+<folder name="admin">
+<preference-set id="">
+ <string id="import_dirname">Q:\public_html\phpgw_0_9_16\admin</string>
+</preference-set>
+<file name="index.php" url="admin/index.php">
+</file>
+<file name="navbar-create.php" url="admin/navbar-create.php">
+</file>
+<file name="navbar-sel.php" url="admin/navbar-sel.php">
+</file>
+<file name="phpinfo.php" url="admin/phpinfo.php">
+</file>
+<file name="testbutton.php" url="admin/testbutton.php">
+</file>
+<folder name="doc" url="admin/doc">
+<file name="adminconfig.dvi" url="admin/doc/adminconfig.dvi">
+</file>
+<file name="adminconfig.lyx" url="admin/doc/adminconfig.lyx">
+</file>
+<file name="adminconfig.pdf" url="admin/doc/adminconfig.pdf">
+</file>
+<file name="adminconfig.ps" url="admin/doc/adminconfig.ps">
+</file>
+<file name="adminconfig.sgml" url="admin/doc/adminconfig.sgml">
+</file>
+<file name="adminconfig.txt" url="admin/doc/adminconfig.txt">
+</file>
+<file name="copyright.gpl" url="admin/doc/copyright.gpl">
+</file>
+</folder>
+<folder name="help" url="admin/help">
+<file name="index.php" url="admin/help/index.php">
+</file>
+<folder name="DE" url="admin/help/DE">
+<file name="account.php" url="admin/help/DE/account.php">
+</file>
+<file name="admin.php" url="admin/help/DE/admin.php">
+</file>
+<file name="other.php" url="admin/help/DE/other.php">
+</file>
+<file name="session.php" url="admin/help/DE/session.php">
+</file>
+</folder>
+<folder name="EN" url="admin/help/EN">
+<file name="account.php" url="admin/help/EN/account.php">
+</file>
+<file name="admin.php" url="admin/help/EN/admin.php">
+</file>
+<file name="other.php" url="admin/help/EN/other.php">
+</file>
+<file name="session.php" url="admin/help/EN/session.php">
+</file>
+</folder>
+<folder name="FI" url="admin/help/FI">
+<file name="account.php" url="admin/help/FI/account.php">
+</file>
+<file name="admin.php" url="admin/help/FI/admin.php">
+</file>
+<file name="other.php" url="admin/help/FI/other.php">
+</file>
+<file name="session.php" url="admin/help/FI/session.php">
+</file>
+</folder>
+<folder name="JA" url="admin/help/JA">
+<file name="account.php" url="admin/help/JA/account.php">
+</file>
+<file name="admin.php" url="admin/help/JA/admin.php">
+</file>
+<file name="other.php" url="admin/help/JA/other.php">
+</file>
+<file name="session.php" url="admin/help/JA/session.php">
+</file>
+</folder>
+</folder>
+<folder name="inc" url="admin/inc">
+<file name="class.boaccess_history.inc.php"
url="admin/inc/class.boaccess_history.inc.php">
+</file>
+<file name="class.boaccounts.inc.php" url="admin/inc/class.boaccounts.inc.php">
+</file>
+<file name="class.boaclmanager.inc.php"
url="admin/inc/class.boaclmanager.inc.php">
+</file>
+<file name="class.boapplications.inc.php"
url="admin/inc/class.boapplications.inc.php">
+</file>
+<file name="class.bocategories.inc.php"
url="admin/inc/class.bocategories.inc.php">
+</file>
+<file name="class.boconfig.inc.php" url="admin/inc/class.boconfig.inc.php">
+</file>
+<file name="class.bocurrentsessions.inc.php"
url="admin/inc/class.bocurrentsessions.inc.php">
+</file>
+<file name="class.bolog.inc.php" url="admin/inc/class.bolog.inc.php">
+</file>
+<file name="class.boserver.inc.php" url="admin/inc/class.boserver.inc.php">
+</file>
+<file name="class.html.inc.php" url="admin/inc/class.html.inc.php">
+</file>
+<file name="class.soaccess_history.inc.php"
url="admin/inc/class.soaccess_history.inc.php">
+</file>
+<file name="class.soaccounts.inc.php" url="admin/inc/class.soaccounts.inc.php">
+</file>
+<file name="class.soapplications.inc.php"
url="admin/inc/class.soapplications.inc.php">
+</file>
+<file name="class.solog.inc.php" url="admin/inc/class.solog.inc.php">
+</file>
+<file name="class.soserver.inc.php" url="admin/inc/class.soserver.inc.php">
+</file>
+<file name="class.uiaccess_history.inc.php"
url="admin/inc/class.uiaccess_history.inc.php">
+</file>
+<file name="class.uiaccounts.inc.php" url="admin/inc/class.uiaccounts.inc.php">
+</file>
+<file name="class.uiaclmanager.inc.php"
url="admin/inc/class.uiaclmanager.inc.php">
+</file>
+<file name="class.uiapplications.inc.php"
url="admin/inc/class.uiapplications.inc.php">
+</file>
+<file name="class.uiasyncservice.inc.php"
url="admin/inc/class.uiasyncservice.inc.php">
+</file>
+<file name="class.uicategories.inc.php"
url="admin/inc/class.uicategories.inc.php">
+</file>
+<file name="class.uiconfig.inc.php" url="admin/inc/class.uiconfig.inc.php">
+</file>
+<file name="class.uicurrentsessions.inc.php"
url="admin/inc/class.uicurrentsessions.inc.php">
+</file>
+<file name="class.uilog.inc.php" url="admin/inc/class.uilog.inc.php">
+</file>
+<file name="class.uiloglevels.inc.php"
url="admin/inc/class.uiloglevels.inc.php">
+</file>
+<file name="class.uimainscreen.inc.php"
url="admin/inc/class.uimainscreen.inc.php">
+</file>
+<file name="class.uimenuclass.inc.php"
url="admin/inc/class.uimenuclass.inc.php">
+</file>
+<file name="class.uiserver.inc.php" url="admin/inc/class.uiserver.inc.php">
+</file>
+<file name="hook_acl_manager.inc.php" url="admin/inc/hook_acl_manager.inc.php">
+</file>
+<file name="hook_add_def_pref.inc.php"
url="admin/inc/hook_add_def_pref.inc.php">
+</file>
+<file name="hook_admin.inc.php" url="admin/inc/hook_admin.inc.php">
+</file>
+<file name="hook_after_navbar.inc.php"
url="admin/inc/hook_after_navbar.inc.php">
+</file>
+<file name="hook_config.inc.php" url="admin/inc/hook_config.inc.php">
+</file>
+<file name="hook_deleteaccount.inc.php"
url="admin/inc/hook_deleteaccount.inc.php">
+</file>
+<file name="hook_manual.inc.php" url="admin/inc/hook_manual.inc.php">
+</file>
+<file name="hook_sidebox_menu.inc.php"
url="admin/inc/hook_sidebox_menu.inc.php">
+</file>
+</folder>
+<folder name="setup" url="admin/setup">
+<file name="phpgw_br.lang" url="admin/setup/phpgw_br.lang">
+</file>
+<file name="phpgw_cs.lang" url="admin/setup/phpgw_cs.lang">
+</file>
+<file name="phpgw_da.lang" url="admin/setup/phpgw_da.lang">
+</file>
+<file name="phpgw_de.lang" url="admin/setup/phpgw_de.lang">
+</file>
+<file name="phpgw_en.lang" url="admin/setup/phpgw_en.lang">
+</file>
+<file name="phpgw_es.lang" url="admin/setup/phpgw_es.lang">
+</file>
+<file name="phpgw_fi.lang" url="admin/setup/phpgw_fi.lang">
+</file>
+<file name="phpgw_fr.lang" url="admin/setup/phpgw_fr.lang">
+</file>
+<file name="phpgw_hu.lang" url="admin/setup/phpgw_hu.lang">
+</file>
+<file name="phpgw_it.lang" url="admin/setup/phpgw_it.lang">
+</file>
+<file name="phpgw_ja.lang" url="admin/setup/phpgw_ja.lang">
+</file>
+<file name="phpgw_ko.lang" url="admin/setup/phpgw_ko.lang">
+</file>
+<file name="phpgw_nl.lang" url="admin/setup/phpgw_nl.lang">
+</file>
+<file name="phpgw_no.lang" url="admin/setup/phpgw_no.lang">
+</file>
+<file name="phpgw_pl.lang" url="admin/setup/phpgw_pl.lang">
+</file>
+<file name="phpgw_pt.lang" url="admin/setup/phpgw_pt.lang">
+</file>
+<file name="phpgw_sv.lang" url="admin/setup/phpgw_sv.lang">
+</file>
+<file name="phpgw_zh.lang" url="admin/setup/phpgw_zh.lang">
+</file>
+<file name="phpgw_zt.lang" url="admin/setup/phpgw_zt.lang">
+</file>
+<file name="setup.inc.php" url="admin/setup/setup.inc.php">
+</file>
+</folder>
+<folder name="templates" url="admin/templates">
+<folder name="default" url="admin/templates/default">
+<file name="accesslog.tpl" url="admin/templates/default/accesslog.tpl">
+</file>
+<file name="account_form.tpl" url="admin/templates/default/account_form.tpl">
+</file>
+<file name="account_form_ldap.tpl"
url="admin/templates/default/account_form_ldap.tpl">
+</file>
+<file name="accounts.tpl" url="admin/templates/default/accounts.tpl">
+</file>
+<file name="acl_accounts.tpl" url="admin/templates/default/acl_accounts.tpl">
+</file>
+<file name="acl_applist.tpl" url="admin/templates/default/acl_applist.tpl">
+</file>
+<file name="acl_manager_form.tpl"
url="admin/templates/default/acl_manager_form.tpl">
+</file>
+<file name="application_form.tpl"
url="admin/templates/default/application_form.tpl">
+</file>
+<file name="applications.tpl" url="admin/templates/default/applications.tpl">
+</file>
+<file name="category_form.tpl" url="admin/templates/default/category_form.tpl">
+</file>
+<file name="config.tpl" url="admin/templates/default/config.tpl">
+</file>
+<file name="config_footer.tpl" url="admin/templates/default/config_footer.tpl">
+</file>
+<file name="config_head.tpl" url="admin/templates/default/config_head.tpl">
+</file>
+<file name="currentusers.tpl" url="admin/templates/default/currentusers.tpl">
+</file>
+<file name="delete_account.tpl"
url="admin/templates/default/delete_account.tpl">
+</file>
+<file name="delete_cat.tpl" url="admin/templates/default/delete_cat.tpl">
+</file>
+<file name="delete_common.tpl" url="admin/templates/default/delete_common.tpl">
+</file>
+<file name="errorlog_view.tpl" url="admin/templates/default/errorlog_view.tpl">
+</file>
+<file name="form_accountmasters.tpl"
url="admin/templates/default/form_accountmasters.tpl">
+</file>
+<file name="form_button_script.tpl"
url="admin/templates/default/form_button_script.tpl">
+</file>
+<file name="group_form.tpl" url="admin/templates/default/group_form.tpl">
+</file>
+<file name="group_manager.tpl" url="admin/templates/default/group_manager.tpl">
+</file>
+<file name="groups.tpl" url="admin/templates/default/groups.tpl">
+</file>
+<file name="index.tpl" url="admin/templates/default/index.tpl">
+</file>
+<file name="kill_session.tpl" url="admin/templates/default/kill_session.tpl">
+</file>
+<file name="list_accountmasters.tpl"
url="admin/templates/default/list_accountmasters.tpl">
+</file>
+<file name="listcats.tpl" url="admin/templates/default/listcats.tpl">
+</file>
+<file name="listservers.tpl" url="admin/templates/default/listservers.tpl">
+</file>
+<file name="log.tpl" url="admin/templates/default/log.tpl">
+</file>
+<file name="log_level_select.tpl"
url="admin/templates/default/log_level_select.tpl">
+</file>
+<file name="loglevels.tpl" url="admin/templates/default/loglevels.tpl">
+</file>
+<file name="mainscreen_message.tpl"
url="admin/templates/default/mainscreen_message.tpl">
+</file>
+<file name="menurow.tpl" url="admin/templates/default/menurow.tpl">
+</file>
+<file name="message_row.tpl" url="admin/templates/default/message_row.tpl">
+</file>
+<file name="nntp.tpl" url="admin/templates/default/nntp.tpl">
+</file>
+<file name="server_form.tpl" url="admin/templates/default/server_form.tpl">
+</file>
+<folder name="images" url="admin/templates/default/images">
+<file name="navbar.gif" url="admin/templates/default/images/navbar.gif">
+</file>
+<file name="dot.gif" url="admin/templates/default/images/dot.gif">
+</file>
+<file name="dot.png" url="admin/templates/default/images/dot.png">
+</file>
+<file name="navbar.png" url="admin/templates/default/images/navbar.png">
+</file>
+</folder>
+</folder>
+<folder name="idots" url="admin/templates/idots">
+<file name="index.tpl" url="admin/templates/idots/index.tpl">
+</file>
+<folder name="images" url="admin/templates/idots/images">
+<file name="navbar.png" url="admin/templates/idots/images/navbar.png">
+</file>
+</folder>
+</folder>
+<folder name="idsociety" url="admin/templates/idsociety">
+<folder name="images" url="admin/templates/idsociety/images">
+<file name="navbar-over.gif"
url="admin/templates/idsociety/images/navbar-over.gif">
+</file>
+<file name="navbar-over.png"
url="admin/templates/idsociety/images/navbar-over.png">
+</file>
+<file name="navbar.gif" url="admin/templates/idsociety/images/navbar.gif">
+</file>
+<file name="navbar.png" url="admin/templates/idsociety/images/navbar.png">
+</file>
+</folder>
+</folder>
+<folder name="probusiness" url="admin/templates/probusiness">
+<file name="accesslog.tpl" url="admin/templates/probusiness/accesslog.tpl">
+</file>
+<file name="account_form.tpl"
url="admin/templates/probusiness/account_form.tpl">
+</file>
+<file name="account_form_ldap.tpl"
url="admin/templates/probusiness/account_form_ldap.tpl">
+</file>
+<file name="accounts.tpl" url="admin/templates/probusiness/accounts.tpl">
+</file>
+<file name="acl_accounts.tpl"
url="admin/templates/probusiness/acl_accounts.tpl">
+</file>
+<file name="acl_applist.tpl" url="admin/templates/probusiness/acl_applist.tpl">
+</file>
+<file name="acl_manager_form.tpl"
url="admin/templates/probusiness/acl_manager_form.tpl">
+</file>
+<file name="application_form.tpl"
url="admin/templates/probusiness/application_form.tpl">
+</file>
+<file name="applications.tpl"
url="admin/templates/probusiness/applications.tpl">
+</file>
+<file name="category_form.tpl"
url="admin/templates/probusiness/category_form.tpl">
+</file>
+<file name="config.tpl" url="admin/templates/probusiness/config.tpl">
+</file>
+<file name="config_footer.tpl"
url="admin/templates/probusiness/config_footer.tpl">
+</file>
+<file name="config_head.tpl" url="admin/templates/probusiness/config_head.tpl">
+</file>
+<file name="currentusers.tpl"
url="admin/templates/probusiness/currentusers.tpl">
+</file>
+<file name="delete_account.tpl"
url="admin/templates/probusiness/delete_account.tpl">
+</file>
+<file name="delete_cat.tpl" url="admin/templates/probusiness/delete_cat.tpl">
+</file>
+<file name="delete_common.tpl"
url="admin/templates/probusiness/delete_common.tpl">
+</file>
+<file name="form_button_script.tpl"
url="admin/templates/probusiness/form_button_script.tpl">
+</file>
+<file name="group_form.tpl" url="admin/templates/probusiness/group_form.tpl">
+</file>
+<file name="group_manager.tpl"
url="admin/templates/probusiness/group_manager.tpl">
+</file>
+<file name="groups.tpl" url="admin/templates/probusiness/groups.tpl">
+</file>
+<file name="index.tpl" url="admin/templates/probusiness/index.tpl">
+</file>
+<file name="kill_session.tpl"
url="admin/templates/probusiness/kill_session.tpl">
+</file>
+<file name="listcats.tpl" url="admin/templates/probusiness/listcats.tpl">
+</file>
+<file name="listservers.tpl" url="admin/templates/probusiness/listservers.tpl">
+</file>
+<file name="log.tpl" url="admin/templates/probusiness/log.tpl">
+</file>
+<file name="mainscreen_message.tpl"
url="admin/templates/probusiness/mainscreen_message.tpl">
+</file>
+<file name="menurow.tpl" url="admin/templates/probusiness/menurow.tpl">
+</file>
+<file name="message_row.tpl" url="admin/templates/probusiness/message_row.tpl">
+</file>
+<file name="nntp.tpl" url="admin/templates/probusiness/nntp.tpl">
+</file>
+<file name="server_form.tpl" url="admin/templates/probusiness/server_form.tpl">
+</file>
+<file name="form_accountmasters.tpl"
url="admin/templates/probusiness/form_accountmasters.tpl">
+</file>
+<file name="list_accountmasters.tpl"
url="admin/templates/probusiness/list_accountmasters.tpl">
+</file>
+<folder name="images" url="admin/templates/probusiness/images">
+<file name="navbar.png" url="admin/templates/probusiness/images/navbar.png">
+</file>
+<file name="dot.png" url="admin/templates/probusiness/images/dot.png">
+</file>
+</folder>
+</folder>
+<folder name="verdilak" url="admin/templates/verdilak">
+<folder name="images" url="admin/templates/verdilak/images">
+<file name="navbar.gif" url="admin/templates/verdilak/images/navbar.gif">
+</file>
+<file name="navbar.png" url="admin/templates/verdilak/images/navbar.png">
+</file>
+</folder>
+</folder>
+</folder>
+</folder>
+<folder name="bookmarks">
+<preference-set id="">
+ <string id="import_dirname">Q:\public_html\phpgw_0_9_16\bookmarks</string>
+</preference-set>
+<file name="glist.wml" url="bookmarks/glist.wml">
+</file>
+<file name="index.php" url="bookmarks/index.php">
+</file>
+<folder name="doc" url="bookmarks/doc">
+<file name="copyright.gpl" url="bookmarks/doc/copyright.gpl">
+</file>
+</folder>
+<folder name="inc" url="bookmarks/inc">
+<file name="class.bo.inc.php" url="bookmarks/inc/class.bo.inc.php">
+</file>
+<file name="class.sqlquery.inc.php" url="bookmarks/inc/class.sqlquery.inc.php">
+</file>
+<file name="class.so.inc.php" url="bookmarks/inc/class.so.inc.php">
+</file>
+<file name="hook_admin.inc.php" url="bookmarks/inc/hook_admin.inc.php">
+</file>
+<file name="hook_bookmarks_about.inc.php"
url="bookmarks/inc/hook_bookmarks_about.inc.php">
+</file>
+<file name="hook_preferences.inc.php"
url="bookmarks/inc/hook_preferences.inc.php">
+</file>
+<file name="class.ui.inc.php" url="bookmarks/inc/class.ui.inc.php">
+</file>
+</folder>
+<folder name="setup" url="bookmarks/setup">
+<file name="default_records.inc.php"
url="bookmarks/setup/default_records.inc.php">
+</file>
+<file name="phpgw_br.lang" url="bookmarks/setup/phpgw_br.lang">
+</file>
+<file name="phpgw_cs.lang" url="bookmarks/setup/phpgw_cs.lang">
+</file>
+<file name="phpgw_da.lang" url="bookmarks/setup/phpgw_da.lang">
+</file>
+<file name="phpgw_de.lang" url="bookmarks/setup/phpgw_de.lang">
+</file>
+<file name="phpgw_en.lang" url="bookmarks/setup/phpgw_en.lang">
+</file>
+<file name="phpgw_es.lang" url="bookmarks/setup/phpgw_es.lang">
+</file>
+<file name="phpgw_fi.lang" url="bookmarks/setup/phpgw_fi.lang">
+</file>
+<file name="phpgw_fr.lang" url="bookmarks/setup/phpgw_fr.lang">
+</file>
+<file name="phpgw_hu.lang" url="bookmarks/setup/phpgw_hu.lang">
+</file>
+<file name="phpgw_it.lang" url="bookmarks/setup/phpgw_it.lang">
+</file>
+<file name="phpgw_ja.lang" url="bookmarks/setup/phpgw_ja.lang">
+</file>
+<file name="phpgw_ko.lang" url="bookmarks/setup/phpgw_ko.lang">
+</file>
+<file name="phpgw_nl.lang" url="bookmarks/setup/phpgw_nl.lang">
+</file>
+<file name="phpgw_no.lang" url="bookmarks/setup/phpgw_no.lang">
+</file>
+<file name="phpgw_pl.lang" url="bookmarks/setup/phpgw_pl.lang">
+</file>
+<file name="phpgw_pt.lang" url="bookmarks/setup/phpgw_pt.lang">
+</file>
+<file name="phpgw_sv.lang" url="bookmarks/setup/phpgw_sv.lang">
+</file>
+<file name="setup.inc.php" url="bookmarks/setup/setup.inc.php">
+</file>
+<file name="tables_baseline.inc.php"
url="bookmarks/setup/tables_baseline.inc.php">
+</file>
+<file name="tables_current.inc.php"
url="bookmarks/setup/tables_current.inc.php">
+</file>
+<file name="tables_update.inc.php" url="bookmarks/setup/tables_update.inc.php">
+</file>
+</folder>
+<folder name="templates" url="bookmarks/templates">
+<folder name="default" url="bookmarks/templates/default">
+<file name="common.tpl" url="bookmarks/templates/default/common.tpl">
+</file>
+<file name="config.tpl" url="bookmarks/templates/default/config.tpl">
+</file>
+<file name="export.body.tpl" url="bookmarks/templates/default/export.body.tpl">
+</file>
+<file name="form.tpl" url="bookmarks/templates/default/form.tpl">
+</file>
+<file name="import.body.tpl" url="bookmarks/templates/default/import.body.tpl">
+</file>
+<file name="list.body.tpl" url="bookmarks/templates/default/list.body.tpl">
+</file>
+<file name="list.tpl" url="bookmarks/templates/default/list.tpl">
+</file>
+<file name="maillink.body.tpl"
url="bookmarks/templates/default/maillink.body.tpl">
+</file>
+<file name="preference_acl.tpl"
url="bookmarks/templates/default/preference_acl.tpl">
+</file>
+<file name="preference_acl_row.tpl"
url="bookmarks/templates/default/preference_acl_row.tpl">
+</file>
+<file name="preference_colspan.tpl"
url="bookmarks/templates/default/preference_colspan.tpl">
+</file>
+<file name="search.body.tpl" url="bookmarks/templates/default/search.body.tpl">
+</file>
+<file name="search.results.tpl"
url="bookmarks/templates/default/search.results.tpl">
+</file>
+<folder name="images" url="bookmarks/templates/default/images">
+<file name="bar-0.jpg" url="bookmarks/templates/default/images/bar-0.jpg">
+</file>
+<file name="bar-1.jpg" url="bookmarks/templates/default/images/bar-1.jpg">
+</file>
+<file name="bar-10.jpg" url="bookmarks/templates/default/images/bar-10.jpg">
+</file>
+<file name="bar-2.jpg" url="bookmarks/templates/default/images/bar-2.jpg">
+</file>
+<file name="bar-3.jpg" url="bookmarks/templates/default/images/bar-3.jpg">
+</file>
+<file name="bar-4.jpg" url="bookmarks/templates/default/images/bar-4.jpg">
+</file>
+<file name="bar-5.jpg" url="bookmarks/templates/default/images/bar-5.jpg">
+</file>
+<file name="bar-6.jpg" url="bookmarks/templates/default/images/bar-6.jpg">
+</file>
+<file name="bar-7.jpg" url="bookmarks/templates/default/images/bar-7.jpg">
+</file>
+<file name="bar-8.jpg" url="bookmarks/templates/default/images/bar-8.jpg">
+</file>
+<file name="bar-9.jpg" url="bookmarks/templates/default/images/bar-9.jpg">
+</file>
+<file name="blank.gif" url="bookmarks/templates/default/images/blank.gif">
+</file>
+<file name="blank.png" url="bookmarks/templates/default/images/blank.png">
+</file>
+<file name="cancel.gif" url="bookmarks/templates/default/images/cancel.gif">
+</file>
+<file name="cancel.png" url="bookmarks/templates/default/images/cancel.png">
+</file>
+<file name="closed.gif" url="bookmarks/templates/default/images/closed.gif">
+</file>
+<file name="closed.png" url="bookmarks/templates/default/images/closed.png">
+</file>
+<file name="closed_new.gif"
url="bookmarks/templates/default/images/closed_new.gif">
+</file>
+<file name="closed_new.png"
url="bookmarks/templates/default/images/closed_new.png">
+</file>
+<file name="create.gif" url="bookmarks/templates/default/images/create.gif">
+</file>
+<file name="create.png" url="bookmarks/templates/default/images/create.png">
+</file>
+<file name="delete.gif" url="bookmarks/templates/default/images/delete.gif">
+</file>
+<file name="delete.png" url="bookmarks/templates/default/images/delete.png">
+</file>
+<file name="document.gif"
url="bookmarks/templates/default/images/document.gif">
+</file>
+<file name="document.png"
url="bookmarks/templates/default/images/document.png">
+</file>
+<file name="document_new.gif"
url="bookmarks/templates/default/images/document_new.gif">
+</file>
+<file name="document_new.png"
url="bookmarks/templates/default/images/document_new.png">
+</file>
+<file name="edit.gif" url="bookmarks/templates/default/images/edit.gif">
+</file>
+<file name="edit.png" url="bookmarks/templates/default/images/edit.png">
+</file>
+<file name="first.gif" url="bookmarks/templates/default/images/first.gif">
+</file>
+<file name="first.png" url="bookmarks/templates/default/images/first.png">
+</file>
+<file name="help.gif" url="bookmarks/templates/default/images/help.gif">
+</file>
+<file name="help.png" url="bookmarks/templates/default/images/help.png">
+</file>
+<file name="home.gif" url="bookmarks/templates/default/images/home.gif">
+</file>
+<file name="home.png" url="bookmarks/templates/default/images/home.png">
+</file>
+<file name="last.gif" url="bookmarks/templates/default/images/last.gif">
+</file>
+<file name="last.png" url="bookmarks/templates/default/images/last.png">
+</file>
+<file name="list.gif" url="bookmarks/templates/default/images/list.gif">
+</file>
+<file name="list.png" url="bookmarks/templates/default/images/list.png">
+</file>
+<file name="login.gif" url="bookmarks/templates/default/images/login.gif">
+</file>
+<file name="login.png" url="bookmarks/templates/default/images/login.png">
+</file>
+<file name="logout.gif" url="bookmarks/templates/default/images/logout.gif">
+</file>
+<file name="logout.png" url="bookmarks/templates/default/images/logout.png">
+</file>
+<file name="mail.gif" url="bookmarks/templates/default/images/mail.gif">
+</file>
+<file name="mail.png" url="bookmarks/templates/default/images/mail.png">
+</file>
+<file name="maximize.gif"
url="bookmarks/templates/default/images/maximize.gif">
+</file>
+<file name="maximize.png"
url="bookmarks/templates/default/images/maximize.png">
+</file>
+<file name="minimize.gif"
url="bookmarks/templates/default/images/minimize.gif">
+</file>
+<file name="minimize.png"
url="bookmarks/templates/default/images/minimize.png">
+</file>
+<file name="minus.gif" url="bookmarks/templates/default/images/minus.gif">
+</file>
+<file name="minus.png" url="bookmarks/templates/default/images/minus.png">
+</file>
+<file name="navbar.gif" url="bookmarks/templates/default/images/navbar.gif">
+</file>
+<file name="navbar.png" url="bookmarks/templates/default/images/navbar.png">
+</file>
+<file name="next.gif" url="bookmarks/templates/default/images/next.gif">
+</file>
+<file name="next.png" url="bookmarks/templates/default/images/next.png">
+</file>
+<file name="open.gif" url="bookmarks/templates/default/images/open.gif">
+</file>
+<file name="open.png" url="bookmarks/templates/default/images/open.png">
+</file>
+<file name="open_new.gif"
url="bookmarks/templates/default/images/open_new.gif">
+</file>
+<file name="open_new.png"
url="bookmarks/templates/default/images/open_new.png">
+</file>
+<file name="plus.gif" url="bookmarks/templates/default/images/plus.gif">
+</file>
+<file name="plus.png" url="bookmarks/templates/default/images/plus.png">
+</file>
+<file name="prev.gif" url="bookmarks/templates/default/images/prev.gif">
+</file>
+<file name="prev.png" url="bookmarks/templates/default/images/prev.png">
+</file>
+<file name="save.gif" url="bookmarks/templates/default/images/save.gif">
+</file>
+<file name="save.png" url="bookmarks/templates/default/images/save.png">
+</file>
+<file name="search.gif" url="bookmarks/templates/default/images/search.gif">
+</file>
+<file name="search.png" url="bookmarks/templates/default/images/search.png">
+</file>
+<file name="tree.gif" url="bookmarks/templates/default/images/tree.gif">
+</file>
+<file name="tree.png" url="bookmarks/templates/default/images/tree.png">
+</file>
+<file name="tree_collapse.gif"
url="bookmarks/templates/default/images/tree_collapse.gif">
+</file>
+<file name="tree_collapse.png"
url="bookmarks/templates/default/images/tree_collapse.png">
+</file>
+<file name="tree_expand.gif"
url="bookmarks/templates/default/images/tree_expand.gif">
+</file>
+<file name="tree_expand.png"
url="bookmarks/templates/default/images/tree_expand.png">
+</file>
+<file name="tree_space.gif"
url="bookmarks/templates/default/images/tree_space.gif">
+</file>
+<file name="tree_space.png"
url="bookmarks/templates/default/images/tree_space.png">
+</file>
+<file name="user.gif" url="bookmarks/templates/default/images/user.gif">
+</file>
+<file name="user.png" url="bookmarks/templates/default/images/user.png">
+</file>
+<file name="x.gif" url="bookmarks/templates/default/images/x.gif">
+</file>
+<file name="x.png" url="bookmarks/templates/default/images/x.png">
+</file>
+</folder>
+</folder>
+<folder name="export" url="bookmarks/templates/export">
+<file name="export_ns.tpl" url="bookmarks/templates/export/export_ns.tpl">
+</file>
+<file name="export_ns_catlist.tpl"
url="bookmarks/templates/export/export_ns_catlist.tpl">
+</file>
+<file name="export_xbel.tpl" url="bookmarks/templates/export/export_xbel.tpl">
+</file>
+<file name="export_xbel_catlist.tpl"
url="bookmarks/templates/export/export_xbel_catlist.tpl">
+</file>
+</folder>
+<folder name="idots" url="bookmarks/templates/idots">
+<folder name="images" url="bookmarks/templates/idots/images">
+<file name="navbar.png" url="bookmarks/templates/idots/images/navbar.png">
+</file>
+</folder>
+</folder>
+<folder name="idsociety" url="bookmarks/templates/idsociety">
+<folder name="images" url="bookmarks/templates/idsociety/images">
+<file name="bar-0.jpg" url="bookmarks/templates/idsociety/images/bar-0.jpg">
+</file>
+<file name="bar-1.jpg" url="bookmarks/templates/idsociety/images/bar-1.jpg">
+</file>
+<file name="bar-10.jpg" url="bookmarks/templates/idsociety/images/bar-10.jpg">
+</file>
+<file name="bar-2.jpg" url="bookmarks/templates/idsociety/images/bar-2.jpg">
+</file>
+<file name="bar-3.jpg" url="bookmarks/templates/idsociety/images/bar-3.jpg">
+</file>
+<file name="bar-4.jpg" url="bookmarks/templates/idsociety/images/bar-4.jpg">
+</file>
+<file name="bar-5.jpg" url="bookmarks/templates/idsociety/images/bar-5.jpg">
+</file>
+<file name="bar-6.jpg" url="bookmarks/templates/idsociety/images/bar-6.jpg">
+</file>
+<file name="bar-7.jpg" url="bookmarks/templates/idsociety/images/bar-7.jpg">
+</file>
+<file name="bar-8.jpg" url="bookmarks/templates/idsociety/images/bar-8.jpg">
+</file>
+<file name="bar-9.jpg" url="bookmarks/templates/idsociety/images/bar-9.jpg">
+</file>
+<file name="blank.gif" url="bookmarks/templates/idsociety/images/blank.gif">
+</file>
+<file name="blank.png" url="bookmarks/templates/idsociety/images/blank.png">
+</file>
+<file name="cancel.gif" url="bookmarks/templates/idsociety/images/cancel.gif">
+</file>
+<file name="cancel.png" url="bookmarks/templates/idsociety/images/cancel.png">
+</file>
+<file name="closed.gif" url="bookmarks/templates/idsociety/images/closed.gif">
+</file>
+<file name="closed.png" url="bookmarks/templates/idsociety/images/closed.png">
+</file>
+<file name="closed_new.gif"
url="bookmarks/templates/idsociety/images/closed_new.gif">
+</file>
+<file name="closed_new.png"
url="bookmarks/templates/idsociety/images/closed_new.png">
+</file>
+<file name="create.gif" url="bookmarks/templates/idsociety/images/create.gif">
+</file>
+<file name="create.png" url="bookmarks/templates/idsociety/images/create.png">
+</file>
+<file name="delete.gif" url="bookmarks/templates/idsociety/images/delete.gif">
+</file>
+<file name="delete.png" url="bookmarks/templates/idsociety/images/delete.png">
+</file>
+<file name="document.gif"
url="bookmarks/templates/idsociety/images/document.gif">
+</file>
+<file name="document.png"
url="bookmarks/templates/idsociety/images/document.png">
+</file>
+<file name="document_new.gif"
url="bookmarks/templates/idsociety/images/document_new.gif">
+</file>
+<file name="document_new.png"
url="bookmarks/templates/idsociety/images/document_new.png">
+</file>
+<file name="edit.gif" url="bookmarks/templates/idsociety/images/edit.gif">
+</file>
+<file name="edit.png" url="bookmarks/templates/idsociety/images/edit.png">
+</file>
+<file name="first.gif" url="bookmarks/templates/idsociety/images/first.gif">
+</file>
+<file name="first.png" url="bookmarks/templates/idsociety/images/first.png">
+</file>
+<file name="help.gif" url="bookmarks/templates/idsociety/images/help.gif">
+</file>
+<file name="help.png" url="bookmarks/templates/idsociety/images/help.png">
+</file>
+<file name="home.gif" url="bookmarks/templates/idsociety/images/home.gif">
+</file>
+<file name="home.png" url="bookmarks/templates/idsociety/images/home.png">
+</file>
+<file name="last.gif" url="bookmarks/templates/idsociety/images/last.gif">
+</file>
+<file name="last.png" url="bookmarks/templates/idsociety/images/last.png">
+</file>
+<file name="list.gif" url="bookmarks/templates/idsociety/images/list.gif">
+</file>
+<file name="list.png" url="bookmarks/templates/idsociety/images/list.png">
+</file>
+<file name="login.gif" url="bookmarks/templates/idsociety/images/login.gif">
+</file>
+<file name="login.png" url="bookmarks/templates/idsociety/images/login.png">
+</file>
+<file name="logout.gif" url="bookmarks/templates/idsociety/images/logout.gif">
+</file>
+<file name="logout.png" url="bookmarks/templates/idsociety/images/logout.png">
+</file>
+<file name="mail.gif" url="bookmarks/templates/idsociety/images/mail.gif">
+</file>
+<file name="mail.png" url="bookmarks/templates/idsociety/images/mail.png">
+</file>
+<file name="maximize.gif"
url="bookmarks/templates/idsociety/images/maximize.gif">
+</file>
+<file name="maximize.png"
url="bookmarks/templates/idsociety/images/maximize.png">
+</file>
+<file name="minimize.gif"
url="bookmarks/templates/idsociety/images/minimize.gif">
+</file>
+<file name="minimize.png"
url="bookmarks/templates/idsociety/images/minimize.png">
+</file>
+<file name="minus.gif" url="bookmarks/templates/idsociety/images/minus.gif">
+</file>
+<file name="minus.png" url="bookmarks/templates/idsociety/images/minus.png">
+</file>
+<file name="navbar-over.gif"
url="bookmarks/templates/idsociety/images/navbar-over.gif">
+</file>
+<file name="navbar-over.png"
url="bookmarks/templates/idsociety/images/navbar-over.png">
+</file>
+<file name="navbar.gif" url="bookmarks/templates/idsociety/images/navbar.gif">
+</file>
+<file name="navbar.png" url="bookmarks/templates/idsociety/images/navbar.png">
+</file>
+<file name="next.gif" url="bookmarks/templates/idsociety/images/next.gif">
+</file>
+<file name="next.png" url="bookmarks/templates/idsociety/images/next.png">
+</file>
+<file name="open.gif" url="bookmarks/templates/idsociety/images/open.gif">
+</file>
+<file name="open.png" url="bookmarks/templates/idsociety/images/open.png">
+</file>
+<file name="open_new.gif"
url="bookmarks/templates/idsociety/images/open_new.gif">
+</file>
+<file name="open_new.png"
url="bookmarks/templates/idsociety/images/open_new.png">
+</file>
+<file name="plus.gif" url="bookmarks/templates/idsociety/images/plus.gif">
+</file>
+<file name="plus.png" url="bookmarks/templates/idsociety/images/plus.png">
+</file>
+<file name="prev.gif" url="bookmarks/templates/idsociety/images/prev.gif">
+</file>
+<file name="prev.png" url="bookmarks/templates/idsociety/images/prev.png">
+</file>
+<file name="save.gif" url="bookmarks/templates/idsociety/images/save.gif">
+</file>
+<file name="save.png" url="bookmarks/templates/idsociety/images/save.png">
+</file>
+<file name="search.gif" url="bookmarks/templates/idsociety/images/search.gif">
+</file>
+<file name="search.png" url="bookmarks/templates/idsociety/images/search.png">
+</file>
+<file name="tree.gif" url="bookmarks/templates/idsociety/images/tree.gif">
+</file>
+<file name="tree.png" url="bookmarks/templates/idsociety/images/tree.png">
+</file>
+<file name="tree_collapse.gif"
url="bookmarks/templates/idsociety/images/tree_collapse.gif">
+</file>
+<file name="tree_collapse.png"
url="bookmarks/templates/idsociety/images/tree_collapse.png">
+</file>
+<file name="tree_end.gif"
url="bookmarks/templates/idsociety/images/tree_end.gif">
+</file>
+<file name="tree_end.png"
url="bookmarks/templates/idsociety/images/tree_end.png">
+</file>
+<file name="tree_expand.gif"
url="bookmarks/templates/idsociety/images/tree_expand.gif">
+</file>
+<file name="tree_expand.png"
url="bookmarks/templates/idsociety/images/tree_expand.png">
+</file>
+<file name="tree_leaf.gif"
url="bookmarks/templates/idsociety/images/tree_leaf.gif">
+</file>
+<file name="tree_leaf.png"
url="bookmarks/templates/idsociety/images/tree_leaf.png">
+</file>
+<file name="tree_space.gif"
url="bookmarks/templates/idsociety/images/tree_space.gif">
+</file>
+<file name="tree_space.png"
url="bookmarks/templates/idsociety/images/tree_space.png">
+</file>
+<file name="tree_split.gif"
url="bookmarks/templates/idsociety/images/tree_split.gif">
+</file>
+<file name="tree_split.png"
url="bookmarks/templates/idsociety/images/tree_split.png">
+</file>
+<file name="tree_vertline.gif"
url="bookmarks/templates/idsociety/images/tree_vertline.gif">
+</file>
+<file name="tree_vertline.png"
url="bookmarks/templates/idsociety/images/tree_vertline.png">
+</file>
+<file name="user.gif" url="bookmarks/templates/idsociety/images/user.gif">
+</file>
+<file name="user.png" url="bookmarks/templates/idsociety/images/user.png">
+</file>
+<file name="x.gif" url="bookmarks/templates/idsociety/images/x.gif">
+</file>
+<file name="x.png" url="bookmarks/templates/idsociety/images/x.png">
+</file>
+</folder>
+</folder>
+<folder name="probusiness" url="bookmarks/templates/probusiness">
+<folder name="images" url="bookmarks/templates/probusiness/images">
+<file name="navbar.png"
url="bookmarks/templates/probusiness/images/navbar.png">
+</file>
+<file name="folder.png"
url="bookmarks/templates/probusiness/images/folder.png">
+</file>
+</folder>
+</folder>
+</folder>
+</folder>
+<folder name="calendar">
+<preference-set id="">
+ <string id="import_dirname">Q:\public_html\phpgw_0_9_16\calendar</string>
+</preference-set>
+<file name="ical.php" url="calendar/ical.php">
+</file>
+<file name="index.php" url="calendar/index.php">
+</file>
+<file name="preferences.php" url="calendar/preferences.php">
+</file>
+<folder name="doc" url="calendar/doc">
+<file name="rfc2445.txt" url="calendar/doc/rfc2445.txt">
+</file>
+</folder>
+<folder name="help" url="calendar/help">
+<file name="index.php" url="calendar/help/index.php">
+</file>
+<folder name="DE" url="calendar/help/DE">
+<file name="calendar.php" url="calendar/help/DE/calendar.php">
+</file>
+<file name="add.php" url="calendar/help/DE/add.php">
+</file>
+<file name="edit_delete.php" url="calendar/help/DE/edit_delete.php">
+</file>
+<file name="view.php" url="calendar/help/DE/view.php">
+</file>
+</folder>
+<folder name="EN" url="calendar/help/EN">
+<file name="calendar.php" url="calendar/help/EN/calendar.php">
+</file>
+<file name="add.php" url="calendar/help/EN/add.php">
+</file>
+<file name="edit_delete.php" url="calendar/help/EN/edit_delete.php">
+</file>
+<file name="view.php" url="calendar/help/EN/view.php">
+</file>
+</folder>
+<folder name="FI" url="calendar/help/FI">
+<file name="calendar.php" url="calendar/help/FI/calendar.php">
+</file>
+<file name="add.php" url="calendar/help/FI/add.php">
+</file>
+<file name="edit_delete.php" url="calendar/help/FI/edit_delete.php">
+</file>
+<file name="view.php" url="calendar/help/FI/view.php">
+</file>
+</folder>
+<folder name="JA" url="calendar/help/JA">
+<file name="calendar.php" url="calendar/help/JA/calendar.php">
+</file>
+<file name="add.php" url="calendar/help/JA/add.php">
+</file>
+<file name="edit_delete.php" url="calendar/help/JA/edit_delete.php">
+</file>
+<file name="view.php" url="calendar/help/JA/view.php">
+</file>
+</folder>
+</folder>
+<folder name="inc" url="calendar/inc">
+<file name="class.boalarm.inc.php" url="calendar/inc/class.boalarm.inc.php">
+</file>
+<file name="class.bocalendar.inc.php"
url="calendar/inc/class.bocalendar.inc.php">
+</file>
+<file name="class.bocustom_fields.inc.php"
url="calendar/inc/class.bocustom_fields.inc.php">
+</file>
+<file name="class.boholiday.inc.php"
url="calendar/inc/class.boholiday.inc.php">
+</file>
+<file name="class.boicalendar.inc.php"
url="calendar/inc/class.boicalendar.inc.php">
+</file>
+<file name="class.calendar_holiday.inc.php"
url="calendar/inc/class.calendar_holiday.inc.php">
+</file>
+<file name="class.calendar_icap.inc.php"
url="calendar/inc/class.calendar_icap.inc.php">
+</file>
+<file name="class.holidaycalc.inc.php"
url="calendar/inc/class.holidaycalc.inc.php">
+</file>
+<file name="class.holidaycalc_JP.inc.php"
url="calendar/inc/class.holidaycalc_JP.inc.php">
+</file>
+<file name="class.holidaycalc_US.inc.php"
url="calendar/inc/class.holidaycalc_US.inc.php">
+</file>
+<file name="class.html.inc.php" url="calendar/inc/class.html.inc.php">
+</file>
+<file name="class.socalendar.inc.php"
url="calendar/inc/class.socalendar.inc.php">
+</file>
+<file name="class.socalendar_.inc.php"
url="calendar/inc/class.socalendar_.inc.php">
+</file>
+<file name="class.socalendar__.inc.php"
url="calendar/inc/class.socalendar__.inc.php">
+</file>
+<file name="class.socalendar_sql.inc.php"
url="calendar/inc/class.socalendar_sql.inc.php">
+</file>
+<file name="class.soholiday.inc.php"
url="calendar/inc/class.soholiday.inc.php">
+</file>
+<file name="class.uialarm.inc.php" url="calendar/inc/class.uialarm.inc.php">
+</file>
+<file name="class.uicalendar.inc.php"
url="calendar/inc/class.uicalendar.inc.php">
+</file>
+<file name="class.uicustom_fields.inc.php"
url="calendar/inc/class.uicustom_fields.inc.php">
+</file>
+<file name="class.uiholiday.inc.php"
url="calendar/inc/class.uiholiday.inc.php">
+</file>
+<file name="class.uiicalendar.inc.php"
url="calendar/inc/class.uiicalendar.inc.php">
+</file>
+<file name="events.ics" url="calendar/inc/events.ics">
+</file>
+<file name="hook_add_def_pref.inc.php"
url="calendar/inc/hook_add_def_pref.inc.php">
+</file>
+<file name="hook_admin.inc.php" url="calendar/inc/hook_admin.inc.php">
+</file>
+<file name="hook_deleteaccount.inc.php"
url="calendar/inc/hook_deleteaccount.inc.php">
+</file>
+<file name="hook_email.inc.php" url="calendar/inc/hook_email.inc.php">
+</file>
+<file name="hook_home.inc.php" url="calendar/inc/hook_home.inc.php">
+</file>
+<file name="hook_home_day.inc.php" url="calendar/inc/hook_home_day.inc.php">
+</file>
+<file name="hook_home_month.inc.php"
url="calendar/inc/hook_home_month.inc.php">
+</file>
+<file name="hook_home_planner.inc.php"
url="calendar/inc/hook_home_planner.inc.php">
+</file>
+<file name="hook_home_week.inc.php" url="calendar/inc/hook_home_week.inc.php">
+</file>
+<file name="hook_home_year.inc.php" url="calendar/inc/hook_home_year.inc.php">
+</file>
+<file name="hook_manual.inc.php" url="calendar/inc/hook_manual.inc.php">
+</file>
+<file name="hook_preferences.inc.php"
url="calendar/inc/hook_preferences.inc.php">
+</file>
+<file name="hook_settings.inc.php" url="calendar/inc/hook_settings.inc.php">
+</file>
+<file name="hook_sidebox_menu.inc.php"
url="calendar/inc/hook_sidebox_menu.inc.php">
+</file>
+</folder>
+<folder name="phpgroupware.org" url="calendar/phpgroupware.org">
+<file name="accept_holiday.php"
url="calendar/phpgroupware.org/accept_holiday.php">
+</file>
+<file name="holidays.AT.txt" url="calendar/phpgroupware.org/holidays.AT.txt">
+</file>
+<file name="holidays.AU.txt" url="calendar/phpgroupware.org/holidays.AU.txt">
+</file>
+<file name="holidays.BE.txt" url="calendar/phpgroupware.org/holidays.BE.txt">
+</file>
+<file name="holidays.BR.txt" url="calendar/phpgroupware.org/holidays.BR.txt">
+</file>
+<file name="holidays.BW.txt" url="calendar/phpgroupware.org/holidays.BW.txt">
+</file>
+<file name="holidays.CA.txt" url="calendar/phpgroupware.org/holidays.CA.txt">
+</file>
+<file name="holidays.CH.txt" url="calendar/phpgroupware.org/holidays.CH.txt">
+</file>
+<file name="holidays.CL.txt" url="calendar/phpgroupware.org/holidays.CL.txt">
+</file>
+<file name="holidays.CO.txt" url="calendar/phpgroupware.org/holidays.CO.txt">
+</file>
+<file name="holidays.CS.txt" url="calendar/phpgroupware.org/holidays.CS.txt">
+</file>
+<file name="holidays.CZ.txt" url="calendar/phpgroupware.org/holidays.CZ.txt">
+</file>
+<file name="holidays.DE.txt" url="calendar/phpgroupware.org/holidays.DE.txt">
+</file>
+<file name="holidays.EC.txt" url="calendar/phpgroupware.org/holidays.EC.txt">
+</file>
+<file name="holidays.EE.txt" url="calendar/phpgroupware.org/holidays.EE.txt">
+</file>
+<file name="holidays.ES.txt" url="calendar/phpgroupware.org/holidays.ES.txt">
+</file>
+<file name="holidays.FI.txt" url="calendar/phpgroupware.org/holidays.FI.txt">
+</file>
+<file name="holidays.FR.txt" url="calendar/phpgroupware.org/holidays.FR.txt">
+</file>
+<file name="holidays.GE.txt" url="calendar/phpgroupware.org/holidays.GE.txt">
+</file>
+<file name="holidays.HK.txt" url="calendar/phpgroupware.org/holidays.HK.txt">
+</file>
+<file name="holidays.HU.txt" url="calendar/phpgroupware.org/holidays.HU.txt">
+</file>
+<file name="holidays.ID.txt" url="calendar/phpgroupware.org/holidays.ID.txt">
+</file>
+<file name="holidays.IE.txt" url="calendar/phpgroupware.org/holidays.IE.txt">
+</file>
+<file name="holidays.IN.txt" url="calendar/phpgroupware.org/holidays.IN.txt">
+</file>
+<file name="holidays.IT.txt" url="calendar/phpgroupware.org/holidays.IT.txt">
+</file>
+<file name="holidays.JA.txt" url="calendar/phpgroupware.org/holidays.JA.txt">
+</file>
+<file name="holidays.JM.txt" url="calendar/phpgroupware.org/holidays.JM.txt">
+</file>
+<file name="holidays.JP.txt" url="calendar/phpgroupware.org/holidays.JP.txt">
+</file>
+<file name="holidays.KO.txt" url="calendar/phpgroupware.org/holidays.KO.txt">
+</file>
+<file name="holidays.KR.txt" url="calendar/phpgroupware.org/holidays.KR.txt">
+</file>
+<file name="holidays.LT.txt" url="calendar/phpgroupware.org/holidays.LT.txt">
+</file>
+<file name="holidays.MS.txt" url="calendar/phpgroupware.org/holidays.MS.txt">
+</file>
+<file name="holidays.MT.txt" url="calendar/phpgroupware.org/holidays.MT.txt">
+</file>
+<file name="holidays.MU.txt" url="calendar/phpgroupware.org/holidays.MU.txt">
+</file>
+<file name="holidays.MX.txt" url="calendar/phpgroupware.org/holidays.MX.txt">
+</file>
+<file name="holidays.MY.txt" url="calendar/phpgroupware.org/holidays.MY.txt">
+</file>
+<file name="holidays.NL.txt" url="calendar/phpgroupware.org/holidays.NL.txt">
+</file>
+<file name="holidays.NO.txt" url="calendar/phpgroupware.org/holidays.NO.txt">
+</file>
+<file name="holidays.NZ.txt" url="calendar/phpgroupware.org/holidays.NZ.txt">
+</file>
+<file name="holidays.PH.txt" url="calendar/phpgroupware.org/holidays.PH.txt">
+</file>
+<file name="holidays.PL.txt" url="calendar/phpgroupware.org/holidays.PL.txt">
+</file>
+<file name="holidays.PT.txt" url="calendar/phpgroupware.org/holidays.PT.txt">
+</file>
+<file name="holidays.RE.txt" url="calendar/phpgroupware.org/holidays.RE.txt">
+</file>
+<file name="holidays.RF.txt" url="calendar/phpgroupware.org/holidays.RF.txt">
+</file>
+<file name="holidays.RJ.txt" url="calendar/phpgroupware.org/holidays.RJ.txt">
+</file>
+<file name="holidays.RU.txt" url="calendar/phpgroupware.org/holidays.RU.txt">
+</file>
+<file name="holidays.SA.txt" url="calendar/phpgroupware.org/holidays.SA.txt">
+</file>
+<file name="holidays.SE.txt" url="calendar/phpgroupware.org/holidays.SE.txt">
+</file>
+<file name="holidays.SG.txt" url="calendar/phpgroupware.org/holidays.SG.txt">
+</file>
+<file name="holidays.SK.txt" url="calendar/phpgroupware.org/holidays.SK.txt">
+</file>
+<file name="holidays.SP.txt" url="calendar/phpgroupware.org/holidays.SP.txt">
+</file>
+<file name="holidays.TH.txt" url="calendar/phpgroupware.org/holidays.TH.txt">
+</file>
+<file name="holidays.TR.txt" url="calendar/phpgroupware.org/holidays.TR.txt">
+</file>
+<file name="holidays.TW.txt" url="calendar/phpgroupware.org/holidays.TW.txt">
+</file>
+<file name="holidays.UK.txt" url="calendar/phpgroupware.org/holidays.UK.txt">
+</file>
+<file name="holidays.US.txt" url="calendar/phpgroupware.org/holidays.US.txt">
+</file>
+<file name="holidays.XC.txt" url="calendar/phpgroupware.org/holidays.XC.txt">
+</file>
+<file name="holidays.ZA.txt" url="calendar/phpgroupware.org/holidays.ZA.txt">
+</file>
+<file name="holidays.ZH.txt" url="calendar/phpgroupware.org/holidays.ZH.txt">
+</file>
+<file name="secure-holidays.sh"
url="calendar/phpgroupware.org/secure-holidays.sh">
+</file>
+</folder>
+<folder name="setup" url="calendar/setup">
+<file name="phpgw_br.lang" url="calendar/setup/phpgw_br.lang">
+</file>
+<file name="phpgw_cs.lang" url="calendar/setup/phpgw_cs.lang">
+</file>
+<file name="phpgw_da.lang" url="calendar/setup/phpgw_da.lang">
+</file>
+<file name="phpgw_de.lang" url="calendar/setup/phpgw_de.lang">
+</file>
+<file name="phpgw_en.lang" url="calendar/setup/phpgw_en.lang">
+</file>
+<file name="phpgw_es.lang" url="calendar/setup/phpgw_es.lang">
+</file>
+<file name="phpgw_fi.lang" url="calendar/setup/phpgw_fi.lang">
+</file>
+<file name="phpgw_fr.lang" url="calendar/setup/phpgw_fr.lang">
+</file>
+<file name="phpgw_hu.lang" url="calendar/setup/phpgw_hu.lang">
+</file>
+<file name="phpgw_it.lang" url="calendar/setup/phpgw_it.lang">
+</file>
+<file name="phpgw_ja.lang" url="calendar/setup/phpgw_ja.lang">
+</file>
+<file name="phpgw_ko.lang" url="calendar/setup/phpgw_ko.lang">
+</file>
+<file name="phpgw_nl.lang" url="calendar/setup/phpgw_nl.lang">
+</file>
+<file name="phpgw_no.lang" url="calendar/setup/phpgw_no.lang">
+</file>
+<file name="phpgw_pl.lang" url="calendar/setup/phpgw_pl.lang">
+</file>
+<file name="phpgw_pt.lang" url="calendar/setup/phpgw_pt.lang">
+</file>
+<file name="phpgw_sv.lang" url="calendar/setup/phpgw_sv.lang">
+</file>
+<file name="phpgw_zh.lang" url="calendar/setup/phpgw_zh.lang">
+</file>
+<file name="phpgw_zt.lang" url="calendar/setup/phpgw_zt.lang">
+</file>
+<file name="setup.inc.php" url="calendar/setup/setup.inc.php">
+</file>
+<file name="tables_baseline.inc.php"
url="calendar/setup/tables_baseline.inc.php">
+</file>
+<file name="tables_current.inc.php"
url="calendar/setup/tables_current.inc.php">
+</file>
+<file name="tables_update.inc.php" url="calendar/setup/tables_update.inc.php">
+</file>
+</folder>
+<folder name="templates" url="calendar/templates">
+<folder name="default" url="calendar/templates/default">
+<file name="alarm.tpl" url="calendar/templates/default/alarm.tpl">
+</file>
+<file name="config.tpl" url="calendar/templates/default/config.tpl">
+</file>
+<file name="csv_import.tpl" url="calendar/templates/default/csv_import.tpl">
+</file>
+<file name="custom_fields.tpl"
url="calendar/templates/default/custom_fields.tpl">
+</file>
+<file name="day.tpl" url="calendar/templates/default/day.tpl">
+</file>
+<file name="day_cal.tpl" url="calendar/templates/default/day_cal.tpl">
+</file>
+<file name="delete_common.tpl"
url="calendar/templates/default/delete_common.tpl">
+</file>
+<file name="edit.tpl" url="calendar/templates/default/edit.tpl">
+</file>
+<file name="footer.tpl" url="calendar/templates/default/footer.tpl">
+</file>
+<file name="form_button_dropdown.tpl"
url="calendar/templates/default/form_button_dropdown.tpl">
+</file>
+<file name="form_button_script.tpl"
url="calendar/templates/default/form_button_script.tpl">
+</file>
+<file name="head.tpl" url="calendar/templates/default/head.tpl">
+</file>
+<file name="header.inc.php" url="calendar/templates/default/header.inc.php">
+</file>
+<file name="holiday.tpl" url="calendar/templates/default/holiday.tpl">
+</file>
+<file name="hr.tpl" url="calendar/templates/default/hr.tpl">
+</file>
+<file name="index.tpl" url="calendar/templates/default/index.tpl">
+</file>
+<file name="link_pict.tpl" url="calendar/templates/default/link_pict.tpl">
+</file>
+<file name="list.tpl" url="calendar/templates/default/list.tpl">
+</file>
+<file name="locales.tpl" url="calendar/templates/default/locales.tpl">
+</file>
+<file name="matrix_query.tpl"
url="calendar/templates/default/matrix_query.tpl">
+</file>
+<file name="mini_cal.tpl" url="calendar/templates/default/mini_cal.tpl">
+</file>
+<file name="month.tpl" url="calendar/templates/default/month.tpl">
+</file>
+<file name="month_column.tpl"
url="calendar/templates/default/month_column.tpl">
+</file>
+<file name="month_day.tpl" url="calendar/templates/default/month_day.tpl">
+</file>
+<file name="month_header.tpl"
url="calendar/templates/default/month_header.tpl">
+</file>
+<file name="overlap.tpl" url="calendar/templates/default/overlap.tpl">
+</file>
+<file name="pref.tpl" url="calendar/templates/default/pref.tpl">
+</file>
+<file name="preference_acl.tpl"
url="calendar/templates/default/preference_acl.tpl">
+</file>
+<file name="preference_acl_row.tpl"
url="calendar/templates/default/preference_acl_row.tpl">
+</file>
+<file name="preference_colspan.tpl"
url="calendar/templates/default/preference_colspan.tpl">
+</file>
+<file name="search.tpl" url="calendar/templates/default/search.tpl">
+</file>
+<file name="vcal_import.tpl" url="calendar/templates/default/vcal_import.tpl">
+</file>
+<file name="view.tpl" url="calendar/templates/default/view.tpl">
+</file>
+<file name="week.tpl" url="calendar/templates/default/week.tpl">
+</file>
+<file name="year.tpl" url="calendar/templates/default/year.tpl">
+</file>
+<folder name="images" url="calendar/templates/default/images">
+<file name="alarm.gif" url="calendar/templates/default/images/alarm.gif">
+</file>
+<file name="alarm.png" url="calendar/templates/default/images/alarm.png">
+</file>
+<file name="arrow.gif" url="calendar/templates/default/images/arrow.gif">
+</file>
+<file name="arrow.png" url="calendar/templates/default/images/arrow.png">
+</file>
+<file name="circle.gif" url="calendar/templates/default/images/circle.gif">
+</file>
+<file name="circle.png" url="calendar/templates/default/images/circle.png">
+</file>
+<file name="disabled.gif" url="calendar/templates/default/images/disabled.gif">
+</file>
+<file name="disabled.png" url="calendar/templates/default/images/disabled.png">
+</file>
+<file name="enabled.gif" url="calendar/templates/default/images/enabled.gif">
+</file>
+<file name="enabled.png" url="calendar/templates/default/images/enabled.png">
+</file>
+<file name="high.gif" url="calendar/templates/default/images/high.gif">
+</file>
+<file name="high.png" url="calendar/templates/default/images/high.png">
+</file>
+<file name="mini-calendar-bar.gif"
url="calendar/templates/default/images/mini-calendar-bar.gif">
+</file>
+<file name="mini-calendar-bar.png"
url="calendar/templates/default/images/mini-calendar-bar.png">
+</file>
+<file name="mini_day_block.gif"
url="calendar/templates/default/images/mini_day_block.gif">
+</file>
+<file name="mini_day_block.png"
url="calendar/templates/default/images/mini_day_block.png">
+</file>
+<file name="month.gif" url="calendar/templates/default/images/month.gif">
+</file>
+<file name="month.png" url="calendar/templates/default/images/month.png">
+</file>
+<file name="multi_1.gif" url="calendar/templates/default/images/multi_1.gif">
+</file>
+<file name="multi_1.png" url="calendar/templates/default/images/multi_1.png">
+</file>
+<file name="multi_3.gif" url="calendar/templates/default/images/multi_3.gif">
+</file>
+<file name="multi_3.png" url="calendar/templates/default/images/multi_3.png">
+</file>
+<file name="navbar.gif" url="calendar/templates/default/images/navbar.gif">
+</file>
+<file name="navbar.png" url="calendar/templates/default/images/navbar.png">
+</file>
+<file name="new.gif" url="calendar/templates/default/images/new.gif">
+</file>
+<file name="new.png" url="calendar/templates/default/images/new.png">
+</file>
+<file name="pix.gif" url="calendar/templates/default/images/pix.gif">
+</file>
+<file name="pix.png" url="calendar/templates/default/images/pix.png">
+</file>
+<file name="planner.gif" url="calendar/templates/default/images/planner.gif">
+</file>
+<file name="planner.png" url="calendar/templates/default/images/planner.png">
+</file>
+<file name="private.gif" url="calendar/templates/default/images/private.gif">
+</file>
+<file name="private.png" url="calendar/templates/default/images/private.png">
+</file>
+<file name="recur.gif" url="calendar/templates/default/images/recur.gif">
+</file>
+<file name="recur.png" url="calendar/templates/default/images/recur.png">
+</file>
+<file name="rpt.gif" url="calendar/templates/default/images/rpt.gif">
+</file>
+<file name="rpt.png" url="calendar/templates/default/images/rpt.png">
+</file>
+<file name="single.gif" url="calendar/templates/default/images/single.gif">
+</file>
+<file name="single.png" url="calendar/templates/default/images/single.png">
+</file>
+<file name="today.gif" url="calendar/templates/default/images/today.gif">
+</file>
+<file name="today.png" url="calendar/templates/default/images/today.png">
+</file>
+<file name="view.gif" url="calendar/templates/default/images/view.gif">
+</file>
+<file name="view.png" url="calendar/templates/default/images/view.png">
+</file>
+<file name="week.gif" url="calendar/templates/default/images/week.gif">
+</file>
+<file name="week.png" url="calendar/templates/default/images/week.png">
+</file>
+<file name="year.gif" url="calendar/templates/default/images/year.gif">
+</file>
+<file name="year.png" url="calendar/templates/default/images/year.png">
+</file>
+</folder>
+</folder>
+<folder name="idots" url="calendar/templates/idots">
+<file name="day.tpl" url="calendar/templates/idots/day.tpl">
+</file>
+<folder name="images" url="calendar/templates/idots/images">
+<file name="month.png" url="calendar/templates/idots/images/month.png">
+</file>
+<file name="navbar.png" url="calendar/templates/idots/images/navbar.png">
+</file>
+<file name="planner.png" url="calendar/templates/idots/images/planner.png">
+</file>
+<file name="today.png" url="calendar/templates/idots/images/today.png">
+</file>
+<file name="view.png" url="calendar/templates/idots/images/view.png">
+</file>
+<file name="week.png" url="calendar/templates/idots/images/week.png">
+</file>
+<file name="year.png" url="calendar/templates/idots/images/year.png">
+</file>
+</folder>
+</folder>
+<folder name="idsociety" url="calendar/templates/idsociety">
+<folder name="images" url="calendar/templates/idsociety/images">
+<file name="arrow.gif" url="calendar/templates/idsociety/images/arrow.gif">
+</file>
+<file name="arrow.png" url="calendar/templates/idsociety/images/arrow.png">
+</file>
+<file name="circle.gif" url="calendar/templates/idsociety/images/circle.gif">
+</file>
+<file name="circle.png" url="calendar/templates/idsociety/images/circle.png">
+</file>
+<file name="high.gif" url="calendar/templates/idsociety/images/high.gif">
+</file>
+<file name="high.png" url="calendar/templates/idsociety/images/high.png">
+</file>
+<file name="mini-calendar-bar.gif"
url="calendar/templates/idsociety/images/mini-calendar-bar.gif">
+</file>
+<file name="mini-calendar-bar.png"
url="calendar/templates/idsociety/images/mini-calendar-bar.png">
+</file>
+<file name="mini_day_block.gif"
url="calendar/templates/idsociety/images/mini_day_block.gif">
+</file>
+<file name="mini_day_block.png"
url="calendar/templates/idsociety/images/mini_day_block.png">
+</file>
+<file name="month.gif" url="calendar/templates/idsociety/images/month.gif">
+</file>
+<file name="month.png" url="calendar/templates/idsociety/images/month.png">
+</file>
+<file name="multi_1.gif" url="calendar/templates/idsociety/images/multi_1.gif">
+</file>
+<file name="multi_1.png" url="calendar/templates/idsociety/images/multi_1.png">
+</file>
+<file name="multi_3.gif" url="calendar/templates/idsociety/images/multi_3.gif">
+</file>
+<file name="multi_3.png" url="calendar/templates/idsociety/images/multi_3.png">
+</file>
+<file name="navbar-over.gif"
url="calendar/templates/idsociety/images/navbar-over.gif">
+</file>
+<file name="navbar-over.png"
url="calendar/templates/idsociety/images/navbar-over.png">
+</file>
+<file name="navbar.gif" url="calendar/templates/idsociety/images/navbar.gif">
+</file>
+<file name="navbar.png" url="calendar/templates/idsociety/images/navbar.png">
+</file>
+<file name="new.gif" url="calendar/templates/idsociety/images/new.gif">
+</file>
+<file name="new.png" url="calendar/templates/idsociety/images/new.png">
+</file>
+<file name="pix.gif" url="calendar/templates/idsociety/images/pix.gif">
+</file>
+<file name="pix.png" url="calendar/templates/idsociety/images/pix.png">
+</file>
+<file name="private.gif" url="calendar/templates/idsociety/images/private.gif">
+</file>
+<file name="private.png" url="calendar/templates/idsociety/images/private.png">
+</file>
+<file name="recur.gif" url="calendar/templates/idsociety/images/recur.gif">
+</file>
+<file name="recur.png" url="calendar/templates/idsociety/images/recur.png">
+</file>
+<file name="rpt.gif" url="calendar/templates/idsociety/images/rpt.gif">
+</file>
+<file name="rpt.png" url="calendar/templates/idsociety/images/rpt.png">
+</file>
+<file name="today.gif" url="calendar/templates/idsociety/images/today.gif">
+</file>
+<file name="today.png" url="calendar/templates/idsociety/images/today.png">
+</file>
+<file name="view.gif" url="calendar/templates/idsociety/images/view.gif">
+</file>
+<file name="view.png" url="calendar/templates/idsociety/images/view.png">
+</file>
+<file name="week.gif" url="calendar/templates/idsociety/images/week.gif">
+</file>
+<file name="week.png" url="calendar/templates/idsociety/images/week.png">
+</file>
+<file name="year.gif" url="calendar/templates/idsociety/images/year.gif">
+</file>
+<file name="year.png" url="calendar/templates/idsociety/images/year.png">
+</file>
+</folder>
+</folder>
+<folder name="probusiness" url="calendar/templates/probusiness">
+<file name="alarm.tpl" url="calendar/templates/probusiness/alarm.tpl">
+</file>
+<file name="config.tpl" url="calendar/templates/probusiness/config.tpl">
+</file>
+<file name="csv_import.tpl"
url="calendar/templates/probusiness/csv_import.tpl">
+</file>
+<file name="day.tpl" url="calendar/templates/probusiness/day.tpl">
+</file>
+<file name="day_cal.tpl" url="calendar/templates/probusiness/day_cal.tpl">
+</file>
+<file name="delete_common.tpl"
url="calendar/templates/probusiness/delete_common.tpl">
+</file>
+<file name="edit.tpl" url="calendar/templates/probusiness/edit.tpl">
+</file>
+<file name="footer.tpl" url="calendar/templates/probusiness/footer.tpl">
+</file>
+<file name="form_button_dropdown.tpl"
url="calendar/templates/probusiness/form_button_dropdown.tpl">
+</file>
+<file name="form_button_script.tpl"
url="calendar/templates/probusiness/form_button_script.tpl">
+</file>
+<file name="head.tpl" url="calendar/templates/probusiness/head.tpl">
+</file>
+<file name="header.inc.php"
url="calendar/templates/probusiness/header.inc.php">
+</file>
+<file name="holiday.tpl" url="calendar/templates/probusiness/holiday.tpl">
+</file>
+<file name="hr.tpl" url="calendar/templates/probusiness/hr.tpl">
+</file>
+<file name="index.tpl" url="calendar/templates/probusiness/index.tpl">
+</file>
+<file name="link_pict.tpl" url="calendar/templates/probusiness/link_pict.tpl">
+</file>
+<file name="list.tpl" url="calendar/templates/probusiness/list.tpl">
+</file>
+<file name="locales.tpl" url="calendar/templates/probusiness/locales.tpl">
+</file>
+<file name="matrix_query.tpl"
url="calendar/templates/probusiness/matrix_query.tpl">
+</file>
+<file name="mini_cal.tpl" url="calendar/templates/probusiness/mini_cal.tpl">
+</file>
+<file name="month.tpl" url="calendar/templates/probusiness/month.tpl">
+</file>
+<file name="month_column.tpl"
url="calendar/templates/probusiness/month_column.tpl">
+</file>
+<file name="month_day.tpl" url="calendar/templates/probusiness/month_day.tpl">
+</file>
+<file name="month_header.tpl"
url="calendar/templates/probusiness/month_header.tpl">
+</file>
+<file name="overlap.tpl" url="calendar/templates/probusiness/overlap.tpl">
+</file>
+<file name="pref.tpl" url="calendar/templates/probusiness/pref.tpl">
+</file>
+<file name="preference_acl.tpl"
url="calendar/templates/probusiness/preference_acl.tpl">
+</file>
+<file name="preference_acl_row.tpl"
url="calendar/templates/probusiness/preference_acl_row.tpl">
+</file>
+<file name="preference_colspan.tpl"
url="calendar/templates/probusiness/preference_colspan.tpl">
+</file>
+<file name="search.tpl" url="calendar/templates/probusiness/search.tpl">
+</file>
+<file name="vcal_import.tpl"
url="calendar/templates/probusiness/vcal_import.tpl">
+</file>
+<file name="view.tpl" url="calendar/templates/probusiness/view.tpl">
+</file>
+<file name="week.tpl" url="calendar/templates/probusiness/week.tpl">
+</file>
+<file name="year.tpl" url="calendar/templates/probusiness/year.tpl">
+</file>
+<folder name="images" url="calendar/templates/probusiness/images">
+<file name="alarm.gif" url="calendar/templates/probusiness/images/alarm.gif">
+</file>
+<file name="alarm.png" url="calendar/templates/probusiness/images/alarm.png">
+</file>
+<file name="arrow.gif" url="calendar/templates/probusiness/images/arrow.gif">
+</file>
+<file name="arrow.png" url="calendar/templates/probusiness/images/arrow.png">
+</file>
+<file name="circle.gif" url="calendar/templates/probusiness/images/circle.gif">
+</file>
+<file name="circle.png" url="calendar/templates/probusiness/images/circle.png">
+</file>
+<file name="disabled.gif"
url="calendar/templates/probusiness/images/disabled.gif">
+</file>
+<file name="disabled.png"
url="calendar/templates/probusiness/images/disabled.png">
+</file>
+<file name="enabled.gif"
url="calendar/templates/probusiness/images/enabled.gif">
+</file>
+<file name="enabled.png"
url="calendar/templates/probusiness/images/enabled.png">
+</file>
+<file name="high.gif" url="calendar/templates/probusiness/images/high.gif">
+</file>
+<file name="high.png" url="calendar/templates/probusiness/images/high.png">
+</file>
+<file name="mini-calendar-bar.gif"
url="calendar/templates/probusiness/images/mini-calendar-bar.gif">
+</file>
+<file name="mini-calendar-bar.png"
url="calendar/templates/probusiness/images/mini-calendar-bar.png">
+</file>
+<file name="mini_day_block.gif"
url="calendar/templates/probusiness/images/mini_day_block.gif">
+</file>
+<file name="mini_day_block.png"
url="calendar/templates/probusiness/images/mini_day_block.png">
+</file>
+<file name="month.gif" url="calendar/templates/probusiness/images/month.gif">
+</file>
+<file name="month.png" url="calendar/templates/probusiness/images/month.png">
+</file>
+<file name="multi_1.gif"
url="calendar/templates/probusiness/images/multi_1.gif">
+</file>
+<file name="multi_1.png"
url="calendar/templates/probusiness/images/multi_1.png">
+</file>
+<file name="multi_3.gif"
url="calendar/templates/probusiness/images/multi_3.gif">
+</file>
+<file name="multi_3.png"
url="calendar/templates/probusiness/images/multi_3.png">
+</file>
+<file name="navbar.png" url="calendar/templates/probusiness/images/navbar.png">
+</file>
+<file name="new.gif" url="calendar/templates/probusiness/images/new.gif">
+</file>
+<file name="new.png" url="calendar/templates/probusiness/images/new.png">
+</file>
+<file name="pix.gif" url="calendar/templates/probusiness/images/pix.gif">
+</file>
+<file name="pix.png" url="calendar/templates/probusiness/images/pix.png">
+</file>
+<file name="planner.gif"
url="calendar/templates/probusiness/images/planner.gif">
+</file>
+<file name="planner.png"
url="calendar/templates/probusiness/images/planner.png">
+</file>
+<file name="private.gif"
url="calendar/templates/probusiness/images/private.gif">
+</file>
+<file name="private.png"
url="calendar/templates/probusiness/images/private.png">
+</file>
+<file name="recur.gif" url="calendar/templates/probusiness/images/recur.gif">
+</file>
+<file name="recur.png" url="calendar/templates/probusiness/images/recur.png">
+</file>
+<file name="rpt.gif" url="calendar/templates/probusiness/images/rpt.gif">
+</file>
+<file name="rpt.png" url="calendar/templates/probusiness/images/rpt.png">
+</file>
+<file name="single.gif" url="calendar/templates/probusiness/images/single.gif">
+</file>
+<file name="single.png" url="calendar/templates/probusiness/images/single.png">
+</file>
+<file name="today.gif" url="calendar/templates/probusiness/images/today.gif">
+</file>
+<file name="today.png" url="calendar/templates/probusiness/images/today.png">
+</file>
+<file name="view.gif" url="calendar/templates/probusiness/images/view.gif">
+</file>
+<file name="view.png" url="calendar/templates/probusiness/images/view.png">
+</file>
+<file name="week.gif" url="calendar/templates/probusiness/images/week.gif">
+</file>
+<file name="week.png" url="calendar/templates/probusiness/images/week.png">
+</file>
+<file name="year.gif" url="calendar/templates/probusiness/images/year.gif">
+</file>
+<file name="year.png" url="calendar/templates/probusiness/images/year.png">
+</file>
+<file name="folders.png"
url="calendar/templates/probusiness/images/folders.png">
+</file>
+</folder>
+</folder>
+</folder>
+</folder>
+<folder name="email">
+<preference-set id="">
+ <string id="import_dirname">Q:\public_html\phpgw_0_9_16\email</string>
+</preference-set>
+<file name="addressbook-js.php" url="email/addressbook-js.php">
+</file>
+<file name="addressbook.php" url="email/addressbook.php">
+</file>
+<file name="attach_file.php" url="email/attach_file.php">
+</file>
+<file name="compose.php" url="email/compose.php">
+</file>
+<file name="index.php" url="email/index.php">
+</file>
+<file name="view_image.php" url="email/view_image.php">
+</file>
+<folder name="doc" url="email/doc">
+<file name="FAQ.txt" url="email/doc/FAQ.txt">
+</file>
+<file name="copyright.gpl" url="email/doc/copyright.gpl">
+</file>
+</folder>
+<folder name="help" url="email/help">
+<file name="index.php" url="email/help/index.php">
+</file>
+</folder>
+<folder name="inc" url="email/inc">
+<file name="class.boaction.inc.php" url="email/inc/class.boaction.inc.php">
+</file>
+<file name="class.boattach_file.inc.php"
url="email/inc/class.boattach_file.inc.php">
+</file>
+<file name="class.bocompose.inc.php" url="email/inc/class.bocompose.inc.php">
+</file>
+<file name="class.bofilters.inc.php" url="email/inc/class.bofilters.inc.php">
+</file>
+<file name="class.bofolder.inc.php" url="email/inc/class.bofolder.inc.php">
+</file>
+<file name="class.boindex.inc.php" url="email/inc/class.boindex.inc.php">
+</file>
+<file name="class.bojsaddressbook.inc.php"
url="email/inc/class.bojsaddressbook.inc.php">
+</file>
+<file name="class.bomessage.inc.php" url="email/inc/class.bomessage.inc.php">
+</file>
+<file name="class.bopreferences.inc.php"
url="email/inc/class.bopreferences.inc.php">
+</file>
+<file name="class.bosend.inc.php" url="email/inc/class.bosend.inc.php">
+</file>
+<file name="class.email_service.inc.php"
url="email/inc/class.email_service.inc.php">
+</file>
+<file name="class.html_widgets.inc.php"
url="email/inc/class.html_widgets.inc.php">
+</file>
+<file name="class.mail_dcom.inc.php" url="email/inc/class.mail_dcom.inc.php">
+</file>
+<file name="class.mail_dcom_base.inc.php"
url="email/inc/class.mail_dcom_base.inc.php">
+</file>
+<file name="class.mail_dcom_base_sock.inc.php"
url="email/inc/class.mail_dcom_base_sock.inc.php">
+</file>
+<file name="class.mail_dcom_imap.inc.php"
url="email/inc/class.mail_dcom_imap.inc.php">
+</file>
+<file name="class.mail_dcom_imap_sock.inc.php"
url="email/inc/class.mail_dcom_imap_sock.inc.php">
+</file>
+<file name="class.mail_dcom_nntp.inc.php"
url="email/inc/class.mail_dcom_nntp.inc.php">
+</file>
+<file name="class.mail_dcom_nntp_sock.inc.php"
url="email/inc/class.mail_dcom_nntp_sock.inc.php">
+</file>
+<file name="class.mail_dcom_pop3.inc.php"
url="email/inc/class.mail_dcom_pop3.inc.php">
+</file>
+<file name="class.mail_dcom_pop3_sock.inc.php"
url="email/inc/class.mail_dcom_pop3_sock.inc.php">
+</file>
+<file name="class.mail_filters.inc.php"
url="email/inc/class.mail_filters.inc.php">
+</file>
+<file name="class.mail_msg.inc.php" url="email/inc/class.mail_msg.inc.php">
+</file>
+<file name="class.mail_msg_base.inc.php"
url="email/inc/class.mail_msg_base.inc.php">
+</file>
+<file name="class.mail_msg_display.inc.php"
url="email/inc/class.mail_msg_display.inc.php">
+</file>
+<file name="class.mail_msg_wrappers.inc.php"
url="email/inc/class.mail_msg_wrappers.inc.php">
+</file>
+<file name="class.mail_send.inc.php" url="email/inc/class.mail_send.inc.php">
+</file>
+<file name="class.msg_bootstrap.inc.php"
url="email/inc/class.msg_bootstrap.inc.php">
+</file>
+<file name="class.so_mail_msg.inc.php"
url="email/inc/class.so_mail_msg.inc.php">
+</file>
+<file name="class.spell.inc.php" url="email/inc/class.spell.inc.php">
+</file>
+<file name="class.spell_struct.inc.php"
url="email/inc/class.spell_struct.inc.php">
+</file>
+<file name="class.spell_svc_none.inc.php"
url="email/inc/class.spell_svc_none.inc.php">
+</file>
+<file name="class.spell_svc_php.inc.php"
url="email/inc/class.spell_svc_php.inc.php">
+</file>
+<file name="class.svc_debug.inc.php" url="email/inc/class.svc_debug.inc.php">
+</file>
+<file name="class.svc_nextmatches.inc.php"
url="email/inc/class.svc_nextmatches.inc.php">
+</file>
+<file name="class.ui_mail_debug.inc.php"
url="email/inc/class.ui_mail_debug.inc.php">
+</file>
+<file name="class.uiattach_file.inc.php"
url="email/inc/class.uiattach_file.inc.php">
+</file>
+<file name="class.uicompose.inc.php" url="email/inc/class.uicompose.inc.php">
+</file>
+<file name="class.uifilters.inc.php" url="email/inc/class.uifilters.inc.php">
+</file>
+<file name="class.uifolder.inc.php" url="email/inc/class.uifolder.inc.php">
+</file>
+<file name="class.uiindex.inc.php" url="email/inc/class.uiindex.inc.php">
+</file>
+<file name="class.uijsaddressbook.inc.php"
url="email/inc/class.uijsaddressbook.inc.php">
+</file>
+<file name="class.uimessage.inc.php" url="email/inc/class.uimessage.inc.php">
+</file>
+<file name="class.uipreferences.inc.php"
url="email/inc/class.uipreferences.inc.php">
+</file>
+<file name="class.uisearch.inc.php" url="email/inc/class.uisearch.inc.php">
+</file>
+<file name="functions.inc.php" url="email/inc/functions.inc.php">
+</file>
+<file name="hook_admin.inc.php" url="email/inc/hook_admin.inc.php">
+</file>
+<file name="hook_email_add_def_pref.inc.php"
url="email/inc/hook_email_add_def_pref.inc.php">
+</file>
+<file name="hook_home.inc.php" url="email/inc/hook_home.inc.php">
+</file>
+<file name="hook_login.inc.php" url="email/inc/hook_login.inc.php">
+</file>
+<file name="hook_manual.inc.php" url="email/inc/hook_manual.inc.php">
+</file>
+<file name="hook_notifywindow.inc.php"
url="email/inc/hook_notifywindow.inc.php">
+</file>
+<file name="hook_notifywindow_simple.inc.php"
url="email/inc/hook_notifywindow_simple.inc.php">
+</file>
+<file name="hook_preferences.inc.php" url="email/inc/hook_preferences.inc.php">
+</file>
+<file name="hook_settings.inc.php" url="email/inc/hook_settings.inc.php">
+</file>
+</folder>
+<folder name="setup" url="email/setup">
+<file name="phpgw_da.lang" url="email/setup/phpgw_da.lang">
+</file>
+<file name="phpgw_de.lang" url="email/setup/phpgw_de.lang">
+</file>
+<file name="phpgw_en.lang" url="email/setup/phpgw_en.lang">
+</file>
+<file name="phpgw_es.lang" url="email/setup/phpgw_es.lang">
+</file>
+<file name="phpgw_fi.lang" url="email/setup/phpgw_fi.lang">
+</file>
+<file name="phpgw_fr.lang" url="email/setup/phpgw_fr.lang">
+</file>
+<file name="phpgw_hu.lang" url="email/setup/phpgw_hu.lang">
+</file>
+<file name="phpgw_it.lang" url="email/setup/phpgw_it.lang">
+</file>
+<file name="phpgw_ja.lang" url="email/setup/phpgw_ja.lang">
+</file>
+<file name="phpgw_ko.lang" url="email/setup/phpgw_ko.lang">
+</file>
+<file name="phpgw_nl.lang" url="email/setup/phpgw_nl.lang">
+</file>
+<file name="phpgw_pl.lang" url="email/setup/phpgw_pl.lang">
+</file>
+<file name="phpgw_pt.lang" url="email/setup/phpgw_pt.lang">
+</file>
+<file name="phpgw_sv.lang" url="email/setup/phpgw_sv.lang">
+</file>
+<file name="phpgw_zh.lang" url="email/setup/phpgw_zh.lang">
+</file>
+<file name="phpgw_zt.lang" url="email/setup/phpgw_zt.lang">
+</file>
+<file name="setup.inc.php" url="email/setup/setup.inc.php">
+</file>
+<file name="tables_current.inc.php" url="email/setup/tables_current.inc.php">
+</file>
+<file name="tables_update.inc.php" url="email/setup/tables_update.inc.php">
+</file>
+</folder>
+<folder name="templates" url="email/templates">
+<folder name="default" url="email/templates/default">
+<file name="OLD-preferences.tpl"
url="email/templates/default/OLD-preferences.tpl">
+</file>
+<file name="addressbook.tpl" url="email/templates/default/addressbook.tpl">
+</file>
+<file name="app_data-A.xsl" url="email/templates/default/app_data-A.xsl">
+</file>
+<file name="app_data-B.xsl" url="email/templates/default/app_data-B.xsl">
+</file>
+<file name="app_data-C.xsl" url="email/templates/default/app_data-C.xsl">
+</file>
+<file name="app_data-D.xsl" url="email/templates/default/app_data-D.xsl">
+</file>
+<file name="app_data-E.xsl" url="email/templates/default/app_data-E.xsl">
+</file>
+<file name="app_data-F.xsl" url="email/templates/default/app_data-F.xsl">
+</file>
+<file name="app_data-G.xsl" url="email/templates/default/app_data-G.xsl">
+</file>
+<file name="app_data-H.xsl" url="email/templates/default/app_data-H.xsl">
+</file>
+<file name="app_data-I.xsl" url="email/templates/default/app_data-I.xsl">
+</file>
+<file name="app_data-J.xsl" url="email/templates/default/app_data-J.xsl">
+</file>
+<file name="app_data.xsl" url="email/templates/default/app_data.xsl">
+</file>
+<file name="attach_file.tpl" url="email/templates/default/attach_file.tpl">
+</file>
+<file name="attach_file_blocks.tpl"
url="email/templates/default/attach_file_blocks.tpl">
+</file>
+<file name="class_prefs_blocks.tpl"
url="email/templates/default/class_prefs_blocks.tpl">
+</file>
+<file name="class_prefs_ex_accounts.tpl"
url="email/templates/default/class_prefs_ex_accounts.tpl">
+</file>
+<file name="class_prefs_ui.tpl"
url="email/templates/default/class_prefs_ui.tpl">
+</file>
+<file name="compose.tpl" url="email/templates/default/compose.tpl">
+</file>
+<file name="config.tpl" url="email/templates/default/config.tpl">
+</file>
+<file name="debug.tpl" url="email/templates/default/debug.tpl">
+</file>
+<file name="error_report.tpl" url="email/templates/default/error_report.tpl">
+</file>
+<file name="extrabox.xsl" url="email/templates/default/extrabox.xsl">
+</file>
+<file name="filters.tpl" url="email/templates/default/filters.tpl">
+</file>
+<file name="filters_blocks.tpl"
url="email/templates/default/filters_blocks.tpl">
+</file>
+<file name="filters_list.tpl" url="email/templates/default/filters_list.tpl">
+</file>
+<file name="folder.tpl" url="email/templates/default/folder.tpl">
+</file>
+<file name="index_blocks.tpl" url="email/templates/default/index_blocks.tpl">
+</file>
+<file name="index_main_b0_l1.tpl"
url="email/templates/default/index_main_b0_l1.tpl">
+</file>
+<file name="index_main_b0_l2.tpl"
url="email/templates/default/index_main_b0_l2.tpl">
+</file>
+<file name="index_mlist.tpl" url="email/templates/default/index_mlist.tpl">
+</file>
+<file name="message_echo_dump.tpl"
url="email/templates/default/message_echo_dump.tpl">
+</file>
+<file name="message_main.tpl" url="email/templates/default/message_main.tpl">
+</file>
+<file name="message_printable.tpl"
url="email/templates/default/message_printable.tpl">
+</file>
+<file name="search_form.tpl" url="email/templates/default/search_form.tpl">
+</file>
+<file name="search_results.tpl"
url="email/templates/default/search_results.tpl">
+</file>
+<file name="search_results_js.tpl"
url="email/templates/default/search_results_js.tpl">
+</file>
+<file name="spell_review.tpl" url="email/templates/default/spell_review.tpl">
+</file>
+<file name="widget_toolbar.tpl"
url="email/templates/default/widget_toolbar.tpl">
+</file>
+<folder name="images" url="email/templates/default/images">
+<file name="check.gif" url="email/templates/default/images/check.gif">
+</file>
+<file name="check.png" url="email/templates/default/images/check.png">
+</file>
+<file name="deleted.gif" url="email/templates/default/images/deleted.gif">
+</file>
+<file name="deleted.png" url="email/templates/default/images/deleted.png">
+</file>
+<file name="evo-search-16.gif"
url="email/templates/default/images/evo-search-16.gif">
+</file>
+<file name="flag-for-followup-16.gif"
url="email/templates/default/images/flag-for-followup-16.gif">
+</file>
+<file name="flag-for-followup-16.png"
url="email/templates/default/images/flag-for-followup-16.png">
+</file>
+<file name="mark-as-important-16.gif"
url="email/templates/default/images/mark-as-important-16.gif">
+</file>
+<file name="mark-as-important-16.png"
url="email/templates/default/images/mark-as-important-16.png">
+</file>
+<file name="navbar.gif" url="email/templates/default/images/navbar.gif">
+</file>
+<file name="navbar.png" url="email/templates/default/images/navbar.png">
+</file>
+<file name="refresh.gif" url="email/templates/default/images/refresh.gif">
+</file>
+<file name="refresh.png" url="email/templates/default/images/refresh.png">
+</file>
+<file name="regular_draft.gif"
url="email/templates/default/images/regular_draft.gif">
+</file>
+<file name="regular_draft.png"
url="email/templates/default/images/regular_draft.png">
+</file>
+<file name="replied.gif" url="email/templates/default/images/replied.gif">
+</file>
+<file name="replied.png" url="email/templates/default/images/replied.png">
+</file>
+<file name="sm_delete.gif" url="email/templates/default/images/sm_delete.gif">
+</file>
+<file name="sm_delete.png" url="email/templates/default/images/sm_delete.png">
+</file>
+<file name="sm_envelope.gif"
url="email/templates/default/images/sm_envelope.gif">
+</file>
+<file name="sm_envelope.png"
url="email/templates/default/images/sm_envelope.png">
+</file>
+<file name="sm_forward.gif"
url="email/templates/default/images/sm_forward.gif">
+</file>
+<file name="sm_forward.png"
url="email/templates/default/images/sm_forward.png">
+</file>
+<file name="sm_reply.gif" url="email/templates/default/images/sm_reply.gif">
+</file>
+<file name="sm_reply.png" url="email/templates/default/images/sm_reply.png">
+</file>
+<file name="sm_reply_all.gif"
url="email/templates/default/images/sm_reply_all.gif">
+</file>
+<file name="sm_reply_all.png"
url="email/templates/default/images/sm_reply_all.png">
+</file>
+<file name="tree_collapse.gif"
url="email/templates/default/images/tree_collapse.gif">
+</file>
+<file name="tree_collapse.png"
url="email/templates/default/images/tree_collapse.png">
+</file>
+<file name="tree_end.gif" url="email/templates/default/images/tree_end.gif">
+</file>
+<file name="tree_end.png" url="email/templates/default/images/tree_end.png">
+</file>
+<file name="tree_expand.gif"
url="email/templates/default/images/tree_expand.gif">
+</file>
+<file name="tree_expand.png"
url="email/templates/default/images/tree_expand.png">
+</file>
+<file name="tree_leaf.gif" url="email/templates/default/images/tree_leaf.gif">
+</file>
+<file name="tree_leaf.png" url="email/templates/default/images/tree_leaf.png">
+</file>
+<file name="tree_space.gif"
url="email/templates/default/images/tree_space.gif">
+</file>
+<file name="tree_space.png"
url="email/templates/default/images/tree_space.png">
+</file>
+<file name="tree_split.gif"
url="email/templates/default/images/tree_split.gif">
+</file>
+<file name="tree_split.png"
url="email/templates/default/images/tree_split.png">
+</file>
+<file name="tree_vertline.gif"
url="email/templates/default/images/tree_vertline.gif">
+</file>
+<file name="tree_vertline.png"
url="email/templates/default/images/tree_vertline.png">
+</file>
+<file name="view_formatted-16.gif"
url="email/templates/default/images/view_formatted-16.gif">
+</file>
+<file name="view_formatted-16.png"
url="email/templates/default/images/view_formatted-16.png">
+</file>
+<file name="view_formatted-24.gif"
url="email/templates/default/images/view_formatted-24.gif">
+</file>
+<file name="view_formatted-24.png"
url="email/templates/default/images/view_formatted-24.png">
+</file>
+<file name="view_headers-16.gif"
url="email/templates/default/images/view_headers-16.gif">
+</file>
+<file name="view_headers-16.png"
url="email/templates/default/images/view_headers-16.png">
+</file>
+<file name="view_headers-24.gif"
url="email/templates/default/images/view_headers-24.gif">
+</file>
+<file name="view_headers-24.png"
url="email/templates/default/images/view_headers-24.png">
+</file>
+<file name="view_nofmt-16.gif"
url="email/templates/default/images/view_nofmt-16.gif">
+</file>
+<file name="view_nofmt-16.png"
url="email/templates/default/images/view_nofmt-16.png">
+</file>
+<file name="view_nofmt-24.gif"
url="email/templates/default/images/view_nofmt-24.gif">
+</file>
+<file name="view_nofmt-24.png"
url="email/templates/default/images/view_nofmt-24.png">
+</file>
+<file name="view_printable-16.gif"
url="email/templates/default/images/view_printable-16.gif">
+</file>
+<file name="view_printable-16.png"
url="email/templates/default/images/view_printable-16.png">
+</file>
+<file name="view_printable-24.gif"
url="email/templates/default/images/view_printable-24.gif">
+</file>
+<file name="view_printable-24.png"
url="email/templates/default/images/view_printable-24.png">
+</file>
+<file name="view_raw-16.gif"
url="email/templates/default/images/view_raw-16.gif">
+</file>
+<file name="view_raw-16.png"
url="email/templates/default/images/view_raw-16.png">
+</file>
+<file name="view_raw-24.gif"
url="email/templates/default/images/view_raw-24.gif">
+</file>
+<file name="view_raw-24.png"
url="email/templates/default/images/view_raw-24.png">
+</file>
+<folder name="AquaFusion" url="email/templates/default/images/AquaFusion">
+<file name="AquaFusion.readme"
url="email/templates/default/images/AquaFusion/AquaFusion.readme">
+</file>
+<file name="accounts-16.gif"
url="email/templates/default/images/AquaFusion/accounts-16.gif">
+</file>
+<file name="accounts-16.png"
url="email/templates/default/images/AquaFusion/accounts-16.png">
+</file>
+<file name="accounts-24.gif"
url="email/templates/default/images/AquaFusion/accounts-24.gif">
+</file>
+<file name="accounts-24.png"
url="email/templates/default/images/AquaFusion/accounts-24.png">
+</file>
+<file name="add-attachment-16.gif"
url="email/templates/default/images/AquaFusion/add-attachment-16.gif">
+</file>
+<file name="add-attachment-16.png"
url="email/templates/default/images/AquaFusion/add-attachment-16.png">
+</file>
+<file name="add-attachment-24.gif"
url="email/templates/default/images/AquaFusion/add-attachment-24.gif">
+</file>
+<file name="add-attachment-24.png"
url="email/templates/default/images/AquaFusion/add-attachment-24.png">
+</file>
+<file name="address-conduit-16.gif"
url="email/templates/default/images/AquaFusion/address-conduit-16.gif">
+</file>
+<file name="address-conduit-16.png"
url="email/templates/default/images/AquaFusion/address-conduit-16.png">
+</file>
+<file name="address-conduit-24.gif"
url="email/templates/default/images/AquaFusion/address-conduit-24.gif">
+</file>
+<file name="address-conduit-24.png"
url="email/templates/default/images/AquaFusion/address-conduit-24.png">
+</file>
+<file name="arrow-2left-16.gif"
url="email/templates/default/images/AquaFusion/arrow-2left-16.gif">
+</file>
+<file name="arrow-2left-16.png"
url="email/templates/default/images/AquaFusion/arrow-2left-16.png">
+</file>
+<file name="arrow-2left-24.gif"
url="email/templates/default/images/AquaFusion/arrow-2left-24.gif">
+</file>
+<file name="arrow-2left-24.png"
url="email/templates/default/images/AquaFusion/arrow-2left-24.png">
+</file>
+<file name="arrow-2left-no-16.gif"
url="email/templates/default/images/AquaFusion/arrow-2left-no-16.gif">
+</file>
+<file name="arrow-2left-no-16.png"
url="email/templates/default/images/AquaFusion/arrow-2left-no-16.png">
+</file>
+<file name="arrow-2left-no-24.gif"
url="email/templates/default/images/AquaFusion/arrow-2left-no-24.gif">
+</file>
+<file name="arrow-2left-no-24.png"
url="email/templates/default/images/AquaFusion/arrow-2left-no-24.png">
+</file>
+<file name="arrow-2right-16.gif"
url="email/templates/default/images/AquaFusion/arrow-2right-16.gif">
+</file>
+<file name="arrow-2right-16.png"
url="email/templates/default/images/AquaFusion/arrow-2right-16.png">
+</file>
+<file name="arrow-2right-24.gif"
url="email/templates/default/images/AquaFusion/arrow-2right-24.gif">
+</file>
+<file name="arrow-2right-24.png"
url="email/templates/default/images/AquaFusion/arrow-2right-24.png">
+</file>
+<file name="arrow-2right-no-16.gif"
url="email/templates/default/images/AquaFusion/arrow-2right-no-16.gif">
+</file>
+<file name="arrow-2right-no-16.png"
url="email/templates/default/images/AquaFusion/arrow-2right-no-16.png">
+</file>
+<file name="arrow-2right-no-24.gif"
url="email/templates/default/images/AquaFusion/arrow-2right-no-24.gif">
+</file>
+<file name="arrow-2right-no-24.png"
url="email/templates/default/images/AquaFusion/arrow-2right-no-24.png">
+</file>
+<file name="arrow-left-16.gif"
url="email/templates/default/images/AquaFusion/arrow-left-16.gif">
+</file>
+<file name="arrow-left-16.png"
url="email/templates/default/images/AquaFusion/arrow-left-16.png">
+</file>
+<file name="arrow-left-24.gif"
url="email/templates/default/images/AquaFusion/arrow-left-24.gif">
+</file>
+<file name="arrow-left-24.png"
url="email/templates/default/images/AquaFusion/arrow-left-24.png">
+</file>
+<file name="arrow-left-no-16.gif"
url="email/templates/default/images/AquaFusion/arrow-left-no-16.gif">
+</file>
+<file name="arrow-left-no-16.png"
url="email/templates/default/images/AquaFusion/arrow-left-no-16.png">
+</file>
+<file name="arrow-left-no-24.gif"
url="email/templates/default/images/AquaFusion/arrow-left-no-24.gif">
+</file>
+<file name="arrow-left-no-24.png"
url="email/templates/default/images/AquaFusion/arrow-left-no-24.png">
+</file>
+<file name="arrow-right-16.gif"
url="email/templates/default/images/AquaFusion/arrow-right-16.gif">
+</file>
+<file name="arrow-right-16.png"
url="email/templates/default/images/AquaFusion/arrow-right-16.png">
+</file>
+<file name="arrow-right-24.gif"
url="email/templates/default/images/AquaFusion/arrow-right-24.gif">
+</file>
+<file name="arrow-right-24.png"
url="email/templates/default/images/AquaFusion/arrow-right-24.png">
+</file>
+<file name="arrow-right-no-16.gif"
url="email/templates/default/images/AquaFusion/arrow-right-no-16.gif">
+</file>
+<file name="arrow-right-no-16.png"
url="email/templates/default/images/AquaFusion/arrow-right-no-16.png">
+</file>
+<file name="arrow-right-no-24.gif"
url="email/templates/default/images/AquaFusion/arrow-right-no-24.gif">
+</file>
+<file name="arrow-right-no-24.png"
url="email/templates/default/images/AquaFusion/arrow-right-no-24.png">
+</file>
+<file name="compose-message-16.gif"
url="email/templates/default/images/AquaFusion/compose-message-16.gif">
+</file>
+<file name="compose-message-16.png"
url="email/templates/default/images/AquaFusion/compose-message-16.png">
+</file>
+<file name="compose-message-24.gif"
url="email/templates/default/images/AquaFusion/compose-message-24.gif">
+</file>
+<file name="compose-message-24.png"
url="email/templates/default/images/AquaFusion/compose-message-24.png">
+</file>
+<file name="customize-16.gif"
url="email/templates/default/images/AquaFusion/customize-16.gif">
+</file>
+<file name="customize-16.png"
url="email/templates/default/images/AquaFusion/customize-16.png">
+</file>
+<file name="customize-24.gif"
url="email/templates/default/images/AquaFusion/customize-24.gif">
+</file>
+<file name="customize-24.png"
url="email/templates/default/images/AquaFusion/customize-24.png">
+</file>
+<file name="delete-message.gif"
url="email/templates/default/images/AquaFusion/delete-message.gif">
+</file>
+<file name="delete-message.png"
url="email/templates/default/images/AquaFusion/delete-message.png">
+</file>
+<file name="filters-16.gif"
url="email/templates/default/images/AquaFusion/filters-16.gif">
+</file>
+<file name="filters-16.png"
url="email/templates/default/images/AquaFusion/filters-16.png">
+</file>
+<file name="filters-24.gif"
url="email/templates/default/images/AquaFusion/filters-24.gif">
+</file>
+<file name="filters-24.png"
url="email/templates/default/images/AquaFusion/filters-24.png">
+</file>
+<file name="folder-16.gif"
url="email/templates/default/images/AquaFusion/folder-16.gif">
+</file>
+<file name="folder-16.png"
url="email/templates/default/images/AquaFusion/folder-16.png">
+</file>
+<file name="folder-24.gif"
url="email/templates/default/images/AquaFusion/folder-24.gif">
+</file>
+<file name="folder-24.png"
url="email/templates/default/images/AquaFusion/folder-24.png">
+</file>
+<file name="forward.gif"
url="email/templates/default/images/AquaFusion/forward.gif">
+</file>
+<file name="forward.png"
url="email/templates/default/images/AquaFusion/forward.png">
+</file>
+<file name="reply-all.gif"
url="email/templates/default/images/AquaFusion/reply-all.gif">
+</file>
+<file name="reply-all.png"
url="email/templates/default/images/AquaFusion/reply-all.png">
+</file>
+<file name="reply.gif"
url="email/templates/default/images/AquaFusion/reply.gif">
+</file>
+<file name="reply.png"
url="email/templates/default/images/AquaFusion/reply.png">
+</file>
+<file name="send-16.gif"
url="email/templates/default/images/AquaFusion/send-16.gif">
+</file>
+<file name="send-16.png"
url="email/templates/default/images/AquaFusion/send-16.png">
+</file>
+<file name="send-24.gif"
url="email/templates/default/images/AquaFusion/send-24.gif">
+</file>
+<file name="send-24.png"
url="email/templates/default/images/AquaFusion/send-24.png">
+</file>
+<file name="spellcheck-16.gif"
url="email/templates/default/images/AquaFusion/spellcheck-16.gif">
+</file>
+<file name="spellcheck-16.png"
url="email/templates/default/images/AquaFusion/spellcheck-16.png">
+</file>
+<file name="spellcheck-24.gif"
url="email/templates/default/images/AquaFusion/spellcheck-24.gif">
+</file>
+<file name="spellcheck-24.png"
url="email/templates/default/images/AquaFusion/spellcheck-24.png">
+</file>
+<file name="trash-16.gif"
url="email/templates/default/images/AquaFusion/trash-16.gif">
+</file>
+<file name="trash-16.png"
url="email/templates/default/images/AquaFusion/trash-16.png">
+</file>
+<file name="trash-24.gif"
url="email/templates/default/images/AquaFusion/trash-24.gif">
+</file>
+<file name="trash-24.png"
url="email/templates/default/images/AquaFusion/trash-24.png">
+</file>
+<file name="search-16.gif"
url="email/templates/default/images/AquaFusion/search-16.gif">
+</file>
+<file name="search-16.png"
url="email/templates/default/images/AquaFusion/search-16.png">
+</file>
+<file name="search-24.gif"
url="email/templates/default/images/AquaFusion/search-24.gif">
+</file>
+<file name="search-24.png"
url="email/templates/default/images/AquaFusion/search-24.png">
+</file>
+</folder>
+<folder name="evo" url="email/templates/default/images/evo">
+<file name="accounts-16.gif"
url="email/templates/default/images/evo/accounts-16.gif">
+</file>
+<file name="accounts-16.png"
url="email/templates/default/images/evo/accounts-16.png">
+</file>
+<file name="accounts-24.gif"
url="email/templates/default/images/evo/accounts-24.gif">
+</file>
+<file name="accounts-24.png"
url="email/templates/default/images/evo/accounts-24.png">
+</file>
+<file name="add-attachment-16.gif"
url="email/templates/default/images/evo/add-attachment-16.gif">
+</file>
+<file name="add-attachment-16.png"
url="email/templates/default/images/evo/add-attachment-16.png">
+</file>
+<file name="add-attachment-24.gif"
url="email/templates/default/images/evo/add-attachment-24.gif">
+</file>
+<file name="add-attachment-24.png"
url="email/templates/default/images/evo/add-attachment-24.png">
+</file>
+<file name="add-attachment.gif"
url="email/templates/default/images/evo/add-attachment.gif">
+</file>
+<file name="add-attachment.png"
url="email/templates/default/images/evo/add-attachment.png">
+</file>
+<file name="address-conduit-16.gif"
url="email/templates/default/images/evo/address-conduit-16.gif">
+</file>
+<file name="address-conduit-16.png"
url="email/templates/default/images/evo/address-conduit-16.png">
+</file>
+<file name="address-conduit-24.gif"
url="email/templates/default/images/evo/address-conduit-24.gif">
+</file>
+<file name="address-conduit-24.png"
url="email/templates/default/images/evo/address-conduit-24.png">
+</file>
+<file name="arrow-2left-16.gif"
url="email/templates/default/images/evo/arrow-2left-16.gif">
+</file>
+<file name="arrow-2left-16.png"
url="email/templates/default/images/evo/arrow-2left-16.png">
+</file>
+<file name="arrow-2left-24.gif"
url="email/templates/default/images/evo/arrow-2left-24.gif">
+</file>
+<file name="arrow-2left-24.png"
url="email/templates/default/images/evo/arrow-2left-24.png">
+</file>
+<file name="arrow-2left-no-16.gif"
url="email/templates/default/images/evo/arrow-2left-no-16.gif">
+</file>
+<file name="arrow-2left-no-16.png"
url="email/templates/default/images/evo/arrow-2left-no-16.png">
+</file>
+<file name="arrow-2left-no-24.gif"
url="email/templates/default/images/evo/arrow-2left-no-24.gif">
+</file>
+<file name="arrow-2left-no-24.png"
url="email/templates/default/images/evo/arrow-2left-no-24.png">
+</file>
+<file name="arrow-2right-16.gif"
url="email/templates/default/images/evo/arrow-2right-16.gif">
+</file>
+<file name="arrow-2right-16.png"
url="email/templates/default/images/evo/arrow-2right-16.png">
+</file>
+<file name="arrow-2right-24.gif"
url="email/templates/default/images/evo/arrow-2right-24.gif">
+</file>
+<file name="arrow-2right-24.png"
url="email/templates/default/images/evo/arrow-2right-24.png">
+</file>
+<file name="arrow-2right-no-16.gif"
url="email/templates/default/images/evo/arrow-2right-no-16.gif">
+</file>
+<file name="arrow-2right-no-16.png"
url="email/templates/default/images/evo/arrow-2right-no-16.png">
+</file>
+<file name="arrow-2right-no-24.gif"
url="email/templates/default/images/evo/arrow-2right-no-24.gif">
+</file>
+<file name="arrow-2right-no-24.png"
url="email/templates/default/images/evo/arrow-2right-no-24.png">
+</file>
+<file name="arrow-left-16.gif"
url="email/templates/default/images/evo/arrow-left-16.gif">
+</file>
+<file name="arrow-left-16.png"
url="email/templates/default/images/evo/arrow-left-16.png">
+</file>
+<file name="arrow-left-24.gif"
url="email/templates/default/images/evo/arrow-left-24.gif">
+</file>
+<file name="arrow-left-24.png"
url="email/templates/default/images/evo/arrow-left-24.png">
+</file>
+<file name="arrow-left-no-16.gif"
url="email/templates/default/images/evo/arrow-left-no-16.gif">
+</file>
+<file name="arrow-left-no-16.png"
url="email/templates/default/images/evo/arrow-left-no-16.png">
+</file>
+<file name="arrow-left-no-24.gif"
url="email/templates/default/images/evo/arrow-left-no-24.gif">
+</file>
+<file name="arrow-left-no-24.png"
url="email/templates/default/images/evo/arrow-left-no-24.png">
+</file>
+<file name="arrow-right-16.gif"
url="email/templates/default/images/evo/arrow-right-16.gif">
+</file>
+<file name="arrow-right-16.png"
url="email/templates/default/images/evo/arrow-right-16.png">
+</file>
+<file name="arrow-right-24.gif"
url="email/templates/default/images/evo/arrow-right-24.gif">
+</file>
+<file name="arrow-right-24.png"
url="email/templates/default/images/evo/arrow-right-24.png">
+</file>
+<file name="arrow-right-no-16.gif"
url="email/templates/default/images/evo/arrow-right-no-16.gif">
+</file>
+<file name="arrow-right-no-16.png"
url="email/templates/default/images/evo/arrow-right-no-16.png">
+</file>
+<file name="arrow-right-no-24.gif"
url="email/templates/default/images/evo/arrow-right-no-24.gif">
+</file>
+<file name="arrow-right-no-24.png"
url="email/templates/default/images/evo/arrow-right-no-24.png">
+</file>
+<file name="compose-message-16.gif"
url="email/templates/default/images/evo/compose-message-16.gif">
+</file>
+<file name="compose-message-16.png"
url="email/templates/default/images/evo/compose-message-16.png">
+</file>
+<file name="compose-message-24.gif"
url="email/templates/default/images/evo/compose-message-24.gif">
+</file>
+<file name="compose-message-24.png"
url="email/templates/default/images/evo/compose-message-24.png">
+</file>
+<file name="customize-16.gif"
url="email/templates/default/images/evo/customize-16.gif">
+</file>
+<file name="customize-16.png"
url="email/templates/default/images/evo/customize-16.png">
+</file>
+<file name="customize-24.gif"
url="email/templates/default/images/evo/customize-24.gif">
+</file>
+<file name="customize-24.png"
url="email/templates/default/images/evo/customize-24.png">
+</file>
+<file name="customize3-24.gif"
url="email/templates/default/images/evo/customize3-24.gif">
+</file>
+<file name="customize3-24.png"
url="email/templates/default/images/evo/customize3-24.png">
+</file>
+<file name="customize4-24.gif"
url="email/templates/default/images/evo/customize4-24.gif">
+</file>
+<file name="customize4-24.png"
url="email/templates/default/images/evo/customize4-24.png">
+</file>
+<file name="delete-message.gif"
url="email/templates/default/images/evo/delete-message.gif">
+</file>
+<file name="delete-message.png"
url="email/templates/default/images/evo/delete-message.png">
+</file>
+<file name="envelope.gif"
url="email/templates/default/images/evo/envelope.gif">
+</file>
+<file name="envelope.png"
url="email/templates/default/images/evo/envelope.png">
+</file>
+<file name="filters-16.gif"
url="email/templates/default/images/evo/filters-16.gif">
+</file>
+<file name="filters-16.png"
url="email/templates/default/images/evo/filters-16.png">
+</file>
+<file name="filters-24.gif"
url="email/templates/default/images/evo/filters-24.gif">
+</file>
+<file name="filters-24.png"
url="email/templates/default/images/evo/filters-24.png">
+</file>
+<file name="filters-config-24.gif"
url="email/templates/default/images/evo/filters-config-24.gif">
+</file>
+<file name="filters-config-24.png"
url="email/templates/default/images/evo/filters-config-24.png">
+</file>
+<file name="folder-16.gif"
url="email/templates/default/images/evo/folder-16.gif">
+</file>
+<file name="folder-16.png"
url="email/templates/default/images/evo/folder-16.png">
+</file>
+<file name="folder-24.gif"
url="email/templates/default/images/evo/folder-24.gif">
+</file>
+<file name="folder-24.png"
url="email/templates/default/images/evo/folder-24.png">
+</file>
+<file name="folder-config-16.gif"
url="email/templates/default/images/evo/folder-config-16.gif">
+</file>
+<file name="folder-config-16.png"
url="email/templates/default/images/evo/folder-config-16.png">
+</file>
+<file name="folder-config-24.gif"
url="email/templates/default/images/evo/folder-config-24.gif">
+</file>
+<file name="folder-config-24.png"
url="email/templates/default/images/evo/folder-config-24.png">
+</file>
+<file name="folder-config2-24.gif"
url="email/templates/default/images/evo/folder-config2-24.gif">
+</file>
+<file name="folder-config2-24.png"
url="email/templates/default/images/evo/folder-config2-24.png">
+</file>
+<file name="forward.gif" url="email/templates/default/images/evo/forward.gif">
+</file>
+<file name="forward.png" url="email/templates/default/images/evo/forward.png">
+</file>
+<file name="move-message.gif"
url="email/templates/default/images/evo/move-message.gif">
+</file>
+<file name="move-message.png"
url="email/templates/default/images/evo/move-message.png">
+</file>
+<file name="next-message.gif"
url="email/templates/default/images/evo/next-message.gif">
+</file>
+<file name="next-message.png"
url="email/templates/default/images/evo/next-message.png">
+</file>
+<file name="previous-message.gif"
url="email/templates/default/images/evo/previous-message.gif">
+</file>
+<file name="previous-message.png"
url="email/templates/default/images/evo/previous-message.png">
+</file>
+<file name="reply-all.gif"
url="email/templates/default/images/evo/reply-all.gif">
+</file>
+<file name="reply-all.png"
url="email/templates/default/images/evo/reply-all.png">
+</file>
+<file name="reply-all2.gif"
url="email/templates/default/images/evo/reply-all2.gif">
+</file>
+<file name="reply-all2.png"
url="email/templates/default/images/evo/reply-all2.png">
+</file>
+<file name="reply-to-all.gif"
url="email/templates/default/images/evo/reply-to-all.gif">
+</file>
+<file name="reply-to-all.png"
url="email/templates/default/images/evo/reply-to-all.png">
+</file>
+<file name="reply.gif" url="email/templates/default/images/evo/reply.gif">
+</file>
+<file name="reply.png" url="email/templates/default/images/evo/reply.png">
+</file>
+<file name="send-16.gif" url="email/templates/default/images/evo/send-16.gif">
+</file>
+<file name="send-16.png" url="email/templates/default/images/evo/send-16.png">
+</file>
+<file name="send-24.gif" url="email/templates/default/images/evo/send-24.gif">
+</file>
+<file name="send-24.png" url="email/templates/default/images/evo/send-24.png">
+</file>
+<file name="spellcheck-16.gif"
url="email/templates/default/images/evo/spellcheck-16.gif">
+</file>
+<file name="spellcheck-16.png"
url="email/templates/default/images/evo/spellcheck-16.png">
+</file>
+<file name="spellcheck-24.gif"
url="email/templates/default/images/evo/spellcheck-24.gif">
+</file>
+<file name="spellcheck-24.png"
url="email/templates/default/images/evo/spellcheck-24.png">
+</file>
+<file name="trash-16.gif"
url="email/templates/default/images/evo/trash-16.gif">
+</file>
+<file name="trash-16.png"
url="email/templates/default/images/evo/trash-16.png">
+</file>
+<file name="trash-24.gif"
url="email/templates/default/images/evo/trash-24.gif">
+</file>
+<file name="trash-24.png"
url="email/templates/default/images/evo/trash-24.png">
+</file>
+<file name="search-16.gif"
url="email/templates/default/images/evo/search-16.gif">
+</file>
+<file name="search-16.png"
url="email/templates/default/images/evo/search-16.png">
+</file>
+<file name="search-24.gif"
url="email/templates/default/images/evo/search-24.gif">
+</file>
+<file name="search-24.png"
url="email/templates/default/images/evo/search-24.png">
+</file>
+</folder>
+<folder name="idots" url="email/templates/default/images/idots">
+<file name="accounts-16.gif"
url="email/templates/default/images/idots/accounts-16.gif">
+</file>
+<file name="accounts-16.png"
url="email/templates/default/images/idots/accounts-16.png">
+</file>
+<file name="accounts-24.gif"
url="email/templates/default/images/idots/accounts-24.gif">
+</file>
+<file name="accounts-24.png"
url="email/templates/default/images/idots/accounts-24.png">
+</file>
+<file name="add-attachment-16.gif"
url="email/templates/default/images/idots/add-attachment-16.gif">
+</file>
+<file name="add-attachment-16.png"
url="email/templates/default/images/idots/add-attachment-16.png">
+</file>
+<file name="add-attachment-24.gif"
url="email/templates/default/images/idots/add-attachment-24.gif">
+</file>
+<file name="add-attachment-24.png"
url="email/templates/default/images/idots/add-attachment-24.png">
+</file>
+<file name="address-conduit-16.gif"
url="email/templates/default/images/idots/address-conduit-16.gif">
+</file>
+<file name="address-conduit-16.png"
url="email/templates/default/images/idots/address-conduit-16.png">
+</file>
+<file name="address-conduit-24.gif"
url="email/templates/default/images/idots/address-conduit-24.gif">
+</file>
+<file name="address-conduit-24.png"
url="email/templates/default/images/idots/address-conduit-24.png">
+</file>
+<file name="arrow-2left-16.gif"
url="email/templates/default/images/idots/arrow-2left-16.gif">
+</file>
+<file name="arrow-2left-16.png"
url="email/templates/default/images/idots/arrow-2left-16.png">
+</file>
+<file name="arrow-2left-24.gif"
url="email/templates/default/images/idots/arrow-2left-24.gif">
+</file>
+<file name="arrow-2left-24.png"
url="email/templates/default/images/idots/arrow-2left-24.png">
+</file>
+<file name="arrow-2left-no-16.gif"
url="email/templates/default/images/idots/arrow-2left-no-16.gif">
+</file>
+<file name="arrow-2left-no-16.png"
url="email/templates/default/images/idots/arrow-2left-no-16.png">
+</file>
+<file name="arrow-2left-no-24.gif"
url="email/templates/default/images/idots/arrow-2left-no-24.gif">
+</file>
+<file name="arrow-2left-no-24.png"
url="email/templates/default/images/idots/arrow-2left-no-24.png">
+</file>
+<file name="arrow-2right-16.gif"
url="email/templates/default/images/idots/arrow-2right-16.gif">
+</file>
+<file name="arrow-2right-16.png"
url="email/templates/default/images/idots/arrow-2right-16.png">
+</file>
+<file name="arrow-2right-24.gif"
url="email/templates/default/images/idots/arrow-2right-24.gif">
+</file>
+<file name="arrow-2right-24.png"
url="email/templates/default/images/idots/arrow-2right-24.png">
+</file>
+<file name="arrow-2right-no-16.gif"
url="email/templates/default/images/idots/arrow-2right-no-16.gif">
+</file>
+<file name="arrow-2right-no-16.png"
url="email/templates/default/images/idots/arrow-2right-no-16.png">
+</file>
+<file name="arrow-2right-no-24.gif"
url="email/templates/default/images/idots/arrow-2right-no-24.gif">
+</file>
+<file name="arrow-2right-no-24.png"
url="email/templates/default/images/idots/arrow-2right-no-24.png">
+</file>
+<file name="arrow-left-16.gif"
url="email/templates/default/images/idots/arrow-left-16.gif">
+</file>
+<file name="arrow-left-16.png"
url="email/templates/default/images/idots/arrow-left-16.png">
+</file>
+<file name="arrow-left-24.gif"
url="email/templates/default/images/idots/arrow-left-24.gif">
+</file>
+<file name="arrow-left-24.png"
url="email/templates/default/images/idots/arrow-left-24.png">
+</file>
+<file name="arrow-left-no-16.gif"
url="email/templates/default/images/idots/arrow-left-no-16.gif">
+</file>
+<file name="arrow-left-no-16.png"
url="email/templates/default/images/idots/arrow-left-no-16.png">
+</file>
+<file name="arrow-left-no-24.gif"
url="email/templates/default/images/idots/arrow-left-no-24.gif">
+</file>
+<file name="arrow-left-no-24.png"
url="email/templates/default/images/idots/arrow-left-no-24.png">
+</file>
+<file name="arrow-right-16.gif"
url="email/templates/default/images/idots/arrow-right-16.gif">
+</file>
+<file name="arrow-right-16.png"
url="email/templates/default/images/idots/arrow-right-16.png">
+</file>
+<file name="arrow-right-24.gif"
url="email/templates/default/images/idots/arrow-right-24.gif">
+</file>
+<file name="arrow-right-24.png"
url="email/templates/default/images/idots/arrow-right-24.png">
+</file>
+<file name="arrow-right-no-16.gif"
url="email/templates/default/images/idots/arrow-right-no-16.gif">
+</file>
+<file name="arrow-right-no-16.png"
url="email/templates/default/images/idots/arrow-right-no-16.png">
+</file>
+<file name="arrow-right-no-24.gif"
url="email/templates/default/images/idots/arrow-right-no-24.gif">
+</file>
+<file name="arrow-right-no-24.png"
url="email/templates/default/images/idots/arrow-right-no-24.png">
+</file>
+<file name="compose-message-16.gif"
url="email/templates/default/images/idots/compose-message-16.gif">
+</file>
+<file name="compose-message-16.png"
url="email/templates/default/images/idots/compose-message-16.png">
+</file>
+<file name="compose-message-24.gif"
url="email/templates/default/images/idots/compose-message-24.gif">
+</file>
+<file name="compose-message-24.png"
url="email/templates/default/images/idots/compose-message-24.png">
+</file>
+<file name="customize-16.gif"
url="email/templates/default/images/idots/customize-16.gif">
+</file>
+<file name="customize-16.png"
url="email/templates/default/images/idots/customize-16.png">
+</file>
+<file name="customize-24.gif"
url="email/templates/default/images/idots/customize-24.gif">
+</file>
+<file name="customize-24.png"
url="email/templates/default/images/idots/customize-24.png">
+</file>
+<file name="delete-message-16.gif"
url="email/templates/default/images/idots/delete-message-16.gif">
+</file>
+<file name="delete-message-16.png"
url="email/templates/default/images/idots/delete-message-16.png">
+</file>
+<file name="delete-message.gif"
url="email/templates/default/images/idots/delete-message.gif">
+</file>
+<file name="delete-message.png"
url="email/templates/default/images/idots/delete-message.png">
+</file>
+<file name="filter-24.gif"
url="email/templates/default/images/idots/filter-24.gif">
+</file>
+<file name="filter-24.png"
url="email/templates/default/images/idots/filter-24.png">
+</file>
+<file name="filters-24.gif"
url="email/templates/default/images/idots/filters-24.gif">
+</file>
+<file name="filters-24.png"
url="email/templates/default/images/idots/filters-24.png">
+</file>
+<file name="folder-16.gif"
url="email/templates/default/images/idots/folder-16.gif">
+</file>
+<file name="folder-16.png"
url="email/templates/default/images/idots/folder-16.png">
+</file>
+<file name="folder-24.gif"
url="email/templates/default/images/idots/folder-24.gif">
+</file>
+<file name="folder-24.png"
url="email/templates/default/images/idots/folder-24.png">
+</file>
+<file name="forward-16.gif"
url="email/templates/default/images/idots/forward-16.gif">
+</file>
+<file name="forward-16.png"
url="email/templates/default/images/idots/forward-16.png">
+</file>
+<file name="forward.gif"
url="email/templates/default/images/idots/forward.gif">
+</file>
+<file name="forward.png"
url="email/templates/default/images/idots/forward.png">
+</file>
+<file name="reply-all-16.gif"
url="email/templates/default/images/idots/reply-all-16.gif">
+</file>
+<file name="reply-all-16.png"
url="email/templates/default/images/idots/reply-all-16.png">
+</file>
+<file name="reply-all.gif"
url="email/templates/default/images/idots/reply-all.gif">
+</file>
+<file name="reply-all.png"
url="email/templates/default/images/idots/reply-all.png">
+</file>
+<file name="reply.gif" url="email/templates/default/images/idots/reply.gif">
+</file>
+<file name="reply.png" url="email/templates/default/images/idots/reply.png">
+</file>
+<file name="send-16.gif"
url="email/templates/default/images/idots/send-16.gif">
+</file>
+<file name="send-16.png"
url="email/templates/default/images/idots/send-16.png">
+</file>
+<file name="send-24.gif"
url="email/templates/default/images/idots/send-24.gif">
+</file>
+<file name="send-24.png"
url="email/templates/default/images/idots/send-24.png">
+</file>
+<file name="spellcheck-16.gif"
url="email/templates/default/images/idots/spellcheck-16.gif">
+</file>
+<file name="spellcheck-16.png"
url="email/templates/default/images/idots/spellcheck-16.png">
+</file>
+<file name="spellcheck-24.gif"
url="email/templates/default/images/idots/spellcheck-24.gif">
+</file>
+<file name="spellcheck-24.png"
url="email/templates/default/images/idots/spellcheck-24.png">
+</file>
+<file name="trash-16.gif"
url="email/templates/default/images/idots/trash-16.gif">
+</file>
+<file name="trash-16.png"
url="email/templates/default/images/idots/trash-16.png">
+</file>
+<file name="trash-24.gif"
url="email/templates/default/images/idots/trash-24.gif">
+</file>
+<file name="trash-24.png"
url="email/templates/default/images/idots/trash-24.png">
+</file>
+<file name="search-16.gif"
url="email/templates/default/images/idots/search-16.gif">
+</file>
+<file name="search-16.png"
url="email/templates/default/images/idots/search-16.png">
+</file>
+<file name="search-24.gif"
url="email/templates/default/images/idots/search-24.gif">
+</file>
+<file name="search-24.png"
url="email/templates/default/images/idots/search-24.png">
+</file>
+</folder>
+<folder name="moz" url="email/templates/default/images/moz">
+<file name="accounts-16.gif"
url="email/templates/default/images/moz/accounts-16.gif">
+</file>
+<file name="accounts-16.png"
url="email/templates/default/images/moz/accounts-16.png">
+</file>
+<file name="accounts-24.gif"
url="email/templates/default/images/moz/accounts-24.gif">
+</file>
+<file name="accounts-24.png"
url="email/templates/default/images/moz/accounts-24.png">
+</file>
+<file name="add-attachment-16.gif"
url="email/templates/default/images/moz/add-attachment-16.gif">
+</file>
+<file name="add-attachment-16.png"
url="email/templates/default/images/moz/add-attachment-16.png">
+</file>
+<file name="add-attachment-24.gif"
url="email/templates/default/images/moz/add-attachment-24.gif">
+</file>
+<file name="add-attachment-24.png"
url="email/templates/default/images/moz/add-attachment-24.png">
+</file>
+<file name="address-conduit-16.gif"
url="email/templates/default/images/moz/address-conduit-16.gif">
+</file>
+<file name="address-conduit-16.png"
url="email/templates/default/images/moz/address-conduit-16.png">
+</file>
+<file name="address-conduit-24.gif"
url="email/templates/default/images/moz/address-conduit-24.gif">
+</file>
+<file name="address-conduit-24.png"
url="email/templates/default/images/moz/address-conduit-24.png">
+</file>
+<file name="arrow-2left-16.gif"
url="email/templates/default/images/moz/arrow-2left-16.gif">
+</file>
+<file name="arrow-2left-16.png"
url="email/templates/default/images/moz/arrow-2left-16.png">
+</file>
+<file name="arrow-2left-24.gif"
url="email/templates/default/images/moz/arrow-2left-24.gif">
+</file>
+<file name="arrow-2left-24.png"
url="email/templates/default/images/moz/arrow-2left-24.png">
+</file>
+<file name="arrow-2left-no-16.gif"
url="email/templates/default/images/moz/arrow-2left-no-16.gif">
+</file>
+<file name="arrow-2left-no-16.png"
url="email/templates/default/images/moz/arrow-2left-no-16.png">
+</file>
+<file name="arrow-2left-no-24.gif"
url="email/templates/default/images/moz/arrow-2left-no-24.gif">
+</file>
+<file name="arrow-2left-no-24.png"
url="email/templates/default/images/moz/arrow-2left-no-24.png">
+</file>
+<file name="arrow-2right-16.gif"
url="email/templates/default/images/moz/arrow-2right-16.gif">
+</file>
+<file name="arrow-2right-16.png"
url="email/templates/default/images/moz/arrow-2right-16.png">
+</file>
+<file name="arrow-2right-24.gif"
url="email/templates/default/images/moz/arrow-2right-24.gif">
+</file>
+<file name="arrow-2right-24.png"
url="email/templates/default/images/moz/arrow-2right-24.png">
+</file>
+<file name="arrow-2right-no-16.gif"
url="email/templates/default/images/moz/arrow-2right-no-16.gif">
+</file>
+<file name="arrow-2right-no-16.png"
url="email/templates/default/images/moz/arrow-2right-no-16.png">
+</file>
+<file name="arrow-2right-no-24.gif"
url="email/templates/default/images/moz/arrow-2right-no-24.gif">
+</file>
+<file name="arrow-2right-no-24.png"
url="email/templates/default/images/moz/arrow-2right-no-24.png">
+</file>
+<file name="arrow-left-16.gif"
url="email/templates/default/images/moz/arrow-left-16.gif">
+</file>
+<file name="arrow-left-16.png"
url="email/templates/default/images/moz/arrow-left-16.png">
+</file>
+<file name="arrow-left-24.gif"
url="email/templates/default/images/moz/arrow-left-24.gif">
+</file>
+<file name="arrow-left-24.png"
url="email/templates/default/images/moz/arrow-left-24.png">
+</file>
+<file name="arrow-left-no-16.gif"
url="email/templates/default/images/moz/arrow-left-no-16.gif">
+</file>
+<file name="arrow-left-no-16.png"
url="email/templates/default/images/moz/arrow-left-no-16.png">
+</file>
+<file name="arrow-left-no-24.gif"
url="email/templates/default/images/moz/arrow-left-no-24.gif">
+</file>
+<file name="arrow-left-no-24.png"
url="email/templates/default/images/moz/arrow-left-no-24.png">
+</file>
+<file name="arrow-right-16.gif"
url="email/templates/default/images/moz/arrow-right-16.gif">
+</file>
+<file name="arrow-right-16.png"
url="email/templates/default/images/moz/arrow-right-16.png">
+</file>
+<file name="arrow-right-24.gif"
url="email/templates/default/images/moz/arrow-right-24.gif">
+</file>
+<file name="arrow-right-24.png"
url="email/templates/default/images/moz/arrow-right-24.png">
+</file>
+<file name="arrow-right-no-16.gif"
url="email/templates/default/images/moz/arrow-right-no-16.gif">
+</file>
+<file name="arrow-right-no-16.png"
url="email/templates/default/images/moz/arrow-right-no-16.png">
+</file>
+<file name="arrow-right-no-24.gif"
url="email/templates/default/images/moz/arrow-right-no-24.gif">
+</file>
+<file name="arrow-right-no-24.png"
url="email/templates/default/images/moz/arrow-right-no-24.png">
+</file>
+<file name="compose-message-16.gif"
url="email/templates/default/images/moz/compose-message-16.gif">
+</file>
+<file name="compose-message-16.png"
url="email/templates/default/images/moz/compose-message-16.png">
+</file>
+<file name="compose-message-24.gif"
url="email/templates/default/images/moz/compose-message-24.gif">
+</file>
+<file name="compose-message-24.png"
url="email/templates/default/images/moz/compose-message-24.png">
+</file>
+<file name="customize-16.gif"
url="email/templates/default/images/moz/customize-16.gif">
+</file>
+<file name="customize-16.png"
url="email/templates/default/images/moz/customize-16.png">
+</file>
+<file name="customize-24.gif"
url="email/templates/default/images/moz/customize-24.gif">
+</file>
+<file name="customize-24.png"
url="email/templates/default/images/moz/customize-24.png">
+</file>
+<file name="delete-message.gif"
url="email/templates/default/images/moz/delete-message.gif">
+</file>
+<file name="delete-message.png"
url="email/templates/default/images/moz/delete-message.png">
+</file>
+<file name="filters-16.gif"
url="email/templates/default/images/moz/filters-16.gif">
+</file>
+<file name="filters-16.png"
url="email/templates/default/images/moz/filters-16.png">
+</file>
+<file name="filters-24.gif"
url="email/templates/default/images/moz/filters-24.gif">
+</file>
+<file name="filters-24.png"
url="email/templates/default/images/moz/filters-24.png">
+</file>
+<file name="folder-16.gif"
url="email/templates/default/images/moz/folder-16.gif">
+</file>
+<file name="folder-16.png"
url="email/templates/default/images/moz/folder-16.png">
+</file>
+<file name="folder-24.gif"
url="email/templates/default/images/moz/folder-24.gif">
+</file>
+<file name="folder-24.png"
url="email/templates/default/images/moz/folder-24.png">
+</file>
+<file name="forward.gif" url="email/templates/default/images/moz/forward.gif">
+</file>
+<file name="forward.png" url="email/templates/default/images/moz/forward.png">
+</file>
+<file name="reply-all.gif"
url="email/templates/default/images/moz/reply-all.gif">
+</file>
+<file name="reply-all.png"
url="email/templates/default/images/moz/reply-all.png">
+</file>
+<file name="reply.gif" url="email/templates/default/images/moz/reply.gif">
+</file>
+<file name="reply.png" url="email/templates/default/images/moz/reply.png">
+</file>
+<file name="send-16.gif" url="email/templates/default/images/moz/send-16.gif">
+</file>
+<file name="send-16.png" url="email/templates/default/images/moz/send-16.png">
+</file>
+<file name="send-24.gif" url="email/templates/default/images/moz/send-24.gif">
+</file>
+<file name="send-24.png" url="email/templates/default/images/moz/send-24.png">
+</file>
+<file name="spellcheck-16.gif"
url="email/templates/default/images/moz/spellcheck-16.gif">
+</file>
+<file name="spellcheck-16.png"
url="email/templates/default/images/moz/spellcheck-16.png">
+</file>
+<file name="spellcheck-24.gif"
url="email/templates/default/images/moz/spellcheck-24.gif">
+</file>
+<file name="spellcheck-24.png"
url="email/templates/default/images/moz/spellcheck-24.png">
+</file>
+<file name="trash-16.gif"
url="email/templates/default/images/moz/trash-16.gif">
+</file>
+<file name="trash-16.png"
url="email/templates/default/images/moz/trash-16.png">
+</file>
+<file name="trash-24.gif"
url="email/templates/default/images/moz/trash-24.gif">
+</file>
+<file name="trash-24.png"
url="email/templates/default/images/moz/trash-24.png">
+</file>
+<file name="search-16.gif"
url="email/templates/default/images/moz/search-16.gif">
+</file>
+<file name="search-16.png"
url="email/templates/default/images/moz/search-16.png">
+</file>
+<file name="search-24.gif"
url="email/templates/default/images/moz/search-24.gif">
+</file>
+<file name="search-24.png"
url="email/templates/default/images/moz/search-24.png">
+</file>
+</folder>
+<folder name="noia" url="email/templates/default/images/noia">
+<file name="accounts-16.gif"
url="email/templates/default/images/noia/accounts-16.gif">
+</file>
+<file name="accounts-16.png"
url="email/templates/default/images/noia/accounts-16.png">
+</file>
+<file name="accounts-24.gif"
url="email/templates/default/images/noia/accounts-24.gif">
+</file>
+<file name="accounts-24.png"
url="email/templates/default/images/noia/accounts-24.png">
+</file>
+<file name="add-attachment-16.gif"
url="email/templates/default/images/noia/add-attachment-16.gif">
+</file>
+<file name="add-attachment-16.png"
url="email/templates/default/images/noia/add-attachment-16.png">
+</file>
+<file name="add-attachment-24.gif"
url="email/templates/default/images/noia/add-attachment-24.gif">
+</file>
+<file name="add-attachment-24.png"
url="email/templates/default/images/noia/add-attachment-24.png">
+</file>
+<file name="address-conduit-16.gif"
url="email/templates/default/images/noia/address-conduit-16.gif">
+</file>
+<file name="address-conduit-16.png"
url="email/templates/default/images/noia/address-conduit-16.png">
+</file>
+<file name="address-conduit-24.gif"
url="email/templates/default/images/noia/address-conduit-24.gif">
+</file>
+<file name="address-conduit-24.png"
url="email/templates/default/images/noia/address-conduit-24.png">
+</file>
+<file name="arrow-2left-16.gif"
url="email/templates/default/images/noia/arrow-2left-16.gif">
+</file>
+<file name="arrow-2left-16.png"
url="email/templates/default/images/noia/arrow-2left-16.png">
+</file>
+<file name="arrow-2left-24.gif"
url="email/templates/default/images/noia/arrow-2left-24.gif">
+</file>
+<file name="arrow-2left-24.png"
url="email/templates/default/images/noia/arrow-2left-24.png">
+</file>
+<file name="arrow-2left-no-16.gif"
url="email/templates/default/images/noia/arrow-2left-no-16.gif">
+</file>
+<file name="arrow-2left-no-16.png"
url="email/templates/default/images/noia/arrow-2left-no-16.png">
+</file>
+<file name="arrow-2left-no-24.gif"
url="email/templates/default/images/noia/arrow-2left-no-24.gif">
+</file>
+<file name="arrow-2left-no-24.png"
url="email/templates/default/images/noia/arrow-2left-no-24.png">
+</file>
+<file name="arrow-2right-16.gif"
url="email/templates/default/images/noia/arrow-2right-16.gif">
+</file>
+<file name="arrow-2right-16.png"
url="email/templates/default/images/noia/arrow-2right-16.png">
+</file>
+<file name="arrow-2right-24.gif"
url="email/templates/default/images/noia/arrow-2right-24.gif">
+</file>
+<file name="arrow-2right-24.png"
url="email/templates/default/images/noia/arrow-2right-24.png">
+</file>
+<file name="arrow-2right-no-16.gif"
url="email/templates/default/images/noia/arrow-2right-no-16.gif">
+</file>
+<file name="arrow-2right-no-16.png"
url="email/templates/default/images/noia/arrow-2right-no-16.png">
+</file>
+<file name="arrow-2right-no-24.gif"
url="email/templates/default/images/noia/arrow-2right-no-24.gif">
+</file>
+<file name="arrow-2right-no-24.png"
url="email/templates/default/images/noia/arrow-2right-no-24.png">
+</file>
+<file name="arrow-left-16.gif"
url="email/templates/default/images/noia/arrow-left-16.gif">
+</file>
+<file name="arrow-left-16.png"
url="email/templates/default/images/noia/arrow-left-16.png">
+</file>
+<file name="arrow-left-24.gif"
url="email/templates/default/images/noia/arrow-left-24.gif">
+</file>
+<file name="arrow-left-24.png"
url="email/templates/default/images/noia/arrow-left-24.png">
+</file>
+<file name="arrow-left-no-16.gif"
url="email/templates/default/images/noia/arrow-left-no-16.gif">
+</file>
+<file name="arrow-left-no-16.png"
url="email/templates/default/images/noia/arrow-left-no-16.png">
+</file>
+<file name="arrow-left-no-24.gif"
url="email/templates/default/images/noia/arrow-left-no-24.gif">
+</file>
+<file name="arrow-left-no-24.png"
url="email/templates/default/images/noia/arrow-left-no-24.png">
+</file>
+<file name="arrow-right-16.gif"
url="email/templates/default/images/noia/arrow-right-16.gif">
+</file>
+<file name="arrow-right-16.png"
url="email/templates/default/images/noia/arrow-right-16.png">
+</file>
+<file name="arrow-right-24.gif"
url="email/templates/default/images/noia/arrow-right-24.gif">
+</file>
+<file name="arrow-right-24.png"
url="email/templates/default/images/noia/arrow-right-24.png">
+</file>
+<file name="arrow-right-no-16.gif"
url="email/templates/default/images/noia/arrow-right-no-16.gif">
+</file>
+<file name="arrow-right-no-16.png"
url="email/templates/default/images/noia/arrow-right-no-16.png">
+</file>
+<file name="arrow-right-no-24.gif"
url="email/templates/default/images/noia/arrow-right-no-24.gif">
+</file>
+<file name="arrow-right-no-24.png"
url="email/templates/default/images/noia/arrow-right-no-24.png">
+</file>
+<file name="compose-message-16.gif"
url="email/templates/default/images/noia/compose-message-16.gif">
+</file>
+<file name="compose-message-16.png"
url="email/templates/default/images/noia/compose-message-16.png">
+</file>
+<file name="compose-message-24.gif"
url="email/templates/default/images/noia/compose-message-24.gif">
+</file>
+<file name="compose-message-24.png"
url="email/templates/default/images/noia/compose-message-24.png">
+</file>
+<file name="customize-16.gif"
url="email/templates/default/images/noia/customize-16.gif">
+</file>
+<file name="customize-16.png"
url="email/templates/default/images/noia/customize-16.png">
+</file>
+<file name="customize-24.gif"
url="email/templates/default/images/noia/customize-24.gif">
+</file>
+<file name="customize-24.png"
url="email/templates/default/images/noia/customize-24.png">
+</file>
+<file name="delete-message.gif"
url="email/templates/default/images/noia/delete-message.gif">
+</file>
+<file name="delete-message.png"
url="email/templates/default/images/noia/delete-message.png">
+</file>
+<file name="envelope.gif"
url="email/templates/default/images/noia/envelope.gif">
+</file>
+<file name="envelope.png"
url="email/templates/default/images/noia/envelope.png">
+</file>
+<file name="filters-16.gif"
url="email/templates/default/images/noia/filters-16.gif">
+</file>
+<file name="filters-16.png"
url="email/templates/default/images/noia/filters-16.png">
+</file>
+<file name="filters-24.gif"
url="email/templates/default/images/noia/filters-24.gif">
+</file>
+<file name="filters-24.png"
url="email/templates/default/images/noia/filters-24.png">
+</file>
+<file name="folder-16.gif"
url="email/templates/default/images/noia/folder-16.gif">
+</file>
+<file name="folder-16.png"
url="email/templates/default/images/noia/folder-16.png">
+</file>
+<file name="folder-24.gif"
url="email/templates/default/images/noia/folder-24.gif">
+</file>
+<file name="folder-24.png"
url="email/templates/default/images/noia/folder-24.png">
+</file>
+<file name="forward.gif" url="email/templates/default/images/noia/forward.gif">
+</file>
+<file name="forward.png" url="email/templates/default/images/noia/forward.png">
+</file>
+<file name="next-message.gif"
url="email/templates/default/images/noia/next-message.gif">
+</file>
+<file name="next-message.png"
url="email/templates/default/images/noia/next-message.png">
+</file>
+<file name="noia.changelog"
url="email/templates/default/images/noia/noia.changelog">
+</file>
+<file name="noia.gpl.txt"
url="email/templates/default/images/noia/noia.gpl.txt">
+</file>
+<file name="noia.license"
url="email/templates/default/images/noia/noia.license">
+</file>
+<file name="noia.readme" url="email/templates/default/images/noia/noia.readme">
+</file>
+<file name="previous-message.gif"
url="email/templates/default/images/noia/previous-message.gif">
+</file>
+<file name="previous-message.png"
url="email/templates/default/images/noia/previous-message.png">
+</file>
+<file name="reply-all.gif"
url="email/templates/default/images/noia/reply-all.gif">
+</file>
+<file name="reply-all.png"
url="email/templates/default/images/noia/reply-all.png">
+</file>
+<file name="reply.gif" url="email/templates/default/images/noia/reply.gif">
+</file>
+<file name="reply.png" url="email/templates/default/images/noia/reply.png">
+</file>
+<file name="send-16.gif" url="email/templates/default/images/noia/send-16.gif">
+</file>
+<file name="send-16.png" url="email/templates/default/images/noia/send-16.png">
+</file>
+<file name="send-24.gif" url="email/templates/default/images/noia/send-24.gif">
+</file>
+<file name="send-24.png" url="email/templates/default/images/noia/send-24.png">
+</file>
+<file name="spellcheck-16.gif"
url="email/templates/default/images/noia/spellcheck-16.gif">
+</file>
+<file name="spellcheck-16.png"
url="email/templates/default/images/noia/spellcheck-16.png">
+</file>
+<file name="spellcheck-24.gif"
url="email/templates/default/images/noia/spellcheck-24.gif">
+</file>
+<file name="spellcheck-24.png"
url="email/templates/default/images/noia/spellcheck-24.png">
+</file>
+<file name="trash-16.gif"
url="email/templates/default/images/noia/trash-16.gif">
+</file>
+<file name="trash-16.png"
url="email/templates/default/images/noia/trash-16.png">
+</file>
+<file name="trash-24.gif"
url="email/templates/default/images/noia/trash-24.gif">
+</file>
+<file name="trash-24.png"
url="email/templates/default/images/noia/trash-24.png">
+</file>
+<file name="search-16.gif"
url="email/templates/default/images/noia/search-16.gif">
+</file>
+<file name="search-16.png"
url="email/templates/default/images/noia/search-16.png">
+</file>
+<file name="search-24.gif"
url="email/templates/default/images/noia/search-24.gif">
+</file>
+<file name="search-24.png"
url="email/templates/default/images/noia/search-24.png">
+</file>
+</folder>
+</folder>
+</folder>
+<folder name="idots" url="email/templates/idots">
+<folder name="images" url="email/templates/idots/images">
+<file name="navbar.png" url="email/templates/idots/images/navbar.png">
+</file>
+</folder>
+</folder>
+<folder name="idsociety" url="email/templates/idsociety">
+<folder name="images" url="email/templates/idsociety/images">
+<file name="check.gif" url="email/templates/idsociety/images/check.gif">
+</file>
+<file name="check.png" url="email/templates/idsociety/images/check.png">
+</file>
+<file name="evo-accounts-16.gif"
url="email/templates/idsociety/images/evo-accounts-16.gif">
+</file>
+<file name="evo-accounts-16.png"
url="email/templates/idsociety/images/evo-accounts-16.png">
+</file>
+<file name="evo-accounts-24.gif"
url="email/templates/idsociety/images/evo-accounts-24.gif">
+</file>
+<file name="evo-accounts-24.png"
url="email/templates/idsociety/images/evo-accounts-24.png">
+</file>
+<file name="evo-add-attachment-16.gif"
url="email/templates/idsociety/images/evo-add-attachment-16.gif">
+</file>
+<file name="evo-add-attachment-16.png"
url="email/templates/idsociety/images/evo-add-attachment-16.png">
+</file>
+<file name="evo-add-attachment-24.gif"
url="email/templates/idsociety/images/evo-add-attachment-24.gif">
+</file>
+<file name="evo-add-attachment-24.png"
url="email/templates/idsociety/images/evo-add-attachment-24.png">
+</file>
+<file name="evo-add-attachment.gif"
url="email/templates/idsociety/images/evo-add-attachment.gif">
+</file>
+<file name="evo-add-attachment.png"
url="email/templates/idsociety/images/evo-add-attachment.png">
+</file>
+<file name="evo-address-conduit-16.gif"
url="email/templates/idsociety/images/evo-address-conduit-16.gif">
+</file>
+<file name="evo-address-conduit-16.png"
url="email/templates/idsociety/images/evo-address-conduit-16.png">
+</file>
+<file name="evo-address-conduit-24.gif"
url="email/templates/idsociety/images/evo-address-conduit-24.gif">
+</file>
+<file name="evo-address-conduit-24.png"
url="email/templates/idsociety/images/evo-address-conduit-24.png">
+</file>
+<file name="evo-arrow-2left-16.gif"
url="email/templates/idsociety/images/evo-arrow-2left-16.gif">
+</file>
+<file name="evo-arrow-2left-16.png"
url="email/templates/idsociety/images/evo-arrow-2left-16.png">
+</file>
+<file name="evo-arrow-2left-24.gif"
url="email/templates/idsociety/images/evo-arrow-2left-24.gif">
+</file>
+<file name="evo-arrow-2left-24.png"
url="email/templates/idsociety/images/evo-arrow-2left-24.png">
+</file>
+<file name="evo-arrow-2left-no-16.gif"
url="email/templates/idsociety/images/evo-arrow-2left-no-16.gif">
+</file>
+<file name="evo-arrow-2left-no-16.png"
url="email/templates/idsociety/images/evo-arrow-2left-no-16.png">
+</file>
+<file name="evo-arrow-2left-no-24.gif"
url="email/templates/idsociety/images/evo-arrow-2left-no-24.gif">
+</file>
+<file name="evo-arrow-2left-no-24.png"
url="email/templates/idsociety/images/evo-arrow-2left-no-24.png">
+</file>
+<file name="evo-arrow-2right-16.gif"
url="email/templates/idsociety/images/evo-arrow-2right-16.gif">
+</file>
+<file name="evo-arrow-2right-16.png"
url="email/templates/idsociety/images/evo-arrow-2right-16.png">
+</file>
+<file name="evo-arrow-2right-24.gif"
url="email/templates/idsociety/images/evo-arrow-2right-24.gif">
+</file>
+<file name="evo-arrow-2right-24.png"
url="email/templates/idsociety/images/evo-arrow-2right-24.png">
+</file>
+<file name="evo-arrow-2right-no-16.gif"
url="email/templates/idsociety/images/evo-arrow-2right-no-16.gif">
+</file>
+<file name="evo-arrow-2right-no-16.png"
url="email/templates/idsociety/images/evo-arrow-2right-no-16.png">
+</file>
+<file name="evo-arrow-2right-no-24.gif"
url="email/templates/idsociety/images/evo-arrow-2right-no-24.gif">
+</file>
+<file name="evo-arrow-2right-no-24.png"
url="email/templates/idsociety/images/evo-arrow-2right-no-24.png">
+</file>
+<file name="evo-arrow-left-16.gif"
url="email/templates/idsociety/images/evo-arrow-left-16.gif">
+</file>
+<file name="evo-arrow-left-16.png"
url="email/templates/idsociety/images/evo-arrow-left-16.png">
+</file>
+<file name="evo-arrow-left-24.gif"
url="email/templates/idsociety/images/evo-arrow-left-24.gif">
+</file>
+<file name="evo-arrow-left-24.png"
url="email/templates/idsociety/images/evo-arrow-left-24.png">
+</file>
+<file name="evo-arrow-left-no-16.gif"
url="email/templates/idsociety/images/evo-arrow-left-no-16.gif">
+</file>
+<file name="evo-arrow-left-no-16.png"
url="email/templates/idsociety/images/evo-arrow-left-no-16.png">
+</file>
+<file name="evo-arrow-left-no-24.gif"
url="email/templates/idsociety/images/evo-arrow-left-no-24.gif">
+</file>
+<file name="evo-arrow-left-no-24.png"
url="email/templates/idsociety/images/evo-arrow-left-no-24.png">
+</file>
+<file name="evo-arrow-right-16.gif"
url="email/templates/idsociety/images/evo-arrow-right-16.gif">
+</file>
+<file name="evo-arrow-right-16.png"
url="email/templates/idsociety/images/evo-arrow-right-16.png">
+</file>
+<file name="evo-arrow-right-24.gif"
url="email/templates/idsociety/images/evo-arrow-right-24.gif">
+</file>
+<file name="evo-arrow-right-24.png"
url="email/templates/idsociety/images/evo-arrow-right-24.png">
+</file>
+<file name="evo-arrow-right-no-16.gif"
url="email/templates/idsociety/images/evo-arrow-right-no-16.gif">
+</file>
+<file name="evo-arrow-right-no-16.png"
url="email/templates/idsociety/images/evo-arrow-right-no-16.png">
+</file>
+<file name="evo-arrow-right-no-24.gif"
url="email/templates/idsociety/images/evo-arrow-right-no-24.gif">
+</file>
+<file name="evo-arrow-right-no-24.png"
url="email/templates/idsociety/images/evo-arrow-right-no-24.png">
+</file>
+<file name="evo-compose-message-16.gif"
url="email/templates/idsociety/images/evo-compose-message-16.gif">
+</file>
+<file name="evo-compose-message-16.png"
url="email/templates/idsociety/images/evo-compose-message-16.png">
+</file>
+<file name="evo-compose-message-24.gif"
url="email/templates/idsociety/images/evo-compose-message-24.gif">
+</file>
+<file name="evo-compose-message-24.png"
url="email/templates/idsociety/images/evo-compose-message-24.png">
+</file>
+<file name="evo-customize-16.gif"
url="email/templates/idsociety/images/evo-customize-16.gif">
+</file>
+<file name="evo-customize-16.png"
url="email/templates/idsociety/images/evo-customize-16.png">
+</file>
+<file name="evo-customize-24.gif"
url="email/templates/idsociety/images/evo-customize-24.gif">
+</file>
+<file name="evo-customize-24.png"
url="email/templates/idsociety/images/evo-customize-24.png">
+</file>
+<file name="evo-customize3-24.gif"
url="email/templates/idsociety/images/evo-customize3-24.gif">
+</file>
+<file name="evo-customize3-24.png"
url="email/templates/idsociety/images/evo-customize3-24.png">
+</file>
+<file name="evo-customize4-24.gif"
url="email/templates/idsociety/images/evo-customize4-24.gif">
+</file>
+<file name="evo-customize4-24.png"
url="email/templates/idsociety/images/evo-customize4-24.png">
+</file>
+<file name="evo-delete-message.gif"
url="email/templates/idsociety/images/evo-delete-message.gif">
+</file>
+<file name="evo-delete-message.png"
url="email/templates/idsociety/images/evo-delete-message.png">
+</file>
+<file name="evo-envelope.gif"
url="email/templates/idsociety/images/evo-envelope.gif">
+</file>
+<file name="evo-envelope.png"
url="email/templates/idsociety/images/evo-envelope.png">
+</file>
+<file name="evo-filters-16.gif"
url="email/templates/idsociety/images/evo-filters-16.gif">
+</file>
+<file name="evo-filters-16.png"
url="email/templates/idsociety/images/evo-filters-16.png">
+</file>
+<file name="evo-filters-24.gif"
url="email/templates/idsociety/images/evo-filters-24.gif">
+</file>
+<file name="evo-filters-24.png"
url="email/templates/idsociety/images/evo-filters-24.png">
+</file>
+<file name="evo-filters-config-24.gif"
url="email/templates/idsociety/images/evo-filters-config-24.gif">
+</file>
+<file name="evo-filters-config-24.png"
url="email/templates/idsociety/images/evo-filters-config-24.png">
+</file>
+<file name="evo-folder-16.gif"
url="email/templates/idsociety/images/evo-folder-16.gif">
+</file>
+<file name="evo-folder-16.png"
url="email/templates/idsociety/images/evo-folder-16.png">
+</file>
+<file name="evo-folder-24.gif"
url="email/templates/idsociety/images/evo-folder-24.gif">
+</file>
+<file name="evo-folder-24.png"
url="email/templates/idsociety/images/evo-folder-24.png">
+</file>
+<file name="evo-folder-config-16.gif"
url="email/templates/idsociety/images/evo-folder-config-16.gif">
+</file>
+<file name="evo-folder-config-16.png"
url="email/templates/idsociety/images/evo-folder-config-16.png">
+</file>
+<file name="evo-folder-config-24.gif"
url="email/templates/idsociety/images/evo-folder-config-24.gif">
+</file>
+<file name="evo-folder-config-24.png"
url="email/templates/idsociety/images/evo-folder-config-24.png">
+</file>
+<file name="evo-folder-config2-24.gif"
url="email/templates/idsociety/images/evo-folder-config2-24.gif">
+</file>
+<file name="evo-folder-config2-24.png"
url="email/templates/idsociety/images/evo-folder-config2-24.png">
+</file>
+<file name="evo-forward.gif"
url="email/templates/idsociety/images/evo-forward.gif">
+</file>
+<file name="evo-forward.png"
url="email/templates/idsociety/images/evo-forward.png">
+</file>
+<file name="evo-move-message.gif"
url="email/templates/idsociety/images/evo-move-message.gif">
+</file>
+<file name="evo-move-message.png"
url="email/templates/idsociety/images/evo-move-message.png">
+</file>
+<file name="evo-next-message.gif"
url="email/templates/idsociety/images/evo-next-message.gif">
+</file>
+<file name="evo-next-message.png"
url="email/templates/idsociety/images/evo-next-message.png">
+</file>
+<file name="evo-previous-message.gif"
url="email/templates/idsociety/images/evo-previous-message.gif">
+</file>
+<file name="evo-previous-message.png"
url="email/templates/idsociety/images/evo-previous-message.png">
+</file>
+<file name="evo-reply-all.gif"
url="email/templates/idsociety/images/evo-reply-all.gif">
+</file>
+<file name="evo-reply-all.png"
url="email/templates/idsociety/images/evo-reply-all.png">
+</file>
+<file name="evo-reply-all2.gif"
url="email/templates/idsociety/images/evo-reply-all2.gif">
+</file>
+<file name="evo-reply-all2.png"
url="email/templates/idsociety/images/evo-reply-all2.png">
+</file>
+<file name="evo-reply-to-all.gif"
url="email/templates/idsociety/images/evo-reply-to-all.gif">
+</file>
+<file name="evo-reply-to-all.png"
url="email/templates/idsociety/images/evo-reply-to-all.png">
+</file>
+<file name="evo-reply.gif"
url="email/templates/idsociety/images/evo-reply.gif">
+</file>
+<file name="evo-reply.png"
url="email/templates/idsociety/images/evo-reply.png">
+</file>
+<file name="evo-send-16.gif"
url="email/templates/idsociety/images/evo-send-16.gif">
+</file>
+<file name="evo-send-16.png"
url="email/templates/idsociety/images/evo-send-16.png">
+</file>
+<file name="evo-send-24.gif"
url="email/templates/idsociety/images/evo-send-24.gif">
+</file>
+<file name="evo-send-24.png"
url="email/templates/idsociety/images/evo-send-24.png">
+</file>
+<file name="evo-spellcheck-16.gif"
url="email/templates/idsociety/images/evo-spellcheck-16.gif">
+</file>
+<file name="evo-spellcheck-16.png"
url="email/templates/idsociety/images/evo-spellcheck-16.png">
+</file>
+<file name="evo-spellcheck-24.gif"
url="email/templates/idsociety/images/evo-spellcheck-24.gif">
+</file>
+<file name="evo-spellcheck-24.png"
url="email/templates/idsociety/images/evo-spellcheck-24.png">
+</file>
+<file name="evo-trash-16.gif"
url="email/templates/idsociety/images/evo-trash-16.gif">
+</file>
+<file name="evo-trash-16.png"
url="email/templates/idsociety/images/evo-trash-16.png">
+</file>
+<file name="evo-trash-24.gif"
url="email/templates/idsociety/images/evo-trash-24.gif">
+</file>
+<file name="evo-trash-24.png"
url="email/templates/idsociety/images/evo-trash-24.png">
+</file>
+<file name="moz-accounts-16.gif"
url="email/templates/idsociety/images/moz-accounts-16.gif">
+</file>
+<file name="moz-accounts-16.png"
url="email/templates/idsociety/images/moz-accounts-16.png">
+</file>
+<file name="moz-accounts-24.gif"
url="email/templates/idsociety/images/moz-accounts-24.gif">
+</file>
+<file name="moz-accounts-24.png"
url="email/templates/idsociety/images/moz-accounts-24.png">
+</file>
+<file name="moz-add-attachment-16.gif"
url="email/templates/idsociety/images/moz-add-attachment-16.gif">
+</file>
+<file name="moz-add-attachment-16.png"
url="email/templates/idsociety/images/moz-add-attachment-16.png">
+</file>
+<file name="moz-add-attachment-24.gif"
url="email/templates/idsociety/images/moz-add-attachment-24.gif">
+</file>
+<file name="moz-add-attachment-24.png"
url="email/templates/idsociety/images/moz-add-attachment-24.png">
+</file>
+<file name="moz-address-conduit-16.gif"
url="email/templates/idsociety/images/moz-address-conduit-16.gif">
+</file>
+<file name="moz-address-conduit-16.png"
url="email/templates/idsociety/images/moz-address-conduit-16.png">
+</file>
+<file name="moz-address-conduit-24.gif"
url="email/templates/idsociety/images/moz-address-conduit-24.gif">
+</file>
+<file name="moz-address-conduit-24.png"
url="email/templates/idsociety/images/moz-address-conduit-24.png">
+</file>
+<file name="moz-arrow-2left-16.gif"
url="email/templates/idsociety/images/moz-arrow-2left-16.gif">
+</file>
+<file name="moz-arrow-2left-16.png"
url="email/templates/idsociety/images/moz-arrow-2left-16.png">
+</file>
+<file name="moz-arrow-2left-24.gif"
url="email/templates/idsociety/images/moz-arrow-2left-24.gif">
+</file>
+<file name="moz-arrow-2left-24.png"
url="email/templates/idsociety/images/moz-arrow-2left-24.png">
+</file>
+<file name="moz-arrow-2left-no-16.gif"
url="email/templates/idsociety/images/moz-arrow-2left-no-16.gif">
+</file>
+<file name="moz-arrow-2left-no-16.png"
url="email/templates/idsociety/images/moz-arrow-2left-no-16.png">
+</file>
+<file name="moz-arrow-2left-no-24.gif"
url="email/templates/idsociety/images/moz-arrow-2left-no-24.gif">
+</file>
+<file name="moz-arrow-2left-no-24.png"
url="email/templates/idsociety/images/moz-arrow-2left-no-24.png">
+</file>
+<file name="moz-arrow-2right-16.gif"
url="email/templates/idsociety/images/moz-arrow-2right-16.gif">
+</file>
+<file name="moz-arrow-2right-16.png"
url="email/templates/idsociety/images/moz-arrow-2right-16.png">
+</file>
+<file name="moz-arrow-2right-24.gif"
url="email/templates/idsociety/images/moz-arrow-2right-24.gif">
+</file>
+<file name="moz-arrow-2right-24.png"
url="email/templates/idsociety/images/moz-arrow-2right-24.png">
+</file>
+<file name="moz-arrow-2right-no-16.gif"
url="email/templates/idsociety/images/moz-arrow-2right-no-16.gif">
+</file>
+<file name="moz-arrow-2right-no-16.png"
url="email/templates/idsociety/images/moz-arrow-2right-no-16.png">
+</file>
+<file name="moz-arrow-2right-no-24.gif"
url="email/templates/idsociety/images/moz-arrow-2right-no-24.gif">
+</file>
+<file name="moz-arrow-2right-no-24.png"
url="email/templates/idsociety/images/moz-arrow-2right-no-24.png">
+</file>
+<file name="moz-arrow-left-16.gif"
url="email/templates/idsociety/images/moz-arrow-left-16.gif">
+</file>
+<file name="moz-arrow-left-16.png"
url="email/templates/idsociety/images/moz-arrow-left-16.png">
+</file>
+<file name="moz-arrow-left-24.gif"
url="email/templates/idsociety/images/moz-arrow-left-24.gif">
+</file>
+<file name="moz-arrow-left-24.png"
url="email/templates/idsociety/images/moz-arrow-left-24.png">
+</file>
+<file name="moz-arrow-left-no-16.gif"
url="email/templates/idsociety/images/moz-arrow-left-no-16.gif">
+</file>
+<file name="moz-arrow-left-no-16.png"
url="email/templates/idsociety/images/moz-arrow-left-no-16.png">
+</file>
+<file name="moz-arrow-left-no-24.gif"
url="email/templates/idsociety/images/moz-arrow-left-no-24.gif">
+</file>
+<file name="moz-arrow-left-no-24.png"
url="email/templates/idsociety/images/moz-arrow-left-no-24.png">
+</file>
+<file name="moz-arrow-right-16.gif"
url="email/templates/idsociety/images/moz-arrow-right-16.gif">
+</file>
+<file name="moz-arrow-right-16.png"
url="email/templates/idsociety/images/moz-arrow-right-16.png">
+</file>
+<file name="moz-arrow-right-24.gif"
url="email/templates/idsociety/images/moz-arrow-right-24.gif">
+</file>
+<file name="moz-arrow-right-24.png"
url="email/templates/idsociety/images/moz-arrow-right-24.png">
+</file>
+<file name="moz-arrow-right-no-16.gif"
url="email/templates/idsociety/images/moz-arrow-right-no-16.gif">
+</file>
+<file name="moz-arrow-right-no-16.png"
url="email/templates/idsociety/images/moz-arrow-right-no-16.png">
+</file>
+<file name="moz-arrow-right-no-24.gif"
url="email/templates/idsociety/images/moz-arrow-right-no-24.gif">
+</file>
+<file name="moz-arrow-right-no-24.png"
url="email/templates/idsociety/images/moz-arrow-right-no-24.png">
+</file>
+<file name="moz-compose-message-16.gif"
url="email/templates/idsociety/images/moz-compose-message-16.gif">
+</file>
+<file name="moz-compose-message-16.png"
url="email/templates/idsociety/images/moz-compose-message-16.png">
+</file>
+<file name="moz-compose-message-24.gif"
url="email/templates/idsociety/images/moz-compose-message-24.gif">
+</file>
+<file name="moz-compose-message-24.png"
url="email/templates/idsociety/images/moz-compose-message-24.png">
+</file>
+<file name="moz-customize-16.gif"
url="email/templates/idsociety/images/moz-customize-16.gif">
+</file>
+<file name="moz-customize-16.png"
url="email/templates/idsociety/images/moz-customize-16.png">
+</file>
+<file name="moz-customize-24.gif"
url="email/templates/idsociety/images/moz-customize-24.gif">
+</file>
+<file name="moz-customize-24.png"
url="email/templates/idsociety/images/moz-customize-24.png">
+</file>
+<file name="moz-delete-message.gif"
url="email/templates/idsociety/images/moz-delete-message.gif">
+</file>
+<file name="moz-delete-message.png"
url="email/templates/idsociety/images/moz-delete-message.png">
+</file>
+<file name="moz-filters-16.gif"
url="email/templates/idsociety/images/moz-filters-16.gif">
+</file>
+<file name="moz-filters-16.png"
url="email/templates/idsociety/images/moz-filters-16.png">
+</file>
+<file name="moz-filters-24.gif"
url="email/templates/idsociety/images/moz-filters-24.gif">
+</file>
+<file name="moz-filters-24.png"
url="email/templates/idsociety/images/moz-filters-24.png">
+</file>
+<file name="moz-folder-16.gif"
url="email/templates/idsociety/images/moz-folder-16.gif">
+</file>
+<file name="moz-folder-16.png"
url="email/templates/idsociety/images/moz-folder-16.png">
+</file>
+<file name="moz-folder-24.gif"
url="email/templates/idsociety/images/moz-folder-24.gif">
+</file>
+<file name="moz-folder-24.png"
url="email/templates/idsociety/images/moz-folder-24.png">
+</file>
+<file name="moz-forward.gif"
url="email/templates/idsociety/images/moz-forward.gif">
+</file>
+<file name="moz-forward.png"
url="email/templates/idsociety/images/moz-forward.png">
+</file>
+<file name="moz-reply-all.gif"
url="email/templates/idsociety/images/moz-reply-all.gif">
+</file>
+<file name="moz-reply-all.png"
url="email/templates/idsociety/images/moz-reply-all.png">
+</file>
+<file name="moz-reply.gif"
url="email/templates/idsociety/images/moz-reply.gif">
+</file>
+<file name="moz-reply.png"
url="email/templates/idsociety/images/moz-reply.png">
+</file>
+<file name="moz-send-16.gif"
url="email/templates/idsociety/images/moz-send-16.gif">
+</file>
+<file name="moz-send-16.png"
url="email/templates/idsociety/images/moz-send-16.png">
+</file>
+<file name="moz-send-24.gif"
url="email/templates/idsociety/images/moz-send-24.gif">
+</file>
+<file name="moz-send-24.png"
url="email/templates/idsociety/images/moz-send-24.png">
+</file>
+<file name="moz-spellcheck-16.gif"
url="email/templates/idsociety/images/moz-spellcheck-16.gif">
+</file>
+<file name="moz-spellcheck-16.png"
url="email/templates/idsociety/images/moz-spellcheck-16.png">
+</file>
+<file name="moz-spellcheck-24.gif"
url="email/templates/idsociety/images/moz-spellcheck-24.gif">
+</file>
+<file name="moz-spellcheck-24.png"
url="email/templates/idsociety/images/moz-spellcheck-24.png">
+</file>
+<file name="moz-trash-16.gif"
url="email/templates/idsociety/images/moz-trash-16.gif">
+</file>
+<file name="moz-trash-16.png"
url="email/templates/idsociety/images/moz-trash-16.png">
+</file>
+<file name="moz-trash-24.gif"
url="email/templates/idsociety/images/moz-trash-24.gif">
+</file>
+<file name="moz-trash-24.png"
url="email/templates/idsociety/images/moz-trash-24.png">
+</file>
+<file name="navbar-over.gif"
url="email/templates/idsociety/images/navbar-over.gif">
+</file>
+<file name="navbar-over.png"
url="email/templates/idsociety/images/navbar-over.png">
+</file>
+<file name="navbar.gif" url="email/templates/idsociety/images/navbar.gif">
+</file>
+<file name="navbar.png" url="email/templates/idsociety/images/navbar.png">
+</file>
+</folder>
+</folder>
+<folder name="probusiness" url="email/templates/probusiness">
+<file name="class_prefs_blocks.tpl"
url="email/templates/probusiness/class_prefs_blocks.tpl">
+</file>
+<file name="class_prefs_ex_accounts.tpl"
url="email/templates/probusiness/class_prefs_ex_accounts.tpl">
+</file>
+<file name="class_prefs_ui.tpl"
url="email/templates/probusiness/class_prefs_ui.tpl">
+</file>
+<file name="compose.tpl" url="email/templates/probusiness/compose.tpl">
+</file>
+<file name="filters.tpl" url="email/templates/probusiness/filters.tpl">
+</file>
+<file name="filters_list.tpl"
url="email/templates/probusiness/filters_list.tpl">
+</file>
+<file name="folder.tpl" url="email/templates/probusiness/folder.tpl">
+</file>
+<file name="index_blocks.tpl"
url="email/templates/probusiness/index_blocks.tpl">
+</file>
+<file name="index_main_b0_l1.tpl"
url="email/templates/probusiness/index_main_b0_l1.tpl">
+</file>
+<file name="index_main_b0_l2.tpl"
url="email/templates/probusiness/index_main_b0_l2.tpl">
+</file>
+<file name="index_mlist.tpl" url="email/templates/probusiness/index_mlist.tpl">
+</file>
+<file name="search_form.tpl" url="email/templates/probusiness/search_form.tpl">
+</file>
+<file name="search_results.tpl"
url="email/templates/probusiness/search_results.tpl">
+</file>
+<file name="search_results_js.tpl"
url="email/templates/probusiness/search_results_js.tpl">
+</file>
+<file name="widget_toolbar.tpl"
url="email/templates/probusiness/widget_toolbar.tpl">
+</file>
+<folder name="images" url="email/templates/probusiness/images">
+<file name="folders.png" url="email/templates/probusiness/images/folders.png">
+</file>
+<file name="navbar.png" url="email/templates/probusiness/images/navbar.png">
+</file>
+</folder>
+</folder>
+</folder>
+</folder>
+<folder name="etemplate">
+<preference-set id="">
+ <string id="import_dirname">Q:\public_html\phpgw_0_9_16\etemplate</string>
+</preference-set>
+<file name="index.php" url="etemplate/index.php">
+</file>
+<file name="phpGtk_test.php" url="etemplate/phpGtk_test.php">
+</file>
+<file name="process_exec.php" url="etemplate/process_exec.php">
+</file>
+<folder name="doc" url="etemplate/doc">
+<file name="db_tools.gif" url="etemplate/doc/db_tools.gif">
+</file>
+<file name="editor.gif" url="etemplate/doc/editor.gif">
+</file>
+<file name="etemplate.html" url="etemplate/doc/etemplate.html">
+</file>
+<file name="gtk.png" url="etemplate/doc/gtk.png">
+</file>
+<file name="list.gif" url="etemplate/doc/list.gif">
+</file>
+<file name="referenz.html" url="etemplate/doc/referenz.html">
+</file>
+<file name="rows.gif" url="etemplate/doc/rows.gif">
+</file>
+<file name="show.gif" url="etemplate/doc/show.gif">
+</file>
+<folder name="et_media" url="etemplate/doc/et_media">
+<file name="index.php" url="etemplate/doc/et_media/index.php">
+</file>
+<file name="install" url="etemplate/doc/et_media/install">
+</file>
+<folder name="inc" url="etemplate/doc/et_media/inc">
+<file name="class.et_media.inc.php"
url="etemplate/doc/et_media/inc/class.et_media.inc.php">
+</file>
+</folder>
+<folder name="setup" url="etemplate/doc/et_media/setup">
+<file name="etemplates.inc.php"
url="etemplate/doc/et_media/setup/etemplates.inc.php">
+</file>
+<file name="phpgw_de.lang" url="etemplate/doc/et_media/setup/phpgw_de.lang">
+</file>
+<file name="phpgw_en.lang" url="etemplate/doc/et_media/setup/phpgw_en.lang">
+</file>
+<file name="phpgw_fr.lang" url="etemplate/doc/et_media/setup/phpgw_fr.lang">
+</file>
+<file name="setup.inc.php" url="etemplate/doc/et_media/setup/setup.inc.php">
+</file>
+<file name="tables_current.inc.php"
url="etemplate/doc/et_media/setup/tables_current.inc.php">
+</file>
+</folder>
+<folder name="templates" url="etemplate/doc/et_media/templates">
+<folder name="default" url="etemplate/doc/et_media/templates/default">
+<file name="edit.xet" url="etemplate/doc/et_media/templates/default/edit.xet">
+</file>
+<file name="show.rows.xet"
url="etemplate/doc/et_media/templates/default/show.rows.xet">
+</file>
+<file name="show.xet" url="etemplate/doc/et_media/templates/default/show.xet">
+</file>
+<folder name="images" url="etemplate/doc/et_media/templates/default/images">
+<file name="navbar.png"
url="etemplate/doc/et_media/templates/default/images/navbar.png">
+</file>
+</folder>
+</folder>
+</folder>
+</folder>
+<folder name="et_notes" url="etemplate/doc/et_notes">
+<file name="index.php" url="etemplate/doc/et_notes/index.php">
+</file>
+<folder name="inc" url="etemplate/doc/et_notes/inc">
+<file name="class.bo.inc.php"
url="etemplate/doc/et_notes/inc/class.bo.inc.php">
+</file>
+<file name="class.so.inc.php"
url="etemplate/doc/et_notes/inc/class.so.inc.php">
+</file>
+<file name="class.ui.inc.php"
url="etemplate/doc/et_notes/inc/class.ui.inc.php">
+</file>
+<file name="hook_add_def_pref.inc.php"
url="etemplate/doc/et_notes/inc/hook_add_def_pref.inc.php">
+</file>
+<file name="hook_admin.inc.php"
url="etemplate/doc/et_notes/inc/hook_admin.inc.php">
+</file>
+<file name="hook_deleteaccount.inc.php"
url="etemplate/doc/et_notes/inc/hook_deleteaccount.inc.php">
+</file>
+</folder>
+<folder name="setup" url="etemplate/doc/et_notes/setup">
+<file name="etemplates.inc.php"
url="etemplate/doc/et_notes/setup/etemplates.inc.php">
+</file>
+<file name="phpgw_de.lang" url="etemplate/doc/et_notes/setup/phpgw_de.lang">
+</file>
+<file name="phpgw_en.lang" url="etemplate/doc/et_notes/setup/phpgw_en.lang">
+</file>
+<file name="phpgw_fr.lang" url="etemplate/doc/et_notes/setup/phpgw_fr.lang">
+</file>
+<file name="setup.inc.php" url="etemplate/doc/et_notes/setup/setup.inc.php">
+</file>
+<file name="tables_current.inc.php"
url="etemplate/doc/et_notes/setup/tables_current.inc.php">
+</file>
+</folder>
+<folder name="templates" url="etemplate/doc/et_notes/templates">
+<folder name="default" url="etemplate/doc/et_notes/templates/default">
+<file name="delete.xet"
url="etemplate/doc/et_notes/templates/default/delete.xet">
+</file>
+<file name="edit.xet" url="etemplate/doc/et_notes/templates/default/edit.xet">
+</file>
+<file name="index.rows.xet"
url="etemplate/doc/et_notes/templates/default/index.rows.xet">
+</file>
+<file name="index.xet"
url="etemplate/doc/et_notes/templates/default/index.xet">
+</file>
+<file name="preference_acl.tpl"
url="etemplate/doc/et_notes/templates/default/preference_acl.tpl">
+</file>
+<file name="preference_acl_row.tpl"
url="etemplate/doc/et_notes/templates/default/preference_acl_row.tpl">
+</file>
+<file name="preference_colspan.tpl"
url="etemplate/doc/et_notes/templates/default/preference_colspan.tpl">
+</file>
+<file name="view.xet" url="etemplate/doc/et_notes/templates/default/view.xet">
+</file>
+<folder name="images" url="etemplate/doc/et_notes/templates/default/images">
+<file name="navbar.png"
url="etemplate/doc/et_notes/templates/default/images/navbar.png">
+</file>
+</folder>
+</folder>
+<folder name="idsociety" url="etemplate/doc/et_notes/templates/idsociety">
+<folder name="images" url="etemplate/doc/et_notes/templates/idsociety/images">
+<file name="navbar-over.gif"
url="etemplate/doc/et_notes/templates/idsociety/images/navbar-over.gif">
+</file>
+<file name="navbar-over.png"
url="etemplate/doc/et_notes/templates/idsociety/images/navbar-over.png">
+</file>
+<file name="navbar.gif"
url="etemplate/doc/et_notes/templates/idsociety/images/navbar.gif">
+</file>
+<file name="navbar.png"
url="etemplate/doc/et_notes/templates/idsociety/images/navbar.png">
+</file>
+</folder>
+</folder>
+</folder>
+</folder>
+</folder>
+<folder name="inc" url="etemplate/inc">
+<file name="class.boetemplate.inc.php"
url="etemplate/inc/class.boetemplate.inc.php">
+</file>
+<file name="class.date_widget.inc.php"
url="etemplate/inc/class.date_widget.inc.php">
+</file>
+<file name="class.db_tools.inc.php" url="etemplate/inc/class.db_tools.inc.php">
+</file>
+<file name="class.editor.inc.php" url="etemplate/inc/class.editor.inc.php">
+</file>
+<file name="class.etemplate.inc.php"
url="etemplate/inc/class.etemplate.inc.php">
+</file>
+<file name="class.html.inc.php" url="etemplate/inc/class.html.inc.php">
+</file>
+<file name="class.link_widget.inc.php"
url="etemplate/inc/class.link_widget.inc.php">
+</file>
+<file name="class.nextmatch_widget.inc.php"
url="etemplate/inc/class.nextmatch_widget.inc.php">
+</file>
+<file name="class.sbox2.inc.php" url="etemplate/inc/class.sbox2.inc.php">
+</file>
+<file name="class.select_widget.inc.php"
url="etemplate/inc/class.select_widget.inc.php">
+</file>
+<file name="class.so_sql.inc.php" url="etemplate/inc/class.so_sql.inc.php">
+</file>
+<file name="class.soetemplate.inc.php"
url="etemplate/inc/class.soetemplate.inc.php">
+</file>
+<file name="class.solangfile.inc.php"
url="etemplate/inc/class.solangfile.inc.php">
+</file>
+<file name="class.tab_widget.inc.php"
url="etemplate/inc/class.tab_widget.inc.php">
+</file>
+<file name="class.uietemplate.inc.php"
url="etemplate/inc/class.uietemplate.inc.php">
+</file>
+<file name="class.uietemplate_gtk.inc.php"
url="etemplate/inc/class.uietemplate_gtk.inc.php">
+</file>
+<file name="class.xmltool.inc.php" url="etemplate/inc/class.xmltool.inc.php">
+</file>
+<file name="class.xslt_widget.inc.php"
url="etemplate/inc/class.xslt_widget.inc.php">
+</file>
+<file name="class.xul_io.inc.php" url="etemplate/inc/class.xul_io.inc.php">
+</file>
+<file name="get_var.php" url="etemplate/inc/get_var.php">
+</file>
+</folder>
+<folder name="js" url="etemplate/js">
+<file name="etemplate.js" url="etemplate/js/etemplate.js">
+</file>
+</folder>
+<folder name="setup" url="etemplate/setup">
+<file name="etemplates.inc.php" url="etemplate/setup/etemplates.inc.php">
+</file>
+<file name="phpgw_de.lang" url="etemplate/setup/phpgw_de.lang">
+</file>
+<file name="phpgw_en.lang" url="etemplate/setup/phpgw_en.lang">
+</file>
+<file name="phpgw_fr.lang" url="etemplate/setup/phpgw_fr.lang">
+</file>
+<file name="phpgw_sv.lang" url="etemplate/setup/phpgw_sv.lang">
+</file>
+<file name="setup.inc.php" url="etemplate/setup/setup.inc.php">
+</file>
+<file name="tables_baseline.inc.php"
url="etemplate/setup/tables_baseline.inc.php">
+</file>
+<file name="tables_current.inc.php"
url="etemplate/setup/tables_current.inc.php">
+</file>
+<file name="tables_update.inc.php" url="etemplate/setup/tables_update.inc.php">
+</file>
+</folder>
+<folder name="templates" url="etemplate/templates">
+<folder name="default" url="etemplate/templates/default">
+<file name="disable_test.xet"
url="etemplate/templates/default/disable_test.xet">
+</file>
+<file name="editor.cell.vbox.xet"
url="etemplate/templates/default/editor.cell.vbox.xet">
+</file>
+<file name="editor.xet" url="etemplate/templates/default/editor.xet">
+</file>
+<file name="link_widget.attach.xet"
url="etemplate/templates/default/link_widget.attach.xet">
+</file>
+<file name="link_widget.create.xet"
url="etemplate/templates/default/link_widget.create.xet">
+</file>
+<file name="link_widget.list.xet"
url="etemplate/templates/default/link_widget.list.xet">
+</file>
+<file name="link_widget.search.xet"
url="etemplate/templates/default/link_widget.search.xet">
+</file>
+<file name="nextmatch_widget.xet"
url="etemplate/templates/default/nextmatch_widget.xet">
+</file>
+<file name="test.xsl" url="etemplate/templates/default/test.xsl">
+</file>
+<file name="vbox.test.xet" url="etemplate/templates/default/vbox.test.xet">
+</file>
+<file name="xslt_widget.test.xet"
url="etemplate/templates/default/xslt_widget.test.xet">
+</file>
+<folder name="images" url="etemplate/templates/default/images">
+<file name="delete.gif" url="etemplate/templates/default/images/delete.gif">
+</file>
+<file name="delete.png" url="etemplate/templates/default/images/delete.png">
+</file>
+<file name="edit.gif" url="etemplate/templates/default/images/edit.gif">
+</file>
+<file name="edit.png" url="etemplate/templates/default/images/edit.png">
+</file>
+<file name="navbar.gif" url="etemplate/templates/default/images/navbar.gif">
+</file>
+<file name="navbar.png" url="etemplate/templates/default/images/navbar.png">
+</file>
+<file name="view.gif" url="etemplate/templates/default/images/view.gif">
+</file>
+<file name="view.png" url="etemplate/templates/default/images/view.png">
+</file>
+</folder>
+</folder>
+<folder name="idots" url="etemplate/templates/idots">
+<folder name="images" url="etemplate/templates/idots/images">
+<file name="navbar.png" url="etemplate/templates/idots/images/navbar.png">
+</file>
+</folder>
+</folder>
+<folder name="idsociety" url="etemplate/templates/idsociety">
+<folder name="images" url="etemplate/templates/idsociety/images">
+<file name="navbar-over.gif"
url="etemplate/templates/idsociety/images/navbar-over.gif">
+</file>
+<file name="navbar-over.png"
url="etemplate/templates/idsociety/images/navbar-over.png">
+</file>
+<file name="navbar.gif" url="etemplate/templates/idsociety/images/navbar.gif">
+</file>
+<file name="navbar.png" url="etemplate/templates/idsociety/images/navbar.png">
+</file>
+</folder>
+</folder>
+</folder>
+</folder>
+<folder name="felamimail">
+<preference-set id="">
+ <string id="import_dirname">Q:\public_html\phpgw_0_9_16\felamimail</string>
+</preference-set>
+<file name="Changelog" url="felamimail/Changelog">
+</file>
+<file name="COPYING" url="felamimail/COPYING">
+</file>
+<file name="index.php" url="felamimail/index.php">
+</file>
+<file name="README" url="felamimail/README">
+</file>
+<file name="TODO" url="felamimail/TODO">
+</file>
+<file name="addressbook.php" url="felamimail/addressbook.php">
+</file>
+<folder name="help" url="felamimail/help">
+<file name="index.php" url="felamimail/help/index.php">
+</file>
+<folder name="EN" url="felamimail/help/EN">
+<file name="felamimail.php" url="felamimail/help/EN/felamimail.php">
+</file>
+</folder>
+</folder>
+<folder name="inc" url="felamimail/inc">
+<file name="class.bocaching.inc.php"
url="felamimail/inc/class.bocaching.inc.php">
+</file>
+<file name="class.bocompose.inc.php"
url="felamimail/inc/class.bocompose.inc.php">
+</file>
+<file name="class.bofelamimail.inc.php"
url="felamimail/inc/class.bofelamimail.inc.php">
+</file>
+<file name="class.bofilter.inc.php"
url="felamimail/inc/class.bofilter.inc.php">
+</file>
+<file name="class.bopreferences.inc.php"
url="felamimail/inc/class.bopreferences.inc.php">
+</file>
+<file name="class.htmlfilter.inc.php"
url="felamimail/inc/class.htmlfilter.inc.php">
+</file>
+<file name="class.phpmailer.inc.php"
url="felamimail/inc/class.phpmailer.inc.php">
+</file>
+<file name="class.sieve.inc.php" url="felamimail/inc/class.sieve.inc.php">
+</file>
+<file name="class.smtp.php" url="felamimail/inc/class.smtp.php">
+</file>
+<file name="class.socaching.inc.php"
url="felamimail/inc/class.socaching.inc.php">
+</file>
+<file name="class.sofelamimail.inc.php"
url="felamimail/inc/class.sofelamimail.inc.php">
+</file>
+<file name="class.sofilter.inc.php"
url="felamimail/inc/class.sofilter.inc.php">
+</file>
+<file name="class.transformdate.inc.php"
url="felamimail/inc/class.transformdate.inc.php">
+</file>
+<file name="class.uicompose.inc.php"
url="felamimail/inc/class.uicompose.inc.php">
+</file>
+<file name="class.uidisplay.inc.php"
url="felamimail/inc/class.uidisplay.inc.php">
+</file>
+<file name="class.uifelamimail.inc.php"
url="felamimail/inc/class.uifelamimail.inc.php">
+</file>
+<file name="class.uifilter.inc.php"
url="felamimail/inc/class.uifilter.inc.php">
+</file>
+<file name="class.uipreferences.inc.php"
url="felamimail/inc/class.uipreferences.inc.php">
+</file>
+<file name="class.uisieve.inc.php" url="felamimail/inc/class.uisieve.inc.php">
+</file>
+<file name="hook_about.inc.php" url="felamimail/inc/hook_about.inc.php">
+</file>
+<file name="hook_admin.inc.php" url="felamimail/inc/hook_admin.inc.php">
+</file>
+<file name="hook_home.inc.php" url="felamimail/inc/hook_home.inc.php">
+</file>
+<file name="hook_manual.inc.php" url="felamimail/inc/hook_manual.inc.php">
+</file>
+<file name="hook_preferences.inc.php"
url="felamimail/inc/hook_preferences.inc.php">
+</file>
+<file name="hook_settings.inc.php" url="felamimail/inc/hook_settings.inc.php">
+</file>
+<file name="hook_sidebox_menu.inc.php"
url="felamimail/inc/hook_sidebox_menu.inc.php">
+</file>
+</folder>
+<folder name="setup" url="felamimail/setup">
+<file name="phpgw_de.lang" url="felamimail/setup/phpgw_de.lang">
+</file>
+<file name="phpgw_en.lang" url="felamimail/setup/phpgw_en.lang">
+</file>
+<file name="phpgw_fi.lang" url="felamimail/setup/phpgw_fi.lang">
+</file>
+<file name="phpgw_fr.lang" url="felamimail/setup/phpgw_fr.lang">
+</file>
+<file name="phpgw_ja.lang" url="felamimail/setup/phpgw_ja.lang">
+</file>
+<file name="phpgw_pl.lang" url="felamimail/setup/phpgw_pl.lang">
+</file>
+<file name="phpgw_pt.lang" url="felamimail/setup/phpgw_pt.lang">
+</file>
+<file name="phpgw_sv.lang" url="felamimail/setup/phpgw_sv.lang">
+</file>
+<file name="setup.inc.php" url="felamimail/setup/setup.inc.php">
+</file>
+<file name="tables_baseline.inc.php"
url="felamimail/setup/tables_baseline.inc.php">
+</file>
+<file name="tables_current.inc.php"
url="felamimail/setup/tables_current.inc.php">
+</file>
+<file name="tables_update.inc.php"
url="felamimail/setup/tables_update.inc.php">
+</file>
+</folder>
+<folder name="templates" url="felamimail/templates">
+<folder name="default" url="felamimail/templates/default">
+<file name="addressbook.tpl"
url="felamimail/templates/default/addressbook.tpl">
+</file>
+<file name="composeForm.tpl"
url="felamimail/templates/default/composeForm.tpl">
+</file>
+<file name="config.tpl" url="felamimail/templates/default/config.tpl">
+</file>
+<file name="filterForm.tpl" url="felamimail/templates/default/filterForm.tpl">
+</file>
+<file name="mainscreen.tpl" url="felamimail/templates/default/mainscreen.tpl">
+</file>
+<file name="preferences.tpl"
url="felamimail/templates/default/preferences.tpl">
+</file>
+<file name="preferences_display.tpl"
url="felamimail/templates/default/preferences_display.tpl">
+</file>
+<file name="preferences_email.tpl"
url="felamimail/templates/default/preferences_email.tpl">
+</file>
+<file name="preferences_folder.tpl"
url="felamimail/templates/default/preferences_folder.tpl">
+</file>
+<file name="preferences_index_order.tpl"
url="felamimail/templates/default/preferences_index_order.tpl">
+</file>
+<file name="preferences_manage_folder.tpl"
url="felamimail/templates/default/preferences_manage_folder.tpl">
+</file>
+<file name="preferences_translate.tpl"
url="felamimail/templates/default/preferences_translate.tpl">
+</file>
+<file name="sieveForm.tpl" url="felamimail/templates/default/sieveForm.tpl">
+</file>
+<file name="view_main.tpl" url="felamimail/templates/default/view_main.tpl">
+</file>
+<file name="view_message.tpl"
url="felamimail/templates/default/view_message.tpl">
+</file>
+<folder name="images" url="felamimail/templates/default/images">
+<file name="Read.GIF" url="felamimail/templates/default/images/Read.GIF">
+</file>
+<file name="Read.png" url="felamimail/templates/default/images/Read.png">
+</file>
+<file name="Replied.GIF" url="felamimail/templates/default/images/Replied.GIF">
+</file>
+<file name="Replied.png" url="felamimail/templates/default/images/Replied.png">
+</file>
+<file name="Unread.GIF" url="felamimail/templates/default/images/Unread.GIF">
+</file>
+<file name="Unread.png" url="felamimail/templates/default/images/Unread.png">
+</file>
+<file name="attach.gif" url="felamimail/templates/default/images/attach.gif">
+</file>
+<file name="down_pointer.gif"
url="felamimail/templates/default/images/down_pointer.gif">
+</file>
+<file name="down_pointer.png"
url="felamimail/templates/default/images/down_pointer.png">
+</file>
+<file name="navbar.gif" url="felamimail/templates/default/images/navbar.gif">
+</file>
+<file name="navbar.png" url="felamimail/templates/default/images/navbar.png">
+</file>
+<file name="read_answered_small.png"
url="felamimail/templates/default/images/read_answered_small.png">
+</file>
+<file name="read_small.png"
url="felamimail/templates/default/images/read_small.png">
+</file>
+<file name="recent_small.gif"
url="felamimail/templates/default/images/recent_small.gif">
+</file>
+<file name="sm_delete.gif"
url="felamimail/templates/default/images/sm_delete.gif">
+</file>
+<file name="sm_envelope.gif"
url="felamimail/templates/default/images/sm_envelope.gif">
+</file>
+<file name="sm_envelope.png"
url="felamimail/templates/default/images/sm_envelope.png">
+</file>
+<file name="sm_forward.gif"
url="felamimail/templates/default/images/sm_forward.gif">
+</file>
+<file name="sm_forward.png"
url="felamimail/templates/default/images/sm_forward.png">
+</file>
+<file name="sm_reply.gif"
url="felamimail/templates/default/images/sm_reply.gif">
+</file>
+<file name="sm_reply.png"
url="felamimail/templates/default/images/sm_reply.png">
+</file>
+<file name="sm_reply_all.gif"
url="felamimail/templates/default/images/sm_reply_all.gif">
+</file>
+<file name="sm_reply_all.png"
url="felamimail/templates/default/images/sm_reply_all.png">
+</file>
+<file name="sm_unimportant.png"
url="felamimail/templates/default/images/sm_unimportant.png">
+</file>
+<file name="sm_unread.png"
url="felamimail/templates/default/images/sm_unread.png">
+</file>
+<file name="sort_none.gif"
url="felamimail/templates/default/images/sort_none.gif">
+</file>
+<file name="sort_none.png"
url="felamimail/templates/default/images/sort_none.png">
+</file>
+<file name="unread_deleted_small.gif"
url="felamimail/templates/default/images/unread_deleted_small.gif">
+</file>
+<file name="unread_deleted_small.png"
url="felamimail/templates/default/images/unread_deleted_small.png">
+</file>
+<file name="unread_flagged_small.png"
url="felamimail/templates/default/images/unread_flagged_small.png">
+</file>
+<file name="unread_small.png"
url="felamimail/templates/default/images/unread_small.png">
+</file>
+<file name="up_pointer.gif"
url="felamimail/templates/default/images/up_pointer.gif">
+</file>
+<file name="up_pointer.png"
url="felamimail/templates/default/images/up_pointer.png">
+</file>
+</folder>
+</folder>
+<folder name="idots" url="felamimail/templates/idots">
+<folder name="images" url="felamimail/templates/idots/images">
+<file name="navbar.png" url="felamimail/templates/idots/images/navbar.png">
+</file>
+</folder>
+</folder>
+<folder name="idsociety" url="felamimail/templates/idsociety">
+<folder name="images" url="felamimail/templates/idsociety/images">
+<file name="Read.GIF" url="felamimail/templates/idsociety/images/Read.GIF">
+</file>
+<file name="Read.png" url="felamimail/templates/idsociety/images/Read.png">
+</file>
+<file name="Replied.GIF"
url="felamimail/templates/idsociety/images/Replied.GIF">
+</file>
+<file name="Replied.png"
url="felamimail/templates/idsociety/images/Replied.png">
+</file>
+<file name="Unread.GIF" url="felamimail/templates/idsociety/images/Unread.GIF">
+</file>
+<file name="Unread.png" url="felamimail/templates/idsociety/images/Unread.png">
+</file>
+<file name="attach.gif" url="felamimail/templates/idsociety/images/attach.gif">
+</file>
+<file name="down_pointer.gif"
url="felamimail/templates/idsociety/images/down_pointer.gif">
+</file>
+<file name="down_pointer.png"
url="felamimail/templates/idsociety/images/down_pointer.png">
+</file>
+<file name="navbar-over.gif"
url="felamimail/templates/idsociety/images/navbar-over.gif">
+</file>
+<file name="navbar-over.png"
url="felamimail/templates/idsociety/images/navbar-over.png">
+</file>
+<file name="navbar.gif" url="felamimail/templates/idsociety/images/navbar.gif">
+</file>
+<file name="navbar.png" url="felamimail/templates/idsociety/images/navbar.png">
+</file>
+<file name="read_answered_small.png"
url="felamimail/templates/idsociety/images/read_answered_small.png">
+</file>
+<file name="read_small.png"
url="felamimail/templates/idsociety/images/read_small.png">
+</file>
+<file name="recent_small.gif"
url="felamimail/templates/idsociety/images/recent_small.gif">
+</file>
+<file name="sm_delete.gif"
url="felamimail/templates/idsociety/images/sm_delete.gif">
+</file>
+<file name="sm_envelope.gif"
url="felamimail/templates/idsociety/images/sm_envelope.gif">
+</file>
+<file name="sm_envelope.png"
url="felamimail/templates/idsociety/images/sm_envelope.png">
+</file>
+<file name="sm_forward.gif"
url="felamimail/templates/idsociety/images/sm_forward.gif">
+</file>
+<file name="sm_forward.png"
url="felamimail/templates/idsociety/images/sm_forward.png">
+</file>
+<file name="sm_reply.gif"
url="felamimail/templates/idsociety/images/sm_reply.gif">
+</file>
+<file name="sm_reply.png"
url="felamimail/templates/idsociety/images/sm_reply.png">
+</file>
+<file name="sm_reply_all.gif"
url="felamimail/templates/idsociety/images/sm_reply_all.gif">
+</file>
+<file name="sm_reply_all.png"
url="felamimail/templates/idsociety/images/sm_reply_all.png">
+</file>
+<file name="sm_unimportant.png"
url="felamimail/templates/idsociety/images/sm_unimportant.png">
+</file>
+<file name="sm_unread.png"
url="felamimail/templates/idsociety/images/sm_unread.png">
+</file>
+<file name="sort_none.gif"
url="felamimail/templates/idsociety/images/sort_none.gif">
+</file>
+<file name="sort_none.png"
url="felamimail/templates/idsociety/images/sort_none.png">
+</file>
+<file name="unread_deleted_small.gif"
url="felamimail/templates/idsociety/images/unread_deleted_small.gif">
+</file>
+<file name="unread_deleted_small.png"
url="felamimail/templates/idsociety/images/unread_deleted_small.png">
+</file>
+<file name="unread_flagged_small.png"
url="felamimail/templates/idsociety/images/unread_flagged_small.png">
+</file>
+<file name="unread_small.png"
url="felamimail/templates/idsociety/images/unread_small.png">
+</file>
+<file name="up_pointer.gif"
url="felamimail/templates/idsociety/images/up_pointer.gif">
+</file>
+<file name="up_pointer.png"
url="felamimail/templates/idsociety/images/up_pointer.png">
+</file>
+</folder>
+</folder>
+<folder name="linux-at-work.de" url="felamimail/templates/linux-at-work.de">
+<file name="composeForm.tpl"
url="felamimail/templates/linux-at-work.de/composeForm.tpl">
+</file>
+<file name="mainscreen.tpl"
url="felamimail/templates/linux-at-work.de/mainscreen.tpl">
+</file>
+<folder name="images" url="felamimail/templates/linux-at-work.de/images">
+<file name="attach.gif"
url="felamimail/templates/linux-at-work.de/images/attach.gif">
+</file>
+<file name="down_pointer.gif"
url="felamimail/templates/linux-at-work.de/images/down_pointer.gif">
+</file>
+<file name="down_pointer.png"
url="felamimail/templates/linux-at-work.de/images/down_pointer.png">
+</file>
+<file name="navbar.gif"
url="felamimail/templates/linux-at-work.de/images/navbar.gif">
+</file>
+<file name="navbar.png"
url="felamimail/templates/linux-at-work.de/images/navbar.png">
+</file>
+<file name="read_answered_deleted_small.png"
url="felamimail/templates/linux-at-work.de/images/read_answered_deleted_small.png">
+</file>
+<file name="read_answered_flagged_small.png"
url="felamimail/templates/linux-at-work.de/images/read_answered_flagged_small.png">
+</file>
+<file name="read_answered_small.png"
url="felamimail/templates/linux-at-work.de/images/read_answered_small.png">
+</file>
+<file name="read_deleted_small.png"
url="felamimail/templates/linux-at-work.de/images/read_deleted_small.png">
+</file>
+<file name="read_flagged_small.png"
url="felamimail/templates/linux-at-work.de/images/read_flagged_small.png">
+</file>
+<file name="read_small.gif"
url="felamimail/templates/linux-at-work.de/images/read_small.gif">
+</file>
+<file name="read_small.png"
url="felamimail/templates/linux-at-work.de/images/read_small.png">
+</file>
+<file name="recent_small.gif"
url="felamimail/templates/linux-at-work.de/images/recent_small.gif">
+</file>
+<file name="recent_small.png"
url="felamimail/templates/linux-at-work.de/images/recent_small.png">
+</file>
+<file name="reply_small.gif"
url="felamimail/templates/linux-at-work.de/images/reply_small.gif">
+</file>
+<file name="reply_small.png"
url="felamimail/templates/linux-at-work.de/images/reply_small.png">
+</file>
+<file name="sm_delete.gif"
url="felamimail/templates/linux-at-work.de/images/sm_delete.gif">
+</file>
+<file name="sm_delete.png"
url="felamimail/templates/linux-at-work.de/images/sm_delete.png">
+</file>
+<file name="sm_envelope.gif"
url="felamimail/templates/linux-at-work.de/images/sm_envelope.gif">
+</file>
+<file name="sm_envelope.png"
url="felamimail/templates/linux-at-work.de/images/sm_envelope.png">
+</file>
+<file name="sm_forward.gif"
url="felamimail/templates/linux-at-work.de/images/sm_forward.gif">
+</file>
+<file name="sm_forward.png"
url="felamimail/templates/linux-at-work.de/images/sm_forward.png">
+</file>
+<file name="sm_important.png"
url="felamimail/templates/linux-at-work.de/images/sm_important.png">
+</file>
+<file name="sm_read.gif"
url="felamimail/templates/linux-at-work.de/images/sm_read.gif">
+</file>
+<file name="sm_read.png"
url="felamimail/templates/linux-at-work.de/images/sm_read.png">
+</file>
+<file name="sm_reply.gif"
url="felamimail/templates/linux-at-work.de/images/sm_reply.gif">
+</file>
+<file name="sm_reply.png"
url="felamimail/templates/linux-at-work.de/images/sm_reply.png">
+</file>
+<file name="sm_reply_all.gif"
url="felamimail/templates/linux-at-work.de/images/sm_reply_all.gif">
+</file>
+<file name="sm_reply_all.png"
url="felamimail/templates/linux-at-work.de/images/sm_reply_all.png">
+</file>
+<file name="sm_unimportant.png"
url="felamimail/templates/linux-at-work.de/images/sm_unimportant.png">
+</file>
+<file name="sm_unread.gif"
url="felamimail/templates/linux-at-work.de/images/sm_unread.gif">
+</file>
+<file name="sm_unread.png"
url="felamimail/templates/linux-at-work.de/images/sm_unread.png">
+</file>
+<file name="sort_none.gif"
url="felamimail/templates/linux-at-work.de/images/sort_none.gif">
+</file>
+<file name="sort_none.png"
url="felamimail/templates/linux-at-work.de/images/sort_none.png">
+</file>
+<file name="unread_deleted_small.png"
url="felamimail/templates/linux-at-work.de/images/unread_deleted_small.png">
+</file>
+<file name="unread_flagged_small.png"
url="felamimail/templates/linux-at-work.de/images/unread_flagged_small.png">
+</file>
+<file name="unread_small.gif"
url="felamimail/templates/linux-at-work.de/images/unread_small.gif">
+</file>
+<file name="unread_small.png"
url="felamimail/templates/linux-at-work.de/images/unread_small.png">
+</file>
+<file name="up_pointer.gif"
url="felamimail/templates/linux-at-work.de/images/up_pointer.gif">
+</file>
+<file name="up_pointer.png"
url="felamimail/templates/linux-at-work.de/images/up_pointer.png">
+</file>
+</folder>
+</folder>
+</folder>
+</folder>
+<folder name="filemanager">
+<preference-set id="">
+ <string id="import_dirname">Q:\public_html\phpgw_0_9_16\filemanager</string>
+</preference-set>
+<file name="index.php" url="filemanager/index.php">
+</file>
+<file name="preferences.php" url="filemanager/preferences.php">
+</file>
+<file name="admin.php" url="filemanager/admin.php">
+</file>
+<folder name="doc" url="filemanager/doc">
+<file name="INSTALL" url="filemanager/doc/INSTALL">
+</file>
+<file name="README" url="filemanager/doc/README">
+</file>
+</folder>
+<folder name="images" url="filemanager/images">
+<file name="folder-home.gif" url="filemanager/images/folder-home.gif">
+</file>
+<file name="folder-home.png" url="filemanager/images/folder-home.png">
+</file>
+<file name="folder-open.gif" url="filemanager/images/folder-open.gif">
+</file>
+<file name="folder-open.png" url="filemanager/images/folder-open.png">
+</file>
+<file name="folder-up.gif" url="filemanager/images/folder-up.gif">
+</file>
+<file name="folder-up.png" url="filemanager/images/folder-up.png">
+</file>
+<file name="folder.gif" url="filemanager/images/folder.gif">
+</file>
+<file name="folder.png" url="filemanager/images/folder.png">
+</file>
+<file name="locked.gif" url="filemanager/images/locked.gif">
+</file>
+<file name="locked.png" url="filemanager/images/locked.png">
+</file>
+</folder>
+<folder name="inc" url="filemanager/inc">
+<file name="class.bophpwebhosting.inc.php"
url="filemanager/inc/class.bophpwebhosting.inc.php">
+</file>
+<file name="class.sophpwebhosting.inc.php"
url="filemanager/inc/class.sophpwebhosting.inc.php">
+</file>
+<file name="class.uiphpwebhosting.inc.php"
url="filemanager/inc/class.uiphpwebhosting.inc.php">
+</file>
+<file name="db.inc.php" url="filemanager/inc/db.inc.php">
+</file>
+<file name="footer.inc.php" url="filemanager/inc/footer.inc.php">
+</file>
+<file name="functions.inc.php" url="filemanager/inc/functions.inc.php">
+</file>
+<file name="header.inc.php" url="filemanager/inc/header.inc.php">
+</file>
+<file name="hook_add_def_pref.inc.php"
url="filemanager/inc/hook_add_def_pref.inc.php">
+</file>
+<file name="hook_admin.inc.php" url="filemanager/inc/hook_admin.inc.php">
+</file>
+<file name="hook_deleteaccount.inc.php"
url="filemanager/inc/hook_deleteaccount.inc.php">
+</file>
+<file name="hook_preferences.inc.php"
url="filemanager/inc/hook_preferences.inc.php">
+</file>
+<file name="html.inc.php" url="filemanager/inc/html.inc.php">
+</file>
+<file name="main.inc.php" url="filemanager/inc/main.inc.php">
+</file>
+</folder>
+<folder name="setup" url="filemanager/setup">
+<file name="default_records.inc.php"
url="filemanager/setup/default_records.inc.php">
+</file>
+<file name="phpgw_de.lang" url="filemanager/setup/phpgw_de.lang">
+</file>
+<file name="phpgw_en.lang" url="filemanager/setup/phpgw_en.lang">
+</file>
+<file name="phpgw_fr.lang" url="filemanager/setup/phpgw_fr.lang">
+</file>
+<file name="phpgw_pl.lang" url="filemanager/setup/phpgw_pl.lang">
+</file>
+<file name="phpgw_pt.lang" url="filemanager/setup/phpgw_pt.lang">
+</file>
+<file name="phpgw_sv.lang" url="filemanager/setup/phpgw_sv.lang">
+</file>
+<file name="setup.inc.php" url="filemanager/setup/setup.inc.php">
+</file>
+<file name="tables_baseline.inc.php"
url="filemanager/setup/tables_baseline.inc.php">
+</file>
+<file name="tables_current.inc.php"
url="filemanager/setup/tables_current.inc.php">
+</file>
+<file name="tables_update.inc.php"
url="filemanager/setup/tables_update.inc.php">
+</file>
+</folder>
+<folder name="templates" url="filemanager/templates">
+<folder name="default" url="filemanager/templates/default">
+<file name="errors.tpl" url="filemanager/templates/default/errors.tpl">
+</file>
+<file name="history.tpl" url="filemanager/templates/default/history.tpl">
+</file>
+<file name="index.tpl" url="filemanager/templates/default/index.tpl">
+</file>
+<file name="pref.tpl" url="filemanager/templates/default/pref.tpl">
+</file>
+<file name="preference_acl.tpl"
url="filemanager/templates/default/preference_acl.tpl">
+</file>
+<file name="preference_acl_row.tpl"
url="filemanager/templates/default/preference_acl_row.tpl">
+</file>
+<file name="preference_colspan.tpl"
url="filemanager/templates/default/preference_colspan.tpl">
+</file>
+<file name="small_table.tpl"
url="filemanager/templates/default/small_table.tpl">
+</file>
+<file name="admin.tpl" url="filemanager/templates/default/admin.tpl">
+</file>
+<folder name="images" url="filemanager/templates/default/images">
+<file name="1uparrow.png"
url="filemanager/templates/default/images/1uparrow.png">
+</file>
+<file name="bottom.png" url="filemanager/templates/default/images/bottom.png">
+</file>
+<file name="filenew.png"
url="filemanager/templates/default/images/filenew.png">
+</file>
+<file name="folder.gif" url="filemanager/templates/default/images/folder.gif">
+</file>
+<file name="folder.png" url="filemanager/templates/default/images/folder.png">
+</file>
+<file name="folder_home.gif"
url="filemanager/templates/default/images/folder_home.gif">
+</file>
+<file name="folder_home.png"
url="filemanager/templates/default/images/folder_home.png">
+</file>
+<file name="folder_new.png"
url="filemanager/templates/default/images/folder_new.png">
+</file>
+<file name="folder_open.gif"
url="filemanager/templates/default/images/folder_open.gif">
+</file>
+<file name="folder_open.png"
url="filemanager/templates/default/images/folder_open.png">
+</file>
+<file name="folder_up.gif"
url="filemanager/templates/default/images/folder_up.gif">
+</file>
+<file name="folder_up.png"
url="filemanager/templates/default/images/folder_up.png">
+</file>
+<file name="gohome.png" url="filemanager/templates/default/images/gohome.png">
+</file>
+<file name="locked.gif" url="filemanager/templates/default/images/locked.gif">
+</file>
+<file name="locked.png" url="filemanager/templates/default/images/locked.png">
+</file>
+<file name="navbar.gif" url="filemanager/templates/default/images/navbar.gif">
+</file>
+<file name="navbar.png" url="filemanager/templates/default/images/navbar.png">
+</file>
+<file name="reload.png" url="filemanager/templates/default/images/reload.png">
+</file>
+</folder>
+</folder>
+<folder name="idots" url="filemanager/templates/idots">
+<folder name="images" url="filemanager/templates/idots/images">
+<file name="navbar.png" url="filemanager/templates/idots/images/navbar.png">
+</file>
+</folder>
+</folder>
+<folder name="idsociety" url="filemanager/templates/idsociety">
+<folder name="images" url="filemanager/templates/idsociety/images">
+<file name="navbar-over.gif"
url="filemanager/templates/idsociety/images/navbar-over.gif">
+</file>
+<file name="navbar-over.png"
url="filemanager/templates/idsociety/images/navbar-over.png">
+</file>
+<file name="navbar.gif"
url="filemanager/templates/idsociety/images/navbar.gif">
+</file>
+<file name="navbar.png"
url="filemanager/templates/idsociety/images/navbar.png">
+</file>
+</folder>
+</folder>
+<folder name="probusiness" url="filemanager/templates/probusiness">
+<folder name="images" url="filemanager/templates/probusiness/images">
+<file name="navbar.png"
url="filemanager/templates/probusiness/images/navbar.png">
+</file>
+<file name="folders.png"
url="filemanager/templates/probusiness/images/folders.png">
+</file>
+</folder>
+</folder>
+</folder>
+<folder name="tests" url="filemanager/tests">
+<file name="benchmark_dav.php" url="filemanager/tests/benchmark_dav.php">
+</file>
+<file name="test.php" url="filemanager/tests/test.php">
+</file>
+<file name="test_dav.php" url="filemanager/tests/test_dav.php">
+</file>
+</folder>
+</folder>
+<folder name="folders">
+<preference-set id="">
+ <string id="import_dirname">Q:\public_html\phpgw_0_9_16\folders</string>
+</preference-set>
+<file name="index.php" url="folders/index.php">
+</file>
+<folder name="doc" url="folders/doc">
+<file name="HOOKS" url="folders/doc/HOOKS">
+</file>
+<file name="INSTALL" url="folders/doc/INSTALL">
+</file>
+<file name="README" url="folders/doc/README">
+</file>
+<file name="TODO" url="folders/doc/TODO">
+</file>
+</folder>
+<folder name="inc" url="folders/inc">
+<file name="class.bofolders.inc.php" url="folders/inc/class.bofolders.inc.php">
+</file>
+<file name="class.folders_service.inc.php"
url="folders/inc/class.folders_service.inc.php">
+</file>
+<file name="class.treemenu.inc.php" url="folders/inc/class.treemenu.inc.php">
+</file>
+<file name="class.uifolders.inc.php" url="folders/inc/class.uifolders.inc.php">
+</file>
+<file name="class.layersmenu.inc.php"
url="folders/inc/class.layersmenu.inc.php">
+</file>
+</folder>
+<folder name="phplayersmenu" url="folders/phplayersmenu">
+<file name="ACKNOWLEDGEMENTS" url="folders/phplayersmenu/ACKNOWLEDGEMENTS">
+</file>
+<file name="CHANGELOG" url="folders/phplayersmenu/CHANGELOG">
+</file>
+<file name="CHANGE_TEMPLATE_CLASS_NAME.sh"
url="folders/phplayersmenu/CHANGE_TEMPLATE_CLASS_NAME.sh">
+</file>
+<file name="COPYING" url="folders/phplayersmenu/COPYING">
+</file>
+<file name="LICENSE" url="folders/phplayersmenu/LICENSE">
+</file>
+<file name="README.PHPDOC" url="folders/phplayersmenu/README.PHPDOC">
+</file>
+<file name="README.ihtml" url="folders/phplayersmenu/README.ihtml">
+</file>
+<file name="TODO" url="folders/phplayersmenu/TODO">
+</file>
+<file name="example-db-hormenu.php"
url="folders/phplayersmenu/example-db-hormenu.php">
+</file>
+<file name="example-dbtofile.php"
url="folders/phplayersmenu/example-dbtofile.php">
+</file>
+<file name="example-filetodb.php"
url="folders/phplayersmenu/example-filetodb.php">
+</file>
+<file name="example-frame-body.php"
url="folders/phplayersmenu/example-frame-body.php">
+</file>
+<file name="example-frame-treemenu.php"
url="folders/phplayersmenu/example-frame-treemenu.php">
+</file>
+<file name="example-frame.html" url="folders/phplayersmenu/example-frame.html">
+</file>
+<file name="example-hormenu-old.php"
url="folders/phplayersmenu/example-hormenu-old.php">
+</file>
+<file name="example-hormenu.php"
url="folders/phplayersmenu/example-hormenu.php">
+</file>
+<file name="example-hormenu_and_treemenu.php"
url="folders/phplayersmenu/example-hormenu_and_treemenu.php">
+</file>
+<file name="example-hormenu_and_vermenu.php"
url="folders/phplayersmenu/example-hormenu_and_vermenu.php">
+</file>
+<file name="example-layersmenus_and_treemenus.php"
url="folders/phplayersmenu/example-layersmenus_and_treemenus.php">
+</file>
+<file name="example-see-through.php"
url="folders/phplayersmenu/example-see-through.php">
+</file>
+<file name="example-treemenu.php"
url="folders/phplayersmenu/example-treemenu.php">
+</file>
+<file name="example-two_treemenus.php"
url="folders/phplayersmenu/example-two_treemenus.php">
+</file>
+<file name="example-vermenu.php"
url="folders/phplayersmenu/example-vermenu.php">
+</file>
+<file name="index-static.html" url="folders/phplayersmenu/index-static.html">
+</file>
+<file name="index.php" url="folders/phplayersmenu/index.php">
+</file>
+<file name="index.phps" url="folders/phplayersmenu/index.phps">
+</file>
+<file name="layersmenu-demo.css"
url="folders/phplayersmenu/layersmenu-demo.css">
+</file>
+<file name="layersmenu-galaxy.css"
url="folders/phplayersmenu/layersmenu-galaxy.css">
+</file>
+<file name="layersmenu-gtk2.css"
url="folders/phplayersmenu/layersmenu-gtk2.css">
+</file>
+<file name="layersmenu-horizontal-1.txt"
url="folders/phplayersmenu/layersmenu-horizontal-1.txt">
+</file>
+<file name="layersmenu-horizontal-2.txt"
url="folders/phplayersmenu/layersmenu-horizontal-2.txt">
+</file>
+<file name="layersmenu-keramik.css"
url="folders/phplayersmenu/layersmenu-keramik.css">
+</file>
+<file name="layersmenu-old.css" url="folders/phplayersmenu/layersmenu-old.css">
+</file>
+<file name="layersmenu-vertical-1.txt"
url="folders/phplayersmenu/layersmenu-vertical-1.txt">
+</file>
+<file name="layersmenu-vertical-2.txt"
url="folders/phplayersmenu/layersmenu-vertical-2.txt">
+</file>
+<file name="layerstreemenu-hidden.css"
url="folders/phplayersmenu/layerstreemenu-hidden.css">
+</file>
+<file name="layerstreemenu.css" url="folders/phplayersmenu/layerstreemenu.css">
+</file>
+<folder name="DUMPS" url="folders/phplayersmenu/DUMPS">
+<file name="mysql.demo_data.dump"
url="folders/phplayersmenu/DUMPS/mysql.demo_data.dump">
+</file>
+<file name="mysql.start.dump"
url="folders/phplayersmenu/DUMPS/mysql.start.dump">
+</file>
+<file name="pgsql.demo_data.dump"
url="folders/phplayersmenu/DUMPS/pgsql.demo_data.dump">
+</file>
+<file name="pgsql.start.dump"
url="folders/phplayersmenu/DUMPS/pgsql.start.dump">
+</file>
+</folder>
+<folder name="LOGOS" url="folders/phplayersmenu/LOGOS">
+<file name="README" url="folders/phplayersmenu/LOGOS/README">
+</file>
+<file name="powered_by_phplm.png"
url="folders/phplayersmenu/LOGOS/powered_by_phplm.png">
+</file>
+<file name="powered_by_phplm_b01.png"
url="folders/phplayersmenu/LOGOS/powered_by_phplm_b01.png">
+</file>
+<file name="powered_by_phplm_b02.png"
url="folders/phplayersmenu/LOGOS/powered_by_phplm_b02.png">
+</file>
+<file name="powered_by_phplm_b03.png"
url="folders/phplayersmenu/LOGOS/powered_by_phplm_b03.png">
+</file>
+<file name="powered_by_phplm_b04.png"
url="folders/phplayersmenu/LOGOS/powered_by_phplm_b04.png">
+</file>
+<file name="powered_by_phplm_l01.png"
url="folders/phplayersmenu/LOGOS/powered_by_phplm_l01.png">
+</file>
+<file name="powered_by_phplm_l02.png"
url="folders/phplayersmenu/LOGOS/powered_by_phplm_l02.png">
+</file>
+<file name="powered_by_phplm_l03.png"
url="folders/phplayersmenu/LOGOS/powered_by_phplm_l03.png">
+</file>
+<file name="powered_by_phplm_l04.png"
url="folders/phplayersmenu/LOGOS/powered_by_phplm_l04.png">
+</file>
+<file name="powered_by_phplm_y01.png"
url="folders/phplayersmenu/LOGOS/powered_by_phplm_y01.png">
+</file>
+<file name="powered_by_phplm_y02.png"
url="folders/phplayersmenu/LOGOS/powered_by_phplm_y02.png">
+</file>
+<file name="powered_by_phplm_y03.png"
url="folders/phplayersmenu/LOGOS/powered_by_phplm_y03.png">
+</file>
+<file name="powered_by_phplm_y04.png"
url="folders/phplayersmenu/LOGOS/powered_by_phplm_y04.png">
+</file>
+<file name="shortcut_icon_phplm.png"
url="folders/phplayersmenu/LOGOS/shortcut_icon_phplm.png">
+</file>
+<file name="shortcut_icon_phplm_01.png"
url="folders/phplayersmenu/LOGOS/shortcut_icon_phplm_01.png">
+</file>
+<file name="shortcut_icon_phplm_02.png"
url="folders/phplayersmenu/LOGOS/shortcut_icon_phplm_02.png">
+</file>
+<file name="shortcut_icon_phplm_03.png"
url="folders/phplayersmenu/LOGOS/shortcut_icon_phplm_03.png">
+</file>
+<file name="shortcut_icon_phplm_04.png"
url="folders/phplayersmenu/LOGOS/shortcut_icon_phplm_04.png">
+</file>
+<file name="shortcut_icon_phplm_05.png"
url="folders/phplayersmenu/LOGOS/shortcut_icon_phplm_05.png">
+</file>
+</folder>
+<folder name="THEMES" url="folders/phplayersmenu/THEMES">
+<file name="galeon-theme.tar.gz"
url="folders/phplayersmenu/THEMES/galeon-theme.tar.gz">
+</file>
+<file name="gmc-theme.tar.gz"
url="folders/phplayersmenu/THEMES/gmc-theme.tar.gz">
+</file>
+<file name="kde-theme.tar.gz"
url="folders/phplayersmenu/THEMES/kde-theme.tar.gz">
+</file>
+<file name="mozilla-theme.tar.gz"
url="folders/phplayersmenu/THEMES/mozilla-theme.tar.gz">
+</file>
+<file name="nautilus-gnome-theme.tar.gz"
url="folders/phplayersmenu/THEMES/nautilus-gnome-theme.tar.gz">
+</file>
+</folder>
+<folder name="images" url="folders/phplayersmenu/images">
+<file name="debian-icon-mini.png"
url="folders/phplayersmenu/images/debian-icon-mini.png">
+</file>
+<file name="desktop.png" url="folders/phplayersmenu/images/desktop.png">
+</file>
+<file name="down-arrow.png" url="folders/phplayersmenu/images/down-arrow.png">
+</file>
+<file name="down-galaxy.png"
url="folders/phplayersmenu/images/down-galaxy.png">
+</file>
+<file name="down-gnome.png" url="folders/phplayersmenu/images/down-gnome.png">
+</file>
+<file name="down-gtk2.png" url="folders/phplayersmenu/images/down-gtk2.png">
+</file>
+<file name="down-keramik.png"
url="folders/phplayersmenu/images/down-keramik.png">
+</file>
+<file name="down-nautilus.png"
url="folders/phplayersmenu/images/down-nautilus.png">
+</file>
+<file name="epiphany-16.png"
url="folders/phplayersmenu/images/epiphany-16.png">
+</file>
+<file name="forward-arrow.png"
url="folders/phplayersmenu/images/forward-arrow.png">
+</file>
+<file name="forward-galaxy.png"
url="folders/phplayersmenu/images/forward-galaxy.png">
+</file>
+<file name="forward-gnome.png"
url="folders/phplayersmenu/images/forward-gnome.png">
+</file>
+<file name="forward-gtk2.png"
url="folders/phplayersmenu/images/forward-gtk2.png">
+</file>
+<file name="forward-keramik.png"
url="folders/phplayersmenu/images/forward-keramik.png">
+</file>
+<file name="forward-nautilus.png"
url="folders/phplayersmenu/images/forward-nautilus.png">
+</file>
+<file name="freshmeat.net_favicon.png"
url="folders/phplayersmenu/images/freshmeat.net_favicon.png">
+</file>
+<file name="gnome-starthere-mini.png"
url="folders/phplayersmenu/images/gnome-starthere-mini.png">
+</file>
+<file name="linuxtoday.com_favicon.png"
url="folders/phplayersmenu/images/linuxtoday.com_favicon.png">
+</file>
+<file name="mozilla.org_images_mozilla-16.png"
url="folders/phplayersmenu/images/mozilla.org_images_mozilla-16.png">
+</file>
+<file name="netscape-icon-mini.png"
url="folders/phplayersmenu/images/netscape-icon-mini.png">
+</file>
+<file name="office_suites.png"
url="folders/phplayersmenu/images/office_suites.png">
+</file>
+<file name="ooo-icon-mini.png"
url="folders/phplayersmenu/images/ooo-icon-mini.png">
+</file>
+<file name="pan-icon-mini.png"
url="folders/phplayersmenu/images/pan-icon-mini.png">
+</file>
+<file name="php-bugs-icon-mini.png"
url="folders/phplayersmenu/images/php-bugs-icon-mini.png">
+</file>
+<file name="phplib-logo-mini.png"
url="folders/phplayersmenu/images/phplib-logo-mini.png">
+</file>
+<file name="sourceforge.net_images_favicon.png"
url="folders/phplayersmenu/images/sourceforge.net_images_favicon.png">
+</file>
+<file name="transparent.png"
url="folders/phplayersmenu/images/transparent.png">
+</file>
+<file name="tree_collapse.png"
url="folders/phplayersmenu/images/tree_collapse.png">
+</file>
+<file name="tree_collapse_corner.png"
url="folders/phplayersmenu/images/tree_collapse_corner.png">
+</file>
+<file name="tree_collapse_first.png"
url="folders/phplayersmenu/images/tree_collapse_first.png">
+</file>
+<file name="tree_corner.png"
url="folders/phplayersmenu/images/tree_corner.png">
+</file>
+<file name="tree_expand.png"
url="folders/phplayersmenu/images/tree_expand.png">
+</file>
+<file name="tree_expand_corner.png"
url="folders/phplayersmenu/images/tree_expand_corner.png">
+</file>
+<file name="tree_expand_first.png"
url="folders/phplayersmenu/images/tree_expand_first.png">
+</file>
+<file name="tree_folder_closed.png"
url="folders/phplayersmenu/images/tree_folder_closed.png">
+</file>
+<file name="tree_folder_open.png"
url="folders/phplayersmenu/images/tree_folder_open.png">
+</file>
+<file name="tree_leaf.png" url="folders/phplayersmenu/images/tree_leaf.png">
+</file>
+<file name="tree_space.png" url="folders/phplayersmenu/images/tree_space.png">
+</file>
+<file name="tree_split.png" url="folders/phplayersmenu/images/tree_split.png">
+</file>
+<file name="tree_split_first.png"
url="folders/phplayersmenu/images/tree_split_first.png">
+</file>
+<file name="tree_vertline.png"
url="folders/phplayersmenu/images/tree_vertline.png">
+</file>
+<file name="valid-xhtml10.png"
url="folders/phplayersmenu/images/valid-xhtml10.png">
+</file>
+<file name="vcss.png" url="folders/phplayersmenu/images/vcss.png">
+</file>
+<file name="www.altavista.com_favicon.png"
url="folders/phplayersmenu/images/www.altavista.com_favicon.png">
+</file>
+<file name="www.gimp.org_icons_wilber16.png"
url="folders/phplayersmenu/images/www.gimp.org_icons_wilber16.png">
+</file>
+<file name="www.gnome.org_images_gnome-16.png"
url="folders/phplayersmenu/images/www.gnome.org_images_gnome-16.png">
+</file>
+<file name="www.kde.org_favicon.png"
url="folders/phplayersmenu/images/www.kde.org_favicon.png">
+</file>
+<file name="www.kernel.org_images_tux16-16.png"
url="folders/phplayersmenu/images/www.kernel.org_images_tux16-16.png">
+</file>
+<file name="www.mysql.com_favicon.png"
url="folders/phplayersmenu/images/www.mysql.com_favicon.png">
+</file>
+<file name="www.php.net_favicon.png"
url="folders/phplayersmenu/images/www.php.net_favicon.png">
+</file>
+<file name="www.ximian.com_favicon.png"
url="folders/phplayersmenu/images/www.ximian.com_favicon.png">
+</file>
+</folder>
+<folder name="lib" url="folders/phplayersmenu/lib">
+<file name="PHPLIB.php" url="folders/phplayersmenu/lib/PHPLIB.php">
+</file>
+<file name="layersmenu-common.inc.php"
url="folders/phplayersmenu/lib/layersmenu-common.inc.php">
+</file>
+<file name="layersmenu-process.inc.php"
url="folders/phplayersmenu/lib/layersmenu-process.inc.php">
+</file>
+<file name="layersmenu.inc.php"
url="folders/phplayersmenu/lib/layersmenu.inc.php">
+</file>
+<file name="phptreemenu.inc.php"
url="folders/phplayersmenu/lib/phptreemenu.inc.php">
+</file>
+<file name="plainmenu.inc.php"
url="folders/phplayersmenu/lib/plainmenu.inc.php">
+</file>
+<file name="treemenu.inc.php" url="folders/phplayersmenu/lib/treemenu.inc.php">
+</file>
+</folder>
+<folder name="libjs" url="folders/phplayersmenu/libjs">
+<file name="layersmenu-browser_detection.js"
url="folders/phplayersmenu/libjs/layersmenu-browser_detection.js">
+</file>
+<file name="layersmenu-footer.ijs"
url="folders/phplayersmenu/libjs/layersmenu-footer.ijs">
+</file>
+<file name="layersmenu-header.ijs"
url="folders/phplayersmenu/libjs/layersmenu-header.ijs">
+</file>
+<file name="layersmenu-library.js"
url="folders/phplayersmenu/libjs/layersmenu-library.js">
+</file>
+<file name="layersmenu-see-through.js"
url="folders/phplayersmenu/libjs/layersmenu-see-through.js">
+</file>
+<file name="layersmenu.js" url="folders/phplayersmenu/libjs/layersmenu.js">
+</file>
+<file name="layerstreemenu-cookies.js"
url="folders/phplayersmenu/libjs/layerstreemenu-cookies.js">
+</file>
+<file name="layerstreemenu.ijs"
url="folders/phplayersmenu/libjs/layerstreemenu.ijs">
+</file>
+</folder>
+<folder name="templates" url="folders/phplayersmenu/templates">
+<file name="layersmenu-horizontal_menu-full.ihtml"
url="folders/phplayersmenu/templates/layersmenu-horizontal_menu-full.ihtml">
+</file>
+<file name="layersmenu-horizontal_menu-keramik.ihtml"
url="folders/phplayersmenu/templates/layersmenu-horizontal_menu-keramik.ihtml">
+</file>
+<file name="layersmenu-horizontal_menu-old.ihtml"
url="folders/phplayersmenu/templates/layersmenu-horizontal_menu-old.ihtml">
+</file>
+<file name="layersmenu-horizontal_menu.ihtml"
url="folders/phplayersmenu/templates/layersmenu-horizontal_menu.ihtml">
+</file>
+<file name="layersmenu-horizontal_plain_menu-red.ihtml"
url="folders/phplayersmenu/templates/layersmenu-horizontal_plain_menu-red.ihtml">
+</file>
+<file name="layersmenu-horizontal_plain_menu.ihtml"
url="folders/phplayersmenu/templates/layersmenu-horizontal_plain_menu.ihtml">
+</file>
+<file name="layersmenu-plain_menu-green.ihtml"
url="folders/phplayersmenu/templates/layersmenu-plain_menu-green.ihtml">
+</file>
+<file name="layersmenu-plain_menu.ihtml"
url="folders/phplayersmenu/templates/layersmenu-plain_menu.ihtml">
+</file>
+<file name="layersmenu-sub_menu-galaxy.ihtml"
url="folders/phplayersmenu/templates/layersmenu-sub_menu-galaxy.ihtml">
+</file>
+<file name="layersmenu-sub_menu-keramik.ihtml"
url="folders/phplayersmenu/templates/layersmenu-sub_menu-keramik.ihtml">
+</file>
+<file name="layersmenu-sub_menu-old.ihtml"
url="folders/phplayersmenu/templates/layersmenu-sub_menu-old.ihtml">
+</file>
+<file name="layersmenu-sub_menu.ihtml"
url="folders/phplayersmenu/templates/layersmenu-sub_menu.ihtml">
+</file>
+<file name="layersmenu-vertical_menu-galaxy.ihtml"
url="folders/phplayersmenu/templates/layersmenu-vertical_menu-galaxy.ihtml">
+</file>
+<file name="layersmenu-vertical_menu-old.ihtml"
url="folders/phplayersmenu/templates/layersmenu-vertical_menu-old.ihtml">
+</file>
+<file name="layersmenu-vertical_menu.ihtml"
url="folders/phplayersmenu/templates/layersmenu-vertical_menu.ihtml">
+</file>
+</folder>
+</folder>
+<folder name="setup" url="folders/setup">
+<file name="phpgw_de.lang" url="folders/setup/phpgw_de.lang">
+</file>
+<file name="phpgw_en.lang" url="folders/setup/phpgw_en.lang">
+</file>
+<file name="setup.inc.php" url="folders/setup/setup.inc.php">
+</file>
+</folder>
+<folder name="templates" url="folders/templates">
+<folder name="default" url="folders/templates/default">
+<file name="folders.tpl" url="folders/templates/default/folders.tpl">
+</file>
+<file name="helpers.tpl" url="folders/templates/default/helpers.tpl">
+</file>
+<file name="style.css" url="folders/templates/default/style.css">
+</file>
+<folder name="images" url="folders/templates/default/images">
+<file name="evo-inbox.gif"
url="folders/templates/default/images/evo-inbox.gif">
+</file>
+<file name="evo-sent_itm.gif"
url="folders/templates/default/images/evo-sent_itm.gif">
+</file>
+<file name="evo_delete.gif"
url="folders/templates/default/images/evo_delete.gif">
+</file>
+<file name="navbar.gif" url="folders/templates/default/images/navbar.gif">
+</file>
+<file name="navbar.png" url="folders/templates/default/images/navbar.png">
+</file>
+<file name="phpgw.gif" url="folders/templates/default/images/phpgw.gif">
+</file>
+<file name="tree_collapse.gif"
url="folders/templates/default/images/tree_collapse.gif">
+</file>
+<file name="tree_collapse.png"
url="folders/templates/default/images/tree_collapse.png">
+</file>
+<file name="tree_end.gif" url="folders/templates/default/images/tree_end.gif">
+</file>
+<file name="tree_end.png" url="folders/templates/default/images/tree_end.png">
+</file>
+<file name="tree_expand.gif"
url="folders/templates/default/images/tree_expand.gif">
+</file>
+<file name="tree_expand.png"
url="folders/templates/default/images/tree_expand.png">
+</file>
+<file name="tree_leaf.gif"
url="folders/templates/default/images/tree_leaf.gif">
+</file>
+<file name="tree_leaf.png"
url="folders/templates/default/images/tree_leaf.png">
+</file>
+<file name="tree_space.gif"
url="folders/templates/default/images/tree_space.gif">
+</file>
+<file name="tree_space.png"
url="folders/templates/default/images/tree_space.png">
+</file>
+<file name="tree_split.gif"
url="folders/templates/default/images/tree_split.gif">
+</file>
+<file name="tree_split.png"
url="folders/templates/default/images/tree_split.png">
+</file>
+<file name="tree_vertline.gif"
url="folders/templates/default/images/tree_vertline.gif">
+</file>
+<file name="tree_vertline.png"
url="folders/templates/default/images/tree_vertline.png">
+</file>
+</folder>
+</folder>
+<folder name="probusiness" url="folders/templates/probusiness">
+<folder name="images" url="folders/templates/probusiness/images">
+<file name="addressbook.gif"
url="folders/templates/probusiness/images/addressbook.gif">
+</file>
+<file name="applications.gif"
url="folders/templates/probusiness/images/applications.gif">
+</file>
+<file name="calendar.gif"
url="folders/templates/probusiness/images/calendar.gif">
+</file>
+<file name="evo-inbox.gif"
url="folders/templates/probusiness/images/evo-inbox.gif">
+</file>
+<file name="evo-sent_itm.gif"
url="folders/templates/probusiness/images/evo-sent_itm.gif">
+</file>
+<file name="evo_delete.gif"
url="folders/templates/probusiness/images/evo_delete.gif">
+</file>
+<file name="folders.gif"
url="folders/templates/probusiness/images/folders.gif">
+</file>
+<file name="folders.png"
url="folders/templates/probusiness/images/folders.png">
+</file>
+<file name="home.png" url="folders/templates/probusiness/images/home.png">
+</file>
+<file name="navbar.png" url="folders/templates/probusiness/images/navbar.png">
+</file>
+<file name="phpgw.gif" url="folders/templates/probusiness/images/phpgw.gif">
+</file>
+<file name="phpgw.png" url="folders/templates/probusiness/images/phpgw.png">
+</file>
+<file name="preferences.gif"
url="folders/templates/probusiness/images/preferences.gif">
+</file>
+<file name="preferences.png"
url="folders/templates/probusiness/images/preferences.png">
+</file>
+</folder>
+</folder>
+</folder>
+</folder>
+<folder name="fudforum">
+<preference-set id="">
+ <string id="import_dirname">Q:\public_html\phpgw_0_9_16\fudforum</string>
+</preference-set>
+<file name="index.php" url="fudforum/index.php">
+</file>
+<file name="README" url="fudforum/README">
+</file>
+<file name="blank.gif" url="fudforum/blank.gif">
+</file>
+<file name="lib.js" url="fudforum/lib.js">
+</file>
+<file name="pdf.php" url="fudforum/pdf.php">
+</file>
+<file name="rdf.php" url="fudforum/rdf.php">
+</file>
+<folder name="inc" url="fudforum/inc">
+<file name="class.fud_sidebox_hooks.inc.php"
url="fudforum/inc/class.fud_sidebox_hooks.inc.php">
+</file>
+<file name="class.ufud.inc.php" url="fudforum/inc/class.ufud.inc.php">
+</file>
+<file name="hook_admin.inc.php" url="fudforum/inc/hook_admin.inc.php">
+</file>
+<file name="hook_preferences.inc.php"
url="fudforum/inc/hook_preferences.inc.php">
+</file>
+</folder>
+<folder name="setup" url="fudforum/setup">
+<file name="default_records.inc.php"
url="fudforum/setup/default_records.inc.php">
+</file>
+<file name="index.php" url="fudforum/setup/index.php">
+</file>
+<file name="setup.inc.php" url="fudforum/setup/setup.inc.php">
+</file>
+<file name="tables_current.inc.php"
url="fudforum/setup/tables_current.inc.php">
+</file>
+<folder name="base" url="fudforum/setup/base">
+<file name=".htaccess" url="fudforum/setup/base/.htaccess">
+</file>
+<folder name="cache" url="fudforum/setup/base/cache">
+<file name=".htaccess" url="fudforum/setup/base/cache/.htaccess">
+</file>
+<file name="email_filter_cache"
url="fudforum/setup/base/cache/email_filter_cache">
+</file>
+<file name="file_filter_regexp"
url="fudforum/setup/base/cache/file_filter_regexp">
+</file>
+<file name="ip_filter_cache" url="fudforum/setup/base/cache/ip_filter_cache">
+</file>
+<file name="login_filter_cache"
url="fudforum/setup/base/cache/login_filter_cache">
+</file>
+</folder>
+<folder name="include" url="fudforum/setup/base/include">
+<file name=".htaccess" url="fudforum/setup/base/include/.htaccess">
+</file>
+<file name="GLOBALS.php" url="fudforum/setup/base/include/GLOBALS.php">
+</file>
+<file name="GLOBALS_HELP" url="fudforum/setup/base/include/GLOBALS_HELP">
+</file>
+<file name="adm.inc" url="fudforum/setup/base/include/adm.inc">
+</file>
+<file name="cat.inc" url="fudforum/setup/base/include/cat.inc">
+</file>
+<file name="compiler.inc" url="fudforum/setup/base/include/compiler.inc">
+</file>
+<file name="core.inc" url="fudforum/setup/base/include/core.inc">
+</file>
+<file name="customtags.inc" url="fudforum/setup/base/include/customtags.inc">
+</file>
+<file name="email_filter.inc"
url="fudforum/setup/base/include/email_filter.inc">
+</file>
+<file name="email_msg_format.inc"
url="fudforum/setup/base/include/email_msg_format.inc">
+</file>
+<file name="ext.inc" url="fudforum/setup/base/include/ext.inc">
+</file>
+<file name="forum_adm.inc" url="fudforum/setup/base/include/forum_adm.inc">
+</file>
+<file name="glob.inc" url="fudforum/setup/base/include/glob.inc">
+</file>
+<file name="groups_adm.inc" url="fudforum/setup/base/include/groups_adm.inc">
+</file>
+<file name="ipfilter.inc" url="fudforum/setup/base/include/ipfilter.inc">
+</file>
+<file name="login_filter.inc"
url="fudforum/setup/base/include/login_filter.inc">
+</file>
+<file name="mem_limit.inc" url="fudforum/setup/base/include/mem_limit.inc">
+</file>
+<file name="mlist.inc" url="fudforum/setup/base/include/mlist.inc">
+</file>
+<file name="mlist_post.inc" url="fudforum/setup/base/include/mlist_post.inc">
+</file>
+<file name="nntp.inc" url="fudforum/setup/base/include/nntp.inc">
+</file>
+<file name="nntp_adm.inc" url="fudforum/setup/base/include/nntp_adm.inc">
+</file>
+<file name="scripts_common.inc"
url="fudforum/setup/base/include/scripts_common.inc">
+</file>
+<file name="theme.inc" url="fudforum/setup/base/include/theme.inc">
+</file>
+<file name="thrx_adm.inc" url="fudforum/setup/base/include/thrx_adm.inc">
+</file>
+<file name="users_adm.inc" url="fudforum/setup/base/include/users_adm.inc">
+</file>
+<file name="widgets.inc" url="fudforum/setup/base/include/widgets.inc">
+</file>
+</folder>
+<folder name="scripts" url="fudforum/setup/base/scripts">
+<file name=".htaccess" url="fudforum/setup/base/scripts/.htaccess">
+</file>
+<file name="README" url="fudforum/setup/base/scripts/README">
+</file>
+<file name="maillist.php" url="fudforum/setup/base/scripts/maillist.php">
+</file>
+<file name="nntp.php" url="fudforum/setup/base/scripts/nntp.php">
+</file>
+<file name="rdf_parser.php" url="fudforum/setup/base/scripts/rdf_parser.php">
+</file>
+</folder>
+<folder name="sql" url="fudforum/setup/base/sql">
+<file name=".htaccess" url="fudforum/setup/base/sql/.htaccess">
+</file>
+<file name="mysql_db.inc" url="fudforum/setup/base/sql/mysql_db.inc">
+</file>
+<file name="pgsql_db.inc" url="fudforum/setup/base/sql/pgsql_db.inc">
+</file>
+</folder>
+<folder name="src" url="fudforum/setup/base/src">
+<file name=".htaccess" url="fudforum/setup/base/src/.htaccess">
+</file>
+<file name="actions.php.t" url="fudforum/setup/base/src/actions.php.t">
+</file>
+<file name="allowed_user_lnk.inc.t"
url="fudforum/setup/base/src/allowed_user_lnk.inc.t">
+</file>
+<file name="alt_var.inc.t" url="fudforum/setup/base/src/alt_var.inc.t">
+</file>
+<file name="announcement.inc.t"
url="fudforum/setup/base/src/announcement.inc.t">
+</file>
+<file name="attach.inc.t" url="fudforum/setup/base/src/attach.inc.t">
+</file>
+<file name="avatar_msg.inc.t" url="fudforum/setup/base/src/avatar_msg.inc.t">
+</file>
+<file name="avatarsel.php.t" url="fudforum/setup/base/src/avatarsel.php.t">
+</file>
+<file name="buddy.inc.t" url="fudforum/setup/base/src/buddy.inc.t">
+</file>
+<file name="buddy_list.php.t" url="fudforum/setup/base/src/buddy_list.php.t">
+</file>
+<file name="cookies.inc.t" url="fudforum/setup/base/src/cookies.inc.t">
+</file>
+<file name="draw_pager.inc.t" url="fudforum/setup/base/src/draw_pager.inc.t">
+</file>
+<file name="draw_radio_opt.inc.t"
url="fudforum/setup/base/src/draw_radio_opt.inc.t">
+</file>
+<file name="draw_select_opt.inc.t"
url="fudforum/setup/base/src/draw_select_opt.inc.t">
+</file>
+<file name="drawmsg.inc.t" url="fudforum/setup/base/src/drawmsg.inc.t">
+</file>
+<file name="drawpmsg.inc.t" url="fudforum/setup/base/src/drawpmsg.inc.t">
+</file>
+<file name="email.php.t" url="fudforum/setup/base/src/email.php.t">
+</file>
+<file name="err.inc.t" url="fudforum/setup/base/src/err.inc.t">
+</file>
+<file name="errmsg.inc.t" url="fudforum/setup/base/src/errmsg.inc.t">
+</file>
+<file name="error.php.t" url="fudforum/setup/base/src/error.php.t">
+</file>
+<file name="fileio.inc.t" url="fudforum/setup/base/src/fileio.inc.t">
+</file>
+<file name="finduser.php.t" url="fudforum/setup/base/src/finduser.php.t">
+</file>
+<file name="forum.css.t" url="fudforum/setup/base/src/forum.css.t">
+</file>
+<file name="forum.inc.t" url="fudforum/setup/base/src/forum.inc.t">
+</file>
+<file name="forum_notify.inc.t"
url="fudforum/setup/base/src/forum_notify.inc.t">
+</file>
+<file name="forumsel.inc.t" url="fudforum/setup/base/src/forumsel.inc.t">
+</file>
+<file name="get_cur_ppage.inc.t"
url="fudforum/setup/base/src/get_cur_ppage.inc.t">
+</file>
+<file name="getfile.php.t" url="fudforum/setup/base/src/getfile.php.t">
+</file>
+<file name="groupmgr.php.t" url="fudforum/setup/base/src/groupmgr.php.t">
+</file>
+<file name="groups.inc.t" url="fudforum/setup/base/src/groups.inc.t">
+</file>
+<file name="help_index.php.t" url="fudforum/setup/base/src/help_index.php.t">
+</file>
+<file name="iemail.inc.t" url="fudforum/setup/base/src/iemail.inc.t">
+</file>
+<file name="ignore.inc.t" url="fudforum/setup/base/src/ignore.inc.t">
+</file>
+<file name="ignore_list.php.t" url="fudforum/setup/base/src/ignore_list.php.t">
+</file>
+<file name="imsg.inc.t" url="fudforum/setup/base/src/imsg.inc.t">
+</file>
+<file name="imsg_edt.inc.t" url="fudforum/setup/base/src/imsg_edt.inc.t">
+</file>
+<file name="index.php.t" url="fudforum/setup/base/src/index.php.t">
+</file>
+<file name="ipoll.inc.t" url="fudforum/setup/base/src/ipoll.inc.t">
+</file>
+<file name="is_perms.inc.t" url="fudforum/setup/base/src/is_perms.inc.t">
+</file>
+<file name="isearch.inc.t" url="fudforum/setup/base/src/isearch.inc.t">
+</file>
+<file name="logaction.inc.t" url="fudforum/setup/base/src/logaction.inc.t">
+</file>
+<file name="logedin.inc.t" url="fudforum/setup/base/src/logedin.inc.t">
+</file>
+<file name="markread.php.t" url="fudforum/setup/base/src/markread.php.t">
+</file>
+<file name="merge_th.php.t" url="fudforum/setup/base/src/merge_th.php.t">
+</file>
+<file name="minimsg.inc.t" url="fudforum/setup/base/src/minimsg.inc.t">
+</file>
+<file name="mklist.php.t" url="fudforum/setup/base/src/mklist.php.t">
+</file>
+<file name="mmod.php.t" url="fudforum/setup/base/src/mmod.php.t">
+</file>
+<file name="mnav.php.t" url="fudforum/setup/base/src/mnav.php.t">
+</file>
+<file name="modque.php.t" url="fudforum/setup/base/src/modque.php.t">
+</file>
+<file name="msg.php.t" url="fudforum/setup/base/src/msg.php.t">
+</file>
+<file name="mvthread.php.t" url="fudforum/setup/base/src/mvthread.php.t">
+</file>
+<file name="online_today.php.t"
url="fudforum/setup/base/src/online_today.php.t">
+</file>
+<file name="pdf.php.t" url="fudforum/setup/base/src/pdf.php.t">
+</file>
+<file name="pmsg.php.t" url="fudforum/setup/base/src/pmsg.php.t">
+</file>
+<file name="pmsg_view.php.t" url="fudforum/setup/base/src/pmsg_view.php.t">
+</file>
+<file name="pmuserloc.php.t" url="fudforum/setup/base/src/pmuserloc.php.t">
+</file>
+<file name="poll.php.t" url="fudforum/setup/base/src/poll.php.t">
+</file>
+<file name="polllist.php.t" url="fudforum/setup/base/src/polllist.php.t">
+</file>
+<file name="post.php.t" url="fudforum/setup/base/src/post.php.t">
+</file>
+<file name="post_common.inc.t" url="fudforum/setup/base/src/post_common.inc.t">
+</file>
+<file name="post_opt.inc.t" url="fudforum/setup/base/src/post_opt.inc.t">
+</file>
+<file name="post_proc.inc.t" url="fudforum/setup/base/src/post_proc.inc.t">
+</file>
+<file name="postcheck.inc.t" url="fudforum/setup/base/src/postcheck.inc.t">
+</file>
+<file name="ppost.php.t" url="fudforum/setup/base/src/ppost.php.t">
+</file>
+<file name="private.inc.t" url="fudforum/setup/base/src/private.inc.t">
+</file>
+<file name="qbud.php.t" url="fudforum/setup/base/src/qbud.php.t">
+</file>
+<file name="ratethread.php.t" url="fudforum/setup/base/src/ratethread.php.t">
+</file>
+<file name="rdf.php.t" url="fudforum/setup/base/src/rdf.php.t">
+</file>
+<file name="register.php.t" url="fudforum/setup/base/src/register.php.t">
+</file>
+<file name="remail.php.t" url="fudforum/setup/base/src/remail.php.t">
+</file>
+<file name="replace.inc.t" url="fudforum/setup/base/src/replace.inc.t">
+</file>
+<file name="report.php.t" url="fudforum/setup/base/src/report.php.t">
+</file>
+<file name="reported.php.t" url="fudforum/setup/base/src/reported.php.t">
+</file>
+<file name="return.inc.t" url="fudforum/setup/base/src/return.inc.t">
+</file>
+<file name="rev_fmt.inc.t" url="fudforum/setup/base/src/rev_fmt.inc.t">
+</file>
+<file name="rhost.inc.t" url="fudforum/setup/base/src/rhost.inc.t">
+</file>
+<file name="root_index.php.t" url="fudforum/setup/base/src/root_index.php.t">
+</file>
+<file name="search.php.t" url="fudforum/setup/base/src/search.php.t">
+</file>
+<file name="search_forum_sel.inc.t"
url="fudforum/setup/base/src/search_forum_sel.inc.t">
+</file>
+<file name="security.inc.t" url="fudforum/setup/base/src/security.inc.t">
+</file>
+<file name="selmsg.php.t" url="fudforum/setup/base/src/selmsg.php.t">
+</file>
+<file name="show.inc.t" url="fudforum/setup/base/src/show.inc.t">
+</file>
+<file name="showposts.php.t" url="fudforum/setup/base/src/showposts.php.t">
+</file>
+<file name="smiley.inc.t" url="fudforum/setup/base/src/smiley.inc.t">
+</file>
+<file name="smladd.php.t" url="fudforum/setup/base/src/smladd.php.t">
+</file>
+<file name="smtp.inc.t" url="fudforum/setup/base/src/smtp.inc.t">
+</file>
+<file name="spell.inc.t" url="fudforum/setup/base/src/spell.inc.t">
+</file>
+<file name="split_th.php.t" url="fudforum/setup/base/src/split_th.php.t">
+</file>
+<file name="ssu.inc.t" url="fudforum/setup/base/src/ssu.inc.t">
+</file>
+<file name="stats.inc.t" url="fudforum/setup/base/src/stats.inc.t">
+</file>
+<file name="subscribed.php.t" url="fudforum/setup/base/src/subscribed.php.t">
+</file>
+<file name="tabs.inc.t" url="fudforum/setup/base/src/tabs.inc.t">
+</file>
+<file name="th.inc.t" url="fudforum/setup/base/src/th.inc.t">
+</file>
+<file name="th_adm.inc.t" url="fudforum/setup/base/src/th_adm.inc.t">
+</file>
+<file name="th_nav.inc.t" url="fudforum/setup/base/src/th_nav.inc.t">
+</file>
+<file name="thr_exch.php.t" url="fudforum/setup/base/src/thr_exch.php.t">
+</file>
+<file name="thread.php.t" url="fudforum/setup/base/src/thread.php.t">
+</file>
+<file name="thread_notify.inc.t"
url="fudforum/setup/base/src/thread_notify.inc.t">
+</file>
+<file name="thread_view_common.inc.t"
url="fudforum/setup/base/src/thread_view_common.inc.t">
+</file>
+<file name="threadt.php.t" url="fudforum/setup/base/src/threadt.php.t">
+</file>
+<file name="tmp_view.php.t" url="fudforum/setup/base/src/tmp_view.php.t">
+</file>
+<file name="tree.php.t" url="fudforum/setup/base/src/tree.php.t">
+</file>
+<file name="tz.inc.t" url="fudforum/setup/base/src/tz.inc.t">
+</file>
+<file name="ulink.inc.t" url="fudforum/setup/base/src/ulink.inc.t">
+</file>
+<file name="usercp.inc.t" url="fudforum/setup/base/src/usercp.inc.t">
+</file>
+<file name="users.inc.t" url="fudforum/setup/base/src/users.inc.t">
+</file>
+<file name="users_reg.inc.t" url="fudforum/setup/base/src/users_reg.inc.t">
+</file>
+<file name="usrinfo.php.t" url="fudforum/setup/base/src/usrinfo.php.t">
+</file>
+<file name="wordwrap.inc.t" url="fudforum/setup/base/src/wordwrap.inc.t">
+</file>
+</folder>
+<folder name="thm" url="fudforum/setup/base/thm">
+<file name=".htaccess" url="fudforum/setup/base/thm/.htaccess">
+</file>
+<folder name="default" url="fudforum/setup/base/thm/default">
+<folder name="i18n" url="fudforum/setup/base/thm/default/i18n">
+<folder name="bulgarian" url="fudforum/setup/base/thm/default/i18n/bulgarian">
+<file name="charset"
url="fudforum/setup/base/thm/default/i18n/bulgarian/charset">
+</file>
+<file name="locale"
url="fudforum/setup/base/thm/default/i18n/bulgarian/locale">
+</file>
+<file name="msg" url="fudforum/setup/base/thm/default/i18n/bulgarian/msg">
+</file>
+<folder name="help" url="fudforum/setup/base/thm/default/i18n/bulgarian/help">
+<file name="boardusage.hlp"
url="fudforum/setup/base/thm/default/i18n/bulgarian/help/boardusage.hlp">
+</file>
+<file name="create_poll.hlp"
url="fudforum/setup/base/thm/default/i18n/bulgarian/help/create_poll.hlp">
+</file>
+<file name="dis_sml.hlp"
url="fudforum/setup/base/thm/default/i18n/bulgarian/help/dis_sml.hlp">
+</file>
+<file name="edit_tools.hlp"
url="fudforum/setup/base/thm/default/i18n/bulgarian/help/edit_tools.hlp">
+</file>
+<file name="faq_index.hlp"
url="fudforum/setup/base/thm/default/i18n/bulgarian/help/faq_index.hlp">
+</file>
+<file name="forum_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/bulgarian/help/forum_sub.hlp">
+</file>
+<file name="no_replies.hlp"
url="fudforum/setup/base/thm/default/i18n/bulgarian/help/no_replies.hlp">
+</file>
+<file name="post_icon.hlp"
url="fudforum/setup/base/thm/default/i18n/bulgarian/help/post_icon.hlp">
+</file>
+<file name="post_not.hlp"
url="fudforum/setup/base/thm/default/i18n/bulgarian/help/post_not.hlp">
+</file>
+<file name="readingposting.hlp"
url="fudforum/setup/base/thm/default/i18n/bulgarian/help/readingposting.hlp">
+</file>
+<file name="show_index.hlp"
url="fudforum/setup/base/thm/default/i18n/bulgarian/help/show_index.hlp">
+</file>
+<file name="smilies.hlp"
url="fudforum/setup/base/thm/default/i18n/bulgarian/help/smilies.hlp">
+</file>
+<file name="thread_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/bulgarian/help/thread_sub.hlp">
+</file>
+<file name="usermaintance.hlp"
url="fudforum/setup/base/thm/default/i18n/bulgarian/help/usermaintance.hlp">
+</file>
+</folder>
+<folder name="img" url="fudforum/setup/base/thm/default/i18n/bulgarian/img">
+<file name="flat_view.gif"
url="fudforum/setup/base/thm/default/i18n/bulgarian/img/flat_view.gif">
+</file>
+<file name="homepage.gif"
url="fudforum/setup/base/thm/default/i18n/bulgarian/img/homepage.gif">
+</file>
+<file name="msg_about.gif"
url="fudforum/setup/base/thm/default/i18n/bulgarian/img/msg_about.gif">
+</file>
+<file name="msg_delete.gif"
url="fudforum/setup/base/thm/default/i18n/bulgarian/img/msg_delete.gif">
+</file>
+<file name="msg_edit.gif"
url="fudforum/setup/base/thm/default/i18n/bulgarian/img/msg_edit.gif">
+</file>
+<file name="msg_email.gif"
url="fudforum/setup/base/thm/default/i18n/bulgarian/img/msg_email.gif">
+</file>
+<file name="msg_forward.gif"
url="fudforum/setup/base/thm/default/i18n/bulgarian/img/msg_forward.gif">
+</file>
+<file name="msg_pm.gif"
url="fudforum/setup/base/thm/default/i18n/bulgarian/img/msg_pm.gif">
+</file>
+<file name="msg_quote.gif"
url="fudforum/setup/base/thm/default/i18n/bulgarian/img/msg_quote.gif">
+</file>
+<file name="msg_reply.gif"
url="fudforum/setup/base/thm/default/i18n/bulgarian/img/msg_reply.gif">
+</file>
+<file name="new_pm.gif"
url="fudforum/setup/base/thm/default/i18n/bulgarian/img/new_pm.gif">
+</file>
+<file name="new_thread.gif"
url="fudforum/setup/base/thm/default/i18n/bulgarian/img/new_thread.gif">
+</file>
+<file name="post_reply.gif"
url="fudforum/setup/base/thm/default/i18n/bulgarian/img/post_reply.gif">
+</file>
+<file name="show_posts.gif"
url="fudforum/setup/base/thm/default/i18n/bulgarian/img/show_posts.gif">
+</file>
+<file name="tree_view.gif"
url="fudforum/setup/base/thm/default/i18n/bulgarian/img/tree_view.gif">
+</file>
+</folder>
+</folder>
+<folder name="chinese" url="fudforum/setup/base/thm/default/i18n/chinese">
+<file name="charset"
url="fudforum/setup/base/thm/default/i18n/chinese/charset">
+</file>
+<file name="locale" url="fudforum/setup/base/thm/default/i18n/chinese/locale">
+</file>
+<file name="msg" url="fudforum/setup/base/thm/default/i18n/chinese/msg">
+</file>
+<folder name="help" url="fudforum/setup/base/thm/default/i18n/chinese/help">
+<file name="boardusage.hlp"
url="fudforum/setup/base/thm/default/i18n/chinese/help/boardusage.hlp">
+</file>
+<file name="create_poll.hlp"
url="fudforum/setup/base/thm/default/i18n/chinese/help/create_poll.hlp">
+</file>
+<file name="dis_sml.hlp"
url="fudforum/setup/base/thm/default/i18n/chinese/help/dis_sml.hlp">
+</file>
+<file name="edit_tools.hlp"
url="fudforum/setup/base/thm/default/i18n/chinese/help/edit_tools.hlp">
+</file>
+<file name="faq_index.hlp"
url="fudforum/setup/base/thm/default/i18n/chinese/help/faq_index.hlp">
+</file>
+<file name="forum_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/chinese/help/forum_sub.hlp">
+</file>
+<file name="no_replies.hlp"
url="fudforum/setup/base/thm/default/i18n/chinese/help/no_replies.hlp">
+</file>
+<file name="post_icon.hlp"
url="fudforum/setup/base/thm/default/i18n/chinese/help/post_icon.hlp">
+</file>
+<file name="post_not.hlp"
url="fudforum/setup/base/thm/default/i18n/chinese/help/post_not.hlp">
+</file>
+<file name="readingposting.hlp"
url="fudforum/setup/base/thm/default/i18n/chinese/help/readingposting.hlp">
+</file>
+<file name="show_index.hlp"
url="fudforum/setup/base/thm/default/i18n/chinese/help/show_index.hlp">
+</file>
+<file name="smilies.hlp"
url="fudforum/setup/base/thm/default/i18n/chinese/help/smilies.hlp">
+</file>
+<file name="thread_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/chinese/help/thread_sub.hlp">
+</file>
+<file name="usermaintance.hlp"
url="fudforum/setup/base/thm/default/i18n/chinese/help/usermaintance.hlp">
+</file>
+</folder>
+<folder name="img" url="fudforum/setup/base/thm/default/i18n/chinese/img">
+<file name="flat_view.gif"
url="fudforum/setup/base/thm/default/i18n/chinese/img/flat_view.gif">
+</file>
+<file name="homepage.gif"
url="fudforum/setup/base/thm/default/i18n/chinese/img/homepage.gif">
+</file>
+<file name="msg_about.gif"
url="fudforum/setup/base/thm/default/i18n/chinese/img/msg_about.gif">
+</file>
+<file name="msg_delete.gif"
url="fudforum/setup/base/thm/default/i18n/chinese/img/msg_delete.gif">
+</file>
+<file name="msg_edit.gif"
url="fudforum/setup/base/thm/default/i18n/chinese/img/msg_edit.gif">
+</file>
+<file name="msg_email.gif"
url="fudforum/setup/base/thm/default/i18n/chinese/img/msg_email.gif">
+</file>
+<file name="msg_forward.gif"
url="fudforum/setup/base/thm/default/i18n/chinese/img/msg_forward.gif">
+</file>
+<file name="msg_pm.gif"
url="fudforum/setup/base/thm/default/i18n/chinese/img/msg_pm.gif">
+</file>
+<file name="msg_quote.gif"
url="fudforum/setup/base/thm/default/i18n/chinese/img/msg_quote.gif">
+</file>
+<file name="msg_reply.gif"
url="fudforum/setup/base/thm/default/i18n/chinese/img/msg_reply.gif">
+</file>
+<file name="new_pm.gif"
url="fudforum/setup/base/thm/default/i18n/chinese/img/new_pm.gif">
+</file>
+<file name="new_thread.gif"
url="fudforum/setup/base/thm/default/i18n/chinese/img/new_thread.gif">
+</file>
+<file name="post_reply.gif"
url="fudforum/setup/base/thm/default/i18n/chinese/img/post_reply.gif">
+</file>
+<file name="show_posts.gif"
url="fudforum/setup/base/thm/default/i18n/chinese/img/show_posts.gif">
+</file>
+<file name="tree_view.gif"
url="fudforum/setup/base/thm/default/i18n/chinese/img/tree_view.gif">
+</file>
+</folder>
+</folder>
+<folder name="chinese_big5"
url="fudforum/setup/base/thm/default/i18n/chinese_big5">
+<file name="charset"
url="fudforum/setup/base/thm/default/i18n/chinese_big5/charset">
+</file>
+<file name="locale"
url="fudforum/setup/base/thm/default/i18n/chinese_big5/locale">
+</file>
+<file name="msg" url="fudforum/setup/base/thm/default/i18n/chinese_big5/msg">
+</file>
+<folder name="help"
url="fudforum/setup/base/thm/default/i18n/chinese_big5/help">
+<file name="boardusage.hlp"
url="fudforum/setup/base/thm/default/i18n/chinese_big5/help/boardusage.hlp">
+</file>
+<file name="create_poll.hlp"
url="fudforum/setup/base/thm/default/i18n/chinese_big5/help/create_poll.hlp">
+</file>
+<file name="dis_sml.hlp"
url="fudforum/setup/base/thm/default/i18n/chinese_big5/help/dis_sml.hlp">
+</file>
+<file name="edit_tools.hlp"
url="fudforum/setup/base/thm/default/i18n/chinese_big5/help/edit_tools.hlp">
+</file>
+<file name="faq_index.hlp"
url="fudforum/setup/base/thm/default/i18n/chinese_big5/help/faq_index.hlp">
+</file>
+<file name="forum_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/chinese_big5/help/forum_sub.hlp">
+</file>
+<file name="no_replies.hlp"
url="fudforum/setup/base/thm/default/i18n/chinese_big5/help/no_replies.hlp">
+</file>
+<file name="post_icon.hlp"
url="fudforum/setup/base/thm/default/i18n/chinese_big5/help/post_icon.hlp">
+</file>
+<file name="post_not.hlp"
url="fudforum/setup/base/thm/default/i18n/chinese_big5/help/post_not.hlp">
+</file>
+<file name="readingposting.hlp"
url="fudforum/setup/base/thm/default/i18n/chinese_big5/help/readingposting.hlp">
+</file>
+<file name="show_index.hlp"
url="fudforum/setup/base/thm/default/i18n/chinese_big5/help/show_index.hlp">
+</file>
+<file name="smilies.hlp"
url="fudforum/setup/base/thm/default/i18n/chinese_big5/help/smilies.hlp">
+</file>
+<file name="thread_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/chinese_big5/help/thread_sub.hlp">
+</file>
+<file name="usermaintance.hlp"
url="fudforum/setup/base/thm/default/i18n/chinese_big5/help/usermaintance.hlp">
+</file>
+</folder>
+<folder name="img" url="fudforum/setup/base/thm/default/i18n/chinese_big5/img">
+<file name="flat_view.gif"
url="fudforum/setup/base/thm/default/i18n/chinese_big5/img/flat_view.gif">
+</file>
+<file name="homepage.gif"
url="fudforum/setup/base/thm/default/i18n/chinese_big5/img/homepage.gif">
+</file>
+<file name="msg_about.gif"
url="fudforum/setup/base/thm/default/i18n/chinese_big5/img/msg_about.gif">
+</file>
+<file name="msg_delete.gif"
url="fudforum/setup/base/thm/default/i18n/chinese_big5/img/msg_delete.gif">
+</file>
+<file name="msg_edit.gif"
url="fudforum/setup/base/thm/default/i18n/chinese_big5/img/msg_edit.gif">
+</file>
+<file name="msg_email.gif"
url="fudforum/setup/base/thm/default/i18n/chinese_big5/img/msg_email.gif">
+</file>
+<file name="msg_forward.gif"
url="fudforum/setup/base/thm/default/i18n/chinese_big5/img/msg_forward.gif">
+</file>
+<file name="msg_pm.gif"
url="fudforum/setup/base/thm/default/i18n/chinese_big5/img/msg_pm.gif">
+</file>
+<file name="msg_quote.gif"
url="fudforum/setup/base/thm/default/i18n/chinese_big5/img/msg_quote.gif">
+</file>
+<file name="msg_reply.gif"
url="fudforum/setup/base/thm/default/i18n/chinese_big5/img/msg_reply.gif">
+</file>
+<file name="new_pm.gif"
url="fudforum/setup/base/thm/default/i18n/chinese_big5/img/new_pm.gif">
+</file>
+<file name="new_thread.gif"
url="fudforum/setup/base/thm/default/i18n/chinese_big5/img/new_thread.gif">
+</file>
+<file name="post_reply.gif"
url="fudforum/setup/base/thm/default/i18n/chinese_big5/img/post_reply.gif">
+</file>
+<file name="show_posts.gif"
url="fudforum/setup/base/thm/default/i18n/chinese_big5/img/show_posts.gif">
+</file>
+<file name="tree_view.gif"
url="fudforum/setup/base/thm/default/i18n/chinese_big5/img/tree_view.gif">
+</file>
+</folder>
+</folder>
+<folder name="czech" url="fudforum/setup/base/thm/default/i18n/czech">
+<file name="pspell_lang"
url="fudforum/setup/base/thm/default/i18n/czech/pspell_lang">
+</file>
+<file name="charset" url="fudforum/setup/base/thm/default/i18n/czech/charset">
+</file>
+<file name="locale" url="fudforum/setup/base/thm/default/i18n/czech/locale">
+</file>
+<file name="msg" url="fudforum/setup/base/thm/default/i18n/czech/msg">
+</file>
+<folder name="help" url="fudforum/setup/base/thm/default/i18n/czech/help">
+<file name="boardusage.hlp"
url="fudforum/setup/base/thm/default/i18n/czech/help/boardusage.hlp">
+</file>
+<file name="create_poll.hlp"
url="fudforum/setup/base/thm/default/i18n/czech/help/create_poll.hlp">
+</file>
+<file name="dis_sml.hlp"
url="fudforum/setup/base/thm/default/i18n/czech/help/dis_sml.hlp">
+</file>
+<file name="edit_tools.hlp"
url="fudforum/setup/base/thm/default/i18n/czech/help/edit_tools.hlp">
+</file>
+<file name="faq_index.hlp"
url="fudforum/setup/base/thm/default/i18n/czech/help/faq_index.hlp">
+</file>
+<file name="forum_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/czech/help/forum_sub.hlp">
+</file>
+<file name="no_replies.hlp"
url="fudforum/setup/base/thm/default/i18n/czech/help/no_replies.hlp">
+</file>
+<file name="post_icon.hlp"
url="fudforum/setup/base/thm/default/i18n/czech/help/post_icon.hlp">
+</file>
+<file name="post_not.hlp"
url="fudforum/setup/base/thm/default/i18n/czech/help/post_not.hlp">
+</file>
+<file name="readingposting.hlp"
url="fudforum/setup/base/thm/default/i18n/czech/help/readingposting.hlp">
+</file>
+<file name="show_index.hlp"
url="fudforum/setup/base/thm/default/i18n/czech/help/show_index.hlp">
+</file>
+<file name="smilies.hlp"
url="fudforum/setup/base/thm/default/i18n/czech/help/smilies.hlp">
+</file>
+<file name="thread_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/czech/help/thread_sub.hlp">
+</file>
+<file name="usermaintance.hlp"
url="fudforum/setup/base/thm/default/i18n/czech/help/usermaintance.hlp">
+</file>
+</folder>
+<folder name="img" url="fudforum/setup/base/thm/default/i18n/czech/img">
+<file name="flat_view.gif"
url="fudforum/setup/base/thm/default/i18n/czech/img/flat_view.gif">
+</file>
+<file name="homepage.gif"
url="fudforum/setup/base/thm/default/i18n/czech/img/homepage.gif">
+</file>
+<file name="msg_about.gif"
url="fudforum/setup/base/thm/default/i18n/czech/img/msg_about.gif">
+</file>
+<file name="msg_delete.gif"
url="fudforum/setup/base/thm/default/i18n/czech/img/msg_delete.gif">
+</file>
+<file name="msg_edit.gif"
url="fudforum/setup/base/thm/default/i18n/czech/img/msg_edit.gif">
+</file>
+<file name="msg_email.gif"
url="fudforum/setup/base/thm/default/i18n/czech/img/msg_email.gif">
+</file>
+<file name="msg_forward.gif"
url="fudforum/setup/base/thm/default/i18n/czech/img/msg_forward.gif">
+</file>
+<file name="msg_pm.gif"
url="fudforum/setup/base/thm/default/i18n/czech/img/msg_pm.gif">
+</file>
+<file name="msg_quote.gif"
url="fudforum/setup/base/thm/default/i18n/czech/img/msg_quote.gif">
+</file>
+<file name="msg_reply.gif"
url="fudforum/setup/base/thm/default/i18n/czech/img/msg_reply.gif">
+</file>
+<file name="new_pm.gif"
url="fudforum/setup/base/thm/default/i18n/czech/img/new_pm.gif">
+</file>
+<file name="new_thread.gif"
url="fudforum/setup/base/thm/default/i18n/czech/img/new_thread.gif">
+</file>
+<file name="post_reply.gif"
url="fudforum/setup/base/thm/default/i18n/czech/img/post_reply.gif">
+</file>
+<file name="show_posts.gif"
url="fudforum/setup/base/thm/default/i18n/czech/img/show_posts.gif">
+</file>
+<file name="tree_view.gif"
url="fudforum/setup/base/thm/default/i18n/czech/img/tree_view.gif">
+</file>
+</folder>
+</folder>
+<folder name="dutch" url="fudforum/setup/base/thm/default/i18n/dutch">
+<file name="pspell_lang"
url="fudforum/setup/base/thm/default/i18n/dutch/pspell_lang">
+</file>
+<file name="charset" url="fudforum/setup/base/thm/default/i18n/dutch/charset">
+</file>
+<file name="locale" url="fudforum/setup/base/thm/default/i18n/dutch/locale">
+</file>
+<file name="msg" url="fudforum/setup/base/thm/default/i18n/dutch/msg">
+</file>
+<folder name="help" url="fudforum/setup/base/thm/default/i18n/dutch/help">
+<file name="boardusage.hlp"
url="fudforum/setup/base/thm/default/i18n/dutch/help/boardusage.hlp">
+</file>
+<file name="create_poll.hlp"
url="fudforum/setup/base/thm/default/i18n/dutch/help/create_poll.hlp">
+</file>
+<file name="dis_sml.hlp"
url="fudforum/setup/base/thm/default/i18n/dutch/help/dis_sml.hlp">
+</file>
+<file name="edit_tools.hlp"
url="fudforum/setup/base/thm/default/i18n/dutch/help/edit_tools.hlp">
+</file>
+<file name="faq_index.hlp"
url="fudforum/setup/base/thm/default/i18n/dutch/help/faq_index.hlp">
+</file>
+<file name="forum_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/dutch/help/forum_sub.hlp">
+</file>
+<file name="no_replies.hlp"
url="fudforum/setup/base/thm/default/i18n/dutch/help/no_replies.hlp">
+</file>
+<file name="post_icon.hlp"
url="fudforum/setup/base/thm/default/i18n/dutch/help/post_icon.hlp">
+</file>
+<file name="post_not.hlp"
url="fudforum/setup/base/thm/default/i18n/dutch/help/post_not.hlp">
+</file>
+<file name="readingposting.hlp"
url="fudforum/setup/base/thm/default/i18n/dutch/help/readingposting.hlp">
+</file>
+<file name="show_index.hlp"
url="fudforum/setup/base/thm/default/i18n/dutch/help/show_index.hlp">
+</file>
+<file name="smilies.hlp"
url="fudforum/setup/base/thm/default/i18n/dutch/help/smilies.hlp">
+</file>
+<file name="thread_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/dutch/help/thread_sub.hlp">
+</file>
+<file name="usermaintance.hlp"
url="fudforum/setup/base/thm/default/i18n/dutch/help/usermaintance.hlp">
+</file>
+</folder>
+<folder name="img" url="fudforum/setup/base/thm/default/i18n/dutch/img">
+<file name="flat_view.gif"
url="fudforum/setup/base/thm/default/i18n/dutch/img/flat_view.gif">
+</file>
+<file name="homepage.gif"
url="fudforum/setup/base/thm/default/i18n/dutch/img/homepage.gif">
+</file>
+<file name="msg_about.gif"
url="fudforum/setup/base/thm/default/i18n/dutch/img/msg_about.gif">
+</file>
+<file name="msg_delete.gif"
url="fudforum/setup/base/thm/default/i18n/dutch/img/msg_delete.gif">
+</file>
+<file name="msg_edit.gif"
url="fudforum/setup/base/thm/default/i18n/dutch/img/msg_edit.gif">
+</file>
+<file name="msg_email.gif"
url="fudforum/setup/base/thm/default/i18n/dutch/img/msg_email.gif">
+</file>
+<file name="msg_forward.gif"
url="fudforum/setup/base/thm/default/i18n/dutch/img/msg_forward.gif">
+</file>
+<file name="msg_pm.gif"
url="fudforum/setup/base/thm/default/i18n/dutch/img/msg_pm.gif">
+</file>
+<file name="msg_quote.gif"
url="fudforum/setup/base/thm/default/i18n/dutch/img/msg_quote.gif">
+</file>
+<file name="msg_reply.gif"
url="fudforum/setup/base/thm/default/i18n/dutch/img/msg_reply.gif">
+</file>
+<file name="new_pm.gif"
url="fudforum/setup/base/thm/default/i18n/dutch/img/new_pm.gif">
+</file>
+<file name="new_thread.gif"
url="fudforum/setup/base/thm/default/i18n/dutch/img/new_thread.gif">
+</file>
+<file name="post_reply.gif"
url="fudforum/setup/base/thm/default/i18n/dutch/img/post_reply.gif">
+</file>
+<file name="show_posts.gif"
url="fudforum/setup/base/thm/default/i18n/dutch/img/show_posts.gif">
+</file>
+<file name="tree_view.gif"
url="fudforum/setup/base/thm/default/i18n/dutch/img/tree_view.gif">
+</file>
+</folder>
+</folder>
+<folder name="english" url="fudforum/setup/base/thm/default/i18n/english">
+<file name="pspell_lang"
url="fudforum/setup/base/thm/default/i18n/english/pspell_lang">
+</file>
+<file name="charset"
url="fudforum/setup/base/thm/default/i18n/english/charset">
+</file>
+<file name="locale" url="fudforum/setup/base/thm/default/i18n/english/locale">
+</file>
+<file name="msg" url="fudforum/setup/base/thm/default/i18n/english/msg">
+</file>
+<folder name="help" url="fudforum/setup/base/thm/default/i18n/english/help">
+<file name="boardusage.hlp"
url="fudforum/setup/base/thm/default/i18n/english/help/boardusage.hlp">
+</file>
+<file name="create_poll.hlp"
url="fudforum/setup/base/thm/default/i18n/english/help/create_poll.hlp">
+</file>
+<file name="dis_sml.hlp"
url="fudforum/setup/base/thm/default/i18n/english/help/dis_sml.hlp">
+</file>
+<file name="edit_tools.hlp"
url="fudforum/setup/base/thm/default/i18n/english/help/edit_tools.hlp">
+</file>
+<file name="faq_index.hlp"
url="fudforum/setup/base/thm/default/i18n/english/help/faq_index.hlp">
+</file>
+<file name="forum_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/english/help/forum_sub.hlp">
+</file>
+<file name="no_replies.hlp"
url="fudforum/setup/base/thm/default/i18n/english/help/no_replies.hlp">
+</file>
+<file name="post_icon.hlp"
url="fudforum/setup/base/thm/default/i18n/english/help/post_icon.hlp">
+</file>
+<file name="post_not.hlp"
url="fudforum/setup/base/thm/default/i18n/english/help/post_not.hlp">
+</file>
+<file name="readingposting.hlp"
url="fudforum/setup/base/thm/default/i18n/english/help/readingposting.hlp">
+</file>
+<file name="show_index.hlp"
url="fudforum/setup/base/thm/default/i18n/english/help/show_index.hlp">
+</file>
+<file name="smilies.hlp"
url="fudforum/setup/base/thm/default/i18n/english/help/smilies.hlp">
+</file>
+<file name="thread_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/english/help/thread_sub.hlp">
+</file>
+<file name="usermaintance.hlp"
url="fudforum/setup/base/thm/default/i18n/english/help/usermaintance.hlp">
+</file>
+</folder>
+<folder name="img" url="fudforum/setup/base/thm/default/i18n/english/img">
+<file name="flat_view.gif"
url="fudforum/setup/base/thm/default/i18n/english/img/flat_view.gif">
+</file>
+<file name="homepage.gif"
url="fudforum/setup/base/thm/default/i18n/english/img/homepage.gif">
+</file>
+<file name="msg_about.gif"
url="fudforum/setup/base/thm/default/i18n/english/img/msg_about.gif">
+</file>
+<file name="msg_delete.gif"
url="fudforum/setup/base/thm/default/i18n/english/img/msg_delete.gif">
+</file>
+<file name="msg_edit.gif"
url="fudforum/setup/base/thm/default/i18n/english/img/msg_edit.gif">
+</file>
+<file name="msg_email.gif"
url="fudforum/setup/base/thm/default/i18n/english/img/msg_email.gif">
+</file>
+<file name="msg_forward.gif"
url="fudforum/setup/base/thm/default/i18n/english/img/msg_forward.gif">
+</file>
+<file name="msg_pm.gif"
url="fudforum/setup/base/thm/default/i18n/english/img/msg_pm.gif">
+</file>
+<file name="msg_quote.gif"
url="fudforum/setup/base/thm/default/i18n/english/img/msg_quote.gif">
+</file>
+<file name="msg_reply.gif"
url="fudforum/setup/base/thm/default/i18n/english/img/msg_reply.gif">
+</file>
+<file name="new_pm.gif"
url="fudforum/setup/base/thm/default/i18n/english/img/new_pm.gif">
+</file>
+<file name="new_thread.gif"
url="fudforum/setup/base/thm/default/i18n/english/img/new_thread.gif">
+</file>
+<file name="post_reply.gif"
url="fudforum/setup/base/thm/default/i18n/english/img/post_reply.gif">
+</file>
+<file name="show_posts.gif"
url="fudforum/setup/base/thm/default/i18n/english/img/show_posts.gif">
+</file>
+<file name="tree_view.gif"
url="fudforum/setup/base/thm/default/i18n/english/img/tree_view.gif">
+</file>
+</folder>
+</folder>
+<folder name="french" url="fudforum/setup/base/thm/default/i18n/french">
+<file name="pspell_lang"
url="fudforum/setup/base/thm/default/i18n/french/pspell_lang">
+</file>
+<file name="charset" url="fudforum/setup/base/thm/default/i18n/french/charset">
+</file>
+<file name="locale" url="fudforum/setup/base/thm/default/i18n/french/locale">
+</file>
+<file name="msg" url="fudforum/setup/base/thm/default/i18n/french/msg">
+</file>
+<folder name="help" url="fudforum/setup/base/thm/default/i18n/french/help">
+<file name="boardusage.hlp"
url="fudforum/setup/base/thm/default/i18n/french/help/boardusage.hlp">
+</file>
+<file name="create_poll.hlp"
url="fudforum/setup/base/thm/default/i18n/french/help/create_poll.hlp">
+</file>
+<file name="dis_sml.hlp"
url="fudforum/setup/base/thm/default/i18n/french/help/dis_sml.hlp">
+</file>
+<file name="edit_tools.hlp"
url="fudforum/setup/base/thm/default/i18n/french/help/edit_tools.hlp">
+</file>
+<file name="faq_index.hlp"
url="fudforum/setup/base/thm/default/i18n/french/help/faq_index.hlp">
+</file>
+<file name="forum_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/french/help/forum_sub.hlp">
+</file>
+<file name="no_replies.hlp"
url="fudforum/setup/base/thm/default/i18n/french/help/no_replies.hlp">
+</file>
+<file name="post_icon.hlp"
url="fudforum/setup/base/thm/default/i18n/french/help/post_icon.hlp">
+</file>
+<file name="post_not.hlp"
url="fudforum/setup/base/thm/default/i18n/french/help/post_not.hlp">
+</file>
+<file name="readingposting.hlp"
url="fudforum/setup/base/thm/default/i18n/french/help/readingposting.hlp">
+</file>
+<file name="show_index.hlp"
url="fudforum/setup/base/thm/default/i18n/french/help/show_index.hlp">
+</file>
+<file name="smilies.hlp"
url="fudforum/setup/base/thm/default/i18n/french/help/smilies.hlp">
+</file>
+<file name="thread_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/french/help/thread_sub.hlp">
+</file>
+<file name="usermaintance.hlp"
url="fudforum/setup/base/thm/default/i18n/french/help/usermaintance.hlp">
+</file>
+</folder>
+<folder name="img" url="fudforum/setup/base/thm/default/i18n/french/img">
+<file name="flat_view.gif"
url="fudforum/setup/base/thm/default/i18n/french/img/flat_view.gif">
+</file>
+<file name="homepage.gif"
url="fudforum/setup/base/thm/default/i18n/french/img/homepage.gif">
+</file>
+<file name="msg_about.gif"
url="fudforum/setup/base/thm/default/i18n/french/img/msg_about.gif">
+</file>
+<file name="msg_delete.gif"
url="fudforum/setup/base/thm/default/i18n/french/img/msg_delete.gif">
+</file>
+<file name="msg_edit.gif"
url="fudforum/setup/base/thm/default/i18n/french/img/msg_edit.gif">
+</file>
+<file name="msg_email.gif"
url="fudforum/setup/base/thm/default/i18n/french/img/msg_email.gif">
+</file>
+<file name="msg_forward.gif"
url="fudforum/setup/base/thm/default/i18n/french/img/msg_forward.gif">
+</file>
+<file name="msg_pm.gif"
url="fudforum/setup/base/thm/default/i18n/french/img/msg_pm.gif">
+</file>
+<file name="msg_quote.gif"
url="fudforum/setup/base/thm/default/i18n/french/img/msg_quote.gif">
+</file>
+<file name="msg_reply.gif"
url="fudforum/setup/base/thm/default/i18n/french/img/msg_reply.gif">
+</file>
+<file name="new_pm.gif"
url="fudforum/setup/base/thm/default/i18n/french/img/new_pm.gif">
+</file>
+<file name="new_thread.gif"
url="fudforum/setup/base/thm/default/i18n/french/img/new_thread.gif">
+</file>
+<file name="post_reply.gif"
url="fudforum/setup/base/thm/default/i18n/french/img/post_reply.gif">
+</file>
+<file name="show_posts.gif"
url="fudforum/setup/base/thm/default/i18n/french/img/show_posts.gif">
+</file>
+<file name="tree_view.gif"
url="fudforum/setup/base/thm/default/i18n/french/img/tree_view.gif">
+</file>
+</folder>
+</folder>
+<folder name="german" url="fudforum/setup/base/thm/default/i18n/german">
+<file name="pspell_lang"
url="fudforum/setup/base/thm/default/i18n/german/pspell_lang">
+</file>
+<file name="charset" url="fudforum/setup/base/thm/default/i18n/german/charset">
+</file>
+<file name="locale" url="fudforum/setup/base/thm/default/i18n/german/locale">
+</file>
+<file name="msg" url="fudforum/setup/base/thm/default/i18n/german/msg">
+</file>
+<folder name="help" url="fudforum/setup/base/thm/default/i18n/german/help">
+<file name="boardusage.hlp"
url="fudforum/setup/base/thm/default/i18n/german/help/boardusage.hlp">
+</file>
+<file name="create_poll.hlp"
url="fudforum/setup/base/thm/default/i18n/german/help/create_poll.hlp">
+</file>
+<file name="dis_sml.hlp"
url="fudforum/setup/base/thm/default/i18n/german/help/dis_sml.hlp">
+</file>
+<file name="edit_tools.hlp"
url="fudforum/setup/base/thm/default/i18n/german/help/edit_tools.hlp">
+</file>
+<file name="faq_index.hlp"
url="fudforum/setup/base/thm/default/i18n/german/help/faq_index.hlp">
+</file>
+<file name="forum_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/german/help/forum_sub.hlp">
+</file>
+<file name="no_replies.hlp"
url="fudforum/setup/base/thm/default/i18n/german/help/no_replies.hlp">
+</file>
+<file name="post_icon.hlp"
url="fudforum/setup/base/thm/default/i18n/german/help/post_icon.hlp">
+</file>
+<file name="post_not.hlp"
url="fudforum/setup/base/thm/default/i18n/german/help/post_not.hlp">
+</file>
+<file name="readingposting.hlp"
url="fudforum/setup/base/thm/default/i18n/german/help/readingposting.hlp">
+</file>
+<file name="show_index.hlp"
url="fudforum/setup/base/thm/default/i18n/german/help/show_index.hlp">
+</file>
+<file name="smilies.hlp"
url="fudforum/setup/base/thm/default/i18n/german/help/smilies.hlp">
+</file>
+<file name="thread_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/german/help/thread_sub.hlp">
+</file>
+<file name="usermaintance.hlp"
url="fudforum/setup/base/thm/default/i18n/german/help/usermaintance.hlp">
+</file>
+</folder>
+<folder name="img" url="fudforum/setup/base/thm/default/i18n/german/img">
+<file name="flat_view.gif"
url="fudforum/setup/base/thm/default/i18n/german/img/flat_view.gif">
+</file>
+<file name="homepage.gif"
url="fudforum/setup/base/thm/default/i18n/german/img/homepage.gif">
+</file>
+<file name="msg_about.gif"
url="fudforum/setup/base/thm/default/i18n/german/img/msg_about.gif">
+</file>
+<file name="msg_delete.gif"
url="fudforum/setup/base/thm/default/i18n/german/img/msg_delete.gif">
+</file>
+<file name="msg_edit.gif"
url="fudforum/setup/base/thm/default/i18n/german/img/msg_edit.gif">
+</file>
+<file name="msg_email.gif"
url="fudforum/setup/base/thm/default/i18n/german/img/msg_email.gif">
+</file>
+<file name="msg_forward.gif"
url="fudforum/setup/base/thm/default/i18n/german/img/msg_forward.gif">
+</file>
+<file name="msg_pm.gif"
url="fudforum/setup/base/thm/default/i18n/german/img/msg_pm.gif">
+</file>
+<file name="msg_quote.gif"
url="fudforum/setup/base/thm/default/i18n/german/img/msg_quote.gif">
+</file>
+<file name="msg_reply.gif"
url="fudforum/setup/base/thm/default/i18n/german/img/msg_reply.gif">
+</file>
+<file name="new_pm.gif"
url="fudforum/setup/base/thm/default/i18n/german/img/new_pm.gif">
+</file>
+<file name="new_thread.gif"
url="fudforum/setup/base/thm/default/i18n/german/img/new_thread.gif">
+</file>
+<file name="post_reply.gif"
url="fudforum/setup/base/thm/default/i18n/german/img/post_reply.gif">
+</file>
+<file name="show_posts.gif"
url="fudforum/setup/base/thm/default/i18n/german/img/show_posts.gif">
+</file>
+<file name="tree_view.gif"
url="fudforum/setup/base/thm/default/i18n/german/img/tree_view.gif">
+</file>
+</folder>
+</folder>
+<folder name="italian" url="fudforum/setup/base/thm/default/i18n/italian">
+<file name="pspell_lang"
url="fudforum/setup/base/thm/default/i18n/italian/pspell_lang">
+</file>
+<file name="charset"
url="fudforum/setup/base/thm/default/i18n/italian/charset">
+</file>
+<file name="locale" url="fudforum/setup/base/thm/default/i18n/italian/locale">
+</file>
+<file name="msg" url="fudforum/setup/base/thm/default/i18n/italian/msg">
+</file>
+<folder name="help" url="fudforum/setup/base/thm/default/i18n/italian/help">
+<file name="boardusage.hlp"
url="fudforum/setup/base/thm/default/i18n/italian/help/boardusage.hlp">
+</file>
+<file name="create_poll.hlp"
url="fudforum/setup/base/thm/default/i18n/italian/help/create_poll.hlp">
+</file>
+<file name="dis_sml.hlp"
url="fudforum/setup/base/thm/default/i18n/italian/help/dis_sml.hlp">
+</file>
+<file name="edit_tools.hlp"
url="fudforum/setup/base/thm/default/i18n/italian/help/edit_tools.hlp">
+</file>
+<file name="faq_index.hlp"
url="fudforum/setup/base/thm/default/i18n/italian/help/faq_index.hlp">
+</file>
+<file name="forum_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/italian/help/forum_sub.hlp">
+</file>
+<file name="no_replies.hlp"
url="fudforum/setup/base/thm/default/i18n/italian/help/no_replies.hlp">
+</file>
+<file name="post_icon.hlp"
url="fudforum/setup/base/thm/default/i18n/italian/help/post_icon.hlp">
+</file>
+<file name="post_not.hlp"
url="fudforum/setup/base/thm/default/i18n/italian/help/post_not.hlp">
+</file>
+<file name="readingposting.hlp"
url="fudforum/setup/base/thm/default/i18n/italian/help/readingposting.hlp">
+</file>
+<file name="show_index.hlp"
url="fudforum/setup/base/thm/default/i18n/italian/help/show_index.hlp">
+</file>
+<file name="smilies.hlp"
url="fudforum/setup/base/thm/default/i18n/italian/help/smilies.hlp">
+</file>
+<file name="thread_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/italian/help/thread_sub.hlp">
+</file>
+<file name="usermaintance.hlp"
url="fudforum/setup/base/thm/default/i18n/italian/help/usermaintance.hlp">
+</file>
+</folder>
+<folder name="img" url="fudforum/setup/base/thm/default/i18n/italian/img">
+<file name="flat_view.gif"
url="fudforum/setup/base/thm/default/i18n/italian/img/flat_view.gif">
+</file>
+<file name="homepage.gif"
url="fudforum/setup/base/thm/default/i18n/italian/img/homepage.gif">
+</file>
+<file name="msg_about.gif"
url="fudforum/setup/base/thm/default/i18n/italian/img/msg_about.gif">
+</file>
+<file name="msg_delete.gif"
url="fudforum/setup/base/thm/default/i18n/italian/img/msg_delete.gif">
+</file>
+<file name="msg_edit.gif"
url="fudforum/setup/base/thm/default/i18n/italian/img/msg_edit.gif">
+</file>
+<file name="msg_email.gif"
url="fudforum/setup/base/thm/default/i18n/italian/img/msg_email.gif">
+</file>
+<file name="msg_forward.gif"
url="fudforum/setup/base/thm/default/i18n/italian/img/msg_forward.gif">
+</file>
+<file name="msg_pm.gif"
url="fudforum/setup/base/thm/default/i18n/italian/img/msg_pm.gif">
+</file>
+<file name="msg_quote.gif"
url="fudforum/setup/base/thm/default/i18n/italian/img/msg_quote.gif">
+</file>
+<file name="msg_reply.gif"
url="fudforum/setup/base/thm/default/i18n/italian/img/msg_reply.gif">
+</file>
+<file name="new_pm.gif"
url="fudforum/setup/base/thm/default/i18n/italian/img/new_pm.gif">
+</file>
+<file name="new_thread.gif"
url="fudforum/setup/base/thm/default/i18n/italian/img/new_thread.gif">
+</file>
+<file name="post_reply.gif"
url="fudforum/setup/base/thm/default/i18n/italian/img/post_reply.gif">
+</file>
+<file name="show_posts.gif"
url="fudforum/setup/base/thm/default/i18n/italian/img/show_posts.gif">
+</file>
+<file name="tree_view.gif"
url="fudforum/setup/base/thm/default/i18n/italian/img/tree_view.gif">
+</file>
+</folder>
+</folder>
+<folder name="latvian" url="fudforum/setup/base/thm/default/i18n/latvian">
+<file name="pspell_lang"
url="fudforum/setup/base/thm/default/i18n/latvian/pspell_lang">
+</file>
+<file name="charset"
url="fudforum/setup/base/thm/default/i18n/latvian/charset">
+</file>
+<file name="locale" url="fudforum/setup/base/thm/default/i18n/latvian/locale">
+</file>
+<file name="msg" url="fudforum/setup/base/thm/default/i18n/latvian/msg">
+</file>
+<folder name="help" url="fudforum/setup/base/thm/default/i18n/latvian/help">
+<file name="boardusage.hlp"
url="fudforum/setup/base/thm/default/i18n/latvian/help/boardusage.hlp">
+</file>
+<file name="create_poll.hlp"
url="fudforum/setup/base/thm/default/i18n/latvian/help/create_poll.hlp">
+</file>
+<file name="dis_sml.hlp"
url="fudforum/setup/base/thm/default/i18n/latvian/help/dis_sml.hlp">
+</file>
+<file name="edit_tools.hlp"
url="fudforum/setup/base/thm/default/i18n/latvian/help/edit_tools.hlp">
+</file>
+<file name="faq_index.hlp"
url="fudforum/setup/base/thm/default/i18n/latvian/help/faq_index.hlp">
+</file>
+<file name="forum_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/latvian/help/forum_sub.hlp">
+</file>
+<file name="no_replies.hlp"
url="fudforum/setup/base/thm/default/i18n/latvian/help/no_replies.hlp">
+</file>
+<file name="post_icon.hlp"
url="fudforum/setup/base/thm/default/i18n/latvian/help/post_icon.hlp">
+</file>
+<file name="post_not.hlp"
url="fudforum/setup/base/thm/default/i18n/latvian/help/post_not.hlp">
+</file>
+<file name="readingposting.hlp"
url="fudforum/setup/base/thm/default/i18n/latvian/help/readingposting.hlp">
+</file>
+<file name="show_index.hlp"
url="fudforum/setup/base/thm/default/i18n/latvian/help/show_index.hlp">
+</file>
+<file name="smilies.hlp"
url="fudforum/setup/base/thm/default/i18n/latvian/help/smilies.hlp">
+</file>
+<file name="thread_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/latvian/help/thread_sub.hlp">
+</file>
+<file name="usermaintance.hlp"
url="fudforum/setup/base/thm/default/i18n/latvian/help/usermaintance.hlp">
+</file>
+</folder>
+<folder name="img" url="fudforum/setup/base/thm/default/i18n/latvian/img">
+<file name="flat_view.gif"
url="fudforum/setup/base/thm/default/i18n/latvian/img/flat_view.gif">
+</file>
+<file name="homepage.gif"
url="fudforum/setup/base/thm/default/i18n/latvian/img/homepage.gif">
+</file>
+<file name="msg_about.gif"
url="fudforum/setup/base/thm/default/i18n/latvian/img/msg_about.gif">
+</file>
+<file name="msg_delete.gif"
url="fudforum/setup/base/thm/default/i18n/latvian/img/msg_delete.gif">
+</file>
+<file name="msg_edit.gif"
url="fudforum/setup/base/thm/default/i18n/latvian/img/msg_edit.gif">
+</file>
+<file name="msg_email.gif"
url="fudforum/setup/base/thm/default/i18n/latvian/img/msg_email.gif">
+</file>
+<file name="msg_forward.gif"
url="fudforum/setup/base/thm/default/i18n/latvian/img/msg_forward.gif">
+</file>
+<file name="msg_pm.gif"
url="fudforum/setup/base/thm/default/i18n/latvian/img/msg_pm.gif">
+</file>
+<file name="msg_quote.gif"
url="fudforum/setup/base/thm/default/i18n/latvian/img/msg_quote.gif">
+</file>
+<file name="msg_reply.gif"
url="fudforum/setup/base/thm/default/i18n/latvian/img/msg_reply.gif">
+</file>
+<file name="new_pm.gif"
url="fudforum/setup/base/thm/default/i18n/latvian/img/new_pm.gif">
+</file>
+<file name="new_thread.gif"
url="fudforum/setup/base/thm/default/i18n/latvian/img/new_thread.gif">
+</file>
+<file name="post_reply.gif"
url="fudforum/setup/base/thm/default/i18n/latvian/img/post_reply.gif">
+</file>
+<file name="show_posts.gif"
url="fudforum/setup/base/thm/default/i18n/latvian/img/show_posts.gif">
+</file>
+<file name="tree_view.gif"
url="fudforum/setup/base/thm/default/i18n/latvian/img/tree_view.gif">
+</file>
+</folder>
+</folder>
+<folder name="norwegian" url="fudforum/setup/base/thm/default/i18n/norwegian">
+<file name="pspell_lang"
url="fudforum/setup/base/thm/default/i18n/norwegian/pspell_lang">
+</file>
+<file name="charset"
url="fudforum/setup/base/thm/default/i18n/norwegian/charset">
+</file>
+<file name="locale"
url="fudforum/setup/base/thm/default/i18n/norwegian/locale">
+</file>
+<file name="msg" url="fudforum/setup/base/thm/default/i18n/norwegian/msg">
+</file>
+<folder name="help" url="fudforum/setup/base/thm/default/i18n/norwegian/help">
+<file name="boardusage.hlp"
url="fudforum/setup/base/thm/default/i18n/norwegian/help/boardusage.hlp">
+</file>
+<file name="create_poll.hlp"
url="fudforum/setup/base/thm/default/i18n/norwegian/help/create_poll.hlp">
+</file>
+<file name="dis_sml.hlp"
url="fudforum/setup/base/thm/default/i18n/norwegian/help/dis_sml.hlp">
+</file>
+<file name="edit_tools.hlp"
url="fudforum/setup/base/thm/default/i18n/norwegian/help/edit_tools.hlp">
+</file>
+<file name="faq_index.hlp"
url="fudforum/setup/base/thm/default/i18n/norwegian/help/faq_index.hlp">
+</file>
+<file name="forum_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/norwegian/help/forum_sub.hlp">
+</file>
+<file name="no_replies.hlp"
url="fudforum/setup/base/thm/default/i18n/norwegian/help/no_replies.hlp">
+</file>
+<file name="post_icon.hlp"
url="fudforum/setup/base/thm/default/i18n/norwegian/help/post_icon.hlp">
+</file>
+<file name="post_not.hlp"
url="fudforum/setup/base/thm/default/i18n/norwegian/help/post_not.hlp">
+</file>
+<file name="readingposting.hlp"
url="fudforum/setup/base/thm/default/i18n/norwegian/help/readingposting.hlp">
+</file>
+<file name="show_index.hlp"
url="fudforum/setup/base/thm/default/i18n/norwegian/help/show_index.hlp">
+</file>
+<file name="smilies.hlp"
url="fudforum/setup/base/thm/default/i18n/norwegian/help/smilies.hlp">
+</file>
+<file name="thread_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/norwegian/help/thread_sub.hlp">
+</file>
+<file name="usermaintance.hlp"
url="fudforum/setup/base/thm/default/i18n/norwegian/help/usermaintance.hlp">
+</file>
+</folder>
+<folder name="img" url="fudforum/setup/base/thm/default/i18n/norwegian/img">
+<file name="flat_view.gif"
url="fudforum/setup/base/thm/default/i18n/norwegian/img/flat_view.gif">
+</file>
+<file name="homepage.gif"
url="fudforum/setup/base/thm/default/i18n/norwegian/img/homepage.gif">
+</file>
+<file name="msg_about.gif"
url="fudforum/setup/base/thm/default/i18n/norwegian/img/msg_about.gif">
+</file>
+<file name="msg_delete.gif"
url="fudforum/setup/base/thm/default/i18n/norwegian/img/msg_delete.gif">
+</file>
+<file name="msg_edit.gif"
url="fudforum/setup/base/thm/default/i18n/norwegian/img/msg_edit.gif">
+</file>
+<file name="msg_email.gif"
url="fudforum/setup/base/thm/default/i18n/norwegian/img/msg_email.gif">
+</file>
+<file name="msg_forward.gif"
url="fudforum/setup/base/thm/default/i18n/norwegian/img/msg_forward.gif">
+</file>
+<file name="msg_pm.gif"
url="fudforum/setup/base/thm/default/i18n/norwegian/img/msg_pm.gif">
+</file>
+<file name="msg_quote.gif"
url="fudforum/setup/base/thm/default/i18n/norwegian/img/msg_quote.gif">
+</file>
+<file name="msg_reply.gif"
url="fudforum/setup/base/thm/default/i18n/norwegian/img/msg_reply.gif">
+</file>
+<file name="new_pm.gif"
url="fudforum/setup/base/thm/default/i18n/norwegian/img/new_pm.gif">
+</file>
+<file name="new_thread.gif"
url="fudforum/setup/base/thm/default/i18n/norwegian/img/new_thread.gif">
+</file>
+<file name="post_reply.gif"
url="fudforum/setup/base/thm/default/i18n/norwegian/img/post_reply.gif">
+</file>
+<file name="show_posts.gif"
url="fudforum/setup/base/thm/default/i18n/norwegian/img/show_posts.gif">
+</file>
+<file name="tree_view.gif"
url="fudforum/setup/base/thm/default/i18n/norwegian/img/tree_view.gif">
+</file>
+</folder>
+</folder>
+<folder name="polish" url="fudforum/setup/base/thm/default/i18n/polish">
+<file name="pspell_lang"
url="fudforum/setup/base/thm/default/i18n/polish/pspell_lang">
+</file>
+<file name="charset" url="fudforum/setup/base/thm/default/i18n/polish/charset">
+</file>
+<file name="locale" url="fudforum/setup/base/thm/default/i18n/polish/locale">
+</file>
+<file name="msg" url="fudforum/setup/base/thm/default/i18n/polish/msg">
+</file>
+<folder name="help" url="fudforum/setup/base/thm/default/i18n/polish/help">
+<file name="boardusage.hlp"
url="fudforum/setup/base/thm/default/i18n/polish/help/boardusage.hlp">
+</file>
+<file name="create_poll.hlp"
url="fudforum/setup/base/thm/default/i18n/polish/help/create_poll.hlp">
+</file>
+<file name="dis_sml.hlp"
url="fudforum/setup/base/thm/default/i18n/polish/help/dis_sml.hlp">
+</file>
+<file name="edit_tools.hlp"
url="fudforum/setup/base/thm/default/i18n/polish/help/edit_tools.hlp">
+</file>
+<file name="faq_index.hlp"
url="fudforum/setup/base/thm/default/i18n/polish/help/faq_index.hlp">
+</file>
+<file name="forum_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/polish/help/forum_sub.hlp">
+</file>
+<file name="no_replies.hlp"
url="fudforum/setup/base/thm/default/i18n/polish/help/no_replies.hlp">
+</file>
+<file name="post_icon.hlp"
url="fudforum/setup/base/thm/default/i18n/polish/help/post_icon.hlp">
+</file>
+<file name="post_not.hlp"
url="fudforum/setup/base/thm/default/i18n/polish/help/post_not.hlp">
+</file>
+<file name="readingposting.hlp"
url="fudforum/setup/base/thm/default/i18n/polish/help/readingposting.hlp">
+</file>
+<file name="show_index.hlp"
url="fudforum/setup/base/thm/default/i18n/polish/help/show_index.hlp">
+</file>
+<file name="smilies.hlp"
url="fudforum/setup/base/thm/default/i18n/polish/help/smilies.hlp">
+</file>
+<file name="thread_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/polish/help/thread_sub.hlp">
+</file>
+<file name="usermaintance.hlp"
url="fudforum/setup/base/thm/default/i18n/polish/help/usermaintance.hlp">
+</file>
+</folder>
+<folder name="img" url="fudforum/setup/base/thm/default/i18n/polish/img">
+<file name="flat_view.gif"
url="fudforum/setup/base/thm/default/i18n/polish/img/flat_view.gif">
+</file>
+<file name="homepage.gif"
url="fudforum/setup/base/thm/default/i18n/polish/img/homepage.gif">
+</file>
+<file name="msg_about.gif"
url="fudforum/setup/base/thm/default/i18n/polish/img/msg_about.gif">
+</file>
+<file name="msg_delete.gif"
url="fudforum/setup/base/thm/default/i18n/polish/img/msg_delete.gif">
+</file>
+<file name="msg_edit.gif"
url="fudforum/setup/base/thm/default/i18n/polish/img/msg_edit.gif">
+</file>
+<file name="msg_email.gif"
url="fudforum/setup/base/thm/default/i18n/polish/img/msg_email.gif">
+</file>
+<file name="msg_forward.gif"
url="fudforum/setup/base/thm/default/i18n/polish/img/msg_forward.gif">
+</file>
+<file name="msg_pm.gif"
url="fudforum/setup/base/thm/default/i18n/polish/img/msg_pm.gif">
+</file>
+<file name="msg_quote.gif"
url="fudforum/setup/base/thm/default/i18n/polish/img/msg_quote.gif">
+</file>
+<file name="msg_reply.gif"
url="fudforum/setup/base/thm/default/i18n/polish/img/msg_reply.gif">
+</file>
+<file name="new_pm.gif"
url="fudforum/setup/base/thm/default/i18n/polish/img/new_pm.gif">
+</file>
+<file name="new_thread.gif"
url="fudforum/setup/base/thm/default/i18n/polish/img/new_thread.gif">
+</file>
+<file name="post_reply.gif"
url="fudforum/setup/base/thm/default/i18n/polish/img/post_reply.gif">
+</file>
+<file name="show_posts.gif"
url="fudforum/setup/base/thm/default/i18n/polish/img/show_posts.gif">
+</file>
+<file name="tree_view.gif"
url="fudforum/setup/base/thm/default/i18n/polish/img/tree_view.gif">
+</file>
+</folder>
+</folder>
+<folder name="portuguese"
url="fudforum/setup/base/thm/default/i18n/portuguese">
+<file name="pspell_lang"
url="fudforum/setup/base/thm/default/i18n/portuguese/pspell_lang">
+</file>
+<file name="charset"
url="fudforum/setup/base/thm/default/i18n/portuguese/charset">
+</file>
+<file name="locale"
url="fudforum/setup/base/thm/default/i18n/portuguese/locale">
+</file>
+<file name="msg" url="fudforum/setup/base/thm/default/i18n/portuguese/msg">
+</file>
+<folder name="help" url="fudforum/setup/base/thm/default/i18n/portuguese/help">
+<file name="boardusage.hlp"
url="fudforum/setup/base/thm/default/i18n/portuguese/help/boardusage.hlp">
+</file>
+<file name="create_poll.hlp"
url="fudforum/setup/base/thm/default/i18n/portuguese/help/create_poll.hlp">
+</file>
+<file name="dis_sml.hlp"
url="fudforum/setup/base/thm/default/i18n/portuguese/help/dis_sml.hlp">
+</file>
+<file name="edit_tools.hlp"
url="fudforum/setup/base/thm/default/i18n/portuguese/help/edit_tools.hlp">
+</file>
+<file name="faq_index.hlp"
url="fudforum/setup/base/thm/default/i18n/portuguese/help/faq_index.hlp">
+</file>
+<file name="forum_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/portuguese/help/forum_sub.hlp">
+</file>
+<file name="no_replies.hlp"
url="fudforum/setup/base/thm/default/i18n/portuguese/help/no_replies.hlp">
+</file>
+<file name="post_icon.hlp"
url="fudforum/setup/base/thm/default/i18n/portuguese/help/post_icon.hlp">
+</file>
+<file name="post_not.hlp"
url="fudforum/setup/base/thm/default/i18n/portuguese/help/post_not.hlp">
+</file>
+<file name="readingposting.hlp"
url="fudforum/setup/base/thm/default/i18n/portuguese/help/readingposting.hlp">
+</file>
+<file name="show_index.hlp"
url="fudforum/setup/base/thm/default/i18n/portuguese/help/show_index.hlp">
+</file>
+<file name="smilies.hlp"
url="fudforum/setup/base/thm/default/i18n/portuguese/help/smilies.hlp">
+</file>
+<file name="thread_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/portuguese/help/thread_sub.hlp">
+</file>
+<file name="usermaintance.hlp"
url="fudforum/setup/base/thm/default/i18n/portuguese/help/usermaintance.hlp">
+</file>
+</folder>
+<folder name="img" url="fudforum/setup/base/thm/default/i18n/portuguese/img">
+<file name="flat_view.gif"
url="fudforum/setup/base/thm/default/i18n/portuguese/img/flat_view.gif">
+</file>
+<file name="homepage.gif"
url="fudforum/setup/base/thm/default/i18n/portuguese/img/homepage.gif">
+</file>
+<file name="msg_about.gif"
url="fudforum/setup/base/thm/default/i18n/portuguese/img/msg_about.gif">
+</file>
+<file name="msg_delete.gif"
url="fudforum/setup/base/thm/default/i18n/portuguese/img/msg_delete.gif">
+</file>
+<file name="msg_edit.gif"
url="fudforum/setup/base/thm/default/i18n/portuguese/img/msg_edit.gif">
+</file>
+<file name="msg_email.gif"
url="fudforum/setup/base/thm/default/i18n/portuguese/img/msg_email.gif">
+</file>
+<file name="msg_forward.gif"
url="fudforum/setup/base/thm/default/i18n/portuguese/img/msg_forward.gif">
+</file>
+<file name="msg_pm.gif"
url="fudforum/setup/base/thm/default/i18n/portuguese/img/msg_pm.gif">
+</file>
+<file name="msg_quote.gif"
url="fudforum/setup/base/thm/default/i18n/portuguese/img/msg_quote.gif">
+</file>
+<file name="msg_reply.gif"
url="fudforum/setup/base/thm/default/i18n/portuguese/img/msg_reply.gif">
+</file>
+<file name="new_pm.gif"
url="fudforum/setup/base/thm/default/i18n/portuguese/img/new_pm.gif">
+</file>
+<file name="new_thread.gif"
url="fudforum/setup/base/thm/default/i18n/portuguese/img/new_thread.gif">
+</file>
+<file name="post_reply.gif"
url="fudforum/setup/base/thm/default/i18n/portuguese/img/post_reply.gif">
+</file>
+<file name="show_posts.gif"
url="fudforum/setup/base/thm/default/i18n/portuguese/img/show_posts.gif">
+</file>
+<file name="tree_view.gif"
url="fudforum/setup/base/thm/default/i18n/portuguese/img/tree_view.gif">
+</file>
+</folder>
+</folder>
+<folder name="romanian" url="fudforum/setup/base/thm/default/i18n/romanian">
+<file name="pspell_lang"
url="fudforum/setup/base/thm/default/i18n/romanian/pspell_lang">
+</file>
+<file name="charset"
url="fudforum/setup/base/thm/default/i18n/romanian/charset">
+</file>
+<file name="locale" url="fudforum/setup/base/thm/default/i18n/romanian/locale">
+</file>
+<file name="msg" url="fudforum/setup/base/thm/default/i18n/romanian/msg">
+</file>
+<folder name="help" url="fudforum/setup/base/thm/default/i18n/romanian/help">
+<file name="boardusage.hlp"
url="fudforum/setup/base/thm/default/i18n/romanian/help/boardusage.hlp">
+</file>
+<file name="create_poll.hlp"
url="fudforum/setup/base/thm/default/i18n/romanian/help/create_poll.hlp">
+</file>
+<file name="dis_sml.hlp"
url="fudforum/setup/base/thm/default/i18n/romanian/help/dis_sml.hlp">
+</file>
+<file name="edit_tools.hlp"
url="fudforum/setup/base/thm/default/i18n/romanian/help/edit_tools.hlp">
+</file>
+<file name="faq_index.hlp"
url="fudforum/setup/base/thm/default/i18n/romanian/help/faq_index.hlp">
+</file>
+<file name="forum_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/romanian/help/forum_sub.hlp">
+</file>
+<file name="no_replies.hlp"
url="fudforum/setup/base/thm/default/i18n/romanian/help/no_replies.hlp">
+</file>
+<file name="post_icon.hlp"
url="fudforum/setup/base/thm/default/i18n/romanian/help/post_icon.hlp">
+</file>
+<file name="post_not.hlp"
url="fudforum/setup/base/thm/default/i18n/romanian/help/post_not.hlp">
+</file>
+<file name="readingposting.hlp"
url="fudforum/setup/base/thm/default/i18n/romanian/help/readingposting.hlp">
+</file>
+<file name="show_index.hlp"
url="fudforum/setup/base/thm/default/i18n/romanian/help/show_index.hlp">
+</file>
+<file name="smilies.hlp"
url="fudforum/setup/base/thm/default/i18n/romanian/help/smilies.hlp">
+</file>
+<file name="thread_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/romanian/help/thread_sub.hlp">
+</file>
+<file name="usermaintance.hlp"
url="fudforum/setup/base/thm/default/i18n/romanian/help/usermaintance.hlp">
+</file>
+</folder>
+<folder name="img" url="fudforum/setup/base/thm/default/i18n/romanian/img">
+<file name="flat_view.gif"
url="fudforum/setup/base/thm/default/i18n/romanian/img/flat_view.gif">
+</file>
+<file name="homepage.gif"
url="fudforum/setup/base/thm/default/i18n/romanian/img/homepage.gif">
+</file>
+<file name="msg_about.gif"
url="fudforum/setup/base/thm/default/i18n/romanian/img/msg_about.gif">
+</file>
+<file name="msg_delete.gif"
url="fudforum/setup/base/thm/default/i18n/romanian/img/msg_delete.gif">
+</file>
+<file name="msg_edit.gif"
url="fudforum/setup/base/thm/default/i18n/romanian/img/msg_edit.gif">
+</file>
+<file name="msg_email.gif"
url="fudforum/setup/base/thm/default/i18n/romanian/img/msg_email.gif">
+</file>
+<file name="msg_forward.gif"
url="fudforum/setup/base/thm/default/i18n/romanian/img/msg_forward.gif">
+</file>
+<file name="msg_pm.gif"
url="fudforum/setup/base/thm/default/i18n/romanian/img/msg_pm.gif">
+</file>
+<file name="msg_quote.gif"
url="fudforum/setup/base/thm/default/i18n/romanian/img/msg_quote.gif">
+</file>
+<file name="msg_reply.gif"
url="fudforum/setup/base/thm/default/i18n/romanian/img/msg_reply.gif">
+</file>
+<file name="new_pm.gif"
url="fudforum/setup/base/thm/default/i18n/romanian/img/new_pm.gif">
+</file>
+<file name="new_thread.gif"
url="fudforum/setup/base/thm/default/i18n/romanian/img/new_thread.gif">
+</file>
+<file name="post_reply.gif"
url="fudforum/setup/base/thm/default/i18n/romanian/img/post_reply.gif">
+</file>
+<file name="s_new_pm.gif"
url="fudforum/setup/base/thm/default/i18n/romanian/img/s_new_pm.gif">
+</file>
+<file name="show_posts.gif"
url="fudforum/setup/base/thm/default/i18n/romanian/img/show_posts.gif">
+</file>
+<file name="tree_view.gif"
url="fudforum/setup/base/thm/default/i18n/romanian/img/tree_view.gif">
+</file>
+</folder>
+</folder>
+<folder name="russian" url="fudforum/setup/base/thm/default/i18n/russian">
+<file name="pspell_lang"
url="fudforum/setup/base/thm/default/i18n/russian/pspell_lang">
+</file>
+<file name="charset"
url="fudforum/setup/base/thm/default/i18n/russian/charset">
+</file>
+<file name="locale" url="fudforum/setup/base/thm/default/i18n/russian/locale">
+</file>
+<file name="msg" url="fudforum/setup/base/thm/default/i18n/russian/msg">
+</file>
+<folder name="help" url="fudforum/setup/base/thm/default/i18n/russian/help">
+<file name="boardusage.hlp"
url="fudforum/setup/base/thm/default/i18n/russian/help/boardusage.hlp">
+</file>
+<file name="create_poll.hlp"
url="fudforum/setup/base/thm/default/i18n/russian/help/create_poll.hlp">
+</file>
+<file name="dis_sml.hlp"
url="fudforum/setup/base/thm/default/i18n/russian/help/dis_sml.hlp">
+</file>
+<file name="edit_tools.hlp"
url="fudforum/setup/base/thm/default/i18n/russian/help/edit_tools.hlp">
+</file>
+<file name="faq_index.hlp"
url="fudforum/setup/base/thm/default/i18n/russian/help/faq_index.hlp">
+</file>
+<file name="forum_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/russian/help/forum_sub.hlp">
+</file>
+<file name="no_replies.hlp"
url="fudforum/setup/base/thm/default/i18n/russian/help/no_replies.hlp">
+</file>
+<file name="post_icon.hlp"
url="fudforum/setup/base/thm/default/i18n/russian/help/post_icon.hlp">
+</file>
+<file name="post_not.hlp"
url="fudforum/setup/base/thm/default/i18n/russian/help/post_not.hlp">
+</file>
+<file name="readingposting.hlp"
url="fudforum/setup/base/thm/default/i18n/russian/help/readingposting.hlp">
+</file>
+<file name="show_index.hlp"
url="fudforum/setup/base/thm/default/i18n/russian/help/show_index.hlp">
+</file>
+<file name="smilies.hlp"
url="fudforum/setup/base/thm/default/i18n/russian/help/smilies.hlp">
+</file>
+<file name="thread_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/russian/help/thread_sub.hlp">
+</file>
+<file name="usermaintance.hlp"
url="fudforum/setup/base/thm/default/i18n/russian/help/usermaintance.hlp">
+</file>
+</folder>
+<folder name="img" url="fudforum/setup/base/thm/default/i18n/russian/img">
+<file name="flat_view.gif"
url="fudforum/setup/base/thm/default/i18n/russian/img/flat_view.gif">
+</file>
+<file name="homepage.gif"
url="fudforum/setup/base/thm/default/i18n/russian/img/homepage.gif">
+</file>
+<file name="msg_about.gif"
url="fudforum/setup/base/thm/default/i18n/russian/img/msg_about.gif">
+</file>
+<file name="msg_delete.gif"
url="fudforum/setup/base/thm/default/i18n/russian/img/msg_delete.gif">
+</file>
+<file name="msg_edit.gif"
url="fudforum/setup/base/thm/default/i18n/russian/img/msg_edit.gif">
+</file>
+<file name="msg_email.gif"
url="fudforum/setup/base/thm/default/i18n/russian/img/msg_email.gif">
+</file>
+<file name="msg_forward.gif"
url="fudforum/setup/base/thm/default/i18n/russian/img/msg_forward.gif">
+</file>
+<file name="msg_pm.gif"
url="fudforum/setup/base/thm/default/i18n/russian/img/msg_pm.gif">
+</file>
+<file name="msg_quote.gif"
url="fudforum/setup/base/thm/default/i18n/russian/img/msg_quote.gif">
+</file>
+<file name="msg_reply.gif"
url="fudforum/setup/base/thm/default/i18n/russian/img/msg_reply.gif">
+</file>
+<file name="new_pm.gif"
url="fudforum/setup/base/thm/default/i18n/russian/img/new_pm.gif">
+</file>
+<file name="new_thread.gif"
url="fudforum/setup/base/thm/default/i18n/russian/img/new_thread.gif">
+</file>
+<file name="post_reply.gif"
url="fudforum/setup/base/thm/default/i18n/russian/img/post_reply.gif">
+</file>
+<file name="show_posts.gif"
url="fudforum/setup/base/thm/default/i18n/russian/img/show_posts.gif">
+</file>
+<file name="tree_view.gif"
url="fudforum/setup/base/thm/default/i18n/russian/img/tree_view.gif">
+</file>
+</folder>
+</folder>
+<folder name="russian-1251"
url="fudforum/setup/base/thm/default/i18n/russian-1251">
+<file name="pspell_lang"
url="fudforum/setup/base/thm/default/i18n/russian-1251/pspell_lang">
+</file>
+<file name="charset"
url="fudforum/setup/base/thm/default/i18n/russian-1251/charset">
+</file>
+<file name="locale"
url="fudforum/setup/base/thm/default/i18n/russian-1251/locale">
+</file>
+<file name="msg" url="fudforum/setup/base/thm/default/i18n/russian-1251/msg">
+</file>
+<folder name="help"
url="fudforum/setup/base/thm/default/i18n/russian-1251/help">
+<file name="boardusage.hlp"
url="fudforum/setup/base/thm/default/i18n/russian-1251/help/boardusage.hlp">
+</file>
+<file name="create_poll.hlp"
url="fudforum/setup/base/thm/default/i18n/russian-1251/help/create_poll.hlp">
+</file>
+<file name="dis_sml.hlp"
url="fudforum/setup/base/thm/default/i18n/russian-1251/help/dis_sml.hlp">
+</file>
+<file name="edit_tools.hlp"
url="fudforum/setup/base/thm/default/i18n/russian-1251/help/edit_tools.hlp">
+</file>
+<file name="faq_index.hlp"
url="fudforum/setup/base/thm/default/i18n/russian-1251/help/faq_index.hlp">
+</file>
+<file name="forum_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/russian-1251/help/forum_sub.hlp">
+</file>
+<file name="no_replies.hlp"
url="fudforum/setup/base/thm/default/i18n/russian-1251/help/no_replies.hlp">
+</file>
+<file name="post_icon.hlp"
url="fudforum/setup/base/thm/default/i18n/russian-1251/help/post_icon.hlp">
+</file>
+<file name="post_not.hlp"
url="fudforum/setup/base/thm/default/i18n/russian-1251/help/post_not.hlp">
+</file>
+<file name="readingposting.hlp"
url="fudforum/setup/base/thm/default/i18n/russian-1251/help/readingposting.hlp">
+</file>
+<file name="show_index.hlp"
url="fudforum/setup/base/thm/default/i18n/russian-1251/help/show_index.hlp">
+</file>
+<file name="smilies.hlp"
url="fudforum/setup/base/thm/default/i18n/russian-1251/help/smilies.hlp">
+</file>
+<file name="thread_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/russian-1251/help/thread_sub.hlp">
+</file>
+<file name="usermaintance.hlp"
url="fudforum/setup/base/thm/default/i18n/russian-1251/help/usermaintance.hlp">
+</file>
+</folder>
+<folder name="img" url="fudforum/setup/base/thm/default/i18n/russian-1251/img">
+<file name="flat_view.gif"
url="fudforum/setup/base/thm/default/i18n/russian-1251/img/flat_view.gif">
+</file>
+<file name="homepage.gif"
url="fudforum/setup/base/thm/default/i18n/russian-1251/img/homepage.gif">
+</file>
+<file name="msg_about.gif"
url="fudforum/setup/base/thm/default/i18n/russian-1251/img/msg_about.gif">
+</file>
+<file name="msg_delete.gif"
url="fudforum/setup/base/thm/default/i18n/russian-1251/img/msg_delete.gif">
+</file>
+<file name="msg_edit.gif"
url="fudforum/setup/base/thm/default/i18n/russian-1251/img/msg_edit.gif">
+</file>
+<file name="msg_email.gif"
url="fudforum/setup/base/thm/default/i18n/russian-1251/img/msg_email.gif">
+</file>
+<file name="msg_forward.gif"
url="fudforum/setup/base/thm/default/i18n/russian-1251/img/msg_forward.gif">
+</file>
+<file name="msg_pm.gif"
url="fudforum/setup/base/thm/default/i18n/russian-1251/img/msg_pm.gif">
+</file>
+<file name="msg_quote.gif"
url="fudforum/setup/base/thm/default/i18n/russian-1251/img/msg_quote.gif">
+</file>
+<file name="msg_reply.gif"
url="fudforum/setup/base/thm/default/i18n/russian-1251/img/msg_reply.gif">
+</file>
+<file name="new_pm.gif"
url="fudforum/setup/base/thm/default/i18n/russian-1251/img/new_pm.gif">
+</file>
+<file name="new_thread.gif"
url="fudforum/setup/base/thm/default/i18n/russian-1251/img/new_thread.gif">
+</file>
+<file name="post_reply.gif"
url="fudforum/setup/base/thm/default/i18n/russian-1251/img/post_reply.gif">
+</file>
+<file name="show_posts.gif"
url="fudforum/setup/base/thm/default/i18n/russian-1251/img/show_posts.gif">
+</file>
+<file name="tree_view.gif"
url="fudforum/setup/base/thm/default/i18n/russian-1251/img/tree_view.gif">
+</file>
+</folder>
+</folder>
+<folder name="slovak" url="fudforum/setup/base/thm/default/i18n/slovak">
+<file name="pspell_lang"
url="fudforum/setup/base/thm/default/i18n/slovak/pspell_lang">
+</file>
+<file name="charset" url="fudforum/setup/base/thm/default/i18n/slovak/charset">
+</file>
+<file name="locale" url="fudforum/setup/base/thm/default/i18n/slovak/locale">
+</file>
+<file name="msg" url="fudforum/setup/base/thm/default/i18n/slovak/msg">
+</file>
+<folder name="help" url="fudforum/setup/base/thm/default/i18n/slovak/help">
+<file name="boardusage.hlp"
url="fudforum/setup/base/thm/default/i18n/slovak/help/boardusage.hlp">
+</file>
+<file name="create_poll.hlp"
url="fudforum/setup/base/thm/default/i18n/slovak/help/create_poll.hlp">
+</file>
+<file name="dis_sml.hlp"
url="fudforum/setup/base/thm/default/i18n/slovak/help/dis_sml.hlp">
+</file>
+<file name="edit_tools.hlp"
url="fudforum/setup/base/thm/default/i18n/slovak/help/edit_tools.hlp">
+</file>
+<file name="faq_index.hlp"
url="fudforum/setup/base/thm/default/i18n/slovak/help/faq_index.hlp">
+</file>
+<file name="forum_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/slovak/help/forum_sub.hlp">
+</file>
+<file name="no_replies.hlp"
url="fudforum/setup/base/thm/default/i18n/slovak/help/no_replies.hlp">
+</file>
+<file name="post_icon.hlp"
url="fudforum/setup/base/thm/default/i18n/slovak/help/post_icon.hlp">
+</file>
+<file name="post_not.hlp"
url="fudforum/setup/base/thm/default/i18n/slovak/help/post_not.hlp">
+</file>
+<file name="readingposting.hlp"
url="fudforum/setup/base/thm/default/i18n/slovak/help/readingposting.hlp">
+</file>
+<file name="show_index.hlp"
url="fudforum/setup/base/thm/default/i18n/slovak/help/show_index.hlp">
+</file>
+<file name="smilies.hlp"
url="fudforum/setup/base/thm/default/i18n/slovak/help/smilies.hlp">
+</file>
+<file name="thread_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/slovak/help/thread_sub.hlp">
+</file>
+<file name="usermaintance.hlp"
url="fudforum/setup/base/thm/default/i18n/slovak/help/usermaintance.hlp">
+</file>
+</folder>
+<folder name="img" url="fudforum/setup/base/thm/default/i18n/slovak/img">
+<file name="flat_view.gif"
url="fudforum/setup/base/thm/default/i18n/slovak/img/flat_view.gif">
+</file>
+<file name="homepage.gif"
url="fudforum/setup/base/thm/default/i18n/slovak/img/homepage.gif">
+</file>
+<file name="msg_about.gif"
url="fudforum/setup/base/thm/default/i18n/slovak/img/msg_about.gif">
+</file>
+<file name="msg_delete.gif"
url="fudforum/setup/base/thm/default/i18n/slovak/img/msg_delete.gif">
+</file>
+<file name="msg_edit.gif"
url="fudforum/setup/base/thm/default/i18n/slovak/img/msg_edit.gif">
+</file>
+<file name="msg_email.gif"
url="fudforum/setup/base/thm/default/i18n/slovak/img/msg_email.gif">
+</file>
+<file name="msg_forward.gif"
url="fudforum/setup/base/thm/default/i18n/slovak/img/msg_forward.gif">
+</file>
+<file name="msg_pm.gif"
url="fudforum/setup/base/thm/default/i18n/slovak/img/msg_pm.gif">
+</file>
+<file name="msg_quote.gif"
url="fudforum/setup/base/thm/default/i18n/slovak/img/msg_quote.gif">
+</file>
+<file name="msg_reply.gif"
url="fudforum/setup/base/thm/default/i18n/slovak/img/msg_reply.gif">
+</file>
+<file name="new_pm.gif"
url="fudforum/setup/base/thm/default/i18n/slovak/img/new_pm.gif">
+</file>
+<file name="new_thread.gif"
url="fudforum/setup/base/thm/default/i18n/slovak/img/new_thread.gif">
+</file>
+<file name="post_reply.gif"
url="fudforum/setup/base/thm/default/i18n/slovak/img/post_reply.gif">
+</file>
+<file name="show_posts.gif"
url="fudforum/setup/base/thm/default/i18n/slovak/img/show_posts.gif">
+</file>
+<file name="tree_view.gif"
url="fudforum/setup/base/thm/default/i18n/slovak/img/tree_view.gif">
+</file>
+</folder>
+</folder>
+<folder name="spanish" url="fudforum/setup/base/thm/default/i18n/spanish">
+<file name="pspell_lang"
url="fudforum/setup/base/thm/default/i18n/spanish/pspell_lang">
+</file>
+<file name="charset"
url="fudforum/setup/base/thm/default/i18n/spanish/charset">
+</file>
+<file name="locale" url="fudforum/setup/base/thm/default/i18n/spanish/locale">
+</file>
+<file name="msg" url="fudforum/setup/base/thm/default/i18n/spanish/msg">
+</file>
+<folder name="help" url="fudforum/setup/base/thm/default/i18n/spanish/help">
+<file name="boardusage.hlp"
url="fudforum/setup/base/thm/default/i18n/spanish/help/boardusage.hlp">
+</file>
+<file name="create_poll.hlp"
url="fudforum/setup/base/thm/default/i18n/spanish/help/create_poll.hlp">
+</file>
+<file name="dis_sml.hlp"
url="fudforum/setup/base/thm/default/i18n/spanish/help/dis_sml.hlp">
+</file>
+<file name="edit_tools.hlp"
url="fudforum/setup/base/thm/default/i18n/spanish/help/edit_tools.hlp">
+</file>
+<file name="faq_index.hlp"
url="fudforum/setup/base/thm/default/i18n/spanish/help/faq_index.hlp">
+</file>
+<file name="forum_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/spanish/help/forum_sub.hlp">
+</file>
+<file name="no_replies.hlp"
url="fudforum/setup/base/thm/default/i18n/spanish/help/no_replies.hlp">
+</file>
+<file name="post_icon.hlp"
url="fudforum/setup/base/thm/default/i18n/spanish/help/post_icon.hlp">
+</file>
+<file name="post_not.hlp"
url="fudforum/setup/base/thm/default/i18n/spanish/help/post_not.hlp">
+</file>
+<file name="readingposting.hlp"
url="fudforum/setup/base/thm/default/i18n/spanish/help/readingposting.hlp">
+</file>
+<file name="show_index.hlp"
url="fudforum/setup/base/thm/default/i18n/spanish/help/show_index.hlp">
+</file>
+<file name="smilies.hlp"
url="fudforum/setup/base/thm/default/i18n/spanish/help/smilies.hlp">
+</file>
+<file name="thread_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/spanish/help/thread_sub.hlp">
+</file>
+<file name="usermaintance.hlp"
url="fudforum/setup/base/thm/default/i18n/spanish/help/usermaintance.hlp">
+</file>
+</folder>
+<folder name="img" url="fudforum/setup/base/thm/default/i18n/spanish/img">
+<file name="flat_view.gif"
url="fudforum/setup/base/thm/default/i18n/spanish/img/flat_view.gif">
+</file>
+<file name="homepage.gif"
url="fudforum/setup/base/thm/default/i18n/spanish/img/homepage.gif">
+</file>
+<file name="msg_about.gif"
url="fudforum/setup/base/thm/default/i18n/spanish/img/msg_about.gif">
+</file>
+<file name="msg_delete.gif"
url="fudforum/setup/base/thm/default/i18n/spanish/img/msg_delete.gif">
+</file>
+<file name="msg_edit.gif"
url="fudforum/setup/base/thm/default/i18n/spanish/img/msg_edit.gif">
+</file>
+<file name="msg_email.gif"
url="fudforum/setup/base/thm/default/i18n/spanish/img/msg_email.gif">
+</file>
+<file name="msg_forward.gif"
url="fudforum/setup/base/thm/default/i18n/spanish/img/msg_forward.gif">
+</file>
+<file name="msg_pm.gif"
url="fudforum/setup/base/thm/default/i18n/spanish/img/msg_pm.gif">
+</file>
+<file name="msg_quote.gif"
url="fudforum/setup/base/thm/default/i18n/spanish/img/msg_quote.gif">
+</file>
+<file name="msg_reply.gif"
url="fudforum/setup/base/thm/default/i18n/spanish/img/msg_reply.gif">
+</file>
+<file name="new_pm.gif"
url="fudforum/setup/base/thm/default/i18n/spanish/img/new_pm.gif">
+</file>
+<file name="new_thread.gif"
url="fudforum/setup/base/thm/default/i18n/spanish/img/new_thread.gif">
+</file>
+<file name="post_reply.gif"
url="fudforum/setup/base/thm/default/i18n/spanish/img/post_reply.gif">
+</file>
+<file name="show_posts.gif"
url="fudforum/setup/base/thm/default/i18n/spanish/img/show_posts.gif">
+</file>
+<file name="tree_view.gif"
url="fudforum/setup/base/thm/default/i18n/spanish/img/tree_view.gif">
+</file>
+</folder>
+</folder>
+<folder name="swedish" url="fudforum/setup/base/thm/default/i18n/swedish">
+<file name="pspell_lang"
url="fudforum/setup/base/thm/default/i18n/swedish/pspell_lang">
+</file>
+<file name="charset"
url="fudforum/setup/base/thm/default/i18n/swedish/charset">
+</file>
+<file name="locale" url="fudforum/setup/base/thm/default/i18n/swedish/locale">
+</file>
+<file name="msg" url="fudforum/setup/base/thm/default/i18n/swedish/msg">
+</file>
+<folder name="help" url="fudforum/setup/base/thm/default/i18n/swedish/help">
+<file name="boardusage.hlp"
url="fudforum/setup/base/thm/default/i18n/swedish/help/boardusage.hlp">
+</file>
+<file name="create_poll.hlp"
url="fudforum/setup/base/thm/default/i18n/swedish/help/create_poll.hlp">
+</file>
+<file name="dis_sml.hlp"
url="fudforum/setup/base/thm/default/i18n/swedish/help/dis_sml.hlp">
+</file>
+<file name="edit_tools.hlp"
url="fudforum/setup/base/thm/default/i18n/swedish/help/edit_tools.hlp">
+</file>
+<file name="faq_index.hlp"
url="fudforum/setup/base/thm/default/i18n/swedish/help/faq_index.hlp">
+</file>
+<file name="forum_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/swedish/help/forum_sub.hlp">
+</file>
+<file name="no_replies.hlp"
url="fudforum/setup/base/thm/default/i18n/swedish/help/no_replies.hlp">
+</file>
+<file name="post_icon.hlp"
url="fudforum/setup/base/thm/default/i18n/swedish/help/post_icon.hlp">
+</file>
+<file name="post_not.hlp"
url="fudforum/setup/base/thm/default/i18n/swedish/help/post_not.hlp">
+</file>
+<file name="readingposting.hlp"
url="fudforum/setup/base/thm/default/i18n/swedish/help/readingposting.hlp">
+</file>
+<file name="show_index.hlp"
url="fudforum/setup/base/thm/default/i18n/swedish/help/show_index.hlp">
+</file>
+<file name="smilies.hlp"
url="fudforum/setup/base/thm/default/i18n/swedish/help/smilies.hlp">
+</file>
+<file name="thread_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/swedish/help/thread_sub.hlp">
+</file>
+<file name="usermaintance.hlp"
url="fudforum/setup/base/thm/default/i18n/swedish/help/usermaintance.hlp">
+</file>
+</folder>
+<folder name="img" url="fudforum/setup/base/thm/default/i18n/swedish/img">
+<file name="flat_view.gif"
url="fudforum/setup/base/thm/default/i18n/swedish/img/flat_view.gif">
+</file>
+<file name="homepage.gif"
url="fudforum/setup/base/thm/default/i18n/swedish/img/homepage.gif">
+</file>
+<file name="msg_about.gif"
url="fudforum/setup/base/thm/default/i18n/swedish/img/msg_about.gif">
+</file>
+<file name="msg_delete.gif"
url="fudforum/setup/base/thm/default/i18n/swedish/img/msg_delete.gif">
+</file>
+<file name="msg_edit.gif"
url="fudforum/setup/base/thm/default/i18n/swedish/img/msg_edit.gif">
+</file>
+<file name="msg_email.gif"
url="fudforum/setup/base/thm/default/i18n/swedish/img/msg_email.gif">
+</file>
+<file name="msg_forward.gif"
url="fudforum/setup/base/thm/default/i18n/swedish/img/msg_forward.gif">
+</file>
+<file name="msg_pm.gif"
url="fudforum/setup/base/thm/default/i18n/swedish/img/msg_pm.gif">
+</file>
+<file name="msg_quote.gif"
url="fudforum/setup/base/thm/default/i18n/swedish/img/msg_quote.gif">
+</file>
+<file name="msg_reply.gif"
url="fudforum/setup/base/thm/default/i18n/swedish/img/msg_reply.gif">
+</file>
+<file name="new_pm.gif"
url="fudforum/setup/base/thm/default/i18n/swedish/img/new_pm.gif">
+</file>
+<file name="new_thread.gif"
url="fudforum/setup/base/thm/default/i18n/swedish/img/new_thread.gif">
+</file>
+<file name="post_reply.gif"
url="fudforum/setup/base/thm/default/i18n/swedish/img/post_reply.gif">
+</file>
+<file name="show_posts.gif"
url="fudforum/setup/base/thm/default/i18n/swedish/img/show_posts.gif">
+</file>
+<file name="tree_view.gif"
url="fudforum/setup/base/thm/default/i18n/swedish/img/tree_view.gif">
+</file>
+</folder>
+</folder>
+<folder name="turkish" url="fudforum/setup/base/thm/default/i18n/turkish">
+<file name="charset"
url="fudforum/setup/base/thm/default/i18n/turkish/charset">
+</file>
+<file name="locale" url="fudforum/setup/base/thm/default/i18n/turkish/locale">
+</file>
+<file name="msg" url="fudforum/setup/base/thm/default/i18n/turkish/msg">
+</file>
+<folder name="help" url="fudforum/setup/base/thm/default/i18n/turkish/help">
+<file name="boardusage.hlp"
url="fudforum/setup/base/thm/default/i18n/turkish/help/boardusage.hlp">
+</file>
+<file name="create_poll.hlp"
url="fudforum/setup/base/thm/default/i18n/turkish/help/create_poll.hlp">
+</file>
+<file name="dis_sml.hlp"
url="fudforum/setup/base/thm/default/i18n/turkish/help/dis_sml.hlp">
+</file>
+<file name="edit_tools.hlp"
url="fudforum/setup/base/thm/default/i18n/turkish/help/edit_tools.hlp">
+</file>
+<file name="faq_index.hlp"
url="fudforum/setup/base/thm/default/i18n/turkish/help/faq_index.hlp">
+</file>
+<file name="forum_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/turkish/help/forum_sub.hlp">
+</file>
+<file name="no_replies.hlp"
url="fudforum/setup/base/thm/default/i18n/turkish/help/no_replies.hlp">
+</file>
+<file name="post_icon.hlp"
url="fudforum/setup/base/thm/default/i18n/turkish/help/post_icon.hlp">
+</file>
+<file name="post_not.hlp"
url="fudforum/setup/base/thm/default/i18n/turkish/help/post_not.hlp">
+</file>
+<file name="readingposting.hlp"
url="fudforum/setup/base/thm/default/i18n/turkish/help/readingposting.hlp">
+</file>
+<file name="show_index.hlp"
url="fudforum/setup/base/thm/default/i18n/turkish/help/show_index.hlp">
+</file>
+<file name="smilies.hlp"
url="fudforum/setup/base/thm/default/i18n/turkish/help/smilies.hlp">
+</file>
+<file name="thread_sub.hlp"
url="fudforum/setup/base/thm/default/i18n/turkish/help/thread_sub.hlp">
+</file>
+<file name="usermaintance.hlp"
url="fudforum/setup/base/thm/default/i18n/turkish/help/usermaintance.hlp">
+</file>
+</folder>
+<folder name="img" url="fudforum/setup/base/thm/default/i18n/turkish/img">
+<file name="flat_view.gif"
url="fudforum/setup/base/thm/default/i18n/turkish/img/flat_view.gif">
+</file>
+<file name="homepage.gif"
url="fudforum/setup/base/thm/default/i18n/turkish/img/homepage.gif">
+</file>
+<file name="msg_about.gif"
url="fudforum/setup/base/thm/default/i18n/turkish/img/msg_about.gif">
+</file>
+<file name="msg_delete.gif"
url="fudforum/setup/base/thm/default/i18n/turkish/img/msg_delete.gif">
+</file>
+<file name="msg_edit.gif"
url="fudforum/setup/base/thm/default/i18n/turkish/img/msg_edit.gif">
+</file>
+<file name="msg_email.gif"
url="fudforum/setup/base/thm/default/i18n/turkish/img/msg_email.gif">
+</file>
+<file name="msg_forward.gif"
url="fudforum/setup/base/thm/default/i18n/turkish/img/msg_forward.gif">
+</file>
+<file name="msg_pm.gif"
url="fudforum/setup/base/thm/default/i18n/turkish/img/msg_pm.gif">
+</file>
+<file name="msg_quote.gif"
url="fudforum/setup/base/thm/default/i18n/turkish/img/msg_quote.gif">
+</file>
+<file name="msg_reply.gif"
url="fudforum/setup/base/thm/default/i18n/turkish/img/msg_reply.gif">
+</file>
+<file name="new_pm.gif"
url="fudforum/setup/base/thm/default/i18n/turkish/img/new_pm.gif">
+</file>
+<file name="new_thread.gif"
url="fudforum/setup/base/thm/default/i18n/turkish/img/new_thread.gif">
+</file>
+<file name="post_reply.gif"
url="fudforum/setup/base/thm/default/i18n/turkish/img/post_reply.gif">
+</file>
+<file name="show_posts.gif"
url="fudforum/setup/base/thm/default/i18n/turkish/img/show_posts.gif">
+</file>
+<file name="tree_view.gif"
url="fudforum/setup/base/thm/default/i18n/turkish/img/tree_view.gif">
+</file>
+</folder>
+</folder>
+</folder>
+<folder name="images" url="fudforum/setup/base/thm/default/images">
+<file name="1stars.gif"
url="fudforum/setup/base/thm/default/images/1stars.gif">
+</file>
+<file name="2stars.gif"
url="fudforum/setup/base/thm/default/images/2stars.gif">
+</file>
+<file name="3stars.gif"
url="fudforum/setup/base/thm/default/images/3stars.gif">
+</file>
+<file name="4stars.gif"
url="fudforum/setup/base/thm/default/images/4stars.gif">
+</file>
+<file name="5stars.gif"
url="fudforum/setup/base/thm/default/images/5stars.gif">
+</file>
+<file name="affero_noreg.gif"
url="fudforum/setup/base/thm/default/images/affero_noreg.gif">
+</file>
+<file name="affero_reg.gif"
url="fudforum/setup/base/thm/default/images/affero_reg.gif">
+</file>
+<file name="aim.gif" url="fudforum/setup/base/thm/default/images/aim.gif">
+</file>
+<file name="attach.gif"
url="fudforum/setup/base/thm/default/images/attach.gif">
+</file>
+<file name="attachment.gif"
url="fudforum/setup/base/thm/default/images/attachment.gif">
+</file>
+<file name="b_acenter.gif"
url="fudforum/setup/base/thm/default/images/b_acenter.gif">
+</file>
+<file name="b_aleft.gif"
url="fudforum/setup/base/thm/default/images/b_aleft.gif">
+</file>
+<file name="b_alphalist.gif"
url="fudforum/setup/base/thm/default/images/b_alphalist.gif">
+</file>
+<file name="b_aright.gif"
url="fudforum/setup/base/thm/default/images/b_aright.gif">
+</file>
+<file name="b_bold.gif"
url="fudforum/setup/base/thm/default/images/b_bold.gif">
+</file>
+<file name="b_boxlist.gif"
url="fudforum/setup/base/thm/default/images/b_boxlist.gif">
+</file>
+<file name="b_bulletlist.gif"
url="fudforum/setup/base/thm/default/images/b_bulletlist.gif">
+</file>
+<file name="b_code.gif"
url="fudforum/setup/base/thm/default/images/b_code.gif">
+</file>
+<file name="b_email.gif"
url="fudforum/setup/base/thm/default/images/b_email.gif">
+</file>
+<file name="b_help.gif"
url="fudforum/setup/base/thm/default/images/b_help.gif">
+</file>
+<file name="b_image.gif"
url="fudforum/setup/base/thm/default/images/b_image.gif">
+</file>
+<file name="b_italic.gif"
url="fudforum/setup/base/thm/default/images/b_italic.gif">
+</file>
+<file name="b_numlist.gif"
url="fudforum/setup/base/thm/default/images/b_numlist.gif">
+</file>
+<file name="b_quote.gif"
url="fudforum/setup/base/thm/default/images/b_quote.gif">
+</file>
+<file name="b_underline.gif"
url="fudforum/setup/base/thm/default/images/b_underline.gif">
+</file>
+<file name="b_url.gif" url="fudforum/setup/base/thm/default/images/b_url.gif">
+</file>
+<file name="bday.gif" url="fudforum/setup/base/thm/default/images/bday.gif">
+</file>
+<file name="clear.gif" url="fudforum/setup/base/thm/default/images/clear.gif">
+</file>
+<file name="down.gif" url="fudforum/setup/base/thm/default/images/down.gif">
+</file>
+<file name="existing_content.gif"
url="fudforum/setup/base/thm/default/images/existing_content.gif">
+</file>
+<file name="goback.gif"
url="fudforum/setup/base/thm/default/images/goback.gif">
+</file>
+<file name="goto.gif" url="fudforum/setup/base/thm/default/images/goto.gif">
+</file>
+<file name="index.html"
url="fudforum/setup/base/thm/default/images/index.html">
+</file>
+<file name="jabber.gif"
url="fudforum/setup/base/thm/default/images/jabber.gif">
+</file>
+<file name="lock.gif" url="fudforum/setup/base/thm/default/images/lock.gif">
+</file>
+<file name="moved.gif" url="fudforum/setup/base/thm/default/images/moved.gif">
+</file>
+<file name="msg_arrow.gif"
url="fudforum/setup/base/thm/default/images/msg_arrow.gif">
+</file>
+<file name="msg_folder.gif"
url="fudforum/setup/base/thm/default/images/msg_folder.gif">
+</file>
+<file name="msnm.gif" url="fudforum/setup/base/thm/default/images/msnm.gif">
+</file>
+<file name="new_content.gif"
url="fudforum/setup/base/thm/default/images/new_content.gif">
+</file>
+<file name="newposts.gif"
url="fudforum/setup/base/thm/default/images/newposts.gif">
+</file>
+<file name="offline.gif"
url="fudforum/setup/base/thm/default/images/offline.gif">
+</file>
+<file name="online.gif"
url="fudforum/setup/base/thm/default/images/online.gif">
+</file>
+<file name="pager.gif" url="fudforum/setup/base/thm/default/images/pager.gif">
+</file>
+<file name="pmsg_read.gif"
url="fudforum/setup/base/thm/default/images/pmsg_read.gif">
+</file>
+<file name="pmsg_unread.gif"
url="fudforum/setup/base/thm/default/images/pmsg_unread.gif">
+</file>
+<file name="poll_pix.gif"
url="fudforum/setup/base/thm/default/images/poll_pix.gif">
+</file>
+<file name="posticon.gif"
url="fudforum/setup/base/thm/default/images/posticon.gif">
+</file>
+<file name="read.gif" url="fudforum/setup/base/thm/default/images/read.gif">
+</file>
+<file name="readlocked.gif"
url="fudforum/setup/base/thm/default/images/readlocked.gif">
+</file>
+<file name="tab_end.gif"
url="fudforum/setup/base/thm/default/images/tab_end.gif">
+</file>
+<file name="tab_end_top.gif"
url="fudforum/setup/base/thm/default/images/tab_end_top.gif">
+</file>
+<file name="tab_start.gif"
url="fudforum/setup/base/thm/default/images/tab_start.gif">
+</file>
+<file name="tab_start_top.gif"
url="fudforum/setup/base/thm/default/images/tab_start_top.gif">
+</file>
+<file name="tab_top.gif"
url="fudforum/setup/base/thm/default/images/tab_top.gif">
+</file>
+<file name="tableHeaderbg.gif"
url="fudforum/setup/base/thm/default/images/tableHeaderbg.gif">
+</file>
+<file name="tableHeaderbg2.gif"
url="fudforum/setup/base/thm/default/images/tableHeaderbg2.gif">
+</file>
+<file name="tableHeaderbg3.gif"
url="fudforum/setup/base/thm/default/images/tableHeaderbg3.gif">
+</file>
+<file name="top_admin.gif"
url="fudforum/setup/base/thm/default/images/top_admin.gif">
+</file>
+<file name="top_help.gif"
url="fudforum/setup/base/thm/default/images/top_help.gif">
+</file>
+<file name="top_home.gif"
url="fudforum/setup/base/thm/default/images/top_home.gif">
+</file>
+<file name="top_login.gif"
url="fudforum/setup/base/thm/default/images/top_login.gif">
+</file>
+<file name="top_logout.gif"
url="fudforum/setup/base/thm/default/images/top_logout.gif">
+</file>
+<file name="top_members.gif"
url="fudforum/setup/base/thm/default/images/top_members.gif">
+</file>
+<file name="top_pm.gif"
url="fudforum/setup/base/thm/default/images/top_pm.gif">
+</file>
+<file name="top_profile.gif"
url="fudforum/setup/base/thm/default/images/top_profile.gif">
+</file>
+<file name="top_register.gif"
url="fudforum/setup/base/thm/default/images/top_register.gif">
+</file>
+<file name="top_search.gif"
url="fudforum/setup/base/thm/default/images/top_search.gif">
+</file>
+<file name="unread.gif"
url="fudforum/setup/base/thm/default/images/unread.gif">
+</file>
+<file name="unreadlocked.gif"
url="fudforum/setup/base/thm/default/images/unreadlocked.gif">
+</file>
+<file name="up.gif" url="fudforum/setup/base/thm/default/images/up.gif">
+</file>
+<file name="yahoo.gif" url="fudforum/setup/base/thm/default/images/yahoo.gif">
+</file>
+</folder>
+<folder name="tmpl" url="fudforum/setup/base/thm/default/tmpl">
+<file name="actions.tmpl"
url="fudforum/setup/base/thm/default/tmpl/actions.tmpl">
+</file>
+<file name="admincp.tmpl"
url="fudforum/setup/base/thm/default/tmpl/admincp.tmpl">
+</file>
+<file name="allowed_user_lnk.tmpl"
url="fudforum/setup/base/thm/default/tmpl/allowed_user_lnk.tmpl">
+</file>
+<file name="alt_var.tmpl"
url="fudforum/setup/base/thm/default/tmpl/alt_var.tmpl">
+</file>
+<file name="announcement.tmpl"
url="fudforum/setup/base/thm/default/tmpl/announcement.tmpl">
+</file>
+<file name="attach.tmpl"
url="fudforum/setup/base/thm/default/tmpl/attach.tmpl">
+</file>
+<file name="avatar_msg.tmpl"
url="fudforum/setup/base/thm/default/tmpl/avatar_msg.tmpl">
+</file>
+<file name="avatarsel.tmpl"
url="fudforum/setup/base/thm/default/tmpl/avatarsel.tmpl">
+</file>
+<file name="buddy.tmpl" url="fudforum/setup/base/thm/default/tmpl/buddy.tmpl">
+</file>
+<file name="buddy_list.tmpl"
url="fudforum/setup/base/thm/default/tmpl/buddy_list.tmpl">
+</file>
+<file name="cookies.tmpl"
url="fudforum/setup/base/thm/default/tmpl/cookies.tmpl">
+</file>
+<file name="curtime.tmpl"
url="fudforum/setup/base/thm/default/tmpl/curtime.tmpl">
+</file>
+<file name="db.tmpl" url="fudforum/setup/base/thm/default/tmpl/db.tmpl">
+</file>
+<file name="draw_pager.tmpl"
url="fudforum/setup/base/thm/default/tmpl/draw_pager.tmpl">
+</file>
+<file name="draw_radio_opt.tmpl"
url="fudforum/setup/base/thm/default/tmpl/draw_radio_opt.tmpl">
+</file>
+<file name="draw_select_opt.tmpl"
url="fudforum/setup/base/thm/default/tmpl/draw_select_opt.tmpl">
+</file>
+<file name="drawmsg.tmpl"
url="fudforum/setup/base/thm/default/tmpl/drawmsg.tmpl">
+</file>
+<file name="drawpmsg.tmpl"
url="fudforum/setup/base/thm/default/tmpl/drawpmsg.tmpl">
+</file>
+<file name="email.tmpl" url="fudforum/setup/base/thm/default/tmpl/email.tmpl">
+</file>
+<file name="err.tmpl" url="fudforum/setup/base/thm/default/tmpl/err.tmpl">
+</file>
+<file name="errmsg.tmpl"
url="fudforum/setup/base/thm/default/tmpl/errmsg.tmpl">
+</file>
+<file name="error.tmpl" url="fudforum/setup/base/thm/default/tmpl/error.tmpl">
+</file>
+<file name="fileio.tmpl"
url="fudforum/setup/base/thm/default/tmpl/fileio.tmpl">
+</file>
+<file name="finduser.tmpl"
url="fudforum/setup/base/thm/default/tmpl/finduser.tmpl">
+</file>
+<file name="footer.tmpl"
url="fudforum/setup/base/thm/default/tmpl/footer.tmpl">
+</file>
+<file name="forum.css.tmpl"
url="fudforum/setup/base/thm/default/tmpl/forum.css.tmpl">
+</file>
+<file name="forum.tmpl" url="fudforum/setup/base/thm/default/tmpl/forum.tmpl">
+</file>
+<file name="forum_notify.tmpl"
url="fudforum/setup/base/thm/default/tmpl/forum_notify.tmpl">
+</file>
+<file name="forumsel.tmpl"
url="fudforum/setup/base/thm/default/tmpl/forumsel.tmpl">
+</file>
+<file name="get_cur_ppage.tmpl"
url="fudforum/setup/base/thm/default/tmpl/get_cur_ppage.tmpl">
+</file>
+<file name="getfile.tmpl"
url="fudforum/setup/base/thm/default/tmpl/getfile.tmpl">
+</file>
+<file name="groupmgr.tmpl"
url="fudforum/setup/base/thm/default/tmpl/groupmgr.tmpl">
+</file>
+<file name="groups.tmpl"
url="fudforum/setup/base/thm/default/tmpl/groups.tmpl">
+</file>
+<file name="header.tmpl"
url="fudforum/setup/base/thm/default/tmpl/header.tmpl">
+</file>
+<file name="help_index.tmpl"
url="fudforum/setup/base/thm/default/tmpl/help_index.tmpl">
+</file>
+<file name="iemail.tmpl"
url="fudforum/setup/base/thm/default/tmpl/iemail.tmpl">
+</file>
+<file name="ignore.tmpl"
url="fudforum/setup/base/thm/default/tmpl/ignore.tmpl">
+</file>
+<file name="ignore_list.tmpl"
url="fudforum/setup/base/thm/default/tmpl/ignore_list.tmpl">
+</file>
+<file name="imsg.tmpl" url="fudforum/setup/base/thm/default/tmpl/imsg.tmpl">
+</file>
+<file name="imsg_edt.tmpl"
url="fudforum/setup/base/thm/default/tmpl/imsg_edt.tmpl">
+</file>
+<file name="index.tmpl" url="fudforum/setup/base/thm/default/tmpl/index.tmpl">
+</file>
+<file name="ipoll.tmpl" url="fudforum/setup/base/thm/default/tmpl/ipoll.tmpl">
+</file>
+<file name="is_perms.tmpl"
url="fudforum/setup/base/thm/default/tmpl/is_perms.tmpl">
+</file>
+<file name="isearch.tmpl"
url="fudforum/setup/base/thm/default/tmpl/isearch.tmpl">
+</file>
+<file name="logaction.tmpl"
url="fudforum/setup/base/thm/default/tmpl/logaction.tmpl">
+</file>
+<file name="logedin.tmpl"
url="fudforum/setup/base/thm/default/tmpl/logedin.tmpl">
+</file>
+<file name="markread.tmpl"
url="fudforum/setup/base/thm/default/tmpl/markread.tmpl">
+</file>
+<file name="merge_th.tmpl"
url="fudforum/setup/base/thm/default/tmpl/merge_th.tmpl">
+</file>
+<file name="messages" url="fudforum/setup/base/thm/default/tmpl/messages">
+</file>
+<file name="minimsg.tmpl"
url="fudforum/setup/base/thm/default/tmpl/minimsg.tmpl">
+</file>
+<file name="mklist.tmpl"
url="fudforum/setup/base/thm/default/tmpl/mklist.tmpl">
+</file>
+<file name="mmod.tmpl" url="fudforum/setup/base/thm/default/tmpl/mmod.tmpl">
+</file>
+<file name="mnav.tmpl" url="fudforum/setup/base/thm/default/tmpl/mnav.tmpl">
+</file>
+<file name="modque.tmpl"
url="fudforum/setup/base/thm/default/tmpl/modque.tmpl">
+</file>
+<file name="msg.tmpl" url="fudforum/setup/base/thm/default/tmpl/msg.tmpl">
+</file>
+<file name="mvthread.tmpl"
url="fudforum/setup/base/thm/default/tmpl/mvthread.tmpl">
+</file>
+<file name="online_today.tmpl"
url="fudforum/setup/base/thm/default/tmpl/online_today.tmpl">
+</file>
+<file name="pdf.tmpl" url="fudforum/setup/base/thm/default/tmpl/pdf.tmpl">
+</file>
+<file name="pmsg.tmpl" url="fudforum/setup/base/thm/default/tmpl/pmsg.tmpl">
+</file>
+<file name="pmsg_view.tmpl"
url="fudforum/setup/base/thm/default/tmpl/pmsg_view.tmpl">
+</file>
+<file name="pmuserloc.tmpl"
url="fudforum/setup/base/thm/default/tmpl/pmuserloc.tmpl">
+</file>
+<file name="poll.tmpl" url="fudforum/setup/base/thm/default/tmpl/poll.tmpl">
+</file>
+<file name="polllist.tmpl"
url="fudforum/setup/base/thm/default/tmpl/polllist.tmpl">
+</file>
+<file name="post.tmpl" url="fudforum/setup/base/thm/default/tmpl/post.tmpl">
+</file>
+<file name="post_common.tmpl"
url="fudforum/setup/base/thm/default/tmpl/post_common.tmpl">
+</file>
+<file name="post_opt.tmpl"
url="fudforum/setup/base/thm/default/tmpl/post_opt.tmpl">
+</file>
+<file name="post_proc.tmpl"
url="fudforum/setup/base/thm/default/tmpl/post_proc.tmpl">
+</file>
+<file name="postcheck.tmpl"
url="fudforum/setup/base/thm/default/tmpl/postcheck.tmpl">
+</file>
+<file name="ppost.tmpl" url="fudforum/setup/base/thm/default/tmpl/ppost.tmpl">
+</file>
+<file name="private.tmpl"
url="fudforum/setup/base/thm/default/tmpl/private.tmpl">
+</file>
+<file name="qbud.tmpl" url="fudforum/setup/base/thm/default/tmpl/qbud.tmpl">
+</file>
+<file name="ratethread.tmpl"
url="fudforum/setup/base/thm/default/tmpl/ratethread.tmpl">
+</file>
+<file name="rdf.tmpl" url="fudforum/setup/base/thm/default/tmpl/rdf.tmpl">
+</file>
+<file name="register.tmpl"
url="fudforum/setup/base/thm/default/tmpl/register.tmpl">
+</file>
+<file name="remail.tmpl"
url="fudforum/setup/base/thm/default/tmpl/remail.tmpl">
+</file>
+<file name="replace.tmpl"
url="fudforum/setup/base/thm/default/tmpl/replace.tmpl">
+</file>
+<file name="report.tmpl"
url="fudforum/setup/base/thm/default/tmpl/report.tmpl">
+</file>
+<file name="reported.tmpl"
url="fudforum/setup/base/thm/default/tmpl/reported.tmpl">
+</file>
+<file name="return.tmpl"
url="fudforum/setup/base/thm/default/tmpl/return.tmpl">
+</file>
+<file name="rev_fmt.tmpl"
url="fudforum/setup/base/thm/default/tmpl/rev_fmt.tmpl">
+</file>
+<file name="rhost.tmpl" url="fudforum/setup/base/thm/default/tmpl/rhost.tmpl">
+</file>
+<file name="root_index.tmpl"
url="fudforum/setup/base/thm/default/tmpl/root_index.tmpl">
+</file>
+<file name="search.tmpl"
url="fudforum/setup/base/thm/default/tmpl/search.tmpl">
+</file>
+<file name="search_forum_sel.tmpl"
url="fudforum/setup/base/thm/default/tmpl/search_forum_sel.tmpl">
+</file>
+<file name="security.tmpl"
url="fudforum/setup/base/thm/default/tmpl/security.tmpl">
+</file>
+<file name="selmsg.tmpl"
url="fudforum/setup/base/thm/default/tmpl/selmsg.tmpl">
+</file>
+<file name="show.tmpl" url="fudforum/setup/base/thm/default/tmpl/show.tmpl">
+</file>
+<file name="showposts.tmpl"
url="fudforum/setup/base/thm/default/tmpl/showposts.tmpl">
+</file>
+<file name="smiley.tmpl"
url="fudforum/setup/base/thm/default/tmpl/smiley.tmpl">
+</file>
+<file name="smladd.tmpl"
url="fudforum/setup/base/thm/default/tmpl/smladd.tmpl">
+</file>
+<file name="smtp.tmpl" url="fudforum/setup/base/thm/default/tmpl/smtp.tmpl">
+</file>
+<file name="spell.tmpl" url="fudforum/setup/base/thm/default/tmpl/spell.tmpl">
+</file>
+<file name="split_th.tmpl"
url="fudforum/setup/base/thm/default/tmpl/split_th.tmpl">
+</file>
+<file name="ssu.tmpl" url="fudforum/setup/base/thm/default/tmpl/ssu.tmpl">
+</file>
+<file name="stats.tmpl" url="fudforum/setup/base/thm/default/tmpl/stats.tmpl">
+</file>
+<file name="subscribed.tmpl"
url="fudforum/setup/base/thm/default/tmpl/subscribed.tmpl">
+</file>
+<file name="tabs.tmpl" url="fudforum/setup/base/thm/default/tmpl/tabs.tmpl">
+</file>
+<file name="th.tmpl" url="fudforum/setup/base/thm/default/tmpl/th.tmpl">
+</file>
+<file name="th_adm.tmpl"
url="fudforum/setup/base/thm/default/tmpl/th_adm.tmpl">
+</file>
+<file name="th_nav.tmpl"
url="fudforum/setup/base/thm/default/tmpl/th_nav.tmpl">
+</file>
+<file name="thr_exch.tmpl"
url="fudforum/setup/base/thm/default/tmpl/thr_exch.tmpl">
+</file>
+<file name="thread.tmpl"
url="fudforum/setup/base/thm/default/tmpl/thread.tmpl">
+</file>
+<file name="thread_notify.tmpl"
url="fudforum/setup/base/thm/default/tmpl/thread_notify.tmpl">
+</file>
+<file name="thread_view_common.tmpl"
url="fudforum/setup/base/thm/default/tmpl/thread_view_common.tmpl">
+</file>
+<file name="threadt.tmpl"
url="fudforum/setup/base/thm/default/tmpl/threadt.tmpl">
+</file>
+<file name="tmp_view.tmpl"
url="fudforum/setup/base/thm/default/tmpl/tmp_view.tmpl">
+</file>
+<file name="tree.tmpl" url="fudforum/setup/base/thm/default/tmpl/tree.tmpl">
+</file>
+<file name="tz.tmpl" url="fudforum/setup/base/thm/default/tmpl/tz.tmpl">
+</file>
+<file name="ulink.tmpl" url="fudforum/setup/base/thm/default/tmpl/ulink.tmpl">
+</file>
+<file name="usercp.tmpl"
url="fudforum/setup/base/thm/default/tmpl/usercp.tmpl">
+</file>
+<file name="users.tmpl" url="fudforum/setup/base/thm/default/tmpl/users.tmpl">
+</file>
+<file name="users_reg.tmpl"
url="fudforum/setup/base/thm/default/tmpl/users_reg.tmpl">
+</file>
+<file name="usrinfo.tmpl"
url="fudforum/setup/base/thm/default/tmpl/usrinfo.tmpl">
+</file>
+<file name="wordwrap.tmpl"
url="fudforum/setup/base/thm/default/tmpl/wordwrap.tmpl">
+</file>
+</folder>
+</folder>
+</folder>
+<folder name="www_root" url="fudforum/setup/base/www_root">
+<file name=".htaccess" url="fudforum/setup/base/www_root/.htaccess">
+</file>
+<file name="blank.gif" url="fudforum/setup/base/www_root/blank.gif">
+</file>
+<file name="lib.js" url="fudforum/setup/base/www_root/lib.js">
+</file>
+<folder name="adm" url="fudforum/setup/base/www_root/adm">
+<file name="admannounce.php"
url="fudforum/setup/base/www_root/adm/admannounce.php">
+</file>
+<file name="admapprove_avatar.php"
url="fudforum/setup/base/www_root/adm/admapprove_avatar.php">
+</file>
+<file name="admaprune.php"
url="fudforum/setup/base/www_root/adm/admaprune.php">
+</file>
+<file name="admavatar.php"
url="fudforum/setup/base/www_root/adm/admavatar.php">
+</file>
+<file name="admavatarsel.php"
url="fudforum/setup/base/www_root/adm/admavatarsel.php">
+</file>
+<file name="admbrowse.php"
url="fudforum/setup/base/www_root/adm/admbrowse.php">
+</file>
+<file name="admcat.php" url="fudforum/setup/base/www_root/adm/admcat.php">
+</file>
+<file name="admclose.php" url="fudforum/setup/base/www_root/adm/admclose.php">
+</file>
+<file name="admdelfrm.php"
url="fudforum/setup/base/www_root/adm/admdelfrm.php">
+</file>
+<file name="admemail.php" url="fudforum/setup/base/www_root/adm/admemail.php">
+</file>
+<file name="admerr.php" url="fudforum/setup/base/www_root/adm/admerr.php">
+</file>
+<file name="admext.php" url="fudforum/setup/base/www_root/adm/admext.php">
+</file>
+<file name="admforum.php" url="fudforum/setup/base/www_root/adm/admforum.php">
+</file>
+<file name="admforumicons.php"
url="fudforum/setup/base/www_root/adm/admforumicons.php">
+</file>
+<file name="admglobal.php"
url="fudforum/setup/base/www_root/adm/admglobal.php">
+</file>
+<file name="admgrouplead.php"
url="fudforum/setup/base/www_root/adm/admgrouplead.php">
+</file>
+<file name="admgroups.php"
url="fudforum/setup/base/www_root/adm/admgroups.php">
+</file>
+<file name="admiconsel.php"
url="fudforum/setup/base/www_root/adm/admiconsel.php">
+</file>
+<file name="admipfilter.php"
url="fudforum/setup/base/www_root/adm/admipfilter.php">
+</file>
+<file name="admlevel.php" url="fudforum/setup/base/www_root/adm/admlevel.php">
+</file>
+<file name="admlock.php" url="fudforum/setup/base/www_root/adm/admlock.php">
+</file>
+<file name="admlog.php" url="fudforum/setup/base/www_root/adm/admlog.php">
+</file>
+<file name="admlogin.php" url="fudforum/setup/base/www_root/adm/admlogin.php">
+</file>
+<file name="admmassemail.php"
url="fudforum/setup/base/www_root/adm/admmassemail.php">
+</file>
+<file name="admmime.php" url="fudforum/setup/base/www_root/adm/admmime.php">
+</file>
+<file name="admmimesel.php"
url="fudforum/setup/base/www_root/adm/admmimesel.php">
+</file>
+<file name="admmlist.php" url="fudforum/setup/base/www_root/adm/admmlist.php">
+</file>
+<file name="admmodfrm.php"
url="fudforum/setup/base/www_root/adm/admmodfrm.php">
+</file>
+<file name="admnntp.php" url="fudforum/setup/base/www_root/adm/admnntp.php">
+</file>
+<file name="admpanel.php" url="fudforum/setup/base/www_root/adm/admpanel.php">
+</file>
+<file name="admpdf.php" url="fudforum/setup/base/www_root/adm/admpdf.php">
+</file>
+<file name="admprune.php" url="fudforum/setup/base/www_root/adm/admprune.php">
+</file>
+<file name="admrdf.php" url="fudforum/setup/base/www_root/adm/admrdf.php">
+</file>
+<file name="admreplace.php"
url="fudforum/setup/base/www_root/adm/admreplace.php">
+</file>
+<file name="admsmiley.php"
url="fudforum/setup/base/www_root/adm/admsmiley.php">
+</file>
+<file name="admsmileysel.php"
url="fudforum/setup/base/www_root/adm/admsmileysel.php">
+</file>
+<file name="admspell.php" url="fudforum/setup/base/www_root/adm/admspell.php">
+</file>
+<file name="admstats.php" url="fudforum/setup/base/www_root/adm/admstats.php">
+</file>
+<file name="admsync.php" url="fudforum/setup/base/www_root/adm/admsync.php">
+</file>
+<file name="admsysinfo.php"
url="fudforum/setup/base/www_root/adm/admsysinfo.php">
+</file>
+<file name="admthemes.php"
url="fudforum/setup/base/www_root/adm/admthemes.php">
+</file>
+<file name="admthemesel.php"
url="fudforum/setup/base/www_root/adm/admthemesel.php">
+</file>
+<file name="admuser.php" url="fudforum/setup/base/www_root/adm/admuser.php">
+</file>
+<file name="compact.php" url="fudforum/setup/base/www_root/adm/compact.php">
+</file>
+<file name="consist.php" url="fudforum/setup/base/www_root/adm/consist.php">
+</file>
+<file name="index.php" url="fudforum/setup/base/www_root/adm/index.php">
+</file>
+<file name="indexdb.php" url="fudforum/setup/base/www_root/adm/indexdb.php">
+</file>
+<file name="msglist.php" url="fudforum/setup/base/www_root/adm/msglist.php">
+</file>
+<file name="tmpllist.php" url="fudforum/setup/base/www_root/adm/tmpllist.php">
+</file>
+</folder>
+<folder name="images" url="fudforum/setup/base/www_root/images">
+<file name="b_acenter.gif"
url="fudforum/setup/base/www_root/images/b_acenter.gif">
+</file>
+<file name="b_aleft.gif" url="fudforum/setup/base/www_root/images/b_aleft.gif">
+</file>
+<file name="b_alphalist.gif"
url="fudforum/setup/base/www_root/images/b_alphalist.gif">
+</file>
+<file name="b_aright.gif"
url="fudforum/setup/base/www_root/images/b_aright.gif">
+</file>
+<file name="b_bold.gif" url="fudforum/setup/base/www_root/images/b_bold.gif">
+</file>
+<file name="b_boxlist.gif"
url="fudforum/setup/base/www_root/images/b_boxlist.gif">
+</file>
+<file name="b_bulletlist.gif"
url="fudforum/setup/base/www_root/images/b_bulletlist.gif">
+</file>
+<file name="b_code.gif" url="fudforum/setup/base/www_root/images/b_code.gif">
+</file>
+<file name="b_email.gif" url="fudforum/setup/base/www_root/images/b_email.gif">
+</file>
+<file name="b_help.gif" url="fudforum/setup/base/www_root/images/b_help.gif">
+</file>
+<file name="b_image.gif" url="fudforum/setup/base/www_root/images/b_image.gif">
+</file>
+<file name="b_italic.gif"
url="fudforum/setup/base/www_root/images/b_italic.gif">
+</file>
+<file name="b_numlist.gif"
url="fudforum/setup/base/www_root/images/b_numlist.gif">
+</file>
+<file name="b_quote.gif" url="fudforum/setup/base/www_root/images/b_quote.gif">
+</file>
+<file name="b_underline.gif"
url="fudforum/setup/base/www_root/images/b_underline.gif">
+</file>
+<file name="b_url.gif" url="fudforum/setup/base/www_root/images/b_url.gif">
+</file>
+<file name="clear.gif" url="fudforum/setup/base/www_root/images/clear.gif">
+</file>
+<file name="index.html" url="fudforum/setup/base/www_root/images/index.html">
+</file>
+<file name="tableHeaderbg.gif"
url="fudforum/setup/base/www_root/images/tableHeaderbg.gif">
+</file>
+<file name="tableHeaderbg2.gif"
url="fudforum/setup/base/www_root/images/tableHeaderbg2.gif">
+</file>
+<file name="tableHeaderbg3.gif"
url="fudforum/setup/base/www_root/images/tableHeaderbg3.gif">
+</file>
+<folder name="avatars" url="fudforum/setup/base/www_root/images/avatars">
+<file name="index.html"
url="fudforum/setup/base/www_root/images/avatars/index.html">
+</file>
+</folder>
+<folder name="custom_avatars"
url="fudforum/setup/base/www_root/images/custom_avatars">
+<file name="index.html"
url="fudforum/setup/base/www_root/images/custom_avatars/index.html">
+</file>
+</folder>
+<folder name="forum_icons"
url="fudforum/setup/base/www_root/images/forum_icons">
+<file name="icon1.gif"
url="fudforum/setup/base/www_root/images/forum_icons/icon1.gif">
+</file>
+<file name="icon10.gif"
url="fudforum/setup/base/www_root/images/forum_icons/icon10.gif">
+</file>
+<file name="icon11.gif"
url="fudforum/setup/base/www_root/images/forum_icons/icon11.gif">
+</file>
+<file name="icon12.gif"
url="fudforum/setup/base/www_root/images/forum_icons/icon12.gif">
+</file>
+<file name="icon13.gif"
url="fudforum/setup/base/www_root/images/forum_icons/icon13.gif">
+</file>
+<file name="icon14.gif"
url="fudforum/setup/base/www_root/images/forum_icons/icon14.gif">
+</file>
+<file name="icon2.gif"
url="fudforum/setup/base/www_root/images/forum_icons/icon2.gif">
+</file>
+<file name="icon3.gif"
url="fudforum/setup/base/www_root/images/forum_icons/icon3.gif">
+</file>
+<file name="icon4.gif"
url="fudforum/setup/base/www_root/images/forum_icons/icon4.gif">
+</file>
+<file name="icon5.gif"
url="fudforum/setup/base/www_root/images/forum_icons/icon5.gif">
+</file>
+<file name="icon6.gif"
url="fudforum/setup/base/www_root/images/forum_icons/icon6.gif">
+</file>
+<file name="icon7.gif"
url="fudforum/setup/base/www_root/images/forum_icons/icon7.gif">
+</file>
+<file name="icon8.gif"
url="fudforum/setup/base/www_root/images/forum_icons/icon8.gif">
+</file>
+<file name="icon9.gif"
url="fudforum/setup/base/www_root/images/forum_icons/icon9.gif">
+</file>
+<file name="index.html"
url="fudforum/setup/base/www_root/images/forum_icons/index.html">
+</file>
+</folder>
+<folder name="message_icons"
url="fudforum/setup/base/www_root/images/message_icons">
+<file name="icon1.gif"
url="fudforum/setup/base/www_root/images/message_icons/icon1.gif">
+</file>
+<file name="icon10.gif"
url="fudforum/setup/base/www_root/images/message_icons/icon10.gif">
+</file>
+<file name="icon11.gif"
url="fudforum/setup/base/www_root/images/message_icons/icon11.gif">
+</file>
+<file name="icon12.gif"
url="fudforum/setup/base/www_root/images/message_icons/icon12.gif">
+</file>
+<file name="icon13.gif"
url="fudforum/setup/base/www_root/images/message_icons/icon13.gif">
+</file>
+<file name="icon14.gif"
url="fudforum/setup/base/www_root/images/message_icons/icon14.gif">
+</file>
+<file name="icon2.gif"
url="fudforum/setup/base/www_root/images/message_icons/icon2.gif">
+</file>
+<file name="icon3.gif"
url="fudforum/setup/base/www_root/images/message_icons/icon3.gif">
+</file>
+<file name="icon4.gif"
url="fudforum/setup/base/www_root/images/message_icons/icon4.gif">
+</file>
+<file name="icon5.gif"
url="fudforum/setup/base/www_root/images/message_icons/icon5.gif">
+</file>
+<file name="icon6.gif"
url="fudforum/setup/base/www_root/images/message_icons/icon6.gif">
+</file>
+<file name="icon7.gif"
url="fudforum/setup/base/www_root/images/message_icons/icon7.gif">
+</file>
+<file name="icon8.gif"
url="fudforum/setup/base/www_root/images/message_icons/icon8.gif">
+</file>
+<file name="icon9.gif"
url="fudforum/setup/base/www_root/images/message_icons/icon9.gif">
+</file>
+<file name="index.html"
url="fudforum/setup/base/www_root/images/message_icons/index.html">
+</file>
+</folder>
+<folder name="mime" url="fudforum/setup/base/www_root/images/mime">
+<file name="binary.gif"
url="fudforum/setup/base/www_root/images/mime/binary.gif">
+</file>
+<file name="excel.gif"
url="fudforum/setup/base/www_root/images/mime/excel.gif">
+</file>
+<file name="flash.gif"
url="fudforum/setup/base/www_root/images/mime/flash.gif">
+</file>
+<file name="html.gif" url="fudforum/setup/base/www_root/images/mime/html.gif">
+</file>
+<file name="image.gif"
url="fudforum/setup/base/www_root/images/mime/image.gif">
+</file>
+<file name="midi.gif" url="fudforum/setup/base/www_root/images/mime/midi.gif">
+</file>
+<file name="pdf.gif" url="fudforum/setup/base/www_root/images/mime/pdf.gif">
+</file>
+<file name="postscript.gif"
url="fudforum/setup/base/www_root/images/mime/postscript.gif">
+</file>
+<file name="ppt.gif" url="fudforum/setup/base/www_root/images/mime/ppt.gif">
+</file>
+<file name="real.gif" url="fudforum/setup/base/www_root/images/mime/real.gif">
+</file>
+<file name="sh.gif" url="fudforum/setup/base/www_root/images/mime/sh.gif">
+</file>
+<file name="sound.gif"
url="fudforum/setup/base/www_root/images/mime/sound.gif">
+</file>
+<file name="source.gif"
url="fudforum/setup/base/www_root/images/mime/source.gif">
+</file>
+<file name="tar.gif" url="fudforum/setup/base/www_root/images/mime/tar.gif">
+</file>
+<file name="tgz.gif" url="fudforum/setup/base/www_root/images/mime/tgz.gif">
+</file>
+<file name="txt.gif" url="fudforum/setup/base/www_root/images/mime/txt.gif">
+</file>
+<file name="unknown.gif"
url="fudforum/setup/base/www_root/images/mime/unknown.gif">
+</file>
+<file name="video.gif"
url="fudforum/setup/base/www_root/images/mime/video.gif">
+</file>
+<file name="word.gif" url="fudforum/setup/base/www_root/images/mime/word.gif">
+</file>
+</folder>
+<folder name="smiley_icons"
url="fudforum/setup/base/www_root/images/smiley_icons">
+<file name="icon_arrow.gif"
url="fudforum/setup/base/www_root/images/smiley_icons/icon_arrow.gif">
+</file>
+<file name="icon_biggrin.gif"
url="fudforum/setup/base/www_root/images/smiley_icons/icon_biggrin.gif">
+</file>
+<file name="icon_confused.gif"
url="fudforum/setup/base/www_root/images/smiley_icons/icon_confused.gif">
+</file>
+<file name="icon_cool.gif"
url="fudforum/setup/base/www_root/images/smiley_icons/icon_cool.gif">
+</file>
+<file name="icon_cry.gif"
url="fudforum/setup/base/www_root/images/smiley_icons/icon_cry.gif">
+</file>
+<file name="icon_dead.gif"
url="fudforum/setup/base/www_root/images/smiley_icons/icon_dead.gif">
+</file>
+<file name="icon_eek.gif"
url="fudforum/setup/base/www_root/images/smiley_icons/icon_eek.gif">
+</file>
+<file name="icon_evil.gif"
url="fudforum/setup/base/www_root/images/smiley_icons/icon_evil.gif">
+</file>
+<file name="icon_exclaim.gif"
url="fudforum/setup/base/www_root/images/smiley_icons/icon_exclaim.gif">
+</file>
+<file name="icon_frown.gif"
url="fudforum/setup/base/www_root/images/smiley_icons/icon_frown.gif">
+</file>
+<file name="icon_idea.gif"
url="fudforum/setup/base/www_root/images/smiley_icons/icon_idea.gif">
+</file>
+<file name="icon_lol.gif"
url="fudforum/setup/base/www_root/images/smiley_icons/icon_lol.gif">
+</file>
+<file name="icon_mad.gif"
url="fudforum/setup/base/www_root/images/smiley_icons/icon_mad.gif">
+</file>
+<file name="icon_mrgreen.gif"
url="fudforum/setup/base/www_root/images/smiley_icons/icon_mrgreen.gif">
+</file>
+<file name="icon_neutral.gif"
url="fudforum/setup/base/www_root/images/smiley_icons/icon_neutral.gif">
+</file>
+<file name="icon_nod.gif"
url="fudforum/setup/base/www_root/images/smiley_icons/icon_nod.gif">
+</file>
+<file name="icon_proud.gif"
url="fudforum/setup/base/www_root/images/smiley_icons/icon_proud.gif">
+</file>
+<file name="icon_question.gif"
url="fudforum/setup/base/www_root/images/smiley_icons/icon_question.gif">
+</file>
+<file name="icon_razz.gif"
url="fudforum/setup/base/www_root/images/smiley_icons/icon_razz.gif">
+</file>
+<file name="icon_redface.gif"
url="fudforum/setup/base/www_root/images/smiley_icons/icon_redface.gif">
+</file>
+<file name="icon_rolleyes.gif"
url="fudforum/setup/base/www_root/images/smiley_icons/icon_rolleyes.gif">
+</file>
+<file name="icon_sad.gif"
url="fudforum/setup/base/www_root/images/smiley_icons/icon_sad.gif">
+</file>
+<file name="icon_smile.gif"
url="fudforum/setup/base/www_root/images/smiley_icons/icon_smile.gif">
+</file>
+<file name="icon_smug.gif"
url="fudforum/setup/base/www_root/images/smiley_icons/icon_smug.gif">
+</file>
+<file name="icon_surprised.gif"
url="fudforum/setup/base/www_root/images/smiley_icons/icon_surprised.gif">
+</file>
+<file name="icon_thumbdown.gif"
url="fudforum/setup/base/www_root/images/smiley_icons/icon_thumbdown.gif">
+</file>
+<file name="icon_thumbsup.gif"
url="fudforum/setup/base/www_root/images/smiley_icons/icon_thumbsup.gif">
+</file>
+<file name="icon_twisted.gif"
url="fudforum/setup/base/www_root/images/smiley_icons/icon_twisted.gif">
+</file>
+<file name="icon_uhoh.gif"
url="fudforum/setup/base/www_root/images/smiley_icons/icon_uhoh.gif">
+</file>
+<file name="icon_wink.gif"
url="fudforum/setup/base/www_root/images/smiley_icons/icon_wink.gif">
+</file>
+<file name="icon_yawn.gif"
url="fudforum/setup/base/www_root/images/smiley_icons/icon_yawn.gif">
+</file>
+<file name="index.html"
url="fudforum/setup/base/www_root/images/smiley_icons/index.html">
+</file>
+</folder>
+</folder>
+</folder>
+</folder>
+</folder>
+<folder name="templates" url="fudforum/templates">
+<folder name="default" url="fudforum/templates/default">
+<folder name="images" url="fudforum/templates/default/images">
+<file name="empty_dir" url="fudforum/templates/default/images/empty_dir">
+</file>
+</folder>
+</folder>
+</folder>
+<folder name="adm" url="fudforum/adm">
+<file name="admannounce.php" url="fudforum/adm/admannounce.php">
+</file>
+<file name="admapprove_avatar.php" url="fudforum/adm/admapprove_avatar.php">
+</file>
+<file name="admaprune.php" url="fudforum/adm/admaprune.php">
+</file>
+<file name="admavatar.php" url="fudforum/adm/admavatar.php">
+</file>
+<file name="admavatarsel.php" url="fudforum/adm/admavatarsel.php">
+</file>
+<file name="admbrowse.php" url="fudforum/adm/admbrowse.php">
+</file>
+<file name="admcat.php" url="fudforum/adm/admcat.php">
+</file>
+<file name="admclose.php" url="fudforum/adm/admclose.php">
+</file>
+<file name="admdelfrm.php" url="fudforum/adm/admdelfrm.php">
+</file>
+<file name="admemail.php" url="fudforum/adm/admemail.php">
+</file>
+<file name="admerr.php" url="fudforum/adm/admerr.php">
+</file>
+<file name="admext.php" url="fudforum/adm/admext.php">
+</file>
+<file name="admforum.php" url="fudforum/adm/admforum.php">
+</file>
+<file name="admforumicons.php" url="fudforum/adm/admforumicons.php">
+</file>
+<file name="admglobal.php" url="fudforum/adm/admglobal.php">
+</file>
+<file name="admgrouplead.php" url="fudforum/adm/admgrouplead.php">
+</file>
+<file name="admgroups.php" url="fudforum/adm/admgroups.php">
+</file>
+<file name="admiconsel.php" url="fudforum/adm/admiconsel.php">
+</file>
+<file name="admipfilter.php" url="fudforum/adm/admipfilter.php">
+</file>
+<file name="admlevel.php" url="fudforum/adm/admlevel.php">
+</file>
+<file name="admlock.php" url="fudforum/adm/admlock.php">
+</file>
+<file name="admlog.php" url="fudforum/adm/admlog.php">
+</file>
+<file name="admlogin.php" url="fudforum/adm/admlogin.php">
+</file>
+<file name="admmassemail.php" url="fudforum/adm/admmassemail.php">
+</file>
+<file name="admmime.php" url="fudforum/adm/admmime.php">
+</file>
+<file name="admmimesel.php" url="fudforum/adm/admmimesel.php">
+</file>
+<file name="admmlist.php" url="fudforum/adm/admmlist.php">
+</file>
+<file name="admmodfrm.php" url="fudforum/adm/admmodfrm.php">
+</file>
+<file name="admnntp.php" url="fudforum/adm/admnntp.php">
+</file>
+<file name="admpanel.php" url="fudforum/adm/admpanel.php">
+</file>
+<file name="admpdf.php" url="fudforum/adm/admpdf.php">
+</file>
+<file name="admprune.php" url="fudforum/adm/admprune.php">
+</file>
+<file name="admrdf.php" url="fudforum/adm/admrdf.php">
+</file>
+<file name="admreplace.php" url="fudforum/adm/admreplace.php">
+</file>
+<file name="admsmiley.php" url="fudforum/adm/admsmiley.php">
+</file>
+<file name="admsmileysel.php" url="fudforum/adm/admsmileysel.php">
+</file>
+<file name="admspell.php" url="fudforum/adm/admspell.php">
+</file>
+<file name="admstats.php" url="fudforum/adm/admstats.php">
+</file>
+<file name="admsync.php" url="fudforum/adm/admsync.php">
+</file>
+<file name="admsysinfo.php" url="fudforum/adm/admsysinfo.php">
+</file>
+<file name="admthemes.php" url="fudforum/adm/admthemes.php">
+</file>
+<file name="admthemesel.php" url="fudforum/adm/admthemesel.php">
+</file>
+<file name="admuser.php" url="fudforum/adm/admuser.php">
+</file>
+<file name="compact.php" url="fudforum/adm/compact.php">
+</file>
+<file name="consist.php" url="fudforum/adm/consist.php">
+</file>
+<file name="index.php" url="fudforum/adm/index.php">
+</file>
+<file name="indexdb.php" url="fudforum/adm/indexdb.php">
+</file>
+<file name="msglist.php" url="fudforum/adm/msglist.php">
+</file>
+<file name="tmpllist.php" url="fudforum/adm/tmpllist.php">
+</file>
+</folder>
+<folder name="images" url="fudforum/images">
+<file name="b_acenter.gif" url="fudforum/images/b_acenter.gif">
+</file>
+<file name="b_aleft.gif" url="fudforum/images/b_aleft.gif">
+</file>
+<file name="b_alphalist.gif" url="fudforum/images/b_alphalist.gif">
+</file>
+<file name="b_aright.gif" url="fudforum/images/b_aright.gif">
+</file>
+<file name="b_bold.gif" url="fudforum/images/b_bold.gif">
+</file>
+<file name="b_boxlist.gif" url="fudforum/images/b_boxlist.gif">
+</file>
+<file name="b_bulletlist.gif" url="fudforum/images/b_bulletlist.gif">
+</file>
+<file name="b_code.gif" url="fudforum/images/b_code.gif">
+</file>
+<file name="b_email.gif" url="fudforum/images/b_email.gif">
+</file>
+<file name="b_help.gif" url="fudforum/images/b_help.gif">
+</file>
+<file name="b_image.gif" url="fudforum/images/b_image.gif">
+</file>
+<file name="b_italic.gif" url="fudforum/images/b_italic.gif">
+</file>
+<file name="b_numlist.gif" url="fudforum/images/b_numlist.gif">
+</file>
+<file name="b_quote.gif" url="fudforum/images/b_quote.gif">
+</file>
+<file name="b_underline.gif" url="fudforum/images/b_underline.gif">
+</file>
+<file name="b_url.gif" url="fudforum/images/b_url.gif">
+</file>
+<file name="clear.gif" url="fudforum/images/clear.gif">
+</file>
+<file name="index.html" url="fudforum/images/index.html">
+</file>
+<file name="tableHeaderbg.gif" url="fudforum/images/tableHeaderbg.gif">
+</file>
+<file name="tableHeaderbg2.gif" url="fudforum/images/tableHeaderbg2.gif">
+</file>
+<file name="tableHeaderbg3.gif" url="fudforum/images/tableHeaderbg3.gif">
+</file>
+<folder name="avatars" url="fudforum/images/avatars">
+<file name="index.html" url="fudforum/images/avatars/index.html">
+</file>
+</folder>
+<folder name="custom_avatars" url="fudforum/images/custom_avatars">
+<file name="index.html" url="fudforum/images/custom_avatars/index.html">
+</file>
+</folder>
+<folder name="forum_icons" url="fudforum/images/forum_icons">
+<file name="icon1.gif" url="fudforum/images/forum_icons/icon1.gif">
+</file>
+<file name="icon10.gif" url="fudforum/images/forum_icons/icon10.gif">
+</file>
+<file name="icon11.gif" url="fudforum/images/forum_icons/icon11.gif">
+</file>
+<file name="icon12.gif" url="fudforum/images/forum_icons/icon12.gif">
+</file>
+<file name="icon13.gif" url="fudforum/images/forum_icons/icon13.gif">
+</file>
+<file name="icon14.gif" url="fudforum/images/forum_icons/icon14.gif">
+</file>
+<file name="icon2.gif" url="fudforum/images/forum_icons/icon2.gif">
+</file>
+<file name="icon3.gif" url="fudforum/images/forum_icons/icon3.gif">
+</file>
+<file name="icon4.gif" url="fudforum/images/forum_icons/icon4.gif">
+</file>
+<file name="icon5.gif" url="fudforum/images/forum_icons/icon5.gif">
+</file>
+<file name="icon6.gif" url="fudforum/images/forum_icons/icon6.gif">
+</file>
+<file name="icon7.gif" url="fudforum/images/forum_icons/icon7.gif">
+</file>
+<file name="icon8.gif" url="fudforum/images/forum_icons/icon8.gif">
+</file>
+<file name="icon9.gif" url="fudforum/images/forum_icons/icon9.gif">
+</file>
+<file name="index.html" url="fudforum/images/forum_icons/index.html">
+</file>
+</folder>
+<folder name="message_icons" url="fudforum/images/message_icons">
+<file name="icon1.gif" url="fudforum/images/message_icons/icon1.gif">
+</file>
+<file name="icon10.gif" url="fudforum/images/message_icons/icon10.gif">
+</file>
+<file name="icon11.gif" url="fudforum/images/message_icons/icon11.gif">
+</file>
+<file name="icon12.gif" url="fudforum/images/message_icons/icon12.gif">
+</file>
+<file name="icon13.gif" url="fudforum/images/message_icons/icon13.gif">
+</file>
+<file name="icon14.gif" url="fudforum/images/message_icons/icon14.gif">
+</file>
+<file name="icon2.gif" url="fudforum/images/message_icons/icon2.gif">
+</file>
+<file name="icon3.gif" url="fudforum/images/message_icons/icon3.gif">
+</file>
+<file name="icon4.gif" url="fudforum/images/message_icons/icon4.gif">
+</file>
+<file name="icon5.gif" url="fudforum/images/message_icons/icon5.gif">
+</file>
+<file name="icon6.gif" url="fudforum/images/message_icons/icon6.gif">
+</file>
+<file name="icon7.gif" url="fudforum/images/message_icons/icon7.gif">
+</file>
+<file name="icon8.gif" url="fudforum/images/message_icons/icon8.gif">
+</file>
+<file name="icon9.gif" url="fudforum/images/message_icons/icon9.gif">
+</file>
+<file name="index.html" url="fudforum/images/message_icons/index.html">
+</file>
+</folder>
+<folder name="mime" url="fudforum/images/mime">
+<file name="binary.gif" url="fudforum/images/mime/binary.gif">
+</file>
+<file name="excel.gif" url="fudforum/images/mime/excel.gif">
+</file>
+<file name="flash.gif" url="fudforum/images/mime/flash.gif">
+</file>
+<file name="html.gif" url="fudforum/images/mime/html.gif">
+</file>
+<file name="image.gif" url="fudforum/images/mime/image.gif">
+</file>
+<file name="midi.gif" url="fudforum/images/mime/midi.gif">
+</file>
+<file name="pdf.gif" url="fudforum/images/mime/pdf.gif">
+</file>
+<file name="postscript.gif" url="fudforum/images/mime/postscript.gif">
+</file>
+<file name="ppt.gif" url="fudforum/images/mime/ppt.gif">
+</file>
+<file name="real.gif" url="fudforum/images/mime/real.gif">
+</file>
+<file name="sh.gif" url="fudforum/images/mime/sh.gif">
+</file>
+<file name="sound.gif" url="fudforum/images/mime/sound.gif">
+</file>
+<file name="source.gif" url="fudforum/images/mime/source.gif">
+</file>
+<file name="tar.gif" url="fudforum/images/mime/tar.gif">
+</file>
+<file name="tgz.gif" url="fudforum/images/mime/tgz.gif">
+</file>
+<file name="txt.gif" url="fudforum/images/mime/txt.gif">
+</file>
+<file name="unknown.gif" url="fudforum/images/mime/unknown.gif">
+</file>
+<file name="video.gif" url="fudforum/images/mime/video.gif">
+</file>
+<file name="word.gif" url="fudforum/images/mime/word.gif">
+</file>
+</folder>
+<folder name="smiley_icons" url="fudforum/images/smiley_icons">
+<file name="icon_arrow.gif" url="fudforum/images/smiley_icons/icon_arrow.gif">
+</file>
+<file name="icon_biggrin.gif"
url="fudforum/images/smiley_icons/icon_biggrin.gif">
+</file>
+<file name="icon_confused.gif"
url="fudforum/images/smiley_icons/icon_confused.gif">
+</file>
+<file name="icon_cool.gif" url="fudforum/images/smiley_icons/icon_cool.gif">
+</file>
+<file name="icon_cry.gif" url="fudforum/images/smiley_icons/icon_cry.gif">
+</file>
+<file name="icon_dead.gif" url="fudforum/images/smiley_icons/icon_dead.gif">
+</file>
+<file name="icon_eek.gif" url="fudforum/images/smiley_icons/icon_eek.gif">
+</file>
+<file name="icon_evil.gif" url="fudforum/images/smiley_icons/icon_evil.gif">
+</file>
+<file name="icon_exclaim.gif"
url="fudforum/images/smiley_icons/icon_exclaim.gif">
+</file>
+<file name="icon_frown.gif" url="fudforum/images/smiley_icons/icon_frown.gif">
+</file>
+<file name="icon_idea.gif" url="fudforum/images/smiley_icons/icon_idea.gif">
+</file>
+<file name="icon_lol.gif" url="fudforum/images/smiley_icons/icon_lol.gif">
+</file>
+<file name="icon_mad.gif" url="fudforum/images/smiley_icons/icon_mad.gif">
+</file>
+<file name="icon_mrgreen.gif"
url="fudforum/images/smiley_icons/icon_mrgreen.gif">
+</file>
+<file name="icon_neutral.gif"
url="fudforum/images/smiley_icons/icon_neutral.gif">
+</file>
+<file name="icon_nod.gif" url="fudforum/images/smiley_icons/icon_nod.gif">
+</file>
+<file name="icon_proud.gif" url="fudforum/images/smiley_icons/icon_proud.gif">
+</file>
+<file name="icon_question.gif"
url="fudforum/images/smiley_icons/icon_question.gif">
+</file>
+<file name="icon_razz.gif" url="fudforum/images/smiley_icons/icon_razz.gif">
+</file>
+<file name="icon_redface.gif"
url="fudforum/images/smiley_icons/icon_redface.gif">
+</file>
+<file name="icon_rolleyes.gif"
url="fudforum/images/smiley_icons/icon_rolleyes.gif">
+</file>
+<file name="icon_sad.gif" url="fudforum/images/smiley_icons/icon_sad.gif">
+</file>
+<file name="icon_smile.gif" url="fudforum/images/smiley_icons/icon_smile.gif">
+</file>
+<file name="icon_smug.gif" url="fudforum/images/smiley_icons/icon_smug.gif">
+</file>
+<file name="icon_surprised.gif"
url="fudforum/images/smiley_icons/icon_surprised.gif">
+</file>
+<file name="icon_thumbdown.gif"
url="fudforum/images/smiley_icons/icon_thumbdown.gif">
+</file>
+<file name="icon_thumbsup.gif"
url="fudforum/images/smiley_icons/icon_thumbsup.gif">
+</file>
+<file name="icon_twisted.gif"
url="fudforum/images/smiley_icons/icon_twisted.gif">
+</file>
+<file name="icon_uhoh.gif" url="fudforum/images/smiley_icons/icon_uhoh.gif">
+</file>
+<file name="icon_wink.gif" url="fudforum/images/smiley_icons/icon_wink.gif">
+</file>
+<file name="icon_yawn.gif" url="fudforum/images/smiley_icons/icon_yawn.gif">
+</file>
+<file name="index.html" url="fudforum/images/smiley_icons/index.html">
+</file>
+</folder>
+</folder>
+<folder name="theme" url="fudforum/theme">
+<folder name="default" url="fudforum/theme/default">
+<file name="actions.php" url="fudforum/theme/default/actions.php">
+</file>
+<file name="avatarsel.php" url="fudforum/theme/default/avatarsel.php">
+</file>
+<file name="buddy_list.php" url="fudforum/theme/default/buddy_list.php">
+</file>
+<file name="email.php" url="fudforum/theme/default/email.php">
+</file>
+<file name="error.php" url="fudforum/theme/default/error.php">
+</file>
+<file name="finduser.php" url="fudforum/theme/default/finduser.php">
+</file>
+<file name="forum.css" url="fudforum/theme/default/forum.css">
+</file>
+<file name="getfile.php" url="fudforum/theme/default/getfile.php">
+</file>
+<file name="groupmgr.php" url="fudforum/theme/default/groupmgr.php">
+</file>
+<file name="help_index.php" url="fudforum/theme/default/help_index.php">
+</file>
+<file name="ignore_list.php" url="fudforum/theme/default/ignore_list.php">
+</file>
+<file name="index.php" url="fudforum/theme/default/index.php">
+</file>
+<file name="markread.php" url="fudforum/theme/default/markread.php">
+</file>
+<file name="merge_th.php" url="fudforum/theme/default/merge_th.php">
+</file>
+<file name="mklist.php" url="fudforum/theme/default/mklist.php">
+</file>
+<file name="mmod.php" url="fudforum/theme/default/mmod.php">
+</file>
+<file name="mnav.php" url="fudforum/theme/default/mnav.php">
+</file>
+<file name="modque.php" url="fudforum/theme/default/modque.php">
+</file>
+<file name="msg.php" url="fudforum/theme/default/msg.php">
+</file>
+<file name="mvthread.php" url="fudforum/theme/default/mvthread.php">
+</file>
+<file name="online_today.php" url="fudforum/theme/default/online_today.php">
+</file>
+<file name="pmsg.php" url="fudforum/theme/default/pmsg.php">
+</file>
+<file name="pmsg_view.php" url="fudforum/theme/default/pmsg_view.php">
+</file>
+<file name="pmuserloc.php" url="fudforum/theme/default/pmuserloc.php">
+</file>
+<file name="poll.php" url="fudforum/theme/default/poll.php">
+</file>
+<file name="polllist.php" url="fudforum/theme/default/polllist.php">
+</file>
+<file name="post.php" url="fudforum/theme/default/post.php">
+</file>
+<file name="ppost.php" url="fudforum/theme/default/ppost.php">
+</file>
+<file name="qbud.php" url="fudforum/theme/default/qbud.php">
+</file>
+<file name="ratethread.php" url="fudforum/theme/default/ratethread.php">
+</file>
+<file name="register.php" url="fudforum/theme/default/register.php">
+</file>
+<file name="remail.php" url="fudforum/theme/default/remail.php">
+</file>
+<file name="report.php" url="fudforum/theme/default/report.php">
+</file>
+<file name="reported.php" url="fudforum/theme/default/reported.php">
+</file>
+<file name="search.php" url="fudforum/theme/default/search.php">
+</file>
+<file name="selmsg.php" url="fudforum/theme/default/selmsg.php">
+</file>
+<file name="showposts.php" url="fudforum/theme/default/showposts.php">
+</file>
+<file name="smladd.php" url="fudforum/theme/default/smladd.php">
+</file>
+<file name="split_th.php" url="fudforum/theme/default/split_th.php">
+</file>
+<file name="subscribed.php" url="fudforum/theme/default/subscribed.php">
+</file>
+<file name="thr_exch.php" url="fudforum/theme/default/thr_exch.php">
+</file>
+<file name="thread.php" url="fudforum/theme/default/thread.php">
+</file>
+<file name="threadt.php" url="fudforum/theme/default/threadt.php">
+</file>
+<file name="tmp_view.php" url="fudforum/theme/default/tmp_view.php">
+</file>
+<file name="tree.php" url="fudforum/theme/default/tree.php">
+</file>
+<file name="usrinfo.php" url="fudforum/theme/default/usrinfo.php">
+</file>
+<folder name="images" url="fudforum/theme/default/images">
+<file name="1stars.gif" url="fudforum/theme/default/images/1stars.gif">
+</file>
+<file name="2stars.gif" url="fudforum/theme/default/images/2stars.gif">
+</file>
+<file name="3stars.gif" url="fudforum/theme/default/images/3stars.gif">
+</file>
+<file name="4stars.gif" url="fudforum/theme/default/images/4stars.gif">
+</file>
+<file name="5stars.gif" url="fudforum/theme/default/images/5stars.gif">
+</file>
+<file name="affero_noreg.gif"
url="fudforum/theme/default/images/affero_noreg.gif">
+</file>
+<file name="affero_reg.gif" url="fudforum/theme/default/images/affero_reg.gif">
+</file>
+<file name="aim.gif" url="fudforum/theme/default/images/aim.gif">
+</file>
+<file name="attach.gif" url="fudforum/theme/default/images/attach.gif">
+</file>
+<file name="attachment.gif" url="fudforum/theme/default/images/attachment.gif">
+</file>
+<file name="b_acenter.gif" url="fudforum/theme/default/images/b_acenter.gif">
+</file>
+<file name="b_aleft.gif" url="fudforum/theme/default/images/b_aleft.gif">
+</file>
+<file name="b_alphalist.gif"
url="fudforum/theme/default/images/b_alphalist.gif">
+</file>
+<file name="b_aright.gif" url="fudforum/theme/default/images/b_aright.gif">
+</file>
+<file name="b_bold.gif" url="fudforum/theme/default/images/b_bold.gif">
+</file>
+<file name="b_boxlist.gif" url="fudforum/theme/default/images/b_boxlist.gif">
+</file>
+<file name="b_bulletlist.gif"
url="fudforum/theme/default/images/b_bulletlist.gif">
+</file>
+<file name="b_code.gif" url="fudforum/theme/default/images/b_code.gif">
+</file>
+<file name="b_email.gif" url="fudforum/theme/default/images/b_email.gif">
+</file>
+<file name="b_help.gif" url="fudforum/theme/default/images/b_help.gif">
+</file>
+<file name="b_image.gif" url="fudforum/theme/default/images/b_image.gif">
+</file>
+<file name="b_italic.gif" url="fudforum/theme/default/images/b_italic.gif">
+</file>
+<file name="b_numlist.gif" url="fudforum/theme/default/images/b_numlist.gif">
+</file>
+<file name="b_quote.gif" url="fudforum/theme/default/images/b_quote.gif">
+</file>
+<file name="b_underline.gif"
url="fudforum/theme/default/images/b_underline.gif">
+</file>
+<file name="b_url.gif" url="fudforum/theme/default/images/b_url.gif">
+</file>
+<file name="bday.gif" url="fudforum/theme/default/images/bday.gif">
+</file>
+<file name="clear.gif" url="fudforum/theme/default/images/clear.gif">
+</file>
+<file name="down.gif" url="fudforum/theme/default/images/down.gif">
+</file>
+<file name="existing_content.gif"
url="fudforum/theme/default/images/existing_content.gif">
+</file>
+<file name="goback.gif" url="fudforum/theme/default/images/goback.gif">
+</file>
+<file name="goto.gif" url="fudforum/theme/default/images/goto.gif">
+</file>
+<file name="jabber.gif" url="fudforum/theme/default/images/jabber.gif">
+</file>
+<file name="lock.gif" url="fudforum/theme/default/images/lock.gif">
+</file>
+<file name="moved.gif" url="fudforum/theme/default/images/moved.gif">
+</file>
+<file name="msg_arrow.gif" url="fudforum/theme/default/images/msg_arrow.gif">
+</file>
+<file name="msg_folder.gif" url="fudforum/theme/default/images/msg_folder.gif">
+</file>
+<file name="msnm.gif" url="fudforum/theme/default/images/msnm.gif">
+</file>
+<file name="new_content.gif"
url="fudforum/theme/default/images/new_content.gif">
+</file>
+<file name="newposts.gif" url="fudforum/theme/default/images/newposts.gif">
+</file>
+<file name="offline.gif" url="fudforum/theme/default/images/offline.gif">
+</file>
+<file name="online.gif" url="fudforum/theme/default/images/online.gif">
+</file>
+<file name="pager.gif" url="fudforum/theme/default/images/pager.gif">
+</file>
+<file name="pmsg_read.gif" url="fudforum/theme/default/images/pmsg_read.gif">
+</file>
+<file name="pmsg_unread.gif"
url="fudforum/theme/default/images/pmsg_unread.gif">
+</file>
+<file name="poll_pix.gif" url="fudforum/theme/default/images/poll_pix.gif">
+</file>
+<file name="posticon.gif" url="fudforum/theme/default/images/posticon.gif">
+</file>
+<file name="read.gif" url="fudforum/theme/default/images/read.gif">
+</file>
+<file name="readlocked.gif" url="fudforum/theme/default/images/readlocked.gif">
+</file>
+<file name="tab_end.gif" url="fudforum/theme/default/images/tab_end.gif">
+</file>
+<file name="tab_end_top.gif"
url="fudforum/theme/default/images/tab_end_top.gif">
+</file>
+<file name="tab_start.gif" url="fudforum/theme/default/images/tab_start.gif">
+</file>
+<file name="tab_start_top.gif"
url="fudforum/theme/default/images/tab_start_top.gif">
+</file>
+<file name="tab_top.gif" url="fudforum/theme/default/images/tab_top.gif">
+</file>
+<file name="tableHeaderbg.gif"
url="fudforum/theme/default/images/tableHeaderbg.gif">
+</file>
+<file name="tableHeaderbg2.gif"
url="fudforum/theme/default/images/tableHeaderbg2.gif">
+</file>
+<file name="tableHeaderbg3.gif"
url="fudforum/theme/default/images/tableHeaderbg3.gif">
+</file>
+<file name="top_admin.gif" url="fudforum/theme/default/images/top_admin.gif">
+</file>
+<file name="top_help.gif" url="fudforum/theme/default/images/top_help.gif">
+</file>
+<file name="top_home.gif" url="fudforum/theme/default/images/top_home.gif">
+</file>
+<file name="top_login.gif" url="fudforum/theme/default/images/top_login.gif">
+</file>
+<file name="top_logout.gif" url="fudforum/theme/default/images/top_logout.gif">
+</file>
+<file name="top_members.gif"
url="fudforum/theme/default/images/top_members.gif">
+</file>
+<file name="top_pm.gif" url="fudforum/theme/default/images/top_pm.gif">
+</file>
+<file name="top_profile.gif"
url="fudforum/theme/default/images/top_profile.gif">
+</file>
+<file name="top_register.gif"
url="fudforum/theme/default/images/top_register.gif">
+</file>
+<file name="top_search.gif" url="fudforum/theme/default/images/top_search.gif">
+</file>
+<file name="unread.gif" url="fudforum/theme/default/images/unread.gif">
+</file>
+<file name="unreadlocked.gif"
url="fudforum/theme/default/images/unreadlocked.gif">
+</file>
+<file name="up.gif" url="fudforum/theme/default/images/up.gif">
+</file>
+<file name="yahoo.gif" url="fudforum/theme/default/images/yahoo.gif">
+</file>
+<file name="flat_view.gif" url="fudforum/theme/default/images/flat_view.gif">
+</file>
+<file name="homepage.gif" url="fudforum/theme/default/images/homepage.gif">
+</file>
+<file name="msg_about.gif" url="fudforum/theme/default/images/msg_about.gif">
+</file>
+<file name="msg_delete.gif" url="fudforum/theme/default/images/msg_delete.gif">
+</file>
+<file name="msg_edit.gif" url="fudforum/theme/default/images/msg_edit.gif">
+</file>
+<file name="msg_email.gif" url="fudforum/theme/default/images/msg_email.gif">
+</file>
+<file name="msg_forward.gif"
url="fudforum/theme/default/images/msg_forward.gif">
+</file>
+<file name="msg_pm.gif" url="fudforum/theme/default/images/msg_pm.gif">
+</file>
+<file name="msg_quote.gif" url="fudforum/theme/default/images/msg_quote.gif">
+</file>
+<file name="msg_reply.gif" url="fudforum/theme/default/images/msg_reply.gif">
+</file>
+<file name="new_pm.gif" url="fudforum/theme/default/images/new_pm.gif">
+</file>
+<file name="new_thread.gif" url="fudforum/theme/default/images/new_thread.gif">
+</file>
+<file name="post_reply.gif" url="fudforum/theme/default/images/post_reply.gif">
+</file>
+<file name="show_posts.gif" url="fudforum/theme/default/images/show_posts.gif">
+</file>
+<file name="tree_view.gif" url="fudforum/theme/default/images/tree_view.gif">
+</file>
+</folder>
+<folder name="help" url="fudforum/theme/default/help">
+<file name="boardusage.hlp" url="fudforum/theme/default/help/boardusage.hlp">
+</file>
+<file name="create_poll.hlp" url="fudforum/theme/default/help/create_poll.hlp">
+</file>
+<file name="dis_sml.hlp" url="fudforum/theme/default/help/dis_sml.hlp">
+</file>
+<file name="edit_tools.hlp" url="fudforum/theme/default/help/edit_tools.hlp">
+</file>
+<file name="faq_index.hlp" url="fudforum/theme/default/help/faq_index.hlp">
+</file>
+<file name="forum_sub.hlp" url="fudforum/theme/default/help/forum_sub.hlp">
+</file>
+<file name="no_replies.hlp" url="fudforum/theme/default/help/no_replies.hlp">
+</file>
+<file name="post_icon.hlp" url="fudforum/theme/default/help/post_icon.hlp">
+</file>
+<file name="post_not.hlp" url="fudforum/theme/default/help/post_not.hlp">
+</file>
+<file name="readingposting.hlp"
url="fudforum/theme/default/help/readingposting.hlp">
+</file>
+<file name="show_index.hlp" url="fudforum/theme/default/help/show_index.hlp">
+</file>
+<file name="smilies.hlp" url="fudforum/theme/default/help/smilies.hlp">
+</file>
+<file name="thread_sub.hlp" url="fudforum/theme/default/help/thread_sub.hlp">
+</file>
+<file name="usermaintance.hlp"
url="fudforum/theme/default/help/usermaintance.hlp">
+</file>
+</folder>
+</folder>
+</folder>
+</folder>
+<folder name="infolog">
+<preference-set id="">
+ <string id="import_dirname">Q:\public_html\phpgw_0_9_16\infolog</string>
+</preference-set>
+<file name="csv_import.php" url="infolog/csv_import.php">
+</file>
+<file name="index.php" url="infolog/index.php">
+</file>
+<folder name="inc" url="infolog/inc">
+<file name="class.boinfolog.inc.php" url="infolog/inc/class.boinfolog.inc.php">
+</file>
+<file name="class.bolink.inc.php" url="infolog/inc/class.bolink.inc.php">
+</file>
+<file name="class.customfields_widget.inc.php"
url="infolog/inc/class.customfields_widget.inc.php">
+</file>
+<file name="class.sbox2.inc.php" url="infolog/inc/class.sbox2.inc.php">
+</file>
+<file name="class.soinfolog.inc.php" url="infolog/inc/class.soinfolog.inc.php">
+</file>
+<file name="class.solink.inc.php" url="infolog/inc/class.solink.inc.php">
+</file>
+<file name="class.uicustomfields.inc.php"
url="infolog/inc/class.uicustomfields.inc.php">
+</file>
+<file name="class.uiinfolog.inc.php" url="infolog/inc/class.uiinfolog.inc.php">
+</file>
+<file name="class.uilink.inc.php" url="infolog/inc/class.uilink.inc.php">
+</file>
+<file name="class.vfs.inc.php" url="infolog/inc/class.vfs.inc.php">
+</file>
+<file name="hook_admin.inc.php" url="infolog/inc/hook_admin.inc.php">
+</file>
+<file name="hook_deleteaccount.inc.php"
url="infolog/inc/hook_deleteaccount.inc.php">
+</file>
+<file name="hook_home.inc.php" url="infolog/inc/hook_home.inc.php">
+</file>
+<file name="hook_preferences.inc.php"
url="infolog/inc/hook_preferences.inc.php">
+</file>
+<file name="hook_settings.inc.php" url="infolog/inc/hook_settings.inc.php">
+</file>
+</folder>
+<folder name="setup" url="infolog/setup">
+<file name="TRANSLATORS" url="infolog/setup/TRANSLATORS">
+</file>
+<file name="etemplates.inc.php" url="infolog/setup/etemplates.inc.php">
+</file>
+<file name="phpgw_da.lang" url="infolog/setup/phpgw_da.lang">
+</file>
+<file name="phpgw_de.lang" url="infolog/setup/phpgw_de.lang">
+</file>
+<file name="phpgw_en.lang" url="infolog/setup/phpgw_en.lang">
+</file>
+<file name="phpgw_es.lang" url="infolog/setup/phpgw_es.lang">
+</file>
+<file name="phpgw_fi.lang" url="infolog/setup/phpgw_fi.lang">
+</file>
+<file name="phpgw_fr.lang" url="infolog/setup/phpgw_fr.lang">
+</file>
+<file name="phpgw_hu.lang" url="infolog/setup/phpgw_hu.lang">
+</file>
+<file name="phpgw_it.lang" url="infolog/setup/phpgw_it.lang">
+</file>
+<file name="phpgw_ja.lang" url="infolog/setup/phpgw_ja.lang">
+</file>
+<file name="phpgw_ko.lang" url="infolog/setup/phpgw_ko.lang">
+</file>
+<file name="phpgw_nl.lang" url="infolog/setup/phpgw_nl.lang">
+</file>
+<file name="phpgw_no.lang" url="infolog/setup/phpgw_no.lang">
+</file>
+<file name="phpgw_pl.lang" url="infolog/setup/phpgw_pl.lang">
+</file>
+<file name="phpgw_sv.lang" url="infolog/setup/phpgw_sv.lang">
+</file>
+<file name="setup.inc.php" url="infolog/setup/setup.inc.php">
+</file>
+<file name="tables_baseline.inc.php"
url="infolog/setup/tables_baseline.inc.php">
+</file>
+<file name="tables_current.inc.php" url="infolog/setup/tables_current.inc.php">
+</file>
+<file name="tables_update.inc.php" url="infolog/setup/tables_update.inc.php">
+</file>
+</folder>
+<folder name="templates" url="infolog/templates">
+<folder name="default" url="infolog/templates/default">
+<file name="admin.tpl" url="infolog/templates/default/admin.tpl">
+</file>
+<file name="csv_import.tpl" url="infolog/templates/default/csv_import.tpl">
+</file>
+<file name="delete.xet" url="infolog/templates/default/delete.xet">
+</file>
+<file name="edit.xet" url="infolog/templates/default/edit.xet">
+</file>
+<file name="index.xet" url="infolog/templates/default/index.xet">
+</file>
+<file name="preference_acl.tpl"
url="infolog/templates/default/preference_acl.tpl">
+</file>
+<file name="preference_acl_row.tpl"
url="infolog/templates/default/preference_acl_row.tpl">
+</file>
+<file name="preference_colspan.tpl"
url="infolog/templates/default/preference_colspan.tpl">
+</file>
+<folder name="images" url="infolog/templates/default/images">
+<file name="addfile.gif" url="infolog/templates/default/images/addfile.gif">
+</file>
+<file name="addfile.png" url="infolog/templates/default/images/addfile.png">
+</file>
+<file name="billed.gif" url="infolog/templates/default/images/billed.gif">
+</file>
+<file name="billed.png" url="infolog/templates/default/images/billed.png">
+</file>
+<file name="call.gif" url="infolog/templates/default/images/call.gif">
+</file>
+<file name="call.png" url="infolog/templates/default/images/call.png">
+</file>
+<file name="confirm.gif" url="infolog/templates/default/images/confirm.gif">
+</file>
+<file name="confirm.png" url="infolog/templates/default/images/confirm.png">
+</file>
+<file name="delete.gif" url="infolog/templates/default/images/delete.gif">
+</file>
+<file name="delete.png" url="infolog/templates/default/images/delete.png">
+</file>
+<file name="done.gif" url="infolog/templates/default/images/done.gif">
+</file>
+<file name="done.png" url="infolog/templates/default/images/done.png">
+</file>
+<file name="edit.gif" url="infolog/templates/default/images/edit.gif">
+</file>
+<file name="edit.png" url="infolog/templates/default/images/edit.png">
+</file>
+<file name="email.gif" url="infolog/templates/default/images/email.gif">
+</file>
+<file name="email.png" url="infolog/templates/default/images/email.png">
+</file>
+<file name="index.html" url="infolog/templates/default/images/index.html">
+</file>
+<file name="infolog.psd" url="infolog/templates/default/images/infolog.psd">
+</file>
+<file name="navbar.gif" url="infolog/templates/default/images/navbar.gif">
+</file>
+<file name="navbar.png" url="infolog/templates/default/images/navbar.png">
+</file>
+<file name="new.gif" url="infolog/templates/default/images/new.gif">
+</file>
+<file name="new.png" url="infolog/templates/default/images/new.png">
+</file>
+<file name="note.gif" url="infolog/templates/default/images/note.gif">
+</file>
+<file name="note.png" url="infolog/templates/default/images/note.png">
+</file>
+<file name="offer.gif" url="infolog/templates/default/images/offer.gif">
+</file>
+<file name="offer.png" url="infolog/templates/default/images/offer.png">
+</file>
+<file name="ongoing.gif" url="infolog/templates/default/images/ongoing.gif">
+</file>
+<file name="ongoing.png" url="infolog/templates/default/images/ongoing.png">
+</file>
+<file name="parent.gif" url="infolog/templates/default/images/parent.gif">
+</file>
+<file name="parent.png" url="infolog/templates/default/images/parent.png">
+</file>
+<file name="phone.gif" url="infolog/templates/default/images/phone.gif">
+</file>
+<file name="phone.png" url="infolog/templates/default/images/phone.png">
+</file>
+<file name="reject.gif" url="infolog/templates/default/images/reject.gif">
+</file>
+<file name="reject.png" url="infolog/templates/default/images/reject.png">
+</file>
+<file name="task.gif" url="infolog/templates/default/images/task.gif">
+</file>
+<file name="task.png" url="infolog/templates/default/images/task.png">
+</file>
+<file name="view.gif" url="infolog/templates/default/images/view.gif">
+</file>
+<file name="view.png" url="infolog/templates/default/images/view.png">
+</file>
+<file name="will-call.gif"
url="infolog/templates/default/images/will-call.gif">
+</file>
+<file name="will-call.png"
url="infolog/templates/default/images/will-call.png">
+</file>
+</folder>
+</folder>
+<folder name="idots" url="infolog/templates/idots">
+<folder name="images" url="infolog/templates/idots/images">
+<file name="navbar.png" url="infolog/templates/idots/images/navbar.png">
+</file>
+</folder>
+</folder>
+<folder name="idsociety" url="infolog/templates/idsociety">
+<file name="info.css" url="infolog/templates/idsociety/info.css">
+</file>
+<folder name="images" url="infolog/templates/idsociety/images">
+<file name="addfile.gif" url="infolog/templates/idsociety/images/addfile.gif">
+</file>
+<file name="addfile.png" url="infolog/templates/idsociety/images/addfile.png">
+</file>
+<file name="billed.gif" url="infolog/templates/idsociety/images/billed.gif">
+</file>
+<file name="billed.png" url="infolog/templates/idsociety/images/billed.png">
+</file>
+<file name="call.gif" url="infolog/templates/idsociety/images/call.gif">
+</file>
+<file name="call.png" url="infolog/templates/idsociety/images/call.png">
+</file>
+<file name="confirm.gif" url="infolog/templates/idsociety/images/confirm.gif">
+</file>
+<file name="confirm.png" url="infolog/templates/idsociety/images/confirm.png">
+</file>
+<file name="delete.gif" url="infolog/templates/idsociety/images/delete.gif">
+</file>
+<file name="delete.png" url="infolog/templates/idsociety/images/delete.png">
+</file>
+<file name="done.gif" url="infolog/templates/idsociety/images/done.gif">
+</file>
+<file name="done.png" url="infolog/templates/idsociety/images/done.png">
+</file>
+<file name="edit.gif" url="infolog/templates/idsociety/images/edit.gif">
+</file>
+<file name="edit.png" url="infolog/templates/idsociety/images/edit.png">
+</file>
+<file name="email.gif" url="infolog/templates/idsociety/images/email.gif">
+</file>
+<file name="email.png" url="infolog/templates/idsociety/images/email.png">
+</file>
+<file name="index.html" url="infolog/templates/idsociety/images/index.html">
+</file>
+<file name="navbar-over.gif"
url="infolog/templates/idsociety/images/navbar-over.gif">
+</file>
+<file name="navbar-over.png"
url="infolog/templates/idsociety/images/navbar-over.png">
+</file>
+<file name="navbar.gif" url="infolog/templates/idsociety/images/navbar.gif">
+</file>
+<file name="navbar.png" url="infolog/templates/idsociety/images/navbar.png">
+</file>
+<file name="new.gif" url="infolog/templates/idsociety/images/new.gif">
+</file>
+<file name="new.png" url="infolog/templates/idsociety/images/new.png">
+</file>
+<file name="note.gif" url="infolog/templates/idsociety/images/note.gif">
+</file>
+<file name="note.png" url="infolog/templates/idsociety/images/note.png">
+</file>
+<file name="offer.gif" url="infolog/templates/idsociety/images/offer.gif">
+</file>
+<file name="offer.png" url="infolog/templates/idsociety/images/offer.png">
+</file>
+<file name="ongoing.gif" url="infolog/templates/idsociety/images/ongoing.gif">
+</file>
+<file name="ongoing.png" url="infolog/templates/idsociety/images/ongoing.png">
+</file>
+<file name="parent.gif" url="infolog/templates/idsociety/images/parent.gif">
+</file>
+<file name="parent.png" url="infolog/templates/idsociety/images/parent.png">
+</file>
+<file name="phone.gif" url="infolog/templates/idsociety/images/phone.gif">
+</file>
+<file name="phone.png" url="infolog/templates/idsociety/images/phone.png">
+</file>
+<file name="reject.gif" url="infolog/templates/idsociety/images/reject.gif">
+</file>
+<file name="reject.png" url="infolog/templates/idsociety/images/reject.png">
+</file>
+<file name="task.gif" url="infolog/templates/idsociety/images/task.gif">
+</file>
+<file name="task.png" url="infolog/templates/idsociety/images/task.png">
+</file>
+<file name="view.gif" url="infolog/templates/idsociety/images/view.gif">
+</file>
+<file name="view.png" url="infolog/templates/idsociety/images/view.png">
+</file>
+<file name="will-call.gif"
url="infolog/templates/idsociety/images/will-call.gif">
+</file>
+<file name="will-call.png"
url="infolog/templates/idsociety/images/will-call.png">
+</file>
+</folder>
+</folder>
+<folder name="probusiness" url="infolog/templates/probusiness">
+<folder name="images" url="infolog/templates/probusiness/images">
+<file name="folder.png" url="infolog/templates/probusiness/images/folder.png">
+</file>
+<file name="navbar.png" url="infolog/templates/probusiness/images/navbar.png">
+</file>
+</folder>
+</folder>
+</folder>
+</folder>
+<folder name="messenger">
+<preference-set id="">
+ <string id="import_dirname">Q:\public_html\phpgw_0_9_16\messenger</string>
+</preference-set>
+<file name="index.php" url="messenger/index.php">
+</file>
+<folder name="doc" url="messenger/doc">
+<file name="copyright.gpl" url="messenger/doc/copyright.gpl">
+</file>
+</folder>
+<folder name="inc" url="messenger/inc">
+<file name="class.bomessenger.inc.php"
url="messenger/inc/class.bomessenger.inc.php">
+</file>
+<file name="class.somessenger.inc.php"
url="messenger/inc/class.somessenger.inc.php">
+</file>
+<file name="class.uimessenger.inc.php"
url="messenger/inc/class.uimessenger.inc.php">
+</file>
+<file name="hook_admin.inc.php" url="messenger/inc/hook_admin.inc.php">
+</file>
+<file name="hook_after_navbar.inc.php"
url="messenger/inc/hook_after_navbar.inc.php">
+</file>
+<file name="hook_mypage.inc.php" url="messenger/inc/hook_mypage.inc.php">
+</file>
+<file name="hook_registration.inc.php"
url="messenger/inc/hook_registration.inc.php">
+</file>
+</folder>
+<folder name="setup" url="messenger/setup">
+<file name="phpgw_de.lang" url="messenger/setup/phpgw_de.lang">
+</file>
+<file name="phpgw_en.lang" url="messenger/setup/phpgw_en.lang">
+</file>
+<file name="phpgw_fi.lang" url="messenger/setup/phpgw_fi.lang">
+</file>
+<file name="phpgw_fr.lang" url="messenger/setup/phpgw_fr.lang">
+</file>
+<file name="phpgw_it.lang" url="messenger/setup/phpgw_it.lang">
+</file>
+<file name="phpgw_ja.lang" url="messenger/setup/phpgw_ja.lang">
+</file>
+<file name="phpgw_pl.lang" url="messenger/setup/phpgw_pl.lang">
+</file>
+<file name="phpgw_sv.lang" url="messenger/setup/phpgw_sv.lang">
+</file>
+<file name="setup.inc.php" url="messenger/setup/setup.inc.php">
+</file>
+<file name="tables_baseline.inc.php"
url="messenger/setup/tables_baseline.inc.php">
+</file>
+<file name="tables_current.inc.php"
url="messenger/setup/tables_current.inc.php">
+</file>
+</folder>
+<folder name="templates" url="messenger/templates">
+<folder name="default" url="messenger/templates/default">
+<file name="form.tpl" url="messenger/templates/default/form.tpl">
+</file>
+<file name="header.tpl" url="messenger/templates/default/header.tpl">
+</file>
+<file name="inbox.tpl" url="messenger/templates/default/inbox.tpl">
+</file>
+<folder name="images" url="messenger/templates/default/images">
+<file name="delete.gif" url="messenger/templates/default/images/delete.gif">
+</file>
+<file name="delete.png" url="messenger/templates/default/images/delete.png">
+</file>
+<file name="email1.jpg" url="messenger/templates/default/images/email1.jpg">
+</file>
+<file name="email1.jpg.1"
url="messenger/templates/default/images/email1.jpg.1">
+</file>
+<file name="email1a.jpg" url="messenger/templates/default/images/email1a.jpg">
+</file>
+<file name="navbar.gif" url="messenger/templates/default/images/navbar.gif">
+</file>
+<file name="navbar.png" url="messenger/templates/default/images/navbar.png">
+</file>
+</folder>
+</folder>
+<folder name="idots" url="messenger/templates/idots">
+<folder name="images" url="messenger/templates/idots/images">
+<file name="navbar.png" url="messenger/templates/idots/images/navbar.png">
+</file>
+</folder>
+</folder>
+<folder name="idsociety" url="messenger/templates/idsociety">
+<folder name="images" url="messenger/templates/idsociety/images">
+<file name="navbar-over.gif"
url="messenger/templates/idsociety/images/navbar-over.gif">
+</file>
+<file name="navbar-over.png"
url="messenger/templates/idsociety/images/navbar-over.png">
+</file>
+<file name="navbar.gif" url="messenger/templates/idsociety/images/navbar.gif">
+</file>
+<file name="navbar.png" url="messenger/templates/idsociety/images/navbar.png">
+</file>
+</folder>
+</folder>
+</folder>
+</folder>
+<folder name="notes">
+<preference-set id="">
+ <string id="import_dirname">Q:\public_html\phpgw_0_9_16\notes</string>
+</preference-set>
+<file name="index.php" url="notes/index.php">
+</file>
+<file name="TODO" url="notes/TODO">
+</file>
+<folder name="help" url="notes/help">
+<file name="index.php" url="notes/help/index.php">
+</file>
+</folder>
+<folder name="inc" url="notes/inc">
+<file name="class.bonotes.inc.php" url="notes/inc/class.bonotes.inc.php">
+</file>
+<file name="class.sonotes.inc.php" url="notes/inc/class.sonotes.inc.php">
+</file>
+<file name="class.uinotes.inc.php" url="notes/inc/class.uinotes.inc.php">
+</file>
+<file name="hook_about.inc.php" url="notes/inc/hook_about.inc.php">
+</file>
+<file name="hook_add_def_pref.inc.php"
url="notes/inc/hook_add_def_pref.inc.php">
+</file>
+<file name="hook_admin.inc.php" url="notes/inc/hook_admin.inc.php">
+</file>
+<file name="hook_deleteaccount.inc.php"
url="notes/inc/hook_deleteaccount.inc.php">
+</file>
+<file name="hook_manual.inc.php" url="notes/inc/hook_manual.inc.php">
+</file>
+<file name="hook_preferences.inc.php" url="notes/inc/hook_preferences.inc.php">
+</file>
+</folder>
+<folder name="setup" url="notes/setup">
+<file name="phpgw_de.lang" url="notes/setup/phpgw_de.lang">
+</file>
+<file name="phpgw_en.lang" url="notes/setup/phpgw_en.lang">
+</file>
+<file name="phpgw_es.lang" url="notes/setup/phpgw_es.lang">
+</file>
+<file name="phpgw_fi.lang" url="notes/setup/phpgw_fi.lang">
+</file>
+<file name="phpgw_fr.lang" url="notes/setup/phpgw_fr.lang">
+</file>
+<file name="phpgw_it.lang" url="notes/setup/phpgw_it.lang">
+</file>
+<file name="phpgw_ja.lang" url="notes/setup/phpgw_ja.lang">
+</file>
+<file name="phpgw_pl.lang" url="notes/setup/phpgw_pl.lang">
+</file>
+<file name="phpgw_pt.lang" url="notes/setup/phpgw_pt.lang">
+</file>
+<file name="phpgw_sv.lang" url="notes/setup/phpgw_sv.lang">
+</file>
+<file name="setup.inc.php" url="notes/setup/setup.inc.php">
+</file>
+<file name="tables_current.inc.php" url="notes/setup/tables_current.inc.php">
+</file>
+<file name="tables_update.inc.php" url="notes/setup/tables_update.inc.php">
+</file>
+</folder>
+<folder name="templates" url="notes/templates">
+<folder name="default" url="notes/templates/default">
+<file name="delete.tpl" url="notes/templates/default/delete.tpl">
+</file>
+<file name="form.tpl" url="notes/templates/default/form.tpl">
+</file>
+<file name="header.tpl" url="notes/templates/default/header.tpl">
+</file>
+<file name="list.tpl" url="notes/templates/default/list.tpl">
+</file>
+<file name="preference_acl.tpl"
url="notes/templates/default/preference_acl.tpl">
+</file>
+<file name="preference_acl_row.tpl"
url="notes/templates/default/preference_acl_row.tpl">
+</file>
+<file name="preference_colspan.tpl"
url="notes/templates/default/preference_colspan.tpl">
+</file>
+<file name="preferences.tpl" url="notes/templates/default/preferences.tpl">
+</file>
+<file name="view.tpl" url="notes/templates/default/view.tpl">
+</file>
+<folder name="images" url="notes/templates/default/images">
+<file name="navbar.gif" url="notes/templates/default/images/navbar.gif">
+</file>
+<file name="navbar.png" url="notes/templates/default/images/navbar.png">
+</file>
+</folder>
+</folder>
+<folder name="idots" url="notes/templates/idots">
+<folder name="images" url="notes/templates/idots/images">
+<file name="navbar.png" url="notes/templates/idots/images/navbar.png">
+</file>
+</folder>
+</folder>
+<folder name="idsociety" url="notes/templates/idsociety">
+<folder name="images" url="notes/templates/idsociety/images">
+<file name="navbar-over.gif"
url="notes/templates/idsociety/images/navbar-over.gif">
+</file>
+<file name="navbar-over.png"
url="notes/templates/idsociety/images/navbar-over.png">
+</file>
+<file name="navbar.gif" url="notes/templates/idsociety/images/navbar.gif">
+</file>
+<file name="navbar.png" url="notes/templates/idsociety/images/navbar.png">
+</file>
+</folder>
+</folder>
+<folder name="probusiness" url="notes/templates/probusiness">
+<file name="delete.tpl" url="notes/templates/probusiness/delete.tpl">
+</file>
+<file name="form.tpl" url="notes/templates/probusiness/form.tpl">
+</file>
+<file name="header.tpl" url="notes/templates/probusiness/header.tpl">
+</file>
+<file name="list.tpl" url="notes/templates/probusiness/list.tpl">
+</file>
+<file name="preference_acl.tpl"
url="notes/templates/probusiness/preference_acl.tpl">
+</file>
+<file name="preference_acl_row.tpl"
url="notes/templates/probusiness/preference_acl_row.tpl">
+</file>
+<file name="preference_colspan.tpl"
url="notes/templates/probusiness/preference_colspan.tpl">
+</file>
+<file name="preferences.tpl" url="notes/templates/probusiness/preferences.tpl">
+</file>
+<file name="view.tpl" url="notes/templates/probusiness/view.tpl">
+</file>
+<folder name="images" url="notes/templates/probusiness/images">
+<file name="navbar.png" url="notes/templates/probusiness/images/navbar.png">
+</file>
+<file name="folders.png" url="notes/templates/probusiness/images/folders.png">
+</file>
+</folder>
+</folder>
+</folder>
+</folder>
+<folder name="phpgwapi">
+<preference-set id="">
+ <string id="import_dirname">Q:\public_html\phpgw_0_9_16\phpgwapi</string>
+</preference-set>
+<folder name="cron" url="phpgwapi/cron">
+<file name="asyncservices.php" url="phpgwapi/cron/asyncservices.php">
+</file>
+<file name="clean_database.pl" url="phpgwapi/cron/clean_database.pl">
+</file>
+<file name="stalesessions.php" url="phpgwapi/cron/stalesessions.php">
+</file>
+<file name="stalesessions.pl" url="phpgwapi/cron/stalesessions.pl">
+</file>
+</folder>
+<folder name="doc" url="phpgwapi/doc">
+<file name="CHANGELOG" url="phpgwapi/doc/CHANGELOG">
+</file>
+<file name="CREDITS" url="phpgwapi/doc/CREDITS">
+</file>
+<file name="LICENSE" url="phpgwapi/doc/LICENSE">
+</file>
+<file name="README" url="phpgwapi/doc/README">
+</file>
+<file name="SECURITY" url="phpgwapi/doc/SECURITY">
+</file>
+<file name="class.accounts" url="phpgwapi/doc/class.accounts">
+</file>
+<file name="coding_standard.txt" url="phpgwapi/doc/coding_standard.txt">
+</file>
+<file name="create_ramdisk.php.txt" url="phpgwapi/doc/create_ramdisk.php.txt">
+</file>
+<file name="cvs.html" url="phpgwapi/doc/cvs.html">
+</file>
+<file name="etiquette.txt" url="phpgwapi/doc/etiquette.txt">
+</file>
+<file name="index.html" url="phpgwapi/doc/index.html">
+</file>
+<file name="index.lyx" url="phpgwapi/doc/index.lyx">
+</file>
+<file name="index.pdf" url="phpgwapi/doc/index.pdf">
+</file>
+<file name="index.txt" url="phpgwapi/doc/index.txt">
+</file>
+<file name="lang_files.txt" url="phpgwapi/doc/lang_files.txt">
+</file>
+<file name="phpgroupware.spec" url="phpgwapi/doc/phpgroupware.spec">
+</file>
+<file name="phpgw.css" url="phpgwapi/doc/phpgw.css">
+</file>
+<file name="vim.format" url="phpgwapi/doc/vim.format">
+</file>
+<file name="contacts_indicies.sql" url="phpgwapi/doc/contacts_indicies.sql">
+</file>
+<folder name="ldap" url="phpgwapi/doc/ldap">
+<file name="README" url="phpgwapi/doc/ldap/README">
+</file>
+<file name="phpgroupware.schema" url="phpgwapi/doc/ldap/phpgroupware.schema">
+</file>
+<file name="UPDATE" url="phpgwapi/doc/ldap/UPDATE">
+</file>
+<folder name="iplanet" url="phpgwapi/doc/ldap/iplanet">
+<file name="phpgw.at.conf" url="phpgwapi/doc/ldap/iplanet/phpgw.at.conf">
+</file>
+<file name="phpgw.oc.conf" url="phpgwapi/doc/ldap/iplanet/phpgw.oc.conf">
+</file>
+<file name="phpgwcontact.at.conf"
url="phpgwapi/doc/ldap/iplanet/phpgwcontact.at.conf">
+</file>
+<file name="phpgwcontact.oc.conf"
url="phpgwapi/doc/ldap/iplanet/phpgwcontact.oc.conf">
+</file>
+</folder>
+</folder>
+<folder name="vfs" url="phpgwapi/doc/vfs">
+<file name="index.html" url="phpgwapi/doc/vfs/index.html">
+</file>
+<file name="inline2lyx.pl" url="phpgwapi/doc/vfs/inline2lyx.pl">
+</file>
+<file name="vfs-1.html" url="phpgwapi/doc/vfs/vfs-1.html">
+</file>
+<file name="vfs-2.html" url="phpgwapi/doc/vfs/vfs-2.html">
+</file>
+<file name="vfs-3.html" url="phpgwapi/doc/vfs/vfs-3.html">
+</file>
+<file name="vfs-4.html" url="phpgwapi/doc/vfs/vfs-4.html">
+</file>
+<file name="vfs-5.html" url="phpgwapi/doc/vfs/vfs-5.html">
+</file>
+<file name="vfs-6.html" url="phpgwapi/doc/vfs/vfs-6.html">
+</file>
+<file name="vfs-7.html" url="phpgwapi/doc/vfs/vfs-7.html">
+</file>
+<file name="vfs.html" url="phpgwapi/doc/vfs/vfs.html">
+</file>
+<file name="vfs.lyx" url="phpgwapi/doc/vfs/vfs.lyx">
+</file>
+<file name="vfs.sgml" url="phpgwapi/doc/vfs/vfs.sgml">
+</file>
+<file name="vfs.txt" url="phpgwapi/doc/vfs/vfs.txt">
+</file>
+<file name="webdav.txt" url="phpgwapi/doc/vfs/webdav.txt">
+</file>
+</folder>
+<folder name="classes" url="phpgwapi/doc/classes">
+<file name="api_map.html" url="phpgwapi/doc/classes/api_map.html">
+</file>
+<file name="index.html" url="phpgwapi/doc/classes/index.html">
+</file>
+<folder name="argouml" url="phpgwapi/doc/classes/argouml">
+<file name="DOM.zargo" url="phpgwapi/doc/classes/argouml/DOM.zargo">
+</file>
+<file name="admin_color.zargo"
url="phpgwapi/doc/classes/argouml/admin_color.zargo">
+</file>
+<file name="infolog_bw.zargo"
url="phpgwapi/doc/classes/argouml/infolog_bw.zargo">
+</file>
+<file name="phpgwapi.zargo" url="phpgwapi/doc/classes/argouml/phpgwapi.zargo">
+</file>
+<file name="preferences_bw.zargo"
url="phpgwapi/doc/classes/argouml/preferences_bw.zargo">
+</file>
+</folder>
+<folder name="pdf" url="phpgwapi/doc/classes/pdf">
+<file name="DOM1.pdf" url="phpgwapi/doc/classes/pdf/DOM1.pdf">
+</file>
+<file name="ldap_schema.pdf" url="phpgwapi/doc/classes/pdf/ldap_schema.pdf">
+</file>
+<file name="phpgwadmin_large_color.pdf"
url="phpgwapi/doc/classes/pdf/phpgwadmin_large_color.pdf">
+</file>
+<file name="phpgwapi_large_color.pdf"
url="phpgwapi/doc/classes/pdf/phpgwapi_large_color.pdf">
+</file>
+<file name="phpgwapi_small_color.pdf"
url="phpgwapi/doc/classes/pdf/phpgwapi_small_color.pdf">
+</file>
+<file name="phpinfolog_large_bw.pdf"
url="phpgwapi/doc/classes/pdf/phpinfolog_large_bw.pdf">
+</file>
+<file name="phppreferences__bw.pdf"
url="phpgwapi/doc/classes/pdf/phppreferences__bw.pdf">
+</file>
+</folder>
+</folder>
+<folder name="pics" url="phpgwapi/doc/pics">
+<file name="logo.png" url="phpgwapi/doc/pics/logo.png">
+</file>
+</folder>
+<folder name="xmlrpc" url="phpgwapi/doc/xmlrpc">
+<file name="index.html" url="phpgwapi/doc/xmlrpc/index.html">
+</file>
+<file name="new_xmlrpc.txt" url="phpgwapi/doc/xmlrpc/new_xmlrpc.txt">
+</file>
+<file name="perl.txt" url="phpgwapi/doc/xmlrpc/perl.txt">
+</file>
+<file name="phpgw_server-1.html" url="phpgwapi/doc/xmlrpc/phpgw_server-1.html">
+</file>
+<file name="phpgw_server-2.html" url="phpgwapi/doc/xmlrpc/phpgw_server-2.html">
+</file>
+<file name="phpgw_server.dvi" url="phpgwapi/doc/xmlrpc/phpgw_server.dvi">
+</file>
+<file name="phpgw_server.html" url="phpgwapi/doc/xmlrpc/phpgw_server.html">
+</file>
+<file name="phpgw_server.lyx" url="phpgwapi/doc/xmlrpc/phpgw_server.lyx">
+</file>
+<file name="phpgw_server.pdf" url="phpgwapi/doc/xmlrpc/phpgw_server.pdf">
+</file>
+<file name="phpgw_server.ps" url="phpgwapi/doc/xmlrpc/phpgw_server.ps">
+</file>
+<file name="phpgw_server.sgml" url="phpgwapi/doc/xmlrpc/phpgw_server.sgml">
+</file>
+<file name="phpgw_server.txt" url="phpgwapi/doc/xmlrpc/phpgw_server.txt">
+</file>
+<file name="test.py" url="phpgwapi/doc/xmlrpc/test.py">
+</file>
+<file name="new_xmlrpc.html" url="phpgwapi/doc/xmlrpc/new_xmlrpc.html">
+</file>
+</folder>
+<folder name="db-schema" url="phpgwapi/doc/db-schema">
+<file name="index.html" url="phpgwapi/doc/db-schema/index.html">
+</file>
+<folder name="pdf" url="phpgwapi/doc/db-schema/pdf">
+<file name="phpGroupware_pdm_20030620.pdf"
url="phpgwapi/doc/db-schema/pdf/phpGroupware_pdm_20030620.pdf">
+</file>
+<file name="phpgroupware_pdm_20030426.pdf"
url="phpgwapi/doc/db-schema/pdf/phpgroupware_pdm_20030426.pdf">
+</file>
+<file name="phpgroupware_references.pdf"
url="phpgwapi/doc/db-schema/pdf/phpgroupware_references.pdf">
+</file>
+</folder>
+</folder>
+</folder>
+<folder name="inc" url="phpgwapi/inc">
+<file name="class.Template.inc.php" url="phpgwapi/inc/class.Template.inc.php">
+</file>
+<file name="class.Template_experimental.inc.php"
url="phpgwapi/inc/class.Template_experimental.inc.php">
+</file>
+<file name="class.accounts.inc.php" url="phpgwapi/inc/class.accounts.inc.php">
+</file>
+<file name="class.accounts_contacts.inc.php"
url="phpgwapi/inc/class.accounts_contacts.inc.php">
+</file>
+<file name="class.accounts_ldap.inc.php"
url="phpgwapi/inc/class.accounts_ldap.inc.php">
+</file>
+<file name="class.accounts_sql.inc.php"
url="phpgwapi/inc/class.accounts_sql.inc.php">
+</file>
+<file name="class.acl.inc.php" url="phpgwapi/inc/class.acl.inc.php">
+</file>
+<file name="class.applications.inc.php"
url="phpgwapi/inc/class.applications.inc.php">
+</file>
+<file name="class.arrayfunctions.inc.php"
url="phpgwapi/inc/class.arrayfunctions.inc.php">
+</file>
+<file name="class.asyncservice.inc.php"
url="phpgwapi/inc/class.asyncservice.inc.php">
+</file>
+<file name="class.auth.inc.php" url="phpgwapi/inc/class.auth.inc.php">
+</file>
+<file name="class.auth_http.inc.php"
url="phpgwapi/inc/class.auth_http.inc.php">
+</file>
+<file name="class.auth_ldap.inc.php"
url="phpgwapi/inc/class.auth_ldap.inc.php">
+</file>
+<file name="class.auth_mail.inc.php"
url="phpgwapi/inc/class.auth_mail.inc.php">
+</file>
+<file name="class.auth_nis.inc.php" url="phpgwapi/inc/class.auth_nis.inc.php">
+</file>
+<file name="class.auth_sql.inc.php" url="phpgwapi/inc/class.auth_sql.inc.php">
+</file>
+<file name="class.auth_sqlssl.inc.php"
url="phpgwapi/inc/class.auth_sqlssl.inc.php">
+</file>
+<file name="class.bojsaddressbook.inc.php"
url="phpgwapi/inc/class.bojsaddressbook.inc.php">
+</file>
+<file name="class.browser.inc.php" url="phpgwapi/inc/class.browser.inc.php">
+</file>
+<file name="class.categories.inc.php"
url="phpgwapi/inc/class.categories.inc.php">
+</file>
+<file name="class.clientsniffer.inc.php"
url="phpgwapi/inc/class.clientsniffer.inc.php">
+</file>
+<file name="class.common.inc.php" url="phpgwapi/inc/class.common.inc.php">
+</file>
+<file name="class.config.inc.php" url="phpgwapi/inc/class.config.inc.php">
+</file>
+<file name="class.contact_accounts.inc.php"
url="phpgwapi/inc/class.contact_accounts.inc.php">
+</file>
+<file name="class.contact_addr.inc.php"
url="phpgwapi/inc/class.contact_addr.inc.php">
+</file>
+<file name="class.contact_addr_type.inc.php"
url="phpgwapi/inc/class.contact_addr_type.inc.php">
+</file>
+<file name="class.contact_categories.inc.php"
url="phpgwapi/inc/class.contact_categories.inc.php">
+</file>
+<file name="class.contact_central.inc.php"
url="phpgwapi/inc/class.contact_central.inc.php">
+</file>
+<file name="class.contact_comm.inc.php"
url="phpgwapi/inc/class.contact_comm.inc.php">
+</file>
+<file name="class.contact_comm_descr.inc.php"
url="phpgwapi/inc/class.contact_comm_descr.inc.php">
+</file>
+<file name="class.contact_comm_type.inc.php"
url="phpgwapi/inc/class.contact_comm_type.inc.php">
+</file>
+<file name="class.contact_note.inc.php"
url="phpgwapi/inc/class.contact_note.inc.php">
+</file>
+<file name="class.contact_note_type.inc.php"
url="phpgwapi/inc/class.contact_note_type.inc.php">
+</file>
+<file name="class.contact_org.inc.php"
url="phpgwapi/inc/class.contact_org.inc.php">
+</file>
+<file name="class.contact_org_person.inc.php"
url="phpgwapi/inc/class.contact_org_person.inc.php">
+</file>
+<file name="class.contact_others.inc.php"
url="phpgwapi/inc/class.contact_others.inc.php">
+</file>
+<file name="class.contact_person.inc.php"
url="phpgwapi/inc/class.contact_person.inc.php">
+</file>
+<file name="class.contact_types.inc.php"
url="phpgwapi/inc/class.contact_types.inc.php">
+</file>
+<file name="class.contacts.inc.php" url="phpgwapi/inc/class.contacts.inc.php">
+</file>
+<file name="class.contacts_ldap.inc.php"
url="phpgwapi/inc/class.contacts_ldap.inc.php">
+</file>
+<file name="class.contacts_shared.inc.php"
url="phpgwapi/inc/class.contacts_shared.inc.php">
+</file>
+<file name="class.contacts_sql.inc.php"
url="phpgwapi/inc/class.contacts_sql.inc.php">
+</file>
+<file name="class.country.inc.php" url="phpgwapi/inc/class.country.inc.php">
+</file>
+<file name="class.crypto.inc.php" url="phpgwapi/inc/class.crypto.inc.php">
+</file>
+<file name="class.datetime.inc.php" url="phpgwapi/inc/class.datetime.inc.php">
+</file>
+<file name="class.db.inc.php" url="phpgwapi/inc/class.db.inc.php">
+</file>
+<file name="class.db_msql.inc.php" url="phpgwapi/inc/class.db_msql.inc.php">
+</file>
+<file name="class.db_mssql.inc.php" url="phpgwapi/inc/class.db_mssql.inc.php">
+</file>
+<file name="class.db_mysql.inc.php" url="phpgwapi/inc/class.db_mysql.inc.php">
+</file>
+<file name="class.db_odbc.inc.php" url="phpgwapi/inc/class.db_odbc.inc.php">
+</file>
+<file name="class.db_oracle.inc.php"
url="phpgwapi/inc/class.db_oracle.inc.php">
+</file>
+<file name="class.db_pgsql.inc.php" url="phpgwapi/inc/class.db_pgsql.inc.php">
+</file>
+<file name="class.db_sapdb.inc.php" url="phpgwapi/inc/class.db_sapdb.inc.php">
+</file>
+<file name="class.db_sybase.inc.php"
url="phpgwapi/inc/class.db_sybase.inc.php">
+</file>
+<file name="class.error.inc.php" url="phpgwapi/inc/class.error.inc.php">
+</file>
+<file name="class.errorlog.inc.php" url="phpgwapi/inc/class.errorlog.inc.php">
+</file>
+<file name="class.graphics.inc.php" url="phpgwapi/inc/class.graphics.inc.php">
+</file>
+<file name="class.historylog.inc.php"
url="phpgwapi/inc/class.historylog.inc.php">
+</file>
+<file name="class.hooks.inc.php" url="phpgwapi/inc/class.hooks.inc.php">
+</file>
+<file name="class.http.inc.php" url="phpgwapi/inc/class.http.inc.php">
+</file>
+<file name="class.http_dav_client.inc.php"
url="phpgwapi/inc/class.http_dav_client.inc.php">
+</file>
+<file name="class.interserver.inc.php"
url="phpgwapi/inc/class.interserver.inc.php">
+</file>
+<file name="class.javascript.inc.php"
url="phpgwapi/inc/class.javascript.inc.php">
+</file>
+<file name="class.jscalendar.inc.php"
url="phpgwapi/inc/class.jscalendar.inc.php">
+</file>
+<file name="class.listbox.inc.php" url="phpgwapi/inc/class.listbox.inc.php">
+</file>
+<file name="class.log.inc.php" url="phpgwapi/inc/class.log.inc.php">
+</file>
+<file name="class.log_message.inc.php"
url="phpgwapi/inc/class.log_message.inc.php">
+</file>
+<file name="class.matrixview.inc.php"
url="phpgwapi/inc/class.matrixview.inc.php">
+</file>
+<file name="class.menutree.inc.php" url="phpgwapi/inc/class.menutree.inc.php">
+</file>
+<file name="class.mime_magic.inc.php"
url="phpgwapi/inc/class.mime_magic.inc.php">
+</file>
+<file name="class.net_http_client.inc.php"
url="phpgwapi/inc/class.net_http_client.inc.php">
+</file>
+<file name="class.network.inc.php" url="phpgwapi/inc/class.network.inc.php">
+</file>
+<file name="class.nextmatchs.inc.php"
url="phpgwapi/inc/class.nextmatchs.inc.php">
+</file>
+<file name="class.phpgw.inc.php" url="phpgwapi/inc/class.phpgw.inc.php">
+</file>
+<file name="class.ping.inc.php" url="phpgwapi/inc/class.ping.inc.php">
+</file>
+<file name="class.portalbox.inc.php"
url="phpgwapi/inc/class.portalbox.inc.php">
+</file>
+<file name="class.preferences.inc.php"
url="phpgwapi/inc/class.preferences.inc.php">
+</file>
+<file name="class.resultbox.inc.php"
url="phpgwapi/inc/class.resultbox.inc.php">
+</file>
+<file name="class.rssparser.inc.php"
url="phpgwapi/inc/class.rssparser.inc.php">
+</file>
+<file name="class.sbox.inc.php" url="phpgwapi/inc/class.sbox.inc.php">
+</file>
+<file name="class.sbox2.inc.php" url="phpgwapi/inc/class.sbox2.inc.php">
+</file>
+<file name="class.schema_proc.inc.php"
url="phpgwapi/inc/class.schema_proc.inc.php">
+</file>
+<file name="class.schema_proc_array.inc.php"
url="phpgwapi/inc/class.schema_proc_array.inc.php">
+</file>
+<file name="class.schema_proc_mssql.inc.php"
url="phpgwapi/inc/class.schema_proc_mssql.inc.php">
+</file>
+<file name="class.schema_proc_mysql.inc.php"
url="phpgwapi/inc/class.schema_proc_mysql.inc.php">
+</file>
+<file name="class.schema_proc_pgsql.inc.php"
url="phpgwapi/inc/class.schema_proc_pgsql.inc.php">
+</file>
+<file name="class.schema_proc_sapdb.inc.php"
url="phpgwapi/inc/class.schema_proc_sapdb.inc.php">
+</file>
+<file name="class.send.inc.php" url="phpgwapi/inc/class.send.inc.php">
+</file>
+<file name="class.service.inc.php" url="phpgwapi/inc/class.service.inc.php">
+</file>
+<file name="class.service_contacts.inc.php"
url="phpgwapi/inc/class.service_contacts.inc.php">
+</file>
+<file name="class.service_notes.inc.php"
url="phpgwapi/inc/class.service_notes.inc.php">
+</file>
+<file name="class.service_schedule.inc.php"
url="phpgwapi/inc/class.service_schedule.inc.php">
+</file>
+<file name="class.sessions.inc.php" url="phpgwapi/inc/class.sessions.inc.php">
+</file>
+<file name="class.sessions_db.inc.php"
url="phpgwapi/inc/class.sessions_db.inc.php">
+</file>
+<file name="class.sessions_php4.inc.php"
url="phpgwapi/inc/class.sessions_php4.inc.php">
+</file>
+<file name="class.setup.inc.php" url="phpgwapi/inc/class.setup.inc.php">
+</file>
+<file name="class.setup_detection.inc.php"
url="phpgwapi/inc/class.setup_detection.inc.php">
+</file>
+<file name="class.setup_html.inc.php"
url="phpgwapi/inc/class.setup_html.inc.php">
+</file>
+<file name="class.setup_process.inc.php"
url="phpgwapi/inc/class.setup_process.inc.php">
+</file>
+<file name="class.setup_translation.inc.php"
url="phpgwapi/inc/class.setup_translation.inc.php">
+</file>
+<file name="class.soap_client.inc.php"
url="phpgwapi/inc/class.soap_client.inc.php">
+</file>
+<file name="class.soap_parser.inc.php"
url="phpgwapi/inc/class.soap_parser.inc.php">
+</file>
+<file name="class.soap_server.inc.php"
url="phpgwapi/inc/class.soap_server.inc.php">
+</file>
+<file name="class.soapclient.inc.php"
url="phpgwapi/inc/class.soapclient.inc.php">
+</file>
+<file name="class.soapmsg.inc.php" url="phpgwapi/inc/class.soapmsg.inc.php">
+</file>
+<file name="class.soapval.inc.php" url="phpgwapi/inc/class.soapval.inc.php">
+</file>
+<file name="class.sql.inc.php" url="phpgwapi/inc/class.sql.inc.php">
+</file>
+<file name="class.sql_builder.inc.php"
url="phpgwapi/inc/class.sql_builder.inc.php">
+</file>
+<file name="class.sql_criteria.inc.php"
url="phpgwapi/inc/class.sql_criteria.inc.php">
+</file>
+<file name="class.sql_entity.inc.php"
url="phpgwapi/inc/class.sql_entity.inc.php">
+</file>
+<file name="class.sql_mssql.inc.php"
url="phpgwapi/inc/class.sql_mssql.inc.php">
+</file>
+<file name="class.sql_mysql.inc.php"
url="phpgwapi/inc/class.sql_mysql.inc.php">
+</file>
+<file name="class.sql_pgsql.inc.php"
url="phpgwapi/inc/class.sql_pgsql.inc.php">
+</file>
+<file name="class.sql_sapdb.inc.php"
url="phpgwapi/inc/class.sql_sapdb.inc.php">
+</file>
+<file name="class.translation.inc.php"
url="phpgwapi/inc/class.translation.inc.php">
+</file>
+<file name="class.translation_sql.inc.php"
url="phpgwapi/inc/class.translation_sql.inc.php">
+</file>
+<file name="class.uijsaddressbook.inc.php"
url="phpgwapi/inc/class.uijsaddressbook.inc.php">
+</file>
+<file name="class.utilities.inc.php"
url="phpgwapi/inc/class.utilities.inc.php">
+</file>
+<file name="class.validator.inc.php"
url="phpgwapi/inc/class.validator.inc.php">
+</file>
+<file name="class.vcard.inc.php" url="phpgwapi/inc/class.vcard.inc.php">
+</file>
+<file name="class.vfs.inc.php" url="phpgwapi/inc/class.vfs.inc.php">
+</file>
+<file name="class.vfs_dav.inc.php" url="phpgwapi/inc/class.vfs_dav.inc.php">
+</file>
+<file name="class.vfs_shared.inc.php"
url="phpgwapi/inc/class.vfs_shared.inc.php">
+</file>
+<file name="class.vfs_sql.inc.php" url="phpgwapi/inc/class.vfs_sql.inc.php">
+</file>
+<file name="class.wsdl.inc.php" url="phpgwapi/inc/class.wsdl.inc.php">
+</file>
+<file name="class.xml.inc.php" url="phpgwapi/inc/class.xml.inc.php">
+</file>
+<file name="class.xmlrpc_client.inc.php"
url="phpgwapi/inc/class.xmlrpc_client.inc.php">
+</file>
+<file name="class.xmlrpc_server.inc.php"
url="phpgwapi/inc/class.xmlrpc_server.inc.php">
+</file>
+<file name="class.xmlrpcmsg.inc.php"
url="phpgwapi/inc/class.xmlrpcmsg.inc.php">
+</file>
+<file name="class.xmlrpcresp.inc.php"
url="phpgwapi/inc/class.xmlrpcresp.inc.php">
+</file>
+<file name="class.xmlrpcval.inc.php"
url="phpgwapi/inc/class.xmlrpcval.inc.php">
+</file>
+<file name="common_functions.inc.php"
url="phpgwapi/inc/common_functions.inc.php">
+</file>
+<file name="footer.inc.php" url="phpgwapi/inc/footer.inc.php">
+</file>
+<file name="functions.inc.php" url="phpgwapi/inc/functions.inc.php">
+</file>
+<file name="log_functions.inc.php" url="phpgwapi/inc/log_functions.inc.php">
+</file>
+<file name="php3_support_functions.inc.php"
url="phpgwapi/inc/php3_support_functions.inc.php">
+</file>
+<file name="phpgw_mime.types" url="phpgwapi/inc/phpgw_mime.types">
+</file>
+<file name="soap_functions.inc.php" url="phpgwapi/inc/soap_functions.inc.php">
+</file>
+<file name="soaplib.soapinterop.php"
url="phpgwapi/inc/soaplib.soapinterop.php">
+</file>
+<file name="xml_functions.inc.php" url="phpgwapi/inc/xml_functions.inc.php">
+</file>
+<file name="xmlrpc.interop.php" url="phpgwapi/inc/xmlrpc.interop.php">
+</file>
+<file name="class.db_mssql.inc.php.orig"
url="phpgwapi/inc/class.db_mssql.inc.php.orig">
+</file>
+<file name="class.ipc_.inc.php" url="phpgwapi/inc/class.ipc_.inc.php">
+</file>
+<file name="class.ipc_manager.inc.php"
url="phpgwapi/inc/class.ipc_manager.inc.php">
+</file>
+</folder>
+<folder name="js" url="phpgwapi/js">
+<folder name="contacts" url="phpgwapi/js/contacts">
+<file name="selectboxes.js" url="phpgwapi/js/contacts/selectboxes.js">
+</file>
+</folder>
+<folder name="jscalendar" url="phpgwapi/js/jscalendar">
+<file name="README-phpGW" url="phpgwapi/js/jscalendar/README-phpGW">
+</file>
+<file name="README" url="phpgwapi/js/jscalendar/README">
+</file>
+<file name="bugtest-hidden-selects.html"
url="phpgwapi/js/jscalendar/bugtest-hidden-selects.html">
+</file>
+<file name="calendar-blue.css" url="phpgwapi/js/jscalendar/calendar-blue.css">
+</file>
+<file name="calendar-brown.css"
url="phpgwapi/js/jscalendar/calendar-brown.css">
+</file>
+<file name="calendar-green.css"
url="phpgwapi/js/jscalendar/calendar-green.css">
+</file>
+<file name="calendar-setup.js" url="phpgwapi/js/jscalendar/calendar-setup.js">
+</file>
+<file name="calendar-setup_stripped.js"
url="phpgwapi/js/jscalendar/calendar-setup_stripped.js">
+</file>
+<file name="calendar-system.css"
url="phpgwapi/js/jscalendar/calendar-system.css">
+</file>
+<file name="calendar-win2k-1.css"
url="phpgwapi/js/jscalendar/calendar-win2k-1.css">
+</file>
+<file name="calendar-win2k-2.css"
url="phpgwapi/js/jscalendar/calendar-win2k-2.css">
+</file>
+<file name="calendar-win2k-cold-1.css"
url="phpgwapi/js/jscalendar/calendar-win2k-cold-1.css">
+</file>
+<file name="calendar-win2k-cold-2.css"
url="phpgwapi/js/jscalendar/calendar-win2k-cold-2.css">
+</file>
+<file name="calendar.js" url="phpgwapi/js/jscalendar/calendar.js">
+</file>
+<file name="calendar_stripped.js"
url="phpgwapi/js/jscalendar/calendar_stripped.js">
+</file>
+<file name="index.html" url="phpgwapi/js/jscalendar/index.html">
+</file>
+<file name="jscalendar-setup.php"
url="phpgwapi/js/jscalendar/jscalendar-setup.php">
+</file>
+<file name="menuarrow.gif" url="phpgwapi/js/jscalendar/menuarrow.gif">
+</file>
+<file name="release-notes.html"
url="phpgwapi/js/jscalendar/release-notes.html">
+</file>
+<file name="simple-1.html" url="phpgwapi/js/jscalendar/simple-1.html">
+</file>
+<file name="simple-2.html" url="phpgwapi/js/jscalendar/simple-2.html">
+</file>
+<file name="simple-3.html" url="phpgwapi/js/jscalendar/simple-3.html">
+</file>
+<file name="simple-4.html" url="phpgwapi/js/jscalendar/simple-4.html">
+</file>
+<folder name="doc" url="phpgwapi/js/jscalendar/doc">
+<file name="reference.pdf" url="phpgwapi/js/jscalendar/doc/reference.pdf">
+</file>
+<folder name="html" url="phpgwapi/js/jscalendar/doc/html">
+<file name="reference-Z-S.css"
url="phpgwapi/js/jscalendar/doc/html/reference-Z-S.css">
+</file>
+<file name="reference.css" url="phpgwapi/js/jscalendar/doc/html/reference.css">
+</file>
+<file name="reference.html"
url="phpgwapi/js/jscalendar/doc/html/reference.html">
+</file>
+</folder>
+</folder>
+<folder name="lang" url="phpgwapi/js/jscalendar/lang">
+<file name="README" url="phpgwapi/js/jscalendar/lang/README">
+</file>
+<file name="calendar-af.js" url="phpgwapi/js/jscalendar/lang/calendar-af.js">
+</file>
+<file name="calendar-br.js" url="phpgwapi/js/jscalendar/lang/calendar-br.js">
+</file>
+<file name="calendar-ca.js" url="phpgwapi/js/jscalendar/lang/calendar-ca.js">
+</file>
+<file name="calendar-cs-win.js"
url="phpgwapi/js/jscalendar/lang/calendar-cs-win.js">
+</file>
+<file name="calendar-da.js" url="phpgwapi/js/jscalendar/lang/calendar-da.js">
+</file>
+<file name="calendar-de.js" url="phpgwapi/js/jscalendar/lang/calendar-de.js">
+</file>
+<file name="calendar-du.js" url="phpgwapi/js/jscalendar/lang/calendar-du.js">
+</file>
+<file name="calendar-el.js" url="phpgwapi/js/jscalendar/lang/calendar-el.js">
+</file>
+<file name="calendar-en.js" url="phpgwapi/js/jscalendar/lang/calendar-en.js">
+</file>
+<file name="calendar-es.js" url="phpgwapi/js/jscalendar/lang/calendar-es.js">
+</file>
+<file name="calendar-fr.js" url="phpgwapi/js/jscalendar/lang/calendar-fr.js">
+</file>
+<file name="calendar-hr-utf8.js"
url="phpgwapi/js/jscalendar/lang/calendar-hr-utf8.js">
+</file>
+<file name="calendar-hr.js" url="phpgwapi/js/jscalendar/lang/calendar-hr.js">
+</file>
+<file name="calendar-hu.js" url="phpgwapi/js/jscalendar/lang/calendar-hu.js">
+</file>
+<file name="calendar-it.js" url="phpgwapi/js/jscalendar/lang/calendar-it.js">
+</file>
+<file name="calendar-jp.js" url="phpgwapi/js/jscalendar/lang/calendar-jp.js">
+</file>
+<file name="calendar-nl.js" url="phpgwapi/js/jscalendar/lang/calendar-nl.js">
+</file>
+<file name="calendar-no.js" url="phpgwapi/js/jscalendar/lang/calendar-no.js">
+</file>
+<file name="calendar-pl.js" url="phpgwapi/js/jscalendar/lang/calendar-pl.js">
+</file>
+<file name="calendar-pt.js" url="phpgwapi/js/jscalendar/lang/calendar-pt.js">
+</file>
+<file name="calendar-ro.js" url="phpgwapi/js/jscalendar/lang/calendar-ro.js">
+</file>
+<file name="calendar-ru.js" url="phpgwapi/js/jscalendar/lang/calendar-ru.js">
+</file>
+<file name="calendar-sk.js" url="phpgwapi/js/jscalendar/lang/calendar-sk.js">
+</file>
+<file name="calendar-sp.js" url="phpgwapi/js/jscalendar/lang/calendar-sp.js">
+</file>
+<file name="calendar-sv.js" url="phpgwapi/js/jscalendar/lang/calendar-sv.js">
+</file>
+<file name="calendar-tr.js" url="phpgwapi/js/jscalendar/lang/calendar-tr.js">
+</file>
+<file name="calendar-zh.js" url="phpgwapi/js/jscalendar/lang/calendar-zh.js">
+</file>
+</folder>
+</folder>
+</folder>
+<folder name="setup" url="phpgwapi/setup">
+<file name="default_records.inc.php"
url="phpgwapi/setup/default_records.inc.php">
+</file>
+<file name="phpgw_br.lang" url="phpgwapi/setup/phpgw_br.lang">
+</file>
+<file name="phpgw_cs.lang" url="phpgwapi/setup/phpgw_cs.lang">
+</file>
+<file name="phpgw_da.lang" url="phpgwapi/setup/phpgw_da.lang">
+</file>
+<file name="phpgw_de.lang" url="phpgwapi/setup/phpgw_de.lang">
+</file>
+<file name="phpgw_en.lang" url="phpgwapi/setup/phpgw_en.lang">
+</file>
+<file name="phpgw_es.lang" url="phpgwapi/setup/phpgw_es.lang">
+</file>
+<file name="phpgw_fi.lang" url="phpgwapi/setup/phpgw_fi.lang">
+</file>
+<file name="phpgw_fr.lang" url="phpgwapi/setup/phpgw_fr.lang">
+</file>
+<file name="phpgw_hu.lang" url="phpgwapi/setup/phpgw_hu.lang">
+</file>
+<file name="phpgw_it.lang" url="phpgwapi/setup/phpgw_it.lang">
+</file>
+<file name="phpgw_ja.lang" url="phpgwapi/setup/phpgw_ja.lang">
+</file>
+<file name="phpgw_ko.lang" url="phpgwapi/setup/phpgw_ko.lang">
+</file>
+<file name="phpgw_nl.lang" url="phpgwapi/setup/phpgw_nl.lang">
+</file>
+<file name="phpgw_no.lang" url="phpgwapi/setup/phpgw_no.lang">
+</file>
+<file name="phpgw_pl.lang" url="phpgwapi/setup/phpgw_pl.lang">
+</file>
+<file name="phpgw_pt.lang" url="phpgwapi/setup/phpgw_pt.lang">
+</file>
+<file name="phpgw_sv.lang" url="phpgwapi/setup/phpgw_sv.lang">
+</file>
+<file name="phpgw_zt.lang" url="phpgwapi/setup/phpgw_zt.lang">
+</file>
+<file name="setup.inc.php" url="phpgwapi/setup/setup.inc.php">
+</file>
+<file name="tables_baseline.inc.php"
url="phpgwapi/setup/tables_baseline.inc.php">
+</file>
+<file name="tables_current.inc.php"
url="phpgwapi/setup/tables_current.inc.php">
+</file>
+<file name="tables_update.inc.php" url="phpgwapi/setup/tables_update.inc.php">
+</file>
+<file name="test_data.inc.php" url="phpgwapi/setup/test_data.inc.php">
+</file>
+<file name="phpgw_zh.lang" url="phpgwapi/setup/phpgw_zh.lang">
+</file>
+</folder>
+<folder name="templates" url="phpgwapi/templates">
+<folder name="default" url="phpgwapi/templates/default">
+<file name="about.tpl" url="phpgwapi/templates/default/about.tpl">
+</file>
+<file name="about_unknown.tpl"
url="phpgwapi/templates/default/about_unknown.tpl">
+</file>
+<file name="accounts_popup.tpl"
url="phpgwapi/templates/default/accounts_popup.tpl">
+</file>
+<file name="addressbook-js-bits.tpl"
url="phpgwapi/templates/default/addressbook-js-bits.tpl">
+</file>
+<file name="addressbook-js-frameset.tpl"
url="phpgwapi/templates/default/addressbook-js-frameset.tpl">
+</file>
+<file name="addressbook-js-smaller.tpl"
url="phpgwapi/templates/default/addressbook-js-smaller.tpl">
+</file>
+<file name="addressbook-js.tpl"
url="phpgwapi/templates/default/addressbook-js.tpl">
+</file>
+<file name="config.tpl" url="phpgwapi/templates/default/config.tpl">
+</file>
+<file name="css.tpl" url="phpgwapi/templates/default/css.tpl">
+</file>
+<file name="footer.tpl" url="phpgwapi/templates/default/footer.tpl">
+</file>
+<file name="frames.tpl" url="phpgwapi/templates/default/frames.tpl">
+</file>
+<file name="frames_body.tpl" url="phpgwapi/templates/default/frames_body.tpl">
+</file>
+<file name="frames_navbar.tpl"
url="phpgwapi/templates/default/frames_navbar.tpl">
+</file>
+<file name="head.inc.php" url="phpgwapi/templates/default/head.inc.php">
+</file>
+<file name="head.tpl" url="phpgwapi/templates/default/head.tpl">
+</file>
+<file name="history_list.tpl"
url="phpgwapi/templates/default/history_list.tpl">
+</file>
+<file name="login.tpl" url="phpgwapi/templates/default/login.tpl">
+</file>
+<file name="login_denylogin.tpl"
url="phpgwapi/templates/default/login_denylogin.tpl">
+</file>
+<file name="login_selectdomain.tpl"
url="phpgwapi/templates/default/login_selectdomain.tpl">
+</file>
+<file name="navbar.inc.php" url="phpgwapi/templates/default/navbar.inc.php">
+</file>
+<file name="navbar.tpl" url="phpgwapi/templates/default/navbar.tpl">
+</file>
+<file name="navbar_app.tpl" url="phpgwapi/templates/default/navbar_app.tpl">
+</file>
+<file name="nextmatchs.tpl" url="phpgwapi/templates/default/nextmatchs.tpl">
+</file>
+<file name="portal.tpl" url="phpgwapi/templates/default/portal.tpl">
+</file>
+<file name="portal_linkbox.tpl"
url="phpgwapi/templates/default/portal_linkbox.tpl">
+</file>
+<file name="portal_linkbox_footer.tpl"
url="phpgwapi/templates/default/portal_linkbox_footer.tpl">
+</file>
+<file name="portal_linkbox_header.tpl"
url="phpgwapi/templates/default/portal_linkbox_header.tpl">
+</file>
+<file name="portal_main.tpl" url="phpgwapi/templates/default/portal_main.tpl">
+</file>
+<folder name="images" url="phpgwapi/templates/default/images">
+<file name="about.gif" url="phpgwapi/templates/default/images/about.gif">
+</file>
+<file name="about.png" url="phpgwapi/templates/default/images/about.png">
+</file>
+<file name="attach.gif" url="phpgwapi/templates/default/images/attach.gif">
+</file>
+<file name="attach.png" url="phpgwapi/templates/default/images/attach.png">
+</file>
+<file name="bar-10.jpg" url="phpgwapi/templates/default/images/bar-10.jpg">
+</file>
+<file name="bg_filler.gif"
url="phpgwapi/templates/default/images/bg_filler.gif">
+</file>
+<file name="bg_filler.png"
url="phpgwapi/templates/default/images/bg_filler.png">
+</file>
+<file name="cal.gif" url="phpgwapi/templates/default/images/cal.gif">
+</file>
+<file name="cal.png" url="phpgwapi/templates/default/images/cal.png">
+</file>
+<file name="close.button.gif"
url="phpgwapi/templates/default/images/close.button.gif">
+</file>
+<file name="close.button.png"
url="phpgwapi/templates/default/images/close.button.png">
+</file>
+<file name="down.button.gif"
url="phpgwapi/templates/default/images/down.button.gif">
+</file>
+<file name="down.button.png"
url="phpgwapi/templates/default/images/down.button.png">
+</file>
+<file name="down.gif" url="phpgwapi/templates/default/images/down.gif">
+</file>
+<file name="down.png" url="phpgwapi/templates/default/images/down.png">
+</file>
+<file name="edit.button.gif"
url="phpgwapi/templates/default/images/edit.button.gif">
+</file>
+<file name="edit.button.png"
url="phpgwapi/templates/default/images/edit.button.png">
+</file>
+<file name="favicon.ico" url="phpgwapi/templates/default/images/favicon.ico">
+</file>
+<file name="first-grey.gif"
url="phpgwapi/templates/default/images/first-grey.gif">
+</file>
+<file name="first-grey.png"
url="phpgwapi/templates/default/images/first-grey.png">
+</file>
+<file name="first.gif" url="phpgwapi/templates/default/images/first.gif">
+</file>
+<file name="first.png" url="phpgwapi/templates/default/images/first.png">
+</file>
+<file name="grauer_pfeil.gif"
url="phpgwapi/templates/default/images/grauer_pfeil.gif">
+</file>
+<file name="grauer_pfeil.png"
url="phpgwapi/templates/default/images/grauer_pfeil.png">
+</file>
+<file name="home.gif" url="phpgwapi/templates/default/images/home.gif">
+</file>
+<file name="home.png" url="phpgwapi/templates/default/images/home.png">
+</file>
+<file name="last-grey.gif"
url="phpgwapi/templates/default/images/last-grey.gif">
+</file>
+<file name="last-grey.png"
url="phpgwapi/templates/default/images/last-grey.png">
+</file>
+<file name="last.gif" url="phpgwapi/templates/default/images/last.gif">
+</file>
+<file name="last.png" url="phpgwapi/templates/default/images/last.png">
+</file>
+<file name="left-grey.gif"
url="phpgwapi/templates/default/images/left-grey.gif">
+</file>
+<file name="left-grey.png"
url="phpgwapi/templates/default/images/left-grey.png">
+</file>
+<file name="left.gif" url="phpgwapi/templates/default/images/left.gif">
+</file>
+<file name="left.png" url="phpgwapi/templates/default/images/left.png">
+</file>
+<file name="logo.gif" url="phpgwapi/templates/default/images/logo.gif">
+</file>
+<file name="logo.png" url="phpgwapi/templates/default/images/logo.png">
+</file>
+<file name="logout.gif" url="phpgwapi/templates/default/images/logout.gif">
+</file>
+<file name="logout.png" url="phpgwapi/templates/default/images/logout.png">
+</file>
+<file name="navbar_filler.jpg"
url="phpgwapi/templates/default/images/navbar_filler.jpg">
+</file>
+<file name="nonav.gif" url="phpgwapi/templates/default/images/nonav.gif">
+</file>
+<file name="nonav.png" url="phpgwapi/templates/default/images/nonav.png">
+</file>
+<file name="print.gif" url="phpgwapi/templates/default/images/print.gif">
+</file>
+<file name="print.png" url="phpgwapi/templates/default/images/print.png">
+</file>
+<file name="question.button.gif"
url="phpgwapi/templates/default/images/question.button.gif">
+</file>
+<file name="question.button.png"
url="phpgwapi/templates/default/images/question.button.png">
+</file>
+<file name="right-grey.gif"
url="phpgwapi/templates/default/images/right-grey.gif">
+</file>
+<file name="right-grey.png"
url="phpgwapi/templates/default/images/right-grey.png">
+</file>
+<file name="right.gif" url="phpgwapi/templates/default/images/right.gif">
+</file>
+<file name="right.png" url="phpgwapi/templates/default/images/right.png">
+</file>
+<file name="roter_pfeil.gif"
url="phpgwapi/templates/default/images/roter_pfeil.gif">
+</file>
+<file name="roter_pfeil.png"
url="phpgwapi/templates/default/images/roter_pfeil.png">
+</file>
+<file name="select.png" url="phpgwapi/templates/default/images/select.png">
+</file>
+<file name="tabs-bg0.gif" url="phpgwapi/templates/default/images/tabs-bg0.gif">
+</file>
+<file name="tabs-bg0.png" url="phpgwapi/templates/default/images/tabs-bg0.png">
+</file>
+<file name="tabs-bg1.gif" url="phpgwapi/templates/default/images/tabs-bg1.gif">
+</file>
+<file name="tabs-bg1.png" url="phpgwapi/templates/default/images/tabs-bg1.png">
+</file>
+<file name="tabs-end0.gif"
url="phpgwapi/templates/default/images/tabs-end0.gif">
+</file>
+<file name="tabs-end0.png"
url="phpgwapi/templates/default/images/tabs-end0.png">
+</file>
+<file name="tabs-end1.gif"
url="phpgwapi/templates/default/images/tabs-end1.gif">
+</file>
+<file name="tabs-end1.png"
url="phpgwapi/templates/default/images/tabs-end1.png">
+</file>
+<file name="tabs-ext.gif" url="phpgwapi/templates/default/images/tabs-ext.gif">
+</file>
+<file name="tabs-ext.png" url="phpgwapi/templates/default/images/tabs-ext.png">
+</file>
+<file name="tabs-l0.gif" url="phpgwapi/templates/default/images/tabs-l0.gif">
+</file>
+<file name="tabs-l0.png" url="phpgwapi/templates/default/images/tabs-l0.png">
+</file>
+<file name="tabs-l1.gif" url="phpgwapi/templates/default/images/tabs-l1.gif">
+</file>
+<file name="tabs-l1.png" url="phpgwapi/templates/default/images/tabs-l1.png">
+</file>
+<file name="tabs-r0.gif" url="phpgwapi/templates/default/images/tabs-r0.gif">
+</file>
+<file name="tabs-r0.png" url="phpgwapi/templates/default/images/tabs-r0.png">
+</file>
+<file name="tabs-r1.gif" url="phpgwapi/templates/default/images/tabs-r1.gif">
+</file>
+<file name="tabs-r1.png" url="phpgwapi/templates/default/images/tabs-r1.png">
+</file>
+<file name="tabs-sepl.gif"
url="phpgwapi/templates/default/images/tabs-sepl.gif">
+</file>
+<file name="tabs-sepl.png"
url="phpgwapi/templates/default/images/tabs-sepl.png">
+</file>
+<file name="tabs-sepm.gif"
url="phpgwapi/templates/default/images/tabs-sepm.gif">
+</file>
+<file name="tabs-sepm.png"
url="phpgwapi/templates/default/images/tabs-sepm.png">
+</file>
+<file name="tabs-sepr.gif"
url="phpgwapi/templates/default/images/tabs-sepr.gif">
+</file>
+<file name="tabs-sepr.png"
url="phpgwapi/templates/default/images/tabs-sepr.png">
+</file>
+<file name="tabs-start0.gif"
url="phpgwapi/templates/default/images/tabs-start0.gif">
+</file>
+<file name="tabs-start0.png"
url="phpgwapi/templates/default/images/tabs-start0.png">
+</file>
+<file name="tabs-start1.gif"
url="phpgwapi/templates/default/images/tabs-start1.gif">
+</file>
+<file name="tabs-start1.png"
url="phpgwapi/templates/default/images/tabs-start1.png">
+</file>
+<file name="up.button.gif"
url="phpgwapi/templates/default/images/up.button.gif">
+</file>
+<file name="up.button.png"
url="phpgwapi/templates/default/images/up.button.png">
+</file>
+<file name="up.gif" url="phpgwapi/templates/default/images/up.gif">
+</file>
+<file name="up.png" url="phpgwapi/templates/default/images/up.png">
+</file>
+<file name="delete.png" url="phpgwapi/templates/default/images/delete.png">
+</file>
+<file name="edit.png" url="phpgwapi/templates/default/images/edit.png">
+</file>
+<file name="new.png" url="phpgwapi/templates/default/images/new.png">
+</file>
+<file name="view.png" url="phpgwapi/templates/default/images/view.png">
+</file>
+<file name="users.png" url="phpgwapi/templates/default/images/users.png">
+</file>
+<file name="wait.png" url="phpgwapi/templates/default/images/wait.png">
+</file>
+</folder>
+</folder>
+<folder name="desktop" url="phpgwapi/templates/desktop">
+<file name="about.tpl" url="phpgwapi/templates/desktop/about.tpl">
+</file>
+<file name="about_unknown.tpl"
url="phpgwapi/templates/desktop/about_unknown.tpl">
+</file>
+<file name="css.tpl" url="phpgwapi/templates/desktop/css.tpl">
+</file>
+<file name="dhtmldesktop.html"
url="phpgwapi/templates/desktop/dhtmldesktop.html">
+</file>
+<file name="footer.tpl" url="phpgwapi/templates/desktop/footer.tpl">
+</file>
+<file name="footer_iframe.tpl"
url="phpgwapi/templates/desktop/footer_iframe.tpl">
+</file>
+<file name="head.inc.php" url="phpgwapi/templates/desktop/head.inc.php">
+</file>
+<file name="head.tpl" url="phpgwapi/templates/desktop/head.tpl">
+</file>
+<file name="head_iframe.tpl" url="phpgwapi/templates/desktop/head_iframe.tpl">
+</file>
+<file name="login.tpl" url="phpgwapi/templates/desktop/login.tpl">
+</file>
+<file name="login_denylogin.tpl"
url="phpgwapi/templates/desktop/login_denylogin.tpl">
+</file>
+<file name="login_selectdomain.tpl"
url="phpgwapi/templates/desktop/login_selectdomain.tpl">
+</file>
+<file name="navbar.inc.php" url="phpgwapi/templates/desktop/navbar.inc.php">
+</file>
+<file name="navbar.tpl" url="phpgwapi/templates/desktop/navbar.tpl">
+</file>
+<file name="navbar_app.tpl" url="phpgwapi/templates/desktop/navbar_app.tpl">
+</file>
+<file name="navbar_iframe.tpl"
url="phpgwapi/templates/desktop/navbar_iframe.tpl">
+</file>
+<file name="nextmatchs.tpl" url="phpgwapi/templates/desktop/nextmatchs.tpl">
+</file>
+<file name="null.php" url="phpgwapi/templates/desktop/null.php">
+</file>
+<file name="portal.tpl" url="phpgwapi/templates/desktop/portal.tpl">
+</file>
+<file name="portal_linkbox.tpl"
url="phpgwapi/templates/desktop/portal_linkbox.tpl">
+</file>
+<file name="portal_linkbox_footer.tpl"
url="phpgwapi/templates/desktop/portal_linkbox_footer.tpl">
+</file>
+<file name="portal_linkbox_header.tpl"
url="phpgwapi/templates/desktop/portal_linkbox_header.tpl">
+</file>
+<file name="portal_main.tpl" url="phpgwapi/templates/desktop/portal_main.tpl">
+</file>
+<folder name="css" url="phpgwapi/templates/desktop/css">
+<file name="desktop.css" url="phpgwapi/templates/desktop/css/desktop.css">
+</file>
+</folder>
+<folder name="doc" url="phpgwapi/templates/desktop/doc">
+<file name="README" url="phpgwapi/templates/desktop/doc/README">
+</file>
+<file name="TODO" url="phpgwapi/templates/desktop/doc/TODO">
+</file>
+</folder>
+<folder name="images" url="phpgwapi/templates/desktop/images">
+<file name="background-old.png"
url="phpgwapi/templates/desktop/images/background-old.png">
+</file>
+<file name="background.png"
url="phpgwapi/templates/desktop/images/background.png">
+</file>
+<file name="blank.png" url="phpgwapi/templates/desktop/images/blank.png">
+</file>
+<file name="cal.png" url="phpgwapi/templates/desktop/images/cal.png">
+</file>
+<file name="close.png" url="phpgwapi/templates/desktop/images/close.png">
+</file>
+<file name="favicon.ico" url="phpgwapi/templates/desktop/images/favicon.ico">
+</file>
+<file name="first-gray.png"
url="phpgwapi/templates/desktop/images/first-gray.png">
+</file>
+<file name="first-grey.png"
url="phpgwapi/templates/desktop/images/first-grey.png">
+</file>
+<file name="first.png" url="phpgwapi/templates/desktop/images/first.png">
+</file>
+<file name="home.png" url="phpgwapi/templates/desktop/images/home.png">
+</file>
+<file name="last-grey.png"
url="phpgwapi/templates/desktop/images/last-grey.png">
+</file>
+<file name="last.png" url="phpgwapi/templates/desktop/images/last.png">
+</file>
+<file name="left-grey.png"
url="phpgwapi/templates/desktop/images/left-grey.png">
+</file>
+<file name="left.png" url="phpgwapi/templates/desktop/images/left.png">
+</file>
+<file name="logo.png" url="phpgwapi/templates/desktop/images/logo.png">
+</file>
+<file name="logout.png" url="phpgwapi/templates/desktop/images/logout.png">
+</file>
+<file name="maximize.png" url="phpgwapi/templates/desktop/images/maximize.png">
+</file>
+<file name="menu_background.png"
url="phpgwapi/templates/desktop/images/menu_background.png">
+</file>
+<file name="minimize.png" url="phpgwapi/templates/desktop/images/minimize.png">
+</file>
+<file name="nonav.png" url="phpgwapi/templates/desktop/images/nonav.png">
+</file>
+<file name="right-grey.png"
url="phpgwapi/templates/desktop/images/right-grey.png">
+</file>
+<file name="right.png" url="phpgwapi/templates/desktop/images/right.png">
+</file>
+<file name="tabs-bg0.png" url="phpgwapi/templates/desktop/images/tabs-bg0.png">
+</file>
+<file name="tabs-bg1.png" url="phpgwapi/templates/desktop/images/tabs-bg1.png">
+</file>
+<file name="tabs-end0.png"
url="phpgwapi/templates/desktop/images/tabs-end0.png">
+</file>
+<file name="tabs-end1.png"
url="phpgwapi/templates/desktop/images/tabs-end1.png">
+</file>
+<file name="tabs-ext.png" url="phpgwapi/templates/desktop/images/tabs-ext.png">
+</file>
+<file name="tabs-l0.png" url="phpgwapi/templates/desktop/images/tabs-l0.png">
+</file>
+<file name="tabs-l1.png" url="phpgwapi/templates/desktop/images/tabs-l1.png">
+</file>
+<file name="tabs-r0.png" url="phpgwapi/templates/desktop/images/tabs-r0.png">
+</file>
+<file name="tabs-r1.png" url="phpgwapi/templates/desktop/images/tabs-r1.png">
+</file>
+<file name="tabs-sepl.png"
url="phpgwapi/templates/desktop/images/tabs-sepl.png">
+</file>
+<file name="tabs-sepm.png"
url="phpgwapi/templates/desktop/images/tabs-sepm.png">
+</file>
+<file name="tabs-sepr.png"
url="phpgwapi/templates/desktop/images/tabs-sepr.png">
+</file>
+<file name="tabs-start0.png"
url="phpgwapi/templates/desktop/images/tabs-start0.png">
+</file>
+<file name="tabs-start1.png"
url="phpgwapi/templates/desktop/images/tabs-start1.png">
+</file>
+<folder name="source" url="phpgwapi/templates/desktop/images/source">
+<file name="background.xcf"
url="phpgwapi/templates/desktop/images/source/background.xcf">
+</file>
+<file name="logo.xcf" url="phpgwapi/templates/desktop/images/source/logo.xcf">
+</file>
+</folder>
+</folder>
+<folder name="inc" url="phpgwapi/templates/desktop/inc">
+<file name="class.desktop.inc.php"
url="phpgwapi/templates/desktop/inc/class.desktop.inc.php">
+</file>
+</folder>
+<folder name="js" url="phpgwapi/templates/desktop/js">
+<file name="desktop.js" url="phpgwapi/templates/desktop/js/desktop.js">
+</file>
+</folder>
+</folder>
+<folder name="idots" url="phpgwapi/templates/idots">
+<file name="about.tpl" url="phpgwapi/templates/idots/about.tpl">
+</file>
+<file name="about_unknown.tpl"
url="phpgwapi/templates/idots/about_unknown.tpl">
+</file>
+<file name="css.tpl" url="phpgwapi/templates/idots/css.tpl">
+</file>
+<file name="footer.tpl" url="phpgwapi/templates/idots/footer.tpl">
+</file>
+<file name="head.inc.php" url="phpgwapi/templates/idots/head.inc.php">
+</file>
+<file name="head.tpl" url="phpgwapi/templates/idots/head.tpl">
+</file>
+<file name="login.tpl" url="phpgwapi/templates/idots/login.tpl">
+</file>
+<file name="login_denylogin.tpl"
url="phpgwapi/templates/idots/login_denylogin.tpl">
+</file>
+<file name="login_selectdomain.tpl"
url="phpgwapi/templates/idots/login_selectdomain.tpl">
+</file>
+<file name="navbar.inc.php" url="phpgwapi/templates/idots/navbar.inc.php">
+</file>
+<file name="navbar.tpl" url="phpgwapi/templates/idots/navbar.tpl">
+</file>
+<file name="navbar_app.tpl" url="phpgwapi/templates/idots/navbar_app.tpl">
+</file>
+<file name="nextmatchs.tpl" url="phpgwapi/templates/idots/nextmatchs.tpl">
+</file>
+<file name="portal.tpl" url="phpgwapi/templates/idots/portal.tpl">
+</file>
+<file name="portal_linkbox.tpl"
url="phpgwapi/templates/idots/portal_linkbox.tpl">
+</file>
+<file name="portal_linkbox_footer.tpl"
url="phpgwapi/templates/idots/portal_linkbox_footer.tpl">
+</file>
+<file name="portal_linkbox_header.tpl"
url="phpgwapi/templates/idots/portal_linkbox_header.tpl">
+</file>
+<file name="portal_main.tpl" url="phpgwapi/templates/idots/portal_main.tpl">
+</file>
+<folder name="css" url="phpgwapi/templates/idots/css">
+<file name="idots.css" url="phpgwapi/templates/idots/css/idots.css">
+</file>
+</folder>
+<folder name="doc" url="phpgwapi/templates/idots/doc">
+<file name="CHANGELOG" url="phpgwapi/templates/idots/doc/CHANGELOG">
+</file>
+<file name="README" url="phpgwapi/templates/idots/doc/README">
+</file>
+<file name="TODO" url="phpgwapi/templates/idots/doc/TODO">
+</file>
+</folder>
+<folder name="images" url="phpgwapi/templates/idots/images">
+<file name="admin.jpg" url="phpgwapi/templates/idots/images/admin.jpg">
+</file>
+<file name="agenda.jpg" url="phpgwapi/templates/idots/images/agenda.jpg">
+</file>
+<file name="back-up.jpg" url="phpgwapi/templates/idots/images/back-up.jpg">
+</file>
+<file name="bookmarks.jpg" url="phpgwapi/templates/idots/images/bookmarks.jpg">
+</file>
+<file name="boxbg.gif" url="phpgwapi/templates/idots/images/boxbg.gif">
+</file>
+<file name="boxbgbottom.gif"
url="phpgwapi/templates/idots/images/boxbgbottom.gif">
+</file>
+<file name="cal.png" url="phpgwapi/templates/idots/images/cal.png">
+</file>
+<file name="devtools.jpg" url="phpgwapi/templates/idots/images/devtools.jpg">
+</file>
+<file name="dot.gif" url="phpgwapi/templates/idots/images/dot.gif">
+</file>
+<file name="email.jpg" url="phpgwapi/templates/idots/images/email.jpg">
+</file>
+<file name="favicon.ico" url="phpgwapi/templates/idots/images/favicon.ico">
+</file>
+<file name="first-gray.gif"
url="phpgwapi/templates/idots/images/first-gray.gif">
+</file>
+<file name="first-gray.png"
url="phpgwapi/templates/idots/images/first-gray.png">
+</file>
+<file name="first-grey.gif"
url="phpgwapi/templates/idots/images/first-grey.gif">
+</file>
+<file name="first-grey.png"
url="phpgwapi/templates/idots/images/first-grey.png">
+</file>
+<file name="first.gif" url="phpgwapi/templates/idots/images/first.gif">
+</file>
+<file name="first.png" url="phpgwapi/templates/idots/images/first.png">
+</file>
+<file name="greypanel.gif" url="phpgwapi/templates/idots/images/greypanel.gif">
+</file>
+<file name="home.jpg" url="phpgwapi/templates/idots/images/home.jpg">
+</file>
+<file name="icon_mini_login.gif"
url="phpgwapi/templates/idots/images/icon_mini_login.gif">
+</file>
+<file name="icon_mini_search.gif"
url="phpgwapi/templates/idots/images/icon_mini_search.gif">
+</file>
+<file name="jinn.jpg" url="phpgwapi/templates/idots/images/jinn.jpg">
+</file>
+<file name="last-grey.gif" url="phpgwapi/templates/idots/images/last-grey.gif">
+</file>
+<file name="last-grey.png" url="phpgwapi/templates/idots/images/last-grey.png">
+</file>
+<file name="last.gif" url="phpgwapi/templates/idots/images/last.gif">
+</file>
+<file name="last.png" url="phpgwapi/templates/idots/images/last.png">
+</file>
+<file name="left-grey.gif" url="phpgwapi/templates/idots/images/left-grey.gif">
+</file>
+<file name="left-grey.png" url="phpgwapi/templates/idots/images/left-grey.png">
+</file>
+<file name="left.gif" url="phpgwapi/templates/idots/images/left.gif">
+</file>
+<file name="left.png" url="phpgwapi/templates/idots/images/left.png">
+</file>
+<file name="leftbar.gif" url="phpgwapi/templates/idots/images/leftbar.gif">
+</file>
+<file name="logo.jpg" url="phpgwapi/templates/idots/images/logo.jpg">
+</file>
+<file name="logo.png" url="phpgwapi/templates/idots/images/logo.png">
+</file>
+<file name="logo2.jpg" url="phpgwapi/templates/idots/images/logo2.jpg">
+</file>
+<file name="mainbar.gif" url="phpgwapi/templates/idots/images/mainbar.gif">
+</file>
+<file name="manual.jpg" url="phpgwapi/templates/idots/images/manual.jpg">
+</file>
+<file name="mediadb.jpg" url="phpgwapi/templates/idots/images/mediadb.jpg">
+</file>
+<file name="menu.orig.jpg" url="phpgwapi/templates/idots/images/menu.orig.jpg">
+</file>
+<file name="nonav.png" url="phpgwapi/templates/idots/images/nonav.png">
+</file>
+<file name="panel.png" url="phpgwapi/templates/idots/images/panel.png">
+</file>
+<file name="panel_r1_c1.jpg"
url="phpgwapi/templates/idots/images/panel_r1_c1.jpg">
+</file>
+<file name="panel_r2_c1.jpg"
url="phpgwapi/templates/idots/images/panel_r2_c1.jpg">
+</file>
+<file name="panel_r2_c3.jpg"
url="phpgwapi/templates/idots/images/panel_r2_c3.jpg">
+</file>
+<file name="panel_r3_c11.jpg"
url="phpgwapi/templates/idots/images/panel_r3_c11.jpg">
+</file>
+<file name="panel_r3_c13.jpg"
url="phpgwapi/templates/idots/images/panel_r3_c13.jpg">
+</file>
+<file name="panel_r3_c3.jpg"
url="phpgwapi/templates/idots/images/panel_r3_c3.jpg">
+</file>
+<file name="panel_r3_c5.jpg"
url="phpgwapi/templates/idots/images/panel_r3_c5.jpg">
+</file>
+<file name="panel_r4_c13.jpg"
url="phpgwapi/templates/idots/images/panel_r4_c13.jpg">
+</file>
+<file name="panel_r4_c15.jpg"
url="phpgwapi/templates/idots/images/panel_r4_c15.jpg">
+</file>
+<file name="panel_r5_c5.jpg"
url="phpgwapi/templates/idots/images/panel_r5_c5.jpg">
+</file>
+<file name="panel_r5_c9.jpg"
url="phpgwapi/templates/idots/images/panel_r5_c9.jpg">
+</file>
+<file name="panel_r6_c5.jpg"
url="phpgwapi/templates/idots/images/panel_r6_c5.jpg">
+</file>
+<file name="panel_r6_c7.jpg"
url="phpgwapi/templates/idots/images/panel_r6_c7.jpg">
+</file>
+<file name="panel_r7_c10.jpg"
url="phpgwapi/templates/idots/images/panel_r7_c10.jpg">
+</file>
+<file name="panel_r7_c12.jpg"
url="phpgwapi/templates/idots/images/panel_r7_c12.jpg">
+</file>
+<file name="panel_r7_c14.jpg"
url="phpgwapi/templates/idots/images/panel_r7_c14.jpg">
+</file>
+<file name="panel_r7_c2.jpg"
url="phpgwapi/templates/idots/images/panel_r7_c2.jpg">
+</file>
+<file name="panel_r7_c4.jpg"
url="phpgwapi/templates/idots/images/panel_r7_c4.jpg">
+</file>
+<file name="panel_r7_c6.jpg"
url="phpgwapi/templates/idots/images/panel_r7_c6.jpg">
+</file>
+<file name="panel_r7_c8.jpg"
url="phpgwapi/templates/idots/images/panel_r7_c8.jpg">
+</file>
+<file name="preferences.jpg"
url="phpgwapi/templates/idots/images/preferences.jpg">
+</file>
+<file name="right-grey.gif"
url="phpgwapi/templates/idots/images/right-grey.gif">
+</file>
+<file name="right-grey.png"
url="phpgwapi/templates/idots/images/right-grey.png">
+</file>
+<file name="right.gif" url="phpgwapi/templates/idots/images/right.gif">
+</file>
+<file name="right.png" url="phpgwapi/templates/idots/images/right.png">
+</file>
+<file name="rightbar.gif" url="phpgwapi/templates/idots/images/rightbar.gif">
+</file>
+<file name="spacer.gif" url="phpgwapi/templates/idots/images/spacer.gif">
+</file>
+<file name="tabs-bg0.gif" url="phpgwapi/templates/idots/images/tabs-bg0.gif">
+</file>
+<file name="tabs-bg0.png" url="phpgwapi/templates/idots/images/tabs-bg0.png">
+</file>
+<file name="tabs-bg1.gif" url="phpgwapi/templates/idots/images/tabs-bg1.gif">
+</file>
+<file name="tabs-bg1.png" url="phpgwapi/templates/idots/images/tabs-bg1.png">
+</file>
+<file name="tabs-end0.gif" url="phpgwapi/templates/idots/images/tabs-end0.gif">
+</file>
+<file name="tabs-end0.png" url="phpgwapi/templates/idots/images/tabs-end0.png">
+</file>
+<file name="tabs-end1.gif" url="phpgwapi/templates/idots/images/tabs-end1.gif">
+</file>
+<file name="tabs-end1.png" url="phpgwapi/templates/idots/images/tabs-end1.png">
+</file>
+<file name="tabs-ext.gif" url="phpgwapi/templates/idots/images/tabs-ext.gif">
+</file>
+<file name="tabs-ext.png" url="phpgwapi/templates/idots/images/tabs-ext.png">
+</file>
+<file name="tabs-l0.gif" url="phpgwapi/templates/idots/images/tabs-l0.gif">
+</file>
+<file name="tabs-l0.png" url="phpgwapi/templates/idots/images/tabs-l0.png">
+</file>
+<file name="tabs-l1.gif" url="phpgwapi/templates/idots/images/tabs-l1.gif">
+</file>
+<file name="tabs-l1.png" url="phpgwapi/templates/idots/images/tabs-l1.png">
+</file>
+<file name="tabs-r0.gif" url="phpgwapi/templates/idots/images/tabs-r0.gif">
+</file>
+<file name="tabs-r0.png" url="phpgwapi/templates/idots/images/tabs-r0.png">
+</file>
+<file name="tabs-r1.gif" url="phpgwapi/templates/idots/images/tabs-r1.gif">
+</file>
+<file name="tabs-r1.png" url="phpgwapi/templates/idots/images/tabs-r1.png">
+</file>
+<file name="tabs-sepl.gif" url="phpgwapi/templates/idots/images/tabs-sepl.gif">
+</file>
+<file name="tabs-sepl.png" url="phpgwapi/templates/idots/images/tabs-sepl.png">
+</file>
+<file name="tabs-sepm.gif" url="phpgwapi/templates/idots/images/tabs-sepm.gif">
+</file>
+<file name="tabs-sepm.png" url="phpgwapi/templates/idots/images/tabs-sepm.png">
+</file>
+<file name="tabs-sepr.gif" url="phpgwapi/templates/idots/images/tabs-sepr.gif">
+</file>
+<file name="tabs-sepr.png" url="phpgwapi/templates/idots/images/tabs-sepr.png">
+</file>
+<file name="tabs-start0.gif"
url="phpgwapi/templates/idots/images/tabs-start0.gif">
+</file>
+<file name="tabs-start0.png"
url="phpgwapi/templates/idots/images/tabs-start0.png">
+</file>
+<file name="tabs-start1.gif"
url="phpgwapi/templates/idots/images/tabs-start1.gif">
+</file>
+<file name="tabs-start1.png"
url="phpgwapi/templates/idots/images/tabs-start1.png">
+</file>
+<file name="tux.gif" url="phpgwapi/templates/idots/images/tux.gif">
+</file>
+<file name="unknown.jpg" url="phpgwapi/templates/idots/images/unknown.jpg">
+</file>
+</folder>
+<folder name="source" url="phpgwapi/templates/idots/source">
+<file name="logo.xcf" url="phpgwapi/templates/idots/source/logo.xcf">
+</file>
+<file name="navbar.xcf" url="phpgwapi/templates/idots/source/navbar.xcf">
+</file>
+<file name="navbar32.xcf" url="phpgwapi/templates/idots/source/navbar32.xcf">
+</file>
+<file name="navbar48.xcf" url="phpgwapi/templates/idots/source/navbar48.xcf">
+</file>
+</folder>
+</folder>
+<folder name="idsociety" url="phpgwapi/templates/idsociety">
+<file name="about.tpl" url="phpgwapi/templates/idsociety/about.tpl">
+</file>
+<file name="about_unknown.tpl"
url="phpgwapi/templates/idsociety/about_unknown.tpl">
+</file>
+<file name="css.tpl" url="phpgwapi/templates/idsociety/css.tpl">
+</file>
+<file name="footer.tpl" url="phpgwapi/templates/idsociety/footer.tpl">
+</file>
+<file name="head.inc.php" url="phpgwapi/templates/idsociety/head.inc.php">
+</file>
+<file name="head.tpl" url="phpgwapi/templates/idsociety/head.tpl">
+</file>
+<file name="idsociety-alphabet-4.xcf"
url="phpgwapi/templates/idsociety/idsociety-alphabet-4.xcf">
+</file>
+<file name="login.tpl" url="phpgwapi/templates/idsociety/login.tpl">
+</file>
+<file name="login_denylogin.tpl"
url="phpgwapi/templates/idsociety/login_denylogin.tpl">
+</file>
+<file name="login_selectdomain.tpl"
url="phpgwapi/templates/idsociety/login_selectdomain.tpl">
+</file>
+<file name="navbar.inc.php" url="phpgwapi/templates/idsociety/navbar.inc.php">
+</file>
+<file name="navbar.tpl" url="phpgwapi/templates/idsociety/navbar.tpl">
+</file>
+<file name="navbar_app.tpl" url="phpgwapi/templates/idsociety/navbar_app.tpl">
+</file>
+<file name="portal_linkbox.tpl"
url="phpgwapi/templates/idsociety/portal_linkbox.tpl">
+</file>
+<file name="portal_linkbox_footer.tpl"
url="phpgwapi/templates/idsociety/portal_linkbox_footer.tpl">
+</file>
+<file name="portal_linkbox_header.tpl"
url="phpgwapi/templates/idsociety/portal_linkbox_header.tpl">
+</file>
+<file name="portal_main.tpl"
url="phpgwapi/templates/idsociety/portal_main.tpl">
+</file>
+<folder name="images" url="phpgwapi/templates/idsociety/images">
+<file name="2_4over.gif" url="phpgwapi/templates/idsociety/images/2_4over.gif">
+</file>
+<file name="2_4over.png" url="phpgwapi/templates/idsociety/images/2_4over.png">
+</file>
+<file name="2_5over.gif" url="phpgwapi/templates/idsociety/images/2_5over.gif">
+</file>
+<file name="2_5over.png" url="phpgwapi/templates/idsociety/images/2_5over.png">
+</file>
+<file name="2_6over.gif" url="phpgwapi/templates/idsociety/images/2_6over.gif">
+</file>
+<file name="2_6over.png" url="phpgwapi/templates/idsociety/images/2_6over.png">
+</file>
+<file name="3_1over.gif" url="phpgwapi/templates/idsociety/images/3_1over.gif">
+</file>
+<file name="3_1over.png" url="phpgwapi/templates/idsociety/images/3_1over.png">
+</file>
+<file name="4_1over.gif" url="phpgwapi/templates/idsociety/images/4_1over.gif">
+</file>
+<file name="4_1over.png" url="phpgwapi/templates/idsociety/images/4_1over.png">
+</file>
+<file name="5_1over.gif" url="phpgwapi/templates/idsociety/images/5_1over.gif">
+</file>
+<file name="5_1over.png" url="phpgwapi/templates/idsociety/images/5_1over.png">
+</file>
+<file name="6_1over.gif" url="phpgwapi/templates/idsociety/images/6_1over.gif">
+</file>
+<file name="6_1over.png" url="phpgwapi/templates/idsociety/images/6_1over.png">
+</file>
+<file name="7_1over.gif" url="phpgwapi/templates/idsociety/images/7_1over.gif">
+</file>
+<file name="7_1over.png" url="phpgwapi/templates/idsociety/images/7_1over.png">
+</file>
+<file name="8_1over.gif" url="phpgwapi/templates/idsociety/images/8_1over.gif">
+</file>
+<file name="8_1over.png" url="phpgwapi/templates/idsociety/images/8_1over.png">
+</file>
+<file name="admin.gif" url="phpgwapi/templates/idsociety/images/admin.gif">
+</file>
+<file name="admin.png" url="phpgwapi/templates/idsociety/images/admin.png">
+</file>
+<file name="admin_over.gif"
url="phpgwapi/templates/idsociety/images/admin_over.gif">
+</file>
+<file name="admin_over.png"
url="phpgwapi/templates/idsociety/images/admin_over.png">
+</file>
+<file name="attach.gif" url="phpgwapi/templates/idsociety/images/attach.gif">
+</file>
+<file name="attach.png" url="phpgwapi/templates/idsociety/images/attach.png">
+</file>
+<file name="book.gif" url="phpgwapi/templates/idsociety/images/book.gif">
+</file>
+<file name="book.png" url="phpgwapi/templates/idsociety/images/book.png">
+</file>
+<file name="book_over.gif"
url="phpgwapi/templates/idsociety/images/book_over.gif">
+</file>
+<file name="book_over.png"
url="phpgwapi/templates/idsociety/images/book_over.png">
+</file>
+<file name="calendar.gif"
url="phpgwapi/templates/idsociety/images/calendar.gif">
+</file>
+<file name="calendar.png"
url="phpgwapi/templates/idsociety/images/calendar.png">
+</file>
+<file name="calendar_over.gif"
url="phpgwapi/templates/idsociety/images/calendar_over.gif">
+</file>
+<file name="calendar_over.png"
url="phpgwapi/templates/idsociety/images/calendar_over.png">
+</file>
+<file name="clear.gif" url="phpgwapi/templates/idsociety/images/clear.gif">
+</file>
+<file name="clear.png" url="phpgwapi/templates/idsociety/images/clear.png">
+</file>
+<file name="content_spacer_middle.gif"
url="phpgwapi/templates/idsociety/images/content_spacer_middle.gif">
+</file>
+<file name="content_spacer_middle.png"
url="phpgwapi/templates/idsociety/images/content_spacer_middle.png">
+</file>
+<file name="down-grey.gif"
url="phpgwapi/templates/idsociety/images/down-grey.gif">
+</file>
+<file name="down-grey.png"
url="phpgwapi/templates/idsociety/images/down-grey.png">
+</file>
+<file name="down.gif" url="phpgwapi/templates/idsociety/images/down.gif">
+</file>
+<file name="down.png" url="phpgwapi/templates/idsociety/images/down.png">
+</file>
+<file name="em.gif" url="phpgwapi/templates/idsociety/images/em.gif">
+</file>
+<file name="em.png" url="phpgwapi/templates/idsociety/images/em.png">
+</file>
+<file name="email.gif" url="phpgwapi/templates/idsociety/images/email.gif">
+</file>
+<file name="email.png" url="phpgwapi/templates/idsociety/images/email.png">
+</file>
+<file name="email_over.gif"
url="phpgwapi/templates/idsociety/images/email_over.gif">
+</file>
+<file name="email_over.png"
url="phpgwapi/templates/idsociety/images/email_over.png">
+</file>
+<file name="endbar.gif" url="phpgwapi/templates/idsociety/images/endbar.gif">
+</file>
+<file name="endbar.png" url="phpgwapi/templates/idsociety/images/endbar.png">
+</file>
+<file name="favicon.ico" url="phpgwapi/templates/idsociety/images/favicon.ico">
+</file>
+<file name="first-grey.gif"
url="phpgwapi/templates/idsociety/images/first-grey.gif">
+</file>
+<file name="first-grey.png"
url="phpgwapi/templates/idsociety/images/first-grey.png">
+</file>
+<file name="first.gif" url="phpgwapi/templates/idsociety/images/first.gif">
+</file>
+<file name="first.png" url="phpgwapi/templates/idsociety/images/first.png">
+</file>
+<file name="grauer_pfeil.gif"
url="phpgwapi/templates/idsociety/images/grauer_pfeil.gif">
+</file>
+<file name="grauer_pfeil.png"
url="phpgwapi/templates/idsociety/images/grauer_pfeil.png">
+</file>
+<file name="greybar.gif" url="phpgwapi/templates/idsociety/images/greybar.gif">
+</file>
+<file name="greybar.jpg" url="phpgwapi/templates/idsociety/images/greybar.jpg">
+</file>
+<file name="greybar.png" url="phpgwapi/templates/idsociety/images/greybar.png">
+</file>
+<file name="help-over.gif"
url="phpgwapi/templates/idsociety/images/help-over.gif">
+</file>
+<file name="help-over.png"
url="phpgwapi/templates/idsociety/images/help-over.png">
+</file>
+<file name="help.gif" url="phpgwapi/templates/idsociety/images/help.gif">
+</file>
+<file name="help.png" url="phpgwapi/templates/idsociety/images/help.png">
+</file>
+<file name="id_logo.gif" url="phpgwapi/templates/idsociety/images/id_logo.gif">
+</file>
+<file name="id_logo.png" url="phpgwapi/templates/idsociety/images/id_logo.png">
+</file>
+<file name="last-grey.gif"
url="phpgwapi/templates/idsociety/images/last-grey.gif">
+</file>
+<file name="last-grey.png"
url="phpgwapi/templates/idsociety/images/last-grey.png">
+</file>
+<file name="last.gif" url="phpgwapi/templates/idsociety/images/last.gif">
+</file>
+<file name="last.png" url="phpgwapi/templates/idsociety/images/last.png">
+</file>
+<file name="left-grey.gif"
url="phpgwapi/templates/idsociety/images/left-grey.gif">
+</file>
+<file name="left-grey.png"
url="phpgwapi/templates/idsociety/images/left-grey.png">
+</file>
+<file name="left.gif" url="phpgwapi/templates/idsociety/images/left.gif">
+</file>
+<file name="left.png" url="phpgwapi/templates/idsociety/images/left.png">
+</file>
+<file name="list.gif" url="phpgwapi/templates/idsociety/images/list.gif">
+</file>
+<file name="list.png" url="phpgwapi/templates/idsociety/images/list.png">
+</file>
+<file name="list_over.gif"
url="phpgwapi/templates/idsociety/images/list_over.gif">
+</file>
+<file name="list_over.png"
url="phpgwapi/templates/idsociety/images/list_over.png">
+</file>
+<file name="log_out.gif" url="phpgwapi/templates/idsociety/images/log_out.gif">
+</file>
+<file name="log_out.png" url="phpgwapi/templates/idsociety/images/log_out.png">
+</file>
+<file name="log_out2.gif"
url="phpgwapi/templates/idsociety/images/log_out2.gif">
+</file>
+<file name="log_out2.png"
url="phpgwapi/templates/idsociety/images/log_out2.png">
+</file>
+<file name="log_out2_over.gif"
url="phpgwapi/templates/idsociety/images/log_out2_over.gif">
+</file>
+<file name="log_out2_over.png"
url="phpgwapi/templates/idsociety/images/log_out2_over.png">
+</file>
+<file name="log_out_over.gif"
url="phpgwapi/templates/idsociety/images/log_out_over.gif">
+</file>
+<file name="log_out_over.png"
url="phpgwapi/templates/idsociety/images/log_out_over.png">
+</file>
+<file name="logo.gif" url="phpgwapi/templates/idsociety/images/logo.gif">
+</file>
+<file name="logo.png" url="phpgwapi/templates/idsociety/images/logo.png">
+</file>
+<file name="logo2.gif" url="phpgwapi/templates/idsociety/images/logo2.gif">
+</file>
+<file name="logo2.png" url="phpgwapi/templates/idsociety/images/logo2.png">
+</file>
+<file name="logo_reversed.gif"
url="phpgwapi/templates/idsociety/images/logo_reversed.gif">
+</file>
+<file name="logo_reversed.png"
url="phpgwapi/templates/idsociety/images/logo_reversed.png">
+</file>
+<file name="nav_bar_left_spacer.gif"
url="phpgwapi/templates/idsociety/images/nav_bar_left_spacer.gif">
+</file>
+<file name="nav_bar_left_spacer.png"
url="phpgwapi/templates/idsociety/images/nav_bar_left_spacer.png">
+</file>
+<file name="nav_bar_left_top_bg.gif"
url="phpgwapi/templates/idsociety/images/nav_bar_left_top_bg.gif">
+</file>
+<file name="nav_bar_left_top_bg.png"
url="phpgwapi/templates/idsociety/images/nav_bar_left_top_bg.png">
+</file>
+<file name="nav_top_spacer.gif"
url="phpgwapi/templates/idsociety/images/nav_top_spacer.gif">
+</file>
+<file name="nav_top_spacer.png"
url="phpgwapi/templates/idsociety/images/nav_top_spacer.png">
+</file>
+<file name="navbar-blank.gif"
url="phpgwapi/templates/idsociety/images/navbar-blank.gif">
+</file>
+<file name="navbar-blank.png"
url="phpgwapi/templates/idsociety/images/navbar-blank.png">
+</file>
+<file name="navbar-over-blank.gif"
url="phpgwapi/templates/idsociety/images/navbar-over-blank.gif">
+</file>
+<file name="navbar-over-blank.png"
url="phpgwapi/templates/idsociety/images/navbar-over-blank.png">
+</file>
+<file name="navbar_filler.jpg"
url="phpgwapi/templates/idsociety/images/navbar_filler.jpg">
+</file>
+<file name="nonav-over.gif"
url="phpgwapi/templates/idsociety/images/nonav-over.gif">
+</file>
+<file name="nonav-over.png"
url="phpgwapi/templates/idsociety/images/nonav-over.png">
+</file>
+<file name="nonav.gif" url="phpgwapi/templates/idsociety/images/nonav.gif">
+</file>
+<file name="nonav.png" url="phpgwapi/templates/idsociety/images/nonav.png">
+</file>
+<file name="notes.gif" url="phpgwapi/templates/idsociety/images/notes.gif">
+</file>
+<file name="notes.png" url="phpgwapi/templates/idsociety/images/notes.png">
+</file>
+<file name="notes_over.gif"
url="phpgwapi/templates/idsociety/images/notes_over.gif">
+</file>
+<file name="notes_over.png"
url="phpgwapi/templates/idsociety/images/notes_over.png">
+</file>
+<file name="preferences.gif"
url="phpgwapi/templates/idsociety/images/preferences.gif">
+</file>
+<file name="preferences.png"
url="phpgwapi/templates/idsociety/images/preferences.png">
+</file>
+<file name="preferences2.gif"
url="phpgwapi/templates/idsociety/images/preferences2.gif">
+</file>
+<file name="preferences2.png"
url="phpgwapi/templates/idsociety/images/preferences2.png">
+</file>
+<file name="preferences2_over.gif"
url="phpgwapi/templates/idsociety/images/preferences2_over.gif">
+</file>
+<file name="preferences2_over.png"
url="phpgwapi/templates/idsociety/images/preferences2_over.png">
+</file>
+<file name="preferences_over.gif"
url="phpgwapi/templates/idsociety/images/preferences_over.gif">
+</file>
+<file name="preferences_over.png"
url="phpgwapi/templates/idsociety/images/preferences_over.png">
+</file>
+<file name="print.gif" url="phpgwapi/templates/idsociety/images/print.gif">
+</file>
+<file name="print.png" url="phpgwapi/templates/idsociety/images/print.png">
+</file>
+<file name="question_mark.gif"
url="phpgwapi/templates/idsociety/images/question_mark.gif">
+</file>
+<file name="question_mark.png"
url="phpgwapi/templates/idsociety/images/question_mark.png">
+</file>
+<file name="question_mark2.gif"
url="phpgwapi/templates/idsociety/images/question_mark2.gif">
+</file>
+<file name="question_mark2.png"
url="phpgwapi/templates/idsociety/images/question_mark2.png">
+</file>
+<file name="question_mark2_over.gif"
url="phpgwapi/templates/idsociety/images/question_mark2_over.gif">
+</file>
+<file name="question_mark2_over.png"
url="phpgwapi/templates/idsociety/images/question_mark2_over.png">
+</file>
+<file name="right-grey.gif"
url="phpgwapi/templates/idsociety/images/right-grey.gif">
+</file>
+<file name="right-grey.png"
url="phpgwapi/templates/idsociety/images/right-grey.png">
+</file>
+<file name="right.gif" url="phpgwapi/templates/idsociety/images/right.gif">
+</file>
+<file name="right.png" url="phpgwapi/templates/idsociety/images/right.png">
+</file>
+<file name="right_nav_bar.gif"
url="phpgwapi/templates/idsociety/images/right_nav_bar.gif">
+</file>
+<file name="right_nav_bar.png"
url="phpgwapi/templates/idsociety/images/right_nav_bar.png">
+</file>
+<file name="right_nav_bar2.gif"
url="phpgwapi/templates/idsociety/images/right_nav_bar2.gif">
+</file>
+<file name="right_nav_bar2.png"
url="phpgwapi/templates/idsociety/images/right_nav_bar2.png">
+</file>
+<file name="roter_pfeil.gif"
url="phpgwapi/templates/idsociety/images/roter_pfeil.gif">
+</file>
+<file name="roter_pfeil.png"
url="phpgwapi/templates/idsociety/images/roter_pfeil.png">
+</file>
+<file name="tabs-bg0.gif"
url="phpgwapi/templates/idsociety/images/tabs-bg0.gif">
+</file>
+<file name="tabs-bg0.png"
url="phpgwapi/templates/idsociety/images/tabs-bg0.png">
+</file>
+<file name="tabs-bg1.gif"
url="phpgwapi/templates/idsociety/images/tabs-bg1.gif">
+</file>
+<file name="tabs-bg1.png"
url="phpgwapi/templates/idsociety/images/tabs-bg1.png">
+</file>
+<file name="tabs-end0.gif"
url="phpgwapi/templates/idsociety/images/tabs-end0.gif">
+</file>
+<file name="tabs-end0.png"
url="phpgwapi/templates/idsociety/images/tabs-end0.png">
+</file>
+<file name="tabs-end1.gif"
url="phpgwapi/templates/idsociety/images/tabs-end1.gif">
+</file>
+<file name="tabs-end1.png"
url="phpgwapi/templates/idsociety/images/tabs-end1.png">
+</file>
+<file name="tabs-ext.gif"
url="phpgwapi/templates/idsociety/images/tabs-ext.gif">
+</file>
+<file name="tabs-ext.png"
url="phpgwapi/templates/idsociety/images/tabs-ext.png">
+</file>
+<file name="tabs-l0.gif" url="phpgwapi/templates/idsociety/images/tabs-l0.gif">
+</file>
+<file name="tabs-l0.png" url="phpgwapi/templates/idsociety/images/tabs-l0.png">
+</file>
+<file name="tabs-l1.gif" url="phpgwapi/templates/idsociety/images/tabs-l1.gif">
+</file>
+<file name="tabs-l1.png" url="phpgwapi/templates/idsociety/images/tabs-l1.png">
+</file>
+<file name="tabs-r0.gif" url="phpgwapi/templates/idsociety/images/tabs-r0.gif">
+</file>
+<file name="tabs-r0.png" url="phpgwapi/templates/idsociety/images/tabs-r0.png">
+</file>
+<file name="tabs-r1.gif" url="phpgwapi/templates/idsociety/images/tabs-r1.gif">
+</file>
+<file name="tabs-r1.png" url="phpgwapi/templates/idsociety/images/tabs-r1.png">
+</file>
+<file name="tabs-sepl.gif"
url="phpgwapi/templates/idsociety/images/tabs-sepl.gif">
+</file>
+<file name="tabs-sepl.png"
url="phpgwapi/templates/idsociety/images/tabs-sepl.png">
+</file>
+<file name="tabs-sepm.gif"
url="phpgwapi/templates/idsociety/images/tabs-sepm.gif">
+</file>
+<file name="tabs-sepm.png"
url="phpgwapi/templates/idsociety/images/tabs-sepm.png">
+</file>
+<file name="tabs-sepr.gif"
url="phpgwapi/templates/idsociety/images/tabs-sepr.gif">
+</file>
+<file name="tabs-sepr.png"
url="phpgwapi/templates/idsociety/images/tabs-sepr.png">
+</file>
+<file name="tabs-start0.gif"
url="phpgwapi/templates/idsociety/images/tabs-start0.gif">
+</file>
+<file name="tabs-start0.png"
url="phpgwapi/templates/idsociety/images/tabs-start0.png">
+</file>
+<file name="tabs-start1.gif"
url="phpgwapi/templates/idsociety/images/tabs-start1.gif">
+</file>
+<file name="tabs-start1.png"
url="phpgwapi/templates/idsociety/images/tabs-start1.png">
+</file>
+<file name="top_spacer_middle.gif"
url="phpgwapi/templates/idsociety/images/top_spacer_middle.gif">
+</file>
+<file name="top_spacer_middle.png"
url="phpgwapi/templates/idsociety/images/top_spacer_middle.png">
+</file>
+<file name="top_spacer_middle2.gif"
url="phpgwapi/templates/idsociety/images/top_spacer_middle2.gif">
+</file>
+<file name="top_spacer_middle2.png"
url="phpgwapi/templates/idsociety/images/top_spacer_middle2.png">
+</file>
+<file name="up-grey.gif" url="phpgwapi/templates/idsociety/images/up-grey.gif">
+</file>
+<file name="up-grey.png" url="phpgwapi/templates/idsociety/images/up-grey.png">
+</file>
+<file name="up.gif" url="phpgwapi/templates/idsociety/images/up.gif">
+</file>
+<file name="up.png" url="phpgwapi/templates/idsociety/images/up.png">
+</file>
+<file name="welcome.gif" url="phpgwapi/templates/idsociety/images/welcome.gif">
+</file>
+<file name="welcome.png" url="phpgwapi/templates/idsociety/images/welcome.png">
+</file>
+<file name="welcome2.gif"
url="phpgwapi/templates/idsociety/images/welcome2.gif">
+</file>
+<file name="welcome2.png"
url="phpgwapi/templates/idsociety/images/welcome2.png">
+</file>
+<file name="welcome2_over.gif"
url="phpgwapi/templates/idsociety/images/welcome2_over.gif">
+</file>
+<file name="welcome2_over.png"
url="phpgwapi/templates/idsociety/images/welcome2_over.png">
+</file>
+<file name="welcome_over.gif"
url="phpgwapi/templates/idsociety/images/welcome_over.gif">
+</file>
+<file name="welcome_over.png"
url="phpgwapi/templates/idsociety/images/welcome_over.png">
+</file>
+<folder name="rollover" url="phpgwapi/templates/idsociety/images/rollover">
+<file name="2_4over.gif"
url="phpgwapi/templates/idsociety/images/rollover/2_4over.gif">
+</file>
+<file name="2_4over.png"
url="phpgwapi/templates/idsociety/images/rollover/2_4over.png">
+</file>
+<file name="2_5over.gif"
url="phpgwapi/templates/idsociety/images/rollover/2_5over.gif">
+</file>
+<file name="2_5over.png"
url="phpgwapi/templates/idsociety/images/rollover/2_5over.png">
+</file>
+<file name="2_6over.gif"
url="phpgwapi/templates/idsociety/images/rollover/2_6over.gif">
+</file>
+<file name="2_6over.png"
url="phpgwapi/templates/idsociety/images/rollover/2_6over.png">
+</file>
+<file name="3_1over.gif"
url="phpgwapi/templates/idsociety/images/rollover/3_1over.gif">
+</file>
+<file name="3_1over.png"
url="phpgwapi/templates/idsociety/images/rollover/3_1over.png">
+</file>
+<file name="4_1over.gif"
url="phpgwapi/templates/idsociety/images/rollover/4_1over.gif">
+</file>
+<file name="4_1over.png"
url="phpgwapi/templates/idsociety/images/rollover/4_1over.png">
+</file>
+<file name="5_1over.gif"
url="phpgwapi/templates/idsociety/images/rollover/5_1over.gif">
+</file>
+<file name="5_1over.png"
url="phpgwapi/templates/idsociety/images/rollover/5_1over.png">
+</file>
+<file name="6_1over.gif"
url="phpgwapi/templates/idsociety/images/rollover/6_1over.gif">
+</file>
+<file name="6_1over.png"
url="phpgwapi/templates/idsociety/images/rollover/6_1over.png">
+</file>
+<file name="7_1over.gif"
url="phpgwapi/templates/idsociety/images/rollover/7_1over.gif">
+</file>
+<file name="7_1over.png"
url="phpgwapi/templates/idsociety/images/rollover/7_1over.png">
+</file>
+<file name="8_1over.gif"
url="phpgwapi/templates/idsociety/images/rollover/8_1over.gif">
+</file>
+<file name="8_1over.png"
url="phpgwapi/templates/idsociety/images/rollover/8_1over.png">
+</file>
+<file name="admin_over.gif"
url="phpgwapi/templates/idsociety/images/rollover/admin_over.gif">
+</file>
+<file name="admin_over.png"
url="phpgwapi/templates/idsociety/images/rollover/admin_over.png">
+</file>
+<file name="book_over.gif"
url="phpgwapi/templates/idsociety/images/rollover/book_over.gif">
+</file>
+<file name="book_over.png"
url="phpgwapi/templates/idsociety/images/rollover/book_over.png">
+</file>
+<file name="calendar_over.gif"
url="phpgwapi/templates/idsociety/images/rollover/calendar_over.gif">
+</file>
+<file name="calendar_over.png"
url="phpgwapi/templates/idsociety/images/rollover/calendar_over.png">
+</file>
+<file name="email_over.gif"
url="phpgwapi/templates/idsociety/images/rollover/email_over.gif">
+</file>
+<file name="email_over.png"
url="phpgwapi/templates/idsociety/images/rollover/email_over.png">
+</file>
+<file name="help-over.gif"
url="phpgwapi/templates/idsociety/images/rollover/help-over.gif">
+</file>
+<file name="help-over.png"
url="phpgwapi/templates/idsociety/images/rollover/help-over.png">
+</file>
+<file name="list_over.gif"
url="phpgwapi/templates/idsociety/images/rollover/list_over.gif">
+</file>
+<file name="list_over.png"
url="phpgwapi/templates/idsociety/images/rollover/list_over.png">
+</file>
+<file name="log_out_over.gif"
url="phpgwapi/templates/idsociety/images/rollover/log_out_over.gif">
+</file>
+<file name="log_out_over.png"
url="phpgwapi/templates/idsociety/images/rollover/log_out_over.png">
+</file>
+<file name="log_out_over2.gif"
url="phpgwapi/templates/idsociety/images/rollover/log_out_over2.gif">
+</file>
+<file name="log_out_over2.png"
url="phpgwapi/templates/idsociety/images/rollover/log_out_over2.png">
+</file>
+<file name="notes_over.gif"
url="phpgwapi/templates/idsociety/images/rollover/notes_over.gif">
+</file>
+<file name="notes_over.png"
url="phpgwapi/templates/idsociety/images/rollover/notes_over.png">
+</file>
+<file name="preferences_over.gif"
url="phpgwapi/templates/idsociety/images/rollover/preferences_over.gif">
+</file>
+<file name="preferences_over.png"
url="phpgwapi/templates/idsociety/images/rollover/preferences_over.png">
+</file>
+<file name="preferences_over2.gif"
url="phpgwapi/templates/idsociety/images/rollover/preferences_over2.gif">
+</file>
+<file name="preferences_over2.png"
url="phpgwapi/templates/idsociety/images/rollover/preferences_over2.png">
+</file>
+<file name="question_mark_over2.gif"
url="phpgwapi/templates/idsociety/images/rollover/question_mark_over2.gif">
+</file>
+<file name="question_mark_over2.png"
url="phpgwapi/templates/idsociety/images/rollover/question_mark_over2.png">
+</file>
+<file name="welcome_over.gif"
url="phpgwapi/templates/idsociety/images/rollover/welcome_over.gif">
+</file>
+<file name="welcome_over.png"
url="phpgwapi/templates/idsociety/images/rollover/welcome_over.png">
+</file>
+<file name="welcome_over2.gif"
url="phpgwapi/templates/idsociety/images/rollover/welcome_over2.gif">
+</file>
+<file name="welcome_over2.png"
url="phpgwapi/templates/idsociety/images/rollover/welcome_over2.png">
+</file>
+</folder>
+</folder>
+</folder>
+<folder name="justweb" url="phpgwapi/templates/justweb">
+<file name="about.tpl" url="phpgwapi/templates/justweb/about.tpl">
+</file>
+<file name="about_unknown.tpl"
url="phpgwapi/templates/justweb/about_unknown.tpl">
+</file>
+<file name="css.tpl" url="phpgwapi/templates/justweb/css.tpl">
+</file>
+<file name="footer.tpl" url="phpgwapi/templates/justweb/footer.tpl">
+</file>
+<file name="head.inc.php" url="phpgwapi/templates/justweb/head.inc.php">
+</file>
+<file name="head.tpl" url="phpgwapi/templates/justweb/head.tpl">
+</file>
+<file name="login.tpl" url="phpgwapi/templates/justweb/login.tpl">
+</file>
+<file name="login_denylogin.tpl"
url="phpgwapi/templates/justweb/login_denylogin.tpl">
+</file>
+<file name="login_selectdomain.tpl"
url="phpgwapi/templates/justweb/login_selectdomain.tpl">
+</file>
+<file name="navbar.inc.php" url="phpgwapi/templates/justweb/navbar.inc.php">
+</file>
+<file name="navbar.tpl" url="phpgwapi/templates/justweb/navbar.tpl">
+</file>
+<file name="navbar_app.tpl" url="phpgwapi/templates/justweb/navbar_app.tpl">
+</file>
+<file name="navcond.js" url="phpgwapi/templates/justweb/navcond.js">
+</file>
+<file name="portal_linkbox.tpl"
url="phpgwapi/templates/justweb/portal_linkbox.tpl">
+</file>
+<file name="portal_linkbox_footer.tpl"
url="phpgwapi/templates/justweb/portal_linkbox_footer.tpl">
+</file>
+<file name="portal_linkbox_header.tpl"
url="phpgwapi/templates/justweb/portal_linkbox_header.tpl">
+</file>
+<file name="portal_main.tpl" url="phpgwapi/templates/justweb/portal_main.tpl">
+</file>
+<folder name="images" url="phpgwapi/templates/justweb/images">
+<file name="attach.gif" url="phpgwapi/templates/justweb/images/attach.gif">
+</file>
+<file name="attach.png" url="phpgwapi/templates/justweb/images/attach.png">
+</file>
+<file name="bar-10.jpg" url="phpgwapi/templates/justweb/images/bar-10.jpg">
+</file>
+<file name="bg_filler.gif"
url="phpgwapi/templates/justweb/images/bg_filler.gif">
+</file>
+<file name="bg_filler.png"
url="phpgwapi/templates/justweb/images/bg_filler.png">
+</file>
+<file name="blue_filler.gif"
url="phpgwapi/templates/justweb/images/blue_filler.gif">
+</file>
+<file name="blue_filler.png"
url="phpgwapi/templates/justweb/images/blue_filler.png">
+</file>
+<file name="bottom_bar_bg.gif"
url="phpgwapi/templates/justweb/images/bottom_bar_bg.gif">
+</file>
+<file name="bottom_bar_bg.png"
url="phpgwapi/templates/justweb/images/bottom_bar_bg.png">
+</file>
+<file name="bottom_bar_left.gif"
url="phpgwapi/templates/justweb/images/bottom_bar_left.gif">
+</file>
+<file name="bottom_bar_left.png"
url="phpgwapi/templates/justweb/images/bottom_bar_left.png">
+</file>
+<file name="bottom_bar_right.gif"
url="phpgwapi/templates/justweb/images/bottom_bar_right.gif">
+</file>
+<file name="bottom_bar_right.png"
url="phpgwapi/templates/justweb/images/bottom_bar_right.png">
+</file>
+<file name="down-grey.gif"
url="phpgwapi/templates/justweb/images/down-grey.gif">
+</file>
+<file name="down-grey.png"
url="phpgwapi/templates/justweb/images/down-grey.png">
+</file>
+<file name="down.gif" url="phpgwapi/templates/justweb/images/down.gif">
+</file>
+<file name="down.png" url="phpgwapi/templates/justweb/images/down.png">
+</file>
+<file name="favicon.ico" url="phpgwapi/templates/justweb/images/favicon.ico">
+</file>
+<file name="first-grey.gif"
url="phpgwapi/templates/justweb/images/first-grey.gif">
+</file>
+<file name="first-grey.png"
url="phpgwapi/templates/justweb/images/first-grey.png">
+</file>
+<file name="first.gif" url="phpgwapi/templates/justweb/images/first.gif">
+</file>
+<file name="first.png" url="phpgwapi/templates/justweb/images/first.png">
+</file>
+<file name="grauer_pfeil.gif"
url="phpgwapi/templates/justweb/images/grauer_pfeil.gif">
+</file>
+<file name="grauer_pfeil.png"
url="phpgwapi/templates/justweb/images/grauer_pfeil.png">
+</file>
+<file name="greybar.gif" url="phpgwapi/templates/justweb/images/greybar.gif">
+</file>
+<file name="greybar.jpg" url="phpgwapi/templates/justweb/images/greybar.jpg">
+</file>
+<file name="greybar.png" url="phpgwapi/templates/justweb/images/greybar.png">
+</file>
+<file name="help.gif" url="phpgwapi/templates/justweb/images/help.gif">
+</file>
+<file name="help.png" url="phpgwapi/templates/justweb/images/help.png">
+</file>
+<file name="last-grey.gif"
url="phpgwapi/templates/justweb/images/last-grey.gif">
+</file>
+<file name="last-grey.png"
url="phpgwapi/templates/justweb/images/last-grey.png">
+</file>
+<file name="last.gif" url="phpgwapi/templates/justweb/images/last.gif">
+</file>
+<file name="last.png" url="phpgwapi/templates/justweb/images/last.png">
+</file>
+<file name="left-grey.gif"
url="phpgwapi/templates/justweb/images/left-grey.gif">
+</file>
+<file name="left-grey.png"
url="phpgwapi/templates/justweb/images/left-grey.png">
+</file>
+<file name="left.gif" url="phpgwapi/templates/justweb/images/left.gif">
+</file>
+<file name="left.png" url="phpgwapi/templates/justweb/images/left.png">
+</file>
+<file name="logo.gif" url="phpgwapi/templates/justweb/images/logo.gif">
+</file>
+<file name="logo.png" url="phpgwapi/templates/justweb/images/logo.png">
+</file>
+<file name="logo_reversed.gif"
url="phpgwapi/templates/justweb/images/logo_reversed.gif">
+</file>
+<file name="logo_reversed.png"
url="phpgwapi/templates/justweb/images/logo_reversed.png">
+</file>
+<file name="logout-grey.gif"
url="phpgwapi/templates/justweb/images/logout-grey.gif">
+</file>
+<file name="logout-grey.png"
url="phpgwapi/templates/justweb/images/logout-grey.png">
+</file>
+<file name="logout-red.gif"
url="phpgwapi/templates/justweb/images/logout-red.gif">
+</file>
+<file name="logout-red.png"
url="phpgwapi/templates/justweb/images/logout-red.png">
+</file>
+<file name="menu_bar_bg.gif"
url="phpgwapi/templates/justweb/images/menu_bar_bg.gif">
+</file>
+<file name="menu_bar_bg.png"
url="phpgwapi/templates/justweb/images/menu_bar_bg.png">
+</file>
+<file name="menu_bar_left.gif"
url="phpgwapi/templates/justweb/images/menu_bar_left.gif">
+</file>
+<file name="menu_bar_left.png"
url="phpgwapi/templates/justweb/images/menu_bar_left.png">
+</file>
+<file name="menu_bar_right.gif"
url="phpgwapi/templates/justweb/images/menu_bar_right.gif">
+</file>
+<file name="menu_bar_right.png"
url="phpgwapi/templates/justweb/images/menu_bar_right.png">
+</file>
+<file name="menu_filler.gif"
url="phpgwapi/templates/justweb/images/menu_filler.gif">
+</file>
+<file name="menu_filler.png"
url="phpgwapi/templates/justweb/images/menu_filler.png">
+</file>
+<file name="navbar_filler.jpg"
url="phpgwapi/templates/justweb/images/navbar_filler.jpg">
+</file>
+<file name="nonav.gif" url="phpgwapi/templates/justweb/images/nonav.gif">
+</file>
+<file name="nonav.png" url="phpgwapi/templates/justweb/images/nonav.png">
+</file>
+<file name="preferences-grey.gif"
url="phpgwapi/templates/justweb/images/preferences-grey.gif">
+</file>
+<file name="preferences-grey.png"
url="phpgwapi/templates/justweb/images/preferences-grey.png">
+</file>
+<file name="preferences-red.gif"
url="phpgwapi/templates/justweb/images/preferences-red.gif">
+</file>
+<file name="preferences-red.png"
url="phpgwapi/templates/justweb/images/preferences-red.png">
+</file>
+<file name="preferences.gif"
url="phpgwapi/templates/justweb/images/preferences.gif">
+</file>
+<file name="preferences.png"
url="phpgwapi/templates/justweb/images/preferences.png">
+</file>
+<file name="print.gif" url="phpgwapi/templates/justweb/images/print.gif">
+</file>
+<file name="print.png" url="phpgwapi/templates/justweb/images/print.png">
+</file>
+<file name="right-grey.gif"
url="phpgwapi/templates/justweb/images/right-grey.gif">
+</file>
+<file name="right-grey.png"
url="phpgwapi/templates/justweb/images/right-grey.png">
+</file>
+<file name="right.gif" url="phpgwapi/templates/justweb/images/right.gif">
+</file>
+<file name="right.png" url="phpgwapi/templates/justweb/images/right.png">
+</file>
+<file name="roter_pfeil.gif"
url="phpgwapi/templates/justweb/images/roter_pfeil.gif">
+</file>
+<file name="roter_pfeil.png"
url="phpgwapi/templates/justweb/images/roter_pfeil.png">
+</file>
+<file name="side_bar_bg.gif"
url="phpgwapi/templates/justweb/images/side_bar_bg.gif">
+</file>
+<file name="side_bar_bg.png"
url="phpgwapi/templates/justweb/images/side_bar_bg.png">
+</file>
+<file name="side_bar_bottom.gif"
url="phpgwapi/templates/justweb/images/side_bar_bottom.gif">
+</file>
+<file name="side_bar_bottom.png"
url="phpgwapi/templates/justweb/images/side_bar_bottom.png">
+</file>
+<file name="side_bar_top.gif"
url="phpgwapi/templates/justweb/images/side_bar_top.gif">
+</file>
+<file name="side_bar_top.png"
url="phpgwapi/templates/justweb/images/side_bar_top.png">
+</file>
+<file name="spacer.gif" url="phpgwapi/templates/justweb/images/spacer.gif">
+</file>
+<file name="spacer.png" url="phpgwapi/templates/justweb/images/spacer.png">
+</file>
+<file name="tab_help.gif" url="phpgwapi/templates/justweb/images/tab_help.gif">
+</file>
+<file name="tab_help.png" url="phpgwapi/templates/justweb/images/tab_help.png">
+</file>
+<file name="tab_home.gif" url="phpgwapi/templates/justweb/images/tab_home.gif">
+</file>
+<file name="tab_home.png" url="phpgwapi/templates/justweb/images/tab_home.png">
+</file>
+<file name="tab_logout.gif"
url="phpgwapi/templates/justweb/images/tab_logout.gif">
+</file>
+<file name="tab_logout.png"
url="phpgwapi/templates/justweb/images/tab_logout.png">
+</file>
+<file name="tab_prefs.gif"
url="phpgwapi/templates/justweb/images/tab_prefs.gif">
+</file>
+<file name="tab_prefs.png"
url="phpgwapi/templates/justweb/images/tab_prefs.png">
+</file>
+<file name="tabs-bg0.gif" url="phpgwapi/templates/justweb/images/tabs-bg0.gif">
+</file>
+<file name="tabs-bg0.png" url="phpgwapi/templates/justweb/images/tabs-bg0.png">
+</file>
+<file name="tabs-bg1.gif" url="phpgwapi/templates/justweb/images/tabs-bg1.gif">
+</file>
+<file name="tabs-bg1.png" url="phpgwapi/templates/justweb/images/tabs-bg1.png">
+</file>
+<file name="tabs-end0.gif"
url="phpgwapi/templates/justweb/images/tabs-end0.gif">
+</file>
+<file name="tabs-end0.png"
url="phpgwapi/templates/justweb/images/tabs-end0.png">
+</file>
+<file name="tabs-end1.gif"
url="phpgwapi/templates/justweb/images/tabs-end1.gif">
+</file>
+<file name="tabs-end1.png"
url="phpgwapi/templates/justweb/images/tabs-end1.png">
+</file>
+<file name="tabs-ext.gif" url="phpgwapi/templates/justweb/images/tabs-ext.gif">
+</file>
+<file name="tabs-ext.png" url="phpgwapi/templates/justweb/images/tabs-ext.png">
+</file>
+<file name="tabs-l0.gif" url="phpgwapi/templates/justweb/images/tabs-l0.gif">
+</file>
+<file name="tabs-l0.png" url="phpgwapi/templates/justweb/images/tabs-l0.png">
+</file>
+<file name="tabs-l1.gif" url="phpgwapi/templates/justweb/images/tabs-l1.gif">
+</file>
+<file name="tabs-l1.png" url="phpgwapi/templates/justweb/images/tabs-l1.png">
+</file>
+<file name="tabs-r0.gif" url="phpgwapi/templates/justweb/images/tabs-r0.gif">
+</file>
+<file name="tabs-r0.png" url="phpgwapi/templates/justweb/images/tabs-r0.png">
+</file>
+<file name="tabs-r1.gif" url="phpgwapi/templates/justweb/images/tabs-r1.gif">
+</file>
+<file name="tabs-r1.png" url="phpgwapi/templates/justweb/images/tabs-r1.png">
+</file>
+<file name="tabs-sepl.gif"
url="phpgwapi/templates/justweb/images/tabs-sepl.gif">
+</file>
+<file name="tabs-sepl.png"
url="phpgwapi/templates/justweb/images/tabs-sepl.png">
+</file>
+<file name="tabs-sepm.gif"
url="phpgwapi/templates/justweb/images/tabs-sepm.gif">
+</file>
+<file name="tabs-sepm.png"
url="phpgwapi/templates/justweb/images/tabs-sepm.png">
+</file>
+<file name="tabs-sepr.gif"
url="phpgwapi/templates/justweb/images/tabs-sepr.gif">
+</file>
+<file name="tabs-sepr.png"
url="phpgwapi/templates/justweb/images/tabs-sepr.png">
+</file>
+<file name="tabs-start0.gif"
url="phpgwapi/templates/justweb/images/tabs-start0.gif">
+</file>
+<file name="tabs-start0.png"
url="phpgwapi/templates/justweb/images/tabs-start0.png">
+</file>
+<file name="tabs-start1.gif"
url="phpgwapi/templates/justweb/images/tabs-start1.gif">
+</file>
+<file name="tabs-start1.png"
url="phpgwapi/templates/justweb/images/tabs-start1.png">
+</file>
+<file name="up-grey.gif" url="phpgwapi/templates/justweb/images/up-grey.gif">
+</file>
+<file name="up-grey.png" url="phpgwapi/templates/justweb/images/up-grey.png">
+</file>
+<file name="up.gif" url="phpgwapi/templates/justweb/images/up.gif">
+</file>
+<file name="up.png" url="phpgwapi/templates/justweb/images/up.png">
+</file>
+</folder>
+</folder>
+<folder name="linux-at-work.de" url="phpgwapi/templates/linux-at-work.de">
+<file name="about.tpl" url="phpgwapi/templates/linux-at-work.de/about.tpl">
+</file>
+<file name="about_unknown.tpl"
url="phpgwapi/templates/linux-at-work.de/about_unknown.tpl">
+</file>
+<file name="css.tpl" url="phpgwapi/templates/linux-at-work.de/css.tpl">
+</file>
+<file name="footer.tpl" url="phpgwapi/templates/linux-at-work.de/footer.tpl">
+</file>
+<file name="head.inc.php"
url="phpgwapi/templates/linux-at-work.de/head.inc.php">
+</file>
+<file name="head.tpl" url="phpgwapi/templates/linux-at-work.de/head.tpl">
+</file>
+<file name="login.tpl" url="phpgwapi/templates/linux-at-work.de/login.tpl">
+</file>
+<file name="login_denylogin.tpl"
url="phpgwapi/templates/linux-at-work.de/login_denylogin.tpl">
+</file>
+<file name="login_selectdomain.tpl"
url="phpgwapi/templates/linux-at-work.de/login_selectdomain.tpl">
+</file>
+<file name="navbar.inc.php"
url="phpgwapi/templates/linux-at-work.de/navbar.inc.php">
+</file>
+<file name="navbar.tpl" url="phpgwapi/templates/linux-at-work.de/navbar.tpl">
+</file>
+<file name="navbar_app.tpl"
url="phpgwapi/templates/linux-at-work.de/navbar_app.tpl">
+</file>
+<file name="portal_linkbox.tpl"
url="phpgwapi/templates/linux-at-work.de/portal_linkbox.tpl">
+</file>
+<file name="portal_linkbox_footer.tpl"
url="phpgwapi/templates/linux-at-work.de/portal_linkbox_footer.tpl">
+</file>
+<file name="portal_linkbox_header.tpl"
url="phpgwapi/templates/linux-at-work.de/portal_linkbox_header.tpl">
+</file>
+<file name="portal_main.tpl"
url="phpgwapi/templates/linux-at-work.de/portal_main.tpl">
+</file>
+<folder name="images" url="phpgwapi/templates/linux-at-work.de/images">
+<file name="admin.gif"
url="phpgwapi/templates/linux-at-work.de/images/admin.gif">
+</file>
+<file name="admin.png"
url="phpgwapi/templates/linux-at-work.de/images/admin.png">
+</file>
+<file name="attach.gif"
url="phpgwapi/templates/linux-at-work.de/images/attach.gif">
+</file>
+<file name="attach.png"
url="phpgwapi/templates/linux-at-work.de/images/attach.png">
+</file>
+<file name="book.gif"
url="phpgwapi/templates/linux-at-work.de/images/book.gif">
+</file>
+<file name="book.png"
url="phpgwapi/templates/linux-at-work.de/images/book.png">
+</file>
+<file name="calendar.gif"
url="phpgwapi/templates/linux-at-work.de/images/calendar.gif">
+</file>
+<file name="calendar.png"
url="phpgwapi/templates/linux-at-work.de/images/calendar.png">
+</file>
+<file name="content_spacer_middle.gif"
url="phpgwapi/templates/linux-at-work.de/images/content_spacer_middle.gif">
+</file>
+<file name="content_spacer_middle.png"
url="phpgwapi/templates/linux-at-work.de/images/content_spacer_middle.png">
+</file>
+<file name="down-grey.gif"
url="phpgwapi/templates/linux-at-work.de/images/down-grey.gif">
+</file>
+<file name="down-grey.png"
url="phpgwapi/templates/linux-at-work.de/images/down-grey.png">
+</file>
+<file name="down.gif"
url="phpgwapi/templates/linux-at-work.de/images/down.gif">
+</file>
+<file name="down.png"
url="phpgwapi/templates/linux-at-work.de/images/down.png">
+</file>
+<file name="em.gif" url="phpgwapi/templates/linux-at-work.de/images/em.gif">
+</file>
+<file name="em.png" url="phpgwapi/templates/linux-at-work.de/images/em.png">
+</file>
+<file name="email.gif"
url="phpgwapi/templates/linux-at-work.de/images/email.gif">
+</file>
+<file name="email.png"
url="phpgwapi/templates/linux-at-work.de/images/email.png">
+</file>
+<file name="endbar.gif"
url="phpgwapi/templates/linux-at-work.de/images/endbar.gif">
+</file>
+<file name="endbar.png"
url="phpgwapi/templates/linux-at-work.de/images/endbar.png">
+</file>
+<file name="first-grey.gif"
url="phpgwapi/templates/linux-at-work.de/images/first-grey.gif">
+</file>
+<file name="first-grey.png"
url="phpgwapi/templates/linux-at-work.de/images/first-grey.png">
+</file>
+<file name="first.gif"
url="phpgwapi/templates/linux-at-work.de/images/first.gif">
+</file>
+<file name="first.png"
url="phpgwapi/templates/linux-at-work.de/images/first.png">
+</file>
+<file name="grauer_pfeil.gif"
url="phpgwapi/templates/linux-at-work.de/images/grauer_pfeil.gif">
+</file>
+<file name="grauer_pfeil.png"
url="phpgwapi/templates/linux-at-work.de/images/grauer_pfeil.png">
+</file>
+<file name="greybar.gif"
url="phpgwapi/templates/linux-at-work.de/images/greybar.gif">
+</file>
+<file name="greybar.jpg"
url="phpgwapi/templates/linux-at-work.de/images/greybar.jpg">
+</file>
+<file name="greybar.png"
url="phpgwapi/templates/linux-at-work.de/images/greybar.png">
+</file>
+<file name="help.gif"
url="phpgwapi/templates/linux-at-work.de/images/help.gif">
+</file>
+<file name="help.png"
url="phpgwapi/templates/linux-at-work.de/images/help.png">
+</file>
+<file name="id_logo.gif"
url="phpgwapi/templates/linux-at-work.de/images/id_logo.gif">
+</file>
+<file name="id_logo.png"
url="phpgwapi/templates/linux-at-work.de/images/id_logo.png">
+</file>
+<file name="last-grey.gif"
url="phpgwapi/templates/linux-at-work.de/images/last-grey.gif">
+</file>
+<file name="last-grey.png"
url="phpgwapi/templates/linux-at-work.de/images/last-grey.png">
+</file>
+<file name="last.gif"
url="phpgwapi/templates/linux-at-work.de/images/last.gif">
+</file>
+<file name="last.png"
url="phpgwapi/templates/linux-at-work.de/images/last.png">
+</file>
+<file name="left-grey.gif"
url="phpgwapi/templates/linux-at-work.de/images/left-grey.gif">
+</file>
+<file name="left-grey.png"
url="phpgwapi/templates/linux-at-work.de/images/left-grey.png">
+</file>
+<file name="left.gif"
url="phpgwapi/templates/linux-at-work.de/images/left.gif">
+</file>
+<file name="left.png"
url="phpgwapi/templates/linux-at-work.de/images/left.png">
+</file>
+<file name="list.gif"
url="phpgwapi/templates/linux-at-work.de/images/list.gif">
+</file>
+<file name="list.png"
url="phpgwapi/templates/linux-at-work.de/images/list.png">
+</file>
+<file name="log_out.gif"
url="phpgwapi/templates/linux-at-work.de/images/log_out.gif">
+</file>
+<file name="log_out.png"
url="phpgwapi/templates/linux-at-work.de/images/log_out.png">
+</file>
+<file name="logo.gif"
url="phpgwapi/templates/linux-at-work.de/images/logo.gif">
+</file>
+<file name="logo.png"
url="phpgwapi/templates/linux-at-work.de/images/logo.png">
+</file>
+<file name="logo_reversed.gif"
url="phpgwapi/templates/linux-at-work.de/images/logo_reversed.gif">
+</file>
+<file name="logo_reversed.png"
url="phpgwapi/templates/linux-at-work.de/images/logo_reversed.png">
+</file>
+<file name="nav_bar_left_spacer.gif"
url="phpgwapi/templates/linux-at-work.de/images/nav_bar_left_spacer.gif">
+</file>
+<file name="nav_bar_left_spacer.png"
url="phpgwapi/templates/linux-at-work.de/images/nav_bar_left_spacer.png">
+</file>
+<file name="nav_bar_left_top_bg.gif"
url="phpgwapi/templates/linux-at-work.de/images/nav_bar_left_top_bg.gif">
+</file>
+<file name="nav_bar_left_top_bg.png"
url="phpgwapi/templates/linux-at-work.de/images/nav_bar_left_top_bg.png">
+</file>
+<file name="nav_top_spacer.gif"
url="phpgwapi/templates/linux-at-work.de/images/nav_top_spacer.gif">
+</file>
+<file name="nav_top_spacer.png"
url="phpgwapi/templates/linux-at-work.de/images/nav_top_spacer.png">
+</file>
+<file name="navbar-blank.gif"
url="phpgwapi/templates/linux-at-work.de/images/navbar-blank.gif">
+</file>
+<file name="navbar-blank.png"
url="phpgwapi/templates/linux-at-work.de/images/navbar-blank.png">
+</file>
+<file name="navbar-over-blank.gif"
url="phpgwapi/templates/linux-at-work.de/images/navbar-over-blank.gif">
+</file>
+<file name="navbar-over-blank.png"
url="phpgwapi/templates/linux-at-work.de/images/navbar-over-blank.png">
+</file>
+<file name="navbar_filler.jpg"
url="phpgwapi/templates/linux-at-work.de/images/navbar_filler.jpg">
+</file>
+<file name="nonav.gif"
url="phpgwapi/templates/linux-at-work.de/images/nonav.gif">
+</file>
+<file name="nonav.png"
url="phpgwapi/templates/linux-at-work.de/images/nonav.png">
+</file>
+<file name="notes.gif"
url="phpgwapi/templates/linux-at-work.de/images/notes.gif">
+</file>
+<file name="notes.png"
url="phpgwapi/templates/linux-at-work.de/images/notes.png">
+</file>
+<file name="preferences.gif"
url="phpgwapi/templates/linux-at-work.de/images/preferences.gif">
+</file>
+<file name="preferences.png"
url="phpgwapi/templates/linux-at-work.de/images/preferences.png">
+</file>
+<file name="print.gif"
url="phpgwapi/templates/linux-at-work.de/images/print.gif">
+</file>
+<file name="print.png"
url="phpgwapi/templates/linux-at-work.de/images/print.png">
+</file>
+<file name="question_mark.gif"
url="phpgwapi/templates/linux-at-work.de/images/question_mark.gif">
+</file>
+<file name="question_mark.png"
url="phpgwapi/templates/linux-at-work.de/images/question_mark.png">
+</file>
+<file name="right-grey.gif"
url="phpgwapi/templates/linux-at-work.de/images/right-grey.gif">
+</file>
+<file name="right-grey.png"
url="phpgwapi/templates/linux-at-work.de/images/right-grey.png">
+</file>
+<file name="right.gif"
url="phpgwapi/templates/linux-at-work.de/images/right.gif">
+</file>
+<file name="right.png"
url="phpgwapi/templates/linux-at-work.de/images/right.png">
+</file>
+<file name="right_nav_bar.gif"
url="phpgwapi/templates/linux-at-work.de/images/right_nav_bar.gif">
+</file>
+<file name="right_nav_bar.png"
url="phpgwapi/templates/linux-at-work.de/images/right_nav_bar.png">
+</file>
+<file name="roter_pfeil.gif"
url="phpgwapi/templates/linux-at-work.de/images/roter_pfeil.gif">
+</file>
+<file name="roter_pfeil.png"
url="phpgwapi/templates/linux-at-work.de/images/roter_pfeil.png">
+</file>
+<file name="tabs-bg0.gif"
url="phpgwapi/templates/linux-at-work.de/images/tabs-bg0.gif">
+</file>
+<file name="tabs-bg0.png"
url="phpgwapi/templates/linux-at-work.de/images/tabs-bg0.png">
+</file>
+<file name="tabs-bg1.gif"
url="phpgwapi/templates/linux-at-work.de/images/tabs-bg1.gif">
+</file>
+<file name="tabs-bg1.png"
url="phpgwapi/templates/linux-at-work.de/images/tabs-bg1.png">
+</file>
+<file name="tabs-end0.gif"
url="phpgwapi/templates/linux-at-work.de/images/tabs-end0.gif">
+</file>
+<file name="tabs-end0.png"
url="phpgwapi/templates/linux-at-work.de/images/tabs-end0.png">
+</file>
+<file name="tabs-end1.gif"
url="phpgwapi/templates/linux-at-work.de/images/tabs-end1.gif">
+</file>
+<file name="tabs-end1.png"
url="phpgwapi/templates/linux-at-work.de/images/tabs-end1.png">
+</file>
+<file name="tabs-ext.gif"
url="phpgwapi/templates/linux-at-work.de/images/tabs-ext.gif">
+</file>
+<file name="tabs-ext.png"
url="phpgwapi/templates/linux-at-work.de/images/tabs-ext.png">
+</file>
+<file name="tabs-l0.gif"
url="phpgwapi/templates/linux-at-work.de/images/tabs-l0.gif">
+</file>
+<file name="tabs-l0.png"
url="phpgwapi/templates/linux-at-work.de/images/tabs-l0.png">
+</file>
+<file name="tabs-l1.gif"
url="phpgwapi/templates/linux-at-work.de/images/tabs-l1.gif">
+</file>
+<file name="tabs-l1.png"
url="phpgwapi/templates/linux-at-work.de/images/tabs-l1.png">
+</file>
+<file name="tabs-r0.gif"
url="phpgwapi/templates/linux-at-work.de/images/tabs-r0.gif">
+</file>
+<file name="tabs-r0.png"
url="phpgwapi/templates/linux-at-work.de/images/tabs-r0.png">
+</file>
+<file name="tabs-r1.gif"
url="phpgwapi/templates/linux-at-work.de/images/tabs-r1.gif">
+</file>
+<file name="tabs-r1.png"
url="phpgwapi/templates/linux-at-work.de/images/tabs-r1.png">
+</file>
+<file name="tabs-sepl.gif"
url="phpgwapi/templates/linux-at-work.de/images/tabs-sepl.gif">
+</file>
+<file name="tabs-sepl.png"
url="phpgwapi/templates/linux-at-work.de/images/tabs-sepl.png">
+</file>
+<file name="tabs-sepm.gif"
url="phpgwapi/templates/linux-at-work.de/images/tabs-sepm.gif">
+</file>
+<file name="tabs-sepm.png"
url="phpgwapi/templates/linux-at-work.de/images/tabs-sepm.png">
+</file>
+<file name="tabs-sepr.gif"
url="phpgwapi/templates/linux-at-work.de/images/tabs-sepr.gif">
+</file>
+<file name="tabs-sepr.png"
url="phpgwapi/templates/linux-at-work.de/images/tabs-sepr.png">
+</file>
+<file name="tabs-start0.gif"
url="phpgwapi/templates/linux-at-work.de/images/tabs-start0.gif">
+</file>
+<file name="tabs-start0.png"
url="phpgwapi/templates/linux-at-work.de/images/tabs-start0.png">
+</file>
+<file name="tabs-start1.gif"
url="phpgwapi/templates/linux-at-work.de/images/tabs-start1.gif">
+</file>
+<file name="tabs-start1.png"
url="phpgwapi/templates/linux-at-work.de/images/tabs-start1.png">
+</file>
+<file name="top_spacer_middle.gif"
url="phpgwapi/templates/linux-at-work.de/images/top_spacer_middle.gif">
+</file>
+<file name="top_spacer_middle.png"
url="phpgwapi/templates/linux-at-work.de/images/top_spacer_middle.png">
+</file>
+<file name="up-grey.gif"
url="phpgwapi/templates/linux-at-work.de/images/up-grey.gif">
+</file>
+<file name="up-grey.png"
url="phpgwapi/templates/linux-at-work.de/images/up-grey.png">
+</file>
+<file name="up.gif" url="phpgwapi/templates/linux-at-work.de/images/up.gif">
+</file>
+<file name="up.png" url="phpgwapi/templates/linux-at-work.de/images/up.png">
+</file>
+<file name="vater_logo.gif"
url="phpgwapi/templates/linux-at-work.de/images/vater_logo.gif">
+</file>
+<file name="vater_logo.png"
url="phpgwapi/templates/linux-at-work.de/images/vater_logo.png">
+</file>
+<file name="welcome.gif"
url="phpgwapi/templates/linux-at-work.de/images/welcome.gif">
+</file>
+<file name="welcome.png"
url="phpgwapi/templates/linux-at-work.de/images/welcome.png">
+</file>
+<folder name="rollover"
url="phpgwapi/templates/linux-at-work.de/images/rollover">
+<file name="2_4over.gif"
url="phpgwapi/templates/linux-at-work.de/images/rollover/2_4over.gif">
+</file>
+<file name="2_4over.png"
url="phpgwapi/templates/linux-at-work.de/images/rollover/2_4over.png">
+</file>
+<file name="2_5over.gif"
url="phpgwapi/templates/linux-at-work.de/images/rollover/2_5over.gif">
+</file>
+<file name="2_5over.png"
url="phpgwapi/templates/linux-at-work.de/images/rollover/2_5over.png">
+</file>
+<file name="2_6over.gif"
url="phpgwapi/templates/linux-at-work.de/images/rollover/2_6over.gif">
+</file>
+<file name="2_6over.png"
url="phpgwapi/templates/linux-at-work.de/images/rollover/2_6over.png">
+</file>
+<file name="3_1over.gif"
url="phpgwapi/templates/linux-at-work.de/images/rollover/3_1over.gif">
+</file>
+<file name="3_1over.png"
url="phpgwapi/templates/linux-at-work.de/images/rollover/3_1over.png">
+</file>
+<file name="4_1over.gif"
url="phpgwapi/templates/linux-at-work.de/images/rollover/4_1over.gif">
+</file>
+<file name="4_1over.png"
url="phpgwapi/templates/linux-at-work.de/images/rollover/4_1over.png">
+</file>
+<file name="5_1over.gif"
url="phpgwapi/templates/linux-at-work.de/images/rollover/5_1over.gif">
+</file>
+<file name="5_1over.png"
url="phpgwapi/templates/linux-at-work.de/images/rollover/5_1over.png">
+</file>
+<file name="6_1over.gif"
url="phpgwapi/templates/linux-at-work.de/images/rollover/6_1over.gif">
+</file>
+<file name="6_1over.png"
url="phpgwapi/templates/linux-at-work.de/images/rollover/6_1over.png">
+</file>
+<file name="7_1over.gif"
url="phpgwapi/templates/linux-at-work.de/images/rollover/7_1over.gif">
+</file>
+<file name="7_1over.png"
url="phpgwapi/templates/linux-at-work.de/images/rollover/7_1over.png">
+</file>
+<file name="8_1over.gif"
url="phpgwapi/templates/linux-at-work.de/images/rollover/8_1over.gif">
+</file>
+<file name="8_1over.png"
url="phpgwapi/templates/linux-at-work.de/images/rollover/8_1over.png">
+</file>
+<file name="admin_over.gif"
url="phpgwapi/templates/linux-at-work.de/images/rollover/admin_over.gif">
+</file>
+<file name="admin_over.png"
url="phpgwapi/templates/linux-at-work.de/images/rollover/admin_over.png">
+</file>
+<file name="book_over.gif"
url="phpgwapi/templates/linux-at-work.de/images/rollover/book_over.gif">
+</file>
+<file name="book_over.png"
url="phpgwapi/templates/linux-at-work.de/images/rollover/book_over.png">
+</file>
+<file name="calendar_over.gif"
url="phpgwapi/templates/linux-at-work.de/images/rollover/calendar_over.gif">
+</file>
+<file name="calendar_over.png"
url="phpgwapi/templates/linux-at-work.de/images/rollover/calendar_over.png">
+</file>
+<file name="email_over.gif"
url="phpgwapi/templates/linux-at-work.de/images/rollover/email_over.gif">
+</file>
+<file name="email_over.png"
url="phpgwapi/templates/linux-at-work.de/images/rollover/email_over.png">
+</file>
+<file name="help-over.gif"
url="phpgwapi/templates/linux-at-work.de/images/rollover/help-over.gif">
+</file>
+<file name="help-over.png"
url="phpgwapi/templates/linux-at-work.de/images/rollover/help-over.png">
+</file>
+<file name="list_over.gif"
url="phpgwapi/templates/linux-at-work.de/images/rollover/list_over.gif">
+</file>
+<file name="list_over.png"
url="phpgwapi/templates/linux-at-work.de/images/rollover/list_over.png">
+</file>
+<file name="log_out_over.gif"
url="phpgwapi/templates/linux-at-work.de/images/rollover/log_out_over.gif">
+</file>
+<file name="log_out_over.png"
url="phpgwapi/templates/linux-at-work.de/images/rollover/log_out_over.png">
+</file>
+<file name="notes_over.gif"
url="phpgwapi/templates/linux-at-work.de/images/rollover/notes_over.gif">
+</file>
+<file name="notes_over.png"
url="phpgwapi/templates/linux-at-work.de/images/rollover/notes_over.png">
+</file>
+<file name="preferences_over.gif"
url="phpgwapi/templates/linux-at-work.de/images/rollover/preferences_over.gif">
+</file>
+<file name="preferences_over.png"
url="phpgwapi/templates/linux-at-work.de/images/rollover/preferences_over.png">
+</file>
+<file name="welcome_over.gif"
url="phpgwapi/templates/linux-at-work.de/images/rollover/welcome_over.gif">
+</file>
+<file name="welcome_over.png"
url="phpgwapi/templates/linux-at-work.de/images/rollover/welcome_over.png">
+</file>
+</folder>
+</folder>
+</folder>
+<folder name="probusiness" url="phpgwapi/templates/probusiness">
+<file name="footer.tpl" url="phpgwapi/templates/probusiness/footer.tpl">
+</file>
+<file name="head.inc.php" url="phpgwapi/templates/probusiness/head.inc.php">
+</file>
+<file name="head.tpl" url="phpgwapi/templates/probusiness/head.tpl">
+</file>
+<file name="navbar.inc.php"
url="phpgwapi/templates/probusiness/navbar.inc.php">
+</file>
+<file name="navbar.tpl" url="phpgwapi/templates/probusiness/navbar.tpl">
+</file>
+<file name="navbar_app.tpl"
url="phpgwapi/templates/probusiness/navbar_app.tpl">
+</file>
+<file name="navbar_app_tablecontent.tpl"
url="phpgwapi/templates/probusiness/navbar_app_tablecontent.tpl">
+</file>
+<file name="nextmatchs.tpl"
url="phpgwapi/templates/probusiness/nextmatchs.tpl">
+</file>
+<file name="navbar_app_select.tpl"
url="phpgwapi/templates/probusiness/navbar_app_select.tpl">
+</file>
+<folder name="css" url="phpgwapi/templates/probusiness/css">
+<file name="styles.css" url="phpgwapi/templates/probusiness/css/styles.css">
+</file>
+</folder>
+<folder name="doc" url="phpgwapi/templates/probusiness/doc">
+<file name="CHANGELOG" url="phpgwapi/templates/probusiness/doc/CHANGELOG">
+</file>
+<file name="README" url="phpgwapi/templates/probusiness/doc/README">
+</file>
+<file name="TODO" url="phpgwapi/templates/probusiness/doc/TODO">
+</file>
+</folder>
+<folder name="images" url="phpgwapi/templates/probusiness/images">
+<file name="about.png" url="phpgwapi/templates/probusiness/images/about.png">
+</file>
+<file name="document.png"
url="phpgwapi/templates/probusiness/images/document.png">
+</file>
+<file name="first-grey.gif"
url="phpgwapi/templates/probusiness/images/first-grey.gif">
+</file>
+<file name="first-grey.png"
url="phpgwapi/templates/probusiness/images/first-grey.png">
+</file>
+<file name="first.gif" url="phpgwapi/templates/probusiness/images/first.gif">
+</file>
+<file name="first.png" url="phpgwapi/templates/probusiness/images/first.png">
+</file>
+<file name="home.png" url="phpgwapi/templates/probusiness/images/home.png">
+</file>
+<file name="last-grey.gif"
url="phpgwapi/templates/probusiness/images/last-grey.gif">
+</file>
+<file name="last-grey.png"
url="phpgwapi/templates/probusiness/images/last-grey.png">
+</file>
+<file name="last.gif" url="phpgwapi/templates/probusiness/images/last.gif">
+</file>
+<file name="last.png" url="phpgwapi/templates/probusiness/images/last.png">
+</file>
+<file name="left-grey.gif"
url="phpgwapi/templates/probusiness/images/left-grey.gif">
+</file>
+<file name="left-grey.png"
url="phpgwapi/templates/probusiness/images/left-grey.png">
+</file>
+<file name="left.gif" url="phpgwapi/templates/probusiness/images/left.gif">
+</file>
+<file name="left.png" url="phpgwapi/templates/probusiness/images/left.png">
+</file>
+<file name="logo.gif" url="phpgwapi/templates/probusiness/images/logo.gif">
+</file>
+<file name="logout.png" url="phpgwapi/templates/probusiness/images/logout.png">
+</file>
+<file name="panel.png" url="phpgwapi/templates/probusiness/images/panel.png">
+</file>
+<file name="pb_logo.png"
url="phpgwapi/templates/probusiness/images/pb_logo.png">
+</file>
+<file name="right-grey.gif"
url="phpgwapi/templates/probusiness/images/right-grey.gif">
+</file>
+<file name="right-grey.png"
url="phpgwapi/templates/probusiness/images/right-grey.png">
+</file>
+<file name="right.gif" url="phpgwapi/templates/probusiness/images/right.gif">
+</file>
+<file name="right.png" url="phpgwapi/templates/probusiness/images/right.png">
+</file>
+<file name="tabs-bg0.gif"
url="phpgwapi/templates/probusiness/images/tabs-bg0.gif">
+</file>
+<file name="tabs-bg0.png"
url="phpgwapi/templates/probusiness/images/tabs-bg0.png">
+</file>
+<file name="tabs-bg1.gif"
url="phpgwapi/templates/probusiness/images/tabs-bg1.gif">
+</file>
+<file name="tabs-bg1.png"
url="phpgwapi/templates/probusiness/images/tabs-bg1.png">
+</file>
+<file name="tabs-end0.gif"
url="phpgwapi/templates/probusiness/images/tabs-end0.gif">
+</file>
+<file name="tabs-end0.png"
url="phpgwapi/templates/probusiness/images/tabs-end0.png">
+</file>
+<file name="tabs-end1.gif"
url="phpgwapi/templates/probusiness/images/tabs-end1.gif">
+</file>
+<file name="tabs-end1.png"
url="phpgwapi/templates/probusiness/images/tabs-end1.png">
+</file>
+<file name="tabs-sepl.gif"
url="phpgwapi/templates/probusiness/images/tabs-sepl.gif">
+</file>
+<file name="tabs-sepl.png"
url="phpgwapi/templates/probusiness/images/tabs-sepl.png">
+</file>
+<file name="tabs-sepm.gif"
url="phpgwapi/templates/probusiness/images/tabs-sepm.gif">
+</file>
+<file name="tabs-sepm.png"
url="phpgwapi/templates/probusiness/images/tabs-sepm.png">
+</file>
+<file name="tabs-sepr.gif"
url="phpgwapi/templates/probusiness/images/tabs-sepr.gif">
+</file>
+<file name="tabs-sepr.png"
url="phpgwapi/templates/probusiness/images/tabs-sepr.png">
+</file>
+<file name="tabs-start0.gif"
url="phpgwapi/templates/probusiness/images/tabs-start0.gif">
+</file>
+<file name="tabs-start0.png"
url="phpgwapi/templates/probusiness/images/tabs-start0.png">
+</file>
+<file name="tabs-start1.gif"
url="phpgwapi/templates/probusiness/images/tabs-start1.gif">
+</file>
+<file name="tabs-start1.png"
url="phpgwapi/templates/probusiness/images/tabs-start1.png">
+</file>
+<file name="tabs_sep_ac_l.png"
url="phpgwapi/templates/probusiness/images/tabs_sep_ac_l.png">
+</file>
+<file name="tabs_sep_ac_r.png"
url="phpgwapi/templates/probusiness/images/tabs_sep_ac_r.png">
+</file>
+<file name="tabs_sep_inac_l.png"
url="phpgwapi/templates/probusiness/images/tabs_sep_inac_l.png">
+</file>
+<file name="tabs_sep_inac_r.png"
url="phpgwapi/templates/probusiness/images/tabs_sep_inac_r.png">
+</file>
+<file name="updated.gif"
url="phpgwapi/templates/probusiness/images/updated.gif">
+</file>
+<file name="updated.png"
url="phpgwapi/templates/probusiness/images/updated.png">
+</file>
+<file name="nonav.png" url="phpgwapi/templates/probusiness/images/nonav.png">
+</file>
+</folder>
+<folder name="js" url="phpgwapi/templates/probusiness/js">
+<file name="tabs.js" url="phpgwapi/templates/probusiness/js/tabs.js">
+</file>
+</folder>
+</folder>
+<folder name="verdilak" url="phpgwapi/templates/verdilak">
+<file name="about.tpl" url="phpgwapi/templates/verdilak/about.tpl">
+</file>
+<file name="about_unknown.tpl"
url="phpgwapi/templates/verdilak/about_unknown.tpl">
+</file>
+<file name="css.tpl" url="phpgwapi/templates/verdilak/css.tpl">
+</file>
+<file name="footer.tpl" url="phpgwapi/templates/verdilak/footer.tpl">
+</file>
+<file name="head.inc.php" url="phpgwapi/templates/verdilak/head.inc.php">
+</file>
+<file name="head.tpl" url="phpgwapi/templates/verdilak/head.tpl">
+</file>
+<file name="login.tpl" url="phpgwapi/templates/verdilak/login.tpl">
+</file>
+<file name="login_denylogin.tpl"
url="phpgwapi/templates/verdilak/login_denylogin.tpl">
+</file>
+<file name="login_selectdomain.tpl"
url="phpgwapi/templates/verdilak/login_selectdomain.tpl">
+</file>
+<file name="navbar.inc.php" url="phpgwapi/templates/verdilak/navbar.inc.php">
+</file>
+<file name="navbar.tpl" url="phpgwapi/templates/verdilak/navbar.tpl">
+</file>
+<file name="navbar_app.tpl" url="phpgwapi/templates/verdilak/navbar_app.tpl">
+</file>
+<file name="portal_linkbox.tpl"
url="phpgwapi/templates/verdilak/portal_linkbox.tpl">
+</file>
+<file name="portal_linkbox_footer.tpl"
url="phpgwapi/templates/verdilak/portal_linkbox_footer.tpl">
+</file>
+<file name="portal_linkbox_header.tpl"
url="phpgwapi/templates/verdilak/portal_linkbox_header.tpl">
+</file>
+<file name="portal_main.tpl" url="phpgwapi/templates/verdilak/portal_main.tpl">
+</file>
+<folder name="images" url="phpgwapi/templates/verdilak/images">
+<file name="attach.gif" url="phpgwapi/templates/verdilak/images/attach.gif">
+</file>
+<file name="attach.png" url="phpgwapi/templates/verdilak/images/attach.png">
+</file>
+<file name="bg_filler.gif"
url="phpgwapi/templates/verdilak/images/bg_filler.gif">
+</file>
+<file name="bg_filler.png"
url="phpgwapi/templates/verdilak/images/bg_filler.png">
+</file>
+<file name="down-grey.gif"
url="phpgwapi/templates/verdilak/images/down-grey.gif">
+</file>
+<file name="down-grey.png"
url="phpgwapi/templates/verdilak/images/down-grey.png">
+</file>
+<file name="down.gif" url="phpgwapi/templates/verdilak/images/down.gif">
+</file>
+<file name="down.png" url="phpgwapi/templates/verdilak/images/down.png">
+</file>
+<file name="endbar.gif" url="phpgwapi/templates/verdilak/images/endbar.gif">
+</file>
+<file name="endbar.png" url="phpgwapi/templates/verdilak/images/endbar.png">
+</file>
+<file name="favicon.ico" url="phpgwapi/templates/verdilak/images/favicon.ico">
+</file>
+<file name="first-grey.gif"
url="phpgwapi/templates/verdilak/images/first-grey.gif">
+</file>
+<file name="first-grey.png"
url="phpgwapi/templates/verdilak/images/first-grey.png">
+</file>
+<file name="first.gif" url="phpgwapi/templates/verdilak/images/first.gif">
+</file>
+<file name="first.png" url="phpgwapi/templates/verdilak/images/first.png">
+</file>
+<file name="grauer_pfeil.gif"
url="phpgwapi/templates/verdilak/images/grauer_pfeil.gif">
+</file>
+<file name="grauer_pfeil.png"
url="phpgwapi/templates/verdilak/images/grauer_pfeil.png">
+</file>
+<file name="greybar.jpg" url="phpgwapi/templates/verdilak/images/greybar.jpg">
+</file>
+<file name="help.gif" url="phpgwapi/templates/verdilak/images/help.gif">
+</file>
+<file name="help.png" url="phpgwapi/templates/verdilak/images/help.png">
+</file>
+<file name="last-grey.gif"
url="phpgwapi/templates/verdilak/images/last-grey.gif">
+</file>
+<file name="last-grey.png"
url="phpgwapi/templates/verdilak/images/last-grey.png">
+</file>
+<file name="last.gif" url="phpgwapi/templates/verdilak/images/last.gif">
+</file>
+<file name="last.png" url="phpgwapi/templates/verdilak/images/last.png">
+</file>
+<file name="left-grey.gif"
url="phpgwapi/templates/verdilak/images/left-grey.gif">
+</file>
+<file name="left-grey.png"
url="phpgwapi/templates/verdilak/images/left-grey.png">
+</file>
+<file name="left.gif" url="phpgwapi/templates/verdilak/images/left.gif">
+</file>
+<file name="left.png" url="phpgwapi/templates/verdilak/images/left.png">
+</file>
+<file name="logo.gif" url="phpgwapi/templates/verdilak/images/logo.gif">
+</file>
+<file name="logo.png" url="phpgwapi/templates/verdilak/images/logo.png">
+</file>
+<file name="logo1a.psd" url="phpgwapi/templates/verdilak/images/logo1a.psd">
+</file>
+<file name="logo_000000.gif"
url="phpgwapi/templates/verdilak/images/logo_000000.gif">
+</file>
+<file name="logo_000000.png"
url="phpgwapi/templates/verdilak/images/logo_000000.png">
+</file>
+<file name="logo_000099.gif"
url="phpgwapi/templates/verdilak/images/logo_000099.gif">
+</file>
+<file name="logo_000099.png"
url="phpgwapi/templates/verdilak/images/logo_000099.png">
+</file>
+<file name="logo_003300.gif"
url="phpgwapi/templates/verdilak/images/logo_003300.gif">
+</file>
+<file name="logo_003300.png"
url="phpgwapi/templates/verdilak/images/logo_003300.png">
+</file>
+<file name="logo_486591.gif"
url="phpgwapi/templates/verdilak/images/logo_486591.gif">
+</file>
+<file name="logo_486591.png"
url="phpgwapi/templates/verdilak/images/logo_486591.png">
+</file>
+<file name="logo_5A0000.gif"
url="phpgwapi/templates/verdilak/images/logo_5A0000.gif">
+</file>
+<file name="logo_5A0000.png"
url="phpgwapi/templates/verdilak/images/logo_5A0000.png">
+</file>
+<file name="logo_663366.gif"
url="phpgwapi/templates/verdilak/images/logo_663366.gif">
+</file>
+<file name="logo_663366.png"
url="phpgwapi/templates/verdilak/images/logo_663366.png">
+</file>
+<file name="logo_80CCFF.gif"
url="phpgwapi/templates/verdilak/images/logo_80CCFF.gif">
+</file>
+<file name="logo_80CCFF.png"
url="phpgwapi/templates/verdilak/images/logo_80CCFF.png">
+</file>
+<file name="logo_885522.gif"
url="phpgwapi/templates/verdilak/images/logo_885522.gif">
+</file>
+<file name="logo_885522.png"
url="phpgwapi/templates/verdilak/images/logo_885522.png">
+</file>
+<file name="logo_967FF4.gif"
url="phpgwapi/templates/verdilak/images/logo_967FF4.gif">
+</file>
+<file name="logo_967FF4.png"
url="phpgwapi/templates/verdilak/images/logo_967FF4.png">
+</file>
+<file name="logo_990000.gif"
url="phpgwapi/templates/verdilak/images/logo_990000.gif">
+</file>
+<file name="logo_990000.png"
url="phpgwapi/templates/verdilak/images/logo_990000.png">
+</file>
+<file name="logo_F7E58F.gif"
url="phpgwapi/templates/verdilak/images/logo_F7E58F.gif">
+</file>
+<file name="logo_F7E58F.png"
url="phpgwapi/templates/verdilak/images/logo_F7E58F.png">
+</file>
+<file name="logo_reversed.gif"
url="phpgwapi/templates/verdilak/images/logo_reversed.gif">
+</file>
+<file name="logo_reversed.png"
url="phpgwapi/templates/verdilak/images/logo_reversed.png">
+</file>
+<file name="logout-grey.gif"
url="phpgwapi/templates/verdilak/images/logout-grey.gif">
+</file>
+<file name="logout-grey.png"
url="phpgwapi/templates/verdilak/images/logout-grey.png">
+</file>
+<file name="logout-grey_de.png"
url="phpgwapi/templates/verdilak/images/logout-grey_de.png">
+</file>
+<file name="logout-grey_es.png"
url="phpgwapi/templates/verdilak/images/logout-grey_es.png">
+</file>
+<file name="logout-grey_fr.png"
url="phpgwapi/templates/verdilak/images/logout-grey_fr.png">
+</file>
+<file name="logout-red.gif"
url="phpgwapi/templates/verdilak/images/logout-red.gif">
+</file>
+<file name="logout-red.png"
url="phpgwapi/templates/verdilak/images/logout-red.png">
+</file>
+<file name="logout-red_de.png"
url="phpgwapi/templates/verdilak/images/logout-red_de.png">
+</file>
+<file name="logout-red_es.png"
url="phpgwapi/templates/verdilak/images/logout-red_es.png">
+</file>
+<file name="logout-red_fr.png"
url="phpgwapi/templates/verdilak/images/logout-red_fr.png">
+</file>
+<file name="navbar_filler.jpg"
url="phpgwapi/templates/verdilak/images/navbar_filler.jpg">
+</file>
+<file name="nonav.gif" url="phpgwapi/templates/verdilak/images/nonav.gif">
+</file>
+<file name="nonav.png" url="phpgwapi/templates/verdilak/images/nonav.png">
+</file>
+<file name="preferences-grey.gif"
url="phpgwapi/templates/verdilak/images/preferences-grey.gif">
+</file>
+<file name="preferences-grey.png"
url="phpgwapi/templates/verdilak/images/preferences-grey.png">
+</file>
+<file name="preferences-grey_de.png"
url="phpgwapi/templates/verdilak/images/preferences-grey_de.png">
+</file>
+<file name="preferences-grey_es.png"
url="phpgwapi/templates/verdilak/images/preferences-grey_es.png">
+</file>
+<file name="preferences-grey_fr.png"
url="phpgwapi/templates/verdilak/images/preferences-grey_fr.png">
+</file>
+<file name="preferences-red.gif"
url="phpgwapi/templates/verdilak/images/preferences-red.gif">
+</file>
+<file name="preferences-red.png"
url="phpgwapi/templates/verdilak/images/preferences-red.png">
+</file>
+<file name="preferences-red_de.png"
url="phpgwapi/templates/verdilak/images/preferences-red_de.png">
+</file>
+<file name="preferences-red_es.png"
url="phpgwapi/templates/verdilak/images/preferences-red_es.png">
+</file>
+<file name="preferences-red_fr.png"
url="phpgwapi/templates/verdilak/images/preferences-red_fr.png">
+</file>
+<file name="preferences.gif"
url="phpgwapi/templates/verdilak/images/preferences.gif">
+</file>
+<file name="preferences.png"
url="phpgwapi/templates/verdilak/images/preferences.png">
+</file>
+<file name="print.gif" url="phpgwapi/templates/verdilak/images/print.gif">
+</file>
+<file name="print.png" url="phpgwapi/templates/verdilak/images/print.png">
+</file>
+<file name="right-grey.gif"
url="phpgwapi/templates/verdilak/images/right-grey.gif">
+</file>
+<file name="right-grey.png"
url="phpgwapi/templates/verdilak/images/right-grey.png">
+</file>
+<file name="right.gif" url="phpgwapi/templates/verdilak/images/right.gif">
+</file>
+<file name="right.png" url="phpgwapi/templates/verdilak/images/right.png">
+</file>
+<file name="roter_pfeil.gif"
url="phpgwapi/templates/verdilak/images/roter_pfeil.gif">
+</file>
+<file name="roter_pfeil.png"
url="phpgwapi/templates/verdilak/images/roter_pfeil.png">
+</file>
+<file name="tabs-bg0.gif"
url="phpgwapi/templates/verdilak/images/tabs-bg0.gif">
+</file>
+<file name="tabs-bg0.png"
url="phpgwapi/templates/verdilak/images/tabs-bg0.png">
+</file>
+<file name="tabs-bg1.gif"
url="phpgwapi/templates/verdilak/images/tabs-bg1.gif">
+</file>
+<file name="tabs-bg1.png"
url="phpgwapi/templates/verdilak/images/tabs-bg1.png">
+</file>
+<file name="tabs-end0.gif"
url="phpgwapi/templates/verdilak/images/tabs-end0.gif">
+</file>
+<file name="tabs-end0.png"
url="phpgwapi/templates/verdilak/images/tabs-end0.png">
+</file>
+<file name="tabs-end1.gif"
url="phpgwapi/templates/verdilak/images/tabs-end1.gif">
+</file>
+<file name="tabs-end1.png"
url="phpgwapi/templates/verdilak/images/tabs-end1.png">
+</file>
+<file name="tabs-ext.gif"
url="phpgwapi/templates/verdilak/images/tabs-ext.gif">
+</file>
+<file name="tabs-ext.png"
url="phpgwapi/templates/verdilak/images/tabs-ext.png">
+</file>
+<file name="tabs-l0.gif" url="phpgwapi/templates/verdilak/images/tabs-l0.gif">
+</file>
+<file name="tabs-l0.png" url="phpgwapi/templates/verdilak/images/tabs-l0.png">
+</file>
+<file name="tabs-l1.gif" url="phpgwapi/templates/verdilak/images/tabs-l1.gif">
+</file>
+<file name="tabs-l1.png" url="phpgwapi/templates/verdilak/images/tabs-l1.png">
+</file>
+<file name="tabs-r0.gif" url="phpgwapi/templates/verdilak/images/tabs-r0.gif">
+</file>
+<file name="tabs-r0.png" url="phpgwapi/templates/verdilak/images/tabs-r0.png">
+</file>
+<file name="tabs-r1.gif" url="phpgwapi/templates/verdilak/images/tabs-r1.gif">
+</file>
+<file name="tabs-r1.png" url="phpgwapi/templates/verdilak/images/tabs-r1.png">
+</file>
+<file name="tabs-sepl.gif"
url="phpgwapi/templates/verdilak/images/tabs-sepl.gif">
+</file>
+<file name="tabs-sepl.png"
url="phpgwapi/templates/verdilak/images/tabs-sepl.png">
+</file>
+<file name="tabs-sepm.gif"
url="phpgwapi/templates/verdilak/images/tabs-sepm.gif">
+</file>
+<file name="tabs-sepm.png"
url="phpgwapi/templates/verdilak/images/tabs-sepm.png">
+</file>
+<file name="tabs-sepr.gif"
url="phpgwapi/templates/verdilak/images/tabs-sepr.gif">
+</file>
+<file name="tabs-sepr.png"
url="phpgwapi/templates/verdilak/images/tabs-sepr.png">
+</file>
+<file name="tabs-start0.gif"
url="phpgwapi/templates/verdilak/images/tabs-start0.gif">
+</file>
+<file name="tabs-start0.png"
url="phpgwapi/templates/verdilak/images/tabs-start0.png">
+</file>
+<file name="tabs-start1.gif"
url="phpgwapi/templates/verdilak/images/tabs-start1.gif">
+</file>
+<file name="tabs-start1.png"
url="phpgwapi/templates/verdilak/images/tabs-start1.png">
+</file>
+<file name="top-right.psd"
url="phpgwapi/templates/verdilak/images/top-right.psd">
+</file>
+<file name="up-grey.gif" url="phpgwapi/templates/verdilak/images/up-grey.gif">
+</file>
+<file name="up-grey.png" url="phpgwapi/templates/verdilak/images/up-grey.png">
+</file>
+<file name="up.gif" url="phpgwapi/templates/verdilak/images/up.gif">
+</file>
+<file name="up.png" url="phpgwapi/templates/verdilak/images/up.png">
+</file>
+<file name="welcome-grey.gif"
url="phpgwapi/templates/verdilak/images/welcome-grey.gif">
+</file>
+<file name="welcome-grey.png"
url="phpgwapi/templates/verdilak/images/welcome-grey.png">
+</file>
+<file name="welcome-grey_de.png"
url="phpgwapi/templates/verdilak/images/welcome-grey_de.png">
+</file>
+<file name="welcome-grey_es.png"
url="phpgwapi/templates/verdilak/images/welcome-grey_es.png">
+</file>
+<file name="welcome-grey_fr.png"
url="phpgwapi/templates/verdilak/images/welcome-grey_fr.png">
+</file>
+<file name="welcome-red.gif"
url="phpgwapi/templates/verdilak/images/welcome-red.gif">
+</file>
+<file name="welcome-red.png"
url="phpgwapi/templates/verdilak/images/welcome-red.png">
+</file>
+<file name="welcome-red_de.png"
url="phpgwapi/templates/verdilak/images/welcome-red_de.png">
+</file>
+<file name="welcome-red_es.png"
url="phpgwapi/templates/verdilak/images/welcome-red_es.png">
+</file>
+<file name="welcome-red_fr.png"
url="phpgwapi/templates/verdilak/images/welcome-red_fr.png">
+</file>
+</folder>
+</folder>
+</folder>
+<folder name="themes" url="phpgwapi/themes">
+<file name="black.theme" url="phpgwapi/themes/black.theme">
+</file>
+<file name="blue.theme" url="phpgwapi/themes/blue.theme">
+</file>
+<file name="brown.theme" url="phpgwapi/themes/brown.theme">
+</file>
+<file name="darkblue.theme" url="phpgwapi/themes/darkblue.theme">
+</file>
+<file name="darkgreen.theme" url="phpgwapi/themes/darkgreen.theme">
+</file>
+<file name="default.theme" url="phpgwapi/themes/default.theme">
+</file>
+<file name="fancy.theme" url="phpgwapi/themes/fancy.theme">
+</file>
+<file name="greys.theme" url="phpgwapi/themes/greys.theme">
+</file>
+<file name="heaven.theme" url="phpgwapi/themes/heaven.theme">
+</file>
+<file name="idsociety.theme" url="phpgwapi/themes/idsociety.theme">
+</file>
+<file name="lightblue.theme" url="phpgwapi/themes/lightblue.theme">
+</file>
+<file name="lightbrown.theme" url="phpgwapi/themes/lightbrown.theme">
+</file>
+<file name="mojo.theme" url="phpgwapi/themes/mojo.theme">
+</file>
+<file name="purple.theme" url="phpgwapi/themes/purple.theme">
+</file>
+<file name="red.theme" url="phpgwapi/themes/red.theme">
+</file>
+<file name="rose.theme" url="phpgwapi/themes/rose.theme">
+</file>
+<file name="submarine.theme" url="phpgwapi/themes/submarine.theme">
+</file>
+<file name="template2theme.pl" url="phpgwapi/themes/template2theme.pl">
+</file>
+<file name="theme.template" url="phpgwapi/themes/theme.template">
+</file>
+<file name="theme2template.pl" url="phpgwapi/themes/theme2template.pl">
+</file>
+<file name="yellows.theme" url="phpgwapi/themes/yellows.theme">
+</file>
+</folder>
+</folder>
+<folder name="preferences">
+<preference-set id="">
+ <string id="import_dirname">Q:\public_html\phpgw_0_9_16\preferences</string>
+</preference-set>
+<file name="changepassword.php" url="preferences/changepassword.php">
+</file>
+<file name="changeprofile.php" url="preferences/changeprofile.php">
+</file>
+<file name="index.php" url="preferences/index.php">
+</file>
+<file name="preferences.php" url="preferences/preferences.php">
+</file>
+<folder name="doc" url="preferences/doc">
+<file name="copyright.gpl" url="preferences/doc/copyright.gpl">
+</file>
+</folder>
+<folder name="help" url="preferences/help">
+<file name="index.php" url="preferences/help/index.php">
+</file>
+<folder name="DE" url="preferences/help/DE">
+<file name="other.php" url="preferences/help/DE/other.php">
+</file>
+<file name="preferences.php" url="preferences/help/DE/preferences.php">
+</file>
+<file name="settings.php" url="preferences/help/DE/settings.php">
+</file>
+</folder>
+<folder name="EN" url="preferences/help/EN">
+<file name="other.php" url="preferences/help/EN/other.php">
+</file>
+<file name="preferences.php" url="preferences/help/EN/preferences.php">
+</file>
+<file name="settings.php" url="preferences/help/EN/settings.php">
+</file>
+</folder>
+</folder>
+<folder name="inc" url="preferences/inc">
+<file name="class.bocategories.inc.php"
url="preferences/inc/class.bocategories.inc.php">
+</file>
+<file name="class.uiaclprefs.inc.php"
url="preferences/inc/class.uiaclprefs.inc.php">
+</file>
+<file name="class.uicategories.inc.php"
url="preferences/inc/class.uicategories.inc.php">
+</file>
+<file name="hook_deleteaccount.inc.php"
url="preferences/inc/hook_deleteaccount.inc.php">
+</file>
+<file name="hook_manual.inc.php" url="preferences/inc/hook_manual.inc.php">
+</file>
+<file name="hook_preferences.inc.php"
url="preferences/inc/hook_preferences.inc.php">
+</file>
+<file name="hook_settings.inc.php" url="preferences/inc/hook_settings.inc.php">
+</file>
+</folder>
+<folder name="setup" url="preferences/setup">
+<file name="phpgw_br.lang" url="preferences/setup/phpgw_br.lang">
+</file>
+<file name="phpgw_cs.lang" url="preferences/setup/phpgw_cs.lang">
+</file>
+<file name="phpgw_da.lang" url="preferences/setup/phpgw_da.lang">
+</file>
+<file name="phpgw_de.lang" url="preferences/setup/phpgw_de.lang">
+</file>
+<file name="phpgw_en.lang" url="preferences/setup/phpgw_en.lang">
+</file>
+<file name="phpgw_es.lang" url="preferences/setup/phpgw_es.lang">
+</file>
+<file name="phpgw_fi.lang" url="preferences/setup/phpgw_fi.lang">
+</file>
+<file name="phpgw_fr.lang" url="preferences/setup/phpgw_fr.lang">
+</file>
+<file name="phpgw_hu.lang" url="preferences/setup/phpgw_hu.lang">
+</file>
+<file name="phpgw_it.lang" url="preferences/setup/phpgw_it.lang">
+</file>
+<file name="phpgw_ja.lang" url="preferences/setup/phpgw_ja.lang">
+</file>
+<file name="phpgw_ko.lang" url="preferences/setup/phpgw_ko.lang">
+</file>
+<file name="phpgw_nl.lang" url="preferences/setup/phpgw_nl.lang">
+</file>
+<file name="phpgw_no.lang" url="preferences/setup/phpgw_no.lang">
+</file>
+<file name="phpgw_pl.lang" url="preferences/setup/phpgw_pl.lang">
+</file>
+<file name="phpgw_pt.lang" url="preferences/setup/phpgw_pt.lang">
+</file>
+<file name="phpgw_sv.lang" url="preferences/setup/phpgw_sv.lang">
+</file>
+<file name="phpgw_zh.lang" url="preferences/setup/phpgw_zh.lang">
+</file>
+<file name="phpgw_zt.lang" url="preferences/setup/phpgw_zt.lang">
+</file>
+<file name="setup.inc.php" url="preferences/setup/setup.inc.php">
+</file>
+</folder>
+<folder name="templates" url="preferences/templates">
+<folder name="default" url="preferences/templates/default">
+<file name="category_form.tpl"
url="preferences/templates/default/category_form.tpl">
+</file>
+<file name="changepassword.tpl"
url="preferences/templates/default/changepassword.tpl">
+</file>
+<file name="delete.tpl" url="preferences/templates/default/delete.tpl">
+</file>
+<file name="index.tpl" url="preferences/templates/default/index.tpl">
+</file>
+<file name="listcats.tpl" url="preferences/templates/default/listcats.tpl">
+</file>
+<file name="preferences.tpl"
url="preferences/templates/default/preferences.tpl">
+</file>
+<folder name="images" url="preferences/templates/default/images">
+<file name="navbar.gif" url="preferences/templates/default/images/navbar.gif">
+</file>
+<file name="navbar.png" url="preferences/templates/default/images/navbar.png">
+</file>
+</folder>
+</folder>
+<folder name="idots" url="preferences/templates/idots">
+<file name="index.tpl" url="preferences/templates/idots/index.tpl">
+</file>
+<folder name="images" url="preferences/templates/idots/images">
+<file name="navbar.png" url="preferences/templates/idots/images/navbar.png">
+</file>
+</folder>
+</folder>
+<folder name="idsociety" url="preferences/templates/idsociety">
+<folder name="images" url="preferences/templates/idsociety/images">
+<file name="navbar.gif"
url="preferences/templates/idsociety/images/navbar.gif">
+</file>
+<file name="navbar.png"
url="preferences/templates/idsociety/images/navbar.png">
+</file>
+</folder>
+</folder>
+<folder name="probusiness" url="preferences/templates/probusiness">
+<file name="category_form.tpl"
url="preferences/templates/probusiness/category_form.tpl">
+</file>
+<file name="changepassword.tpl"
url="preferences/templates/probusiness/changepassword.tpl">
+</file>
+<file name="delete.tpl" url="preferences/templates/probusiness/delete.tpl">
+</file>
+<file name="index.tpl" url="preferences/templates/probusiness/index.tpl">
+</file>
+<file name="listcats.tpl" url="preferences/templates/probusiness/listcats.tpl">
+</file>
+<file name="preferences.tpl"
url="preferences/templates/probusiness/preferences.tpl">
+</file>
+<folder name="images" url="preferences/templates/probusiness/images">
+<file name="navbar.gif"
url="preferences/templates/probusiness/images/navbar.gif">
+</file>
+<file name="navbar.png"
url="preferences/templates/probusiness/images/navbar.png">
+</file>
+</folder>
+</folder>
+</folder>
+</folder>
+<folder name="projects">
+<preference-set id="">
+ <string id="import_dirname">Q:\public_html\phpgw_0_9_16\projects</string>
+</preference-set>
+<file name="index.php" url="projects/index.php">
+</file>
+<folder name="doc" url="projects/doc">
+<file name="CHANGELOG" url="projects/doc/CHANGELOG">
+</file>
+<file name="INSTALL" url="projects/doc/INSTALL">
+</file>
+<file name="USING" url="projects/doc/USING">
+</file>
+<file name="logo.jpg" url="projects/doc/logo.jpg">
+</file>
+</folder>
+<folder name="help" url="projects/help">
+<file name="index.php" url="projects/help/index.php">
+</file>
+</folder>
+<folder name="inc" url="projects/inc">
+<file name="class.bobilling.inc.php"
url="projects/inc/class.bobilling.inc.php">
+</file>
+<file name="class.bodeliveries.inc.php"
url="projects/inc/class.bodeliveries.inc.php">
+</file>
+<file name="class.boprojecthours.inc.php"
url="projects/inc/class.boprojecthours.inc.php">
+</file>
+<file name="class.boprojects.inc.php"
url="projects/inc/class.boprojects.inc.php">
+</file>
+<file name="class.bostatistics.inc.php"
url="projects/inc/class.bostatistics.inc.php">
+</file>
+<file name="class.sobilling.inc.php"
url="projects/inc/class.sobilling.inc.php">
+</file>
+<file name="class.sodeliveries.inc.php"
url="projects/inc/class.sodeliveries.inc.php">
+</file>
+<file name="class.soprojecthours.inc.php"
url="projects/inc/class.soprojecthours.inc.php">
+</file>
+<file name="class.soprojects.inc.php"
url="projects/inc/class.soprojects.inc.php">
+</file>
+<file name="class.sostatistics.inc.php"
url="projects/inc/class.sostatistics.inc.php">
+</file>
+<file name="class.uibilling.inc.php"
url="projects/inc/class.uibilling.inc.php">
+</file>
+<file name="class.uideliveries.inc.php"
url="projects/inc/class.uideliveries.inc.php">
+</file>
+<file name="class.uiprojecthours.inc.php"
url="projects/inc/class.uiprojecthours.inc.php">
+</file>
+<file name="class.uiprojects.inc.php"
url="projects/inc/class.uiprojects.inc.php">
+</file>
+<file name="class.uistatistics.inc.php"
url="projects/inc/class.uistatistics.inc.php">
+</file>
+<file name="hook_about.inc.php" url="projects/inc/hook_about.inc.php">
+</file>
+<file name="hook_add_def_pref.inc.php"
url="projects/inc/hook_add_def_pref.inc.php">
+</file>
+<file name="hook_admin.inc.php" url="projects/inc/hook_admin.inc.php">
+</file>
+<file name="hook_deleteaccount.inc.php"
url="projects/inc/hook_deleteaccount.inc.php">
+</file>
+<file name="hook_manual.inc.php" url="projects/inc/hook_manual.inc.php">
+</file>
+<file name="hook_preferences.inc.php"
url="projects/inc/hook_preferences.inc.php">
+</file>
+<file name="hook_sidebox_menu.inc.php"
url="projects/inc/hook_sidebox_menu.inc.php">
+</file>
+</folder>
+<folder name="setup" url="projects/setup">
+<file name="phpgw_br.lang" url="projects/setup/phpgw_br.lang">
+</file>
+<file name="phpgw_da.lang" url="projects/setup/phpgw_da.lang">
+</file>
+<file name="phpgw_de.lang" url="projects/setup/phpgw_de.lang">
+</file>
+<file name="phpgw_en.lang" url="projects/setup/phpgw_en.lang">
+</file>
+<file name="phpgw_es.lang" url="projects/setup/phpgw_es.lang">
+</file>
+<file name="phpgw_fr.lang" url="projects/setup/phpgw_fr.lang">
+</file>
+<file name="phpgw_it.lang" url="projects/setup/phpgw_it.lang">
+</file>
+<file name="phpgw_nl.lang" url="projects/setup/phpgw_nl.lang">
+</file>
+<file name="phpgw_pl.lang" url="projects/setup/phpgw_pl.lang">
+</file>
+<file name="phpgw_pt.lang" url="projects/setup/phpgw_pt.lang">
+</file>
+<file name="phpgw_sv.lang" url="projects/setup/phpgw_sv.lang">
+</file>
+<file name="phpgw_zh.lang" url="projects/setup/phpgw_zh.lang">
+</file>
+<file name="phpgw_zt.lang" url="projects/setup/phpgw_zt.lang">
+</file>
+<file name="setup.inc.php" url="projects/setup/setup.inc.php">
+</file>
+<file name="tables_baseline.inc.php"
url="projects/setup/tables_baseline.inc.php">
+</file>
+<file name="tables_current.inc.php"
url="projects/setup/tables_current.inc.php">
+</file>
+<file name="tables_update.inc.php" url="projects/setup/tables_update.inc.php">
+</file>
+</folder>
+<folder name="templates" url="projects/templates">
+<folder name="default" url="projects/templates/default">
+<file name="addressbook.tpl" url="projects/templates/default/addressbook.tpl">
+</file>
+<file name="archive.tpl" url="projects/templates/default/archive.tpl">
+</file>
+<file name="bill_invoiceform.tpl"
url="projects/templates/default/bill_invoiceform.tpl">
+</file>
+<file name="bill_list.tpl" url="projects/templates/default/bill_list.tpl">
+</file>
+<file name="bill_listhours.tpl"
url="projects/templates/default/bill_listhours.tpl">
+</file>
+<file name="bill_listinvoice.tpl"
url="projects/templates/default/bill_listinvoice.tpl">
+</file>
+<file name="config.tpl" url="projects/templates/default/config.tpl">
+</file>
+<file name="del_deliveryform.tpl"
url="projects/templates/default/del_deliveryform.tpl">
+</file>
+<file name="del_listhours.tpl"
url="projects/templates/default/del_listhours.tpl">
+</file>
+<file name="delete.tpl" url="projects/templates/default/delete.tpl">
+</file>
+<file name="form.tpl" url="projects/templates/default/form.tpl">
+</file>
+<file name="form_admin.tpl" url="projects/templates/default/form_admin.tpl">
+</file>
+<file name="form_mstone.tpl" url="projects/templates/default/form_mstone.tpl">
+</file>
+<file name="formactivity.tpl"
url="projects/templates/default/formactivity.tpl">
+</file>
+<file name="header.tpl" url="projects/templates/default/header.tpl">
+</file>
+<file name="hours_formhours.tpl"
url="projects/templates/default/hours_formhours.tpl">
+</file>
+<file name="hours_listhours.tpl"
url="projects/templates/default/hours_listhours.tpl">
+</file>
+<file name="hours_view.tpl" url="projects/templates/default/hours_view.tpl">
+</file>
+<file name="list.tpl" url="projects/templates/default/list.tpl">
+</file>
+<file name="list_admin.tpl" url="projects/templates/default/list_admin.tpl">
+</file>
+<file name="list_budget.tpl" url="projects/templates/default/list_budget.tpl">
+</file>
+<file name="list_pcosts.tpl" url="projects/templates/default/list_pcosts.tpl">
+</file>
+<file name="listactivities.tpl"
url="projects/templates/default/listactivities.tpl">
+</file>
+<file name="preference_acl.tpl"
url="projects/templates/default/preference_acl.tpl">
+</file>
+<file name="preference_acl_row.tpl"
url="projects/templates/default/preference_acl_row.tpl">
+</file>
+<file name="preference_colspan.tpl"
url="projects/templates/default/preference_colspan.tpl">
+</file>
+<file name="preferences.tpl" url="projects/templates/default/preferences.tpl">
+</file>
+<file name="stats_projectlist.tpl"
url="projects/templates/default/stats_projectlist.tpl">
+</file>
+<file name="stats_projectstat.tpl"
url="projects/templates/default/stats_projectstat.tpl">
+</file>
+<file name="stats_userlist.tpl"
url="projects/templates/default/stats_userlist.tpl">
+</file>
+<file name="stats_userstat.tpl"
url="projects/templates/default/stats_userstat.tpl">
+</file>
+<file name="view.tpl" url="projects/templates/default/view.tpl">
+</file>
+<folder name="images" url="projects/templates/default/images">
+<file name="navbar.gif" url="projects/templates/default/images/navbar.gif">
+</file>
+<file name="navbar.png" url="projects/templates/default/images/navbar.png">
+</file>
+</folder>
+</folder>
+<folder name="idots" url="projects/templates/idots">
+<folder name="images" url="projects/templates/idots/images">
+<file name="navbar.png" url="projects/templates/idots/images/navbar.png">
+</file>
+</folder>
+</folder>
+<folder name="idsociety" url="projects/templates/idsociety">
+<folder name="images" url="projects/templates/idsociety/images">
+<file name="navbar-over.gif"
url="projects/templates/idsociety/images/navbar-over.gif">
+</file>
+<file name="navbar-over.png"
url="projects/templates/idsociety/images/navbar-over.png">
+</file>
+<file name="navbar.gif" url="projects/templates/idsociety/images/navbar.gif">
+</file>
+<file name="navbar.png" url="projects/templates/idsociety/images/navbar.png">
+</file>
+</folder>
+</folder>
+</folder>
+</folder>
+<folder name="setup">
+<preference-set id="">
+ <string id="import_dirname">Q:\public_html\phpgw_0_9_16\setup</string>
+</preference-set>
+<file name="applications.php" url="setup/applications.php">
+</file>
+<file name="applist.php" url="setup/applist.php">
+</file>
+<file name="config.php" url="setup/config.php">
+</file>
+<file name="index.php" url="setup/index.php">
+</file>
+<file name="lang.php" url="setup/lang.php">
+</file>
+<file name="ldap.php" url="setup/ldap.php">
+</file>
+<file name="ldapexport.php" url="setup/ldapexport.php">
+</file>
+<file name="ldapimport.php" url="setup/ldapimport.php">
+</file>
+<file name="ldapmodify.php" url="setup/ldapmodify.php">
+</file>
+<file name="manageheader.php" url="setup/manageheader.php">
+</file>
+<file name="schematoy.php" url="setup/schematoy.php">
+</file>
+<file name="setup_demo.php" url="setup/setup_demo.php">
+</file>
+<file name="sqltoarray.php" url="setup/sqltoarray.php">
+</file>
+<file name="versions.inc.php" url="setup/versions.inc.php">
+</file>
+<file name="bulk.php" url="setup/bulk.php">
+</file>
+<folder name="doc" url="setup/doc">
+<file name="README.inc" url="setup/doc/README.inc">
+</file>
+<file name="README.lang" url="setup/doc/README.lang">
+</file>
+<file name="copyright.gpl" url="setup/doc/copyright.gpl">
+</file>
+<file name="setup3-1.html" url="setup/doc/setup3-1.html">
+</file>
+<file name="setup3-2.html" url="setup/doc/setup3-2.html">
+</file>
+<file name="setup3-3.html" url="setup/doc/setup3-3.html">
+</file>
+<file name="setup3-4.html" url="setup/doc/setup3-4.html">
+</file>
+<file name="setup3.dvi" url="setup/doc/setup3.dvi">
+</file>
+<file name="setup3.html" url="setup/doc/setup3.html">
+</file>
+<file name="setup3.lyx" url="setup/doc/setup3.lyx">
+</file>
+<file name="setup3.pdf" url="setup/doc/setup3.pdf">
+</file>
+<file name="setup3.ps" url="setup/doc/setup3.ps">
+</file>
+<file name="setup3.rtf" url="setup/doc/setup3.rtf">
+</file>
+<file name="setup3.sgml" url="setup/doc/setup3.sgml">
+</file>
+<file name="setup3.txt" url="setup/doc/setup3.txt">
+</file>
+</folder>
+<folder name="inc" url="setup/inc">
+<file name="class.Template.inc.php" url="setup/inc/class.Template.inc.php">
+</file>
+<file name="functions.inc.php" url="setup/inc/functions.inc.php">
+</file>
+<file name="hook_config.inc.php" url="setup/inc/hook_config.inc.php">
+</file>
+</folder>
+<folder name="lang" url="setup/lang">
+<file name="languages" url="setup/lang/languages">
+</file>
+<file name="newheaderlangs" url="setup/lang/newheaderlangs">
+</file>
+<file name="phpgw_de.lang" url="setup/lang/phpgw_de.lang">
+</file>
+<file name="phpgw_en.lang" url="setup/lang/phpgw_en.lang">
+</file>
+<file name="phpgw_es.lang" url="setup/lang/phpgw_es.lang">
+</file>
+<file name="phpgw_fi.lang" url="setup/lang/phpgw_fi.lang">
+</file>
+<file name="phpgw_fr.lang" url="setup/lang/phpgw_fr.lang">
+</file>
+<file name="phpgw_it.lang" url="setup/lang/phpgw_it.lang">
+</file>
+<file name="phpgw_ja.lang" url="setup/lang/phpgw_ja.lang">
+</file>
+<file name="phpgw_pl.lang" url="setup/lang/phpgw_pl.lang">
+</file>
+<file name="phpgw_pt.lang" url="setup/lang/phpgw_pt.lang">
+</file>
+<file name="phpgw_zh.lang" url="setup/lang/phpgw_zh.lang">
+</file>
+<file name="phpgw_zt.lang" url="setup/lang/phpgw_zt.lang">
+</file>
+</folder>
+<folder name="templates" url="setup/templates">
+<folder name="default" url="setup/templates/default">
+<file name="applications.tpl" url="setup/templates/default/applications.tpl">
+</file>
+<file name="applist.tpl" url="setup/templates/default/applist.tpl">
+</file>
+<file name="arraydl.tpl" url="setup/templates/default/arraydl.tpl">
+</file>
+<file name="config.tpl" url="setup/templates/default/config.tpl">
+</file>
+<file name="config_post_script.tpl"
url="setup/templates/default/config_post_script.tpl">
+</file>
+<file name="config_pre_script.tpl"
url="setup/templates/default/config_pre_script.tpl">
+</file>
+<file name="footer.tpl" url="setup/templates/default/footer.tpl">
+</file>
+<file name="head.tpl" url="setup/templates/default/head.tpl">
+</file>
+<file name="lang_main.tpl" url="setup/templates/default/lang_main.tpl">
+</file>
+<file name="ldap.tpl" url="setup/templates/default/ldap.tpl">
+</file>
+<file name="login_main.tpl" url="setup/templates/default/login_main.tpl">
+</file>
+<file name="login_stage_header.tpl"
url="setup/templates/default/login_stage_header.tpl">
+</file>
+<file name="manageheader.tpl" url="setup/templates/default/manageheader.tpl">
+</file>
+<file name="msg_alert_msg.tpl" url="setup/templates/default/msg_alert_msg.tpl">
+</file>
+<file name="schema.tpl" url="setup/templates/default/schema.tpl">
+</file>
+<file name="setup_db_blocks.tpl"
url="setup/templates/default/setup_db_blocks.tpl">
+</file>
+<file name="setup_demo.tpl" url="setup/templates/default/setup_demo.tpl">
+</file>
+<file name="setup_main.tpl" url="setup/templates/default/setup_main.tpl">
+</file>
+<file name="sqltoarray.tpl" url="setup/templates/default/sqltoarray.tpl">
+</file>
+<file name="bulk.tpl" url="setup/templates/default/bulk.tpl">
+</file>
+<folder name="images" url="setup/templates/default/images">
+<file name="check.png" url="setup/templates/default/images/check.png">
+</file>
+<file name="completed.png" url="setup/templates/default/images/completed.png">
+</file>
+<file name="dep.png" url="setup/templates/default/images/dep.png">
+</file>
+<file name="incomplete.png"
url="setup/templates/default/images/incomplete.png">
+</file>
+<file name="table.png" url="setup/templates/default/images/table.png">
+</file>
+</folder>
+</folder>
+</folder>
+<folder name="tools" url="setup/tools">
+<file name="splitlang.pl.txt" url="setup/tools/splitlang.pl.txt">
+</file>
+<file name="sqltolang.pl.txt" url="setup/tools/sqltolang.pl.txt">
+</file>
+<file name="versions.pl.txt" url="setup/tools/versions.pl.txt">
+</file>
+</folder>
+</folder>
+<folder name="sitemgr">
+<preference-set id="">
+ <string id="import_dirname">Q:\public_html\phpgw_0_9_16\sitemgr</string>
+</preference-set>
+<file name="index.php" url="sitemgr/index.php">
+</file>
+<file name="README" url="sitemgr/README">
+</file>
+<folder name="doc" url="sitemgr/doc">
+<file name="hooks-requirements.txt" url="sitemgr/doc/hooks-requirements.txt">
+</file>
+<file name="makedoc.sh" url="sitemgr/doc/makedoc.sh">
+</file>
+<file name="sitemgr.html" url="sitemgr/doc/sitemgr.html">
+</file>
+<file name="sitemgr.lyx" url="sitemgr/doc/sitemgr.lyx">
+</file>
+<file name="sitemgr.pdf" url="sitemgr/doc/sitemgr.pdf">
+</file>
+<file name="sitemgr.sgml" url="sitemgr/doc/sitemgr.sgml">
+</file>
+</folder>
+<folder name="inc" url="sitemgr/inc">
+<file name="class.ACL_BO.inc.php" url="sitemgr/inc/class.ACL_BO.inc.php">
+</file>
+<file name="class.ACL_SO.inc.php" url="sitemgr/inc/class.ACL_SO.inc.php">
+</file>
+<file name="class.Block_SO.inc.php" url="sitemgr/inc/class.Block_SO.inc.php">
+</file>
+<file name="class.Categories_BO.inc.php"
url="sitemgr/inc/class.Categories_BO.inc.php">
+</file>
+<file name="class.Categories_SO.inc.php"
url="sitemgr/inc/class.Categories_SO.inc.php">
+</file>
+<file name="class.Categories_UI.inc.php"
url="sitemgr/inc/class.Categories_UI.inc.php">
+</file>
+<file name="class.Category_SO.inc.php"
url="sitemgr/inc/class.Category_SO.inc.php">
+</file>
+<file name="class.Common_BO.inc.php" url="sitemgr/inc/class.Common_BO.inc.php">
+</file>
+<file name="class.Common_UI.inc.php" url="sitemgr/inc/class.Common_UI.inc.php">
+</file>
+<file name="class.Content_BO.inc.php"
url="sitemgr/inc/class.Content_BO.inc.php">
+</file>
+<file name="class.Content_SO.inc.php"
url="sitemgr/inc/class.Content_SO.inc.php">
+</file>
+<file name="class.Content_UI.inc.php"
url="sitemgr/inc/class.Content_UI.inc.php">
+</file>
+<file name="class.Modules_BO.inc.php"
url="sitemgr/inc/class.Modules_BO.inc.php">
+</file>
+<file name="class.Modules_SO.inc.php"
url="sitemgr/inc/class.Modules_SO.inc.php">
+</file>
+<file name="class.Modules_UI.inc.php"
url="sitemgr/inc/class.Modules_UI.inc.php">
+</file>
+<file name="class.Outline_UI.inc.php"
url="sitemgr/inc/class.Outline_UI.inc.php">
+</file>
+<file name="class.Page_SO.inc.php" url="sitemgr/inc/class.Page_SO.inc.php">
+</file>
+<file name="class.Pages_BO.inc.php" url="sitemgr/inc/class.Pages_BO.inc.php">
+</file>
+<file name="class.Pages_SO.inc.php" url="sitemgr/inc/class.Pages_SO.inc.php">
+</file>
+<file name="class.Pages_UI.inc.php" url="sitemgr/inc/class.Pages_UI.inc.php">
+</file>
+<file name="class.Sites_BO.inc.php" url="sitemgr/inc/class.Sites_BO.inc.php">
+</file>
+<file name="class.Sites_SO.inc.php" url="sitemgr/inc/class.Sites_SO.inc.php">
+</file>
+<file name="class.Sites_UI.inc.php" url="sitemgr/inc/class.Sites_UI.inc.php">
+</file>
+<file name="class.Theme_BO.inc.php" url="sitemgr/inc/class.Theme_BO.inc.php">
+</file>
+<file name="class.Translations_UI.inc.php"
url="sitemgr/inc/class.Translations_UI.inc.php">
+</file>
+<file name="class.browser_transform.inc.php"
url="sitemgr/inc/class.browser_transform.inc.php">
+</file>
+<file name="class.module.inc.php" url="sitemgr/inc/class.module.inc.php">
+</file>
+<file name="class.xmltool2.inc.php" url="sitemgr/inc/class.xmltool2.inc.php">
+</file>
+<file name="class.xslt_transform.inc.php"
url="sitemgr/inc/class.xslt_transform.inc.php">
+</file>
+<file name="hook_about.inc.php" url="sitemgr/inc/hook_about.inc.php">
+</file>
+<file name="hook_add_def_pref.inc.php"
url="sitemgr/inc/hook_add_def_pref.inc.php">
+</file>
+<file name="hook_admin.inc.php" url="sitemgr/inc/hook_admin.inc.php">
+</file>
+<file name="hook_preferences.inc.php"
url="sitemgr/inc/hook_preferences.inc.php">
+</file>
+<file name="hook_sidebox_menu.inc.php"
url="sitemgr/inc/hook_sidebox_menu.inc.php">
+</file>
+</folder>
+<folder name="modules" url="sitemgr/modules">
+<file name="class.module_administration.inc.php"
url="sitemgr/modules/class.module_administration.inc.php">
+</file>
+<file name="class.module_amazon.inc.php"
url="sitemgr/modules/class.module_amazon.inc.php">
+</file>
+<file name="class.module_appdir.inc.php"
url="sitemgr/modules/class.module_appdir.inc.php">
+</file>
+<file name="class.module_bookmarks.inc.php"
url="sitemgr/modules/class.module_bookmarks.inc.php">
+</file>
+<file name="class.module_calendar.inc.php"
url="sitemgr/modules/class.module_calendar.inc.php">
+</file>
+<file name="class.module_currentsection.inc.php"
url="sitemgr/modules/class.module_currentsection.inc.php">
+</file>
+<file name="class.module_download.inc.php"
url="sitemgr/modules/class.module_download.inc.php">
+</file>
+<file name="class.module_filecontents.inc.php"
url="sitemgr/modules/class.module_filecontents.inc.php">
+</file>
+<file name="class.module_forum.inc.php"
url="sitemgr/modules/class.module_forum.inc.php">
+</file>
+<file name="class.module_galerie.inc.php"
url="sitemgr/modules/class.module_galerie.inc.php">
+</file>
+<file name="class.module_google.inc.php"
url="sitemgr/modules/class.module_google.inc.php">
+</file>
+<file name="class.module_hello.inc.php"
url="sitemgr/modules/class.module_hello.inc.php">
+</file>
+<file name="class.module_html.inc.php"
url="sitemgr/modules/class.module_html.inc.php">
+</file>
+<file name="class.module_index.inc.php"
url="sitemgr/modules/class.module_index.inc.php">
+</file>
+<file name="class.module_index_block.inc.php"
url="sitemgr/modules/class.module_index_block.inc.php">
+</file>
+<file name="class.module_lang_block.inc.php"
url="sitemgr/modules/class.module_lang_block.inc.php">
+</file>
+<file name="class.module_login.inc.php"
url="sitemgr/modules/class.module_login.inc.php">
+</file>
+<file name="class.module_news.inc.php"
url="sitemgr/modules/class.module_news.inc.php">
+</file>
+<file name="class.module_redirect.inc.php"
url="sitemgr/modules/class.module_redirect.inc.php">
+</file>
+<file name="class.module_sitetree.inc.php"
url="sitemgr/modules/class.module_sitetree.inc.php">
+</file>
+<file name="class.module_toc.inc.php"
url="sitemgr/modules/class.module_toc.inc.php">
+</file>
+<file name="class.module_toc_block.inc.php"
url="sitemgr/modules/class.module_toc_block.inc.php">
+</file>
+<file name="class.module_xml.inc.php"
url="sitemgr/modules/class.module_xml.inc.php">
+</file>
+<folder name="sitemgr_module_guestbook"
url="sitemgr/modules/sitemgr_module_guestbook">
+<file name="INSTALL" url="sitemgr/modules/sitemgr_module_guestbook/INSTALL">
+</file>
+<file name="README" url="sitemgr/modules/sitemgr_module_guestbook/README">
+</file>
+<folder name="inc" url="sitemgr/modules/sitemgr_module_guestbook/inc">
+<file name="class.guestbook_BO.inc.php"
url="sitemgr/modules/sitemgr_module_guestbook/inc/class.guestbook_BO.inc.php">
+</file>
+<file name="class.guestbook_SO.inc.php"
url="sitemgr/modules/sitemgr_module_guestbook/inc/class.guestbook_SO.inc.php">
+</file>
+</folder>
+<folder name="setup" url="sitemgr/modules/sitemgr_module_guestbook/setup">
+<file name="setup.inc.php"
url="sitemgr/modules/sitemgr_module_guestbook/setup/setup.inc.php">
+</file>
+<file name="tables_current.inc.php"
url="sitemgr/modules/sitemgr_module_guestbook/setup/tables_current.inc.php">
+</file>
+</folder>
+</folder>
+</folder>
+<folder name="setup" url="sitemgr/setup">
+<file name="default_records.inc.php"
url="sitemgr/setup/default_records.inc.php">
+</file>
+<file name="phpgw_de.lang" url="sitemgr/setup/phpgw_de.lang">
+</file>
+<file name="phpgw_en.lang" url="sitemgr/setup/phpgw_en.lang">
+</file>
+<file name="phpgw_fr.lang" url="sitemgr/setup/phpgw_fr.lang">
+</file>
+<file name="phpgw_sv.lang" url="sitemgr/setup/phpgw_sv.lang">
+</file>
+<file name="setup.inc.php" url="sitemgr/setup/setup.inc.php">
+</file>
+<file name="tables_baseline.inc.php"
url="sitemgr/setup/tables_baseline.inc.php">
+</file>
+<file name="tables_current.inc.php" url="sitemgr/setup/tables_current.inc.php">
+</file>
+<file name="tables_update.inc.php" url="sitemgr/setup/tables_update.inc.php">
+</file>
+</folder>
+<folder name="sitemgr-link" url="sitemgr/sitemgr-link">
+<file name="index.php" url="sitemgr/sitemgr-link/index.php">
+</file>
+<folder name="inc" url="sitemgr/sitemgr-link/inc">
+<file name="hook_preferences.inc.php"
url="sitemgr/sitemgr-link/inc/hook_preferences.inc.php">
+</file>
+<file name="hook_settings.inc.php"
url="sitemgr/sitemgr-link/inc/hook_settings.inc.php">
+</file>
+</folder>
+<folder name="setup" url="sitemgr/sitemgr-link/setup">
+<file name="phpgw_en.lang" url="sitemgr/sitemgr-link/setup/phpgw_en.lang">
+</file>
+<file name="phpgw_fr.lang" url="sitemgr/sitemgr-link/setup/phpgw_fr.lang">
+</file>
+<file name="setup.inc.php" url="sitemgr/sitemgr-link/setup/setup.inc.php">
+</file>
+<file name="tables_baseline.inc.php"
url="sitemgr/sitemgr-link/setup/tables_baseline.inc.php">
+</file>
+<file name="tables_current.inc.php"
url="sitemgr/sitemgr-link/setup/tables_current.inc.php">
+</file>
+<file name="tables_update.inc.php"
url="sitemgr/sitemgr-link/setup/tables_update.inc.php">
+</file>
+</folder>
+<folder name="templates" url="sitemgr/sitemgr-link/templates">
+<folder name="default" url="sitemgr/sitemgr-link/templates/default">
+<folder name="images" url="sitemgr/sitemgr-link/templates/default/images">
+<file name="navbar.gif"
url="sitemgr/sitemgr-link/templates/default/images/navbar.gif">
+</file>
+<file name="navbar.png"
url="sitemgr/sitemgr-link/templates/default/images/navbar.png">
+</file>
+</folder>
+</folder>
+<folder name="idots" url="sitemgr/sitemgr-link/templates/idots">
+<folder name="images" url="sitemgr/sitemgr-link/templates/idots/images">
+<file name="navbar.png"
url="sitemgr/sitemgr-link/templates/idots/images/navbar.png">
+</file>
+</folder>
+</folder>
+<folder name="idsociety" url="sitemgr/sitemgr-link/templates/idsociety">
+<folder name="images" url="sitemgr/sitemgr-link/templates/idsociety/images">
+<file name="navbar-over.gif"
url="sitemgr/sitemgr-link/templates/idsociety/images/navbar-over.gif">
+</file>
+<file name="navbar-over.png"
url="sitemgr/sitemgr-link/templates/idsociety/images/navbar-over.png">
+</file>
+<file name="navbar.gif"
url="sitemgr/sitemgr-link/templates/idsociety/images/navbar.gif">
+</file>
+<file name="navbar.png"
url="sitemgr/sitemgr-link/templates/idsociety/images/navbar.png">
+</file>
+</folder>
+</folder>
+</folder>
+</folder>
+<folder name="sitemgr-site" url="sitemgr/sitemgr-site">
+<file name="config.inc.php" url="sitemgr/sitemgr-site/config.inc.php">
+</file>
+<file name="functions.inc.php" url="sitemgr/sitemgr-site/functions.inc.php">
+</file>
+<file name="htaccess" url="sitemgr/sitemgr-site/htaccess">
+</file>
+<file name="index.php" url="sitemgr/sitemgr-site/index.php">
+</file>
+<file name="security.inc.php" url="sitemgr/sitemgr-site/security.inc.php">
+</file>
+<folder name="images" url="sitemgr/sitemgr-site/images">
+<file name="Google_25wht.gif"
url="sitemgr/sitemgr-site/images/Google_25wht.gif">
+</file>
+<file name="blackpixel.gif" url="sitemgr/sitemgr-site/images/blackpixel.gif">
+</file>
+<file name="blue.gif" url="sitemgr/sitemgr-site/images/blue.gif">
+</file>
+<file name="bluehalf.gif" url="sitemgr/sitemgr-site/images/bluehalf.gif">
+</file>
+<file name="center_l.gif" url="sitemgr/sitemgr-site/images/center_l.gif">
+</file>
+<file name="center_r.gif" url="sitemgr/sitemgr-site/images/center_r.gif">
+</file>
+<file name="css.gif" url="sitemgr/sitemgr-site/images/css.gif">
+</file>
+<file name="dot.gif" url="sitemgr/sitemgr-site/images/dot.gif">
+</file>
+<file name="down.gif" url="sitemgr/sitemgr-site/images/down.gif">
+</file>
+<file name="eyes.gif" url="sitemgr/sitemgr-site/images/eyes.gif">
+</file>
+<file name="friend.gif" url="sitemgr/sitemgr-site/images/friend.gif">
+</file>
+<file name="green_dot.gif" url="sitemgr/sitemgr-site/images/green_dot.gif">
+</file>
+<file name="html401.gif" url="sitemgr/sitemgr-site/images/html401.gif">
+</file>
+<file name="index.html" url="sitemgr/sitemgr-site/images/index.html">
+</file>
+<file name="manual.jpg" url="sitemgr/sitemgr-site/images/manual.jpg">
+</file>
+<file name="netscape.gif" url="sitemgr/sitemgr-site/images/netscape.gif">
+</file>
+<file name="new_3day.gif" url="sitemgr/sitemgr-site/images/new_3day.gif">
+</file>
+<file name="new_day.gif" url="sitemgr/sitemgr-site/images/new_day.gif">
+</file>
+<file name="new_week.gif" url="sitemgr/sitemgr-site/images/new_week.gif">
+</file>
+<file name="pix.gif" url="sitemgr/sitemgr-site/images/pix.gif">
+</file>
+<file name="print.gif" url="sitemgr/sitemgr-site/images/print.gif">
+</file>
+<file name="red_dot.gif" url="sitemgr/sitemgr-site/images/red_dot.gif">
+</file>
+<file name="star.gif" url="sitemgr/sitemgr-site/images/star.gif">
+</file>
+<file name="tree_collapse.gif"
url="sitemgr/sitemgr-site/images/tree_collapse.gif">
+</file>
+<file name="tree_expand.gif" url="sitemgr/sitemgr-site/images/tree_expand.gif">
+</file>
+<file name="up.gif" url="sitemgr/sitemgr-site/images/up.gif">
+</file>
+<folder name="amazon" url="sitemgr/sitemgr-site/images/amazon">
+<file name="0072127317.jpg"
url="sitemgr/sitemgr-site/images/amazon/0072127317.jpg">
+</file>
+<file name="0072133716.jpg"
url="sitemgr/sitemgr-site/images/amazon/0072133716.jpg">
+</file>
+<file name="0072170743.jpg"
url="sitemgr/sitemgr-site/images/amazon/0072170743.jpg">
+</file>
+<file name="0130191140.jpg"
url="sitemgr/sitemgr-site/images/amazon/0130191140.jpg">
+</file>
+<file name="0130661902.jpg"
url="sitemgr/sitemgr-site/images/amazon/0130661902.jpg">
+</file>
+<file name="0130889032.jpg"
url="sitemgr/sitemgr-site/images/amazon/0130889032.jpg">
+</file>
+<file name="0130893986.jpg"
url="sitemgr/sitemgr-site/images/amazon/0130893986.jpg">
+</file>
+<file name="0201702533.jpg"
url="sitemgr/sitemgr-site/images/amazon/0201702533.jpg">
+</file>
+<file name="0672317842.jpg"
url="sitemgr/sitemgr-site/images/amazon/0672317842.jpg">
+</file>
+<file name="0672323257.jpg"
url="sitemgr/sitemgr-site/images/amazon/0672323257.jpg">
+</file>
+<file name="0735611858.jpg"
url="sitemgr/sitemgr-site/images/amazon/0735611858.jpg">
+</file>
+<file name="0735709211.jpg"
url="sitemgr/sitemgr-site/images/amazon/0735709211.jpg">
+</file>
+<file name="0735709246.jpg"
url="sitemgr/sitemgr-site/images/amazon/0735709246.jpg">
+</file>
+<file name="073570970X.jpg"
url="sitemgr/sitemgr-site/images/amazon/073570970X.jpg">
+</file>
+<file name="0735710546.jpg"
url="sitemgr/sitemgr-site/images/amazon/0735710546.jpg">
+</file>
+<file name="076152407X.jpg"
url="sitemgr/sitemgr-site/images/amazon/076152407X.jpg">
+</file>
+<file name="076152729X.jpg"
url="sitemgr/sitemgr-site/images/amazon/076152729X.jpg">
+</file>
+<file name="0764533428.jpg"
url="sitemgr/sitemgr-site/images/amazon/0764533428.jpg">
+</file>
+<file name="0764533983.jpg"
url="sitemgr/sitemgr-site/images/amazon/0764533983.jpg">
+</file>
+<file name="0764534734.jpg"
url="sitemgr/sitemgr-site/images/amazon/0764534734.jpg">
+</file>
+<file name="0764535374.jpg"
url="sitemgr/sitemgr-site/images/amazon/0764535374.jpg">
+</file>
+<file name="076454716X.jpg"
url="sitemgr/sitemgr-site/images/amazon/076454716X.jpg">
+</file>
+<file name="0767025520.jpg"
url="sitemgr/sitemgr-site/images/amazon/0767025520.jpg">
+</file>
+<file name="0780631315.jpg"
url="sitemgr/sitemgr-site/images/amazon/0780631315.jpg">
+</file>
+<file name="0780631323.jpg"
url="sitemgr/sitemgr-site/images/amazon/0780631323.jpg">
+</file>
+<file name="0782129242.jpg"
url="sitemgr/sitemgr-site/images/amazon/0782129242.jpg">
+</file>
+<file name="0783225814.jpg"
url="sitemgr/sitemgr-site/images/amazon/0783225814.jpg">
+</file>
+<file name="0789724405.jpg"
url="sitemgr/sitemgr-site/images/amazon/0789724405.jpg">
+</file>
+<file name="0790733226.jpg"
url="sitemgr/sitemgr-site/images/amazon/0790733226.jpg">
+</file>
+<file name="1565924940.jpg"
url="sitemgr/sitemgr-site/images/amazon/1565924940.jpg">
+</file>
+<file name="1578310113.jpg"
url="sitemgr/sitemgr-site/images/amazon/1578310113.jpg">
+</file>
+<file name="1588800539.jpg"
url="sitemgr/sitemgr-site/images/amazon/1588800539.jpg">
+</file>
+<file name="1861002963.jpg"
url="sitemgr/sitemgr-site/images/amazon/1861002963.jpg">
+</file>
+<file name="1861003730.jpg"
url="sitemgr/sitemgr-site/images/amazon/1861003730.jpg">
+</file>
+<file name="1861005598.jpg"
url="sitemgr/sitemgr-site/images/amazon/1861005598.jpg">
+</file>
+<file name="1861006918.jpg"
url="sitemgr/sitemgr-site/images/amazon/1861006918.jpg">
+</file>
+<file name="1930110065.jpg"
url="sitemgr/sitemgr-site/images/amazon/1930110065.jpg">
+</file>
+<file name="6304981635.gif"
url="sitemgr/sitemgr-site/images/amazon/6304981635.gif">
+</file>
+<file name="6305519471.gif"
url="sitemgr/sitemgr-site/images/amazon/6305519471.gif">
+</file>
+<file name="6305879974.jpg"
url="sitemgr/sitemgr-site/images/amazon/6305879974.jpg">
+</file>
+<file name="B00000ID1X.jpg"
url="sitemgr/sitemgr-site/images/amazon/B00000ID1X.jpg">
+</file>
+<file name="B00000K19E.jpg"
url="sitemgr/sitemgr-site/images/amazon/B00000K19E.jpg">
+</file>
+<file name="B00003CX5P.jpg"
url="sitemgr/sitemgr-site/images/amazon/B00003CX5P.jpg">
+</file>
+<file name="B00003CX8J.jpg"
url="sitemgr/sitemgr-site/images/amazon/B00003CX8J.jpg">
+</file>
+<file name="B00003CX95.jpg"
url="sitemgr/sitemgr-site/images/amazon/B00003CX95.jpg">
+</file>
+<file name="B00003CXB1.jpg"
url="sitemgr/sitemgr-site/images/amazon/B00003CXB1.jpg">
+</file>
+<file name="B00003CXE7.jpg"
url="sitemgr/sitemgr-site/images/amazon/B00003CXE7.jpg">
+</file>
+<file name="B00003CXQM.jpg"
url="sitemgr/sitemgr-site/images/amazon/B00003CXQM.jpg">
+</file>
+<file name="B00003CXTA.jpg"
url="sitemgr/sitemgr-site/images/amazon/B00003CXTA.jpg">
+</file>
+<file name="B00003CXTG.jpg"
url="sitemgr/sitemgr-site/images/amazon/B00003CXTG.jpg">
+</file>
+<file name="B00003CXXJ.jpg"
url="sitemgr/sitemgr-site/images/amazon/B00003CXXJ.jpg">
+</file>
+<file name="B00003CXXS.jpg"
url="sitemgr/sitemgr-site/images/amazon/B00003CXXS.jpg">
+</file>
+<file name="B00003CXXV.jpg"
url="sitemgr/sitemgr-site/images/amazon/B00003CXXV.jpg">
+</file>
+<file name="B00003CXZ1.jpg"
url="sitemgr/sitemgr-site/images/amazon/B00003CXZ1.jpg">
+</file>
+<file name="B00003CY5D.jpg"
url="sitemgr/sitemgr-site/images/amazon/B00003CY5D.jpg">
+</file>
+<file name="B00003Q43A.jpg"
url="sitemgr/sitemgr-site/images/amazon/B00003Q43A.jpg">
+</file>
+<file name="B00003RQND.jpg"
url="sitemgr/sitemgr-site/images/amazon/B00003RQND.jpg">
+</file>
+<file name="B00004TS0N.jpg"
url="sitemgr/sitemgr-site/images/amazon/B00004TS0N.jpg">
+</file>
+<file name="B00004U8H2.jpg"
url="sitemgr/sitemgr-site/images/amazon/B00004U8H2.jpg">
+</file>
+<file name="B00004U8JU.jpg"
url="sitemgr/sitemgr-site/images/amazon/B00004U8JU.jpg">
+</file>
+<file name="B00004U8JV.jpg"
url="sitemgr/sitemgr-site/images/amazon/B00004U8JV.jpg">
+</file>
+<file name="B00004Z4SU.jpg"
url="sitemgr/sitemgr-site/images/amazon/B00004Z4SU.jpg">
+</file>
+<file name="B000055ZOB.jpg"
url="sitemgr/sitemgr-site/images/amazon/B000055ZOB.jpg">
+</file>
+<file name="B000059H6O.jpg"
url="sitemgr/sitemgr-site/images/amazon/B000059H6O.jpg">
+</file>
+<file name="B000059H6U.jpg"
url="sitemgr/sitemgr-site/images/amazon/B000059H6U.jpg">
+</file>
+<file name="B000059TQ9.jpg"
url="sitemgr/sitemgr-site/images/amazon/B000059TQ9.jpg">
+</file>
+<file name="B00005AUDW.jpg"
url="sitemgr/sitemgr-site/images/amazon/B00005AUDW.jpg">
+</file>
+<file name="B00005BIFZ.jpg"
url="sitemgr/sitemgr-site/images/amazon/B00005BIFZ.jpg">
+</file>
+<file name="B00005MKL5.jpg"
url="sitemgr/sitemgr-site/images/amazon/B00005MKL5.jpg">
+</file>
+<file name="B00005ML6Y.jpg"
url="sitemgr/sitemgr-site/images/amazon/B00005ML6Y.jpg">
+</file>
+<file name="B00005NC6H.jpg"
url="sitemgr/sitemgr-site/images/amazon/B00005NC6H.jpg">
+</file>
+<file name="B00005OAZZ.jpg"
url="sitemgr/sitemgr-site/images/amazon/B00005OAZZ.jpg">
+</file>
+<file name="B00005QCYC.jpg"
url="sitemgr/sitemgr-site/images/amazon/B00005QCYC.jpg">
+</file>
+<file name="B00005U2KN.jpg"
url="sitemgr/sitemgr-site/images/amazon/B00005U2KN.jpg">
+</file>
+</folder>
+<folder name="powered" url="sitemgr/sitemgr-site/images/powered">
+<file name="apache.gif" url="sitemgr/sitemgr-site/images/powered/apache.gif">
+</file>
+<file name="corel.gif" url="sitemgr/sitemgr-site/images/powered/corel.gif">
+</file>
+<file name="gimp.gif" url="sitemgr/sitemgr-site/images/powered/gimp.gif">
+</file>
+<file name="index.html" url="sitemgr/sitemgr-site/images/powered/index.html">
+</file>
+<file name="linux.jpg" url="sitemgr/sitemgr-site/images/powered/linux.jpg">
+</file>
+<file name="mandrake.gif"
url="sitemgr/sitemgr-site/images/powered/mandrake.gif">
+</file>
+<file name="mandrake2.gif"
url="sitemgr/sitemgr-site/images/powered/mandrake2.gif">
+</file>
+<file name="mysql.gif" url="sitemgr/sitemgr-site/images/powered/mysql.gif">
+</file>
+<file name="mysql2.gif" url="sitemgr/sitemgr-site/images/powered/mysql2.gif">
+</file>
+<file name="nuke.gif" url="sitemgr/sitemgr-site/images/powered/nuke.gif">
+</file>
+<file name="php2.gif" url="sitemgr/sitemgr-site/images/powered/php2.gif">
+</file>
+<file name="php3.gif" url="sitemgr/sitemgr-site/images/powered/php3.gif">
+</file>
+<file name="phpbb.gif" url="sitemgr/sitemgr-site/images/powered/phpbb.gif">
+</file>
+<file name="phpbbint.gif"
url="sitemgr/sitemgr-site/images/powered/phpbbint.gif">
+</file>
+<file name="phpnuke.gif" url="sitemgr/sitemgr-site/images/powered/phpnuke.gif">
+</file>
+<file name="powered1.jpg"
url="sitemgr/sitemgr-site/images/powered/powered1.jpg">
+</file>
+<file name="powered2.jpg"
url="sitemgr/sitemgr-site/images/powered/powered2.jpg">
+</file>
+<file name="powered3.jpg"
url="sitemgr/sitemgr-site/images/powered/powered3.jpg">
+</file>
+<file name="powered4.jpg"
url="sitemgr/sitemgr-site/images/powered/powered4.jpg">
+</file>
+<file name="redhat.gif" url="sitemgr/sitemgr-site/images/powered/redhat.gif">
+</file>
+<file name="vi.gif" url="sitemgr/sitemgr-site/images/powered/vi.gif">
+</file>
+</folder>
+</folder>
+<folder name="inc" url="sitemgr/sitemgr-site/inc">
+<file name="class.Template3.inc.php"
url="sitemgr/sitemgr-site/inc/class.Template3.inc.php">
+</file>
+<file name="class.sitebo.inc.php"
url="sitemgr/sitemgr-site/inc/class.sitebo.inc.php">
+</file>
+<file name="class.ui.inc.php" url="sitemgr/sitemgr-site/inc/class.ui.inc.php">
+</file>
+<file name="meta.ui.inc.php" url="sitemgr/sitemgr-site/inc/meta.ui.inc.php">
+</file>
+<file name="phpnuke.compat.inc.php"
url="sitemgr/sitemgr-site/inc/phpnuke.compat.inc.php">
+</file>
+</folder>
+<folder name="templates" url="sitemgr/sitemgr-site/templates">
+<folder name="3D-Fantasy" url="sitemgr/sitemgr-site/templates/3D-Fantasy">
+<file name="draft_transform.inc.php"
url="sitemgr/sitemgr-site/templates/3D-Fantasy/draft_transform.inc.php">
+</file>
+<file name="edit_transform.inc.php"
url="sitemgr/sitemgr-site/templates/3D-Fantasy/edit_transform.inc.php">
+</file>
+<file name="left_bt.inc.php"
url="sitemgr/sitemgr-site/templates/3D-Fantasy/left_bt.inc.php">
+</file>
+<file name="main.tpl" url="sitemgr/sitemgr-site/templates/3D-Fantasy/main.tpl">
+</file>
+<file name="right_bt.inc.php"
url="sitemgr/sitemgr-site/templates/3D-Fantasy/right_bt.inc.php">
+</file>
+<folder name="images" url="sitemgr/sitemgr-site/templates/3D-Fantasy/images">
+<file name="backdot.gif"
url="sitemgr/sitemgr-site/templates/3D-Fantasy/images/backdot.gif">
+</file>
+<file name="down-left.gif"
url="sitemgr/sitemgr-site/templates/3D-Fantasy/images/down-left.gif">
+</file>
+<file name="down-left2.gif"
url="sitemgr/sitemgr-site/templates/3D-Fantasy/images/down-left2.gif">
+</file>
+<file name="down-left3.gif"
url="sitemgr/sitemgr-site/templates/3D-Fantasy/images/down-left3.gif">
+</file>
+<file name="down-right.gif"
url="sitemgr/sitemgr-site/templates/3D-Fantasy/images/down-right.gif">
+</file>
+<file name="down-right2.gif"
url="sitemgr/sitemgr-site/templates/3D-Fantasy/images/down-right2.gif">
+</file>
+<file name="down-right3.gif"
url="sitemgr/sitemgr-site/templates/3D-Fantasy/images/down-right3.gif">
+</file>
+<file name="down.gif"
url="sitemgr/sitemgr-site/templates/3D-Fantasy/images/down.gif">
+</file>
+<file name="down2.gif"
url="sitemgr/sitemgr-site/templates/3D-Fantasy/images/down2.gif">
+</file>
+<file name="down3.gif"
url="sitemgr/sitemgr-site/templates/3D-Fantasy/images/down3.gif">
+</file>
+<file name="left.gif"
url="sitemgr/sitemgr-site/templates/3D-Fantasy/images/left.gif">
+</file>
+<file name="left2.gif"
url="sitemgr/sitemgr-site/templates/3D-Fantasy/images/left2.gif">
+</file>
+<file name="left3.gif"
url="sitemgr/sitemgr-site/templates/3D-Fantasy/images/left3.gif">
+</file>
+<file name="leftbar.gif"
url="sitemgr/sitemgr-site/templates/3D-Fantasy/images/leftbar.gif">
+</file>
+<file name="logo.gif"
url="sitemgr/sitemgr-site/templates/3D-Fantasy/images/logo.gif">
+</file>
+<file name="mainbar.gif"
url="sitemgr/sitemgr-site/templates/3D-Fantasy/images/mainbar.gif">
+</file>
+<file name="middle-left.gif"
url="sitemgr/sitemgr-site/templates/3D-Fantasy/images/middle-left.gif">
+</file>
+<file name="middle-right.gif"
url="sitemgr/sitemgr-site/templates/3D-Fantasy/images/middle-right.gif">
+</file>
+<file name="middle.gif"
url="sitemgr/sitemgr-site/templates/3D-Fantasy/images/middle.gif">
+</file>
+<file name="right.gif"
url="sitemgr/sitemgr-site/templates/3D-Fantasy/images/right.gif">
+</file>
+<file name="right2.gif"
url="sitemgr/sitemgr-site/templates/3D-Fantasy/images/right2.gif">
+</file>
+<file name="right3.gif"
url="sitemgr/sitemgr-site/templates/3D-Fantasy/images/right3.gif">
+</file>
+<file name="rightbar.gif"
url="sitemgr/sitemgr-site/templates/3D-Fantasy/images/rightbar.gif">
+</file>
+<file name="up-left.gif"
url="sitemgr/sitemgr-site/templates/3D-Fantasy/images/up-left.gif">
+</file>
+<file name="up-left2.gif"
url="sitemgr/sitemgr-site/templates/3D-Fantasy/images/up-left2.gif">
+</file>
+<file name="up-right.gif"
url="sitemgr/sitemgr-site/templates/3D-Fantasy/images/up-right.gif">
+</file>
+<file name="up-right2.gif"
url="sitemgr/sitemgr-site/templates/3D-Fantasy/images/up-right2.gif">
+</file>
+<file name="up.gif"
url="sitemgr/sitemgr-site/templates/3D-Fantasy/images/up.gif">
+</file>
+<file name="up2.gif"
url="sitemgr/sitemgr-site/templates/3D-Fantasy/images/up2.gif">
+</file>
+</folder>
+<folder name="modules" url="sitemgr/sitemgr-site/templates/3D-Fantasy/modules">
+<folder name="news"
url="sitemgr/sitemgr-site/templates/3D-Fantasy/modules/news">
+<file name="newsblock.tpl"
url="sitemgr/sitemgr-site/templates/3D-Fantasy/modules/news/newsblock.tpl">
+</file>
+</folder>
+</folder>
+<folder name="style" url="sitemgr/sitemgr-site/templates/3D-Fantasy/style">
+<file name="style.css"
url="sitemgr/sitemgr-site/templates/3D-Fantasy/style/style.css">
+</file>
+</folder>
+</folder>
+<folder name="NukeNews" url="sitemgr/sitemgr-site/templates/NukeNews">
+<file name="draft_transform.inc.php"
url="sitemgr/sitemgr-site/templates/NukeNews/draft_transform.inc.php">
+</file>
+<file name="edit_transform.inc.php"
url="sitemgr/sitemgr-site/templates/NukeNews/edit_transform.inc.php">
+</file>
+<file name="left_bt.inc.php"
url="sitemgr/sitemgr-site/templates/NukeNews/left_bt.inc.php">
+</file>
+<file name="main.tpl" url="sitemgr/sitemgr-site/templates/NukeNews/main.tpl">
+</file>
+<file name="right_bt.inc.php"
url="sitemgr/sitemgr-site/templates/NukeNews/right_bt.inc.php">
+</file>
+<folder name="images" url="sitemgr/sitemgr-site/templates/NukeNews/images">
+<file name="corner-bottom-left.gif"
url="sitemgr/sitemgr-site/templates/NukeNews/images/corner-bottom-left.gif">
+</file>
+<file name="corner-bottom-right.gif"
url="sitemgr/sitemgr-site/templates/NukeNews/images/corner-bottom-right.gif">
+</file>
+<file name="corner-top-left.gif"
url="sitemgr/sitemgr-site/templates/NukeNews/images/corner-top-left.gif">
+</file>
+<file name="corner-top-right.gif"
url="sitemgr/sitemgr-site/templates/NukeNews/images/corner-top-right.gif">
+</file>
+<file name="index.html"
url="sitemgr/sitemgr-site/templates/NukeNews/images/index.html">
+</file>
+<file name="leftbar.gif"
url="sitemgr/sitemgr-site/templates/NukeNews/images/leftbar.gif">
+</file>
+<file name="logo.gif"
url="sitemgr/sitemgr-site/templates/NukeNews/images/logo.gif">
+</file>
+<file name="mainbar.gif"
url="sitemgr/sitemgr-site/templates/NukeNews/images/mainbar.gif">
+</file>
+<file name="maximize.gif"
url="sitemgr/sitemgr-site/templates/NukeNews/images/maximize.gif">
+</file>
+<file name="minimize.gif"
url="sitemgr/sitemgr-site/templates/NukeNews/images/minimize.gif">
+</file>
+<file name="pixel.gif"
url="sitemgr/sitemgr-site/templates/NukeNews/images/pixel.gif">
+</file>
+<file name="rightbar.gif"
url="sitemgr/sitemgr-site/templates/NukeNews/images/rightbar.gif">
+</file>
+</folder>
+<folder name="modules" url="sitemgr/sitemgr-site/templates/NukeNews/modules">
+<folder name="news" url="sitemgr/sitemgr-site/templates/NukeNews/modules/news">
+<file name="newsblock.tpl"
url="sitemgr/sitemgr-site/templates/NukeNews/modules/news/newsblock.tpl">
+</file>
+</folder>
+</folder>
+<folder name="style" url="sitemgr/sitemgr-site/templates/NukeNews/style">
+<file name="style.css"
url="sitemgr/sitemgr-site/templates/NukeNews/style/style.css">
+</file>
+</folder>
+</folder>
+<folder name="default" url="sitemgr/sitemgr-site/templates/default">
+<folder name="modules" url="sitemgr/sitemgr-site/templates/default/modules">
+<folder name="bookmarks"
url="sitemgr/sitemgr-site/templates/default/modules/bookmarks">
+<file name="xbel.xsl"
url="sitemgr/sitemgr-site/templates/default/modules/bookmarks/xbel.xsl">
+</file>
+</folder>
+<folder name="calendar"
url="sitemgr/sitemgr-site/templates/default/modules/calendar">
+<file name="mini_cal.tpl"
url="sitemgr/sitemgr-site/templates/default/modules/calendar/mini_cal.tpl">
+</file>
+</folder>
+<folder name="forum"
url="sitemgr/sitemgr-site/templates/default/modules/forum">
+<file name="collapse.threads.tpl"
url="sitemgr/sitemgr-site/templates/default/modules/forum/collapse.threads.tpl">
+</file>
+<file name="forums.body.tpl"
url="sitemgr/sitemgr-site/templates/default/modules/forum/forums.body.tpl">
+</file>
+<file name="index.body.tpl"
url="sitemgr/sitemgr-site/templates/default/modules/forum/index.body.tpl">
+</file>
+<file name="normal.threads.tpl"
url="sitemgr/sitemgr-site/templates/default/modules/forum/normal.threads.tpl">
+</file>
+<file name="read.body.tpl"
url="sitemgr/sitemgr-site/templates/default/modules/forum/read.body.tpl">
+</file>
+</folder>
+<folder name="news" url="sitemgr/sitemgr-site/templates/default/modules/news">
+<file name="newsblock.tpl"
url="sitemgr/sitemgr-site/templates/default/modules/news/newsblock.tpl">
+</file>
+</folder>
+</folder>
+</folder>
+<folder name="phpgroupware" url="sitemgr/sitemgr-site/templates/phpgroupware">
+<file name="draft_transform.inc.php"
url="sitemgr/sitemgr-site/templates/phpgroupware/draft_transform.inc.php">
+</file>
+<file name="edit_transform.inc.php"
url="sitemgr/sitemgr-site/templates/phpgroupware/edit_transform.inc.php">
+</file>
+<file name="main.tpl"
url="sitemgr/sitemgr-site/templates/phpgroupware/main.tpl">
+</file>
+<file name="right_bt.inc.php"
url="sitemgr/sitemgr-site/templates/phpgroupware/right_bt.inc.php">
+</file>
+<folder name="images" url="sitemgr/sitemgr-site/templates/phpgroupware/images">
+<file name="about.gif"
url="sitemgr/sitemgr-site/templates/phpgroupware/images/about.gif">
+</file>
+<file name="blank.gif"
url="sitemgr/sitemgr-site/templates/phpgroupware/images/blank.gif">
+</file>
+<file name="body_table_bg.gif"
url="sitemgr/sitemgr-site/templates/phpgroupware/images/body_table_bg.gif">
+</file>
+<file name="body_table_bottom.gif"
url="sitemgr/sitemgr-site/templates/phpgroupware/images/body_table_bottom.gif">
+</file>
+<file name="body_table_top.bg.gif"
url="sitemgr/sitemgr-site/templates/phpgroupware/images/body_table_top.bg.gif">
+</file>
+<file name="body_table_top_left_bg.gif"
url="sitemgr/sitemgr-site/templates/phpgroupware/images/body_table_top_left_bg.gif">
+</file>
+<file name="body_table_top_right.gif"
url="sitemgr/sitemgr-site/templates/phpgroupware/images/body_table_top_right.gif">
+</file>
+<file name="bottom.gif"
url="sitemgr/sitemgr-site/templates/phpgroupware/images/bottom.gif">
+</file>
+<file name="current_release.gif"
url="sitemgr/sitemgr-site/templates/phpgroupware/images/current_release.gif">
+</file>
+<file name="documentation.gif"
url="sitemgr/sitemgr-site/templates/phpgroupware/images/documentation.gif">
+</file>
+<file name="downloads.gif"
url="sitemgr/sitemgr-site/templates/phpgroupware/images/downloads.gif">
+</file>
+<file name="header.gif"
url="sitemgr/sitemgr-site/templates/phpgroupware/images/header.gif">
+</file>
+<file name="header01.gif"
url="sitemgr/sitemgr-site/templates/phpgroupware/images/header01.gif">
+</file>
+<file name="header02.gif"
url="sitemgr/sitemgr-site/templates/phpgroupware/images/header02.gif">
+</file>
+<file name="home.gif"
url="sitemgr/sitemgr-site/templates/phpgroupware/images/home.gif">
+</file>
+<file name="layout02-header_04.gif"
url="sitemgr/sitemgr-site/templates/phpgroupware/images/layout02-header_04.gif">
+</file>
+<file name="logo.gif"
url="sitemgr/sitemgr-site/templates/phpgroupware/images/logo.gif">
+</file>
+<file name="menu_system.gif"
url="sitemgr/sitemgr-site/templates/phpgroupware/images/menu_system.gif">
+</file>
+<file name="news.gif"
url="sitemgr/sitemgr-site/templates/phpgroupware/images/news.gif">
+</file>
+<file name="notes.gif"
url="sitemgr/sitemgr-site/templates/phpgroupware/images/notes.gif">
+</file>
+<file name="only.gif"
url="sitemgr/sitemgr-site/templates/phpgroupware/images/only.gif">
+</file>
+<file name="side_bg.gif"
url="sitemgr/sitemgr-site/templates/phpgroupware/images/side_bg.gif">
+</file>
+<file name="side_bottom.bg.gif"
url="sitemgr/sitemgr-site/templates/phpgroupware/images/side_bottom.bg.gif">
+</file>
+<file name="side_top.bg.gif"
url="sitemgr/sitemgr-site/templates/phpgroupware/images/side_top.bg.gif">
+</file>
+<file name="spacer.gif"
url="sitemgr/sitemgr-site/templates/phpgroupware/images/spacer.gif">
+</file>
+<file name="support.gif"
url="sitemgr/sitemgr-site/templates/phpgroupware/images/support.gif">
+</file>
+<file name="top.gif"
url="sitemgr/sitemgr-site/templates/phpgroupware/images/top.gif">
+</file>
+</folder>
+<folder name="modules"
url="sitemgr/sitemgr-site/templates/phpgroupware/modules">
+<folder name="news"
url="sitemgr/sitemgr-site/templates/phpgroupware/modules/news">
+<file name="newsblock.tpl"
url="sitemgr/sitemgr-site/templates/phpgroupware/modules/news/newsblock.tpl">
+</file>
+</folder>
+</folder>
+<folder name="style" url="sitemgr/sitemgr-site/templates/phpgroupware/style">
+<file name="style.css"
url="sitemgr/sitemgr-site/templates/phpgroupware/style/style.css">
+</file>
+</folder>
+</folder>
+</folder>
+<folder name="themes" url="sitemgr/sitemgr-site/themes">
+<file name="index.html" url="sitemgr/sitemgr-site/themes/index.html">
+</file>
+<folder name="3D-Fantasy" url="sitemgr/sitemgr-site/themes/3D-Fantasy">
+<file name="blocks.html"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/blocks.html">
+</file>
+<file name="center_right.html"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/center_right.html">
+</file>
+<file name="footer.html"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/footer.html">
+</file>
+<file name="header.html"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/header.html">
+</file>
+<file name="index.html"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/index.html">
+</file>
+<file name="left_center.html"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/left_center.html">
+</file>
+<file name="story_home.html"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/story_home.html">
+</file>
+<file name="story_page.html"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/story_page.html">
+</file>
+<file name="tables.php"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/tables.php">
+</file>
+<file name="theme.php" url="sitemgr/sitemgr-site/themes/3D-Fantasy/theme.php">
+</file>
+<folder name="images" url="sitemgr/sitemgr-site/themes/3D-Fantasy/images">
+<file name="backdot.gif"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/images/backdot.gif">
+</file>
+<file name="down-left.gif"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/images/down-left.gif">
+</file>
+<file name="down-left2.gif"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/images/down-left2.gif">
+</file>
+<file name="down-left3.gif"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/images/down-left3.gif">
+</file>
+<file name="down-right.gif"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/images/down-right.gif">
+</file>
+<file name="down-right2.gif"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/images/down-right2.gif">
+</file>
+<file name="down-right3.gif"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/images/down-right3.gif">
+</file>
+<file name="down.gif"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/images/down.gif">
+</file>
+<file name="down2.gif"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/images/down2.gif">
+</file>
+<file name="down3.gif"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/images/down3.gif">
+</file>
+<file name="left.gif"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/images/left.gif">
+</file>
+<file name="left2.gif"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/images/left2.gif">
+</file>
+<file name="left3.gif"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/images/left3.gif">
+</file>
+<file name="leftbar.gif"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/images/leftbar.gif">
+</file>
+<file name="logo.gif"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/images/logo.gif">
+</file>
+<file name="mainbar.gif"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/images/mainbar.gif">
+</file>
+<file name="middle-left.gif"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/images/middle-left.gif">
+</file>
+<file name="middle-right.gif"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/images/middle-right.gif">
+</file>
+<file name="middle.gif"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/images/middle.gif">
+</file>
+<file name="right.gif"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/images/right.gif">
+</file>
+<file name="right2.gif"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/images/right2.gif">
+</file>
+<file name="right3.gif"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/images/right3.gif">
+</file>
+<file name="rightbar.gif"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/images/rightbar.gif">
+</file>
+<file name="up-left.gif"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/images/up-left.gif">
+</file>
+<file name="up-left2.gif"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/images/up-left2.gif">
+</file>
+<file name="up-right.gif"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/images/up-right.gif">
+</file>
+<file name="up-right2.gif"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/images/up-right2.gif">
+</file>
+<file name="up.gif" url="sitemgr/sitemgr-site/themes/3D-Fantasy/images/up.gif">
+</file>
+<file name="up2.gif"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/images/up2.gif">
+</file>
+</folder>
+<folder name="style" url="sitemgr/sitemgr-site/themes/3D-Fantasy/style">
+<file name="index.html"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/style/index.html">
+</file>
+<file name="style.css"
url="sitemgr/sitemgr-site/themes/3D-Fantasy/style/style.css">
+</file>
+</folder>
+</folder>
+<folder name="Kaput" url="sitemgr/sitemgr-site/themes/Kaput">
+<file name="index.html" url="sitemgr/sitemgr-site/themes/Kaput/index.html">
+</file>
+<file name="theme.php" url="sitemgr/sitemgr-site/themes/Kaput/theme.php">
+</file>
+<folder name="images" url="sitemgr/sitemgr-site/themes/Kaput/images">
+<file name="backdot.gif"
url="sitemgr/sitemgr-site/themes/Kaput/images/backdot.gif">
+</file>
+<file name="down-left.gif"
url="sitemgr/sitemgr-site/themes/Kaput/images/down-left.gif">
+</file>
+<file name="down-left2.gif"
url="sitemgr/sitemgr-site/themes/Kaput/images/down-left2.gif">
+</file>
+<file name="down-left3.gif"
url="sitemgr/sitemgr-site/themes/Kaput/images/down-left3.gif">
+</file>
+<file name="down-right.gif"
url="sitemgr/sitemgr-site/themes/Kaput/images/down-right.gif">
+</file>
+<file name="down-right2.gif"
url="sitemgr/sitemgr-site/themes/Kaput/images/down-right2.gif">
+</file>
+<file name="down-right3.gif"
url="sitemgr/sitemgr-site/themes/Kaput/images/down-right3.gif">
+</file>
+<file name="down.gif" url="sitemgr/sitemgr-site/themes/Kaput/images/down.gif">
+</file>
+<file name="down2.gif"
url="sitemgr/sitemgr-site/themes/Kaput/images/down2.gif">
+</file>
+<file name="down3.gif"
url="sitemgr/sitemgr-site/themes/Kaput/images/down3.gif">
+</file>
+<file name="left.gif" url="sitemgr/sitemgr-site/themes/Kaput/images/left.gif">
+</file>
+<file name="left2.gif"
url="sitemgr/sitemgr-site/themes/Kaput/images/left2.gif">
+</file>
+<file name="left3.gif"
url="sitemgr/sitemgr-site/themes/Kaput/images/left3.gif">
+</file>
+<file name="leftbar.gif"
url="sitemgr/sitemgr-site/themes/Kaput/images/leftbar.gif">
+</file>
+<file name="logo.gif" url="sitemgr/sitemgr-site/themes/Kaput/images/logo.gif">
+</file>
+<file name="mainbar.gif"
url="sitemgr/sitemgr-site/themes/Kaput/images/mainbar.gif">
+</file>
+<file name="middle-left.gif"
url="sitemgr/sitemgr-site/themes/Kaput/images/middle-left.gif">
+</file>
+<file name="middle-right.gif"
url="sitemgr/sitemgr-site/themes/Kaput/images/middle-right.gif">
+</file>
+<file name="middle.gif"
url="sitemgr/sitemgr-site/themes/Kaput/images/middle.gif">
+</file>
+<file name="right.gif"
url="sitemgr/sitemgr-site/themes/Kaput/images/right.gif">
+</file>
+<file name="right2.gif"
url="sitemgr/sitemgr-site/themes/Kaput/images/right2.gif">
+</file>
+<file name="right3.gif"
url="sitemgr/sitemgr-site/themes/Kaput/images/right3.gif">
+</file>
+<file name="rightbar.gif"
url="sitemgr/sitemgr-site/themes/Kaput/images/rightbar.gif">
+</file>
+<file name="up-left.gif"
url="sitemgr/sitemgr-site/themes/Kaput/images/up-left.gif">
+</file>
+<file name="up-left2.gif"
url="sitemgr/sitemgr-site/themes/Kaput/images/up-left2.gif">
+</file>
+<file name="up-right.gif"
url="sitemgr/sitemgr-site/themes/Kaput/images/up-right.gif">
+</file>
+<file name="up-right2.gif"
url="sitemgr/sitemgr-site/themes/Kaput/images/up-right2.gif">
+</file>
+<file name="up.gif" url="sitemgr/sitemgr-site/themes/Kaput/images/up.gif">
+</file>
+<file name="up2.gif" url="sitemgr/sitemgr-site/themes/Kaput/images/up2.gif">
+</file>
+</folder>
+<folder name="style" url="sitemgr/sitemgr-site/themes/Kaput/style">
+<file name="index.html"
url="sitemgr/sitemgr-site/themes/Kaput/style/index.html">
+</file>
+<file name="style.css" url="sitemgr/sitemgr-site/themes/Kaput/style/style.css">
+</file>
+</folder>
+</folder>
+<folder name="NukeNews" url="sitemgr/sitemgr-site/themes/NukeNews">
+<file name="blocks.html"
url="sitemgr/sitemgr-site/themes/NukeNews/blocks.html">
+</file>
+<file name="center_right.html"
url="sitemgr/sitemgr-site/themes/NukeNews/center_right.html">
+</file>
+<file name="footer.html"
url="sitemgr/sitemgr-site/themes/NukeNews/footer.html">
+</file>
+<file name="header.html"
url="sitemgr/sitemgr-site/themes/NukeNews/header.html">
+</file>
+<file name="left_center.html"
url="sitemgr/sitemgr-site/themes/NukeNews/left_center.html">
+</file>
+<file name="story_home.html"
url="sitemgr/sitemgr-site/themes/NukeNews/story_home.html">
+</file>
+<file name="story_page.html"
url="sitemgr/sitemgr-site/themes/NukeNews/story_page.html">
+</file>
+<file name="tables.php" url="sitemgr/sitemgr-site/themes/NukeNews/tables.php">
+</file>
+<file name="theme.php" url="sitemgr/sitemgr-site/themes/NukeNews/theme.php">
+</file>
+<folder name="images" url="sitemgr/sitemgr-site/themes/NukeNews/images">
+<file name="corner-bottom-left.gif"
url="sitemgr/sitemgr-site/themes/NukeNews/images/corner-bottom-left.gif">
+</file>
+<file name="corner-bottom-right.gif"
url="sitemgr/sitemgr-site/themes/NukeNews/images/corner-bottom-right.gif">
+</file>
+<file name="corner-top-left.gif"
url="sitemgr/sitemgr-site/themes/NukeNews/images/corner-top-left.gif">
+</file>
+<file name="corner-top-right.gif"
url="sitemgr/sitemgr-site/themes/NukeNews/images/corner-top-right.gif">
+</file>
+<file name="index.html"
url="sitemgr/sitemgr-site/themes/NukeNews/images/index.html">
+</file>
+<file name="leftbar.gif"
url="sitemgr/sitemgr-site/themes/NukeNews/images/leftbar.gif">
+</file>
+<file name="logo.gif"
url="sitemgr/sitemgr-site/themes/NukeNews/images/logo.gif">
+</file>
+<file name="mainbar.gif"
url="sitemgr/sitemgr-site/themes/NukeNews/images/mainbar.gif">
+</file>
+<file name="maximize.gif"
url="sitemgr/sitemgr-site/themes/NukeNews/images/maximize.gif">
+</file>
+<file name="minimize.gif"
url="sitemgr/sitemgr-site/themes/NukeNews/images/minimize.gif">
+</file>
+<file name="pixel.gif"
url="sitemgr/sitemgr-site/themes/NukeNews/images/pixel.gif">
+</file>
+<file name="rightbar.gif"
url="sitemgr/sitemgr-site/themes/NukeNews/images/rightbar.gif">
+</file>
+</folder>
+<folder name="style" url="sitemgr/sitemgr-site/themes/NukeNews/style">
+<file name="index.html"
url="sitemgr/sitemgr-site/themes/NukeNews/style/index.html">
+</file>
+<file name="style.css"
url="sitemgr/sitemgr-site/themes/NukeNews/style/style.css">
+</file>
+</folder>
+</folder>
+<folder name="Odyssey" url="sitemgr/sitemgr-site/themes/Odyssey">
+<file name="blocks.html" url="sitemgr/sitemgr-site/themes/Odyssey/blocks.html">
+</file>
+<file name="center_right.html"
url="sitemgr/sitemgr-site/themes/Odyssey/center_right.html">
+</file>
+<file name="footer.html" url="sitemgr/sitemgr-site/themes/Odyssey/footer.html">
+</file>
+<file name="header.html" url="sitemgr/sitemgr-site/themes/Odyssey/header.html">
+</file>
+<file name="left_center.html"
url="sitemgr/sitemgr-site/themes/Odyssey/left_center.html">
+</file>
+<file name="story_home.html"
url="sitemgr/sitemgr-site/themes/Odyssey/story_home.html">
+</file>
+<file name="story_page.html"
url="sitemgr/sitemgr-site/themes/Odyssey/story_page.html">
+</file>
+<file name="tables.php" url="sitemgr/sitemgr-site/themes/Odyssey/tables.php">
+</file>
+<file name="theme.php" url="sitemgr/sitemgr-site/themes/Odyssey/theme.php">
+</file>
+<folder name="images" url="sitemgr/sitemgr-site/themes/Odyssey/images">
+<file name="corner-bottom-left.gif"
url="sitemgr/sitemgr-site/themes/Odyssey/images/corner-bottom-left.gif">
+</file>
+<file name="corner-bottom-right.gif"
url="sitemgr/sitemgr-site/themes/Odyssey/images/corner-bottom-right.gif">
+</file>
+<file name="corner-top-left.gif"
url="sitemgr/sitemgr-site/themes/Odyssey/images/corner-top-left.gif">
+</file>
+<file name="corner-top-right.gif"
url="sitemgr/sitemgr-site/themes/Odyssey/images/corner-top-right.gif">
+</file>
+<file name="index.html"
url="sitemgr/sitemgr-site/themes/Odyssey/images/index.html">
+</file>
+<file name="leftbar.gif"
url="sitemgr/sitemgr-site/themes/Odyssey/images/leftbar.gif">
+</file>
+<file name="logo.gif"
url="sitemgr/sitemgr-site/themes/Odyssey/images/logo.gif">
+</file>
+<file name="mainbar.gif"
url="sitemgr/sitemgr-site/themes/Odyssey/images/mainbar.gif">
+</file>
+<file name="pixel.gif"
url="sitemgr/sitemgr-site/themes/Odyssey/images/pixel.gif">
+</file>
+<file name="rightbar.gif"
url="sitemgr/sitemgr-site/themes/Odyssey/images/rightbar.gif">
+</file>
+</folder>
+<folder name="style" url="sitemgr/sitemgr-site/themes/Odyssey/style">
+<file name="index.html"
url="sitemgr/sitemgr-site/themes/Odyssey/style/index.html">
+</file>
+<file name="style.css"
url="sitemgr/sitemgr-site/themes/Odyssey/style/style.css">
+</file>
+</folder>
+</folder>
+<folder name="Slash" url="sitemgr/sitemgr-site/themes/Slash">
+<file name="index.html" url="sitemgr/sitemgr-site/themes/Slash/index.html">
+</file>
+<file name="theme.php" url="sitemgr/sitemgr-site/themes/Slash/theme.php">
+</file>
+<folder name="images" url="sitemgr/sitemgr-site/themes/Slash/images">
+<file name="660000.gif"
url="sitemgr/sitemgr-site/themes/Slash/images/660000.gif">
+</file>
+<file name="cl.gif" url="sitemgr/sitemgr-site/themes/Slash/images/cl.gif">
+</file>
+<file name="cr.gif" url="sitemgr/sitemgr-site/themes/Slash/images/cr.gif">
+</file>
+<file name="gl.gif" url="sitemgr/sitemgr-site/themes/Slash/images/gl.gif">
+</file>
+<file name="gr.gif" url="sitemgr/sitemgr-site/themes/Slash/images/gr.gif">
+</file>
+<file name="leftbar.gif"
url="sitemgr/sitemgr-site/themes/Slash/images/leftbar.gif">
+</file>
+<file name="line-corner.gif"
url="sitemgr/sitemgr-site/themes/Slash/images/line-corner.gif">
+</file>
+<file name="logo.gif" url="sitemgr/sitemgr-site/themes/Slash/images/logo.gif">
+</file>
+<file name="mainbar.gif"
url="sitemgr/sitemgr-site/themes/Slash/images/mainbar.gif">
+</file>
+<file name="pix.gif" url="sitemgr/sitemgr-site/themes/Slash/images/pix.gif">
+</file>
+<file name="rightbar.gif"
url="sitemgr/sitemgr-site/themes/Slash/images/rightbar.gif">
+</file>
+<file name="sl.gif" url="sitemgr/sitemgr-site/themes/Slash/images/sl.gif">
+</file>
+<file name="slslogo.gif"
url="sitemgr/sitemgr-site/themes/Slash/images/slslogo.gif">
+</file>
+<file name="spacer.gif"
url="sitemgr/sitemgr-site/themes/Slash/images/spacer.gif">
+</file>
+<file name="sr.gif" url="sitemgr/sitemgr-site/themes/Slash/images/sr.gif">
+</file>
+<file name="wl.gif" url="sitemgr/sitemgr-site/themes/Slash/images/wl.gif">
+</file>
+<file name="wl_cccccc.gif"
url="sitemgr/sitemgr-site/themes/Slash/images/wl_cccccc.gif">
+</file>
+<file name="wr.gif" url="sitemgr/sitemgr-site/themes/Slash/images/wr.gif">
+</file>
+<file name="wr_cccccc.gif"
url="sitemgr/sitemgr-site/themes/Slash/images/wr_cccccc.gif">
+</file>
+</folder>
+<folder name="style" url="sitemgr/sitemgr-site/themes/Slash/style">
+<file name="index.html"
url="sitemgr/sitemgr-site/themes/Slash/style/index.html">
+</file>
+<file name="style.css" url="sitemgr/sitemgr-site/themes/Slash/style/style.css">
+</file>
+</folder>
+</folder>
+<folder name="SlashOcean" url="sitemgr/sitemgr-site/themes/SlashOcean">
+<file name="index.html"
url="sitemgr/sitemgr-site/themes/SlashOcean/index.html">
+</file>
+<file name="theme.php" url="sitemgr/sitemgr-site/themes/SlashOcean/theme.php">
+</file>
+<folder name="images" url="sitemgr/sitemgr-site/themes/SlashOcean/images">
+<file name="101070.gif"
url="sitemgr/sitemgr-site/themes/SlashOcean/images/101070.gif">
+</file>
+<file name="cl.gif" url="sitemgr/sitemgr-site/themes/SlashOcean/images/cl.gif">
+</file>
+<file name="cr.gif" url="sitemgr/sitemgr-site/themes/SlashOcean/images/cr.gif">
+</file>
+<file name="gl.gif" url="sitemgr/sitemgr-site/themes/SlashOcean/images/gl.gif">
+</file>
+<file name="gr.gif" url="sitemgr/sitemgr-site/themes/SlashOcean/images/gr.gif">
+</file>
+<file name="leftbar.gif"
url="sitemgr/sitemgr-site/themes/SlashOcean/images/leftbar.gif">
+</file>
+<file name="line-corner.gif"
url="sitemgr/sitemgr-site/themes/SlashOcean/images/line-corner.gif">
+</file>
+<file name="logo.gif"
url="sitemgr/sitemgr-site/themes/SlashOcean/images/logo.gif">
+</file>
+<file name="mainbar.gif"
url="sitemgr/sitemgr-site/themes/SlashOcean/images/mainbar.gif">
+</file>
+<file name="pix.gif"
url="sitemgr/sitemgr-site/themes/SlashOcean/images/pix.gif">
+</file>
+<file name="rightbar.gif"
url="sitemgr/sitemgr-site/themes/SlashOcean/images/rightbar.gif">
+</file>
+<file name="sl.gif" url="sitemgr/sitemgr-site/themes/SlashOcean/images/sl.gif">
+</file>
+<file name="spacer.gif"
url="sitemgr/sitemgr-site/themes/SlashOcean/images/spacer.gif">
+</file>
+<file name="sr.gif" url="sitemgr/sitemgr-site/themes/SlashOcean/images/sr.gif">
+</file>
+<file name="wl.gif" url="sitemgr/sitemgr-site/themes/SlashOcean/images/wl.gif">
+</file>
+<file name="wl_cccccc.gif"
url="sitemgr/sitemgr-site/themes/SlashOcean/images/wl_cccccc.gif">
+</file>
+<file name="wr.gif" url="sitemgr/sitemgr-site/themes/SlashOcean/images/wr.gif">
+</file>
+<file name="wr_cccccc.gif"
url="sitemgr/sitemgr-site/themes/SlashOcean/images/wr_cccccc.gif">
+</file>
+</folder>
+<folder name="style" url="sitemgr/sitemgr-site/themes/SlashOcean/style">
+<file name="index.html"
url="sitemgr/sitemgr-site/themes/SlashOcean/style/index.html">
+</file>
+<file name="style.css"
url="sitemgr/sitemgr-site/themes/SlashOcean/style/style.css">
+</file>
+</folder>
+</folder>
+<folder name="Traditional" url="sitemgr/sitemgr-site/themes/Traditional">
+<file name="index.html"
url="sitemgr/sitemgr-site/themes/Traditional/index.html">
+</file>
+<file name="theme.php" url="sitemgr/sitemgr-site/themes/Traditional/theme.php">
+</file>
+<folder name="images" url="sitemgr/sitemgr-site/themes/Traditional/images">
+<file name="leftbar.gif"
url="sitemgr/sitemgr-site/themes/Traditional/images/leftbar.gif">
+</file>
+<file name="logo.gif"
url="sitemgr/sitemgr-site/themes/Traditional/images/logo.gif">
+</file>
+<file name="mainbar.gif"
url="sitemgr/sitemgr-site/themes/Traditional/images/mainbar.gif">
+</file>
+<file name="rightbar.gif"
url="sitemgr/sitemgr-site/themes/Traditional/images/rightbar.gif">
+</file>
+<file name="tic.gif"
url="sitemgr/sitemgr-site/themes/Traditional/images/tic.gif">
+</file>
+</folder>
+<folder name="style" url="sitemgr/sitemgr-site/themes/Traditional/style">
+<file name="index.html"
url="sitemgr/sitemgr-site/themes/Traditional/style/index.html">
+</file>
+<file name="style.css"
url="sitemgr/sitemgr-site/themes/Traditional/style/style.css">
+</file>
+</folder>
+</folder>
+<folder name="phpgroupware" url="sitemgr/sitemgr-site/themes/phpgroupware">
+<file name="blocks.html"
url="sitemgr/sitemgr-site/themes/phpgroupware/blocks.html">
+</file>
+<file name="center_block.html"
url="sitemgr/sitemgr-site/themes/phpgroupware/center_block.html">
+</file>
+<file name="center_bottom.html"
url="sitemgr/sitemgr-site/themes/phpgroupware/center_bottom.html">
+</file>
+<file name="footer.html"
url="sitemgr/sitemgr-site/themes/phpgroupware/footer.html">
+</file>
+<file name="header.html"
url="sitemgr/sitemgr-site/themes/phpgroupware/header.html">
+</file>
+<file name="index.html"
url="sitemgr/sitemgr-site/themes/phpgroupware/index.html">
+</file>
+<file name="tables.php"
url="sitemgr/sitemgr-site/themes/phpgroupware/tables.php">
+</file>
+<file name="theme.php"
url="sitemgr/sitemgr-site/themes/phpgroupware/theme.php">
+</file>
+<folder name="images" url="sitemgr/sitemgr-site/themes/phpgroupware/images">
+<file name="about.gif"
url="sitemgr/sitemgr-site/themes/phpgroupware/images/about.gif">
+</file>
+<file name="blank.gif"
url="sitemgr/sitemgr-site/themes/phpgroupware/images/blank.gif">
+</file>
+<file name="body_table_bg.gif"
url="sitemgr/sitemgr-site/themes/phpgroupware/images/body_table_bg.gif">
+</file>
+<file name="body_table_bottom.gif"
url="sitemgr/sitemgr-site/themes/phpgroupware/images/body_table_bottom.gif">
+</file>
+<file name="body_table_top.bg.gif"
url="sitemgr/sitemgr-site/themes/phpgroupware/images/body_table_top.bg.gif">
+</file>
+<file name="body_table_top_left_bg.gif"
url="sitemgr/sitemgr-site/themes/phpgroupware/images/body_table_top_left_bg.gif">
+</file>
+<file name="body_table_top_right.gif"
url="sitemgr/sitemgr-site/themes/phpgroupware/images/body_table_top_right.gif">
+</file>
+<file name="bottom.gif"
url="sitemgr/sitemgr-site/themes/phpgroupware/images/bottom.gif">
+</file>
+<file name="current_release.gif"
url="sitemgr/sitemgr-site/themes/phpgroupware/images/current_release.gif">
+</file>
+<file name="documentation.gif"
url="sitemgr/sitemgr-site/themes/phpgroupware/images/documentation.gif">
+</file>
+<file name="downloads.gif"
url="sitemgr/sitemgr-site/themes/phpgroupware/images/downloads.gif">
+</file>
+<file name="header.gif"
url="sitemgr/sitemgr-site/themes/phpgroupware/images/header.gif">
+</file>
+<file name="header01.gif"
url="sitemgr/sitemgr-site/themes/phpgroupware/images/header01.gif">
+</file>
+<file name="header02.gif"
url="sitemgr/sitemgr-site/themes/phpgroupware/images/header02.gif">
+</file>
+<file name="home.gif"
url="sitemgr/sitemgr-site/themes/phpgroupware/images/home.gif">
+</file>
+<file name="layout02-header_04.gif"
url="sitemgr/sitemgr-site/themes/phpgroupware/images/layout02-header_04.gif">
+</file>
+<file name="logo.gif"
url="sitemgr/sitemgr-site/themes/phpgroupware/images/logo.gif">
+</file>
+<file name="menu_system.gif"
url="sitemgr/sitemgr-site/themes/phpgroupware/images/menu_system.gif">
+</file>
+<file name="news.gif"
url="sitemgr/sitemgr-site/themes/phpgroupware/images/news.gif">
+</file>
+<file name="notes.gif"
url="sitemgr/sitemgr-site/themes/phpgroupware/images/notes.gif">
+</file>
+<file name="only.gif"
url="sitemgr/sitemgr-site/themes/phpgroupware/images/only.gif">
+</file>
+<file name="side_bg.gif"
url="sitemgr/sitemgr-site/themes/phpgroupware/images/side_bg.gif">
+</file>
+<file name="side_bottom.bg.gif"
url="sitemgr/sitemgr-site/themes/phpgroupware/images/side_bottom.bg.gif">
+</file>
+<file name="side_top.bg.gif"
url="sitemgr/sitemgr-site/themes/phpgroupware/images/side_top.bg.gif">
+</file>
+<file name="spacer.gif"
url="sitemgr/sitemgr-site/themes/phpgroupware/images/spacer.gif">
+</file>
+<file name="support.gif"
url="sitemgr/sitemgr-site/themes/phpgroupware/images/support.gif">
+</file>
+<file name="top.gif"
url="sitemgr/sitemgr-site/themes/phpgroupware/images/top.gif">
+</file>
+</folder>
+<folder name="style" url="sitemgr/sitemgr-site/themes/phpgroupware/style">
+<file name="index.html"
url="sitemgr/sitemgr-site/themes/phpgroupware/style/index.html">
+</file>
+<file name="style.css"
url="sitemgr/sitemgr-site/themes/phpgroupware/style/style.css">
+</file>
+</folder>
+</folder>
+</folder>
+</folder>
+<folder name="templates" url="sitemgr/templates">
+<folder name="default" url="sitemgr/templates/default">
+<file name="add_category.tpl" url="sitemgr/templates/default/add_category.tpl">
+</file>
+<file name="add_category.tpl.save"
url="sitemgr/templates/default/add_category.tpl.save">
+</file>
+<file name="archive.tpl" url="sitemgr/templates/default/archive.tpl">
+</file>
+<file name="commit.tpl" url="sitemgr/templates/default/commit.tpl">
+</file>
+<file name="confirmdelete.tpl"
url="sitemgr/templates/default/confirmdelete.tpl">
+</file>
+<file name="delete_common.tpl"
url="sitemgr/templates/default/delete_common.tpl">
+</file>
+<file name="edit_block.tpl" url="sitemgr/templates/default/edit_block.tpl">
+</file>
+<file name="edit_category.tpl"
url="sitemgr/templates/default/edit_category.tpl">
+</file>
+<file name="edit_page.tpl" url="sitemgr/templates/default/edit_page.tpl">
+</file>
+<file name="edit_properties.tpl"
url="sitemgr/templates/default/edit_properties.tpl">
+</file>
+<file name="listsites.tpl" url="sitemgr/templates/default/listsites.tpl">
+</file>
+<file name="mainmenu.tpl" url="sitemgr/templates/default/mainmenu.tpl">
+</file>
+<file name="manage_content.tpl"
url="sitemgr/templates/default/manage_content.tpl">
+</file>
+<file name="manage_modules.tpl"
url="sitemgr/templates/default/manage_modules.tpl">
+</file>
+<file name="manage_outline.tpl"
url="sitemgr/templates/default/manage_outline.tpl">
+</file>
+<file name="manage_translations.tpl"
url="sitemgr/templates/default/manage_translations.tpl">
+</file>
+<file name="module_editor.tpl"
url="sitemgr/templates/default/module_editor.tpl">
+</file>
+<file name="site_form.tpl" url="sitemgr/templates/default/site_form.tpl">
+</file>
+<file name="sitemgr_footer.tpl"
url="sitemgr/templates/default/sitemgr_footer.tpl">
+</file>
+<file name="sitemgr_header.tpl"
url="sitemgr/templates/default/sitemgr_header.tpl">
+</file>
+<file name="sitemgr_preferences.tpl"
url="sitemgr/templates/default/sitemgr_preferences.tpl">
+</file>
+<file name="translate_block.tpl"
url="sitemgr/templates/default/translate_block.tpl">
+</file>
+<file name="translate_category.tpl"
url="sitemgr/templates/default/translate_category.tpl">
+</file>
+<file name="translate_page.tpl"
url="sitemgr/templates/default/translate_page.tpl">
+</file>
+<file name="translate_sitecontent.tpl"
url="sitemgr/templates/default/translate_sitecontent.tpl">
+</file>
+<folder name="images" url="sitemgr/templates/default/images">
+<file name="navbar.gif" url="sitemgr/templates/default/images/navbar.gif">
+</file>
+<file name="navbar.png" url="sitemgr/templates/default/images/navbar.png">
+</file>
+</folder>
+</folder>
+<folder name="idots" url="sitemgr/templates/idots">
+<file name="mainmenu.tpl" url="sitemgr/templates/idots/mainmenu.tpl">
+</file>
+<folder name="images" url="sitemgr/templates/idots/images">
+<file name="navbar.png" url="sitemgr/templates/idots/images/navbar.png">
+</file>
+</folder>
+</folder>
+<folder name="idsociety" url="sitemgr/templates/idsociety">
+<folder name="images" url="sitemgr/templates/idsociety/images">
+<file name="navbar-over.gif"
url="sitemgr/templates/idsociety/images/navbar-over.gif">
+</file>
+<file name="navbar-over.png"
url="sitemgr/templates/idsociety/images/navbar-over.png">
+</file>
+<file name="navbar.gif" url="sitemgr/templates/idsociety/images/navbar.gif">
+</file>
+<file name="navbar.png" url="sitemgr/templates/idsociety/images/navbar.png">
+</file>
+</folder>
+</folder>
+</folder>
+</folder>
+<folder name="skel">
+<preference-set id="">
+ <string id="import_dirname">Q:\public_html\phpgw_0_9_16\skel</string>
+</preference-set>
+<file name="skel.spec" url="skel/skel.spec">
+</file>
+<folder name="doc" url="skel/doc">
+<file name="changes.txt" url="skel/doc/changes.txt">
+</file>
+<file name="copyright.gpl" url="skel/doc/copyright.gpl">
+</file>
+<file name="credits.txt" url="skel/doc/credits.txt">
+</file>
+<file name="install.txt" url="skel/doc/install.txt">
+</file>
+<file name="packaging.txt" url="skel/doc/packaging.txt">
+</file>
+<folder name="sgml" url="skel/doc/sgml">
+<file name="changes.sgml" url="skel/doc/sgml/changes.sgml">
+</file>
+<file name="credits.sgml" url="skel/doc/sgml/credits.sgml">
+</file>
+<file name="install.sgml" url="skel/doc/sgml/install.sgml">
+</file>
+<file name="packaging.sgml" url="skel/doc/sgml/packaging.sgml">
+</file>
+</folder>
+</folder>
+<folder name="help" url="skel/help">
+<file name="index.php" url="skel/help/index.php">
+</file>
+</folder>
+<folder name="inc" url="skel/inc">
+<file name="class.skel.inc.php" url="skel/inc/class.skel.inc.php">
+</file>
+<file name="functions.inc.php" url="skel/inc/functions.inc.php">
+</file>
+<file name="header.inc.php" url="skel/inc/header.inc.php">
+</file>
+<file name="hook_add_def_pref.inc.php"
url="skel/inc/hook_add_def_pref.inc.php">
+</file>
+<file name="hook_admin.inc.php" url="skel/inc/hook_admin.inc.php">
+</file>
+<file name="hook_manual.inc.php" url="skel/inc/hook_manual.inc.php">
+</file>
+<file name="hook_preferences.inc.php" url="skel/inc/hook_preferences.inc.php">
+</file>
+</folder>
+<folder name="setup" url="skel/setup">
+<file name="phpgw_en.lang" url="skel/setup/phpgw_en.lang">
+</file>
+<file name="phpgw_fr.lang" url="skel/setup/phpgw_fr.lang">
+</file>
+<file name="phpgw_sv.lang" url="skel/setup/phpgw_sv.lang">
+</file>
+<file name="setup.inc.php" url="skel/setup/setup.inc.php">
+</file>
+<file name="tables_baseline.inc.php" url="skel/setup/tables_baseline.inc.php">
+</file>
+<file name="tables_current.inc.php" url="skel/setup/tables_current.inc.php">
+</file>
+<file name="tables_update.inc.php" url="skel/setup/tables_update.inc.php">
+</file>
+</folder>
+<folder name="templates" url="skel/templates">
+<folder name="default" url="skel/templates/default">
+<file name="delete.tpl" url="skel/templates/default/delete.tpl">
+</file>
+<file name="form.tpl" url="skel/templates/default/form.tpl">
+</file>
+<file name="header.tpl" url="skel/templates/default/header.tpl">
+</file>
+<file name="list.tpl" url="skel/templates/default/list.tpl">
+</file>
+<file name="preference_acl.tpl"
url="skel/templates/default/preference_acl.tpl">
+</file>
+<file name="preference_acl_row.tpl"
url="skel/templates/default/preference_acl_row.tpl">
+</file>
+<file name="preference_colspan.tpl"
url="skel/templates/default/preference_colspan.tpl">
+</file>
+<file name="preferences.tpl" url="skel/templates/default/preferences.tpl">
+</file>
+<file name="view.tpl" url="skel/templates/default/view.tpl">
+</file>
+<folder name="images" url="skel/templates/default/images">
+<file name="navbar.gif" url="skel/templates/default/images/navbar.gif">
+</file>
+<file name="navbar.png" url="skel/templates/default/images/navbar.png">
+</file>
+</folder>
+</folder>
+<folder name="idots" url="skel/templates/idots">
+<folder name="images" url="skel/templates/idots/images">
+<file name="navbar.png" url="skel/templates/idots/images/navbar.png">
+</file>
+</folder>
+</folder>
+<folder name="idsociety" url="skel/templates/idsociety">
+<folder name="images" url="skel/templates/idsociety/images">
+<file name="navbar-over.gif"
url="skel/templates/idsociety/images/navbar-over.gif">
+</file>
+<file name="navbar-over.png"
url="skel/templates/idsociety/images/navbar-over.png">
+</file>
+<file name="navbar.gif" url="skel/templates/idsociety/images/navbar.gif">
+</file>
+<file name="navbar.png" url="skel/templates/idsociety/images/navbar.png">
+</file>
+</folder>
+</folder>
+</folder>
+</folder>
+<folder name="todo">
+<preference-set id="">
+ <string id="import_dirname">Q:\public_html\phpgw_0_9_16\todo</string>
+</preference-set>
+<file name="index.php" url="todo/index.php">
+</file>
+<folder name="doc" url="todo/doc">
+<file name="CHANGELOG" url="todo/doc/CHANGELOG">
+</file>
+<file name="copyright.gpl" url="todo/doc/copyright.gpl">
+</file>
+</folder>
+<folder name="help" url="todo/help">
+<file name="index.php" url="todo/help/index.php">
+</file>
+<folder name="DE" url="todo/help/DE">
+<file name="other.php" url="todo/help/DE/other.php">
+</file>
+<file name="add.php" url="todo/help/DE/add.php">
+</file>
+<file name="todo.php" url="todo/help/DE/todo.php">
+</file>
+</folder>
+<folder name="EN" url="todo/help/EN">
+<file name="other.php" url="todo/help/EN/other.php">
+</file>
+<file name="add.php" url="todo/help/EN/add.php">
+</file>
+<file name="todo.php" url="todo/help/EN/todo.php">
+</file>
+</folder>
+</folder>
+<folder name="inc" url="todo/inc">
+<file name="class.bo.inc.php" url="todo/inc/class.bo.inc.php">
+</file>
+<file name="class.bopreferences.inc.php"
url="todo/inc/class.bopreferences.inc.php">
+</file>
+<file name="class.so.inc.php" url="todo/inc/class.so.inc.php">
+</file>
+<file name="class.ui.inc.php" url="todo/inc/class.ui.inc.php">
+</file>
+<file name="class.uipreferences.inc.php"
url="todo/inc/class.uipreferences.inc.php">
+</file>
+<file name="hook_about.inc.php" url="todo/inc/hook_about.inc.php">
+</file>
+<file name="hook_admin.inc.php" url="todo/inc/hook_admin.inc.php">
+</file>
+<file name="hook_deleteaccount.inc.php"
url="todo/inc/hook_deleteaccount.inc.php">
+</file>
+<file name="hook_home.inc.php" url="todo/inc/hook_home.inc.php">
+</file>
+<file name="hook_manual.inc.php" url="todo/inc/hook_manual.inc.php">
+</file>
+<file name="hook_preferences.inc.php" url="todo/inc/hook_preferences.inc.php">
+</file>
+</folder>
+<folder name="setup" url="todo/setup">
+<file name="phpgw_br.lang" url="todo/setup/phpgw_br.lang">
+</file>
+<file name="phpgw_cs.lang" url="todo/setup/phpgw_cs.lang">
+</file>
+<file name="phpgw_da.lang" url="todo/setup/phpgw_da.lang">
+</file>
+<file name="phpgw_de.lang" url="todo/setup/phpgw_de.lang">
+</file>
+<file name="phpgw_en.lang" url="todo/setup/phpgw_en.lang">
+</file>
+<file name="phpgw_es.lang" url="todo/setup/phpgw_es.lang">
+</file>
+<file name="phpgw_fi.lang" url="todo/setup/phpgw_fi.lang">
+</file>
+<file name="phpgw_fr.lang" url="todo/setup/phpgw_fr.lang">
+</file>
+<file name="phpgw_hu.lang" url="todo/setup/phpgw_hu.lang">
+</file>
+<file name="phpgw_it.lang" url="todo/setup/phpgw_it.lang">
+</file>
+<file name="phpgw_ja.lang" url="todo/setup/phpgw_ja.lang">
+</file>
+<file name="phpgw_ko.lang" url="todo/setup/phpgw_ko.lang">
+</file>
+<file name="phpgw_nl.lang" url="todo/setup/phpgw_nl.lang">
+</file>
+<file name="phpgw_no.lang" url="todo/setup/phpgw_no.lang">
+</file>
+<file name="phpgw_pl.lang" url="todo/setup/phpgw_pl.lang">
+</file>
+<file name="phpgw_pt.lang" url="todo/setup/phpgw_pt.lang">
+</file>
+<file name="phpgw_sv.lang" url="todo/setup/phpgw_sv.lang">
+</file>
+<file name="phpgw_zh.lang" url="todo/setup/phpgw_zh.lang">
+</file>
+<file name="phpgw_zt.lang" url="todo/setup/phpgw_zt.lang">
+</file>
+<file name="setup.inc.php" url="todo/setup/setup.inc.php">
+</file>
+<file name="tables_baseline.inc.php" url="todo/setup/tables_baseline.inc.php">
+</file>
+<file name="tables_current.inc.php" url="todo/setup/tables_current.inc.php">
+</file>
+<file name="tables_update.inc.php" url="todo/setup/tables_update.inc.php">
+</file>
+</folder>
+<folder name="templates" url="todo/templates">
+<folder name="default" url="todo/templates/default">
+<file name="delete.tpl" url="todo/templates/default/delete.tpl">
+</file>
+<file name="form.tpl" url="todo/templates/default/form.tpl">
+</file>
+<file name="list.tpl" url="todo/templates/default/list.tpl">
+</file>
+<file name="pref.tpl" url="todo/templates/default/pref.tpl">
+</file>
+<file name="preference_acl.tpl"
url="todo/templates/default/preference_acl.tpl">
+</file>
+<file name="preference_acl_row.tpl"
url="todo/templates/default/preference_acl_row.tpl">
+</file>
+<file name="preference_colspan.tpl"
url="todo/templates/default/preference_colspan.tpl">
+</file>
+<file name="view.tpl" url="todo/templates/default/view.tpl">
+</file>
+<folder name="images" url="todo/templates/default/images">
+<file name="navbar.gif" url="todo/templates/default/images/navbar.gif">
+</file>
+<file name="navbar.png" url="todo/templates/default/images/navbar.png">
+</file>
+<file name="pix.gif" url="todo/templates/default/images/pix.gif">
+</file>
+<file name="pix.png" url="todo/templates/default/images/pix.png">
+</file>
+</folder>
+</folder>
+<folder name="idots" url="todo/templates/idots">
+<folder name="images" url="todo/templates/idots/images">
+<file name="navbar.png" url="todo/templates/idots/images/navbar.png">
+</file>
+</folder>
+</folder>
+<folder name="idsociety" url="todo/templates/idsociety">
+<folder name="images" url="todo/templates/idsociety/images">
+<file name="navbar-over.gif"
url="todo/templates/idsociety/images/navbar-over.gif">
+</file>
+<file name="navbar-over.png"
url="todo/templates/idsociety/images/navbar-over.png">
+</file>
+<file name="navbar.gif" url="todo/templates/idsociety/images/navbar.gif">
+</file>
+<file name="navbar.png" url="todo/templates/idsociety/images/navbar.png">
+</file>
+<file name="pix.gif" url="todo/templates/idsociety/images/pix.gif">
+</file>
+<file name="pix.png" url="todo/templates/idsociety/images/pix.png">
+</file>
+</folder>
+</folder>
+<folder name="probusiness" url="todo/templates/probusiness">
+<file name="delete.tpl" url="todo/templates/probusiness/delete.tpl">
+</file>
+<file name="form.tpl" url="todo/templates/probusiness/form.tpl">
+</file>
+<file name="list.tpl" url="todo/templates/probusiness/list.tpl">
+</file>
+<file name="pref.tpl" url="todo/templates/probusiness/pref.tpl">
+</file>
+<file name="preference_acl.tpl"
url="todo/templates/probusiness/preference_acl.tpl">
+</file>
+<file name="preference_acl_row.tpl"
url="todo/templates/probusiness/preference_acl_row.tpl">
+</file>
+<file name="view.tpl" url="todo/templates/probusiness/view.tpl">
+</file>
+<folder name="images" url="todo/templates/probusiness/images">
+<file name="navbar.png" url="todo/templates/probusiness/images/navbar.png">
+</file>
+<file name="pix.gif" url="todo/templates/probusiness/images/pix.gif">
+</file>
+<file name="pix.png" url="todo/templates/probusiness/images/pix.png">
+</file>
+<file name="folders.png" url="todo/templates/probusiness/images/folders.png">
+</file>
+</folder>
+</folder>
+</folder>
+</folder>
+<folder name="tts">
+<preference-set id="">
+ <string id="import_dirname">Q:\public_html\phpgw_0_9_16\tts</string>
+</preference-set>
+<file name="admin.php" url="tts/admin.php">
+</file>
+<file name="index.php" url="tts/index.php">
+</file>
+<file name="newticket.php" url="tts/newticket.php">
+</file>
+<file name="test.php" url="tts/test.php">
+</file>
+<file name="viewticket_details.php" url="tts/viewticket_details.php">
+</file>
+<folder name="config" url="tts/config">
+<file name="html.conf.php3" url="tts/config/html.conf.php3">
+</file>
+</folder>
+<folder name="doc" url="tts/doc">
+<file name="README.NOW" url="tts/doc/README.NOW">
+</file>
+<file name="README" url="tts/doc/README">
+</file>
+<file name="TODO" url="tts/doc/TODO">
+</file>
+<file name="copyright.gpl" url="tts/doc/copyright.gpl">
+</file>
+</folder>
+<folder name="help" url="tts/help">
+<file name="index.php" url="tts/help/index.php">
+</file>
+<folder name="EN" url="tts/help/EN">
+<file name="create.php" url="tts/help/EN/create.php">
+</file>
+<file name="edit_close.php" url="tts/help/EN/edit_close.php">
+</file>
+<file name="tts.php" url="tts/help/EN/tts.php">
+</file>
+<file name="view.php" url="tts/help/EN/view.php">
+</file>
+</folder>
+</folder>
+<folder name="inc" url="tts/inc">
+<file name="class.attachedFiles.inc.php"
url="tts/inc/class.attachedFiles.inc.php">
+</file>
+<file name="class.bo.inc.php" url="tts/inc/class.bo.inc.php">
+</file>
+<file name="class.subcategories.inc.php"
url="tts/inc/class.subcategories.inc.php">
+</file>
+<file name="functions.inc.php" url="tts/inc/functions.inc.php">
+</file>
+<file name="hook_admin.inc.php" url="tts/inc/hook_admin.inc.php">
+</file>
+<file name="hook_home.inc.php" url="tts/inc/hook_home.inc.php">
+</file>
+<file name="hook_manual.inc.php" url="tts/inc/hook_manual.inc.php">
+</file>
+<file name="hook_preferences.inc.php" url="tts/inc/hook_preferences.inc.php">
+</file>
+<file name="hook_settings.inc.php" url="tts/inc/hook_settings.inc.php">
+</file>
+</folder>
+<folder name="setup" url="tts/setup">
+<file name="phpgw_br.lang" url="tts/setup/phpgw_br.lang">
+</file>
+<file name="phpgw_cs.lang" url="tts/setup/phpgw_cs.lang">
+</file>
+<file name="phpgw_da.lang" url="tts/setup/phpgw_da.lang">
+</file>
+<file name="phpgw_de.lang" url="tts/setup/phpgw_de.lang">
+</file>
+<file name="phpgw_en.lang" url="tts/setup/phpgw_en.lang">
+</file>
+<file name="phpgw_es.lang" url="tts/setup/phpgw_es.lang">
+</file>
+<file name="phpgw_fi.lang" url="tts/setup/phpgw_fi.lang">
+</file>
+<file name="phpgw_fr.lang" url="tts/setup/phpgw_fr.lang">
+</file>
+<file name="phpgw_hu.lang" url="tts/setup/phpgw_hu.lang">
+</file>
+<file name="phpgw_it.lang" url="tts/setup/phpgw_it.lang">
+</file>
+<file name="phpgw_ja.lang" url="tts/setup/phpgw_ja.lang">
+</file>
+<file name="phpgw_ko.lang" url="tts/setup/phpgw_ko.lang">
+</file>
+<file name="phpgw_nl.lang" url="tts/setup/phpgw_nl.lang">
+</file>
+<file name="phpgw_no.lang" url="tts/setup/phpgw_no.lang">
+</file>
+<file name="phpgw_pl.lang" url="tts/setup/phpgw_pl.lang">
+</file>
+<file name="phpgw_pt.lang" url="tts/setup/phpgw_pt.lang">
+</file>
+<file name="phpgw_sv.lang" url="tts/setup/phpgw_sv.lang">
+</file>
+<file name="phpgw_zt.lang" url="tts/setup/phpgw_zt.lang">
+</file>
+<file name="setup.inc.php" url="tts/setup/setup.inc.php">
+</file>
+<file name="tables_baseline.inc.php" url="tts/setup/tables_baseline.inc.php">
+</file>
+<file name="tables_current.inc.php" url="tts/setup/tables_current.inc.php">
+</file>
+<file name="tables_update.inc.php" url="tts/setup/tables_update.inc.php">
+</file>
+<file name="default_records.inc.php" url="tts/setup/default_records.inc.php">
+</file>
+</folder>
+<folder name="templates" url="tts/templates">
+<folder name="default" url="tts/templates/default">
+<file name="admin.tpl" url="tts/templates/default/admin.tpl">
+</file>
+<file name="hook_home.tpl" url="tts/templates/default/hook_home.tpl">
+</file>
+<file name="index.tpl" url="tts/templates/default/index.tpl">
+</file>
+<file name="newticket.tpl" url="tts/templates/default/newticket.tpl">
+</file>
+<file name="preference_acl.tpl" url="tts/templates/default/preference_acl.tpl">
+</file>
+<file name="preference_acl_row.tpl"
url="tts/templates/default/preference_acl_row.tpl">
+</file>
+<file name="preference_colspan.tpl"
url="tts/templates/default/preference_colspan.tpl">
+</file>
+<file name="viewticket_details.tpl"
url="tts/templates/default/viewticket_details.tpl">
+</file>
+<folder name="images" url="tts/templates/default/images">
+<file name="navbar.gif" url="tts/templates/default/images/navbar.gif">
+</file>
+<file name="navbar.png" url="tts/templates/default/images/navbar.png">
+</file>
+<file name="updated.gif" url="tts/templates/default/images/updated.gif">
+</file>
+<file name="updated.png" url="tts/templates/default/images/updated.png">
+</file>
+</folder>
+</folder>
+<folder name="idots" url="tts/templates/idots">
+<folder name="images" url="tts/templates/idots/images">
+<file name="navbar.png" url="tts/templates/idots/images/navbar.png">
+</file>
+</folder>
+</folder>
+<folder name="idsociety" url="tts/templates/idsociety">
+<folder name="images" url="tts/templates/idsociety/images">
+<file name="navbar-over.gif"
url="tts/templates/idsociety/images/navbar-over.gif">
+</file>
+<file name="navbar-over.png"
url="tts/templates/idsociety/images/navbar-over.png">
+</file>
+<file name="navbar.gif" url="tts/templates/idsociety/images/navbar.gif">
+</file>
+<file name="navbar.png" url="tts/templates/idsociety/images/navbar.png">
+</file>
+</folder>
+</folder>
+<folder name="probusiness" url="tts/templates/probusiness">
+<file name="admin.tpl" url="tts/templates/probusiness/admin.tpl">
+</file>
+<file name="hook_home.tpl" url="tts/templates/probusiness/hook_home.tpl">
+</file>
+<file name="index.tpl" url="tts/templates/probusiness/index.tpl">
+</file>
+<file name="newticket.tpl" url="tts/templates/probusiness/newticket.tpl">
+</file>
+<file name="preference_acl.tpl"
url="tts/templates/probusiness/preference_acl.tpl">
+</file>
+<file name="preference_acl_row.tpl"
url="tts/templates/probusiness/preference_acl_row.tpl">
+</file>
+<file name="preference_colspan.tpl"
url="tts/templates/probusiness/preference_colspan.tpl">
+</file>
+<file name="viewticket_details.tpl"
url="tts/templates/probusiness/viewticket_details.tpl">
+</file>
+<folder name="images" url="tts/templates/probusiness/images">
+<file name="folders.png" url="tts/templates/probusiness/images/folders.png">
+</file>
+<file name="navbar.png" url="tts/templates/probusiness/images/navbar.png">
+</file>
+<file name="updated.gif" url="tts/templates/probusiness/images/updated.gif">
+</file>
+<file name="updated.png" url="tts/templates/probusiness/images/updated.png">
+</file>
+</folder>
+</folder>
+<folder name="verdilak" url="tts/templates/verdilak">
+<folder name="images" url="tts/templates/verdilak/images">
+<file name="navbar.gif" url="tts/templates/verdilak/images/navbar.gif">
+</file>
+<file name="navbar.png" url="tts/templates/verdilak/images/navbar.png">
+</file>
+</folder>
+</folder>
+</folder>
+</folder>
+<folder name="wiki">
+<preference-set id="">
+ <string id="import_dirname">Q:\public_html\phpgw_0_9_16\wiki</string>
+</preference-set>
+<file name="config.php" url="wiki/config.php">
+</file>
+<file name="htaccess" url="wiki/htaccess">
+</file>
+<file name="index.php" url="wiki/index.php">
+</file>
+<folder name="action" url="wiki/action">
+<file name="admin.php" url="wiki/action/admin.php">
+</file>
+<file name="conflict.php" url="wiki/action/conflict.php">
+</file>
+<file name="diff.php" url="wiki/action/diff.php">
+</file>
+<file name="edit.php" url="wiki/action/edit.php">
+</file>
+<file name="find.php" url="wiki/action/find.php">
+</file>
+<file name="history.php" url="wiki/action/history.php">
+</file>
+<file name="macro.php" url="wiki/action/macro.php">
+</file>
+<file name="prefs.php" url="wiki/action/prefs.php">
+</file>
+<file name="preview.php" url="wiki/action/preview.php">
+</file>
+<file name="rss.php" url="wiki/action/rss.php">
+</file>
+<file name="save.php" url="wiki/action/save.php">
+</file>
+<file name="style.php" url="wiki/action/style.php">
+</file>
+<file name="view.php" url="wiki/action/view.php">
+</file>
+</folder>
+<folder name="doc" url="wiki/doc">
+<file name="cvs-import" url="wiki/doc/cvs-import">
+</file>
+<file name="CHANGES" url="wiki/doc/CHANGES">
+</file>
+<file name="TODO" url="wiki/doc/TODO">
+</file>
+<folder name="tavi-docs" url="wiki/doc/tavi-docs">
+<file name="ChangeLog.txt" url="wiki/doc/tavi-docs/ChangeLog.txt">
+</file>
+<file name="INSTALL.txt" url="wiki/doc/tavi-docs/INSTALL.txt">
+</file>
+<file name="LICENSE.txt" url="wiki/doc/tavi-docs/LICENSE.txt">
+</file>
+<file name="NEWS.txt" url="wiki/doc/tavi-docs/NEWS.txt">
+</file>
+<file name="README.txt" url="wiki/doc/tavi-docs/README.txt">
+</file>
+<file name="TODO.txt" url="wiki/doc/tavi-docs/TODO.txt">
+</file>
+<file name="maint.pl" url="wiki/doc/tavi-docs/maint.pl">
+</file>
+<file name="template.txt" url="wiki/doc/tavi-docs/template.txt">
+</file>
+</folder>
+</folder>
+<folder name="inc" url="wiki/inc">
+<file name="class.sowiki.inc.php" url="wiki/inc/class.sowiki.inc.php">
+</file>
+</folder>
+<folder name="lib" url="wiki/lib">
+<file name="category.php" url="wiki/lib/category.php">
+</file>
+<file name="defaults.php" url="wiki/lib/defaults.php">
+</file>
+<file name="defaults.php.backup" url="wiki/lib/defaults.php.backup">
+</file>
+<file name="diff.php" url="wiki/lib/diff.php">
+</file>
+<file name="headers.php" url="wiki/lib/headers.php">
+</file>
+<file name="init.php" url="wiki/lib/init.php">
+</file>
+<file name="main.php" url="wiki/lib/main.php">
+</file>
+<file name="messages.php" url="wiki/lib/messages.php">
+</file>
+<file name="url.php" url="wiki/lib/url.php">
+</file>
+</folder>
+<folder name="parse" url="wiki/parse">
+<file name="html.php" url="wiki/parse/html.php">
+</file>
+<file name="macros.php" url="wiki/parse/macros.php">
+</file>
+<file name="main.php" url="wiki/parse/main.php">
+</file>
+<file name="save.php" url="wiki/parse/save.php">
+</file>
+<file name="transforms.php" url="wiki/parse/transforms.php">
+</file>
+</folder>
+<folder name="setup" url="wiki/setup">
+<file name="default_records.inc.php" url="wiki/setup/default_records.inc.php">
+</file>
+<file name="phpgw_de.lang" url="wiki/setup/phpgw_de.lang">
+</file>
+<file name="phpgw_en.lang" url="wiki/setup/phpgw_en.lang">
+</file>
+<file name="phpgw_fr.lang" url="wiki/setup/phpgw_fr.lang">
+</file>
+<file name="phpgw_sv.lang" url="wiki/setup/phpgw_sv.lang">
+</file>
+<file name="setup.inc.php" url="wiki/setup/setup.inc.php">
+</file>
+<file name="tables_current.inc.php" url="wiki/setup/tables_current.inc.php">
+</file>
+</folder>
+<folder name="template" url="wiki/template">
+<file name="admin.php" url="wiki/template/admin.php">
+</file>
+<file name="common.php" url="wiki/template/common.php">
+</file>
+<file name="conflict.php" url="wiki/template/conflict.php">
+</file>
+<file name="diff.php" url="wiki/template/diff.php">
+</file>
+<file name="edit.php" url="wiki/template/edit.php">
+</file>
+<file name="find.php" url="wiki/template/find.php">
+</file>
+<file name="history.php" url="wiki/template/history.php">
+</file>
+<file name="prefs.php" url="wiki/template/prefs.php">
+</file>
+<file name="preview.php" url="wiki/template/preview.php">
+</file>
+<file name="rss.php" url="wiki/template/rss.php">
+</file>
+<file name="save.php" url="wiki/template/save.php">
+</file>
+<file name="view.php" url="wiki/template/view.php">
+</file>
+<file name="wiki.css" url="wiki/template/wiki.css">
+</file>
+</folder>
+<folder name="templates" url="wiki/templates">
+<folder name="default" url="wiki/templates/default">
+<folder name="images" url="wiki/templates/default/images">
+<file name="blackstar.gif" url="wiki/templates/default/images/blackstar.gif">
+</file>
+<file name="block.gif" url="wiki/templates/default/images/block.gif">
+</file>
+<file name="dategrid.gif" url="wiki/templates/default/images/dategrid.gif">
+</file>
+<file name="dvd-gray-medium.gif"
url="wiki/templates/default/images/dvd-gray-medium.gif">
+</file>
+<file name="halfstar.gif" url="wiki/templates/default/images/halfstar.gif">
+</file>
+<file name="navbar.png" url="wiki/templates/default/images/navbar.png">
+</file>
+<file name="new.gif" url="wiki/templates/default/images/new.gif">
+</file>
+<file name="nopic_movie.gif"
url="wiki/templates/default/images/nopic_movie.gif">
+</file>
+<file name="redstar.gif" url="wiki/templates/default/images/redstar.gif">
+</file>
+<file name="vertlongbar.gif"
url="wiki/templates/default/images/vertlongbar.gif">
+</file>
+<file name="vertshortbar.gif"
url="wiki/templates/default/images/vertshortbar.gif">
+</file>
+</folder>
+</folder>
+<folder name="idots" url="wiki/templates/idots">
+<folder name="images" url="wiki/templates/idots/images">
+<file name="navbar.png" url="wiki/templates/idots/images/navbar.png">
+</file>
+</folder>
+</folder>
+<folder name="idsociety" url="wiki/templates/idsociety">
+<folder name="images" url="wiki/templates/idsociety/images">
+<file name="navbar-over.png"
url="wiki/templates/idsociety/images/navbar-over.png">
+</file>
+<file name="navbar.png" url="wiki/templates/idsociety/images/navbar.png">
+</file>
+</folder>
+</folder>
+<folder name="terralab" url="wiki/templates/terralab">
+<folder name="images" url="wiki/templates/terralab/images">
+<file name="navbar-over.gif"
url="wiki/templates/terralab/images/navbar-over.gif">
+</file>
+<file name="navbar.gif" url="wiki/templates/terralab/images/navbar.gif">
+</file>
+</folder>
+</folder>
+<folder name="probusiness" url="wiki/templates/probusiness">
+<folder name="images" url="wiki/templates/probusiness/images">
+<file name="navbar.png" url="wiki/templates/probusiness/images/navbar.png">
+</file>
+</folder>
+</folder>
+</folder>
+</folder>
+<file name="about.php" url="about.php">
+</file>
+<file name="anon_wrapper.php" url="anon_wrapper.php">
+</file>
+<file name="header.inc.php" url="header.inc.php">
+</file>
+<file name="header.inc.php.template" url="header.inc.php.template">
+</file>
+<file name="home.php" url="home.php">
+</file>
+<file name="index.php" url="index.php">
+</file>
+<file name="login.php" url="login.php">
+</file>
+<file name="logout.php" url="logout.php">
+</file>
+<file name="notify.php" url="notify.php">
+</file>
+<file name="notify_simple.php" url="notify_simple.php">
+</file>
+<file name="README.NOW-IMPORTANT" url="README.NOW-IMPORTANT">
+</file>
+<file name="redirect.php" url="redirect.php">
+</file>
+<file name="set_box.php" url="set_box.php">
+</file>
+<file name="soap.php" url="soap.php">
+</file>
+<file name="version.inc.php" url="version.inc.php">
+</file>
+<file name="xmlrpc.php" url="xmlrpc.php">
+</file>
+</project>
Property changes on: branches/Version-0_9_16-branch/phpGroupWare - 0.9.16.kpf
___________________________________________________________________
Added: svn:executable
+ *
Added: svn:keywords
+ Author Date Id Revision
Added: svn:mergeinfo
+
Added: svn:eol-style
+ native
Deleted: branches/Version-0_9_16-branch/phpgroupware/README.NOW-IMPORTANT
===================================================================
--- branches/Version-0_9_16-branch/phpgroupware/README.NOW-IMPORTANT
2009-02-11 09:04:37 UTC (rev 19062)
+++ branches/Version-0_9_16-branch/phpgroupware/README.NOW-IMPORTANT
2009-02-11 09:25:35 UTC (rev 19063)
@@ -1,26 +0,0 @@
-phpGroupWare makes all reasonable attempts to deliver secure code in our
-releases. At the same time, as a system administrator you should take
-some steps to protect your server.
-
-We have prepared some documentation that you should read before going
-any further.
-
-I know you just want to read the "short cut" section in the INSTALL doc,
-and start playing. You can do that, but you do so at you own risk.
-
-Documents to read (in order):
-* doc/SECURITY
-* doc/phpgw-apache.conf
-* doc/php-configuration.txt
-* doc/install/index.html
-
-If you have any questions regarding the documents please email
-phpgroupware-users at gnu.org, if you wish to help write documents
-phpgroupware-docteam at gnu.org
-
-Please enjoy using phpGroupWare, but be vigilant, as we are.
-
-Cheers
-
-phpGroupWare Development Crew
-$Id$
Deleted: branches/Version-0_9_16-branch/phpgroupware/about.php
===================================================================
--- branches/Version-0_9_16-branch/phpgroupware/about.php 2009-02-11
09:04:37 UTC (rev 19062)
+++ branches/Version-0_9_16-branch/phpgroupware/about.php 2009-02-11
09:25:35 UTC (rev 19063)
@@ -1,128 +0,0 @@
-<?php
-
/**************************************************************************\
- * phpGroupWare
*
- * http://www.phpgroupware.org
*
- * --------------------------------------------
*
- * This program is free software; you can redistribute it and/or modify
it *
- * under the terms of the GNU General Public License as published by
the *
- * Free Software Foundation; either version 2 of the License, or (at
your *
- * option) any later version.
*
-
\**************************************************************************/
- /* $Id$ */
-
- $GLOBALS['phpgw_info']['flags']['currentapp'] = 'about';
- $GLOBALS['phpgw_info']['flags']['disable_Template_class'] = True;
- $GLOBALS['phpgw_info']['flags']['noheader'] = True;
- include('header.inc.php');
-
- $app = $_GET['app'];
- if ($app)
- {
- if (!($included =
$GLOBALS['phpgw']->hooks->single('about',$app)))
- {
- function about_app()
- {
- global $app;
- $icon =
$GLOBALS['phpgw']->common->image($app,'navbar');
- include (PHPGW_INCLUDE_ROOT .
"/$app/setup/setup.inc.php");
- $info = $setup_info[$app];
- $info['title'] =
$GLOBALS['phpgw_info']['apps'][$app]['title'];
- $other_infos = array(
- 'author' => lang('Author'),
- 'maintainer' => lang('Maintainer'),
- 'version' => lang('Version'),
- 'license' => lang('License')
- );
-
- $s = "<table width=\"70%\" cellpadding=\"4\">\n"
- . "<tr><td align=\"right\"><img
src=\"$icon\"></td>"
- . "<td
align=\"left\"><b>$info[title]</b></td></tr>";
-
- if ($info['description'])
- {
- $info['description'] =
lang($info['description']);
- $s .= "<tr><td colspan='2'
align='center'>$info[description]</td></tr>\n";
- if ($info['note'])
- {
- $info['note'] =
lang($info['note']);
- $s .= "<tr><td colspan='2'
align='center'><i>$info[note]</i></td></tr>\n";
- }
- }
- foreach ($other_infos as $key => $val)
- {
- if (isset($info[$key]))
- {
- $s .= "<tr><td width='50%'
align='right'>$val</td><td>";
- $infos = $info[$key];
- for ($n = 0;
is_array($info[$key][$n]) && ($infos = $info[$key][$n]) || !$n; ++$n)
- {
- if (!is_array($infos)
&& isset($info[$key.'_email']))
- {
- $infos =
array('email' => $info[$key.'_email'],'name' => $infos);
- }
- if (is_array($infos))
- {
- $names =
explode('<br />',$infos['name']);
- $emails =
split('@|<br />',$infos['email']);
- if
(count($names) < count($emails)/2)
- {
- $names
= '';
- }
- $infos = '';
- while
(list($user,$domain) = $emails)
- {
- if
($infos) $infos .= '<br />';
- $name =
$names ? array_shift($names) : $user;
- $infos
.= "<a href='mailto:$user at $domain'
onClick=\"document.location='mailto:$user'+'@'+'$domain'; return
false;\">$name</a>";
-
array_shift($emails); array_shift($emails);
- }
- }
- $s .= ($n ? '<br />' :
'') . $infos;
- }
- $s .= "</td></tr>\n";
- }
- }
- $s .= "</table>\n";
-
- return $s;
- }
- $api_only = !($included =
file_exists(PHPGW_INCLUDE_ROOT . "/$app/setup/setup.inc.php"));
- }
- }
- else
- {
- $api_only = True;
- }
-
- $tpl =
CreateObject('phpgwapi.Template',$GLOBALS['phpgw']->common->get_tpl_dir('phpgwapi'));
- $tpl->set_file(array(
- 'phpgw_about' => 'about.tpl',
- 'phpgw_about_unknown' => 'about_unknown.tpl'
- ));
-
-
$tpl->set_var('phpgw_logo',$GLOBALS['phpgw']->common->image('phpgwapi','logo'));
- $tpl->set_var('phpgw_version','phpGroupWare API version ' .
$GLOBALS['phpgw_info']['server']['versions']['phpgwapi']);
- if ($included)
- {
- $tpl->set_var('phpgw_app_about',about_app('',''));
- //about_app($tpl,"phpgw_app_about");
- }
- else
- {
- if ($api_only)
- {
- $tpl->set_var('phpgw_app_about','');
- }
- else
- {
- $tpl->set_var('app_header',$app);
- $tpl->parse('phpgw_app_about','phpgw_about_unknown');
- }
- }
-
- $title = isset($GLOBALS['phpgw_info']['apps'][$app]) ?
$GLOBALS['phpgw_info']['apps'][$app]['title'] : 'phpGroupWare';
- $GLOBALS['phpgw_info']['flags']['app_header'] = lang('About %1',$title);
- $GLOBALS['phpgw']->common->phpgw_header();
- $tpl->pparse('out','phpgw_about');
- $GLOBALS['phpgw']->common->phpgw_footer();
-?>
Deleted: branches/Version-0_9_16-branch/phpgroupware/anon_wrapper.php
===================================================================
--- branches/Version-0_9_16-branch/phpgroupware/anon_wrapper.php
2009-02-11 09:04:37 UTC (rev 19062)
+++ branches/Version-0_9_16-branch/phpgroupware/anon_wrapper.php
2009-02-11 09:25:35 UTC (rev 19063)
@@ -1,40 +0,0 @@
-<?php
-
/**************************************************************************\
- * phpGroupWare
*
- * http://www.phpgroupware.org
*
- * Written by Dan Kuykendall <address@hidden> *
- * --------------------------------------------
*
- * This program is free software; you can redistribute it and/or modify
it *
- * under the terms of the GNU General Public License as published by
the *
- * Free Software Foundation; either version 2 of the License, or (at
your *
- * option) any later version.
*
-
\**************************************************************************/
-
- /* $Id$ */
-
- // TODO:
- // Limit which users can access this program (ACL check)
- // Global disabler
- // Detect bad logins and passwords, spit out generic message
-
- // If your are going to use multiable accounts, remove the following
lines
- $login = 'anonymous';
- $passwd = 'anonymous';
-
- $GLOBALS['phpgw_info']['flags'] = array(
- 'disable_Template_class' => True,
- 'login' => True,
- 'currentapp' => 'login',
- 'noheader' => True
- );
- include('./header.inc.php');
-
- // If your are going to use multiable accounts, remove the following
lines
- // You must create the useraccount and check its permissions before use
-
- $login = 'anonymous';
- $passwd = 'anonymous';
-
- $sessionid = $GLOBALS['phpgw']->session->create($login,$passwd,'text');
- $GLOBALS['phpgw']->redirect_link('/index.php');
-?>
Deleted: branches/Version-0_9_16-branch/phpgroupware/header.inc.php.template
===================================================================
--- branches/Version-0_9_16-branch/phpgroupware/header.inc.php.template
2009-02-11 09:04:37 UTC (rev 19062)
+++ branches/Version-0_9_16-branch/phpgroupware/header.inc.php.template
2009-02-11 09:25:35 UTC (rev 19063)
@@ -1,126 +0,0 @@
-<?php
- ini_set('zend.ze1_compatibility_mode', true);
-
/**************************************************************************\
- * phpGroupWare
*
- * http://www.phpgroupware.org
*
- * This file written by Dan Kuykendall <address@hidden> *
- * --------------------------------------------
*
- * This program is free software; you can redistribute it and/or modify
it *
- * under the terms of the GNU General Public License as published by
the *
- * Free Software Foundation; either version 2 of the License, or (at
your *
- * option) any later version.
*
-
\**************************************************************************/
- /* $Id$ */
-
-
/**************************************************************************\
- * !!!!!!! EDIT THESE LINES !!!!!!!!
*
- * This setting allows you to easily move the include directory and the
*
- * base of the phpGroupWare install. Simple edit the following 2 lines
with *
- * the absolute path to fit your site, and you should be up and running.
*
-
\**************************************************************************/
-
- define('PHPGW_SERVER_ROOT','{SERVER_ROOT}');
- define('PHPGW_INCLUDE_ROOT','{INCLUDE_ROOT}');
- $GLOBALS['phpgw_info']['server']['header_admin_password'] =
'{HEADER_ADMIN_PASSWORD}';
-
- /* phpGroupWare domain-specific db settings */{domains}
- /*
- ** If you want to have your domains in a select box, change to True
- ** If not, users will have to login as address@hidden
- ** Note: This is only for virtual domain support, default domain users
can login only using
- ** there loginid.
- */
- $GLOBALS['phpgw_info']['server']['show_domain_selectbox'] =
{DOMAIN_SELECTBOX};
-
- /*
- ** As an alternative to the domain select box, set this option to True
- ** to use the domain name from the browser provided hostname
($_SERVER['HTTP_HOST'])
- */
- $GLOBALS['phpgw_info']['server']['domain_from_host'] =
{DOMAIN_FROM_HOST};
-
- $GLOBALS['phpgw_info']['server']['db_persistent'] = {DB_PERSISTENT};
-
- /*
- ** phpGroupWare can handle session management using the database, but if
- ** you are using PHP4 you can usually get better performance by having
phpGroupWare
- ** use the session support built into PHP4. PHP3 users will have to use
the database.
- ** Your choices are 'db' or 'php4'
- */
- $GLOBALS['phpgw_info']['server']['sessions_type'] = '{SESSIONS_TYPE}';
-
- /* Select which login template set you want, most people will use
default */
- $GLOBALS['phpgw_info']['login_template_set'] = 'default';
-
- /* This is used to control mcrypt's use */
- $GLOBALS['phpgw_info']['server']['mcrypt_enabled'] = {ENABLE_MCRYPT};
- /* Set this to 'old' for versions < 2.4, otherwise the exact mcrypt
version you use. */
- $GLOBALS['phpgw_info']['server']['versions']['mcrypt'] =
'{MCRYPT_VERSION}';
-
- /*
- ** This is a random string used as the initialization vector for mcrypt
- ** feel free to change it when setting up phpgroupware on a clean
database,
- ** but you must not change it after that point!
- ** It should be around 30 bytes in length.
- */
- $GLOBALS['phpgw_info']['server']['mcrypt_iv'] = '{MCRYPT_IV}';
-
- /* If you want phpGroupWare to be cached by proxy servers, uncomment
the following */
- /* This is NOT recommended, but phpGroupWare should still work fine. */
- if(!isset($GLOBALS['phpgw_info']['flags']['nocachecontrol']) ||
!$GLOBALS['phpgw_info']['flags']['nocachecontrol'] == True)
- {
- header('Cache-Control: no-cache, must-revalidate'); // HTTP/1.1
- header('Pragma: no-cache'); // HTTP/1.0
- }
-
- /* debugging settings */
- define('DEBUG_APP', False);
- define('DEBUG_API', False);
- define('DEBUG_DATATYPES', True);
- define('DEBUG_LEVEL', 3);
- define('DEBUG_OUTPUT', 2); /* 1 = screen, 2 = DB (not supported with
PHP3). For both use 3. */
- define('DEBUG_TIMER', False);
-
- function perfgetmicrotime()
- {
- list($usec, $sec) = explode(' ',microtime());
- return ((float)$usec + (float)$sec);
- }
-
- if (DEBUG_TIMER)
- {
- $GLOBALS['debug_timer_start'] = perfgetmicrotime();
- }
-
-
/**************************************************************************\
- * Do not edit these lines
*
-
\**************************************************************************/
- define('PHPGW_API_INC',PHPGW_INCLUDE_ROOT.'/phpgwapi/inc');
- include(PHPGW_SERVER_ROOT.'/phpgwapi/setup/setup.inc.php');
- $GLOBALS['phpgw_info']['server']['versions']['phpgwapi'] =
$setup_info['phpgwapi']['version'];
- $GLOBALS['phpgw_info']['server']['versions']['current_header'] =
$setup_info['phpgwapi']['versions']['current_header'];
- unset($setup_info);
- $GLOBALS['phpgw_info']['server']['versions']['header'] = '1.24';
- /* This is a fix for NT */
- if(!isset($GLOBALS['phpgw_info']['flags']['noapi']) ||
$GLOBALS['phpgw_info']['flags']['noapi'] != True)
- {
- include(PHPGW_API_INC . '/functions.inc.php');
- include(PHPGW_API_INC . '/xml_functions.inc.php');
- include(PHPGW_API_INC . '/soap_functions.inc.php');
- }
-
- /*
- Leave off the final php closing tag, some editors will add
- a \n or space after which will mess up cookies later on
- */<!-- BEGIN domain -->
- $GLOBALS['phpgw_domain']['{DB_DOMAIN}'] = array (
- 'db_host' => '{DB_HOST}',
- 'db_name' => '{DB_NAME}',
- 'db_user' => '{DB_USER}',
- 'db_pass' => '{DB_PASS}',
- // Look at the README file
- 'db_type' => '{DB_TYPE}',
- // This will limit who is allowed to make configuration
modifications
- 'config_passwd' => '{CONFIG_PASS}'
- );
-
-<!-- END domain -->
Deleted: branches/Version-0_9_16-branch/phpgroupware/home.php
===================================================================
--- branches/Version-0_9_16-branch/phpgroupware/home.php 2009-02-11
09:04:37 UTC (rev 19062)
+++ branches/Version-0_9_16-branch/phpgroupware/home.php 2009-02-11
09:25:35 UTC (rev 19063)
@@ -1,265 +0,0 @@
-<?php
-
/**************************************************************************\
- * phpGroupWare
*
- * http://www.phpgroupware.org
*
- * The file written by Joseph Engo <address@hidden> *
- * --------------------------------------------
*
- * This program is free software; you can redistribute it and/or modify
it *
- * under the terms of the GNU General Public License as published by
the *
- * Free Software Foundation; either version 2 of the License, or (at
your *
- * option) any later version.
*
-
\**************************************************************************/
-
- /* $Id$ */
-
- $phpgw_info = array();
- if (!is_file('header.inc.php'))
- {
- echo '<p style="{text-align: center; font-weight: bold;}"><a
href="setup/index.php>"';
- echo lang('It appears that phpGroupWare is not setup yet,
please run setup.');
- echo '</a></p>';
- exit;
- }
-
- $GLOBALS['sessionid'] = @$_GET['sessionid'] ? $_GET['sessionid'] :
$_COOKIE['sessionid'];
- if (!isset($GLOBALS['sessionid']) || !$GLOBALS['sessionid'])
- {
- Header('Location: login.php');
- exit;
- }
-
- $GLOBALS['phpgw_info']['flags'] = array(
- 'noheader' => True,
- 'nonavbar' => True,
- 'currentapp' => 'home',
- 'enable_network_class' => True,
- 'enable_contacts_class' => True,
- 'enable_nextmatchs_class' => True
- );
- include('header.inc.php');
-
- // check if forward parameter is set
- if (@$_GET['phpgw_forward'])
- {
- foreach($_GET as $name => $value)
- {
- // find phpgw_ in the $_GET parameters but skip
phpgw_forward because of redirect call below
- if (ereg('phpgw_', $name) && ($name != 'phpgw_forward'))
- {
- $name = substr($name, 6); // cut 'phpgw_'
- $extra_vars[$name] = $value;
- }
- }
-
- $GLOBALS['phpgw']->redirect_link($_GET['phpgw_forward'],
$extra_vars);
- exit;
- }
-
- if ($GLOBALS['phpgw_info']['server']['force_default_app']
- && $GLOBALS['phpgw_info']['server']['force_default_app'] !=
'user_choice')
- {
-
$GLOBALS['phpgw_info']['user']['preferences']['common']['default_app'] =
$GLOBALS['phpgw_info']['server']['force_default_app'];
- }
-
- if
(($GLOBALS['phpgw_info']['user']['preferences']['common']['useframes'] &&
- $GLOBALS['phpgw_info']['server']['useframes'] == 'allowed') ||
- ($GLOBALS['phpgw_info']['server']['useframes'] == 'always'))
- {
- if ($_GET['cd'] == 'yes')
- {
- if (! $navbarframe && ! $framebody)
- {
- $tpl = new Template(PHPGW_TEMPLATE_DIR);
- $tpl->set_file(array(
- 'frames' => 'frames.tpl',
- 'frame_body' =>
'frames_body.tpl',
- 'frame_navbar' =>
'frames_navbar.tpl'
- ));
-
$tpl->set_var('navbar_link',$GLOBALS['phpgw']->link('index.php','navbarframe=True&cd=yes'));
- if ($GLOBALS['forward'])
- {
-
$tpl->set_var('body_link',$GLOBALS['phpgw']->link($GLOBALS['forward']));
- }
- else
- {
-
$tpl->set_var('body_link',$GLOBALS['phpgw']->link('index.php','framebody=True&cd=yes'));
- }
-
- if
($GLOBALS['phpgw_info']['user']['preferences']['common']['frame_navbar_location']
== 'bottom')
- {
-
$tpl->set_var('frame_size','*,60');
-
$tpl->parse('frames_','frame_body',True);
-
$tpl->parse('frames_','frame_navbar',True);
- }
- else
- {
-
$tpl->set_var('frame_size','60,*');
-
$tpl->parse('frames_','frame_navbar',True);
-
$tpl->parse('frames_','frame_body',True);
- }
- $tpl->pparse('out','frames');
- }
- if ($navbarframe)
- {
-
$GLOBALS['phpgw']->common->phpgw_header();
- echo parse_navbar();
- }
- }
- }
- elseif ($_GET['cd']=='yes' &&
$GLOBALS['phpgw_info']['user']['preferences']['common']['default_app']
- &&
$GLOBALS['phpgw_info']['user']['apps'][$GLOBALS['phpgw_info']['user']['preferences']['common']['default_app']])
- {
- $GLOBALS['phpgw']->redirect($GLOBALS['phpgw']->link('/'
. $GLOBALS['phpgw_info']['user']['preferences']['common']['default_app'] . '/'
. 'index.php'));
- }
- else
- {
- $GLOBALS['phpgw']->common->phpgw_header();
- echo parse_navbar();
- }
-
- $GLOBALS['phpgw']->translation->add_app('mainscreen');
- if (lang('mainscreen_message') != 'mainscreen_message*')
- {
- echo '<center>' .
stripslashes(lang('mainscreen_message')) . '</center>';
- }
-
- if ((isset($GLOBALS['phpgw_info']['user']['apps']['admin']) &&
- $GLOBALS['phpgw_info']['user']['apps']['admin']) &&
-
(isset($GLOBALS['phpgw_info']['server']['checkfornewversion']) &&
- $GLOBALS['phpgw_info']['server']['checkfornewversion']))
- {
- $GLOBALS['phpgw']->network->set_addcrlf(False);
- $lines =
$GLOBALS['phpgw']->network->gethttpsocketfile('http://www.phpgroupware.org/currentversion');
- for ($i=0; $i<count($lines); $i++)
- {
- if (ereg('currentversion',$lines[$i]))
- {
- $line_found =
explode(':',chop($lines[$i]));
- }
- }
-
if($GLOBALS['phpgw']->common->cmp_version($GLOBALS['phpgw_info']['server']['versions']['phpgwapi'],$line_found[1]))
- {
- echo '<p>There is a new version of phpGroupWare
available. <a href="'
- .
'http://www.phpgroupware.org">http://www.phpgroupware.org</a>';
- }
-
- $_found = False;
- $GLOBALS['phpgw']->db->query("select
app_name,app_version from phpgw_applications",__LINE__,__FILE__);
- while($GLOBALS['phpgw']->db->next_record())
- {
- $_db_version =
$GLOBALS['phpgw']->db->f('app_version');
- $_app_name =
$GLOBALS['phpgw']->db->f('app_name');
- $_versionfile =
$GLOBALS['phpgw']->common->get_app_dir($_app_name) . '/setup/setup.inc.php';
- if(file_exists($_versionfile))
- {
- include($_versionfile);
- $_file_version =
$setup_info[$_app_name]['version'];
- $_app_title =
$GLOBALS['phpgw_info']['apps'][$_app_name]['title'];
- unset($setup_info);
-
-
if($GLOBALS['phpgw']->common->cmp_version_long($_db_version,$_file_version))
- {
- $_found = True;
- $_app_string .= '<br />' .
$_app_title;
- }
- unset($_file_version);
- unset($_app_title);
- }
- unset($_db_version);
- unset($_versionfile);
- }
- if($_found)
- {
- echo '<br />' . lang('The following
applications require upgrades') . ':' . "\n";
- echo $_app_string . "\n";
- echo '<br />' . lang('Please run setup to
become current') . '.' . "\n";
- unset($_app_string);
- }
- }
-
- if (isset($GLOBALS['phpgw_info']['user']['apps']['notifywindow']) &&
- $GLOBALS['phpgw_info']['user']['apps']['notifywindow'])
- {
-?>
-<SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript">
- var NotifyWindow;
-
- function opennotifywindow()
- {
- if (NotifyWindow)
- {
- if (NotifyWindow.closed)
- {
- NotifyWindow.stop;
- NotifyWindow.close;
- }
- }
- NotifyWindow = window.open("<?php echo
$GLOBALS['phpgw']->link('/notify.php')?>", "NotifyWindow",
"width=300,height=35,location=no,menubar=no,directories=no,toolbar=no,scrollbars=yes,resizable=yes,status=yes");
- if (NotifyWindow.opener == null)
- {
- NotifyWindow.opener = window;
- }
- }
-</SCRIPT>
-
-<?php
- echo '<a href="javascript:opennotifywindow()">' . lang('Open
notify window') . '</a>';
- }
-
- /* This initializes the users portal_order preference if it does not
exist. */
-
if(!is_array($GLOBALS['phpgw_info']['user']['preferences']['portal_order']) &&
$GLOBALS['phpgw_info']['apps'])
- {
- $GLOBALS['phpgw']->preferences->delete('portal_order');
- @reset($GLOBALS['phpgw_info']['apps']);
- $order = 0;
- while (list(,$p) = each($GLOBALS['phpgw_info']['apps']))
- {
- if($GLOBALS['phpgw_info']['user']['apps'][$p['name']])
- {
-
$GLOBALS['phpgw']->preferences->add('portal_order',$order++,$p['id']);
- }
- }
- $GLOBALS['phpgw_info']['user']['preferences'] =
$GLOBALS['phpgw']->preferences->save_repository();
- }
-
-
if(is_array($GLOBALS['phpgw_info']['user']['preferences']['portal_order']))
- {
- $app_check = Array();
-
@ksort($GLOBALS['phpgw_info']['user']['preferences']['portal_order']);
- while(list($order,$app) =
each($GLOBALS['phpgw_info']['user']['preferences']['portal_order']))
- {
- if(!isset($app_check[intval($app)]) ||
!$app_check[intval($app)])
- {
- $app_check[intval($app)] = True;
- $sorted_apps[] =
$GLOBALS['phpgw']->applications->id2name(intval($app));
- }
- }
- }
- else
- {
- $sorted_apps = Array(
- 'email',
- 'calendar',
- 'news_admin',
- 'addressbook',
- 'squirrelmail'
- );
- }
- @reset($sorted_apps);
- $GLOBALS['phpgw']->hooks->process('home',$sorted_apps);
-
- if($GLOBALS['portal_order'])
- {
- $GLOBALS['phpgw']->preferences->delete('portal_order');
- @reset($GLOBALS['portal_order']);
- while(list($app_order,$app_id) = each($GLOBALS['portal_order']))
- {
-
$GLOBALS['phpgw']->preferences->add('portal_order',$app_order,$app_id);
- }
- $GLOBALS['phpgw']->preferences->save_repository();
- }
-
- //$phpgw->common->debug_phpgw_info();
- //$phpgw->common->debug_list_core_functions();
- $GLOBALS['phpgw']->common->phpgw_footer();
-?>
Deleted: branches/Version-0_9_16-branch/phpgroupware/index.php
===================================================================
--- branches/Version-0_9_16-branch/phpgroupware/index.php 2009-02-11
09:04:37 UTC (rev 19062)
+++ branches/Version-0_9_16-branch/phpgroupware/index.php 2009-02-11
09:25:35 UTC (rev 19063)
@@ -1,119 +0,0 @@
-<?php
-
/**************************************************************************\
- * phpGroupWare
*
- * http://www.phpgroupware.org
*
- * --------------------------------------------
*
- * This program is free software; you can redistribute it and/or modify
it *
- * under the terms of the GNU General Public License as published by
the *
- * Free Software Foundation; either version 2 of the License, or (at
your *
- * option) any later version.
*
-
\**************************************************************************/
-
- /* $Id$ */
-
- $phpgw_info = array();
- if (!file_exists('header.inc.php'))
- {
- Header('Location: setup/index.php');
- exit;
- }
-
- if ( !isset($_REQUEST['sessionid']) || !strlen($_REQUEST['sessionid']) )
- {
- Header('Location: login.php');
- exit;
- }
- $GLOBALS['sessionid'] =& $_REQUEST['sessionid'];
-
-
- /*
- This is the preliminary menuaction driver for the new
multi-layered design
- */
- if (@isset($_GET['menuaction']))
- {
- list($app,$class,$method) = explode('.',$_GET['menuaction']);
- if (! $app || ! $class || ! $method)
- {
- $invalid_data = True;
- }
- }
- else
- {
- //$phpgw->log->message('W-BadmenuactionVariable, menuaction missing or
corrupt: %1',$menuaction);
- //$phpgw->log->commit();
-
- $app = 'home';
- $invalid_data = True;
- }
-
- if ($app == 'phpgwapi')
- {
- $app = 'home';
- $api_requested = True;
- }
-
- $GLOBALS['phpgw_info']['flags'] = array(
- 'noheader' => True,
- 'nonavbar' => True,
- 'currentapp' => $app
- );
- include('./header.inc.php');
-
- if ($app == 'home' && ! $api_requested)
- {
- Header('Location: ' . $GLOBALS['phpgw']->link('/home.php'));
- }
-
- if ($api_requested)
- {
- $app = 'phpgwapi';
- }
-
- $GLOBALS['obj'] = CreateObject(sprintf('%s.%s',$app,$class));
- $GLOBALS[$class] = $GLOBALS['obj'];
- if ((is_array($GLOBALS[$class]->public_functions) &&
$GLOBALS[$class]->public_functions[$method]) && ! $invalid_data)
- {
-// eval("\$GLOBALS['obj']->$method();");
- execmethod($_GET['menuaction']);
- unset($app);
- unset($obj);
- unset($class);
- unset($method);
- unset($invalid_data);
- unset($api_requested);
- }
- else
- {
- if (! $app || ! $class || ! $method)
- {
- $GLOBALS['phpgw']->log->message(array(
- 'text' => 'W-BadmenuactionVariable, menuaction
missing or corrupt: %1',
- 'p1' => $menuaction,
- 'line' => __LINE__,
- 'file' => __FILE__
- ));
- }
-
- if (! is_array($obj->public_functions) || !
$obj->public_functions[$method] && $method)
- {
- $GLOBALS['phpgw']->log->message(array(
- 'text' => 'W-BadmenuactionVariable, attempted
to access private method: %1',
- 'p1' => $method,
- 'line' => __LINE__,
- 'file' => __FILE__
- ));
- }
- $GLOBALS['phpgw']->log->commit();
-
- $GLOBALS['phpgw']->redirect_link('/home.php');
- /*
- $_obj = CreateObject('home.home');
- $_obj->get_list();
- */
- }
-
- if (! $GLOBALS['phpgw_info']['nofooter'])
- {
- $GLOBALS['phpgw']->common->phpgw_footer();
- }
-?>
Deleted: branches/Version-0_9_16-branch/phpgroupware/login.php
===================================================================
--- branches/Version-0_9_16-branch/phpgroupware/login.php 2009-02-11
09:04:37 UTC (rev 19062)
+++ branches/Version-0_9_16-branch/phpgroupware/login.php 2009-02-11
09:25:35 UTC (rev 19063)
@@ -1,361 +0,0 @@
-<?php
-
/**************************************************************************\
- * phpGroupWare
*
- * http://www.phpgroupware.org
*
- * Written by Dan Kuykendall <address@hidden> *
- * Joseph Engo <address@hidden> *
- * --------------------------------------------
*
- * This program is free software; you can redistribute it and/or modify
it *
- * under the terms of the GNU General Public License as published by
the *
- * Free Software Foundation; either version 2 of the License, or (at
your *
- * option) any later version.
*
-
\**************************************************************************/
-
- /* $Id$ */
-
- $phpgw_info = array();
- $GLOBALS['phpgw_info']['flags'] = array(
- 'disable_template_class' => True,
- 'login' => True,
- 'currentapp' => 'login',
- 'noheader' => True
- );
- if(file_exists('./header.inc.php'))
- {
- include('./header.inc.php');
- $GLOBALS['phpgw']->sessions = createObject('phpgwapi.sessions');
- }
- else
- {
- Header('Location: setup/index.php');
- exit;
- }
-
- $GLOBALS['phpgw_info']['server']['template_dir'] = PHPGW_SERVER_ROOT
- .
'/phpgwapi/templates/'
- .
$GLOBALS['phpgw_info']['login_template_set'];
-
- $tmpl = CreateObject('phpgwapi.Template',
$GLOBALS['phpgw_info']['server']['template_dir']);
-
- // This is used for system downtime, to prevent new logins.
- if ($GLOBALS['phpgw_info']['server']['deny_all_logins'])
- {
- $tmpl->set_file(array(
- 'login_form' => 'login_denylogin.tpl'
- ));
- $tmpl->set_var('template_set','default');
- $tmpl->pfp('loginout','login_form');
- exit;
- }
-
- // !! NOTE !!
- // Do NOT and I repeat, do NOT touch ANYTHING to do with lang in this
file.
- // If there is a problem, tell me and I will fix it. (jengo)
-
-/*
- if ($_GET['cd'] != 10 && $GLOBALS['phpgw_info']['server']['usecookies']
== False)
- {
- $GLOBALS['phpgw']->sessions->setcookie('sessionid');
- $GLOBALS['phpgw']->sessions->setcookie('kp3');
- $GLOBALS['phpgw']->sessions->setcookie('domain');
- }
-*/
-
-/* This is not working yet because I need to figure out a way to clear the $cd
=1
- if (isset($_SERVER['PHP_AUTH_USER']) && $_GET['cd'] == '1')
- {
- Header('HTTP/1.0 401 Unauthorized');
- Header('WWW-Authenticate: Basic realm="phpGroupWare"');
- echo 'You have to re-authentificate yourself';
- exit;
- }
-*/
-
- if (! $deny_login && !
$GLOBALS['phpgw_info']['server']['show_domain_selectbox'])
- {
- $tmpl->set_file(array('login_form' => 'login.tpl'));
- $tmpl->set_var('charset',lang('charset'));
- }
- elseif ($GLOBALS['phpgw_info']['server']['show_domain_selectbox'])
- {
- $tmpl->set_file(array('login_form' =>
'login_selectdomain.tpl'));
- $tmpl->set_var('charset',lang('charset'));
- }
-
- if(@$GLOBALS['phpgw_info']['server']['domain_from_host']
- &&
address@hidden'phpgw_info']['server']['show_domain_selectbox'])
- {
- $tmpl->set_var('logindomain', '@' . $_SERVER['SERVER_NAME']
- . '<input type="hidden" name="logindomain" value="'
- . $_SERVER['SERVER_NAME'] . '">');
- }
-
-
- function check_logoutcode($code)
- {
- switch($code)
- {
- case 1:
- return lang('You have been successfully logged
out');
- break;
- case 2:
- return lang('Sorry, your login has expired');
- break;
- case 5:
- return '<font color="FF0000">' . lang('Bad
login or password') . '</font>';
- break;
- case 99:
- return '<font color="FF0000">' . lang('Blocked,
too many attempts') . '</font>';
- break;
- case 10:
-
$GLOBALS['phpgw']->sessions->phpgw_setcookie('sessionid');
-
$GLOBALS['phpgw']->sessions->phpgw_setcookie('kp3');
-
$GLOBALS['phpgw']->sessions->phpgw_setcookie('domain');
-
- //fix for bug php4 expired sessions bug
-
if($GLOBALS['phpgw_info']['server']['sessions_type'] == 'php4')
- {
-
$GLOBALS['phpgw']->sessions->phpgw_setcookie(PHPGW_PHPSESSID);
- }
-
- return '<font color=#FF0000>' . lang('Your
session could not be verified.') . '</font>';
- break;
- default:
- return ' ';
- }
- }
-
- function check_langs()
- {
- //echo "<h1>check_langs()</h1>\n";
- if ($GLOBALS['phpgw_info']['server']['lang_ctimes'] &&
!is_array($GLOBALS['phpgw_info']['server']['lang_ctimes']))
- {
- $GLOBALS['phpgw_info']['server']['lang_ctimes'] =
unserialize($GLOBALS['phpgw_info']['server']['lang_ctimes']);
- }
- //_debug_array($GLOBALS['phpgw_info']['server']['lang_ctimes']);
-
- $lang =
$GLOBALS['phpgw_info']['user']['preferences']['common']['lang'];
- $apps = $GLOBALS['phpgw_info']['user']['apps'];
- $apps['phpgwapi'] = true; // check the api too
- while (list($app,$data) = each($apps))
- {
- $fname = PHPGW_SERVER_ROOT .
"/$app/setup/phpgw_$lang.lang";
-
- if (file_exists($fname))
- {
- $ctime = filectime($fname);
- $ltime =
intval($GLOBALS['phpgw_info']['server']['lang_ctimes'][$lang][$app]);
- //echo "checking lang='$lang', app='$app',
ctime='$ctime', ltime='$ltime'<br />\n";
-
- if ($ctime != $ltime)
- {
- update_langs(); // update all
langs
- break;
- }
- }
- }
- }
-
- function update_langs()
- {
- $GLOBALS['phpgw_setup'] = CreateObject('phpgwapi.setup');
- $GLOBALS['phpgw_setup']->db = $GLOBALS['phpgw']->db;
-
- $GLOBALS['phpgw_setup']->detection->check_lang(false); // get
installed langs
- $langs = $GLOBALS['phpgw_info']['setup']['installed_langs'];
- while (list($lang) = @each($langs))
- {
- $langs[$lang] = $lang;
- }
- $_POST['submit'] = true;
- $_POST['lang_selected'] = $langs;
- $_POST['upgrademethod'] = 'dumpold';
- $included = 'from_login';
-
- include(PHPGW_SERVER_ROOT . '/setup/lang.php');
- }
-
- /* Program starts here */
-
- if ($GLOBALS['phpgw_info']['server']['auth_type'] == 'http' &&
isset($_SERVER['PHP_AUTH_USER']))
- {
- $submit = True;
- $login = $_SERVER['PHP_AUTH_USER'];
- $passwd = $_SERVER['PHP_AUTH_PW'];
- }
-
- # Apache + mod_ssl style SSL certificate authentication
- # Certificate (chain) verification occurs inside mod_ssl
- if ($GLOBALS['phpgw_info']['server']['auth_type'] == 'sqlssl' &&
isset($_SERVER['SSL_CLIENT_S_DN']) && !isset($_GET['cd']))
- {
- # an X.509 subject looks like:
- #
/CN=john.doe/OU=Department/O=Company/C=xx/address@hidden/L=City/
- # the username is deliberately lowercase, to ease LDAP
integration
- $sslattribs = explode('/',$_SERVER['SSL_CLIENT_S_DN']);
- # skip the part in front of the first '/' (nothing)
- while ($sslattrib = next($sslattribs))
- {
- list($key,$val) = explode('=',$sslattrib);
- $sslattributes[$key] = $val;
- }
-
- if (isset($sslattributes['Email']))
- {
- $submit = True;
-
- # login will be set here if the user logged out and
uses a different username with
- # the same SSL-certificate.
- if
(!isset($_POST['login'])&&isset($sslattributes['Email'])) {
- $login = $sslattributes['Email'];
- # not checked against the database, but
delivered to authentication module
- $passwd = $_SERVER['SSL_CLIENT_S_DN'];
- }
- }
- unset($key);
- unset($val);
- unset($sslattributes);
- }
-
- if (isset($_POST['passwd_type']) || $_POST['submit'] ||
$_POST['submit_x'] || $_POST['submit_y'])
- {
- if (getenv(REQUEST_METHOD) != 'POST' &&
$_SERVER['REQUEST_METHOD'] != 'POST'
- && !isset($_SERVER['PHP_AUTH_USER']) &&
!isset($_SERVER['SSL_CLIENT_S_DN']))
- {
-
$GLOBALS['phpgw']->redirect($GLOBALS['phpgw']->link('/login.php','code=5'));
- }
- $login = $_POST['login'];
- if (strstr($login,'@') === False &&
isset($_POST['logindomain']))
- {
- $login .= '@' . $_POST['logindomain'];
- }
- $GLOBALS['sessionid'] =
$GLOBALS['phpgw']->session->create($login,$_POST['passwd'],$_POST['passwd_type']);
-
- if (! isset($GLOBALS['sessionid']) || ! $GLOBALS['sessionid'])
- {
-
$GLOBALS['phpgw']->redirect($GLOBALS['phpgw_info']['server']['webserver_url'] .
'/login.php?cd=' . $GLOBALS['phpgw']->session->cd_reason);
- }
- else
- {
- $forward = get_var('phpgw_forward', array('GET',
'POST'), 0);
- if($forward)
- {
- $extra_vars['phpgw_forward'] = $forward;
- foreach($_GET as $name => $value)
- {
- if (ereg('phpgw_',$name))
- {
- $extra_vars[$name] = $value;
- }
- }
- }
- if
(!$GLOBALS['phpgw_info']['server']['disable_autoload_langfiles'])
- {
- check_langs();
- }
- $extra_vars['cd'] = 'yes';
-
- $GLOBALS['phpgw']->hooks->process('login');
- $GLOBALS['phpgw']->redirect_link('/home.php',
$extra_vars);
- }
- }
- else
- {
- // !!! DONT CHANGE THESE LINES !!!
- // If there is something wrong with this code TELL ME!
- // Commenting out the code will not fix it. (jengo)
- if (isset($_COOKIE['last_loginid']))
- {
- $accounts = CreateObject('phpgwapi.accounts');
- $prefs = CreateObject('phpgwapi.preferences',
$accounts->name2id($_COOKIE['last_loginid']));
-
- if (! $prefs->account_id)
- {
-
$GLOBALS['phpgw_info']['user']['preferences']['common']['lang'] = 'en';
- }
- else
- {
- $GLOBALS['phpgw_info']['user']['preferences'] =
$prefs->read_repository();
- }
- #print 'LANG:' .
$GLOBALS['phpgw_info']['user']['preferences']['common']['lang'] . '<br />';
- }
- else
- {
- // If the lastloginid cookies isn't set, we will
default to english.
- // Change this if you need.
-
$GLOBALS['phpgw_info']['user']['preferences']['common']['lang'] = 'en';
- }
- $GLOBALS['phpgw']->translation->add_app('login');
- $GLOBALS['phpgw']->translation->add_app('loginscreen');
- if (lang('loginscreen_message') != 'loginscreen_message*')
- {
-
$tmpl->set_var('lang_message',stripslashes(lang('loginscreen_message')));
- }
- }
-
- if( (address@hidden'phpgw_info']['server']['usecookies']) &&
@is_array($_COOKIE) )
- {
- unset($_COOKIE['last_loginid']);
- unset($_COOKIE['last_domain']);
- }
-
- $last_loginid = $_COOKIE['last_loginid'];
- if ($GLOBALS['phpgw_info']['server']['show_domain_selectbox'])
- {
- $domain_select = ''; // For security ... just in case
- foreach($GLOBALS['phpgw_domain'] as $domain_name =>
$domain_vars)
- {
- $domain_select .= '<option value="' . $domain_name .
'"';
-
- if ($domain_name == $_COOKIE['last_domain'])
- {
- $domain_select .= ' selected';
- }
- $domain_select .= '>' . $domain_name . '</option>';
- }
- $tmpl->set_var('select_domain',$domain_select);
- }
- elseif ($last_loginid !== '')
- {
- reset($GLOBALS['phpgw_domain']);
- list($default_domain) = each($GLOBALS['phpgw_domain']);
-
- if ($_COOKIE['last_domain'] != $default_domain &&
!empty($_COOKIE['last_domain']))
- {
- $last_loginid .= '@' . $_COOKIE['last_domain'];
- }
- }
-
- foreach($_GET as $name => $value)
- {
- if (ereg('phpgw_',$name))
- {
- $extra_vars .= '&' . $name . '=' . urlencode($value);
- }
- }
-
- if ($extra_vars)
- {
- $extra_vars = '?' . substr($extra_vars,1,strlen($extra_vars));
- }
-
- $tmpl->set_var('login_url',
$GLOBALS['phpgw_info']['server']['webserver_url'] . '/login.php' . $extra_vars);
-
$tmpl->set_var('registration_url',$GLOBALS['phpgw_info']['server']['webserver_url']
. '/registration/');
-
$tmpl->set_var('version',$GLOBALS['phpgw_info']['server']['versions']['phpgwapi']);
- $tmpl->set_var('cd',check_logoutcode($_GET['cd']));
- $tmpl->set_var('cookie',$last_loginid);
-
- $tmpl->set_var('lang_username',lang('username'));
- $tmpl->set_var('lang_password',lang('password'));
- $tmpl->set_var('lang_login',lang('login'));
-
- $tmpl->set_var('website_title',
$GLOBALS['phpgw_info']['server']['site_title']);
-
$tmpl->set_var('template_set',$GLOBALS['phpgw_info']['login_template_set']);
-
$tmpl->set_var('bg_color',($GLOBALS['phpgw_info']['server']['login_bg_color']?$GLOBALS['phpgw_info']['server']['login_bg_color']:'FFFFFF'));
-
$tmpl->set_var('bg_color_title',($GLOBALS['phpgw_info']['server']['login_bg_color_title']?$GLOBALS['phpgw_info']['server']['login_bg_color_title']:'486591'));
-
$tmpl->set_var('logo_url',($GLOBALS['phpgw_info']['server']['login_logo_url']?$GLOBALS['phpgw_info']['server']['login_logo_url']:'www.phpgroupware.org'));
-
$tmpl->set_var('logo_file',($GLOBALS['phpgw_info']['server']['login_logo_file']?$GLOBALS['phpgw_info']['server']['login_logo_file']:'logo.gif'));
-
$tmpl->set_var('logo_title',($GLOBALS['phpgw_info']['server']['login_logo_title']?$GLOBALS['phpgw_info']['server']['login_logo_title']:'phpGroupWare
--> home'));
- $tmpl->set_var('autocomplete',
($GLOBALS['phpgw_info']['server']['autocomplete_login'] ? 'autocomplete="off"'
: ''));
-
- $tmpl->pfp('loginout','login_form');
-?>
Deleted: branches/Version-0_9_16-branch/phpgroupware/logout.php
===================================================================
--- branches/Version-0_9_16-branch/phpgroupware/logout.php 2009-02-11
09:04:37 UTC (rev 19062)
+++ branches/Version-0_9_16-branch/phpgroupware/logout.php 2009-02-11
09:25:35 UTC (rev 19063)
@@ -1,67 +0,0 @@
-<?php
-
/**************************************************************************\
- * phpGroupWare
*
- * http://www.phpgroupware.org
*
- * Written by Joseph Engo <address@hidden> *
- * --------------------------------------------
*
- * This program is free software; you can redistribute it and/or modify
it *
- * under the terms of the GNU General Public License as published by
the *
- * Free Software Foundation; either version 2 of the License, or (at
your *
- * option) any later version.
*
-
\**************************************************************************/
-
- /* $Id$ */
-
- $GLOBALS['phpgw_info'] = array();
- $GLOBALS['phpgw_info']['flags'] = array(
- 'disable_template_class' => True,
- 'currentapp' => 'logout',
- 'noheader' => True,
- 'nofooter' => True,
- 'nonavbar' => True
- );
-
- include('./header.inc.php');
-
- $GLOBALS['sessionid'] = get_var('sessionid',array('GET','COOKIE'));
- $GLOBALS['kp3'] = get_var('kp3',array('GET','COOKIE'));
-
- $verified = $GLOBALS['phpgw']->session->verify();
- if ($verified)
- {
- if (file_exists($GLOBALS['phpgw_info']['server']['temp_dir'] .
SEP . $GLOBALS['sessionid']))
- {
- $dh =
opendir($GLOBALS['phpgw_info']['server']['temp_dir'] . SEP .
$GLOBALS['sessionid']);
- while ($file = readdir($dh))
- {
- if ($file != '.' && $file != '..')
- {
-
unlink($GLOBALS['phpgw_info']['server']['temp_dir'] . SEP .
$GLOBALS['sessionid'] . SEP . $file);
- }
- }
- rmdir($GLOBALS['phpgw_info']['server']['temp_dir'] .
SEP . $GLOBALS['sessionid']);
- }
- $GLOBALS['phpgw']->hooks->process('logout');
-
$GLOBALS['phpgw']->session->destroy($GLOBALS['sessionid'],$GLOBALS['kp3']);
- }
- else
- {
- if(is_object($GLOBALS['phpgw']->log))
- {
- $GLOBALS['phpgw']->log->write(array(
- 'text' => 'W-VerifySession, could not verify
session during logout',
- 'line' => __LINE__,
- 'file' => __FILE__
- ));
- }
- }
- $GLOBALS['phpgw']->session->phpgw_setcookie('sessionid');
- $GLOBALS['phpgw']->session->phpgw_setcookie('kp3');
- $GLOBALS['phpgw']->session->phpgw_setcookie('domain');
- if($GLOBALS['phpgw_info']['server']['sessions_type'] == 'php4')
- {
- $GLOBALS['phpgw']->session->phpgw_setcookie(PHPGW_PHPSESSID);
- }
-
-
$GLOBALS['phpgw']->redirect($GLOBALS['phpgw_info']['server']['webserver_url'].'/login.php?cd=1');
-?>
Deleted: branches/Version-0_9_16-branch/phpgroupware/notify.php
===================================================================
--- branches/Version-0_9_16-branch/phpgroupware/notify.php 2009-02-11
09:04:37 UTC (rev 19062)
+++ branches/Version-0_9_16-branch/phpgroupware/notify.php 2009-02-11
09:25:35 UTC (rev 19063)
@@ -1,36 +0,0 @@
-<?php
- /**************************************************************************\
- * phpGroupWare *
- * http://www.phpgroupware.org *
- * -------------------------------------------- *
- * This program is free software; you can redistribute it and/or modify it *
- * under the terms of the GNU General Public License as published by the *
- * Free Software Foundation; either version 2 of the License, or (at your *
- * option) any later version. *
- \**************************************************************************/
-
- /* $Id$ */
-
- $phpgw_info = array();
- $GLOBALS['phpgw_info']['flags'] = array(
- 'noheader' => True,
- 'nonavbar' => True,
- 'disable_Template_class' => True,
- 'currentapp' => 'notifywindow'
- );
- include('header.inc.php');
-?>
-<html>
-<head>
- <meta http-equiv="Refresh" content="300">
- <title>Notify Window</title>
-</head>
-<body bgcolor="<?php echo $GLOBALS['phpgw_info']['theme']['bg_color']; ?>"
alink="blue" vlink="blue" link="blue">
-<table>
- <tr><td><a href="<?php echo $GLOBALS['phpgw']->link('/notify.php');
?>">Check Now</a></td></tr>
-<?php
- $GLOBALS['phpgw']->hooks->process('notifywindow');
-?>
-</table>
-</body>
-</html>
Deleted: branches/Version-0_9_16-branch/phpgroupware/notify_simple.php
===================================================================
--- branches/Version-0_9_16-branch/phpgroupware/notify_simple.php
2009-02-11 09:04:37 UTC (rev 19062)
+++ branches/Version-0_9_16-branch/phpgroupware/notify_simple.php
2009-02-11 09:25:35 UTC (rev 19063)
@@ -1,26 +0,0 @@
-<?php
- /**************************************************************************\
- * phpGroupWare *
- * http://www.phpgroupware.org *
- * -------------------------------------------- *
- * This program is free software; you can redistribute it and/or modify it *
- * under the terms of the GNU General Public License as published by the *
- * Free Software Foundation; either version 2 of the License, or (at your *
- * option) any later version. *
- \**************************************************************************/
-
- /* $Id$ */
-
- $phpgw_info = array();
- $GLOBALS['phpgw_info']['flags'] = array(
- 'noheader' => True,
- 'nonavbar' => True,
- 'disable_Template_class' => True,
- 'currentapp' => 'notifywindow'
- );
- include('./header.inc.php');
-
- echo '<html><body>';
- $GLOBALS['phpgw']->hooks->process('notifywindow_simple',array('email'));
- echo '</body></html>';
-?>
Deleted: branches/Version-0_9_16-branch/phpgroupware/phpGroupWare - 0.9.16.kpf
===================================================================
--- branches/Version-0_9_16-branch/phpgroupware/phpGroupWare - 0.9.16.kpf
2009-02-11 09:04:37 UTC (rev 19062)
+++ branches/Version-0_9_16-branch/phpgroupware/phpGroupWare - 0.9.16.kpf
2009-02-11 09:25:35 UTC (rev 19063)
@@ -1,14034 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!-- Komodo Project File - DO NOT EDIT -->
-<project kpf_version="2" name="phpGroupWare - 0.9.16">
-<preference-set id="">
-</preference-set>
-<folder name="addressbook">
-<preference-set id="">
- <string id="import_dirname">Q:\public_html\phpgw_0_9_16\addressbook</string>
-</preference-set>
-<file name="admin.php" url="addressbook/admin.php">
-</file>
-<file name="csv_import.php" url="addressbook/csv_import.php">
-</file>
-<file name="index.php" url="addressbook/index.php">
-</file>
-<folder name="help" url="addressbook/help">
-<file name="index.php" url="addressbook/help/index.php">
-</file>
-<folder name="DE" url="addressbook/help/DE">
-<file name="addressbook.php" url="addressbook/help/DE/addressbook.php">
-</file>
-</folder>
-<folder name="EN" url="addressbook/help/EN">
-<file name="addressbook.php" url="addressbook/help/EN/addressbook.php">
-</file>
-</folder>
-<folder name="FI" url="addressbook/help/FI">
-<file name="addressbook.php" url="addressbook/help/FI/addressbook.php">
-</file>
-</folder>
-<folder name="JA" url="addressbook/help/JA">
-<file name="addressbook.php" url="addressbook/help/JA/addressbook.php">
-</file>
-</folder>
-</folder>
-<folder name="inc" url="addressbook/inc">
-<file name="arr.php" url="addressbook/inc/arr.php">
-</file>
-<file name="class.boXport.inc.php" url="addressbook/inc/class.boXport.inc.php">
-</file>
-<file name="class.boaddressbook.inc.php"
url="addressbook/inc/class.boaddressbook.inc.php">
-</file>
-<file name="class.boaddressbook_prefs.inc.php"
url="addressbook/inc/class.boaddressbook_prefs.inc.php">
-</file>
-<file name="class.bocatalog_contact_addr_type.inc.php"
url="addressbook/inc/class.bocatalog_contact_addr_type.inc.php">
-</file>
-<file name="class.bocatalog_contact_comm_descr.inc.php"
url="addressbook/inc/class.bocatalog_contact_comm_descr.inc.php">
-</file>
-<file name="class.bocatalog_contact_comm_type.inc.php"
url="addressbook/inc/class.bocatalog_contact_comm_type.inc.php">
-</file>
-<file name="class.bocatalog_contact_note_type.inc.php"
url="addressbook/inc/class.bocatalog_contact_note_type.inc.php">
-</file>
-<file name="class.catalog_manager.inc.php"
url="addressbook/inc/class.catalog_manager.inc.php">
-</file>
-<file name="class.pdb.inc.php" url="addressbook/inc/class.pdb.inc.php">
-</file>
-<file name="class.soaddressbook.inc.php"
url="addressbook/inc/class.soaddressbook.inc.php">
-</file>
-<file name="class.socatalog_contact_addr_type.inc.php"
url="addressbook/inc/class.socatalog_contact_addr_type.inc.php">
-</file>
-<file name="class.socatalog_contact_comm_descr.inc.php"
url="addressbook/inc/class.socatalog_contact_comm_descr.inc.php">
-</file>
-<file name="class.socatalog_contact_comm_type.inc.php"
url="addressbook/inc/class.socatalog_contact_comm_type.inc.php">
-</file>
-<file name="class.socatalog_contact_note_type.inc.php"
url="addressbook/inc/class.socatalog_contact_note_type.inc.php">
-</file>
-<file name="class.uiXport.inc.php" url="addressbook/inc/class.uiXport.inc.php">
-</file>
-<file name="class.uiaddressbook_prefs.inc.php"
url="addressbook/inc/class.uiaddressbook_prefs.inc.php">
-</file>
-<file name="class.uicatalog_contact_addr_type.inc.php"
url="addressbook/inc/class.uicatalog_contact_addr_type.inc.php">
-</file>
-<file name="class.uicatalog_contact_comm_descr.inc.php"
url="addressbook/inc/class.uicatalog_contact_comm_descr.inc.php">
-</file>
-<file name="class.uicatalog_contact_comm_type.inc.php"
url="addressbook/inc/class.uicatalog_contact_comm_type.inc.php">
-</file>
-<file name="class.uicatalog_contact_note_type.inc.php"
url="addressbook/inc/class.uicatalog_contact_note_type.inc.php">
-</file>
-<file name="class.uifields.inc.php"
url="addressbook/inc/class.uifields.inc.php">
-</file>
-<file name="class.uivcard.inc.php" url="addressbook/inc/class.uivcard.inc.php">
-</file>
-<file name="functions.inc.php" url="addressbook/inc/functions.inc.php">
-</file>
-<file name="hook_add_def_pref.inc.php"
url="addressbook/inc/hook_add_def_pref.inc.php">
-</file>
-<file name="hook_addressbook_add_def_acl.inc.php"
url="addressbook/inc/hook_addressbook_add_def_acl.inc.php">
-</file>
-<file name="hook_admin.inc.php" url="addressbook/inc/hook_admin.inc.php">
-</file>
-<file name="hook_config_validate.inc.php"
url="addressbook/inc/hook_config_validate.inc.php">
-</file>
-<file name="hook_deleteaccount.inc.php"
url="addressbook/inc/hook_deleteaccount.inc.php">
-</file>
-<file name="hook_home.inc.php" url="addressbook/inc/hook_home.inc.php">
-</file>
-<file name="hook_manual.inc.php" url="addressbook/inc/hook_manual.inc.php">
-</file>
-<file name="hook_notifywindow.inc.php"
url="addressbook/inc/hook_notifywindow.inc.php">
-</file>
-<file name="hook_preferences.inc.php"
url="addressbook/inc/hook_preferences.inc.php">
-</file>
-<file name="hook_sidebox_menu.inc.php"
url="addressbook/inc/hook_sidebox_menu.inc.php">
-</file>
-<file name="class.uicategorize_contacts.inc.php"
url="addressbook/inc/class.uicategorize_contacts.inc.php">
-</file>
-<file name="class.widget_lists.inc.php"
url="addressbook/inc/class.widget_lists.inc.php">
-</file>
-<file name="class.uiaddressbook.inc.php"
url="addressbook/inc/class.uiaddressbook.inc.php">
-</file>
-<file name="class.ipc_addressbook.inc.php"
url="addressbook/inc/class.ipc_addressbook.inc.php">
-</file>
-<file name="class.addressbook_importer.inc.php"
url="addressbook/inc/class.addressbook_importer.inc.php">
-</file>
-<folder name="export" url="addressbook/inc/export">
-<file name="Multiple_VCard" url="addressbook/inc/export/Multiple_VCard">
-</file>
-<file name="Netscape_LDIF" url="addressbook/inc/export/Netscape_LDIF">
-</file>
-<file name="Outlook_CSV_-_Deutsch"
url="addressbook/inc/export/Outlook_CSV_-_Deutsch">
-</file>
-<file name="Outlook_CSV_-_English"
url="addressbook/inc/export/Outlook_CSV_-_English">
-</file>
-<file name="OpenOffice_-_calc" url="addressbook/inc/export/OpenOffice_-_calc">
-</file>
-<file name="Palm_PDB" url="addressbook/inc/export/Palm_PDB">
-</file>
-<file name="phpgw_LDIF" url="addressbook/inc/export/phpgw_LDIF">
-</file>
-<file name="phpgw_SQL" url="addressbook/inc/export/phpgw_SQL">
-</file>
-<file name="OpenOffice_-_writer"
url="addressbook/inc/export/OpenOffice_-_writer">
-</file>
-<file name="sample.sxc" url="addressbook/inc/export/sample.sxc">
-</file>
-<file name="sample.sxw" url="addressbook/inc/export/sample.sxw">
-</file>
-</folder>
-<folder name="import" url="addressbook/inc/import">
-<file name="Import_Multiple_VCard"
url="addressbook/inc/import/Import_Multiple_VCard">
-</file>
-<file name="Import_from_Netscape"
url="addressbook/inc/import/Import_from_Netscape">
-</file>
-<file name="Import_from_Outlook_-_Deutsch"
url="addressbook/inc/import/Import_from_Outlook_-_Deutsch">
-</file>
-<file name="Import_from_Outlook_-_English"
url="addressbook/inc/import/Import_from_Outlook_-_English">
-</file>
-</folder>
-</folder>
-<folder name="setup" url="addressbook/setup">
-<file name="phpgw_br.lang" url="addressbook/setup/phpgw_br.lang">
-</file>
-<file name="phpgw_cs.lang" url="addressbook/setup/phpgw_cs.lang">
-</file>
-<file name="phpgw_da.lang" url="addressbook/setup/phpgw_da.lang">
-</file>
-<file name="phpgw_de.lang" url="addressbook/setup/phpgw_de.lang">
-</file>
-<file name="phpgw_en.lang" url="addressbook/setup/phpgw_en.lang">
-</file>
-<file name="phpgw_es.lang" url="addressbook/setup/phpgw_es.lang">
-</file>
-<file name="phpgw_fi.lang" url="addressbook/setup/phpgw_fi.lang">
-</file>
-<file name="phpgw_fr.lang" url="addressbook/setup/phpgw_fr.lang">
-</file>
-<file name="phpgw_hu.lang" url="addressbook/setup/phpgw_hu.lang">
-</file>
-<file name="phpgw_it.lang" url="addressbook/setup/phpgw_it.lang">
-</file>
-<file name="phpgw_ja.lang" url="addressbook/setup/phpgw_ja.lang">
-</file>
-<file name="phpgw_ko.lang" url="addressbook/setup/phpgw_ko.lang">
-</file>
-<file name="phpgw_nl.lang" url="addressbook/setup/phpgw_nl.lang">
-</file>
-<file name="phpgw_no.lang" url="addressbook/setup/phpgw_no.lang">
-</file>
-<file name="phpgw_pl.lang" url="addressbook/setup/phpgw_pl.lang">
-</file>
-<file name="phpgw_pt.lang" url="addressbook/setup/phpgw_pt.lang">
-</file>
-<file name="phpgw_sv.lang" url="addressbook/setup/phpgw_sv.lang">
-</file>
-<file name="setup.inc.php" url="addressbook/setup/setup.inc.php">
-</file>
-</folder>
-<folder name="templates" url="addressbook/templates">
-<folder name="default" url="addressbook/templates/default">
-<file name="about.tpl" url="addressbook/templates/default/about.tpl">
-</file>
-<file name="account_form.tpl"
url="addressbook/templates/default/account_form.tpl">
-</file>
-<file name="add.tpl" url="addressbook/templates/default/add.tpl">
-</file>
-<file name="admin.tpl" url="addressbook/templates/default/admin.tpl">
-</file>
-<file name="body_detail.tpl"
url="addressbook/templates/default/body_detail.tpl">
-</file>
-<file name="body_detail_org.tpl"
url="addressbook/templates/default/body_detail_org.tpl">
-</file>
-<file name="cannot_delete.tpl"
url="addressbook/templates/default/cannot_delete.tpl">
-</file>
-<file name="comm_data.tpl" url="addressbook/templates/default/comm_data.tpl">
-</file>
-<file name="config.tpl" url="addressbook/templates/default/config.tpl">
-</file>
-<file name="csv_import.tpl" url="addressbook/templates/default/csv_import.tpl">
-</file>
-<file name="current_catalog_body.tpl"
url="addressbook/templates/default/current_catalog_body.tpl">
-</file>
-<file name="current_tab_body.tpl"
url="addressbook/templates/default/current_tab_body.tpl">
-</file>
-<file name="delete.tpl" url="addressbook/templates/default/delete.tpl">
-</file>
-<file name="delete_common.tpl"
url="addressbook/templates/default/delete_common.tpl">
-</file>
-<file name="edit.tpl" url="addressbook/templates/default/edit.tpl">
-</file>
-<file name="export.tpl" url="addressbook/templates/default/export.tpl">
-</file>
-<file name="field_form.tpl" url="addressbook/templates/default/field_form.tpl">
-</file>
-<file name="form.css" url="addressbook/templates/default/form.css">
-</file>
-<file name="form.tpl" url="addressbook/templates/default/form.tpl">
-</file>
-<file name="format_de.tpl" url="addressbook/templates/default/format_de.tpl">
-</file>
-<file name="format_us.tpl" url="addressbook/templates/default/format_us.tpl">
-</file>
-<file name="full_format_de.tpl"
url="addressbook/templates/default/full_format_de.tpl">
-</file>
-<file name="full_format_us.tpl"
url="addressbook/templates/default/full_format_us.tpl">
-</file>
-<file name="import.tpl" url="addressbook/templates/default/import.tpl">
-</file>
-<file name="index.tpl" url="addressbook/templates/default/index.tpl">
-</file>
-<file name="line_format_de.tpl"
url="addressbook/templates/default/line_format_de.tpl">
-</file>
-<file name="line_format_us.tpl"
url="addressbook/templates/default/line_format_us.tpl">
-</file>
-<file name="listfields.tpl" url="addressbook/templates/default/listfields.tpl">
-</file>
-<file name="many_actions.tpl"
url="addressbook/templates/default/many_actions.tpl">
-</file>
-<file name="org_data.tpl" url="addressbook/templates/default/org_data.tpl">
-</file>
-<file name="person_data1.tpl"
url="addressbook/templates/default/person_data1.tpl">
-</file>
-<file name="preference_acl.tpl"
url="addressbook/templates/default/preference_acl.tpl">
-</file>
-<file name="preference_acl_row.tpl"
url="addressbook/templates/default/preference_acl_row.tpl">
-</file>
-<file name="preference_colspan.tpl"
url="addressbook/templates/default/preference_colspan.tpl">
-</file>
-<file name="preferences.tpl"
url="addressbook/templates/default/preferences.tpl">
-</file>
-<file name="preferences_bits.tpl"
url="addressbook/templates/default/preferences_bits.tpl">
-</file>
-<file name="principal_tabs.tpl"
url="addressbook/templates/default/principal_tabs.tpl">
-</file>
-<file name="tab.tpl" url="addressbook/templates/default/tab.tpl">
-</file>
-<file name="tabbodycontents.tpl"
url="addressbook/templates/default/tabbodycontents.tpl">
-</file>
-<file name="tabholder.tpl" url="addressbook/templates/default/tabholder.tpl">
-</file>
-<file name="vcardin.tpl" url="addressbook/templates/default/vcardin.tpl">
-</file>
-<file name="view.tpl" url="addressbook/templates/default/view.tpl">
-</file>
-<file name="categorize_contacts.tpl"
url="addressbook/templates/default/categorize_contacts.tpl">
-</file>
-<file name="widget_lists.tpl"
url="addressbook/templates/default/widget_lists.tpl">
-</file>
-<folder name="images" url="addressbook/templates/default/images">
-<file name="navbar.gif" url="addressbook/templates/default/images/navbar.gif">
-</file>
-<file name="navbar.png" url="addressbook/templates/default/images/navbar.png">
-</file>
-</folder>
-</folder>
-<folder name="idots" url="addressbook/templates/idots">
-<folder name="images" url="addressbook/templates/idots/images">
-<file name="navbar.png" url="addressbook/templates/idots/images/navbar.png">
-</file>
-</folder>
-</folder>
-<folder name="idsociety" url="addressbook/templates/idsociety">
-<folder name="images" url="addressbook/templates/idsociety/images">
-<file name="navbar-over.gif"
url="addressbook/templates/idsociety/images/navbar-over.gif">
-</file>
-<file name="navbar-over.png"
url="addressbook/templates/idsociety/images/navbar-over.png">
-</file>
-<file name="navbar.gif"
url="addressbook/templates/idsociety/images/navbar.gif">
-</file>
-<file name="navbar.png"
url="addressbook/templates/idsociety/images/navbar.png">
-</file>
-</folder>
-</folder>
-<folder name="probusiness" url="addressbook/templates/probusiness">
-<file name="about.tpl" url="addressbook/templates/probusiness/about.tpl">
-</file>
-<file name="account_form.tpl"
url="addressbook/templates/probusiness/account_form.tpl">
-</file>
-<file name="add.tpl" url="addressbook/templates/probusiness/add.tpl">
-</file>
-<file name="admin.tpl" url="addressbook/templates/probusiness/admin.tpl">
-</file>
-<file name="body_detail.tpl"
url="addressbook/templates/probusiness/body_detail.tpl">
-</file>
-<file name="body_detail_org.tpl"
url="addressbook/templates/probusiness/body_detail_org.tpl">
-</file>
-<file name="comm_data.tpl"
url="addressbook/templates/probusiness/comm_data.tpl">
-</file>
-<file name="config.tpl" url="addressbook/templates/probusiness/config.tpl">
-</file>
-<file name="csv_import.tpl"
url="addressbook/templates/probusiness/csv_import.tpl">
-</file>
-<file name="current_tab_body.tpl"
url="addressbook/templates/probusiness/current_tab_body.tpl">
-</file>
-<file name="delete.tpl" url="addressbook/templates/probusiness/delete.tpl">
-</file>
-<file name="delete_common.tpl"
url="addressbook/templates/probusiness/delete_common.tpl">
-</file>
-<file name="edit.tpl" url="addressbook/templates/probusiness/edit.tpl">
-</file>
-<file name="export.tpl" url="addressbook/templates/probusiness/export.tpl">
-</file>
-<file name="field_form.tpl"
url="addressbook/templates/probusiness/field_form.tpl">
-</file>
-<file name="form.tpl" url="addressbook/templates/probusiness/form.tpl">
-</file>
-<file name="format_de.tpl"
url="addressbook/templates/probusiness/format_de.tpl">
-</file>
-<file name="format_us.tpl"
url="addressbook/templates/probusiness/format_us.tpl">
-</file>
-<file name="full_format_de.tpl"
url="addressbook/templates/probusiness/full_format_de.tpl">
-</file>
-<file name="full_format_us.tpl"
url="addressbook/templates/probusiness/full_format_us.tpl">
-</file>
-<file name="import.tpl" url="addressbook/templates/probusiness/import.tpl">
-</file>
-<file name="index.tpl" url="addressbook/templates/probusiness/index.tpl">
-</file>
-<file name="line_format_de.tpl"
url="addressbook/templates/probusiness/line_format_de.tpl">
-</file>
-<file name="line_format_us.tpl"
url="addressbook/templates/probusiness/line_format_us.tpl">
-</file>
-<file name="listfields.tpl"
url="addressbook/templates/probusiness/listfields.tpl">
-</file>
-<file name="many_actions.tpl"
url="addressbook/templates/probusiness/many_actions.tpl">
-</file>
-<file name="org_data.tpl" url="addressbook/templates/probusiness/org_data.tpl">
-</file>
-<file name="person_data1.tpl"
url="addressbook/templates/probusiness/person_data1.tpl">
-</file>
-<file name="preference_acl.tpl"
url="addressbook/templates/probusiness/preference_acl.tpl">
-</file>
-<file name="preference_acl_row.tpl"
url="addressbook/templates/probusiness/preference_acl_row.tpl">
-</file>
-<file name="preference_colspan.tpl"
url="addressbook/templates/probusiness/preference_colspan.tpl">
-</file>
-<file name="preferences.tpl"
url="addressbook/templates/probusiness/preferences.tpl">
-</file>
-<file name="preferences_bits.tpl"
url="addressbook/templates/probusiness/preferences_bits.tpl">
-</file>
-<file name="principal_tabs.tpl"
url="addressbook/templates/probusiness/principal_tabs.tpl">
-</file>
-<file name="tab.tpl" url="addressbook/templates/probusiness/tab.tpl">
-</file>
-<file name="tabbodycontents.tpl"
url="addressbook/templates/probusiness/tabbodycontents.tpl">
-</file>
-<file name="tabholder.tpl"
url="addressbook/templates/probusiness/tabholder.tpl">
-</file>
-<file name="vcardin.tpl" url="addressbook/templates/probusiness/vcardin.tpl">
-</file>
-<file name="view.tpl" url="addressbook/templates/probusiness/view.tpl">
-</file>
-<file name="cannot_delete.tpl"
url="addressbook/templates/probusiness/cannot_delete.tpl">
-</file>
-<file name="current_catalog_body.tpl"
url="addressbook/templates/probusiness/current_catalog_body.tpl">
-</file>
-<folder name="images" url="addressbook/templates/probusiness/images">
-<file name="navbar.png"
url="addressbook/templates/probusiness/images/navbar.png">
-</file>
-<file name="newcntc.png"
url="addressbook/templates/probusiness/images/newcntc.png">
-</file>
-<file name="folders.png"
url="addressbook/templates/probusiness/images/folders.png">
-</file>
-</folder>
-</folder>
-</folder>
-</folder>
-<folder name="admin">
-<preference-set id="">
- <string id="import_dirname">Q:\public_html\phpgw_0_9_16\admin</string>
-</preference-set>
-<file name="index.php" url="admin/index.php">
-</file>
-<file name="navbar-create.php" url="admin/navbar-create.php">
-</file>
-<file name="navbar-sel.php" url="admin/navbar-sel.php">
-</file>
-<file name="phpinfo.php" url="admin/phpinfo.php">
-</file>
-<file name="testbutton.php" url="admin/testbutton.php">
-</file>
-<folder name="doc" url="admin/doc">
-<file name="adminconfig.dvi" url="admin/doc/adminconfig.dvi">
-</file>
-<file name="adminconfig.lyx" url="admin/doc/adminconfig.lyx">
-</file>
-<file name="adminconfig.pdf" url="admin/doc/adminconfig.pdf">
-</file>
-<file name="adminconfig.ps" url="admin/doc/adminconfig.ps">
-</file>
-<file name="adminconfig.sgml" url="admin/doc/adminconfig.sgml">
-</file>
-<file name="adminconfig.txt" url="admin/doc/adminconfig.txt">
-</file>
-<file name="copyright.gpl" url="admin/doc/copyright.gpl">
-</file>
-</folder>
-<folder name="help" url="admin/help">
-<file name="index.php" url="admin/help/index.php">
-</file>
-<folder name="DE" url="admin/help/DE">
-<file name="account.php" url="admin/help/DE/account.php">
-</file>
-<file name="admin.php" url="admin/help/DE/admin.php">
-</file>
-<file name="other.php" url="admin/help/DE/other.php">
-</file>
-<file name="session.php" url="admin/help/DE/session.php">
-</file>
-</folder>
-<folder name="EN" url="admin/help/EN">
-<file name="account.php" url="admin/help/EN/account.php">
-</file>
-<file name="admin.php" url="admin/help/EN/admin.php">
-</file>
-<file name="other.php" url="admin/help/EN/other.php">
-</file>
-<file name="session.php" url="admin/help/EN/session.php">
-</file>
-</folder>
-<folder name="FI" url="admin/help/FI">
-<file name="account.php" url="admin/help/FI/account.php">
-</file>
-<file name="admin.php" url="admin/help/FI/admin.php">
-</file>
-<file name="other.php" url="admin/help/FI/other.php">
-</file>
-<file name="session.php" url="admin/help/FI/session.php">
-</file>
-</folder>
-<folder name="JA" url="admin/help/JA">
-<file name="account.php" url="admin/help/JA/account.php">
-</file>
-<file name="admin.php" url="admin/help/JA/admin.php">
-</file>
-<file name="other.php" url="admin/help/JA/other.php">
-</file>
-<file name="session.php" url="admin/help/JA/session.php">
-</file>
-</folder>
-</folder>
-<folder name="inc" url="admin/inc">
-<file name="class.boaccess_history.inc.php"
url="admin/inc/class.boaccess_history.inc.php">
-</file>
-<file name="class.boaccounts.inc.php" url="admin/inc/class.boaccounts.inc.php">
-</file>
-<file name="class.boaclmanager.inc.php"
url="admin/inc/class.boaclmanager.inc.php">
-</file>
-<file name="class.boapplications.inc.php"
url="admin/inc/class.boapplications.inc.php">
-</file>
-<file name="class.bocategories.inc.php"
url="admin/inc/class.bocategories.inc.php">
-</file>
-<file name="class.boconfig.inc.php" url="admin/inc/class.boconfig.inc.php">
-</file>
-<file name="class.bocurrentsessions.inc.php"
url="admin/inc/class.bocurrentsessions.inc.php">
-</file>
-<file name="class.bolog.inc.php" url="admin/inc/class.bolog.inc.php">
-</file>
-<file name="class.boserver.inc.php" url="admin/inc/class.boserver.inc.php">
-</file>
-<file name="class.html.inc.php" url="admin/inc/class.html.inc.php">
-</file>
-<file name="class.soaccess_history.inc.php"
url="admin/inc/class.soaccess_history.inc.php">
-</file>
-<file name="class.soaccounts.inc.php" url="admin/inc/class.soaccounts.inc.php">
-</file>
-<file name="class.soapplications.inc.php"
url="admin/inc/class.soapplications.inc.php">
-</file>
-<file name="class.solog.inc.php" url="admin/inc/class.solog.inc.php">
-</file>
-<file name="class.soserver.inc.php" url="admin/inc/class.soserver.inc.php">
-</file>
-<file name="class.uiaccess_history.inc.php"
url="admin/inc/class.uiaccess_history.inc.php">
-</file>
-<file name="class.uiaccounts.inc.php" url="admin/inc/class.uiaccounts.inc.php">
-</file>
-<file name="class.uiaclmanager.inc.php"
url="admin/inc/class.uiaclmanager.inc.php">
-</file>
-<file name="class.uiapplications.inc.php"
url="admin/inc/class.uiapplications.inc.php">
-</file>
-<file name="class.uiasyncservice.inc.php"
url="admin/inc/class.uiasyncservice.inc.php">
-</file>
-<file name="class.uicategories.inc.php"
url="admin/inc/class.uicategories.inc.php">
-</file>
-<file name="class.uiconfig.inc.php" url="admin/inc/class.uiconfig.inc.php">
-</file>
-<file name="class.uicurrentsessions.inc.php"
url="admin/inc/class.uicurrentsessions.inc.php">
-</file>
-<file name="class.uilog.inc.php" url="admin/inc/class.uilog.inc.php">
-</file>
-<file name="class.uiloglevels.inc.php"
url="admin/inc/class.uiloglevels.inc.php">
-</file>
-<file name="class.uimainscreen.inc.php"
url="admin/inc/class.uimainscreen.inc.php">
-</file>
-<file name="class.uimenuclass.inc.php"
url="admin/inc/class.uimenuclass.inc.php">
-</file>
-<file name="class.uiserver.inc.php" url="admin/inc/class.uiserver.inc.php">
-</file>
-<file name="hook_acl_manager.inc.php" url="admin/inc/hook_acl_manager.inc.php">
-</file>
-<file name="hook_add_def_pref.inc.php"
url="admin/inc/hook_add_def_pref.inc.php">
-</file>
-<file name="hook_admin.inc.php" url="admin/inc/hook_admin.inc.php">
-</file>
-<file name="hook_after_navbar.inc.php"
url="admin/inc/hook_after_navbar.inc.php">
-</file>
-<file name="hook_config.inc.php" url="admin/inc/hook_config.inc.php">
-</file>
-<file name="hook_deleteaccount.inc.php"
url="admin/inc/hook_deleteaccount.inc.php">
-</file>
-<file name="hook_manual.inc.php" url="admin/inc/hook_manual.inc.php">
-</file>
-<file name="hook_sidebox_menu.inc.php"
url="admin/inc/hook_sidebox_menu.inc.php">
-</file>
-</folder>
-<folder name="setup" url="admin/setup">
-<file name="phpgw_br.lang" url="admin/setup/phpgw_br.lang">
-</file>
-<file name="phpgw_cs.lang" url="admin/setup/phpgw_cs.lang">
-</file>
-<file name="phpgw_da.lang" url="admin/setup/phpgw_da.lang">
-</file>
-<file name="phpgw_de.lang" url="admin/setup/phpgw_de.lang">
-</file>
-<file name="phpgw_en.lang" url="admin/setup/phpgw_en.lang">
-</file>
-<file name="phpgw_es.lang" url="admin/setup/phpgw_es.lang">
-</file>
-<file name="phpgw_fi.lang" url="admin/setup/phpgw_fi.lang">
-</file>
-<file name="phpgw_fr.lang" url="admin/setup/phpgw_fr.lang">
-</file>
-<file name="phpgw_hu.lang" url="admin/setup/phpgw_hu.lang">
-</file>
-<file name="phpgw_it.lang" url="admin/setup/phpgw_it.lang">
-</file>
-<file name="phpgw_ja.lang" url="admin/setup/phpgw_ja.lang">
-</file>
-<file name="phpgw_ko.lang" url="admin/setup/phpgw_ko.lang">
-</file>
-<file name="phpgw_nl.lang" url="admin/setup/phpgw_nl.lang">
-</file>
-<file name="phpgw_no.lang" url="admin/setup/phpgw_no.lang">
-</file>
-<file name="phpgw_pl.lang" url="admin/setup/phpgw_pl.lang">
-</file>
-<file name="phpgw_pt.lang" url="admin/setup/phpgw_pt.lang">
-</file>
-<file name="phpgw_sv.lang" url="admin/setup/phpgw_sv.lang">
-</file>
-<file name="phpgw_zh.lang" url="admin/setup/phpgw_zh.lang">
-</file>
-<file name="phpgw_zt.lang" url="admin/setup/phpgw_zt.lang">
-</file>
-<file name="setup.inc.php" url="admin/setup/setup.inc.php">
-</file>
-</folder>
-<folder name="templates" url="admin/templates">
-<folder name="default" url="admin/templates/default">
-<file name="accesslog.tpl" url="admin/templates/default/accesslog.tpl">
-</file>
-<file name="account_form.tpl" url="admin/templates/default/account_form.tpl">
-</file>
-<file name="account_form_ldap.tpl"
url="admin/templates/default/account_form_ldap.tpl">
-</file>
-<file name="accounts.tpl" url="admin/templates/default/accounts.tpl">
-</file>
-<file name="acl_accounts.tpl" url="admin/templates/default/acl_accounts.tpl">
-</file>
-<file name="acl_applist.tpl" url="admin/templates/default/acl_applist.tpl">
-</file>
-<file name="acl_manager_form.tpl"
url="admin/templates/default/acl_manager_form.tpl">
-</file>
-<file name="application_form.tpl"
url="admin/templates/default/application_form.tpl">
-</file>
-<file name="applications.tpl" url="admin/templates/default/applications.tpl">
-</file>
-<file name="category_form.tpl" url="admin/templates/default/category_form.tpl">
-</file>
-<file name="config.tpl" url="admin/templates/default/config.tpl">
-</file>
-<file name="config_footer.tpl" url="admin/templates/default/config_footer.tpl">
-</file>
-<file name="config_head.tpl" url="admin/templates/default/config_head.tpl">
-</file>
-<file name="currentusers.tpl" url="admin/templates/default/currentusers.tpl">
-</file>
-<file name="delete_account.tpl"
url="admin/templates/default/delete_account.tpl">
-</file>
-<file name="delete_cat.tpl" url="admin/templates/default/delete_cat.tpl">
-</file>
-<file name="delete_common.tpl" url="admin/templates/default/delete_common.tpl">
-</file>
-<file name="errorlog_view.tpl" url="admin/templates/default/errorlog_view.tpl">
-</file>
-<file name="form_accountmasters.tpl"
url="admin/templates/default/form_accountmasters.tpl">
-</file>
-<file name="form_button_script.tpl"
url="admin/templates/default/form_button_script.tpl">
-</file>
-<file name="group_form.tpl" url="admin/templates/default/group_form.tpl">
-</file>
-<file name="group_manager.tpl" url="admin/templates/default/group_manager.tpl">
-</file>
-<file name="groups.tpl" url="admin/templates/default/groups.tpl">
-</file>
-<file name="index.tpl" url="admin/templates/default/index.tpl">
-</file>
-<file name="kill_session.tpl" url="admin/templates/default/kill_session.tpl">
-</file>
-<file name="list_accountmasters.tpl"
url="admin/templates/default/list_accountmasters.tpl">
-</file>
-<file name="listcats.tpl" url="admin/templates/default/listcats.tpl">
-</file>
-<file name="listservers.tpl" url="admin/templates/default/listservers.tpl">
-</file>
-<file name="log.tpl" url="admin/templates/default/log.tpl">
-</file>
-<file name="log_level_select.tpl"
url="admin/templates/default/log_level_select.tpl">
-</file>
-<file name="loglevels.tpl" url="admin/templates/default/loglevels.tpl">
-</file>
-<file name="mainscreen_message.tpl"
url="admin/templates/default/mainscreen_message.tpl">
-</file>
-<file name="menurow.tpl" url="admin/templates/default/menurow.tpl">
-</file>
-<file name="message_row.tpl" url="admin/templates/default/message_row.tpl">
-</file>
-<file name="nntp.tpl" url="admin/templates/default/nntp.tpl">
-</file>
-<file name="server_form.tpl" url="admin/templates/default/server_form.tpl">
-</file>
-<folder name="images" url="admin/templates/default/images">
-<file name="navbar.gif" url="admin/templates/default/images/navbar.gif">
-</file>
-<file name="dot.gif" url="admin/templates/default/images/dot.gif">
-</file>
-<file name="dot.png" url="admin/templates/default/images/dot.png">
-</file>
-<file name="navbar.png" url="admin/templates/default/images/navbar.png">
-</file>
-</folder>
-</folder>
-<folder name="idots" url="admin/templates/idots">
-<file name="index.tpl" url="admin/templates/idots/index.tpl">
-</file>
-<folder name="images" url="admin/templates/idots/images">
-<file name="navbar.png" url="admin/templates/idots/images/navbar.png">
-</file>
-</folder>
-</folder>
-<folder name="idsociety" url="admin/templates/idsociety">
-<folder name="images" url="admin/templates/idsociety/images">
-<file name="navbar-over.gif"
url="admin/templates/idsociety/images/navbar-over.gif">
-</file>
-<file name="navbar-over.png"
url="admin/templates/idsociety/images/navbar-over.png">
-</file>
-<file name="navbar.gif" url="admin/templates/idsociety/images/navbar.gif">
-</file>
-<file name="navbar.png" url="admin/templates/idsociety/images/navbar.png">
-</file>
-</folder>
-</folder>
-<folder name="probusiness" url="admin/templates/probusiness">
-<file name="accesslog.tpl" url="admin/templates/probusiness/accesslog.tpl">
-</file>
-<file name="account_form.tpl"
url="admin/templates/probusiness/account_form.tpl">
-</file>
-<file name="account_form_ldap.tpl"
url="admin/templates/probusiness/account_form_ldap.tpl">
-</file>
-<file name="accounts.tpl" url="admin/templates/probusiness/accounts.tpl">
-</file>
-<file name="acl_accounts.tpl"
url="admin/templates/probusiness/acl_accounts.tpl">
-</file>
-<file name="acl_applist.tpl" url="admin/templates/probusiness/acl_applist.tpl">
-</file>
-<file name="acl_manager_form.tpl"
url="admin/templates/probusiness/acl_manager_form.tpl">
-</file>
-<file name="application_form.tpl"
url="admin/templates/probusiness/application_form.tpl">
-</file>
-<file name="applications.tpl"
url="admin/templates/probusiness/applications.tpl">
-</file>
-<file name="category_form.tpl"
url="admin/templates/probusiness/category_form.tpl">
-</file>
-<file name="config.tpl" url="admin/templates/probusiness/config.tpl">
-</file>
-<file name="config_footer.tpl"
url="admin/templates/probusiness/config_footer.tpl">
-</file>
-<file name="config_head.tpl" url="admin/templates/probusiness/config_head.tpl">
-</file>
-<file name="currentusers.tpl"
url="admin/templates/probusiness/currentusers.tpl">
-</file>
-<file name="delete_account.tpl"
url="admin/templates/probusiness/delete_account.tpl">
-</file>
-<file name="delete_cat.tpl" url="admin/templates/probusiness/delete_cat.tpl">
-</file>
-<file name="delete_common.tpl"
url="admin/templates/probusiness/delete_common.tpl">
-</file>
-<file name="form_button_script.tpl"
url="admin/templates/probusiness/form_button_script.tpl">
-</file>
-<file name="group_form.tpl" url="admin/templates/probusiness/group_form.tpl">
-</file>
-<file name="group_manager.tpl"
url="admin/templates/probusiness/group_manager.tpl">
-</file>
-<file name="groups.tpl" url="admin/templates/probusiness/groups.tpl">
-</file>
-<file name="index.tpl" url="admin/templates/probusiness/index.tpl">
-</file>
-<file name="kill_session.tpl"
url="admin/templates/probusiness/kill_session.tpl">
-</file>
-<file name="listcats.tpl" url="admin/templates/probusiness/listcats.tpl">
-</file>
-<file name="listservers.tpl" url="admin/templates/probusiness/listservers.tpl">
-</file>
-<file name="log.tpl" url="admin/templates/probusiness/log.tpl">
-</file>
-<file name="mainscreen_message.tpl"
url="admin/templates/probusiness/mainscreen_message.tpl">
-</file>
-<file name="menurow.tpl" url="admin/templates/probusiness/menurow.tpl">
-</file>
-<file name="message_row.tpl" url="admin/templates/probusiness/message_row.tpl">
-</file>
-<file name="nntp.tpl" url="admin/templates/probusiness/nntp.tpl">
-</file>
-<file name="server_form.tpl" url="admin/templates/probusiness/server_form.tpl">
-</file>
-<file name="form_accountmasters.tpl"
url="admin/templates/probusiness/form_accountmasters.tpl">
-</file>
-<file name="list_accountmasters.tpl"
url="admin/templates/probusiness/list_accountmasters.tpl">
-</file>
-<folder name="images" url="admin/templates/probusiness/images">
-<file name="navbar.png" url="admin/templates/probusiness/images/navbar.png">
-</file>
-<file name="dot.png" url="admin/templates/probusiness/images/dot.png">
-</file>
-</folder>
-</folder>
-<folder name="verdilak" url="admin/templates/verdilak">
-<folder name="images" url="admin/templates/verdilak/images">
-<file name="navbar.gif" url="admin/templates/verdilak/images/navbar.gif">
-</file>
-<file name="navbar.png" url="admin/templates/verdilak/images/navbar.png">
-</file>
-</folder>
-</folder>
-</folder>
-</folder>
-<folder name="bookmarks">
-<preference-set id="">
- <string id="import_dirname">Q:\public_html\phpgw_0_9_16\bookmarks</string>
-</preference-set>
-<file name="glist.wml" url="bookmarks/glist.wml">
-</file>
-<file name="index.php" url="bookmarks/index.php">
-</file>
-<folder name="doc" url="bookmarks/doc">
-<file name="copyright.gpl" url="bookmarks/doc/copyright.gpl">
-</file>
-</folder>
-<folder name="inc" url="bookmarks/inc">
-<file name="class.bo.inc.php" url="bookmarks/inc/class.bo.inc.php">
-</file>
-<file name="class.sqlquery.inc.php" url="bookmarks/inc/class.sqlquery.inc.php">
-</file>
-<file name="class.so.inc.php" url="bookmarks/inc/class.so.inc.php">
-</file>
-<file name="hook_admin.inc.php" url="bookmarks/inc/hook_admin.inc.php">
-</file>
-<file name="hook_bookmarks_about.inc.php"
url=