diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/SmartyDynamic__example_8php-source.html b/livesupport/modules/htmlUI/doc/doxygen/html/SmartyDynamic__example_8php-source.html
deleted file mode 100644
index 2c8ef2e40..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/SmartyDynamic__example_8php-source.html
+++ /dev/null
@@ -1,113 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: SmartyDynamic_example.php Source File</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<div class="nav">
-<a class="el" href="dir_000000.html">var</a>&nbsp;/&nbsp;<a class="el" href="dir_000001.html">html</a></div>
-<h1>SmartyDynamic_example.php</h1><a href="SmartyDynamic__example_8php.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 &lt;?php
-00011 require_once 'HTML/QuickForm.php';
-00012 require_once 'HTML/QuickForm/Renderer/Array.php';
-00013 <span class="comment">// fix this if your Smarty is somewhere else</span>
-00014 require_once 'Smarty/libs/Smarty.class.php';
-00015 
-<a name="l00016"></a><a class="code" href="SmartyDynamic__example_8php.html#a0">00016</a> <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a> = <span class="keyword">new</span> HTML_QuickForm('frmTest', 'post');
-00017 
-00018 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;setDefaults(array(
-00019     'itxtTest'  =&gt; 'Test Text Box',
-00020     'itxaTest'  =&gt; 'Hello World',
-00021     'iselTest'  =&gt; array(<span class="charliteral">'B'</span>, <span class="charliteral">'C'</span>),
-00022     'name'      =&gt; array('first' =&gt; 'Thomas', 'last' =&gt; 'Schulz'),
-00023     'iradYesNo' =&gt; <span class="charliteral">'Y'</span>,
-00024     'ichkABCD'  =&gt; array(<span class="charliteral">'A'</span>=&gt;<span class="keyword">true</span>,<span class="charliteral">'D'</span>=&gt;<span class="keyword">true</span>)
-00025 ));
-00026 
-00027 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addElement('header', '', 'Normal Elements');
-00028 
-00029 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addElement('hidden', 'ihidTest', 'hiddenField');
-00030 
-00031 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addElement('text', 'itxtTest', array('Test Text', 'note' =&gt; 'Note <span class="keywordflow">for</span> Testtext element.'));
-00032 
-00033 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addElement('textarea', 'itxaTest', 'Test TextArea', 'cols=<span class="stringliteral">"40"</span> rows=<span class="stringliteral">"2"</span>');
-00034 
-00035 <span class="comment">// will be later assigned to style green</span>
-00036 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addElement('password', 'ipwdTest', 'Test Password');
-<a name="l00037"></a><a class="code" href="SmartyDynamic__example_8php.html#a1">00037</a> <a class="code" href="SmartyDynamic__example_8php.html#a1">$select</a> =&amp; <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addElement(
-00038     'select',
-00039     'iselTest',
-00040     array('Test Select', 'note' =&gt; 'We recommend to check at least two categories!'),
-00041     array(<span class="charliteral">'A'</span>=&gt;'A * * * * (luxory)', <span class="charliteral">'B'</span>=&gt;'B * * *<span class="charliteral">','</span>C'=&gt;'C * *<span class="charliteral">','</span>D'=&gt;'D * (simple)')
-00042  );
-00043 <a class="code" href="SmartyDynamic__example_8php.html#a1">$select</a>-&gt;setSize(4);
-00044 <a class="code" href="SmartyDynamic__example_8php.html#a1">$select</a>-&gt;setMultiple(<span class="keyword">true</span>);
-00045 
-00046 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addElement('submit', 'isubTest', 'Test Submit');
-00047 
-00048 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addElement('header', '', 'Grouped Elements');
-00049 
-00050 <a class="code" href="SmartyDynamic__example_8php.html#a2">$checkbox</a>[] = &amp;HTML_QuickForm::createElement('checkbox', <span class="charliteral">'A'</span>, null, <span class="charliteral">'A'</span>);
-00051 <a class="code" href="SmartyDynamic__example_8php.html#a2">$checkbox</a>[] = &amp;HTML_QuickForm::createElement('checkbox', <span class="charliteral">'B'</span>, null, <span class="charliteral">'B'</span>);
-00052 <a class="code" href="SmartyDynamic__example_8php.html#a2">$checkbox</a>[] = &amp;HTML_QuickForm::createElement('checkbox', <span class="charliteral">'C'</span>, null, <span class="charliteral">'C'</span>);
-<a name="l00053"></a><a class="code" href="SmartyDynamic__example_8php.html#a2">00053</a> <a class="code" href="SmartyDynamic__example_8php.html#a2">$checkbox</a>[] = &amp;HTML_QuickForm::createElement('checkbox', <span class="charliteral">'D'</span>, null, <span class="charliteral">'D'</span>);
-00054 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addGroup($checkbox, 'ichkABCD', 'ABCD', array('&amp;nbsp;', '&lt;br /&gt;'));
-00055 
-00056 <span class="comment">// will be later assigned to style fancygroup</span>
-00057 <a class="code" href="SmartyDynamic__example_8php.html#a3">$radio</a>[] = &amp;HTML_QuickForm::createElement('radio', null, null, 'Yes', <span class="charliteral">'Y'</span>);
-<a name="l00058"></a><a class="code" href="SmartyDynamic__example_8php.html#a3">00058</a> <a class="code" href="SmartyDynamic__example_8php.html#a3">$radio</a>[] = &amp;HTML_QuickForm::createElement('radio', null, null, 'No', <span class="charliteral">'N'</span>);
-00059 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addGroup($radio, 'iradYesNo', 'Yes/No');
-00060 
-00061 <span class="comment">// will be later assigned to style fancygroup</span>
-00062 <a class="code" href="SmartyDynamic__example_8php.html#a4">$name</a>['first'] = &amp;HTML_QuickForm::createElement('text', 'first', 'First:');
-00063 <a class="code" href="SmartyDynamic__example_8php.html#a4">$name</a>['first']-&gt;setSize(20);
-<a name="l00064"></a><a class="code" href="SmartyDynamic__example_8php.html#a4">00064</a> <a class="code" href="SmartyDynamic__example_8php.html#a4">$name</a>['last'] = &amp;HTML_QuickForm::createElement('text', 'last', 'Last:');
-00065 <a class="code" href="SmartyDynamic__example_8php.html#a4">$name</a>['last']-&gt;setSize(30);
-00066 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addGroup($name, 'name', 'Name');
-00067 
-00068 <span class="comment">// add some 'required' rules to show "stars" and (possible) errors...</span>
-00069 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addRule('itxtTest', 'Test Text is a required field', 'required');
-00070 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addRule('itxaTest', 'Test TextArea is a required field', 'required');
-00071 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addGroupRule('iradYesNo', 'Check Yes or No', 'required');
-00072 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addGroupRule('name', array('last' =&gt; array(array('Last name is required', 'required'))));
-00073 
-00074 <span class="comment">// try to validate the form</span>
-00075 <span class="keywordflow">if</span> ($form-&gt;validate()) {
-00076     <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;freeze();
-00077 }
-00078 
-<a name="l00079"></a><a class="code" href="SmartyDynamic__example_8php.html#a5">00079</a> <a class="code" href="SmartyDynamic__example_8php.html#a5">$renderer</a> =&amp; <span class="keyword">new</span> HTML_QuickForm_Renderer_Array(<span class="keyword">true</span>, <span class="keyword">true</span>);
-00080 
-00081 <span class="comment">// give some elements aditional style informations</span>
-00082 <a class="code" href="SmartyDynamic__example_8php.html#a5">$renderer</a>-&gt;setElementStyle(array(
-00083     'ipwdTest'  =&gt; 'green',
-00084     'iradYesNo' =&gt; 'fancygroup',
-00085     'name'      =&gt; 'fancygroup'
-00086 ));
-00087 
-00088 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;accept($renderer);
-00089 
-00090 <span class="comment">// setup a template object</span>
-<a name="l00091"></a><a class="code" href="SmartyDynamic__example_8php.html#a6">00091</a> <a class="code" href="SmartyDynamic__example_8php.html#a6">$tpl</a> =&amp; <span class="keyword">new</span> Smarty;
-<a name="l00092"></a><a class="code" href="SmartyDynamic__example_8php.html#a7">00092</a> <a class="code" href="SmartyDynamic__example_8php.html#a6">$tpl</a>-&gt;template_dir = './templates';
-<a name="l00093"></a><a class="code" href="SmartyDynamic__example_8php.html#a8">00093</a> <a class="code" href="SmartyDynamic__example_8php.html#a6">$tpl</a>-&gt;compile_dir  = './templates_c';
-00094 
-00095 <span class="comment">// assign array with form data</span>
-00096 <a class="code" href="SmartyDynamic__example_8php.html#a6">$tpl</a>-&gt;assign('form', $renderer-&gt;toArray());
-00097 
-00098 <span class="comment">// capture the array stucture</span>
-00099 <span class="comment">// (only for showing in sample template)</span>
-00100 ob_start();
-00101 print_r($renderer-&gt;toArray());
-00102 <a class="code" href="SmartyDynamic__example_8php.html#a6">$tpl</a>-&gt;assign('dynamic_array', ob_get_contents());
-00103 ob_end_clean();
-00104 
-00105 <span class="comment">// render and display the template</span>
-00106 <a class="code" href="SmartyDynamic__example_8php.html#a6">$tpl</a>-&gt;display('smarty-dynamic.tpl');
-00107 
-00108 ?&gt;
-</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 13:58:47 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/SmartyDynamic__example_8php.html b/livesupport/modules/htmlUI/doc/doxygen/html/SmartyDynamic__example_8php.html
deleted file mode 100644
index 66eea7df4..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/SmartyDynamic__example_8php.html
+++ /dev/null
@@ -1,276 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: SmartyDynamic_example.php File Reference</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<div class="nav">
-<a class="el" href="dir_000000.html">var</a>&nbsp;/&nbsp;<a class="el" href="dir_000001.html">html</a></div>
-<h1>SmartyDynamic_example.php File Reference</h1>
-<p>
-<a href="SmartyDynamic__example_8php-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
-<tr><td></td></tr>
-<tr><td colspan="2"><br><h2>Variables</h2></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyDynamic__example_8php.html#a0">$form</a> = new HTML_QuickForm('frmTest', 'post')</td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyDynamic__example_8php.html#a1">$select</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyDynamic__example_8php.html#a2">$checkbox</a> [] = &amp;HTML_QuickForm::createElement('checkbox', 'A', null, 'A')</td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyDynamic__example_8php.html#a3">$radio</a> [] = &amp;HTML_QuickForm::createElement('radio', null, null, 'Yes', 'Y')</td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyDynamic__example_8php.html#a4">$name</a> ['first'] = &amp;HTML_QuickForm::createElement('text', 'first', 'First:')</td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyDynamic__example_8php.html#a5">$renderer</a> = &amp; new HTML_QuickForm_Renderer_Array(true, true)</td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyDynamic__example_8php.html#a6">$tpl</a> = &amp; new Smarty</td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">$tpl&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyDynamic__example_8php.html#a7">template_dir</a> = './templates'</td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">$tpl&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyDynamic__example_8php.html#a8">compile_dir</a> = './templates_c'</td></tr>
-
-</table>
-<hr><h2>Variable Documentation</h2>
-<a class="anchor" name="a2" doxytag="SmartyDynamic_example.php::$checkbox"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">$checkbox[] = &amp;HTML_QuickForm::createElement('checkbox', 'A', null, 'A')          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="SmartyDynamic__example_8php-source.html#l00053">53</a> of file <a class="el" href="SmartyDynamic__example_8php-source.html">SmartyDynamic_example.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a0" doxytag="SmartyDynamic_example.php::$form"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">$form = new HTML_QuickForm('frmTest', 'post')          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="SmartyDynamic__example_8php-source.html#l00016">16</a> of file <a class="el" href="SmartyDynamic__example_8php-source.html">SmartyDynamic_example.php</a>.
-<p>
-Referenced by <a class="el" href="ui__base_8inc_8php-source.html#l00045">uiBase::_parseArr2Form()</a>, <a class="el" href="ui__handler_8class_8php-source.html#l00433">uiHandler::_validateForm()</a>, <a class="el" href="ui__browser_8class_8php-source.html#l00193">uiBrowser::getAddSubjectForm()</a>, <a class="el" href="ui__browser_8class_8php-source.html#l00214">uiBrowser::getChangePasswdForm()</a>, <a class="el" href="ui__browser_8class_8php-source.html#l00402">uiBrowser::getMetadataForm()</a>, <a class="el" href="ui__browser_8class_8php-source.html#l00139">uiBrowser::getNewFileForm()</a>, <a class="el" href="ui__browser_8class_8php-source.html#l00160">uiBrowser::getSearchForm()</a>, <a class="el" href="ui__browser_8class_8php-source.html#l00262">uiBrowser::getSubj2GroupForm()</a>, <a class="el" href="ui__browser_8class_8php-source.html#l00057">uiBrowser::loginform()</a>, and <a class="el" href="ui__browser_8class_8php-source.html#l00416">uiBrowser::systemPrefs()</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a4" doxytag="SmartyDynamic_example.php::$name"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">$name['last'] = &amp;HTML_QuickForm::createElement('text', 'first', 'First:')          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="SmartyDynamic__example_8php-source.html#l00064">64</a> of file <a class="el" href="SmartyDynamic__example_8php-source.html">SmartyDynamic_example.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a3" doxytag="SmartyDynamic_example.php::$radio"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">$radio[] = &amp;HTML_QuickForm::createElement('radio', null, null, 'Yes', 'Y')          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="SmartyDynamic__example_8php-source.html#l00058">58</a> of file <a class="el" href="SmartyDynamic__example_8php-source.html">SmartyDynamic_example.php</a>.
-<p>
-Referenced by <a class="el" href="ui__base_8inc_8php-source.html#l00045">uiBase::_parseArr2Form()</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a5" doxytag="SmartyDynamic_example.php::$renderer"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">$renderer = &amp; new HTML_QuickForm_Renderer_Array(true, true)          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="SmartyDynamic__example_8php-source.html#l00079">79</a> of file <a class="el" href="SmartyDynamic__example_8php-source.html">SmartyDynamic_example.php</a>.
-<p>
-Referenced by <a class="el" href="ui__browser_8class_8php-source.html#l00057">uiBrowser::loginform()</a>, and <a class="el" href="ui__browser_8class_8php-source.html#l00416">uiBrowser::systemPrefs()</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a1" doxytag="SmartyDynamic_example.php::$select"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">$select          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-<b>Initial value:</b><div class="fragment"><pre class="fragment">&amp; <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addElement(
-    'select',
-    'iselTest',
-    array('Test Select', 'note' =&gt; 'We recommend to check at least two categories!'),
-    array(<span class="charliteral">'A'</span>=&gt;'A * * * * (luxory)', <span class="charliteral">'B'</span>=&gt;'B * * *<span class="charliteral">','</span>C'=&gt;'C * *<span class="charliteral">','</span>D'=&gt;'D * (simple)')
- )
-</pre></div>
-<p>
-Definition at line <a class="el" href="SmartyDynamic__example_8php-source.html#l00037">37</a> of file <a class="el" href="SmartyDynamic__example_8php-source.html">SmartyDynamic_example.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a6" doxytag="SmartyDynamic_example.php::$tpl"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">$tpl = &amp; new Smarty          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="SmartyDynamic__example_8php-source.html#l00091">91</a> of file <a class="el" href="SmartyDynamic__example_8php-source.html">SmartyDynamic_example.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a8" doxytag="SmartyDynamic_example.php::compile_dir"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">$tpl <a class="el" href="SmartyStatic__example_8php.html#a13">compile_dir</a> = './templates_c'          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="SmartyDynamic__example_8php-source.html#l00093">93</a> of file <a class="el" href="SmartyDynamic__example_8php-source.html">SmartyDynamic_example.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a7" doxytag="SmartyDynamic_example.php::template_dir"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">$tpl <a class="el" href="SmartyStatic__example_8php.html#a12">template_dir</a> = './templates'          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="SmartyDynamic__example_8php-source.html#l00092">92</a> of file <a class="el" href="SmartyDynamic__example_8php-source.html">SmartyDynamic_example.php</a>.    </td>
-  </tr>
-</table>
-<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 13:58:48 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/SmartyExtensions_8inc_8php-source.html b/livesupport/modules/htmlUI/doc/doxygen/html/SmartyExtensions_8inc_8php-source.html
deleted file mode 100644
index 31e3411bb..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/SmartyExtensions_8inc_8php-source.html
+++ /dev/null
@@ -1,59 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: SmartyExtensions.inc.php Source File</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<div class="nav">
-<a class="el" href="dir_000000.html">var</a></div>
-<h1>SmartyExtensions.inc.php</h1><a href="SmartyExtensions_8inc_8php.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 &lt;?php
-00002 <span class="preprocessor">## some constants ########################</span>
-00003 <span class="preprocessor"></span><a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('UI_BROWSER', UI_BROWSER);
-00004 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('UI_HANDLER', UI_HANDLER);
-00005 
-00006 <span class="comment">// --- Smarty Extensions ---</span>
-<a name="l00016"></a><a class="code" href="SmartyExtensions_8inc_8php.html#a0">00016</a> <span class="comment"></span>function <a class="code" href="SmartyExtensions_8inc_8php.html#a0">S_str_repeat</a>($param)
-00017 {
-00018     extract($param);
-00019     <span class="keywordflow">return</span> str_repeat($str, intval($count));
-00020 
-00021 }
-00022 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;register_function('str_repeat', 'S_str_repeat');
-00023 
-<a name="l00032"></a><a class="code" href="SmartyExtensions_8inc_8php.html#a1">00032</a> function <a class="code" href="SmartyExtensions_8inc_8php.html#a1">S_urlencode</a>($param)
-00033 {
-00034     extract($param);
-00035     <span class="keywordflow">return</span> urlencode($str);
-00036 }
-00037 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;register_function('urlencode',  'S_urlencode');
-00038 
-<a name="l00047"></a><a class="code" href="SmartyExtensions_8inc_8php.html#a2">00047</a> function <a class="code" href="SmartyExtensions_8inc_8php.html#a2">S_htmlspecialchars</a>($param)
-00048 {
-00049     extract($param);
-00050     <span class="keywordflow">return</span> htmlspecialchars($str);
-00051 }
-00052 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;register_function('htmlspecialchars', 'S_htmlspecialchars');
-00053 
-<a name="l00061"></a><a class="code" href="SmartyExtensions_8inc_8php.html#a3">00061</a> function <a class="code" href="SmartyExtensions_8inc_8php.html#a3">S_system</a>($param)
-00062 {
-00063     extract($param);
-00064     eval($code);
-00065 }
-00066 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;register_function('system', 'S_system');
-00067 
-<a name="l00075"></a><a class="code" href="SmartyExtensions_8inc_8php.html#a4">00075</a> function <a class="code" href="SmartyExtensions_8inc_8php.html#a4">S_tra</a>($param)
-00076 {
-00077     global <a class="code" href="ui__browser__init_8php.html#a1">$uiBrowser</a>;
-00078 
-00079     foreach($param as $v) {
-00080         echo <a class="code" href="ui__browser__init_8php.html#a1">$uiBrowser</a>-&gt;tra($v);
-00081     }
-00082 }
-00083 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;register_function('tra', 'S_tra');
-00084 ?&gt;
-</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/SmartyExtensions_8inc_8php.html b/livesupport/modules/htmlUI/doc/doxygen/html/SmartyExtensions_8inc_8php.html
deleted file mode 100644
index d35dd75b9..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/SmartyExtensions_8inc_8php.html
+++ /dev/null
@@ -1,232 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: SmartyExtensions.inc.php File Reference</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<div class="nav">
-<a class="el" href="dir_000000.html">var</a></div>
-<h1>SmartyExtensions.inc.php File Reference</h1>
-<p>
-<a href="SmartyExtensions_8inc_8php-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
-<tr><td></td></tr>
-<tr><td colspan="2"><br><h2>Functions</h2></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyExtensions_8inc_8php.html#a0">S_str_repeat</a> ($param)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">str_repeat  <a href="#a0"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyExtensions_8inc_8php.html#a1">S_urlencode</a> ($param)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">urlencode  <a href="#a1"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyExtensions_8inc_8php.html#a2">S_htmlspecialchars</a> ($param)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">htmlspecialchars  <a href="#a2"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyExtensions_8inc_8php.html#a3">S_system</a> ($param)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">system  <a href="#a3"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyExtensions_8inc_8php.html#a4">S_tra</a> ($param)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">tra  <a href="#a4"></a><br></td></tr>
-</table>
-<hr><h2>Function Documentation</h2>
-<a class="anchor" name="a2" doxytag="SmartyExtensions.inc.php::S_htmlspecialchars"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">S_htmlspecialchars           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">$&nbsp;</td>
-          <td class="mdname1" valign="top" nowrap> <em>param</em>          </td>
-          <td class="md" valign="top">&nbsp;)&nbsp;</td>
-          <td class="md" nowrap></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-htmlspecialchars 
-<p>
-convert special chars in given string to html-entitys.<p>
-<dl compact><dt><b>Parameters:</b></dt><dd>
-  <table border="0" cellspacing="2" cellpadding="0">
-    <tr><td valign="top"></td><td valign="top"><em>str</em>&nbsp;</td><td>string, string to convert </td></tr>
-  </table>
-</dl>
-<dl compact><dt><b>Returns:</b></dt><dd>string, converted string </dd></dl>
-
-<p>
-Definition at line <a class="el" href="SmartyExtensions_8inc_8php-source.html#l00047">47</a> of file <a class="el" href="SmartyExtensions_8inc_8php-source.html">SmartyExtensions.inc.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a0" doxytag="SmartyExtensions.inc.php::S_str_repeat"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">S_str_repeat           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">$&nbsp;</td>
-          <td class="mdname1" valign="top" nowrap> <em>param</em>          </td>
-          <td class="md" valign="top">&nbsp;)&nbsp;</td>
-          <td class="md" nowrap></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-str_repeat 
-<p>
-Repeate given string.<p>
-<dl compact><dt><b>Parameters:</b></dt><dd>
-  <table border="0" cellspacing="2" cellpadding="0">
-    <tr><td valign="top"></td><td valign="top"><em>str</em>&nbsp;</td><td>string, string to repeate </td></tr>
-    <tr><td valign="top"></td><td valign="top"><em>count</em>&nbsp;</td><td>numeric, how often to repeate (converted to type integer) </td></tr>
-  </table>
-</dl>
-<dl compact><dt><b>Returns:</b></dt><dd>string, repeated string </dd></dl>
-
-<p>
-Definition at line <a class="el" href="SmartyExtensions_8inc_8php-source.html#l00016">16</a> of file <a class="el" href="SmartyExtensions_8inc_8php-source.html">SmartyExtensions.inc.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a3" doxytag="SmartyExtensions.inc.php::S_system"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">S_system           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">$&nbsp;</td>
-          <td class="mdname1" valign="top" nowrap> <em>param</em>          </td>
-          <td class="md" valign="top">&nbsp;)&nbsp;</td>
-          <td class="md" nowrap></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-system 
-<p>
-Execute some PHP-code.<p>
-<dl compact><dt><b>Parameters:</b></dt><dd>
-  <table border="0" cellspacing="2" cellpadding="0">
-    <tr><td valign="top"></td><td valign="top"><em>code</em>&nbsp;</td><td>string, code to execute </td></tr>
-  </table>
-</dl>
-
-<p>
-Definition at line <a class="el" href="SmartyExtensions_8inc_8php-source.html#l00061">61</a> of file <a class="el" href="SmartyExtensions_8inc_8php-source.html">SmartyExtensions.inc.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a4" doxytag="SmartyExtensions.inc.php::S_tra"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">S_tra           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">$&nbsp;</td>
-          <td class="mdname1" valign="top" nowrap> <em>param</em>          </td>
-          <td class="md" valign="top">&nbsp;)&nbsp;</td>
-          <td class="md" nowrap></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-tra 
-<p>
-Translate given string.<p>
-<dl compact><dt><b>Parameters:</b></dt><dd>
-  <table border="0" cellspacing="2" cellpadding="0">
-    <tr><td valign="top"></td><td valign="top"><em>void</em>&nbsp;</td><td>array, array of strings to be outputted translated </td></tr>
-  </table>
-</dl>
-
-<p>
-Definition at line <a class="el" href="SmartyExtensions_8inc_8php-source.html#l00075">75</a> of file <a class="el" href="SmartyExtensions_8inc_8php-source.html">SmartyExtensions.inc.php</a>.
-<p>
-References <a class="el" href="ui__browser__init_8php-source.html#l00026">$uiBrowser</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a1" doxytag="SmartyExtensions.inc.php::S_urlencode"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">S_urlencode           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">$&nbsp;</td>
-          <td class="mdname1" valign="top" nowrap> <em>param</em>          </td>
-          <td class="md" valign="top">&nbsp;)&nbsp;</td>
-          <td class="md" nowrap></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-urlencode 
-<p>
-Encode given string to use in URL.<p>
-<dl compact><dt><b>Parameters:</b></dt><dd>
-  <table border="0" cellspacing="2" cellpadding="0">
-    <tr><td valign="top"></td><td valign="top"><em>str</em>&nbsp;</td><td>string, string to encode </td></tr>
-  </table>
-</dl>
-<dl compact><dt><b>Returns:</b></dt><dd>string, encoded string </dd></dl>
-
-<p>
-Definition at line <a class="el" href="SmartyExtensions_8inc_8php-source.html#l00032">32</a> of file <a class="el" href="SmartyExtensions_8inc_8php-source.html">SmartyExtensions.inc.php</a>.    </td>
-  </tr>
-</table>
-<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/SmartyStatic__example_8php-source.html b/livesupport/modules/htmlUI/doc/doxygen/html/SmartyStatic__example_8php-source.html
deleted file mode 100644
index fe49e8016..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/SmartyStatic__example_8php-source.html
+++ /dev/null
@@ -1,142 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: SmartyStatic_example.php Source File</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<div class="nav">
-<a class="el" href="dir_000000.html">var</a>&nbsp;/&nbsp;<a class="el" href="dir_000001.html">html</a></div>
-<h1>SmartyStatic_example.php</h1><a href="SmartyStatic__example_8php.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 &lt;?php
-00011 require_once 'HTML/QuickForm.php';
-00012 require_once 'HTML/QuickForm/Renderer/ArraySmarty.php';
-00013 <span class="comment">// fix this if your Smarty is somewhere else</span>
-00014 require_once 'Smarty/libs/Smarty.class.php';
-00015 
-00016 <span class="comment">// Form name will be used to find the placeholders.</span>
-00017 
-<a name="l00018"></a><a class="code" href="SmartyStatic__example_8php.html#a0">00018</a> <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a> = <span class="keyword">new</span> HTML_QuickForm('form', 'POST');
-00019 
-00020 <span class="comment">// Fills with some defaults values</span>
-00021 
-00022 <a class="code" href="SmartyStatic__example_8php.html#a1">$defaultValues</a>['company']  = 'Mamasam';
-00023 <a class="code" href="SmartyStatic__example_8php.html#a1">$defaultValues</a>['country']  = array();
-00024 <a class="code" href="SmartyStatic__example_8php.html#a1">$defaultValues</a>['name']     = array('first'=&gt;'Bertrand', 'last'=&gt;'Mansion');
-<a name="l00025"></a><a class="code" href="SmartyStatic__example_8php.html#a1">00025</a> <a class="code" href="SmartyStatic__example_8php.html#a1">$defaultValues</a>['phone']    = array('513', '123', '4567');
-00026 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;setDefaults($defaultValues);
-00027 
-00028 <span class="comment">// Hidden</span>
-00029 
-00030 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addElement('hidden', 'session', '1234567890');
-00031 
-00032 <span class="comment">// Personal information</span>
-00033 
-00034 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addElement('header', 'personal', 'Personal Information');
-00035 
-00036 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addElement('hidden', 'ihidTest', 'hiddenField');
-00037 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addElement('text', 'email', 'Your email:');
-00038 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addElement('password', 'pass', array('Your password:', 'note'=&gt;'Please, choose a 8-10 characters password.'), 'size=10');
-00039 <a class="code" href="SmartyDynamic__example_8php.html#a4">$name</a>['last'] = &amp;HTML_QuickForm::createElement('text', 'first', 'First', 'size=10');
-<a name="l00040"></a><a class="code" href="SmartyStatic__example_8php.html#a2">00040</a> <a class="code" href="SmartyDynamic__example_8php.html#a4">$name</a>['first'] = &amp;HTML_QuickForm::createElement('text', 'last', 'Last', 'size=10');
-00041 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addGroup($name, 'name', 'Name:', ',&amp;nbsp;');
-<a name="l00042"></a><a class="code" href="SmartyStatic__example_8php.html#a3">00042</a> <a class="code" href="SmartyStatic__example_8php.html#a3">$areaCode</a> = &amp;HTML_QuickForm::createElement('text', '', null,'size=4 maxlength=3');
-<a name="l00043"></a><a class="code" href="SmartyStatic__example_8php.html#a4">00043</a> <a class="code" href="SmartyStatic__example_8php.html#a4">$phoneNo1</a> = &amp;HTML_QuickForm::createElement('text', '', null, 'size=4 maxlength=3');
-<a name="l00044"></a><a class="code" href="SmartyStatic__example_8php.html#a5">00044</a> <a class="code" href="SmartyStatic__example_8php.html#a5">$phoneNo2</a> = &amp;HTML_QuickForm::createElement('text', '', null, 'size=5 maxlength=4');
-00045 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addGroup(array($areaCode, $phoneNo1, $phoneNo2), 'phone', 'Telephone:', <span class="charliteral">'-'</span>);
-00046 
-00047 <span class="comment">// Company information</span>
-00048 
-00049 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addElement('header', 'company_info', 'Company Information');
-00050 
-00051 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addElement('text', 'company', 'Company:', 'size=20');
-00052 
-00053 <a class="code" href="SmartyStatic__example_8php.html#a6">$str</a>[] = &amp;HTML_QuickForm::createElement('text', '', null, 'size=20');
-<a name="l00054"></a><a class="code" href="SmartyStatic__example_8php.html#a6">00054</a> <a class="code" href="SmartyStatic__example_8php.html#a6">$str</a>[] = &amp;HTML_QuickForm::createElement('text', '', null, 'size=20');
-00055 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addGroup($str, 'street', 'Street:', '&lt;br /&gt;');
-00056 
-00057 <a class="code" href="SmartyStatic__example_8php.html#a7">$addr</a>['zip'] = &amp;HTML_QuickForm::createElement('text', 'zip', 'Zip', 'size=6 maxlength=10');
-<a name="l00058"></a><a class="code" href="SmartyStatic__example_8php.html#a7">00058</a> <a class="code" href="SmartyStatic__example_8php.html#a7">$addr</a>['city'] = &amp;HTML_QuickForm::createElement('text', 'city', 'City', 'size=15');
-00059 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addGroup($addr, 'address', 'Zip, city:');
-00060 
-<a name="l00061"></a><a class="code" href="SmartyStatic__example_8php.html#a8">00061</a> <a class="code" href="SmartyDynamic__example_8php.html#a1">$select</a> = array('' =&gt; 'Please select...', 'AU' =&gt; 'Australia', 'FR' =&gt; 'France', 'DE' =&gt; 'Germany', 'IT' =&gt; 'Italy');
-00062 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addElement('select', 'country', 'Country:', $select);
-00063 
-00064 <a class="code" href="SmartyDynamic__example_8php.html#a2">$checkbox</a>[] = &amp;HTML_QuickForm::createElement('checkbox', <span class="charliteral">'A'</span>, null, <span class="charliteral">'A'</span>);
-00065 <a class="code" href="SmartyDynamic__example_8php.html#a2">$checkbox</a>[] = &amp;HTML_QuickForm::createElement('checkbox', <span class="charliteral">'B'</span>, null, <span class="charliteral">'B'</span>);
-00066 <a class="code" href="SmartyDynamic__example_8php.html#a2">$checkbox</a>[] = &amp;HTML_QuickForm::createElement('checkbox', <span class="charliteral">'C'</span>, null, <span class="charliteral">'C'</span>);
-<a name="l00067"></a><a class="code" href="SmartyStatic__example_8php.html#a9">00067</a> <a class="code" href="SmartyDynamic__example_8php.html#a2">$checkbox</a>[] = &amp;HTML_QuickForm::createElement('checkbox', <span class="charliteral">'D'</span>, null, <span class="charliteral">'D'</span>);
-00068 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addGroup($checkbox, 'destination', 'Destination:', array('&amp;nbsp;', '&lt;br /&gt;'));
-00069 
-00070 <span class="comment">// Other elements</span>
-00071 
-00072 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addElement('checkbox', 'news', '', <span class="stringliteral">" Check this box if you don't want to receive our newsletter."</span>);
-00073 
-00074 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addElement('reset', 'reset', 'Reset');
-00075 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addElement('submit', 'submit', 'Register');
-00076 
-00077 <span class="comment">// Adds some validation rules</span>
-00078 
-00079 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addRule('email', 'Email address is required', 'required');
-00080 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addGroupRule('name', 'Name is required', 'required');
-00081 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addRule('pass', 'Password must be between 8 to 10 characters', 'rangelength', array(8, 10));
-00082 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addRule('country', 'Country is a required field', 'required');
-00083 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addGroupRule('destination', 'Please check at least two boxes', 'required', null, 2);
-00084 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addGroupRule('phone', 'Please fill all phone fields', 'required');
-00085 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addGroupRule('phone', 'Values must be numeric', 'numeric');
-00086 
-00087 <a class="code" href="SmartyStatic__example_8php.html#a10">$AddrRules</a>['zip'][0] = array('Zip code is required', 'required');
-00088 <a class="code" href="SmartyStatic__example_8php.html#a10">$AddrRules</a>['zip'][1] = array('Zip code is numeric only', 'numeric');
-00089 <a class="code" href="SmartyStatic__example_8php.html#a10">$AddrRules</a>['city'][0] = array('City is required', 'required');
-<a name="l00090"></a><a class="code" href="SmartyStatic__example_8php.html#a10">00090</a> <a class="code" href="SmartyStatic__example_8php.html#a10">$AddrRules</a>['city'][1] = array('City is letters only', 'lettersonly');
-00091 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;addGroupRule('address', $AddrRules);
-00092 
-00093 <span class="comment">// Tries to validate the form</span>
-00094 <span class="keywordflow">if</span> ($form-&gt;validate()) {
-00095     <span class="comment">// Form is validated, then freezes the data</span>
-00096     <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;freeze();
-00097 }
-00098 
-00099 <span class="comment">// setup a template object</span>
-<a name="l00100"></a><a class="code" href="SmartyStatic__example_8php.html#a11">00100</a> <a class="code" href="SmartyDynamic__example_8php.html#a6">$tpl</a> =&amp; <span class="keyword">new</span> Smarty;
-<a name="l00101"></a><a class="code" href="SmartyStatic__example_8php.html#a12">00101</a> <a class="code" href="SmartyDynamic__example_8php.html#a6">$tpl</a>-&gt;template_dir = './templates';
-<a name="l00102"></a><a class="code" href="SmartyStatic__example_8php.html#a13">00102</a> <a class="code" href="SmartyDynamic__example_8php.html#a6">$tpl</a>-&gt;compile_dir  = './templates_c';
-00103 
-<a name="l00104"></a><a class="code" href="SmartyStatic__example_8php.html#a14">00104</a> <a class="code" href="SmartyDynamic__example_8php.html#a5">$renderer</a> =&amp; <span class="keyword">new</span> HTML_QuickForm_Renderer_ArraySmarty($tpl, <span class="keyword">true</span>);
-00105 
-00106 <a class="code" href="SmartyDynamic__example_8php.html#a5">$renderer</a>-&gt;setRequiredTemplate(
-00107    '{<span class="keywordflow">if</span> $error}
-00108         &lt;font color=<span class="stringliteral">"red"</span>&gt;{$label|upper}&lt;/font&gt;
-00109     {<span class="keywordflow">else</span>}
-00110         {$label}
-00111         {<span class="keywordflow">if</span> $required}
-00112             &lt;font color=<span class="stringliteral">"red"</span> size=<span class="stringliteral">"1"</span>&gt;*&lt;/font&gt;
-00113         {/<span class="keywordflow">if</span>}
-00114     {/<span class="keywordflow">if</span>}'
-00115     );
-00116 
-00117 <a class="code" href="SmartyDynamic__example_8php.html#a5">$renderer</a>-&gt;setErrorTemplate(
-00118    '{<span class="keywordflow">if</span> $error}
-00119         &lt;font color=<span class="stringliteral">"orange"</span> size=<span class="stringliteral">"1"</span>&gt;{$error}&lt;/font&gt;&lt;br /&gt;
-00120     {/<span class="keywordflow">if</span>}{$html}'
-00121     );
-00122 
-00123 <a class="code" href="SmartyDynamic__example_8php.html#a0">$form</a>-&gt;accept($renderer);
-00124 
-00125 <span class="comment">// assign array with form data</span>
-00126 <a class="code" href="SmartyDynamic__example_8php.html#a6">$tpl</a>-&gt;assign('form', $renderer-&gt;toArray());
-00127 
-00128 <span class="comment">// capture the array stucture</span>
-00129 ob_start();
-00130 print_r($renderer-&gt;toArray());
-00131 <a class="code" href="SmartyDynamic__example_8php.html#a6">$tpl</a>-&gt;assign('static_array', ob_get_contents());
-00132 ob_end_clean();
-00133 
-00134 <span class="comment">// render and display the template</span>
-00135 <a class="code" href="SmartyDynamic__example_8php.html#a6">$tpl</a>-&gt;display('smarty-<span class="keyword">static</span>.tpl');
-00136 
-00137 ?&gt;
-</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 13:58:47 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/SmartyStatic__example_8php.html b/livesupport/modules/htmlUI/doc/doxygen/html/SmartyStatic__example_8php.html
deleted file mode 100644
index 322c5b905..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/SmartyStatic__example_8php.html
+++ /dev/null
@@ -1,426 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: SmartyStatic_example.php File Reference</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<div class="nav">
-<a class="el" href="dir_000000.html">var</a>&nbsp;/&nbsp;<a class="el" href="dir_000001.html">html</a></div>
-<h1>SmartyStatic_example.php File Reference</h1>
-<p>
-<a href="SmartyStatic__example_8php-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
-<tr><td></td></tr>
-<tr><td colspan="2"><br><h2>Variables</h2></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyStatic__example_8php.html#a0">$form</a> = new HTML_QuickForm('form', 'POST')</td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyStatic__example_8php.html#a1">$defaultValues</a> ['company'] = 'Mamasam'</td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyStatic__example_8php.html#a2">$name</a> ['last'] = &amp;HTML_QuickForm::createElement('text', 'first', 'First', 'size=10')</td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyStatic__example_8php.html#a3">$areaCode</a> = &amp;HTML_QuickForm::createElement('text', '', null,'size=4 maxlength=3')</td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyStatic__example_8php.html#a4">$phoneNo1</a> = &amp;HTML_QuickForm::createElement('text', '', null, 'size=4 maxlength=3')</td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyStatic__example_8php.html#a5">$phoneNo2</a> = &amp;HTML_QuickForm::createElement('text', '', null, 'size=5 maxlength=4')</td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyStatic__example_8php.html#a6">$str</a> [] = &amp;HTML_QuickForm::createElement('text', '', null, 'size=20')</td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyStatic__example_8php.html#a7">$addr</a> ['zip'] = &amp;HTML_QuickForm::createElement('text', 'zip', 'Zip', 'size=6 maxlength=10')</td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyStatic__example_8php.html#a8">$select</a> = array('' =&gt; 'Please select...', 'AU' =&gt; 'Australia', 'FR' =&gt; 'France', 'DE' =&gt; 'Germany', 'IT' =&gt; 'Italy')</td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyStatic__example_8php.html#a9">$checkbox</a> [] = &amp;HTML_QuickForm::createElement('checkbox', 'A', null, 'A')</td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyStatic__example_8php.html#a10">$AddrRules</a> ['zip'][0] = array('Zip code is required', 'required')</td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyStatic__example_8php.html#a11">$tpl</a> = &amp; new Smarty</td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">$tpl&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyStatic__example_8php.html#a12">template_dir</a> = './templates'</td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">$tpl&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyStatic__example_8php.html#a13">compile_dir</a> = './templates_c'</td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyStatic__example_8php.html#a14">$renderer</a> = &amp; new HTML_QuickForm_Renderer_ArraySmarty($tpl, true)</td></tr>
-
-</table>
-<hr><h2>Variable Documentation</h2>
-<a class="anchor" name="a7" doxytag="SmartyStatic_example.php::$addr"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">$addr['city'] = &amp;HTML_QuickForm::createElement('text', 'zip', 'Zip', 'size=6 maxlength=10')          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="SmartyStatic__example_8php-source.html#l00058">58</a> of file <a class="el" href="SmartyStatic__example_8php-source.html">SmartyStatic_example.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a10" doxytag="SmartyStatic_example.php::$AddrRules"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">$AddrRules['city'][1] = array('Zip code is required', 'required')          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="SmartyStatic__example_8php-source.html#l00090">90</a> of file <a class="el" href="SmartyStatic__example_8php-source.html">SmartyStatic_example.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a3" doxytag="SmartyStatic_example.php::$areaCode"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">$areaCode = &amp;HTML_QuickForm::createElement('text', '', null,'size=4 maxlength=3')          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="SmartyStatic__example_8php-source.html#l00042">42</a> of file <a class="el" href="SmartyStatic__example_8php-source.html">SmartyStatic_example.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a9" doxytag="SmartyStatic_example.php::$checkbox"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">$checkbox[] = &amp;HTML_QuickForm::createElement('checkbox', 'A', null, 'A')          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="SmartyStatic__example_8php-source.html#l00067">67</a> of file <a class="el" href="SmartyStatic__example_8php-source.html">SmartyStatic_example.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a1" doxytag="SmartyStatic_example.php::$defaultValues"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">$defaultValues['phone'] = 'Mamasam'          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="SmartyStatic__example_8php-source.html#l00025">25</a> of file <a class="el" href="SmartyStatic__example_8php-source.html">SmartyStatic_example.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a0" doxytag="SmartyStatic_example.php::$form"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">$form = new HTML_QuickForm('form', 'POST')          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="SmartyStatic__example_8php-source.html#l00018">18</a> of file <a class="el" href="SmartyStatic__example_8php-source.html">SmartyStatic_example.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a2" doxytag="SmartyStatic_example.php::$name"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">$name['first'] = &amp;HTML_QuickForm::createElement('text', 'first', 'First', 'size=10')          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="SmartyStatic__example_8php-source.html#l00040">40</a> of file <a class="el" href="SmartyStatic__example_8php-source.html">SmartyStatic_example.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a4" doxytag="SmartyStatic_example.php::$phoneNo1"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">$phoneNo1 = &amp;HTML_QuickForm::createElement('text', '', null, 'size=4 maxlength=3')          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="SmartyStatic__example_8php-source.html#l00043">43</a> of file <a class="el" href="SmartyStatic__example_8php-source.html">SmartyStatic_example.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a5" doxytag="SmartyStatic_example.php::$phoneNo2"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">$phoneNo2 = &amp;HTML_QuickForm::createElement('text', '', null, 'size=5 maxlength=4')          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="SmartyStatic__example_8php-source.html#l00044">44</a> of file <a class="el" href="SmartyStatic__example_8php-source.html">SmartyStatic_example.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a14" doxytag="SmartyStatic_example.php::$renderer"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">$renderer = &amp; new HTML_QuickForm_Renderer_ArraySmarty($tpl, true)          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="SmartyStatic__example_8php-source.html#l00104">104</a> of file <a class="el" href="SmartyStatic__example_8php-source.html">SmartyStatic_example.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a8" doxytag="SmartyStatic_example.php::$select"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">$select = array('' =&gt; 'Please select...', 'AU' =&gt; 'Australia', 'FR' =&gt; 'France', 'DE' =&gt; 'Germany', 'IT' =&gt; 'Italy')          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="SmartyStatic__example_8php-source.html#l00061">61</a> of file <a class="el" href="SmartyStatic__example_8php-source.html">SmartyStatic_example.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a6" doxytag="SmartyStatic_example.php::$str"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">$str[] = &amp;HTML_QuickForm::createElement('text', '', null, 'size=20')          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="SmartyStatic__example_8php-source.html#l00054">54</a> of file <a class="el" href="SmartyStatic__example_8php-source.html">SmartyStatic_example.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a11" doxytag="SmartyStatic_example.php::$tpl"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">$tpl = &amp; new Smarty          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="SmartyStatic__example_8php-source.html#l00100">100</a> of file <a class="el" href="SmartyStatic__example_8php-source.html">SmartyStatic_example.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a13" doxytag="SmartyStatic_example.php::compile_dir"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">$tpl <a class="el" href="SmartyStatic__example_8php.html#a13">compile_dir</a> = './templates_c'          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="SmartyStatic__example_8php-source.html#l00102">102</a> of file <a class="el" href="SmartyStatic__example_8php-source.html">SmartyStatic_example.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a12" doxytag="SmartyStatic_example.php::template_dir"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">$tpl <a class="el" href="SmartyStatic__example_8php.html#a12">template_dir</a> = './templates'          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="SmartyStatic__example_8php-source.html#l00101">101</a> of file <a class="el" href="SmartyStatic__example_8php-source.html">SmartyStatic_example.php</a>.    </td>
-  </tr>
-</table>
-<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 13:58:48 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/annotated.html b/livesupport/modules/htmlUI/doc/doxygen/html/annotated.html
deleted file mode 100644
index bc75cfa93..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/annotated.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: Class List</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindexHL" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<h1>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module Class List</h1>Here are the classes, structs, unions and interfaces with brief descriptions:<table>
-  <tr><td class="indexkey"><a class="el" href="classuiBase.html">uiBase</a></td><td class="indexvalue">UiBase class </td></tr>
-  <tr><td class="indexkey"><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td class="indexvalue"></td></tr>
-  <tr><td class="indexkey"><a class="el" href="classuiHandler.html">uiHandler</a></td><td class="indexvalue">UiHandler class </td></tr>
-</table>
-<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/classes.html b/livesupport/modules/htmlUI/doc/doxygen/html/classes.html
deleted file mode 100644
index b39f70bed..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/classes.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: Alphabetical List</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindexHL" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<h1>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module Class Index</h1><p><div class="qindex"><a class="qindex" href="#letter_U">U</a></div><p>
-<table align="center" width="95%" border="0" cellspacing="0" cellpadding="0">
-<tr><td><a name="letter_U"></a><table border="0" cellspacing="0" cellpadding="0"><tr><td><div class="ah">&nbsp;&nbsp;U&nbsp;&nbsp;</div></td></tr></table>
-</td><td><a class="el" href="classuiBase.html">uiBase</a>&nbsp;&nbsp;&nbsp;</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a>&nbsp;&nbsp;&nbsp;</td><td><a class="el" href="classuiHandler.html">uiHandler</a>&nbsp;&nbsp;&nbsp;</td></tr></table><p><div class="qindex"><a class="qindex" href="#letter_U">U</a></div><p>
-<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/classuiBase-members.html b/livesupport/modules/htmlUI/doc/doxygen/html/classuiBase-members.html
deleted file mode 100644
index 5fe113a44..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/classuiBase-members.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: Member List</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<h1>uiBase Member List</h1>This is the complete list of members for <a class="el" href="classuiBase.html">uiBase</a>, including all inherited members.<p><table>
-  <tr class="memlist"><td><a class="el" href="classuiBase.html#a1">_parseArr2Form</a>(&amp;$form, &amp;$mask, $side='client')</td><td><a class="el" href="classuiBase.html">uiBase</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiBase.html#a0">tra</a>($input)</td><td><a class="el" href="classuiBase.html">uiBase</a></td><td></td></tr>
-</table><hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/classuiBase.html b/livesupport/modules/htmlUI/doc/doxygen/html/classuiBase.html
deleted file mode 100644
index 805c41ec7..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/classuiBase.html
+++ /dev/null
@@ -1,141 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: uiBase Class Reference</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<h1>uiBase Class Reference</h1>uiBase class  
-<a href="#_details">More...</a>
-<p>
-<p>Inheritance diagram for uiBase:
-<p><center><img src="classuiBase.png" usemap="#uiBase_map" border="0" alt=""></center>
-<map name="uiBase_map">
-<area href="classuiBrowser.html" alt="uiBrowser" shape="rect" coords="0,56,69,80">
-<area href="classuiHandler.html" alt="uiHandler" shape="rect" coords="79,56,148,80">
-</map>
-<a href="classuiBase-members.html">List of all members.</a><table border="0" cellpadding="0" cellspacing="0">
-<tr><td></td></tr>
-<tr><td colspan="2"><br><h2>Public Member Functions</h2></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBase.html#a0">tra</a> ($input)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">tra  <a href="#a0"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBase.html#a1">_parseArr2Form</a> (&amp;$form, &amp;$mask, $side='client')</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">_parseArr2Form  <a href="#a1"></a><br></td></tr>
-</table>
-<hr><a name="_details"></a><h2>Detailed Description</h2>
-uiBase class 
-<p>
-LiveSupport HTML User Interface module 
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__base_8inc_8php-source.html#l00017">17</a> of file <a class="el" href="ui__base_8inc_8php-source.html">ui_base.inc.php</a>.<hr><h2>Member Function Documentation</h2>
-<a class="anchor" name="a1" doxytag="uiBase::_parseArr2Form"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiBase::_parseArr2Form           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">&amp;$&nbsp;</td>
-          <td class="mdname" nowrap> <em>form</em>, </td>
-        </tr>
-        <tr>
-          <td class="md" nowrap align="right"></td>
-          <td class="md"></td>
-          <td class="md" nowrap>&amp;$&nbsp;</td>
-          <td class="mdname" nowrap> <em>mask</em>, </td>
-        </tr>
-        <tr>
-          <td class="md" nowrap align="right"></td>
-          <td class="md"></td>
-          <td class="md" nowrap>$&nbsp;</td>
-          <td class="mdname" nowrap> <em>side</em> = <code>'client'</code></td>
-        </tr>
-        <tr>
-          <td class="md"></td>
-          <td class="md">)&nbsp;</td>
-          <td class="md" colspan="2"></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-_parseArr2Form 
-<p>
-Add elements/rules/groups to an given HTML_QuickForm object<p>
-<dl compact><dt><b>Parameters:</b></dt><dd>
-  <table border="0" cellspacing="2" cellpadding="0">
-    <tr><td valign="top"></td><td valign="top"><em>form</em>&nbsp;</td><td>object, reference to HTML_QuickForm object </td></tr>
-    <tr><td valign="top"></td><td valign="top"><em>mask</em>&nbsp;</td><td>array, reference to array defining to form elements </td></tr>
-    <tr><td valign="top"></td><td valign="top"><em>side</em>&nbsp;</td><td>string, side where the validation should beeing </td></tr>
-  </table>
-</dl>
-
-<p>
-Definition at line <a class="el" href="ui__base_8inc_8php-source.html#l00045">45</a> of file <a class="el" href="ui__base_8inc_8php-source.html">ui_base.inc.php</a>.
-<p>
-References <a class="el" href="ui__base_8inc_8php-source.html#l00028">tra()</a>.
-<p>
-Referenced by <a class="el" href="ui__handler_8class_8php-source.html#l00429">uiHandler::_validateForm()</a>, <a class="el" href="ui__browser_8class_8php-source.html#l00193">uiBrowser::getAddSubjectForm()</a>, <a class="el" href="ui__browser_8class_8php-source.html#l00402">uiBrowser::getMetadataForm()</a>, <a class="el" href="ui__browser_8class_8php-source.html#l00139">uiBrowser::getNewFileForm()</a>, <a class="el" href="ui__browser_8class_8php-source.html#l00160">uiBrowser::getSearchForm()</a>, <a class="el" href="ui__browser_8class_8php-source.html#l00057">uiBrowser::loginform()</a>, and <a class="el" href="ui__browser_8class_8php-source.html#l00416">uiBrowser::systemPrefs()</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a0" doxytag="uiBase::tra"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiBase::tra           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">$&nbsp;</td>
-          <td class="mdname1" valign="top" nowrap> <em>input</em>          </td>
-          <td class="md" valign="top">&nbsp;)&nbsp;</td>
-          <td class="md" nowrap></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-tra 
-<p>
-Translate the given string using localisation files.<p>
-<dl compact><dt><b>Parameters:</b></dt><dd>
-  <table border="0" cellspacing="2" cellpadding="0">
-    <tr><td valign="top"></td><td valign="top"><em>input</em>&nbsp;</td><td>string, string to translate </td></tr>
-  </table>
-</dl>
-<dl compact><dt><b>Returns:</b></dt><dd>string, translated string </dd></dl>
-
-<p>
-Definition at line <a class="el" href="ui__base_8inc_8php-source.html#l00028">28</a> of file <a class="el" href="ui__base_8inc_8php-source.html">ui_base.inc.php</a>.
-<p>
-Referenced by <a class="el" href="ui__base_8inc_8php-source.html#l00045">_parseArr2Form()</a>, <a class="el" href="ui__handler_8class_8php-source.html#l00266">uiHandler::addSubj()</a>, <a class="el" href="ui__handler_8class_8php-source.html#l00187">uiHandler::delete()</a>, and <a class="el" href="ui__handler_8class_8php-source.html#l00418">uiHandler::storeSystemPrefs()</a>.    </td>
-  </tr>
-</table>
-<hr>The documentation for this class was generated from the following file:<ul>
-<li><a class="el" href="ui__base_8inc_8php-source.html">ui_base.inc.php</a></ul>
-<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/classuiBase.png b/livesupport/modules/htmlUI/doc/doxygen/html/classuiBase.png
deleted file mode 100644
index 0e8225480..000000000
Binary files a/livesupport/modules/htmlUI/doc/doxygen/html/classuiBase.png and /dev/null differ
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/classuiBrowser-members.html b/livesupport/modules/htmlUI/doc/doxygen/html/classuiBrowser-members.html
deleted file mode 100644
index 73b9bf058..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/classuiBrowser-members.html
+++ /dev/null
@@ -1,36 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: Member List</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<h1>uiBrowser Member List</h1>This is the complete list of members for <a class="el" href="classuiBrowser.html">uiBrowser</a>, including all inherited members.<p><table>
-  <tr class="memlist"><td><a class="el" href="classuiBrowser.html#o0">$alertMsg</a></td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiBase.html#a1">_parseArr2Form</a>(&amp;$form, &amp;$mask, $side='client')</td><td><a class="el" href="classuiBase.html">uiBase</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiBrowser.html#a1">alertMsg</a>()</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiBrowser.html#a8">getAddSubjectForm</a>($mask)</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiBrowser.html#a9">getChangePasswdForm</a>($uid)</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiBrowser.html#a15">getFile</a>($id)</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiBrowser.html#a10">getGroups</a>($id)</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiBrowser.html#a17">getInfo</a>($id)</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiBrowser.html#a16">getMdata</a>($id)</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiBrowser.html#a18">getMetadataForm</a>($id, &amp;$mask)</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiBrowser.html#a13">getNewFileData</a>($id)</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiBrowser.html#a5">getNewFileForm</a>($id, $mask)</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiBrowser.html#a12">getPermissions</a>($id)</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiBrowser.html#a6">getSearchForm</a>($id, &amp;$mask)</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiBrowser.html#a14">getSearchRes</a>($id, $search)</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiBrowser.html#a4">getStructure</a>($id, $homedir=FALSE)</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiBrowser.html#a11">getSubj2GroupForm</a>($id)</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiBrowser.html#a7">getSubjects</a>()</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiBrowser.html#a3">getUserInfo</a>()</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiBrowser.html#a2">loginform</a>(&amp;$Smarty, &amp;$mask)</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiBrowser.html#a19">systemPrefs</a>(&amp;$mask)</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiBase.html#a0">tra</a>($input)</td><td><a class="el" href="classuiBase.html">uiBase</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiBrowser.html#a0">uiBrowser</a>($config)</td><td><a class="el" href="classuiBrowser.html">uiBrowser</a></td><td></td></tr>
-</table><hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/classuiBrowser.html b/livesupport/modules/htmlUI/doc/doxygen/html/classuiBrowser.html
deleted file mode 100644
index 63237a03d..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/classuiBrowser.html
+++ /dev/null
@@ -1,938 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: uiBrowser Class Reference</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<h1>uiBrowser Class Reference</h1><p>Inheritance diagram for uiBrowser:
-<p><center><img src="classuiBrowser.png" usemap="#uiBrowser_map" border="0" alt=""></center>
-<map name="uiBrowser_map">
-<area href="classuiBase.html" alt="uiBase" shape="rect" coords="0,0,69,24">
-</map>
-<a href="classuiBrowser-members.html">List of all members.</a><table border="0" cellpadding="0" cellspacing="0">
-<tr><td></td></tr>
-<tr><td colspan="2"><br><h2>Public Member Functions</h2></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a0">uiBrowser</a> ($config)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">uiBrowser  <a href="#a0"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a1">alertMsg</a> ()</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">alertMsg  <a href="#a1"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a2">loginform</a> (&amp;$Smarty, &amp;$mask)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">loginform  <a href="#a2"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a3">getUserInfo</a> ()</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">getUserInfo  <a href="#a3"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a4">getStructure</a> ($<a class="el" href="ui__handler_8php.html#a4">id</a>, $homedir=FALSE)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">getStructure  <a href="#a4"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a5">getNewFileForm</a> ($<a class="el" href="ui__handler_8php.html#a4">id</a>, $mask)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">getNewFileForm  <a href="#a5"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a6">getSearchForm</a> ($<a class="el" href="ui__handler_8php.html#a4">id</a>, &amp;$mask)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">getSearchForm  <a href="#a6"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a7">getSubjects</a> ()</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">getSubjects  <a href="#a7"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a8">getAddSubjectForm</a> ($mask)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">addSubjectForm  <a href="#a8"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a9">getChangePasswdForm</a> ($uid)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">getChangePasswdForm  <a href="#a9"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a10">getGroups</a> ($<a class="el" href="ui__handler_8php.html#a4">id</a>)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">getGroups  <a href="#a10"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a11">getSubj2GroupForm</a> ($<a class="el" href="ui__handler_8php.html#a4">id</a>)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">getSubj2GroupForm  <a href="#a11"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a12">getPermissions</a> ($<a class="el" href="ui__handler_8php.html#a4">id</a>)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">getPermissions  <a href="#a12"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a13">getNewFileData</a> ($<a class="el" href="ui__handler_8php.html#a4">id</a>)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">getNewFileData  <a href="#a13"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a14">getSearchRes</a> ($<a class="el" href="ui__handler_8php.html#a4">id</a>, $<a class="el" href="ui__browser_8php.html#a4">search</a>)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">getSearchRes  <a href="#a14"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a15">getFile</a> ($<a class="el" href="ui__handler_8php.html#a4">id</a>)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">getFile  <a href="#a15"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a16">getMdata</a> ($<a class="el" href="ui__handler_8php.html#a4">id</a>)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">getMdata  <a href="#a16"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a17">getInfo</a> ($<a class="el" href="ui__handler_8php.html#a4">id</a>)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">getInfo  <a href="#a17"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a18">getMetadataForm</a> ($<a class="el" href="ui__handler_8php.html#a4">id</a>, &amp;$mask)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">getMetaDataForm  <a href="#a18"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#a19">systemPrefs</a> (&amp;$mask)</td></tr>
-
-<tr><td colspan="2"><br><h2>Public Attributes</h2></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiBrowser.html#o0">$alertMsg</a></td></tr>
-
-</table>
-<hr><h2>Constructor &amp; Destructor Documentation</h2>
-<a class="anchor" name="a0" doxytag="uiBrowser::uiBrowser"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiBrowser::uiBrowser           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">$&nbsp;</td>
-          <td class="mdname1" valign="top" nowrap> <em>config</em>          </td>
-          <td class="md" valign="top">&nbsp;)&nbsp;</td>
-          <td class="md" nowrap></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-uiBrowser 
-<p>
-Initialize a new Browser Class including:<ul>
-<li>database initialation</li><li>GreenBox initialation</li></ul>
-<p>
-<dl compact><dt><b>Parameters:</b></dt><dd>
-  <table border="0" cellspacing="2" cellpadding="0">
-    <tr><td valign="top"></td><td valign="top"><em>$config</em>&nbsp;</td><td>array, configurartion data </td></tr>
-  </table>
-</dl>
-
-<p>
-Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00015">15</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>.
-<p>
-References <a class="el" href="ui__handler_8php-source.html#l00067">$_REQUEST</a>, and <a class="el" href="conf_8php-source.html#l00049">$config</a>.    </td>
-  </tr>
-</table>
-<hr><h2>Member Function Documentation</h2>
-<a class="anchor" name="a1" doxytag="uiBrowser::alertMsg"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiBrowser::alertMsg           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="mdname1" valign="top" nowrap>          </td>
-          <td class="md" valign="top">&nbsp;)&nbsp;</td>
-          <td class="md" nowrap></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-alertMsg 
-<p>
-takes error message from session var<p>
-<dl compact><dt><b>Returns:</b></dt><dd>string </dd></dl>
-
-<p>
-Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00038">38</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>.
-<p>
-References <a class="el" href="ui__browser_8class_8php-source.html#l00038">alertMsg()</a>.
-<p>
-Referenced by <a class="el" href="ui__browser_8class_8php-source.html#l00038">alertMsg()</a>, and <a class="el" href="ui__browser_8class_8php-source.html#l00353">getFile()</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a8" doxytag="uiBrowser::getAddSubjectForm"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiBrowser::getAddSubjectForm           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">$&nbsp;</td>
-          <td class="mdname1" valign="top" nowrap> <em>mask</em>          </td>
-          <td class="md" valign="top">&nbsp;)&nbsp;</td>
-          <td class="md" nowrap></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-addSubjectForm 
-<p>
-create a form to add GreenBox subjects (users/groups)<p>
-<dl compact><dt><b>Returns:</b></dt><dd>string (html) </dd></dl>
-
-<p>
-Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00193">193</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>.
-<p>
-References <a class="el" href="ui__base_8inc_8php-source.html#l00045">uiBase::_parseArr2Form()</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a9" doxytag="uiBrowser::getChangePasswdForm"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiBrowser::getChangePasswdForm           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">$&nbsp;</td>
-          <td class="mdname1" valign="top" nowrap> <em>uid</em>          </td>
-          <td class="md" valign="top">&nbsp;)&nbsp;</td>
-          <td class="md" nowrap></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-getChangePasswdForm 
-<p>
-create a form to change user-passwords in GreenBox<p>
-<dl compact><dt><b>Returns:</b></dt><dd>string (html) </dd></dl>
-
-<p>
-Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00214">214</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>.
-<p>
-References <a class="el" href="ui__handler_8php-source.html#l00051">changePasswd</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a15" doxytag="uiBrowser::getFile"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiBrowser::getFile           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">$&nbsp;</td>
-          <td class="mdname1" valign="top" nowrap> <em>id</em>          </td>
-          <td class="md" valign="top">&nbsp;)&nbsp;</td>
-          <td class="md" nowrap></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-getFile 
-<p>
-Call access method and show access path. Example only - not really useable. TODO: resource should be released by release method call<p>
-<dl compact><dt><b>Parameters:</b></dt><dd>
-  <table border="0" cellspacing="2" cellpadding="0">
-    <tr><td valign="top"></td><td valign="top"><em>id</em>&nbsp;</td><td>int, local id of accessed file </td></tr>
-  </table>
-</dl>
-
-<p>
-Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00353">353</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>.
-<p>
-References <a class="el" href="ui__browser_8class_8php-source.html#l00038">alertMsg()</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a10" doxytag="uiBrowser::getGroups"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiBrowser::getGroups           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">$&nbsp;</td>
-          <td class="mdname1" valign="top" nowrap> <em>id</em>          </td>
-          <td class="md" valign="top">&nbsp;)&nbsp;</td>
-          <td class="md" nowrap></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-getGroups 
-<p>
-get a list of groups where user is member of<p>
-$id int local user ID <dl compact><dt><b>Returns:</b></dt><dd>array </dd></dl>
-
-<p>
-Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00241">241</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>.
-<p>
-Referenced by <a class="el" href="ui__browser_8class_8php-source.html#l00262">getSubj2GroupForm()</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a17" doxytag="uiBrowser::getInfo"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiBrowser::getInfo           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">$&nbsp;</td>
-          <td class="mdname1" valign="top" nowrap> <em>id</em>          </td>
-          <td class="md" valign="top">&nbsp;)&nbsp;</td>
-          <td class="md" nowrap></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-getInfo 
-<p>
-Call getid3 library to analyze media file and show some results<p>
-<dl compact><dt><b>Parameters:</b></dt><dd>
-  <table border="0" cellspacing="2" cellpadding="0">
-    <tr><td valign="top"></td><td valign="top"><em>$id</em>&nbsp;</td><td>int local ID of file </td></tr>
-  </table>
-</dl>
-
-<p>
-Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00380">380</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a16" doxytag="uiBrowser::getMdata"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiBrowser::getMdata           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">$&nbsp;</td>
-          <td class="mdname1" valign="top" nowrap> <em>id</em>          </td>
-          <td class="md" valign="top">&nbsp;)&nbsp;</td>
-          <td class="md" nowrap></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-getMdata 
-<p>
-Show file's metadata as XML<p>
-<dl compact><dt><b>Parameters:</b></dt><dd>
-  <table border="0" cellspacing="2" cellpadding="0">
-    <tr><td valign="top"></td><td valign="top"><em>id</em>&nbsp;</td><td>int, local id of stored file </td></tr>
-  </table>
-</dl>
-<dl compact><dt><b>Returns:</b></dt><dd>array </dd></dl>
-
-<p>
-Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00368">368</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a18" doxytag="uiBrowser::getMetadataForm"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiBrowser::getMetadataForm           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">$&nbsp;</td>
-          <td class="mdname" nowrap> <em>id</em>, </td>
-        </tr>
-        <tr>
-          <td class="md" nowrap align="right"></td>
-          <td class="md"></td>
-          <td class="md" nowrap>&amp;$&nbsp;</td>
-          <td class="mdname" nowrap> <em>mask</em></td>
-        </tr>
-        <tr>
-          <td class="md"></td>
-          <td class="md">)&nbsp;</td>
-          <td class="md" colspan="2"></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-getMetaDataForm 
-<p>
-create a form to edit Metadata<p>
-<dl compact><dt><b>Parameters:</b></dt><dd>
-  <table border="0" cellspacing="2" cellpadding="0">
-    <tr><td valign="top"></td><td valign="top"><em>id</em>&nbsp;</td><td>int </td></tr>
-  </table>
-</dl>
-<dl compact><dt><b>Returns:</b></dt><dd>string (html) </dd></dl>
-
-<p>
-Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00402">402</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>.
-<p>
-References <a class="el" href="ui__base_8inc_8php-source.html#l00045">uiBase::_parseArr2Form()</a>, and <a class="el" href="ui__browser_8php-source.html#l00096">editMetaData</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a13" doxytag="uiBrowser::getNewFileData"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiBrowser::getNewFileData           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">$&nbsp;</td>
-          <td class="mdname1" valign="top" nowrap> <em>id</em>          </td>
-          <td class="md" valign="top">&nbsp;)&nbsp;</td>
-          <td class="md" nowrap></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-getNewFileData 
-<p>
-get basic data about Folder to store file in<p>
-<dl compact><dt><b>Parameters:</b></dt><dd>
-  <table border="0" cellspacing="2" cellpadding="0">
-    <tr><td valign="top"></td><td valign="top"><em>$id</em>&nbsp;</td><td>int local ID of folder</td></tr>
-  </table>
-</dl>
-<dl compact><dt><b>Returns:</b></dt><dd>array </dd></dl>
-
-<p>
-Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00313">313</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a5" doxytag="uiBrowser::getNewFileForm"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiBrowser::getNewFileForm           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">$&nbsp;</td>
-          <td class="mdname" nowrap> <em>id</em>, </td>
-        </tr>
-        <tr>
-          <td class="md" nowrap align="right"></td>
-          <td class="md"></td>
-          <td class="md" nowrap>$&nbsp;</td>
-          <td class="mdname" nowrap> <em>mask</em></td>
-        </tr>
-        <tr>
-          <td class="md"></td>
-          <td class="md">)&nbsp;</td>
-          <td class="md" colspan="2"></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-getNewFileForm 
-<p>
-create a form for file-upload<p>
-<dl compact><dt><b>Parameters:</b></dt><dd>
-  <table border="0" cellspacing="2" cellpadding="0">
-    <tr><td valign="top"></td><td valign="top"><em>int</em>&nbsp;</td><td>local $id of directory to store file in</td></tr>
-  </table>
-</dl>
-string (html) 
-<p>
-Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00139">139</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>.
-<p>
-References <a class="el" href="ui__base_8inc_8php-source.html#l00045">uiBase::_parseArr2Form()</a>, and <a class="el" href="ui__browser_8php-source.html#l00036">newfile</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a12" doxytag="uiBrowser::getPermissions"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiBrowser::getPermissions           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">$&nbsp;</td>
-          <td class="mdname1" valign="top" nowrap> <em>id</em>          </td>
-          <td class="md" valign="top">&nbsp;)&nbsp;</td>
-          <td class="md" nowrap></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-getPermissions 
-<p>
-get permissions for local object ID<p>
-<dl compact><dt><b>Parameters:</b></dt><dd>
-  <table border="0" cellspacing="2" cellpadding="0">
-    <tr><td valign="top"></td><td valign="top"><em>$id</em>&nbsp;</td><td>int local ID (file/folder)</td></tr>
-  </table>
-</dl>
-<dl compact><dt><b>Returns:</b></dt><dd>array </dd></dl>
-
-<p>
-Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00293">293</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>.
-<p>
-References <a class="el" href="ui__browser_8php-source.html#l00061">subjects</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a6" doxytag="uiBrowser::getSearchForm"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiBrowser::getSearchForm           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">$&nbsp;</td>
-          <td class="mdname" nowrap> <em>id</em>, </td>
-        </tr>
-        <tr>
-          <td class="md" nowrap align="right"></td>
-          <td class="md"></td>
-          <td class="md" nowrap>&amp;$&nbsp;</td>
-          <td class="mdname" nowrap> <em>mask</em></td>
-        </tr>
-        <tr>
-          <td class="md"></td>
-          <td class="md">)&nbsp;</td>
-          <td class="md" colspan="2"></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-getSearchForm 
-<p>
-create a form for searching in StorageServer<p>
-<dl compact><dt><b>Parameters:</b></dt><dd>
-  <table border="0" cellspacing="2" cellpadding="0">
-    <tr><td valign="top"></td><td valign="top"><em>int</em>&nbsp;</td><td>local ID of start-directory</td></tr>
-  </table>
-</dl>
-<dl compact><dt><b>Returns:</b></dt><dd>string (html) </dd></dl>
-
-<p>
-Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00160">160</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>.
-<p>
-References <a class="el" href="ui__base_8inc_8php-source.html#l00045">uiBase::_parseArr2Form()</a>, and <a class="el" href="ui__browser_8php-source.html#l00051">search</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a14" doxytag="uiBrowser::getSearchRes"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiBrowser::getSearchRes           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">$&nbsp;</td>
-          <td class="mdname" nowrap> <em>id</em>, </td>
-        </tr>
-        <tr>
-          <td class="md" nowrap align="right"></td>
-          <td class="md"></td>
-          <td class="md" nowrap>$&nbsp;</td>
-          <td class="mdname" nowrap> <em>search</em></td>
-        </tr>
-        <tr>
-          <td class="md"></td>
-          <td class="md">)&nbsp;</td>
-          <td class="md" colspan="2"></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-getSearchRes 
-<p>
-get Search Result<p>
-<dl compact><dt><b>Parameters:</b></dt><dd>
-  <table border="0" cellspacing="2" cellpadding="0">
-    <tr><td valign="top"></td><td valign="top"><em>$id</em>&nbsp;</td><td>int local ID (file/folder) to search in </td></tr>
-    <tr><td valign="top"></td><td valign="top"><em>$serach</em>&nbsp;</td><td>string </td></tr>
-  </table>
-</dl>
-<dl compact><dt><b>Returns:</b></dt><dd>array </dd></dl>
-
-<p>
-Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00330">330</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>.
-<p>
-References <a class="el" href="ui__browser_8php-source.html#l00051">search</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a4" doxytag="uiBrowser::getStructure"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiBrowser::getStructure           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">$&nbsp;</td>
-          <td class="mdname" nowrap> <em>id</em>, </td>
-        </tr>
-        <tr>
-          <td class="md" nowrap align="right"></td>
-          <td class="md"></td>
-          <td class="md" nowrap>$&nbsp;</td>
-          <td class="mdname" nowrap> <em>homedir</em> = <code>FALSE</code></td>
-        </tr>
-        <tr>
-          <td class="md"></td>
-          <td class="md">)&nbsp;</td>
-          <td class="md" colspan="2"></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-getStructure 
-<p>
-get directory-structure<p>
-<dl compact><dt><b>Parameters:</b></dt><dd>
-  <table border="0" cellspacing="2" cellpadding="0">
-    <tr><td valign="top"></td><td valign="top"><em>int</em>&nbsp;</td><td>local ID of start-directory </td></tr>
-    <tr><td valign="top"></td><td valign="top"><em>boolean</em>&nbsp;</td><td>$homedir TRUE: get homedir of current user</td></tr>
-  </table>
-</dl>
-array tree of directory with subs 
-<p>
-Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00099">99</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>.
-<p>
-References <a class="el" href="ui__handler_8php-source.html#l00067">$_REQUEST</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a11" doxytag="uiBrowser::getSubj2GroupForm"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiBrowser::getSubj2GroupForm           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">$&nbsp;</td>
-          <td class="mdname1" valign="top" nowrap> <em>id</em>          </td>
-          <td class="md" valign="top">&nbsp;)&nbsp;</td>
-          <td class="md" nowrap></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-getSubj2GroupForm 
-<p>
-creates a form to assign groups to a user<p>
-<dl compact><dt><b>Parameters:</b></dt><dd>
-  <table border="0" cellspacing="2" cellpadding="0">
-    <tr><td valign="top"></td><td valign="top"><em>$id</em>&nbsp;</td><td>int local user ID</td></tr>
-  </table>
-</dl>
-<dl compact><dt><b>Returns:</b></dt><dd>string (html) </dd></dl>
-
-<p>
-Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00262">262</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>.
-<p>
-References <a class="el" href="ui__handler_8php-source.html#l00063">addSubj2Group</a>, and <a class="el" href="ui__browser_8class_8php-source.html#l00241">getGroups()</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a7" doxytag="uiBrowser::getSubjects"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiBrowser::getSubjects           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="mdname1" valign="top" nowrap>          </td>
-          <td class="md" valign="top">&nbsp;)&nbsp;</td>
-          <td class="md" nowrap></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-getSubjects 
-<p>
-get all GreenBox subjects (users/groups)<p>
-<dl compact><dt><b>Returns:</b></dt><dd>array subj=&gt;unique id of subject, loggedAs=&gt;corresponding login name </dd></dl>
-
-<p>
-Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00178">178</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a3" doxytag="uiBrowser::getUserInfo"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiBrowser::getUserInfo           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="mdname1" valign="top" nowrap>          </td>
-          <td class="md" valign="top">&nbsp;)&nbsp;</td>
-          <td class="md" nowrap></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-getUserInfo 
-<p>
-get info about logged in user<p>
-<dl compact><dt><b>Returns:</b></dt><dd>array uname=&gt;user Name, uid=&gt;user ID </dd></dl>
-
-<p>
-Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00083">83</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a2" doxytag="uiBrowser::loginform"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiBrowser::loginform           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">&amp;$&nbsp;</td>
-          <td class="mdname" nowrap> <em>Smarty</em>, </td>
-        </tr>
-        <tr>
-          <td class="md" nowrap align="right"></td>
-          <td class="md"></td>
-          <td class="md" nowrap>&amp;$&nbsp;</td>
-          <td class="mdname" nowrap> <em>mask</em></td>
-        </tr>
-        <tr>
-          <td class="md"></td>
-          <td class="md">)&nbsp;</td>
-          <td class="md" colspan="2"></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-loginform 
-<p>
-create a login-form<p>
-<dl compact><dt><b>Parameters:</b></dt><dd>
-  <table border="0" cellspacing="2" cellpadding="0">
-    <tr><td valign="top"></td><td valign="top"><em>string</em>&nbsp;</td><td>$faillogin login name of failed login process </td></tr>
-  </table>
-</dl>
-<dl compact><dt><b>Returns:</b></dt><dd>string (html) </dd></dl>
-
-<p>
-Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00057">57</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>.
-<p>
-References <a class="el" href="ui__base_8inc_8php-source.html#l00045">uiBase::_parseArr2Form()</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a19" doxytag="uiBrowser::systemPrefs"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiBrowser::systemPrefs           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">&amp;$&nbsp;</td>
-          <td class="mdname1" valign="top" nowrap> <em>mask</em>          </td>
-          <td class="md" valign="top">&nbsp;)&nbsp;</td>
-          <td class="md" nowrap></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00416">416</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>.
-<p>
-References <a class="el" href="ui__base_8inc_8php-source.html#l00045">uiBase::_parseArr2Form()</a>, and <a class="el" href="ui__browser_8class_8php-source.html#l00416">systemPrefs()</a>.
-<p>
-Referenced by <a class="el" href="ui__browser_8class_8php-source.html#l00416">systemPrefs()</a>.    </td>
-  </tr>
-</table>
-<hr><h2>Member Data Documentation</h2>
-<a class="anchor" name="o0" doxytag="uiBrowser::$alertMsg"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiBrowser::$alertMsg          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__browser_8class_8php-source.html#l00003">3</a> of file <a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a>.    </td>
-  </tr>
-</table>
-<hr>The documentation for this class was generated from the following file:<ul>
-<li><a class="el" href="ui__browser_8class_8php-source.html">ui_browser.class.php</a></ul>
-<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/classuiBrowser.png b/livesupport/modules/htmlUI/doc/doxygen/html/classuiBrowser.png
deleted file mode 100644
index 03a41ffeb..000000000
Binary files a/livesupport/modules/htmlUI/doc/doxygen/html/classuiBrowser.png and /dev/null differ
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/classuiHandler-members.html b/livesupport/modules/htmlUI/doc/doxygen/html/classuiHandler-members.html
deleted file mode 100644
index e8d63c797..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/classuiHandler-members.html
+++ /dev/null
@@ -1,38 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: Member List</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<h1>uiHandler Member List</h1>This is the complete list of members for <a class="el" href="classuiHandler.html">uiHandler</a>, including all inherited members.<p><table>
-  <tr class="memlist"><td><a class="el" href="classuiHandler.html#o1">$alertMsg</a></td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiHandler.html#o0">$redirUrl</a></td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiBase.html#a1">_parseArr2Form</a>(&amp;$form, &amp;$mask, $side='client')</td><td><a class="el" href="classuiBase.html">uiBase</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiHandler.html#a20">_validateForm</a>(&amp;$formdata, &amp;$mask)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiHandler.html#a15">addPerm</a>($subj, $permAction, $id, $allowDeny)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiHandler.html#a12">addSubj</a>(&amp;$formdata, &amp;$mask)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiHandler.html#a17">addSubj2Group</a>($login, $gname, $reid)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiHandler.html#a7">copy</a>($newPath, $id)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiHandler.html#a8">delete</a>($id, $delOverride=FALSE)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiHandler.html#a9">getFile</a>($id)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiHandler.html#a11">getInfo</a>($id)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiHandler.html#a10">getMdata</a>($id)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiHandler.html#a1">login</a>(&amp;$formdata, &amp;$mask)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiHandler.html#a2">logout</a>()</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiHandler.html#a6">move</a>($newPath, $id)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiHandler.html#a4">newFolder</a>($newname, $id)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiHandler.html#a14">passwd</a>($uid, $oldpass, $pass, $pass2)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiHandler.html#a16">removePerm</a>($permid, $oid)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiHandler.html#a13">removeSubj</a>($login)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiHandler.html#a18">removeSubjFromGr</a>($login, $gname, $reid)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiHandler.html#a5">rename</a>($newname, $id)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiHandler.html#a19">storeSystemPrefs</a>(&amp;$formdata, &amp;$mask)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiBase.html#a0">tra</a>($input)</td><td><a class="el" href="classuiBase.html">uiBase</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiHandler.html#a0">uiHandler</a>($config)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
-  <tr class="memlist"><td><a class="el" href="classuiHandler.html#a3">upload</a>(&amp;$formdata, $id, &amp;$mask)</td><td><a class="el" href="classuiHandler.html">uiHandler</a></td><td></td></tr>
-</table><hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/classuiHandler.html b/livesupport/modules/htmlUI/doc/doxygen/html/classuiHandler.html
deleted file mode 100644
index 1cfa10354..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/classuiHandler.html
+++ /dev/null
@@ -1,1139 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: uiHandler Class Reference</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<h1>uiHandler Class Reference</h1>uiHandler class  
-<a href="#_details">More...</a>
-<p>
-<p>Inheritance diagram for uiHandler:
-<p><center><img src="classuiHandler.png" usemap="#uiHandler_map" border="0" alt=""></center>
-<map name="uiHandler_map">
-<area href="classuiBase.html" alt="uiBase" shape="rect" coords="0,0,67,24">
-</map>
-<a href="classuiHandler-members.html">List of all members.</a><table border="0" cellpadding="0" cellspacing="0">
-<tr><td></td></tr>
-<tr><td colspan="2"><br><h2>Public Member Functions</h2></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiHandler.html#a0">uiHandler</a> ($config)</td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiHandler.html#a1">login</a> (&amp;$formdata, &amp;$mask)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">login  <a href="#a1"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiHandler.html#a2">logout</a> ()</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">logout  <a href="#a2"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiHandler.html#a3">upload</a> (&amp;$formdata, $<a class="el" href="ui__handler_8php.html#a4">id</a>, &amp;$mask)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">upload  <a href="#a3"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiHandler.html#a4">newFolder</a> ($newname, $<a class="el" href="ui__handler_8php.html#a4">id</a>)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">newFolder  <a href="#a4"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiHandler.html#a5">rename</a> ($newname, $<a class="el" href="ui__handler_8php.html#a4">id</a>)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">rename  <a href="#a5"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiHandler.html#a6">move</a> ($newPath, $<a class="el" href="ui__handler_8php.html#a4">id</a>)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">move  <a href="#a6"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiHandler.html#a7">copy</a> ($newPath, $<a class="el" href="ui__handler_8php.html#a4">id</a>)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">copy  <a href="#a7"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiHandler.html#a8">delete</a> ($<a class="el" href="ui__handler_8php.html#a4">id</a>, $delOverride=FALSE)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">delete  <a href="#a8"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiHandler.html#a9">getFile</a> ($<a class="el" href="ui__handler_8php.html#a4">id</a>)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">getFile  <a href="#a9"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiHandler.html#a10">getMdata</a> ($<a class="el" href="ui__handler_8php.html#a4">id</a>)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">getMdata  <a href="#a10"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiHandler.html#a11">getInfo</a> ($<a class="el" href="ui__handler_8php.html#a4">id</a>)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">getInfo  <a href="#a11"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiHandler.html#a12">addSubj</a> (&amp;$formdata, &amp;$mask)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">addSubj  <a href="#a12"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiHandler.html#a13">removeSubj</a> ($login)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">removeSubj  <a href="#a13"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiHandler.html#a14">passwd</a> ($uid, $oldpass, $pass, $pass2)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">passwd  <a href="#a14"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiHandler.html#a15">addPerm</a> ($subj, $permAction, $<a class="el" href="ui__handler_8php.html#a4">id</a>, $allowDeny)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">addPerm  <a href="#a15"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiHandler.html#a16">removePerm</a> ($permid, $oid)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">removePerm  <a href="#a16"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiHandler.html#a17">addSubj2Group</a> ($login, $gname, $reid)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">addSubj2Group  <a href="#a17"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiHandler.html#a18">removeSubjFromGr</a> ($login, $gname, $reid)</td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Remove subject from group.  <a href="#a18"></a><br></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiHandler.html#a19">storeSystemPrefs</a> (&amp;$formdata, &amp;$mask)</td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiHandler.html#a20">_validateForm</a> (&amp;$formdata, &amp;$mask)</td></tr>
-
-<tr><td colspan="2"><br><h2>Public Attributes</h2></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiHandler.html#o0">$redirUrl</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classuiHandler.html#o1">$alertMsg</a></td></tr>
-
-</table>
-<hr><a name="_details"></a><h2>Detailed Description</h2>
-uiHandler class 
-<p>
-LiveSupport HTML User Interface module 
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8class_8php-source.html#l00007">7</a> of file <a class="el" href="ui__handler_8class_8php-source.html">ui_handler.class.php</a>.<hr><h2>Constructor &amp; Destructor Documentation</h2>
-<a class="anchor" name="a0" doxytag="uiHandler::uiHandler"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiHandler::uiHandler           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">$&nbsp;</td>
-          <td class="mdname1" valign="top" nowrap> <em>config</em>          </td>
-          <td class="md" valign="top">&nbsp;)&nbsp;</td>
-          <td class="md" nowrap></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8class_8php-source.html#l00011">11</a> of file <a class="el" href="ui__handler_8class_8php-source.html">ui_handler.class.php</a>.
-<p>
-References <a class="el" href="ui__handler_8php-source.html#l00067">$_REQUEST</a>, <a class="el" href="conf_8php-source.html#l00049">$config</a>, and <a class="el" href="ui__handler_8class_8php-source.html#l00033">login()</a>.    </td>
-  </tr>
-</table>
-<hr><h2>Member Function Documentation</h2>
-<a class="anchor" name="a20" doxytag="uiHandler::_validateForm"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiHandler::_validateForm           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">&amp;$&nbsp;</td>
-          <td class="mdname" nowrap> <em>formdata</em>, </td>
-        </tr>
-        <tr>
-          <td class="md" nowrap align="right"></td>
-          <td class="md"></td>
-          <td class="md" nowrap>&amp;$&nbsp;</td>
-          <td class="mdname" nowrap> <em>mask</em></td>
-        </tr>
-        <tr>
-          <td class="md"></td>
-          <td class="md">)&nbsp;</td>
-          <td class="md" colspan="2"></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8class_8php-source.html#l00429">429</a> of file <a class="el" href="ui__handler_8class_8php-source.html">ui_handler.class.php</a>.
-<p>
-References <a class="el" href="ui__base_8inc_8php-source.html#l00045">uiBase::_parseArr2Form()</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a15" doxytag="uiHandler::addPerm"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiHandler::addPerm           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">$&nbsp;</td>
-          <td class="mdname" nowrap> <em>subj</em>, </td>
-        </tr>
-        <tr>
-          <td class="md" nowrap align="right"></td>
-          <td class="md"></td>
-          <td class="md" nowrap>$&nbsp;</td>
-          <td class="mdname" nowrap> <em>permAction</em>, </td>
-        </tr>
-        <tr>
-          <td class="md" nowrap align="right"></td>
-          <td class="md"></td>
-          <td class="md" nowrap>$&nbsp;</td>
-          <td class="mdname" nowrap> <em>id</em>, </td>
-        </tr>
-        <tr>
-          <td class="md" nowrap align="right"></td>
-          <td class="md"></td>
-          <td class="md" nowrap>$&nbsp;</td>
-          <td class="mdname" nowrap> <em>allowDeny</em></td>
-        </tr>
-        <tr>
-          <td class="md"></td>
-          <td class="md">)&nbsp;</td>
-          <td class="md" colspan="2"></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-addPerm 
-<p>
-Add new permission record<p>
-<dl compact><dt><b>Parameters:</b></dt><dd>
-  <table border="0" cellspacing="2" cellpadding="0">
-    <tr><td valign="top"></td><td valign="top"><em>subj</em>&nbsp;</td><td>int, local user/group id </td></tr>
-    <tr><td valign="top"></td><td valign="top"><em>permAction</em>&nbsp;</td><td>string, type of action from set predefined in <a class="el" href="conf_8php.html">conf.php</a> </td></tr>
-    <tr><td valign="top"></td><td valign="top"><em>id</em>&nbsp;</td><td>int, local id of file/object </td></tr>
-    <tr><td valign="top"></td><td valign="top"><em>allowDeny</em>&nbsp;</td><td>char, A or D </td></tr>
-  </table>
-</dl>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8class_8php-source.html#l00347">347</a> of file <a class="el" href="ui__handler_8class_8php-source.html">ui_handler.class.php</a>.
-<p>
-References <a class="el" href="ui__browser_8php-source.html#l00028">permissions</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a12" doxytag="uiHandler::addSubj"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiHandler::addSubj           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">&amp;$&nbsp;</td>
-          <td class="mdname" nowrap> <em>formdata</em>, </td>
-        </tr>
-        <tr>
-          <td class="md" nowrap align="right"></td>
-          <td class="md"></td>
-          <td class="md" nowrap>&amp;$&nbsp;</td>
-          <td class="mdname" nowrap> <em>mask</em></td>
-        </tr>
-        <tr>
-          <td class="md"></td>
-          <td class="md">)&nbsp;</td>
-          <td class="md" colspan="2"></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-addSubj 
-<p>
-Create new user or group (empty pass =&gt; create group)<p>
-<dl compact><dt><b>Parameters:</b></dt><dd>
-  <table border="0" cellspacing="2" cellpadding="0">
-    <tr><td valign="top"></td><td valign="top"><em>formdata</em>&nbsp;</td><td>array('login', 'pass') </td></tr>
-  </table>
-</dl>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8class_8php-source.html#l00266">266</a> of file <a class="el" href="ui__handler_8class_8php-source.html">ui_handler.class.php</a>.
-<p>
-References <a class="el" href="ui__handler_8class_8php-source.html#l00033">login()</a>, <a class="el" href="ui__browser_8php-source.html#l00061">subjects</a>, and <a class="el" href="ui__base_8inc_8php-source.html#l00028">uiBase::tra()</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a17" doxytag="uiHandler::addSubj2Group"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiHandler::addSubj2Group           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">$&nbsp;</td>
-          <td class="mdname" nowrap> <em>login</em>, </td>
-        </tr>
-        <tr>
-          <td class="md" nowrap align="right"></td>
-          <td class="md"></td>
-          <td class="md" nowrap>$&nbsp;</td>
-          <td class="mdname" nowrap> <em>gname</em>, </td>
-        </tr>
-        <tr>
-          <td class="md" nowrap align="right"></td>
-          <td class="md"></td>
-          <td class="md" nowrap>$&nbsp;</td>
-          <td class="mdname" nowrap> <em>reid</em></td>
-        </tr>
-        <tr>
-          <td class="md"></td>
-          <td class="md">)&nbsp;</td>
-          <td class="md" colspan="2"></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-addSubj2Group 
-<p>
-Add {login} and direct/indirect members to {gname} and to groups, where {gname} is [in]direct member<p>
-<dl compact><dt><b>Parameters:</b></dt><dd>
-  <table border="0" cellspacing="2" cellpadding="0">
-    <tr><td valign="top"></td><td valign="top"><em>login</em>&nbsp;</td><td>string </td></tr>
-    <tr><td valign="top"></td><td valign="top"><em>gname</em>&nbsp;</td><td>string </td></tr>
-    <tr><td valign="top"></td><td valign="top"><em>reid</em>&nbsp;</td><td>string, local id of managed group, just needed for redirect </td></tr>
-  </table>
-</dl>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8class_8php-source.html#l00384">384</a> of file <a class="el" href="ui__handler_8class_8php-source.html">ui_handler.class.php</a>.
-<p>
-References <a class="el" href="ui__browser_8php-source.html#l00075">groups</a>, <a class="el" href="ui__handler_8class_8php-source.html#l00033">login()</a>, and <a class="el" href="ui__browser_8php-source.html#l00061">subjects</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a7" doxytag="uiHandler::copy"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiHandler::copy           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">$&nbsp;</td>
-          <td class="mdname" nowrap> <em>newPath</em>, </td>
-        </tr>
-        <tr>
-          <td class="md" nowrap align="right"></td>
-          <td class="md"></td>
-          <td class="md" nowrap>$&nbsp;</td>
-          <td class="mdname" nowrap> <em>id</em></td>
-        </tr>
-        <tr>
-          <td class="md"></td>
-          <td class="md">)&nbsp;</td>
-          <td class="md" colspan="2"></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-copy 
-<p>
-Copy file to another folder TODO: format of destinantion path should be properly defined<p>
-<dl compact><dt><b>Parameters:</b></dt><dd>
-  <table border="0" cellspacing="2" cellpadding="0">
-    <tr><td valign="top"></td><td valign="top"><em>newPath</em>&nbsp;</td><td>string, destination relative path </td></tr>
-    <tr><td valign="top"></td><td valign="top"><em>id</em>&nbsp;</td><td>int, destination folder id </td></tr>
-  </table>
-</dl>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8class_8php-source.html#l00166">166</a> of file <a class="el" href="ui__handler_8class_8php-source.html">ui_handler.class.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a8" doxytag="uiHandler::delete"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiHandler::delete           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">$&nbsp;</td>
-          <td class="mdname" nowrap> <em>id</em>, </td>
-        </tr>
-        <tr>
-          <td class="md" nowrap align="right"></td>
-          <td class="md"></td>
-          <td class="md" nowrap>$&nbsp;</td>
-          <td class="mdname" nowrap> <em>delOverride</em> = <code>FALSE</code></td>
-        </tr>
-        <tr>
-          <td class="md"></td>
-          <td class="md">)&nbsp;</td>
-          <td class="md" colspan="2"></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-delete 
-<p>
-Delete of stored file<p>
-<dl compact><dt><b>Parameters:</b></dt><dd>
-  <table border="0" cellspacing="2" cellpadding="0">
-    <tr><td valign="top"></td><td valign="top"><em>id</em>&nbsp;</td><td>int, local id of deleted file or folder </td></tr>
-    <tr><td valign="top"></td><td valign="top"><em>delOverride</em>&nbsp;</td><td>int, local id od folder which can deleted if not empty </td></tr>
-  </table>
-</dl>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8class_8php-source.html#l00187">187</a> of file <a class="el" href="ui__handler_8class_8php-source.html">ui_handler.class.php</a>.
-<p>
-References <a class="el" href="ui__base_8inc_8php-source.html#l00028">uiBase::tra()</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a9" doxytag="uiHandler::getFile"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiHandler::getFile           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">$&nbsp;</td>
-          <td class="mdname1" valign="top" nowrap> <em>id</em>          </td>
-          <td class="md" valign="top">&nbsp;)&nbsp;</td>
-          <td class="md" nowrap></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-getFile 
-<p>
-Call access method and show access path. Example only - not really useable. TODO: resource should be released by release method call<p>
-<dl compact><dt><b>Parameters:</b></dt><dd>
-  <table border="0" cellspacing="2" cellpadding="0">
-    <tr><td valign="top"></td><td valign="top"><em>id</em>&nbsp;</td><td>int, local id of accessed file </td></tr>
-  </table>
-</dl>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8class_8php-source.html#l00215">215</a> of file <a class="el" href="ui__handler_8class_8php-source.html">ui_handler.class.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a11" doxytag="uiHandler::getInfo"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiHandler::getInfo           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">$&nbsp;</td>
-          <td class="mdname1" valign="top" nowrap> <em>id</em>          </td>
-          <td class="md" valign="top">&nbsp;)&nbsp;</td>
-          <td class="md" nowrap></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-getInfo 
-<p>
-Call getid3 library to analyze media file and show some results<p>
-<dl compact><dt><b>Parameters:</b></dt><dd>
-  <table border="0" cellspacing="2" cellpadding="0">
-    <tr><td valign="top"></td><td valign="top"><em>@param</em>&nbsp;</td><td></td></tr>
-  </table>
-</dl>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8class_8php-source.html#l00244">244</a> of file <a class="el" href="ui__handler_8class_8php-source.html">ui_handler.class.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a10" doxytag="uiHandler::getMdata"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiHandler::getMdata           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">$&nbsp;</td>
-          <td class="mdname1" valign="top" nowrap> <em>id</em>          </td>
-          <td class="md" valign="top">&nbsp;)&nbsp;</td>
-          <td class="md" nowrap></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-getMdata 
-<p>
-Show file's metadata as XML<p>
-<dl compact><dt><b>Parameters:</b></dt><dd>
-  <table border="0" cellspacing="2" cellpadding="0">
-    <tr><td valign="top"></td><td valign="top"><em>id</em>&nbsp;</td><td>int, local id of stored file </td></tr>
-  </table>
-</dl>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8class_8php-source.html#l00229">229</a> of file <a class="el" href="ui__handler_8class_8php-source.html">ui_handler.class.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a1" doxytag="uiHandler::login"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiHandler::login           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">&amp;$&nbsp;</td>
-          <td class="mdname" nowrap> <em>formdata</em>, </td>
-        </tr>
-        <tr>
-          <td class="md" nowrap align="right"></td>
-          <td class="md"></td>
-          <td class="md" nowrap>&amp;$&nbsp;</td>
-          <td class="mdname" nowrap> <em>mask</em></td>
-        </tr>
-        <tr>
-          <td class="md"></td>
-          <td class="md">)&nbsp;</td>
-          <td class="md" colspan="2"></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-login 
-<p>
-Login to the storageServer. It set sessid to the cookie with name defined in ../conf.php<p>
-<dl compact><dt><b>Parameters:</b></dt><dd>
-  <table border="0" cellspacing="2" cellpadding="0">
-    <tr><td valign="top"></td><td valign="top"><em>login</em>&nbsp;</td><td>string, username </td></tr>
-    <tr><td valign="top"></td><td valign="top"><em>pass</em>&nbsp;</td><td>string, password </td></tr>
-  </table>
-</dl>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8class_8php-source.html#l00033">33</a> of file <a class="el" href="ui__handler_8class_8php-source.html">ui_handler.class.php</a>.
-<p>
-References <a class="el" href="ui__handler_8class_8php-source.html#l00033">login()</a>.
-<p>
-Referenced by <a class="el" href="ui__handler_8class_8php-source.html#l00266">addSubj()</a>, <a class="el" href="ui__handler_8class_8php-source.html#l00384">addSubj2Group()</a>, <a class="el" href="ui__handler_8class_8php-source.html#l00033">login()</a>, <a class="el" href="ui__handler_8class_8php-source.html#l00290">removeSubj()</a>, <a class="el" href="ui__handler_8class_8php-source.html#l00404">removeSubjFromGr()</a>, and <a class="el" href="ui__handler_8class_8php-source.html#l00011">uiHandler()</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a2" doxytag="uiHandler::logout"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiHandler::logout           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="mdname1" valign="top" nowrap>          </td>
-          <td class="md" valign="top">&nbsp;)&nbsp;</td>
-          <td class="md" nowrap></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-logout 
-<p>
-Logut from storageServer, takes sessid from cookie 
-<p>
-Definition at line <a class="el" href="ui__handler_8class_8php-source.html#l00056">56</a> of file <a class="el" href="ui__handler_8class_8php-source.html">ui_handler.class.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a6" doxytag="uiHandler::move"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiHandler::move           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">$&nbsp;</td>
-          <td class="mdname" nowrap> <em>newPath</em>, </td>
-        </tr>
-        <tr>
-          <td class="md" nowrap align="right"></td>
-          <td class="md"></td>
-          <td class="md" nowrap>$&nbsp;</td>
-          <td class="mdname" nowrap> <em>id</em></td>
-        </tr>
-        <tr>
-          <td class="md"></td>
-          <td class="md">)&nbsp;</td>
-          <td class="md" colspan="2"></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-move 
-<p>
-Move file to another folder TODO: format of destinantion path should be properly defined<p>
-<dl compact><dt><b>Parameters:</b></dt><dd>
-  <table border="0" cellspacing="2" cellpadding="0">
-    <tr><td valign="top"></td><td valign="top"><em>newPath</em>&nbsp;</td><td>string, destination relative path </td></tr>
-    <tr><td valign="top"></td><td valign="top"><em>id</em>&nbsp;</td><td>int, destination folder id </td></tr>
-  </table>
-</dl>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8class_8php-source.html#l00144">144</a> of file <a class="el" href="ui__handler_8class_8php-source.html">ui_handler.class.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a4" doxytag="uiHandler::newFolder"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiHandler::newFolder           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">$&nbsp;</td>
-          <td class="mdname" nowrap> <em>newname</em>, </td>
-        </tr>
-        <tr>
-          <td class="md" nowrap align="right"></td>
-          <td class="md"></td>
-          <td class="md" nowrap>$&nbsp;</td>
-          <td class="mdname" nowrap> <em>id</em></td>
-        </tr>
-        <tr>
-          <td class="md"></td>
-          <td class="md">)&nbsp;</td>
-          <td class="md" colspan="2"></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-newFolder 
-<p>
-Create new folder in the storage<p>
-<dl compact><dt><b>Parameters:</b></dt><dd>
-  <table border="0" cellspacing="2" cellpadding="0">
-    <tr><td valign="top"></td><td valign="top"><em>newname</em>&nbsp;</td><td>string, name for the new folder </td></tr>
-    <tr><td valign="top"></td><td valign="top"><em>id</em>&nbsp;</td><td>int, destination folder id </td></tr>
-  </table>
-</dl>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8class_8php-source.html#l00112">112</a> of file <a class="el" href="ui__handler_8class_8php-source.html">ui_handler.class.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a14" doxytag="uiHandler::passwd"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiHandler::passwd           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">$&nbsp;</td>
-          <td class="mdname" nowrap> <em>uid</em>, </td>
-        </tr>
-        <tr>
-          <td class="md" nowrap align="right"></td>
-          <td class="md"></td>
-          <td class="md" nowrap>$&nbsp;</td>
-          <td class="mdname" nowrap> <em>oldpass</em>, </td>
-        </tr>
-        <tr>
-          <td class="md" nowrap align="right"></td>
-          <td class="md"></td>
-          <td class="md" nowrap>$&nbsp;</td>
-          <td class="mdname" nowrap> <em>pass</em>, </td>
-        </tr>
-        <tr>
-          <td class="md" nowrap align="right"></td>
-          <td class="md"></td>
-          <td class="md" nowrap>$&nbsp;</td>
-          <td class="mdname" nowrap> <em>pass2</em></td>
-        </tr>
-        <tr>
-          <td class="md"></td>
-          <td class="md">)&nbsp;</td>
-          <td class="md" colspan="2"></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-passwd 
-<p>
-Change password for specified user<p>
-<dl compact><dt><b>Parameters:</b></dt><dd>
-  <table border="0" cellspacing="2" cellpadding="0">
-    <tr><td valign="top"></td><td valign="top"><em>uid</em>&nbsp;</td><td>int, local user id </td></tr>
-    <tr><td valign="top"></td><td valign="top"><em>oldpass</em>&nbsp;</td><td>string, old user password </td></tr>
-    <tr><td valign="top"></td><td valign="top"><em>pass</em>&nbsp;</td><td>string, new password </td></tr>
-    <tr><td valign="top"></td><td valign="top"><em>pass2</em>&nbsp;</td><td>string, retype of new password </td></tr>
-  </table>
-</dl>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8class_8php-source.html#l00313">313</a> of file <a class="el" href="ui__handler_8class_8php-source.html">ui_handler.class.php</a>.
-<p>
-References <a class="el" href="ui__browser_8php-source.html#l00061">subjects</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a16" doxytag="uiHandler::removePerm"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiHandler::removePerm           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">$&nbsp;</td>
-          <td class="mdname" nowrap> <em>permid</em>, </td>
-        </tr>
-        <tr>
-          <td class="md" nowrap align="right"></td>
-          <td class="md"></td>
-          <td class="md" nowrap>$&nbsp;</td>
-          <td class="mdname" nowrap> <em>oid</em></td>
-        </tr>
-        <tr>
-          <td class="md"></td>
-          <td class="md">)&nbsp;</td>
-          <td class="md" colspan="2"></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-removePerm 
-<p>
-Remove permission record<p>
-<dl compact><dt><b>Parameters:</b></dt><dd>
-  <table border="0" cellspacing="2" cellpadding="0">
-    <tr><td valign="top"></td><td valign="top"><em>permid</em>&nbsp;</td><td>int, local id of permission record </td></tr>
-  </table>
-</dl>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8class_8php-source.html#l00365">365</a> of file <a class="el" href="ui__handler_8class_8php-source.html">ui_handler.class.php</a>.
-<p>
-References <a class="el" href="ui__browser_8php-source.html#l00028">permissions</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a13" doxytag="uiHandler::removeSubj"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiHandler::removeSubj           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">$&nbsp;</td>
-          <td class="mdname1" valign="top" nowrap> <em>login</em>          </td>
-          <td class="md" valign="top">&nbsp;)&nbsp;</td>
-          <td class="md" nowrap></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-removeSubj 
-<p>
-Remove existing user or group<p>
-<dl compact><dt><b>Parameters:</b></dt><dd>
-  <table border="0" cellspacing="2" cellpadding="0">
-    <tr><td valign="top"></td><td valign="top"><em>login</em>&nbsp;</td><td>string, login name of removed user </td></tr>
-  </table>
-</dl>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8class_8php-source.html#l00290">290</a> of file <a class="el" href="ui__handler_8class_8php-source.html">ui_handler.class.php</a>.
-<p>
-References <a class="el" href="ui__handler_8class_8php-source.html#l00033">login()</a>, and <a class="el" href="ui__browser_8php-source.html#l00061">subjects</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a18" doxytag="uiHandler::removeSubjFromGr"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiHandler::removeSubjFromGr           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">$&nbsp;</td>
-          <td class="mdname" nowrap> <em>login</em>, </td>
-        </tr>
-        <tr>
-          <td class="md" nowrap align="right"></td>
-          <td class="md"></td>
-          <td class="md" nowrap>$&nbsp;</td>
-          <td class="mdname" nowrap> <em>gname</em>, </td>
-        </tr>
-        <tr>
-          <td class="md" nowrap align="right"></td>
-          <td class="md"></td>
-          <td class="md" nowrap>$&nbsp;</td>
-          <td class="mdname" nowrap> <em>reid</em></td>
-        </tr>
-        <tr>
-          <td class="md"></td>
-          <td class="md">)&nbsp;</td>
-          <td class="md" colspan="2"></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-Remove subject from group. 
-<p>
-<dl compact><dt><b>Parameters:</b></dt><dd>
-  <table border="0" cellspacing="2" cellpadding="0">
-    <tr><td valign="top"></td><td valign="top"><em>login</em>&nbsp;</td><td>string </td></tr>
-    <tr><td valign="top"></td><td valign="top"><em>gname</em>&nbsp;</td><td>string </td></tr>
-    <tr><td valign="top"></td><td valign="top"><em>reid</em>&nbsp;</td><td>string, local id of managed group, just needed for redirect </td></tr>
-  </table>
-</dl>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8class_8php-source.html#l00404">404</a> of file <a class="el" href="ui__handler_8class_8php-source.html">ui_handler.class.php</a>.
-<p>
-References <a class="el" href="ui__browser_8php-source.html#l00075">groups</a>, <a class="el" href="ui__handler_8class_8php-source.html#l00033">login()</a>, and <a class="el" href="ui__browser_8php-source.html#l00061">subjects</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a5" doxytag="uiHandler::rename"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiHandler::rename           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">$&nbsp;</td>
-          <td class="mdname" nowrap> <em>newname</em>, </td>
-        </tr>
-        <tr>
-          <td class="md" nowrap align="right"></td>
-          <td class="md"></td>
-          <td class="md" nowrap>$&nbsp;</td>
-          <td class="mdname" nowrap> <em>id</em></td>
-        </tr>
-        <tr>
-          <td class="md"></td>
-          <td class="md">)&nbsp;</td>
-          <td class="md" colspan="2"></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-rename 
-<p>
-Change the name of file or folder<p>
-<dl compact><dt><b>Parameters:</b></dt><dd>
-  <table border="0" cellspacing="2" cellpadding="0">
-    <tr><td valign="top"></td><td valign="top"><em>newname</em>&nbsp;</td><td>string, new name for the file or folder </td></tr>
-    <tr><td valign="top"></td><td valign="top"><em>id</em>&nbsp;</td><td>int, destination folder id </td></tr>
-  </table>
-</dl>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8class_8php-source.html#l00127">127</a> of file <a class="el" href="ui__handler_8class_8php-source.html">ui_handler.class.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a19" doxytag="uiHandler::storeSystemPrefs"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiHandler::storeSystemPrefs           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">&amp;$&nbsp;</td>
-          <td class="mdname" nowrap> <em>formdata</em>, </td>
-        </tr>
-        <tr>
-          <td class="md" nowrap align="right"></td>
-          <td class="md"></td>
-          <td class="md" nowrap>&amp;$&nbsp;</td>
-          <td class="mdname" nowrap> <em>mask</em></td>
-        </tr>
-        <tr>
-          <td class="md"></td>
-          <td class="md">)&nbsp;</td>
-          <td class="md" colspan="2"></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8class_8php-source.html#l00418">418</a> of file <a class="el" href="ui__handler_8class_8php-source.html">ui_handler.class.php</a>.
-<p>
-References <a class="el" href="ui__browser_8php-source.html#l00101">systemPrefs</a>, and <a class="el" href="ui__base_8inc_8php-source.html#l00028">uiBase::tra()</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a3" doxytag="uiHandler::upload"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiHandler::upload           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">&amp;$&nbsp;</td>
-          <td class="mdname" nowrap> <em>formdata</em>, </td>
-        </tr>
-        <tr>
-          <td class="md" nowrap align="right"></td>
-          <td class="md"></td>
-          <td class="md" nowrap>$&nbsp;</td>
-          <td class="mdname" nowrap> <em>id</em>, </td>
-        </tr>
-        <tr>
-          <td class="md" nowrap align="right"></td>
-          <td class="md"></td>
-          <td class="md" nowrap>&amp;$&nbsp;</td>
-          <td class="mdname" nowrap> <em>mask</em></td>
-        </tr>
-        <tr>
-          <td class="md"></td>
-          <td class="md">)&nbsp;</td>
-          <td class="md" colspan="2"></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-upload 
-<p>
-Provides file upload and store it to the storage<p>
-<dl compact><dt><b>Parameters:</b></dt><dd>
-  <table border="0" cellspacing="2" cellpadding="0">
-    <tr><td valign="top"></td><td valign="top"><em>filename</em>&nbsp;</td><td>string, name for the uploaded file </td></tr>
-    <tr><td valign="top"></td><td valign="top"><em>mediafile</em>&nbsp;</td><td>file uploded by HTTP, raw binary media file </td></tr>
-    <tr><td valign="top"></td><td valign="top"><em>mdatafile</em>&nbsp;</td><td>file uploded by HTTP, metadata XML file </td></tr>
-    <tr><td valign="top"></td><td valign="top"><em>id</em>&nbsp;</td><td>int, destination folder id </td></tr>
-  </table>
-</dl>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8class_8php-source.html#l00074">74</a> of file <a class="el" href="ui__handler_8class_8php-source.html">ui_handler.class.php</a>.    </td>
-  </tr>
-</table>
-<hr><h2>Member Data Documentation</h2>
-<a class="anchor" name="o1" doxytag="uiHandler::$alertMsg"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiHandler::$alertMsg          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8class_8php-source.html#l00009">9</a> of file <a class="el" href="ui__handler_8class_8php-source.html">ui_handler.class.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="o0" doxytag="uiHandler::$redirUrl"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">uiHandler::$redirUrl          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8class_8php-source.html#l00008">8</a> of file <a class="el" href="ui__handler_8class_8php-source.html">ui_handler.class.php</a>.    </td>
-  </tr>
-</table>
-<hr>The documentation for this class was generated from the following file:<ul>
-<li><a class="el" href="ui__handler_8class_8php-source.html">ui_handler.class.php</a></ul>
-<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/classuiHandler.png b/livesupport/modules/htmlUI/doc/doxygen/html/classuiHandler.png
deleted file mode 100644
index b324c6f69..000000000
Binary files a/livesupport/modules/htmlUI/doc/doxygen/html/classuiHandler.png and /dev/null differ
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/conf_8php-source.html b/livesupport/modules/htmlUI/doc/doxygen/html/conf_8php-source.html
deleted file mode 100644
index 05b13a68b..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/conf_8php-source.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: conf.php Source File</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<div class="nav">
-<a class="el" href="dir_000000.html">var</a></div>
-<h1>conf.php</h1><a href="conf_8php.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 &lt;?php
-00002 <span class="comment">/*------------------------------------------------------------------------------</span>
-00003 <span class="comment"></span>
-00004 <span class="comment">    Copyright (c) 2004 Media Development Loan Fund</span>
-00005 <span class="comment"></span>
-00006 <span class="comment">    This file is part of the LiveSupport project.</span>
-00007 <span class="comment">    http://livesupport.campware.org/</span>
-00008 <span class="comment">    To report bugs, send an e-mail to bugs@campware.org</span>
-00009 <span class="comment"></span>
-00010 <span class="comment">    LiveSupport is free software; you can redistribute it and/or modify</span>
-00011 <span class="comment">    it under the terms of the GNU General Public License as published by</span>
-00012 <span class="comment">    the Free Software Foundation; either version 2 of the License, or</span>
-00013 <span class="comment">    (at your option) any later version.</span>
-00014 <span class="comment"></span>
-00015 <span class="comment">    LiveSupport is distributed in the hope that it will be useful,</span>
-00016 <span class="comment">    but WITHOUT ANY WARRANTY; without even the implied warranty of</span>
-00017 <span class="comment">    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the</span>
-00018 <span class="comment">    GNU General Public License for more details.</span>
-00019 <span class="comment"></span>
-00020 <span class="comment">    You should have received a copy of the GNU General Public License</span>
-00021 <span class="comment">    along with LiveSupport; if not, write to the Free Software</span>
-00022 <span class="comment">    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA</span>
-00023 <span class="comment"></span>
-00024 <span class="comment"></span>
-00025 <span class="comment">    Author   : $Author: sebastian $</span>
-00026 <span class="comment">    Version  : $Revision: 1.1 $</span>
-00027 <span class="comment">    Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/htmlUI/doc/doxygen/html/Attic/conf_8php-source.html,v $</span>
-00028 <span class="comment"></span>
-00029 <span class="comment">------------------------------------------------------------------------------*/</span>
-00030 
-<a name="l00049"></a><a class="code" href="conf_8php.html#a0">00049</a> <a class="code" href="conf_8php.html#a0">$config</a> = array(
-00050     <span class="comment">/* ================================================== basic configuration */</span>
-00051     'dsn'           =&gt; array(
-00052         'username'      =&gt; 'test',
-00053         'password'      =&gt; 'test',
-00054         'hostspec'      =&gt; 'localhost',
-00055         'phptype'       =&gt; 'pgsql',
-00056         'database'      =&gt; 'LiveSupport-test',
-00057     ),
-00058     'tblNamePrefix' =&gt; 'ls_',
-00059     'authCookieName'=&gt; 'lssid',
-00060     #'storageDir'    =&gt;  dirname(getcwd()).'/stor',
-00061     #'bufferDir'     =&gt;  dirname(getcwd()).'/stor/buffer',
-00062     #'transDir'      =&gt;  dirname(getcwd()).'/trans',
-00063     #'accessDir'     =&gt;  dirname(getcwd()).'/access',
-00064     'storageDir'    =&gt;  dirname(__FILE__).'/../../storageServer/var/stor',
-00065     'bufferDir'     =&gt;  dirname(__FILE__).'/../../storageServer/var/stor/buffer',
-00066     'transDir'      =&gt;  dirname(__FILE__).'/../../storageServer/var/trans',
-00067     'accessDir'     =&gt;  dirname(__FILE__).'/../../storageServer/var/access',
-00068 
-00069     <span class="comment">/* ==================================================== URL configuration */</span>
-00070     'storageUrlPath'        =&gt; '/livesupportStorageServer',
-00071     'storageXMLRPC'         =&gt; 'xmlrpc/xrLocStor.php',
-00072     'storageUrlHost'        =&gt; 'localhost',
-00073     'storageUrlPort'        =&gt; 80,
-00074 
-00075     <span class="comment">/* ================================================ archive configuration */</span>
-00076     'archiveUrlPath'        =&gt; '/livesupportArchiveServer',
-00077     'archiveXMLRPC'         =&gt; 'xmlrpc/xrArchive.php',
-00078     'archiveUrlHost'        =&gt; 'localhost',
-00079     'archiveUrlPort'        =&gt; 80,
-00080     'archiveAccountLogin'   =&gt; 'root',
-00081     'archiveAccountPass'    =&gt; <span class="charliteral">'q'</span>,
-00082 
-00083     <span class="comment">/* ==================================== aplication-specific configuration */</span>
-00084     'objtypes'      =&gt; array(
-00085         'RootNode'      =&gt; array('Folder'),
-00086         'Storage'       =&gt; array('Folder', 'File', 'Replica'),
-00087         'Folder'        =&gt; array('Folder', 'File', 'Replica'),
-00088         'File'          =&gt; array(),
-00089         'Replica'       =&gt; array(),
-00090     ),
-00091     'allowedActions'=&gt; array(
-00092         'RootNode'      =&gt; array('classes', 'subjects'),
-00093         'Folder'        =&gt; array('editPrivs', 'write', 'read'),
-00094         'File'          =&gt; array('editPrivs', 'write', 'read'),
-00095         'Replica'       =&gt; array('editPrivs', 'write', 'read'),
-00096         '_class'        =&gt; array('editPrivs', 'write', 'read'),
-00097     ),
-00098     'allActions'    =&gt;  array(
-00099         'editPrivs', 'write', 'read', 'classes', 'subjects'
-00100     ),
-00101 
-00102     <span class="comment">/* ============================================== auxiliary configuration */</span>
-00103     'RootNode'        =&gt; 'RootNode',
-00104     'tmpRootPass'   =&gt; <span class="charliteral">'q'</span>,
-00105 );
-00106 
-00107 
-00108 
-00109 
-<a name="l00110"></a><a class="code" href="conf_8php.html#a1">00110</a> define('UI_HANDLER', 'ui_handler.php');
-<a name="l00111"></a><a class="code" href="conf_8php.html#a2">00111</a> define('UI_BROWSER', 'ui_browser.php');
-<a name="l00112"></a><a class="code" href="conf_8php.html#a3">00112</a> define('UI_FORM_STANDARD_METHOD', 'POST');
-<a name="l00113"></a><a class="code" href="conf_8php.html#a4">00113</a> define('UI_INPUT_STANDARD_SIZE', 20);
-<a name="l00114"></a><a class="code" href="conf_8php.html#a5">00114</a> define('UI_INPUT_STANDARD_MAXLENGTH', 50);
-<a name="l00115"></a><a class="code" href="conf_8php.html#a6">00115</a> define('UI_INPUT_GBOBJECT_MAXFILESIZE', 10000);
-<a name="l00116"></a><a class="code" href="conf_8php.html#a7">00116</a> define('UI_QFORM_REQUIRED',     'templates/form_parts/required.tpl');
-<a name="l00117"></a><a class="code" href="conf_8php.html#a8">00117</a> define('UI_QFORM_REQUIREDNOTE', 'templates/form_parts/requirednote.tpl');
-<a name="l00118"></a><a class="code" href="conf_8php.html#a9">00118</a> define('UI_QFORM_ERROR',        'templates/form_parts/required.tpl');
-00119 ?&gt;
-</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/conf_8php.html b/livesupport/modules/htmlUI/doc/doxygen/html/conf_8php.html
deleted file mode 100644
index c2d076139..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/conf_8php.html
+++ /dev/null
@@ -1,326 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: conf.php File Reference</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<div class="nav">
-<a class="el" href="dir_000000.html">var</a></div>
-<h1>conf.php File Reference</h1>
-<p>
-<a href="conf_8php-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
-<tr><td></td></tr>
-<tr><td colspan="2"><br><h2>Enumerations</h2></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">enum &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="conf_8php.html#a1">UI_HANDLER</a> </td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">enum &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="conf_8php.html#a2">UI_BROWSER</a> </td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">enum &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="conf_8php.html#a3">UI_FORM_STANDARD_METHOD</a> </td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">enum &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="conf_8php.html#a4">UI_INPUT_STANDARD_SIZE</a> </td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">enum &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="conf_8php.html#a5">UI_INPUT_STANDARD_MAXLENGTH</a> </td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">enum &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="conf_8php.html#a6">UI_INPUT_GBOBJECT_MAXFILESIZE</a> </td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">enum &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="conf_8php.html#a7">UI_QFORM_REQUIRED</a> </td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">enum &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="conf_8php.html#a8">UI_QFORM_REQUIREDNOTE</a> </td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">enum &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="conf_8php.html#a9">UI_QFORM_ERROR</a> </td></tr>
-
-<tr><td colspan="2"><br><h2>Variables</h2></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="conf_8php.html#a0">$config</a></td></tr>
-
-<tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">configuration structure:  <a href="#a0"></a><br></td></tr>
-</table>
-<hr><h2>Enumeration Type Documentation</h2>
-<a class="anchor" name="a2" doxytag="conf.php::UI_BROWSER"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">enum <a class="el" href="conf_8php.html#a2">UI_BROWSER</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="conf_8php-source.html#l00111">111</a> of file <a class="el" href="conf_8php-source.html">conf.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a3" doxytag="conf.php::UI_FORM_STANDARD_METHOD"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">enum <a class="el" href="conf_8php.html#a3">UI_FORM_STANDARD_METHOD</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="conf_8php-source.html#l00112">112</a> of file <a class="el" href="conf_8php-source.html">conf.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a1" doxytag="conf.php::UI_HANDLER"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">enum <a class="el" href="conf_8php.html#a1">UI_HANDLER</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="conf_8php-source.html#l00110">110</a> of file <a class="el" href="conf_8php-source.html">conf.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a6" doxytag="conf.php::UI_INPUT_GBOBJECT_MAXFILESIZE"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">enum <a class="el" href="conf_8php.html#a6">UI_INPUT_GBOBJECT_MAXFILESIZE</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="conf_8php-source.html#l00115">115</a> of file <a class="el" href="conf_8php-source.html">conf.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a5" doxytag="conf.php::UI_INPUT_STANDARD_MAXLENGTH"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">enum <a class="el" href="conf_8php.html#a5">UI_INPUT_STANDARD_MAXLENGTH</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="conf_8php-source.html#l00114">114</a> of file <a class="el" href="conf_8php-source.html">conf.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a4" doxytag="conf.php::UI_INPUT_STANDARD_SIZE"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">enum <a class="el" href="conf_8php.html#a4">UI_INPUT_STANDARD_SIZE</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="conf_8php-source.html#l00113">113</a> of file <a class="el" href="conf_8php-source.html">conf.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a9" doxytag="conf.php::UI_QFORM_ERROR"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">enum <a class="el" href="conf_8php.html#a9">UI_QFORM_ERROR</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="conf_8php-source.html#l00118">118</a> of file <a class="el" href="conf_8php-source.html">conf.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a7" doxytag="conf.php::UI_QFORM_REQUIRED"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">enum <a class="el" href="conf_8php.html#a7">UI_QFORM_REQUIRED</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="conf_8php-source.html#l00116">116</a> of file <a class="el" href="conf_8php-source.html">conf.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a8" doxytag="conf.php::UI_QFORM_REQUIREDNOTE"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">enum <a class="el" href="conf_8php.html#a8">UI_QFORM_REQUIREDNOTE</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="conf_8php-source.html#l00117">117</a> of file <a class="el" href="conf_8php-source.html">conf.php</a>.    </td>
-  </tr>
-</table>
-<hr><h2>Variable Documentation</h2>
-<a class="anchor" name="a0" doxytag="conf.php::$config"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">$config          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-configuration structure: 
-<p>
-<dl>
-<dt>dsn</dt>
-<dd>datasource setting </dd>
-<dt>tblNamePrefix </dt>
-<dd>prefix for table names in the database </dd>
-<dt>authCookieName </dt>
-<dd>secret token cookie name </dd>
-<dt>storageDir </dt>
-<dd>main directory for storing binary media files </dd>
-<dt>bufferDir </dt>
-<dd>directory for temporary files </dd>
-<dt>transDir </dt>
-<dd>directory for incomplete transferred files </dd>
-<dt>accessDir </dt>
-<dd>directory for symlinks to accessed files </dd>
-<dt>storageUrlPath</dt>
-<dd>path-URL-part of storageServer base dir </dd>
-<dt>storageXMLRPC</dt>
-<dd>XMLRPC server script address relative to storageUrlPath </dd>
-<dt>storageUrlHost, storageUrlPort</dt>
-<dd>host and port of storageServer </dd>
-<dt>archiveUrlPath</dt>
-<dd>path-URL-part of archiveServer base dir </dd>
-<dt>archiveXMLRPC</dt>
-<dd>XMLRPC server script address relative to archiveUrlPath </dd>
-<dt>archiveUrlHost, archiveUrlPort</dt>
-<dd>host and port of archiveServer </dd>
-</dl>
-
-<p>
-Definition at line <a class="el" href="conf_8php-source.html#l00049">49</a> of file <a class="el" href="conf_8php-source.html">conf.php</a>.
-<p>
-Referenced by <a class="el" href="ui__browser_8class_8php-source.html#l00015">uiBrowser::uiBrowser()</a>, and <a class="el" href="ui__handler_8class_8php-source.html#l00011">uiHandler::uiHandler()</a>.    </td>
-  </tr>
-</table>
-<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/dir_000000.html b/livesupport/modules/htmlUI/doc/doxygen/html/dir_000000.html
deleted file mode 100644
index a5f4e9c74..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/dir_000000.html
+++ /dev/null
@@ -1,39 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: var/ Directory Reference</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<div class="nav">
-<a class="el" href="dir_000000.html">var</a></div>
-<h1>var Directory Reference</h1><table border="0" cellpadding="0" cellspacing="0">
-<tr><td></td></tr>
-<tr><td colspan="2"><br><h2>Directories</h2></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">directory &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="dir_000001.html">html</a></td></tr>
-
-<tr><td colspan="2"><br><h2>Files</h2></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">file &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="conf_8php.html">conf.php</a> <a href="conf_8php-source.html">[code]</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">file &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="index_8php.html">index.php</a> <a href="index_8php-source.html">[code]</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">file &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="SmartyExtensions_8inc_8php.html">SmartyExtensions.inc.php</a> <a href="SmartyExtensions_8inc_8php-source.html">[code]</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">file &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__base_8inc_8php.html">ui_base.inc.php</a> <a href="ui__base_8inc_8php-source.html">[code]</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">file &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser_8class_8php.html">ui_browser.class.php</a> <a href="ui__browser_8class_8php-source.html">[code]</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">file &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser__init_8php.html">ui_browser_init.php</a> <a href="ui__browser__init_8php-source.html">[code]</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">file &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__fmask_8inc_8php.html">ui_fmask.inc.php</a> <a href="ui__fmask_8inc_8php-source.html">[code]</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">file &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8class_8php.html">ui_handler.class.php</a> <a href="ui__handler_8class_8php-source.html">[code]</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">file &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler__init_8php.html">ui_handler_init.php</a> <a href="ui__handler__init_8php-source.html">[code]</a></td></tr>
-
-</table>
-<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/dir_000001.html b/livesupport/modules/htmlUI/doc/doxygen/html/dir_000001.html
deleted file mode 100644
index b8952f801..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/dir_000001.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: var/html/ Directory Reference</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<div class="nav">
-<a class="el" href="dir_000000.html">var</a>&nbsp;/&nbsp;<a class="el" href="dir_000001.html">html</a></div>
-<h1>html Directory Reference</h1><table border="0" cellpadding="0" cellspacing="0">
-<tr><td></td></tr>
-<tr><td colspan="2"><br><h2>Files</h2></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">file &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="html_2index_8php.html">html/index.php</a> <a href="html_2index_8php-source.html">[code]</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">file &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser_8php.html">ui_browser.php</a> <a href="ui__browser_8php-source.html">[code]</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">file &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html">ui_handler.php</a> <a href="ui__handler_8php-source.html">[code]</a></td></tr>
-
-</table>
-<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/dirs.html b/livesupport/modules/htmlUI/doc/doxygen/html/dirs.html
deleted file mode 100644
index 46cb033e7..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/dirs.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: Directory Hierarchy</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindexHL" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<h1>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module Directories</h1>This directory hierarchy is sorted roughly, but not completely, alphabetically:<ul>
-<li><a class="el" href="dir_000000.html">var</a>
-<ul>
-<li><a class="el" href="dir_000001.html">html</a>
-</ul>
-</ul>
-<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/doxygen.css b/livesupport/modules/htmlUI/doc/doxygen/html/doxygen.css
deleted file mode 100644
index e5272cd12..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/doxygen.css
+++ /dev/null
@@ -1,297 +0,0 @@
-BODY,H1,H2,H3,H4,H5,H6,P,CENTER,TD,TH,UL,DL,DIV {
-	font-family: Geneva, Arial, Helvetica, sans-serif;
-}
-BODY,TD {
-       font-size: 90%;
-}
-H1 {
-	text-align: center;
-       font-size: 160%;
-}
-H2 {
-       font-size: 120%;
-}
-H3 {
-       font-size: 110%;
-}
-CAPTION { font-weight: bold }
-DIV.qindex {
-	width: 100%;
-	background-color: #eeeeff;
-	border: 1px solid #b0b0b0;
-	text-align: center;
-	margin: 2px;
-	padding: 2px;
-	line-height: 140%;
-}
-DIV.nav {
-	width: 100%;
-	background-color: #eeeeff;
-	border: 1px solid #b0b0b0;
-	text-align: center;
-	margin: 2px;
-	padding: 2px;
-	line-height: 140%;
-}
-A.qindex {
-       text-decoration: none;
-       font-weight: bold;
-       color: #1A419D;
-}
-A.qindex:visited {
-       text-decoration: none;
-       font-weight: bold;
-       color: #1A419D
-}
-A.qindex:hover {
-	text-decoration: none;
-	background-color: #ddddff;
-}
-A.qindexHL {
-	text-decoration: none;
-	font-weight: bold;
-	background-color: #6666cc;
-	color: #ffffff;
-	border: 1px double #9295C2;
-}
-A.qindexHL:hover {
-	text-decoration: none;
-	background-color: #6666cc;
-	color: #ffffff;
-}
-A.qindexHL:visited { text-decoration: none; background-color: #6666cc; color: #ffffff }
-A.el { text-decoration: none; font-weight: bold }
-A.elRef { font-weight: bold }
-A.code:link { text-decoration: none; font-weight: normal; color: #0000FF}
-A.code:visited { text-decoration: none; font-weight: normal; color: #0000FF}
-A.codeRef:link { font-weight: normal; color: #0000FF}
-A.codeRef:visited { font-weight: normal; color: #0000FF}
-A:hover { text-decoration: none; background-color: #f2f2ff }
-DL.el { margin-left: -1cm }
-.fragment {
-       font-family: monospace
-}
-PRE.fragment {
-	border: 1px solid #CCCCCC;
-	background-color: #f5f5f5;
-	margin-top: 4px;
-	margin-bottom: 4px;
-	margin-left: 2px;
-	margin-right: 8px;
-	padding-left: 6px;
-	padding-right: 6px;
-	padding-top: 4px;
-	padding-bottom: 4px;
-}
-DIV.ah { background-color: black; font-weight: bold; color: #ffffff; margin-bottom: 3px; margin-top: 3px }
-TD.md { background-color: #F4F4FB; font-weight: bold; }
-TD.mdPrefix {
-       background-color: #F4F4FB;
-       color: #606060;
-	font-size: 80%;
-}
-TD.mdname1 { background-color: #F4F4FB; font-weight: bold; color: #602020; }
-TD.mdname { background-color: #F4F4FB; font-weight: bold; color: #602020; width: 600px; }
-DIV.groupHeader {
-       margin-left: 16px;
-       margin-top: 12px;
-       margin-bottom: 6px;
-       font-weight: bold;
-}
-DIV.groupText { margin-left: 16px; font-style: italic; font-size: 90% }
-BODY {
-	background: white;
-	color: black;
-	margin-right: 20px;
-	margin-left: 20px;
-}
-TD.indexkey {
-	background-color: #eeeeff;
-	font-weight: bold;
-	padding-right  : 10px;
-	padding-top    : 2px;
-	padding-left   : 10px;
-	padding-bottom : 2px;
-	margin-left    : 0px;
-	margin-right   : 0px;
-	margin-top     : 2px;
-	margin-bottom  : 2px;
-	border: 1px solid #CCCCCC;
-}
-TD.indexvalue {
-	background-color: #eeeeff;
-	font-style: italic;
-	padding-right  : 10px;
-	padding-top    : 2px;
-	padding-left   : 10px;
-	padding-bottom : 2px;
-	margin-left    : 0px;
-	margin-right   : 0px;
-	margin-top     : 2px;
-	margin-bottom  : 2px;
-	border: 1px solid #CCCCCC;
-}
-TR.memlist {
-   background-color: #f0f0f0; 
-}
-P.formulaDsp { text-align: center; }
-IMG.formulaDsp { }
-IMG.formulaInl { vertical-align: middle; }
-SPAN.keyword       { color: #008000 }
-SPAN.keywordtype   { color: #604020 }
-SPAN.keywordflow   { color: #e08000 }
-SPAN.comment       { color: #800000 }
-SPAN.preprocessor  { color: #806020 }
-SPAN.stringliteral { color: #002080 }
-SPAN.charliteral   { color: #008080 }
-.mdTable {
-	border: 1px solid #868686;
-	background-color: #F4F4FB;
-}
-.mdRow {
-	padding: 8px 10px;
-}
-.mdescLeft {
-       padding: 0px 8px 4px 8px;
-	font-size: 80%;
-	font-style: italic;
-	background-color: #FAFAFA;
-	border-top: 1px none #E0E0E0;
-	border-right: 1px none #E0E0E0;
-	border-bottom: 1px none #E0E0E0;
-	border-left: 1px none #E0E0E0;
-	margin: 0px;
-}
-.mdescRight {
-       padding: 0px 8px 4px 8px;
-	font-size: 80%;
-	font-style: italic;
-	background-color: #FAFAFA;
-	border-top: 1px none #E0E0E0;
-	border-right: 1px none #E0E0E0;
-	border-bottom: 1px none #E0E0E0;
-	border-left: 1px none #E0E0E0;
-	margin: 0px;
-}
-.memItemLeft {
-	padding: 1px 0px 0px 8px;
-	margin: 4px;
-	border-top-width: 1px;
-	border-right-width: 1px;
-	border-bottom-width: 1px;
-	border-left-width: 1px;
-	border-top-color: #E0E0E0;
-	border-right-color: #E0E0E0;
-	border-bottom-color: #E0E0E0;
-	border-left-color: #E0E0E0;
-	border-top-style: solid;
-	border-right-style: none;
-	border-bottom-style: none;
-	border-left-style: none;
-	background-color: #FAFAFA;
-	font-size: 80%;
-}
-.memItemRight {
-	padding: 1px 8px 0px 8px;
-	margin: 4px;
-	border-top-width: 1px;
-	border-right-width: 1px;
-	border-bottom-width: 1px;
-	border-left-width: 1px;
-	border-top-color: #E0E0E0;
-	border-right-color: #E0E0E0;
-	border-bottom-color: #E0E0E0;
-	border-left-color: #E0E0E0;
-	border-top-style: solid;
-	border-right-style: none;
-	border-bottom-style: none;
-	border-left-style: none;
-	background-color: #FAFAFA;
-	font-size: 80%;
-}
-.memTemplItemLeft {
-	padding: 1px 0px 0px 8px;
-	margin: 4px;
-	border-top-width: 1px;
-	border-right-width: 1px;
-	border-bottom-width: 1px;
-	border-left-width: 1px;
-	border-top-color: #E0E0E0;
-	border-right-color: #E0E0E0;
-	border-bottom-color: #E0E0E0;
-	border-left-color: #E0E0E0;
-	border-top-style: none;
-	border-right-style: none;
-	border-bottom-style: none;
-	border-left-style: none;
-	background-color: #FAFAFA;
-	font-size: 80%;
-}
-.memTemplItemRight {
-	padding: 1px 8px 0px 8px;
-	margin: 4px;
-	border-top-width: 1px;
-	border-right-width: 1px;
-	border-bottom-width: 1px;
-	border-left-width: 1px;
-	border-top-color: #E0E0E0;
-	border-right-color: #E0E0E0;
-	border-bottom-color: #E0E0E0;
-	border-left-color: #E0E0E0;
-	border-top-style: none;
-	border-right-style: none;
-	border-bottom-style: none;
-	border-left-style: none;
-	background-color: #FAFAFA;
-	font-size: 80%;
-}
-.memTemplParams {
-	padding: 1px 0px 0px 8px;
-	margin: 4px;
-	border-top-width: 1px;
-	border-right-width: 1px;
-	border-bottom-width: 1px;
-	border-left-width: 1px;
-	border-top-color: #E0E0E0;
-	border-right-color: #E0E0E0;
-	border-bottom-color: #E0E0E0;
-	border-left-color: #E0E0E0;
-	border-top-style: solid;
-	border-right-style: none;
-	border-bottom-style: none;
-	border-left-style: none;
-       color: #606060;
-	background-color: #FAFAFA;
-	font-size: 80%;
-}
-.search     { color: #003399;
-              font-weight: bold;
-}
-FORM.search {
-              margin-bottom: 0px;
-              margin-top: 0px;
-}
-INPUT.search { font-size: 75%;
-               color: #000080;
-               font-weight: normal;
-               background-color: #eeeeff;
-}
-TD.tiny      { font-size: 75%;
-}
-a {
-	color: #252E78;
-}
-a:visited {
-	color: #3D2185;
-}
-.dirtab { padding: 4px;
-          border-collapse: collapse;
-          border: 1px solid #b0b0b0;
-}
-TH.dirtab { background: #eeeeff;
-            font-weight: bold;
-}
-HR { height: 1px;
-     border: none;
-     border-top: 1px solid black;
-}
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/doxygen.png b/livesupport/modules/htmlUI/doc/doxygen/html/doxygen.png
deleted file mode 100644
index f0a274bba..000000000
Binary files a/livesupport/modules/htmlUI/doc/doxygen/html/doxygen.png and /dev/null differ
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/files.html b/livesupport/modules/htmlUI/doc/doxygen/html/files.html
deleted file mode 100644
index c4bfdf393..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/files.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: File Index</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindexHL" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<h1>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module File List</h1>Here is a list of all files with brief descriptions:<table>
-  <tr><td class="indexkey"><a class="el" href="conf_8php.html">conf.php</a> <a href="conf_8php-source.html">[code]</a></td><td class="indexvalue"></td></tr>
-  <tr><td class="indexkey"><a class="el" href="index_8php.html">index.php</a> <a href="index_8php-source.html">[code]</a></td><td class="indexvalue"></td></tr>
-  <tr><td class="indexkey"><a class="el" href="html_2index_8php.html">html/index.php</a> <a href="html_2index_8php-source.html">[code]</a></td><td class="indexvalue"></td></tr>
-  <tr><td class="indexkey"><a class="el" href="SmartyExtensions_8inc_8php.html">SmartyExtensions.inc.php</a> <a href="SmartyExtensions_8inc_8php-source.html">[code]</a></td><td class="indexvalue"></td></tr>
-  <tr><td class="indexkey"><a class="el" href="ui__base_8inc_8php.html">ui_base.inc.php</a> <a href="ui__base_8inc_8php-source.html">[code]</a></td><td class="indexvalue"></td></tr>
-  <tr><td class="indexkey"><a class="el" href="ui__browser_8class_8php.html">ui_browser.class.php</a> <a href="ui__browser_8class_8php-source.html">[code]</a></td><td class="indexvalue"></td></tr>
-  <tr><td class="indexkey"><a class="el" href="ui__browser_8php.html">ui_browser.php</a> <a href="ui__browser_8php-source.html">[code]</a></td><td class="indexvalue"></td></tr>
-  <tr><td class="indexkey"><a class="el" href="ui__browser__init_8php.html">ui_browser_init.php</a> <a href="ui__browser__init_8php-source.html">[code]</a></td><td class="indexvalue"></td></tr>
-  <tr><td class="indexkey"><a class="el" href="ui__fmask_8inc_8php.html">ui_fmask.inc.php</a> <a href="ui__fmask_8inc_8php-source.html">[code]</a></td><td class="indexvalue"></td></tr>
-  <tr><td class="indexkey"><a class="el" href="ui__handler_8class_8php.html">ui_handler.class.php</a> <a href="ui__handler_8class_8php-source.html">[code]</a></td><td class="indexvalue"></td></tr>
-  <tr><td class="indexkey"><a class="el" href="ui__handler_8php.html">ui_handler.php</a> <a href="ui__handler_8php-source.html">[code]</a></td><td class="indexvalue"></td></tr>
-  <tr><td class="indexkey"><a class="el" href="ui__handler__init_8php.html">ui_handler_init.php</a> <a href="ui__handler__init_8php-source.html">[code]</a></td><td class="indexvalue"></td></tr>
-</table>
-<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/functions.html b/livesupport/modules/htmlUI/doc/doxygen/html/functions.html
deleted file mode 100644
index 1006d4015..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/functions.html
+++ /dev/null
@@ -1,88 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: Class Members</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindexHL" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<div class="qindex"><a class="qindexHL" href="functions.html">All</a> | <a class="qindex" href="functions_func.html">Functions</a> | <a class="qindex" href="functions_vars.html">Variables</a></div>
-<div class="qindex"><a class="qindex" href="#index_$">$</a> | <a class="qindex" href="#index__">_</a> | <a class="qindex" href="#index_a">a</a> | <a class="qindex" href="#index_c">c</a> | <a class="qindex" href="#index_d">d</a> | <a class="qindex" href="#index_g">g</a> | <a class="qindex" href="#index_l">l</a> | <a class="qindex" href="#index_m">m</a> | <a class="qindex" href="#index_n">n</a> | <a class="qindex" href="#index_p">p</a> | <a class="qindex" href="#index_r">r</a> | <a class="qindex" href="#index_s">s</a> | <a class="qindex" href="#index_t">t</a> | <a class="qindex" href="#index_u">u</a></div>
-
-<p>
-
-<p>
-Here is a list of all class members with links to the classes they belong to:<h3><a class="anchor" name="index_$">- $ -</a></h3><ul>
-<li>$alertMsg
-: <a class="el" href="classuiHandler.html#o1">uiHandler</a>, <a class="el" href="classuiBrowser.html#o0">uiBrowser</a><li>$redirUrl
-: <a class="el" href="classuiHandler.html#o0">uiHandler</a></ul>
-<h3><a class="anchor" name="index__">- _ -</a></h3><ul>
-<li>_parseArr2Form()
-: <a class="el" href="classuiBase.html#a1">uiBase</a><li>_validateForm()
-: <a class="el" href="classuiHandler.html#a20">uiHandler</a></ul>
-<h3><a class="anchor" name="index_a">- a -</a></h3><ul>
-<li>addPerm()
-: <a class="el" href="classuiHandler.html#a15">uiHandler</a><li>addSubj()
-: <a class="el" href="classuiHandler.html#a12">uiHandler</a><li>addSubj2Group()
-: <a class="el" href="classuiHandler.html#a17">uiHandler</a><li>alertMsg()
-: <a class="el" href="classuiBrowser.html#a1">uiBrowser</a></ul>
-<h3><a class="anchor" name="index_c">- c -</a></h3><ul>
-<li>copy()
-: <a class="el" href="classuiHandler.html#a7">uiHandler</a></ul>
-<h3><a class="anchor" name="index_d">- d -</a></h3><ul>
-<li>delete()
-: <a class="el" href="classuiHandler.html#a8">uiHandler</a></ul>
-<h3><a class="anchor" name="index_g">- g -</a></h3><ul>
-<li>getAddSubjectForm()
-: <a class="el" href="classuiBrowser.html#a8">uiBrowser</a><li>getChangePasswdForm()
-: <a class="el" href="classuiBrowser.html#a9">uiBrowser</a><li>getFile()
-: <a class="el" href="classuiHandler.html#a9">uiHandler</a>, <a class="el" href="classuiBrowser.html#a15">uiBrowser</a><li>getGroups()
-: <a class="el" href="classuiBrowser.html#a10">uiBrowser</a><li>getInfo()
-: <a class="el" href="classuiHandler.html#a11">uiHandler</a>, <a class="el" href="classuiBrowser.html#a17">uiBrowser</a><li>getMdata()
-: <a class="el" href="classuiHandler.html#a10">uiHandler</a>, <a class="el" href="classuiBrowser.html#a16">uiBrowser</a><li>getMetadataForm()
-: <a class="el" href="classuiBrowser.html#a18">uiBrowser</a><li>getNewFileData()
-: <a class="el" href="classuiBrowser.html#a13">uiBrowser</a><li>getNewFileForm()
-: <a class="el" href="classuiBrowser.html#a5">uiBrowser</a><li>getPermissions()
-: <a class="el" href="classuiBrowser.html#a12">uiBrowser</a><li>getSearchForm()
-: <a class="el" href="classuiBrowser.html#a6">uiBrowser</a><li>getSearchRes()
-: <a class="el" href="classuiBrowser.html#a14">uiBrowser</a><li>getStructure()
-: <a class="el" href="classuiBrowser.html#a4">uiBrowser</a><li>getSubj2GroupForm()
-: <a class="el" href="classuiBrowser.html#a11">uiBrowser</a><li>getSubjects()
-: <a class="el" href="classuiBrowser.html#a7">uiBrowser</a><li>getUserInfo()
-: <a class="el" href="classuiBrowser.html#a3">uiBrowser</a></ul>
-<h3><a class="anchor" name="index_l">- l -</a></h3><ul>
-<li>login()
-: <a class="el" href="classuiHandler.html#a1">uiHandler</a><li>loginform()
-: <a class="el" href="classuiBrowser.html#a2">uiBrowser</a><li>logout()
-: <a class="el" href="classuiHandler.html#a2">uiHandler</a></ul>
-<h3><a class="anchor" name="index_m">- m -</a></h3><ul>
-<li>move()
-: <a class="el" href="classuiHandler.html#a6">uiHandler</a></ul>
-<h3><a class="anchor" name="index_n">- n -</a></h3><ul>
-<li>newFolder()
-: <a class="el" href="classuiHandler.html#a4">uiHandler</a></ul>
-<h3><a class="anchor" name="index_p">- p -</a></h3><ul>
-<li>passwd()
-: <a class="el" href="classuiHandler.html#a14">uiHandler</a></ul>
-<h3><a class="anchor" name="index_r">- r -</a></h3><ul>
-<li>removePerm()
-: <a class="el" href="classuiHandler.html#a16">uiHandler</a><li>removeSubj()
-: <a class="el" href="classuiHandler.html#a13">uiHandler</a><li>removeSubjFromGr()
-: <a class="el" href="classuiHandler.html#a18">uiHandler</a><li>rename()
-: <a class="el" href="classuiHandler.html#a5">uiHandler</a></ul>
-<h3><a class="anchor" name="index_s">- s -</a></h3><ul>
-<li>storeSystemPrefs()
-: <a class="el" href="classuiHandler.html#a19">uiHandler</a><li>systemPrefs()
-: <a class="el" href="classuiBrowser.html#a19">uiBrowser</a></ul>
-<h3><a class="anchor" name="index_t">- t -</a></h3><ul>
-<li>tra()
-: <a class="el" href="classuiBase.html#a0">uiBase</a></ul>
-<h3><a class="anchor" name="index_u">- u -</a></h3><ul>
-<li>uiBrowser()
-: <a class="el" href="classuiBrowser.html#a0">uiBrowser</a><li>uiHandler()
-: <a class="el" href="classuiHandler.html#a0">uiHandler</a><li>upload()
-: <a class="el" href="classuiHandler.html#a3">uiHandler</a></ul>
-<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/functions_func.html b/livesupport/modules/htmlUI/doc/doxygen/html/functions_func.html
deleted file mode 100644
index 6d666e3d9..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/functions_func.html
+++ /dev/null
@@ -1,84 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: Class Members - Functions</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindexHL" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<div class="qindex"><a class="qindex" href="functions.html">All</a> | <a class="qindexHL" href="functions_func.html">Functions</a> | <a class="qindex" href="functions_vars.html">Variables</a></div>
-<div class="qindex"><a class="qindex" href="#index__">_</a> | <a class="qindex" href="#index_a">a</a> | <a class="qindex" href="#index_c">c</a> | <a class="qindex" href="#index_d">d</a> | <a class="qindex" href="#index_g">g</a> | <a class="qindex" href="#index_l">l</a> | <a class="qindex" href="#index_m">m</a> | <a class="qindex" href="#index_n">n</a> | <a class="qindex" href="#index_p">p</a> | <a class="qindex" href="#index_r">r</a> | <a class="qindex" href="#index_s">s</a> | <a class="qindex" href="#index_t">t</a> | <a class="qindex" href="#index_u">u</a></div>
-
-<p>
-
-<p>
-<h3><a class="anchor" name="index__">- _ -</a></h3><ul>
-<li>_parseArr2Form()
-: <a class="el" href="classuiBase.html#a1">uiBase</a><li>_validateForm()
-: <a class="el" href="classuiHandler.html#a20">uiHandler</a></ul>
-<h3><a class="anchor" name="index_a">- a -</a></h3><ul>
-<li>addPerm()
-: <a class="el" href="classuiHandler.html#a15">uiHandler</a><li>addSubj()
-: <a class="el" href="classuiHandler.html#a12">uiHandler</a><li>addSubj2Group()
-: <a class="el" href="classuiHandler.html#a17">uiHandler</a><li>alertMsg()
-: <a class="el" href="classuiBrowser.html#a1">uiBrowser</a></ul>
-<h3><a class="anchor" name="index_c">- c -</a></h3><ul>
-<li>copy()
-: <a class="el" href="classuiHandler.html#a7">uiHandler</a></ul>
-<h3><a class="anchor" name="index_d">- d -</a></h3><ul>
-<li>delete()
-: <a class="el" href="classuiHandler.html#a8">uiHandler</a></ul>
-<h3><a class="anchor" name="index_g">- g -</a></h3><ul>
-<li>getAddSubjectForm()
-: <a class="el" href="classuiBrowser.html#a8">uiBrowser</a><li>getChangePasswdForm()
-: <a class="el" href="classuiBrowser.html#a9">uiBrowser</a><li>getFile()
-: <a class="el" href="classuiHandler.html#a9">uiHandler</a>, <a class="el" href="classuiBrowser.html#a15">uiBrowser</a><li>getGroups()
-: <a class="el" href="classuiBrowser.html#a10">uiBrowser</a><li>getInfo()
-: <a class="el" href="classuiHandler.html#a11">uiHandler</a>, <a class="el" href="classuiBrowser.html#a17">uiBrowser</a><li>getMdata()
-: <a class="el" href="classuiHandler.html#a10">uiHandler</a>, <a class="el" href="classuiBrowser.html#a16">uiBrowser</a><li>getMetadataForm()
-: <a class="el" href="classuiBrowser.html#a18">uiBrowser</a><li>getNewFileData()
-: <a class="el" href="classuiBrowser.html#a13">uiBrowser</a><li>getNewFileForm()
-: <a class="el" href="classuiBrowser.html#a5">uiBrowser</a><li>getPermissions()
-: <a class="el" href="classuiBrowser.html#a12">uiBrowser</a><li>getSearchForm()
-: <a class="el" href="classuiBrowser.html#a6">uiBrowser</a><li>getSearchRes()
-: <a class="el" href="classuiBrowser.html#a14">uiBrowser</a><li>getStructure()
-: <a class="el" href="classuiBrowser.html#a4">uiBrowser</a><li>getSubj2GroupForm()
-: <a class="el" href="classuiBrowser.html#a11">uiBrowser</a><li>getSubjects()
-: <a class="el" href="classuiBrowser.html#a7">uiBrowser</a><li>getUserInfo()
-: <a class="el" href="classuiBrowser.html#a3">uiBrowser</a></ul>
-<h3><a class="anchor" name="index_l">- l -</a></h3><ul>
-<li>login()
-: <a class="el" href="classuiHandler.html#a1">uiHandler</a><li>loginform()
-: <a class="el" href="classuiBrowser.html#a2">uiBrowser</a><li>logout()
-: <a class="el" href="classuiHandler.html#a2">uiHandler</a></ul>
-<h3><a class="anchor" name="index_m">- m -</a></h3><ul>
-<li>move()
-: <a class="el" href="classuiHandler.html#a6">uiHandler</a></ul>
-<h3><a class="anchor" name="index_n">- n -</a></h3><ul>
-<li>newFolder()
-: <a class="el" href="classuiHandler.html#a4">uiHandler</a></ul>
-<h3><a class="anchor" name="index_p">- p -</a></h3><ul>
-<li>passwd()
-: <a class="el" href="classuiHandler.html#a14">uiHandler</a></ul>
-<h3><a class="anchor" name="index_r">- r -</a></h3><ul>
-<li>removePerm()
-: <a class="el" href="classuiHandler.html#a16">uiHandler</a><li>removeSubj()
-: <a class="el" href="classuiHandler.html#a13">uiHandler</a><li>removeSubjFromGr()
-: <a class="el" href="classuiHandler.html#a18">uiHandler</a><li>rename()
-: <a class="el" href="classuiHandler.html#a5">uiHandler</a></ul>
-<h3><a class="anchor" name="index_s">- s -</a></h3><ul>
-<li>storeSystemPrefs()
-: <a class="el" href="classuiHandler.html#a19">uiHandler</a><li>systemPrefs()
-: <a class="el" href="classuiBrowser.html#a19">uiBrowser</a></ul>
-<h3><a class="anchor" name="index_t">- t -</a></h3><ul>
-<li>tra()
-: <a class="el" href="classuiBase.html#a0">uiBase</a></ul>
-<h3><a class="anchor" name="index_u">- u -</a></h3><ul>
-<li>uiBrowser()
-: <a class="el" href="classuiBrowser.html#a0">uiBrowser</a><li>uiHandler()
-: <a class="el" href="classuiHandler.html#a0">uiHandler</a><li>upload()
-: <a class="el" href="classuiHandler.html#a3">uiHandler</a></ul>
-<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/functions_vars.html b/livesupport/modules/htmlUI/doc/doxygen/html/functions_vars.html
deleted file mode 100644
index f9903d818..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/functions_vars.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: Class Members - Variables</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindexHL" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<div class="qindex"><a class="qindex" href="functions.html">All</a> | <a class="qindex" href="functions_func.html">Functions</a> | <a class="qindexHL" href="functions_vars.html">Variables</a></div>
-
-<p>
-<ul>
-<li>$alertMsg
-: <a class="el" href="classuiHandler.html#o1">uiHandler</a>, <a class="el" href="classuiBrowser.html#o0">uiBrowser</a><li>$redirUrl
-: <a class="el" href="classuiHandler.html#o0">uiHandler</a></ul>
-<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/globals.html b/livesupport/modules/htmlUI/doc/doxygen/html/globals.html
deleted file mode 100644
index dd3c8f3de..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/globals.html
+++ /dev/null
@@ -1,103 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: File Members</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindexHL" href="globals.html">File&nbsp;Members</a></div>
-<div class="qindex"><a class="qindexHL" href="globals.html">All</a> | <a class="qindex" href="globals_func.html">Functions</a> | <a class="qindex" href="globals_vars.html">Variables</a> | <a class="qindex" href="globals_enum.html">Enumerations</a></div>
-<div class="qindex"><a class="qindex" href="#index_$">$</a> | <a class="qindex" href="#index__">_</a> | <a class="qindex" href="#index_a">a</a> | <a class="qindex" href="#index_b">b</a> | <a class="qindex" href="#index_c">c</a> | <a class="qindex" href="#index_d">d</a> | <a class="qindex" href="#index_e">e</a> | <a class="qindex" href="#index_g">g</a> | <a class="qindex" href="#index_i">i</a> | <a class="qindex" href="#index_l">l</a> | <a class="qindex" href="#index_m">m</a> | <a class="qindex" href="#index_n">n</a> | <a class="qindex" href="#index_p">p</a> | <a class="qindex" href="#index_r">r</a> | <a class="qindex" href="#index_s">s</a> | <a class="qindex" href="#index_u">u</a></div>
-
-<p>
-
-<p>
-Here is a list of all file members with links to the files they belong to:<h3><a class="anchor" name="index_$">- $ -</a></h3><ul>
-<li>$_FILES
-: <a class="el" href="ui__handler_8php.html#a3">ui_handler.php</a><li>$_REQUEST
-: <a class="el" href="ui__handler_8php.html#a11">ui_handler.php</a><li>$config
-: <a class="el" href="conf_8php.html#a0">conf.php</a><li>$Smarty
-: <a class="el" href="ui__browser__init_8php.html#a0">ui_browser_init.php</a><li>$ui_fmask
-: <a class="el" href="ui__handler_8php.html#a5">ui_handler.php</a>, <a class="el" href="ui__fmask_8inc_8php.html#a0">ui_fmask.inc.php</a><li>$uiBase
-: <a class="el" href="ui__browser__init_8php.html#a2">ui_browser_init.php</a><li>$uiBrowser
-: <a class="el" href="ui__browser__init_8php.html#a1">ui_browser_init.php</a><li>$uiHandler
-: <a class="el" href="ui__handler__init_8php.html#a0">ui_handler_init.php</a></ul>
-<h3><a class="anchor" name="index__">- _ -</a></h3><ul>
-<li>__pad0__
-: <a class="el" href="ui__handler_8php.html#a21">ui_handler.php</a></ul>
-<h3><a class="anchor" name="index_a">- a -</a></h3><ul>
-<li>addGroup
-: <a class="el" href="ui__handler_8php.html#a13">ui_handler.php</a>, <a class="el" href="ui__browser_8php.html#a6">ui_browser.php</a><li>addPerm
-: <a class="el" href="ui__handler_8php.html#a16">ui_handler.php</a><li>addSubj2Group
-: <a class="el" href="ui__handler_8php.html#a18">ui_handler.php</a><li>addUser
-: <a class="el" href="ui__handler_8php.html#a12">ui_handler.php</a></ul>
-<h3><a class="anchor" name="index_b">- b -</a></h3><ul>
-<li>break
-: <a class="el" href="ui__handler_8php.html#a0">ui_handler.php</a>, <a class="el" href="ui__browser_8php.html#a0">ui_browser.php</a></ul>
-<h3><a class="anchor" name="index_c">- c -</a></h3><ul>
-<li>changePasswd
-: <a class="el" href="ui__handler_8php.html#a15">ui_handler.php</a><li>copy
-: <a class="el" href="ui__handler_8php.html#a9">ui_handler.php</a></ul>
-<h3><a class="anchor" name="index_d">- d -</a></h3><ul>
-<li>delete
-: <a class="el" href="ui__handler_8php.html#a10">ui_handler.php</a></ul>
-<h3><a class="anchor" name="index_e">- e -</a></h3><ul>
-<li>editMetaData
-: <a class="el" href="ui__browser_8php.html#a12">ui_browser.php</a><li>errCallBack()
-: <a class="el" href="ui__base_8inc_8php.html#a0">ui_base.inc.php</a></ul>
-<h3><a class="anchor" name="index_g">- g -</a></h3><ul>
-<li>getFile
-: <a class="el" href="ui__browser_8php.html#a9">ui_browser.php</a><li>getInfo
-: <a class="el" href="ui__browser_8php.html#a11">ui_browser.php</a><li>getMdata
-: <a class="el" href="ui__browser_8php.html#a10">ui_browser.php</a><li>groups
-: <a class="el" href="ui__browser_8php.html#a8">ui_browser.php</a></ul>
-<h3><a class="anchor" name="index_i">- i -</a></h3><ul>
-<li>id
-: <a class="el" href="ui__handler_8php.html#a4">ui_handler.php</a></ul>
-<h3><a class="anchor" name="index_l">- l -</a></h3><ul>
-<li>logout
-: <a class="el" href="ui__handler_8php.html#a1">ui_handler.php</a></ul>
-<h3><a class="anchor" name="index_m">- m -</a></h3><ul>
-<li>move
-: <a class="el" href="ui__handler_8php.html#a8">ui_handler.php</a></ul>
-<h3><a class="anchor" name="index_n">- n -</a></h3><ul>
-<li>newfile
-: <a class="el" href="ui__browser_8php.html#a2">ui_browser.php</a><li>newFolder
-: <a class="el" href="ui__handler_8php.html#a6">ui_handler.php</a></ul>
-<h3><a class="anchor" name="index_p">- p -</a></h3><ul>
-<li>passwd
-: <a class="el" href="ui__browser_8php.html#a7">ui_browser.php</a><li>permissions
-: <a class="el" href="ui__browser_8php.html#a1">ui_browser.php</a></ul>
-<h3><a class="anchor" name="index_r">- r -</a></h3><ul>
-<li>removePerm
-: <a class="el" href="ui__handler_8php.html#a17">ui_handler.php</a><li>removeSubj
-: <a class="el" href="ui__handler_8php.html#a14">ui_handler.php</a><li>removeSubjFromGr
-: <a class="el" href="ui__handler_8php.html#a19">ui_handler.php</a><li>rename
-: <a class="el" href="ui__handler_8php.html#a7">ui_handler.php</a></ul>
-<h3><a class="anchor" name="index_s">- s -</a></h3><ul>
-<li>S_htmlspecialchars()
-: <a class="el" href="SmartyExtensions_8inc_8php.html#a2">SmartyExtensions.inc.php</a><li>S_str_repeat()
-: <a class="el" href="SmartyExtensions_8inc_8php.html#a0">SmartyExtensions.inc.php</a><li>S_system()
-: <a class="el" href="SmartyExtensions_8inc_8php.html#a3">SmartyExtensions.inc.php</a><li>S_tra()
-: <a class="el" href="SmartyExtensions_8inc_8php.html#a4">SmartyExtensions.inc.php</a><li>S_urlencode()
-: <a class="el" href="SmartyExtensions_8inc_8php.html#a1">SmartyExtensions.inc.php</a><li>search
-: <a class="el" href="ui__browser_8php.html#a4">ui_browser.php</a><li>sform
-: <a class="el" href="ui__browser_8php.html#a3">ui_browser.php</a><li>subjects
-: <a class="el" href="ui__browser_8php.html#a5">ui_browser.php</a><li>systemPrefs
-: <a class="el" href="ui__handler_8php.html#a20">ui_handler.php</a>, <a class="el" href="ui__browser_8php.html#a13">ui_browser.php</a></ul>
-<h3><a class="anchor" name="index_u">- u -</a></h3><ul>
-<li>UI_BROWSER
-: <a class="el" href="conf_8php.html#a2">conf.php</a><li>UI_FORM_STANDARD_METHOD
-: <a class="el" href="conf_8php.html#a3">conf.php</a><li>UI_HANDLER
-: <a class="el" href="conf_8php.html#a1">conf.php</a><li>UI_INPUT_GBOBJECT_MAXFILESIZE
-: <a class="el" href="conf_8php.html#a6">conf.php</a><li>UI_INPUT_STANDARD_MAXLENGTH
-: <a class="el" href="conf_8php.html#a5">conf.php</a><li>UI_INPUT_STANDARD_SIZE
-: <a class="el" href="conf_8php.html#a4">conf.php</a><li>UI_QFORM_ERROR
-: <a class="el" href="conf_8php.html#a9">conf.php</a><li>UI_QFORM_REQUIRED
-: <a class="el" href="conf_8php.html#a7">conf.php</a><li>UI_QFORM_REQUIREDNOTE
-: <a class="el" href="conf_8php.html#a8">conf.php</a><li>upload
-: <a class="el" href="ui__handler_8php.html#a2">ui_handler.php</a></ul>
-<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/globals_enum.html b/livesupport/modules/htmlUI/doc/doxygen/html/globals_enum.html
deleted file mode 100644
index 6234836f3..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/globals_enum.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: File Members - Enumerations</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindexHL" href="globals.html">File&nbsp;Members</a></div>
-<div class="qindex"><a class="qindex" href="globals.html">All</a> | <a class="qindex" href="globals_func.html">Functions</a> | <a class="qindex" href="globals_vars.html">Variables</a> | <a class="qindexHL" href="globals_enum.html">Enumerations</a></div>
-
-<p>
-<ul>
-<li>UI_BROWSER
-: <a class="el" href="conf_8php.html#a2">conf.php</a><li>UI_FORM_STANDARD_METHOD
-: <a class="el" href="conf_8php.html#a3">conf.php</a><li>UI_HANDLER
-: <a class="el" href="conf_8php.html#a1">conf.php</a><li>UI_INPUT_GBOBJECT_MAXFILESIZE
-: <a class="el" href="conf_8php.html#a6">conf.php</a><li>UI_INPUT_STANDARD_MAXLENGTH
-: <a class="el" href="conf_8php.html#a5">conf.php</a><li>UI_INPUT_STANDARD_SIZE
-: <a class="el" href="conf_8php.html#a4">conf.php</a><li>UI_QFORM_ERROR
-: <a class="el" href="conf_8php.html#a9">conf.php</a><li>UI_QFORM_REQUIRED
-: <a class="el" href="conf_8php.html#a7">conf.php</a><li>UI_QFORM_REQUIREDNOTE
-: <a class="el" href="conf_8php.html#a8">conf.php</a></ul>
-<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/globals_func.html b/livesupport/modules/htmlUI/doc/doxygen/html/globals_func.html
deleted file mode 100644
index 828412468..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/globals_func.html
+++ /dev/null
@@ -1,23 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: File Members - Functions</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindexHL" href="globals.html">File&nbsp;Members</a></div>
-<div class="qindex"><a class="qindex" href="globals.html">All</a> | <a class="qindexHL" href="globals_func.html">Functions</a> | <a class="qindex" href="globals_vars.html">Variables</a> | <a class="qindex" href="globals_enum.html">Enumerations</a></div>
-
-<p>
-<ul>
-<li>errCallBack()
-: <a class="el" href="ui__base_8inc_8php.html#a0">ui_base.inc.php</a><li>S_htmlspecialchars()
-: <a class="el" href="SmartyExtensions_8inc_8php.html#a2">SmartyExtensions.inc.php</a><li>S_str_repeat()
-: <a class="el" href="SmartyExtensions_8inc_8php.html#a0">SmartyExtensions.inc.php</a><li>S_system()
-: <a class="el" href="SmartyExtensions_8inc_8php.html#a3">SmartyExtensions.inc.php</a><li>S_tra()
-: <a class="el" href="SmartyExtensions_8inc_8php.html#a4">SmartyExtensions.inc.php</a><li>S_urlencode()
-: <a class="el" href="SmartyExtensions_8inc_8php.html#a1">SmartyExtensions.inc.php</a></ul>
-<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/globals_vars.html b/livesupport/modules/htmlUI/doc/doxygen/html/globals_vars.html
deleted file mode 100644
index 24f84ae29..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/globals_vars.html
+++ /dev/null
@@ -1,88 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: File Members - Variables</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindexHL" href="globals.html">File&nbsp;Members</a></div>
-<div class="qindex"><a class="qindex" href="globals.html">All</a> | <a class="qindex" href="globals_func.html">Functions</a> | <a class="qindexHL" href="globals_vars.html">Variables</a> | <a class="qindex" href="globals_enum.html">Enumerations</a></div>
-<div class="qindex"><a class="qindex" href="#index_$">$</a> | <a class="qindex" href="#index__">_</a> | <a class="qindex" href="#index_a">a</a> | <a class="qindex" href="#index_b">b</a> | <a class="qindex" href="#index_c">c</a> | <a class="qindex" href="#index_d">d</a> | <a class="qindex" href="#index_e">e</a> | <a class="qindex" href="#index_g">g</a> | <a class="qindex" href="#index_i">i</a> | <a class="qindex" href="#index_l">l</a> | <a class="qindex" href="#index_m">m</a> | <a class="qindex" href="#index_n">n</a> | <a class="qindex" href="#index_p">p</a> | <a class="qindex" href="#index_r">r</a> | <a class="qindex" href="#index_s">s</a> | <a class="qindex" href="#index_u">u</a></div>
-
-<p>
-
-<p>
-<h3><a class="anchor" name="index_$">- $ -</a></h3><ul>
-<li>$_FILES
-: <a class="el" href="ui__handler_8php.html#a3">ui_handler.php</a><li>$_REQUEST
-: <a class="el" href="ui__handler_8php.html#a11">ui_handler.php</a><li>$config
-: <a class="el" href="conf_8php.html#a0">conf.php</a><li>$Smarty
-: <a class="el" href="ui__browser__init_8php.html#a0">ui_browser_init.php</a><li>$ui_fmask
-: <a class="el" href="ui__handler_8php.html#a5">ui_handler.php</a>, <a class="el" href="ui__fmask_8inc_8php.html#a0">ui_fmask.inc.php</a><li>$uiBase
-: <a class="el" href="ui__browser__init_8php.html#a2">ui_browser_init.php</a><li>$uiBrowser
-: <a class="el" href="ui__browser__init_8php.html#a1">ui_browser_init.php</a><li>$uiHandler
-: <a class="el" href="ui__handler__init_8php.html#a0">ui_handler_init.php</a></ul>
-<h3><a class="anchor" name="index__">- _ -</a></h3><ul>
-<li>__pad0__
-: <a class="el" href="ui__handler_8php.html#a21">ui_handler.php</a></ul>
-<h3><a class="anchor" name="index_a">- a -</a></h3><ul>
-<li>addGroup
-: <a class="el" href="ui__handler_8php.html#a13">ui_handler.php</a>, <a class="el" href="ui__browser_8php.html#a6">ui_browser.php</a><li>addPerm
-: <a class="el" href="ui__handler_8php.html#a16">ui_handler.php</a><li>addSubj2Group
-: <a class="el" href="ui__handler_8php.html#a18">ui_handler.php</a><li>addUser
-: <a class="el" href="ui__handler_8php.html#a12">ui_handler.php</a></ul>
-<h3><a class="anchor" name="index_b">- b -</a></h3><ul>
-<li>break
-: <a class="el" href="ui__handler_8php.html#a0">ui_handler.php</a>, <a class="el" href="ui__browser_8php.html#a0">ui_browser.php</a></ul>
-<h3><a class="anchor" name="index_c">- c -</a></h3><ul>
-<li>changePasswd
-: <a class="el" href="ui__handler_8php.html#a15">ui_handler.php</a><li>copy
-: <a class="el" href="ui__handler_8php.html#a9">ui_handler.php</a></ul>
-<h3><a class="anchor" name="index_d">- d -</a></h3><ul>
-<li>delete
-: <a class="el" href="ui__handler_8php.html#a10">ui_handler.php</a></ul>
-<h3><a class="anchor" name="index_e">- e -</a></h3><ul>
-<li>editMetaData
-: <a class="el" href="ui__browser_8php.html#a12">ui_browser.php</a></ul>
-<h3><a class="anchor" name="index_g">- g -</a></h3><ul>
-<li>getFile
-: <a class="el" href="ui__browser_8php.html#a9">ui_browser.php</a><li>getInfo
-: <a class="el" href="ui__browser_8php.html#a11">ui_browser.php</a><li>getMdata
-: <a class="el" href="ui__browser_8php.html#a10">ui_browser.php</a><li>groups
-: <a class="el" href="ui__browser_8php.html#a8">ui_browser.php</a></ul>
-<h3><a class="anchor" name="index_i">- i -</a></h3><ul>
-<li>id
-: <a class="el" href="ui__handler_8php.html#a4">ui_handler.php</a></ul>
-<h3><a class="anchor" name="index_l">- l -</a></h3><ul>
-<li>logout
-: <a class="el" href="ui__handler_8php.html#a1">ui_handler.php</a></ul>
-<h3><a class="anchor" name="index_m">- m -</a></h3><ul>
-<li>move
-: <a class="el" href="ui__handler_8php.html#a8">ui_handler.php</a></ul>
-<h3><a class="anchor" name="index_n">- n -</a></h3><ul>
-<li>newfile
-: <a class="el" href="ui__browser_8php.html#a2">ui_browser.php</a><li>newFolder
-: <a class="el" href="ui__handler_8php.html#a6">ui_handler.php</a></ul>
-<h3><a class="anchor" name="index_p">- p -</a></h3><ul>
-<li>passwd
-: <a class="el" href="ui__browser_8php.html#a7">ui_browser.php</a><li>permissions
-: <a class="el" href="ui__browser_8php.html#a1">ui_browser.php</a></ul>
-<h3><a class="anchor" name="index_r">- r -</a></h3><ul>
-<li>removePerm
-: <a class="el" href="ui__handler_8php.html#a17">ui_handler.php</a><li>removeSubj
-: <a class="el" href="ui__handler_8php.html#a14">ui_handler.php</a><li>removeSubjFromGr
-: <a class="el" href="ui__handler_8php.html#a19">ui_handler.php</a><li>rename
-: <a class="el" href="ui__handler_8php.html#a7">ui_handler.php</a></ul>
-<h3><a class="anchor" name="index_s">- s -</a></h3><ul>
-<li>search
-: <a class="el" href="ui__browser_8php.html#a4">ui_browser.php</a><li>sform
-: <a class="el" href="ui__browser_8php.html#a3">ui_browser.php</a><li>subjects
-: <a class="el" href="ui__browser_8php.html#a5">ui_browser.php</a><li>systemPrefs
-: <a class="el" href="ui__handler_8php.html#a20">ui_handler.php</a>, <a class="el" href="ui__browser_8php.html#a13">ui_browser.php</a></ul>
-<h3><a class="anchor" name="index_u">- u -</a></h3><ul>
-<li>upload
-: <a class="el" href="ui__handler_8php.html#a2">ui_handler.php</a></ul>
-<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/hierarchy.html b/livesupport/modules/htmlUI/doc/doxygen/html/hierarchy.html
deleted file mode 100644
index 7d45d2798..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/hierarchy.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: Hierarchical Index</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindexHL" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<h1>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module Class Hierarchy</h1>This inheritance list is sorted roughly, but not completely, alphabetically:<ul>
-<li><a class="el" href="classuiBase.html">uiBase</a>
-<ul>
-<li><a class="el" href="classuiBrowser.html">uiBrowser</a>
-<li><a class="el" href="classuiHandler.html">uiHandler</a>
-</ul>
-</ul>
-<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/html_2index_8php-source.html b/livesupport/modules/htmlUI/doc/doxygen/html/html_2index_8php-source.html
deleted file mode 100644
index 64a212725..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/html_2index_8php-source.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: index.php Source File</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<div class="nav">
-<a class="el" href="dir_000000.html">var</a>&nbsp;/&nbsp;<a class="el" href="dir_000001.html">html</a></div>
-<h1>html/index.php</h1><a href="html_2index_8php.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 &lt;?php
-00002 require_once dirname(__FILE__).'/../conf.php';
-00003 header('LOCATION: '.HTMLUI_BROWSER);
-00004 ?&gt;
-</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/html_2index_8php.html b/livesupport/modules/htmlUI/doc/doxygen/html/html_2index_8php.html
deleted file mode 100644
index 48c6514b6..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/html_2index_8php.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: index.php File Reference</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<div class="nav">
-<a class="el" href="dir_000000.html">var</a>&nbsp;/&nbsp;<a class="el" href="dir_000001.html">html</a></div>
-<h1>html/index.php File Reference</h1>
-<p>
-<a href="html_2index_8php-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
-<tr><td></td></tr>
-</table>
-<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/index.html b/livesupport/modules/htmlUI/doc/doxygen/html/index.html
deleted file mode 100644
index 745161c7a..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/index.html
+++ /dev/null
@@ -1,14 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: Main Page</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindexHL" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<h1>LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module Documentation</h1>
-<p>
-<h3 align="center">1.0 </h3><hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/index_8php-source.html b/livesupport/modules/htmlUI/doc/doxygen/html/index_8php-source.html
deleted file mode 100644
index 20b3eace6..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/index_8php-source.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: index.php Source File</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<div class="nav">
-<a class="el" href="dir_000000.html">var</a></div>
-<h1>index.php</h1><a href="index_8php.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 &lt;?php
-00002 require_once dirname(__FILE__).'/conf.php';
-00003 header('LOCATION: '.UI_BROWSER);
-00004 ?&gt;
-</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/index_8php.html b/livesupport/modules/htmlUI/doc/doxygen/html/index_8php.html
deleted file mode 100644
index 89f0743d6..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/index_8php.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: index.php File Reference</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<div class="nav">
-<a class="el" href="dir_000000.html">var</a></div>
-<h1>index.php File Reference</h1>
-<p>
-<a href="index_8php-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
-<tr><td></td></tr>
-</table>
-<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/ui__base_8inc_8php-source.html b/livesupport/modules/htmlUI/doc/doxygen/html/ui__base_8inc_8php-source.html
deleted file mode 100644
index 2064b470b..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/ui__base_8inc_8php-source.html
+++ /dev/null
@@ -1,92 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: ui_base.inc.php Source File</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<div class="nav">
-<a class="el" href="dir_000000.html">var</a></div>
-<h1>ui_base.inc.php</h1><a href="ui__base_8inc_8php.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 &lt;?php
-<a name="l00002"></a><a class="code" href="ui__base_8inc_8php.html#a0">00002</a> function <a class="code" href="ui__base_8inc_8php.html#a0">errCallBack</a>($err)
-00003 {
-00004     echo <span class="stringliteral">"&lt;pre&gt;gm:\n"</span>.$err-&gt;getMessage().<span class="stringliteral">"\ndi:\n"</span>.$err-&gt;getDebugInfo().<span class="stringliteral">"\nui:\n"</span>.$err-&gt;getUserInfo().<span class="stringliteral">"\n"</span>;
-00005     echo <span class="stringliteral">"&lt;hr&gt;BackTrace:\n"</span>;
-00006     print_r($err-&gt;backtrace);
-00007     echo <span class="stringliteral">"&lt;/pre&gt;\n"</span>;
-00008     exit;
-00009 }
-00010 
-<a name="l00017"></a><a class="code" href="classuiBase.html">00017</a> <span class="keyword">class </span><a class="code" href="classuiBase.html">uiBase</a>
-00018 {
-00019     <span class="comment">// --- basic funtionality ---</span>
-<a name="l00028"></a><a class="code" href="classuiBase.html#a0">00028</a> <span class="comment"></span>    function <a class="code" href="classuiBase.html#a0">tra</a>($input)
-00029     {
-00030         <span class="comment">// just a dummy function yet</span>
-00031 
-00032         <span class="keywordflow">return</span> $input;
-00033     }
-00034 
-00035 
-<a name="l00045"></a><a class="code" href="classuiBase.html#a1">00045</a>     function <a class="code" href="classuiBase.html#a1">_parseArr2Form</a>(&amp;$form, &amp;$mask, $side='client')
-00046     {
-00047         foreach($mask as $k=&gt;$v) {
-00048 <span class="preprocessor">            ## add elements ########################</span>
-00049 <span class="preprocessor"></span>            <span class="keywordflow">if</span> ($v['type']=='radio') {
-00050                 foreach($v['options'] as $rk=&gt;$rv) {
-00051                     $radio[] =&amp; $form-&gt;createElement($v['type'], NULL, NULL, $rv, $rk);
-00052                 }
-00053                 $form-&gt;addGroup($radio, $v['element'], $this-&gt;tra($v['label']));
-00054                 unset($radio);
-00055 
-00056             } elseif (isset($v['type'])) {
-00057                 $elem[$v['element']] =&amp; $form-&gt;createElement($v['type'], $v['element'], $this-&gt;tra($v['label']), ($v['attributes']?$v['attributes']:(($v[type]=='text'||$v['type']=='file')?array('size'=&gt;<a class="code" href="conf_8php.html#a4">UI_INPUT_STANDARD_SIZE</a>, 'maxlength'=&gt;<a class="code" href="conf_8php.html#a5">UI_INPUT_STANDARD_MAXLENGTH</a>):NULL)));
-00058                 <span class="keywordflow">if</span>($v['type']=='select') {
-00059                     $elem[$v['element']]-&gt;loadArray($v['options']);
-00060                     $elem[$v['element']]-&gt;setMultiple($v['multiple']);
-00061                 };
-00062                 <span class="keywordflow">if</span> (!$v['groupit']) $form-&gt;addElement($elem[$v['element']]);
-00063             }
-00064 <span class="preprocessor">            ## add required rule ###################</span>
-00065 <span class="preprocessor"></span>            <span class="keywordflow">if</span> ($v['required']) {
-00066                 $form-&gt;addRule($v['element'], ($v['errormsg']?$this-&gt;tra($v['errormsg']):$this-&gt;<a class="code" href="classuiBase.html#a0">tra</a>('please enter value <span class="keywordflow">for</span>').<span class="charliteral">' '</span>.$this-&gt;<a class="code" href="classuiBase.html#a0">tra</a>($v['label'])), 'required', NULL, $side);
-00067             }
-00068 <span class="preprocessor">            ## add constant value ##################</span>
-00069 <span class="preprocessor"></span>            <span class="keywordflow">if</span> (isset($v['constant'])) {
-00070                 $form-&gt;setConstants(array($v['element']=&gt;$v['constant']));
-00071             }
-00072 <span class="preprocessor">            ## add default value ###################</span>
-00073 <span class="preprocessor"></span>            <span class="keywordflow">if</span> (isset($v['<span class="keywordflow">default</span>'])) {
-00074                 $form-&gt;setDefaults(array($v['element']=&gt;$v['<span class="keywordflow">default</span>']));
-00075             }
-00076 <span class="preprocessor">            ## add other rules #####################</span>
-00077 <span class="preprocessor"></span>            <span class="keywordflow">if</span> ($v['rule']) {
-00078                 $form-&gt;addRule($v['element'], $this-&gt;tra($v['errormsg']), $v['rule'] , NULL, $side);
-00079             }
-00080 <span class="preprocessor">            ## add group ###########################</span>
-00081 <span class="preprocessor"></span>            <span class="keywordflow">if</span> (is_array($v['group'])) {
-00082                 foreach($v['group'] as $val) {
-00083                     $groupthose[] =&amp; $elem[$val];
-00084                 }
-00085                 $form-&gt;addGroup($groupthose, $v['name'], $this-&gt;tra($v['label']), $v['seperator'], $v['appendName']);
-00086                 unset($groupthose);
-00087             }
-00088 <span class="preprocessor">            ## check error on type file ##########</span>
-00089 <span class="preprocessor"></span>            <span class="keywordflow">if</span> ($v['type']=='file') {
-00090                 <span class="keywordflow">if</span> ($_POST[$v['element']]['error']) {
-00091                     $form-&gt;setElementError($v['element'], ($v['errormsg']?$this-&gt;tra($v['errormsg']):$this-&gt;<a class="code" href="classuiBase.html#a0">tra</a>('please enter value <span class="keywordflow">for</span>').<span class="charliteral">' '</span>.$this-&gt;<a class="code" href="classuiBase.html#a0">tra</a>($v['label'])));
-00092                 }
-00093             }
-00094         }
-00095 
-00096         reset($mask);
-00097 
-00098         $form-&gt;validate();
-00099     }
-00100 }
-00101 ?&gt;
-</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/ui__base_8inc_8php.html b/livesupport/modules/htmlUI/doc/doxygen/html/ui__base_8inc_8php.html
deleted file mode 100644
index 2e0bedd19..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/ui__base_8inc_8php.html
+++ /dev/null
@@ -1,53 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: ui_base.inc.php File Reference</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<div class="nav">
-<a class="el" href="dir_000000.html">var</a></div>
-<h1>ui_base.inc.php File Reference</h1>
-<p>
-<a href="ui__base_8inc_8php-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
-<tr><td></td></tr>
-<tr><td colspan="2"><br><h2>Functions</h2></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__base_8inc_8php.html#a0">errCallBack</a> ($err)</td></tr>
-
-</table>
-<hr><h2>Function Documentation</h2>
-<a class="anchor" name="a0" doxytag="ui_base.inc.php::errCallBack"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">errCallBack           </td>
-          <td class="md" valign="top">(&nbsp;</td>
-          <td class="md" nowrap valign="top">$&nbsp;</td>
-          <td class="mdname1" valign="top" nowrap> <em>err</em>          </td>
-          <td class="md" valign="top">&nbsp;)&nbsp;</td>
-          <td class="md" nowrap></td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__base_8inc_8php-source.html#l00002">2</a> of file <a class="el" href="ui__base_8inc_8php-source.html">ui_base.inc.php</a>.    </td>
-  </tr>
-</table>
-<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/ui__browser_8class_8php-source.html b/livesupport/modules/htmlUI/doc/doxygen/html/ui__browser_8class_8php-source.html
deleted file mode 100644
index 2cfec689a..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/ui__browser_8class_8php-source.html
+++ /dev/null
@@ -1,288 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: ui_browser.class.php Source File</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<div class="nav">
-<a class="el" href="dir_000000.html">var</a></div>
-<h1>ui_browser.class.php</h1><a href="ui__browser_8class_8php.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 &lt;?php
-<a name="l00002"></a><a class="code" href="classuiBrowser.html">00002</a> <span class="keyword">class </span><a class="code" href="classuiBrowser.html">uiBrowser</a> <span class="keyword">extends</span> <a class="code" href="classuiBase.html">uiBase</a> {
-<a name="l00003"></a><a class="code" href="classuiBrowser.html#o0">00003</a>     var <a class="code" href="classuiBrowser.html#o0">$alertMsg</a>;
-00004 
-00005     <span class="comment">// --- class constructor ---</span>
-<a name="l00015"></a><a class="code" href="classuiBrowser.html#a0">00015</a> <span class="comment"></span>    function <a class="code" href="classuiBrowser.html#a0">uiBrowser</a>($config)
-00016     {
-00017         $dbc = DB::connect($config['dsn'], TRUE);
-00018         $dbc-&gt;setFetchMode(DB_FETCHMODE_ASSOC);
-00019         $this-&gt;gb = &amp;<span class="keyword">new</span> GreenBox(&amp;$dbc, $config);
-00020         $this-&gt;<span class="keywordtype">id</span> = (!<a class="code" href="ui__handler_8php.html#a11">$_REQUEST</a>['<span class="keywordtype">id</span>'] ? $this-&gt;gb-&gt;storId : <a class="code" href="ui__handler_8php.html#a11">$_REQUEST</a>['<span class="keywordtype">id</span>']);
-00021         $this-&gt;sessid = <a class="code" href="ui__handler_8php.html#a11">$_REQUEST</a>[<a class="code" href="conf_8php.html#a0">$config</a>['authCookieName']];
-00022         $this-&gt;userid = $this-&gt;gb-&gt;getSessUserId($this-&gt;sessid);
-00023         $this-&gt;login  = $this-&gt;gb-&gt;getSessLogin($this-&gt;sessid);
-00024         $this-&gt;InputTextStandardAttrib = array('size'     =&gt;<a class="code" href="conf_8php.html#a4">UI_INPUT_STANDARD_SIZE</a>,
-00025                                                'maxlength'=&gt;<a class="code" href="conf_8php.html#a5">UI_INPUT_STANDARD_MAXLENGTH</a>);
-00026 
-00027     }
-00028 
-00029     <span class="comment">// --- error handling ---</span>
-<a name="l00038"></a><a class="code" href="classuiBrowser.html#a1">00038</a> <span class="comment"></span>    function <a class="code" href="classuiBrowser.html#a1">alertMsg</a>()
-00039     {
-00040         <span class="keywordflow">if</span> ($_SESSION['<a class="code" href="classuiBrowser.html#a1">alertMsg</a>']) {
-00041             $this-&gt;alertMsg = $_SESSION['alertMsg'];
-00042             unset($_SESSION['alertMsg']);
-00043             <span class="keywordflow">return</span> $this-&gt;alertMsg;
-00044         }
-00045         <span class="keywordflow">return</span> <span class="keyword">false</span>;
-00046     }
-00047 
-00048     <span class="comment">// --- template feed ---</span>
-<a name="l00057"></a><a class="code" href="classuiBrowser.html#a2">00057</a> <span class="comment"></span>    function <a class="code" href="classuiBrowser.html#a2">loginform</a>(&amp;$Smarty, &amp;$mask)
-00058     {
-00059         $form = <span class="keyword">new</span> HTML_QuickForm('loginbox', UI_STANDARD_FORM_METHOD, <a class="code" href="conf_8php.html#a1">UI_HANDLER</a>);
-00060         $form-&gt;setRequiredNote(file_get_contents(<a class="code" href="conf_8php.html#a8">UI_QFORM_REQUIREDNOTE</a>));
-00061         $this-&gt;<a class="code" href="classuiBase.html#a1">_parseArr2Form</a>($form, $mask);
-00062 
-00063 <span class="preprocessor">        ## using Static Smarty Renderer</span>
-00064 <span class="preprocessor"></span>        $renderer =&amp; <span class="keyword">new</span> HTML_QuickForm_Renderer_ArraySmarty($Smarty, <span class="keyword">true</span>);
-00065         $renderer-&gt;setRequiredTemplate(file_get_contents(<a class="code" href="conf_8php.html#a7">UI_QFORM_REQUIRED</a>));
-00066         $renderer-&gt;setErrorTemplate(file_get_contents(<a class="code" href="conf_8php.html#a9">UI_QFORM_ERROR</a>));
-00067 
-00068         $form-&gt;accept($renderer);
-00069 
-00070         <span class="keywordflow">return</span> $renderer-&gt;toArray();
-00071     }
-00072 
-00073 
-00074 
-00075 
-<a name="l00083"></a><a class="code" href="classuiBrowser.html#a3">00083</a>     function <a class="code" href="classuiBrowser.html#a3">getUserInfo</a>()
-00084     {
-00085         <span class="keywordflow">return</span> array('uname'=&gt;$this-&gt;gb-&gt;getSessLogin($this-&gt;sessid),
-00086                      'uid'  =&gt;$this-&gt;gb-&gt;getSessUserId($this-&gt;sessid));
-00087     }
-00088 
-<a name="l00099"></a><a class="code" href="classuiBrowser.html#a4">00099</a>     function <a class="code" href="classuiBrowser.html#a4">getStructure</a>($<span class="keywordtype">id</span>, $homedir=FALSE)
-00100     {
-00101         <span class="keywordflow">if</span> ($homedir) {
-00102             $id = $this-&gt;gb-&gt;getObjId($this-&gt;login, $this-&gt;gb-&gt;storId);
-00103             $data['<span class="keywordtype">id</span>'] = $id;
-00104         } <span class="keywordflow">else</span> {
-00105             $data['<span class="keywordtype">id</span>'] = $id;
-00106         }
-00107 
-00108         $data=array_merge($data, array(
-00109                 'pathdata'  =&gt; $this-&gt;gb-&gt;getPath($<span class="keywordtype">id</span>, $this-&gt;sessid),
-00110                 'listdata'  =&gt; ($this-&gt;gb-&gt;getObjType($<span class="keywordtype">id</span>)=='Folder'?
-00111                     $this-&gt;gb-&gt;listFolder($<span class="keywordtype">id</span>, $this-&gt;sessid):array()
-00112                 ),
-00113                 'tree'  =&gt; (<a class="code" href="ui__handler_8php.html#a11">$_REQUEST</a>['tree']==<span class="charliteral">'Y'</span>),
-00114                 'showPath'  =&gt; <span class="keyword">true</span>,
-00115                 'showTree'  =&gt; <span class="keyword">true</span>,
-00116             ));
-00117             <span class="keywordflow">if</span>(<a class="code" href="ui__handler_8php.html#a11">$_REQUEST</a>['tree']==<span class="charliteral">'Y'</span>){
-00118                 $data['treedata'] = $this-&gt;gb-&gt;getSubTree($<span class="keywordtype">id</span>, $this-&gt;sessid);
-00119             }
-00120 
-00121         <span class="keywordflow">if</span>(PEAR::isError($data['listdata'])){
-00122             $data['msg'] = $data['listdata']-&gt;getMessage();
-00123             $data['listdata'] = array();
-00124         }
-00125 
-00126         <span class="keywordflow">return</span> $data;
-00127     }
-00128 
-00129 
-<a name="l00139"></a><a class="code" href="classuiBrowser.html#a5">00139</a>     function <a class="code" href="classuiBrowser.html#a5">getNewFileForm</a>($<span class="keywordtype">id</span>, $mask)
-00140     {
-00141         $form = <span class="keyword">new</span> HTML_QuickForm('<a class="code" href="ui__browser_8php.html#a2">newfile</a>', UI_STANDARD_FORM_METHOD, <a class="code" href="conf_8php.html#a1">UI_HANDLER</a>);
-00142         $form-&gt;setConstants(array('<span class="keywordtype">id</span>'=&gt;$<span class="keywordtype">id</span>));
-00143         $form-&gt;addElement('hidden', '<span class="keywordtype">id</span>');
-00144 
-00145         $this-&gt;<a class="code" href="classuiBase.html#a1">_parseArr2Form</a>($form, $mask);
-00146 
-00147         <span class="keywordflow">return</span> $form-&gt;toHTML();
-00148     }
-00149 
-00150 
-<a name="l00160"></a><a class="code" href="classuiBrowser.html#a6">00160</a>     function <a class="code" href="classuiBrowser.html#a6">getSearchForm</a>($<span class="keywordtype">id</span>, &amp;$mask)
-00161     {
-00162         $form = <span class="keyword">new</span> HTML_QuickForm('<a class="code" href="ui__browser_8php.html#a4">search</a>', UI_STANDARD_FORM_METHOD, <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>);
-00163         $form-&gt;setConstants(array('<span class="keywordtype">id</span>'=&gt;$<span class="keywordtype">id</span>));
-00164         $form-&gt;addElement('hidden', '<span class="keywordtype">id</span>');
-00165 
-00166         $this-&gt;<a class="code" href="classuiBase.html#a1">_parseArr2Form</a>($form, $mask);
-00167 
-00168         <span class="keywordflow">return</span> $form-&gt;toHTML();
-00169     }
-00170 
-<a name="l00178"></a><a class="code" href="classuiBrowser.html#a7">00178</a>     function <a class="code" href="classuiBrowser.html#a7">getSubjects</a>()
-00179     {
-00180         <span class="keywordflow">return</span> array('subj'       =&gt; $this-&gt;gb-&gt;getSubjectsWCnt(),
-00181                      'loggedAs'   =&gt; $this-&gt;login
-00182                     );
-00183     }
-00184 
-00185 
-<a name="l00193"></a><a class="code" href="classuiBrowser.html#a8">00193</a>     function <a class="code" href="classuiBrowser.html#a8">getAddSubjectForm</a>($mask)
-00194     {
-00195         $form = <span class="keyword">new</span> HTML_QuickForm('addSubject', UI_STANDARD_FORM_METHOD, <a class="code" href="conf_8php.html#a1">UI_HANDLER</a>);
-00196 <span class="preprocessor">        #$form-&gt;setConstants(array('act'=&gt;'addSubj'));</span>
-00197 <span class="preprocessor"></span><span class="preprocessor">        #$form-&gt;addElement('hidden', 'act');</span>
-00198 <span class="preprocessor"></span><span class="preprocessor">        #$form-&gt;addElement('text', 'login', $this-&gt;tra('Add Subject with Name'), $this-&gt;InputTextStandardAttrib);</span>
-00199 <span class="preprocessor"></span><span class="preprocessor">        #$form-&gt;addElement('password', 'pass', $this-&gt;tra('and Password'), $this-&gt;InputTextStandardAttrib);</span>
-00200 <span class="preprocessor"></span><span class="preprocessor">        #$form-&gt;addElement('submit', NULL, $this-&gt;tra('Add'));</span>
-00201 <span class="preprocessor"></span><span class="preprocessor">        #$form-&gt;addRule('login', $this-&gt;tra('enter a Subject Name'), 'required', null, 'client');</span>
-00202 <span class="preprocessor"></span><span class="preprocessor">        #$form-&gt;addRule('pass', $this-&gt;tra('enter a Password'), 'required', null, 'client');</span>
-00203 <span class="preprocessor"></span>        $this-&gt;<a class="code" href="classuiBase.html#a1">_parseArr2Form</a>($form, $mask);
-00204         <span class="keywordflow">return</span> $form-&gt;toHTML();
-00205     }
-00206 
-<a name="l00214"></a><a class="code" href="classuiBrowser.html#a9">00214</a>     function <a class="code" href="classuiBrowser.html#a9">getChangePasswdForm</a>($uid)
-00215     {
-00216         $form = <span class="keyword">new</span> HTML_QuickForm('<a class="code" href="ui__handler_8php.html#a15">changePasswd</a>', UI_STANDARD_FORM_METHOD, <a class="code" href="conf_8php.html#a1">UI_HANDLER</a>);
-00217         $form-&gt;setConstants(array('act'=&gt;'<a class="code" href="ui__handler_8php.html#a15">changePasswd</a>',
-00218                                   'uid'=&gt;$uid));
-00219         $form-&gt;addElement('hidden', 'act');
-00220         $form-&gt;addElement('hidden', 'uid');
-00221         $form-&gt;addElement('text', 'oldpass', $this-&gt;tra('Old Password'), $this-&gt;InputTextStandardAttrib);
-00222         $form-&gt;addElement('text', 'pass', $this-&gt;tra('<span class="keyword">new</span> Password'), $this-&gt;InputTextStandardAttrib);
-00223         $form-&gt;addElement('text', 'pass2', $this-&gt;tra('retype <span class="keyword">new</span> Password'), $this-&gt;InputTextStandardAttrib);
-00224         $form-&gt;addElement('submit', NULL, $this-&gt;tra('Change'));
-00225         $form-&gt;addRule('oldpass', $this-&gt;tra('enter Old Password'), 'required', null, 'client');
-00226         $form-&gt;addRule('pass', $this-&gt;tra('enter <span class="keyword">new</span> Password'), 'required', null, 'client');
-00227         $form-&gt;addRule('pass2', $this-&gt;tra('retype <span class="keyword">new</span> Password'), 'required', null, 'client');
-00228         $form-&gt;addRule(array('pass', 'pass2'), 'The passwords <span class="keywordflow">do</span> not match', 'compare', null, 'client');
-00229 
-00230         <span class="keywordflow">return</span> $form-&gt;toHTML();
-00231     }
-00232 
-<a name="l00241"></a><a class="code" href="classuiBrowser.html#a10">00241</a>     function <a class="code" href="classuiBrowser.html#a10">getGroups</a>($<span class="keywordtype">id</span>)
-00242     {
-00243         <span class="keywordflow">return</span> array(
-00244             'rows'      =&gt; $this-&gt;gb-&gt;listGroup($<span class="keywordtype">id</span>),
-00245             '<span class="keywordtype">id</span>'        =&gt; $id,
-00246             'loggedAs'  =&gt; $this-&gt;login,
-00247             'gname'     =&gt; $this-&gt;gb-&gt;getSubjName($<span class="keywordtype">id</span>),
-00248             'subj'      =&gt; $this-&gt;gb-&gt;getSubjects()
-00249         );
-00250     }
-00251 
-00252 
-<a name="l00262"></a><a class="code" href="classuiBrowser.html#a11">00262</a>     function <a class="code" href="classuiBrowser.html#a11">getSubj2GroupForm</a>($<span class="keywordtype">id</span>)
-00263     {
-00264         $g = $this-&gt;<a class="code" href="classuiBrowser.html#a10">getGroups</a>($<span class="keywordtype">id</span>);
-00265         foreach($g['subj'] as $s) {
-00266             $this-&gt;logins[($s['login'])]=$s['login'];
-00267         }
-00268 
-00269         $form = <span class="keyword">new</span> HTML_QuickForm('<a class="code" href="ui__handler_8php.html#a18">addSubj2Group</a>', UI_STANDARD_FORM_METHOD, <a class="code" href="conf_8php.html#a1">UI_HANDLER</a>);
-00270         $form-&gt;setConstants(array('act'=&gt;'<a class="code" href="ui__handler_8php.html#a18">addSubj2Group</a>',
-00271                                   'reid'=&gt;$g['<span class="keywordtype">id</span>'],
-00272                                   'gname'=&gt;$g['gname']));
-00273         $form-&gt;addElement('hidden', 'act');
-00274         $form-&gt;addElement('hidden', 'reid');
-00275         $form-&gt;addElement('hidden', 'gname');
-00276         $s =&amp; $form-&gt;createElement('select', 'login', 'Add Group: ');
-00277         $s-&gt;loadArray($this-&gt;logins, NULL);
-00278         $form-&gt;addElement($s);
-00279         $form-&gt;addElement('submit', NULL, $this-&gt;tra('Do'));
-00280 
-00281         <span class="keywordflow">return</span> $form-&gt;toHTML();
-00282     }
-00283 
-<a name="l00293"></a><a class="code" href="classuiBrowser.html#a12">00293</a>     function <a class="code" href="classuiBrowser.html#a12">getPermissions</a>($<span class="keywordtype">id</span>)
-00294     {
-00295         <span class="keywordflow">return</span> array('pathdata'  =&gt; $this-&gt;gb-&gt;getPath($<span class="keywordtype">id</span>),
-00296                      'perms'     =&gt; $this-&gt;gb-&gt;getObjPerms($<span class="keywordtype">id</span>),
-00297                      'actions'   =&gt; $this-&gt;gb-&gt;getAllowedActions($this-&gt;gb-&gt;getObjType($<span class="keywordtype">id</span>)),
-00298                      '<a class="code" href="ui__browser_8php.html#a5">subjects</a>'  =&gt; $this-&gt;gb-&gt;getSubjects(),
-00299                      '<span class="keywordtype">id</span>'        =&gt; $id,
-00300                      'loggedAs'  =&gt; $this-&gt;login
-00301                      );
-00302     }
-00303 
-<a name="l00313"></a><a class="code" href="classuiBrowser.html#a13">00313</a>     function <a class="code" href="classuiBrowser.html#a13">getNewFileData</a>($<span class="keywordtype">id</span>)
-00314     {
-00315         <span class="keywordflow">return</span> array('pathdata'  =&gt; $this-&gt;gb-&gt;getPath($<span class="keywordtype">id</span>, $this-&gt;sessid),
-00316                      'showEdit'  =&gt; <span class="keyword">true</span>,
-00317                      '<span class="keywordtype">id</span>'    =&gt; $id,
-00318                       );
-00319     }
-00320 
-<a name="l00330"></a><a class="code" href="classuiBrowser.html#a14">00330</a>     function <a class="code" href="classuiBrowser.html#a14">getSearchRes</a>($<span class="keywordtype">id</span>, $search)
-00331     {
-00332         foreach ($this-&gt;gb-&gt;localSearch($<a class="code" href="ui__browser_8php.html#a4">search</a>, $this-&gt;sessid) as $rec) {
-00333                 $res = array('items' =&gt; array('gunid'  =&gt; $rec,
-00334                                               'par_id' =&gt; $this-&gt;gb-&gt;_idFromGunid($rec)));
-00335             }
-00336 
-00337         <span class="keywordflow">return</span> array('<a class="code" href="ui__browser_8php.html#a4">search</a>'   =&gt; $res,
-00338                      'showSRes' =&gt; <span class="keyword">true</span>,
-00339                      '<span class="keywordtype">id</span>'       =&gt; $<span class="keywordtype">id</span>
-00340                      );
-00341 
-00342     }
-00343 
-<a name="l00353"></a><a class="code" href="classuiBrowser.html#a15">00353</a>     function <a class="code" href="classuiBrowser.html#a15">getFile</a>($<span class="keywordtype">id</span>)
-00354     {
-00355         $r = $this-&gt;gb-&gt;access($<span class="keywordtype">id</span>, $this-&gt;sessid);
-00356         <span class="keywordflow">if</span>(PEAR::isError($r)) $_SESSION['<a class="code" href="classuiBrowser.html#a1">alertMsg</a>'] = $r-&gt;getMessage();
-00357         <span class="keywordflow">else</span> print_r($r);
-00358     }
-00359 
-<a name="l00368"></a><a class="code" href="classuiBrowser.html#a16">00368</a>     function <a class="code" href="classuiBrowser.html#a16">getMdata</a>($<span class="keywordtype">id</span>)
-00369     {
-00370         <span class="keywordflow">return</span>($this-&gt;gb-&gt;getMdata($<span class="keywordtype">id</span>, $this-&gt;sessid));
-00371     }
-00372 
-<a name="l00380"></a><a class="code" href="classuiBrowser.html#a17">00380</a>     function <a class="code" href="classuiBrowser.html#a17">getInfo</a>($<span class="keywordtype">id</span>)
-00381     {
-00382         $ia = $this-&gt;gb-&gt;analyzeFile($<span class="keywordtype">id</span>, $this-&gt;sessid);
-00383 
-00384         <span class="keywordflow">return</span> <span class="stringliteral">"fileformat: {$ia['fileformat']}&lt;br&gt;</span>
-00385 <span class="stringliteral">                channels: {$ia['audio']['channels']}&lt;br&gt;</span>
-00386 <span class="stringliteral">                sample_rate: {$ia['audio']['sample_rate']}&lt;br&gt;</span>
-00387 <span class="stringliteral">                bits_per_sample: {$ia['audio']['bits_per_sample']}&lt;br&gt;</span>
-00388 <span class="stringliteral">                channelmode: {$ia['audio']['channelmode']}&lt;br&gt;</span>
-00389 <span class="stringliteral">                title: {$ia['id3v1']['title']}&lt;br&gt;</span>
-00390 <span class="stringliteral">                artist: {$ia['id3v1']['artist']}&lt;br&gt;</span>
-00391 <span class="stringliteral">                comment: {$ia['id3v1']['comment']}"</span>;
-00392     }
-00393 
-<a name="l00402"></a><a class="code" href="classuiBrowser.html#a18">00402</a>     function <a class="code" href="classuiBrowser.html#a18">getMetadataForm</a>($<span class="keywordtype">id</span>, &amp;$mask)
-00403     {
-00404         $form = <span class="keyword">new</span> HTML_QuickForm('<a class="code" href="ui__browser_8php.html#a12">editMetaData</a>', UI_STANDARD_FORM_METHOD, <a class="code" href="conf_8php.html#a1">UI_HANDLER</a>);
-00405         $form-&gt;setConstants(array('act'=&gt;'<a class="code" href="ui__browser_8php.html#a12">editMetaData</a>',
-00406                                   '<span class="keywordtype">id</span>'=&gt;$<span class="keywordtype">id</span>));
-00407         $form-&gt;addElement('hidden', 'act');
-00408         $form-&gt;addElement('hidden', '<span class="keywordtype">id</span>');
-00409 
-00410         $this-&gt;<a class="code" href="classuiBase.html#a1">_parseArr2Form</a>($form, $mask);
-00411 
-00412         <span class="keywordflow">return</span> $form-&gt;toHTML();
-00413     }
-00414 
-00415 
-<a name="l00416"></a><a class="code" href="classuiBrowser.html#a19">00416</a>     function <a class="code" href="classuiBrowser.html#a19">systemPrefs</a>(&amp;$mask)
-00417     {
-00418         $form = <span class="keyword">new</span> HTML_QuickForm('<a class="code" href="classuiBrowser.html#a19">systemPrefs</a>', UI_STANDARD_FORM_METHOD, <a class="code" href="conf_8php.html#a1">UI_HANDLER</a>);
-00419         $form-&gt;setConstants(array('act'=&gt;'<a class="code" href="classuiBrowser.html#a19">systemPrefs</a>'));
-00420         $form-&gt;addElement('hidden', 'act');
-00421 
-00422         $this-&gt;<a class="code" href="classuiBase.html#a1">_parseArr2Form</a>($form, $mask);
-00423 
-00424 <span class="preprocessor">        ## using Static Smarty Renderer</span>
-00425 <span class="preprocessor"></span>        $renderer =&amp; <span class="keyword">new</span> HTML_QuickForm_Renderer_Array(<span class="keyword">true</span>, <span class="keyword">true</span>);
-00426         $form-&gt;accept($renderer);
-00427 
-00428         <span class="keywordflow">return</span> $renderer-&gt;toArray();
-00429     }
-00430 }
-00431 ?&gt;
-</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/ui__browser_8class_8php.html b/livesupport/modules/htmlUI/doc/doxygen/html/ui__browser_8class_8php.html
deleted file mode 100644
index a0fa826b9..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/ui__browser_8class_8php.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: ui_browser.class.php File Reference</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<div class="nav">
-<a class="el" href="dir_000000.html">var</a></div>
-<h1>ui_browser.class.php File Reference</h1>
-<p>
-<a href="ui__browser_8class_8php-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
-<tr><td></td></tr>
-</table>
-<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/ui__browser_8php-source.html b/livesupport/modules/htmlUI/doc/doxygen/html/ui__browser_8php-source.html
deleted file mode 100644
index 45472bf87..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/ui__browser_8php-source.html
+++ /dev/null
@@ -1,125 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: ui_browser.php Source File</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<div class="nav">
-<a class="el" href="dir_000000.html">var</a>&nbsp;/&nbsp;<a class="el" href="dir_000001.html">html</a></div>
-<h1>ui_browser.php</h1><a href="ui__browser_8php.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 &lt;?php
-00002 require_once dirname(__FILE__).'/../ui_browser_init.php';
-00003 
-00004 <span class="keywordflow">if</span> (!$<a class="code" href="classuiBrowser.html">uiBrowser</a>-&gt;sessid) {
-00005     <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('loginform', $<a class="code" href="classuiBrowser.html">uiBrowser</a>-&gt;loginform($Smarty, $ui_fmask['login']));
-00006     <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;display('login.tpl');
-00007     die();
-00008 }
-00009 
-00010 
-00011 
-00012 <span class="keywordflow">switch</span>(<a class="code" href="ui__handler_8php.html#a11">$_REQUEST</a>['act']){
-00013     <span class="keywordflow">case</span> <span class="stringliteral">"getHomeDir"</span>:
-00014     <span class="keywordflow">default</span>:
-00015         <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('structure', $<a class="code" href="classuiBrowser.html">uiBrowser</a>-&gt;getStructure($<a class="code" href="classuiBrowser.html">uiBrowser</a>-&gt;id, $_REQUEST['act']=='getHomeDir' ? TRUE : FALSE));
-00016         <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('showPath', TRUE);
-00017 
-00018         <span class="keywordflow">if</span> ($_REQUEST['tree']==<span class="charliteral">'Y'</span>) {
-00019             <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('showTree', TRUE);
-00020         } <span class="keywordflow">else</span> {
-00021             <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('showObjects', TRUE);
-00022         }
-00023         <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('delOverride', $_REQUEST['delOverride']);
-00024         <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('obj_types', array('Folder'=&gt;<span class="charliteral">'D'</span>, 'File'=&gt;<span class="charliteral">'F'</span>, 'Replica'=&gt;<span class="charliteral">'R'</span>));
-00025         <span class="keywordflow">break</span>;
-00026 
-00027     <span class="keywordflow">case</span> <span class="stringliteral">"permissions"</span>:
-<a name="l00028"></a><a class="code" href="ui__browser_8php.html#a1">00028</a>         <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('structure', $<a class="code" href="classuiBrowser.html">uiBrowser</a>-&gt;getStructure($<a class="code" href="classuiBrowser.html">uiBrowser</a>-&gt;id, $_REQUEST['act']=='getHomeDir' ? TRUE : FALSE));
-00029         <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('showPath', TRUE);
-00030 
-00031         <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('perms', $<a class="code" href="classuiBrowser.html">uiBrowser</a>-&gt;getPermissions($<a class="code" href="classuiBrowser.html">uiBrowser</a>-&gt;id));
-00032         <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('showPermissions', TRUE);
-00033     <span class="keywordflow">break</span>;
-00034 
-00035     <span class="keywordflow">case</span> <span class="stringliteral">"newfile"</span>:
-<a name="l00036"></a><a class="code" href="ui__browser_8php.html#a2">00036</a>         <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('structure', $<a class="code" href="classuiBrowser.html">uiBrowser</a>-&gt;getStructure($<a class="code" href="classuiBrowser.html">uiBrowser</a>-&gt;id, $_REQUEST['act']=='getHomeDir' ? TRUE : FALSE));
-00037         <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('showPath', TRUE);
-00038 
-00039         <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('newfiledata', $<a class="code" href="classuiBrowser.html">uiBrowser</a>-&gt;getNewFileData($<a class="code" href="classuiBrowser.html">uiBrowser</a>-&gt;id));
-00040         <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('newfileform', $<a class="code" href="classuiBrowser.html">uiBrowser</a>-&gt;getNewFileForm($<a class="code" href="classuiBrowser.html">uiBrowser</a>-&gt;id, $ui_fmask['upload']));
-00041         <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('showNewFileForm', TRUE);
-00042         <span class="keywordflow">break</span>;
-00043 
-00044     <span class="keywordflow">case</span> <span class="stringliteral">"sform"</span>:
-<a name="l00045"></a><a class="code" href="ui__browser_8php.html#a3">00045</a>         <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('searchform', $<a class="code" href="classuiBrowser.html">uiBrowser</a>-&gt;getSearchForm($<a class="code" href="classuiBrowser.html">uiBrowser</a>-&gt;id, $ui_fmask['search']));
-00046         <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('showSearchForm', TRUE);
-00047 
-00048         <span class="keywordflow">break</span>;
-00049 
-00050     <span class="keywordflow">case</span> <span class="stringliteral">"search"</span>:
-<a name="l00051"></a><a class="code" href="ui__browser_8php.html#a4">00051</a>         <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('searchres', $<a class="code" href="classuiBrowser.html">uiBrowser</a>-&gt;getSearchRes($uiBrwoser-&gt;id, $_REQUEST['search']));
-00052         <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('showSearchRes', TRUE);
-00053         <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('searchform', $<a class="code" href="classuiBrowser.html">uiBrowser</a>-&gt;getSearchForm($uiBrwoser-&gt;id, $ui_fmask['search']));
-00054         <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('showSearchForm', TRUE);
-00055 
-00056         <span class="keywordflow">break</span>;
-00057 
-00058     <span class="keywordflow">case</span> <span class="stringliteral">"subjects"</span>:
-00059     <span class="keywordflow">case</span> <span class="stringliteral">"addUser"</span>:
-00060     <span class="keywordflow">case</span> <span class="stringliteral">"addGroup"</span>:
-<a name="l00061"></a><a class="code" href="ui__browser_8php.html#a5">00061</a>         <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('subjects', $<a class="code" href="classuiBrowser.html">uiBrowser</a>-&gt;getSubjects());
-00062         <span class="keywordflow">switch</span>(<a class="code" href="ui__handler_8php.html#a11">$_REQUEST</a>['act']) {
-00063             <span class="keywordflow">case</span> <span class="stringliteral">"addUser"</span>:  <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('addSubjectForm', $<a class="code" href="classuiBrowser.html">uiBrowser</a>-&gt;getAddSubjectForm($ui_fmask['<a class="code" href="ui__handler_8php.html#a12">addUser</a>']));  <span class="keywordflow">break</span>;
-<a name="l00064"></a><a class="code" href="ui__browser_8php.html#a6">00064</a>             <span class="keywordflow">case</span> <span class="stringliteral">"addGroup"</span>: <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('addSubjectForm', $<a class="code" href="classuiBrowser.html">uiBrowser</a>-&gt;getAddSubjectForm($ui_fmask['addGroup'])); <span class="keywordflow">break</span>;
-00065         }
-00066         <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('showSubjects', TRUE);
-00067     <span class="keywordflow">break</span>;
-00068 
-00069     <span class="keywordflow">case</span> <span class="stringliteral">"passwd"</span>:
-<a name="l00070"></a><a class="code" href="ui__browser_8php.html#a7">00070</a>         <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('changePassForm', $<a class="code" href="classuiBrowser.html">uiBrowser</a>-&gt;getChangePasswdForm($_REQUEST['uid']));
-00071         <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('showSubjects', TRUE);
-00072     <span class="keywordflow">break</span>;
-00073 
-00074     <span class="keywordflow">case</span> <span class="stringliteral">"groups"</span>:
-<a name="l00075"></a><a class="code" href="ui__browser_8php.html#a8">00075</a>         <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('groups', $<a class="code" href="classuiBrowser.html">uiBrowser</a>-&gt;getGroups($<a class="code" href="classuiBrowser.html">uiBrowser</a>-&gt;id));
-00076         <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('addSubj2GroupForm', $<a class="code" href="classuiBrowser.html">uiBrowser</a>-&gt;getSubj2GroupForm($<a class="code" href="classuiBrowser.html">uiBrowser</a>-&gt;id));
-00077         <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('showSubjects', TRUE);
-00078     <span class="keywordflow">break</span>;
-00079 
-00080     <span class="keywordflow">case</span> <span class="stringliteral">"getFile"</span>:
-<a name="l00081"></a><a class="code" href="ui__browser_8php.html#a9">00081</a>         <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('fData', $<a class="code" href="classuiBrowser.html">uiBrowser</a>-&gt;getFile($<a class="code" href="classuiBrowser.html">uiBrowser</a>-&gt;id));
-00082         <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('showFile', TRUE);
-00083     <span class="keywordflow">break</span>;
-00084 
-00085     <span class="keywordflow">case</span> <span class="stringliteral">"getMdata"</span>:
-<a name="l00086"></a><a class="code" href="ui__browser_8php.html#a10">00086</a>         <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('fMetaData', $<a class="code" href="classuiBrowser.html">uiBrowser</a>-&gt;getMdata($<a class="code" href="classuiBrowser.html">uiBrowser</a>-&gt;id));
-00087         <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('showFile', TRUE);
-00088     <span class="keywordflow">break</span>;
-00089 
-00090     <span class="keywordflow">case</span> <span class="stringliteral">"getInfo"</span>:
-<a name="l00091"></a><a class="code" href="ui__browser_8php.html#a11">00091</a>         <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('fInfo', $<a class="code" href="classuiBrowser.html">uiBrowser</a>-&gt;getInfo($<a class="code" href="classuiBrowser.html">uiBrowser</a>-&gt;id));
-00092         <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('showFile', TRUE);
-00093     <span class="keywordflow">break</span>;
-00094 
-00095     <span class="keywordflow">case</span> <span class="stringliteral">"editMetaData"</span>:
-<a name="l00096"></a><a class="code" href="ui__browser_8php.html#a12">00096</a>         <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('mDataForm', $<a class="code" href="classuiBrowser.html">uiBrowser</a>-&gt;getMetaDataForm($<a class="code" href="classuiBrowser.html">uiBrowser</a>-&gt;id, $ui_fmask['mData']));
-00097         <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('showMetaDataForm', TRUE);
-00098     <span class="keywordflow">break</span>;
-00099 
-00100     <span class="keywordflow">case</span> <span class="stringliteral">"systemPrefs"</span>:
-<a name="l00101"></a><a class="code" href="ui__browser_8php.html#a13">00101</a>         <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('dynform', $<a class="code" href="classuiBrowser.html">uiBrowser</a>-&gt;systemPrefs($ui_fmask['systemPrefs']));
-00102         <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('showSystemPrefs', TRUE);
-<a name="l00103"></a><a class="code" href="ui__browser_8php.html#a0">00103</a>     <span class="keywordflow">break</span>;
-00104 }
-00105 <span class="preprocessor">## end gbHtmlBrowse.php</span>
-00106 <span class="preprocessor"></span>
-00107 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('userinfo', $<a class="code" href="classuiBrowser.html">uiBrowser</a>-&gt;getUserInfo());
-00108 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('logouthref', <a class="code" href="conf_8php.html#a1">UI_HANDLER</a>.'?act=logout');
-00109 
-00110 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;display('main.tpl');
-00111 ?&gt;
-</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/ui__browser_8php.html b/livesupport/modules/htmlUI/doc/doxygen/html/ui__browser_8php.html
deleted file mode 100644
index 2935f3326..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/ui__browser_8php.html
+++ /dev/null
@@ -1,413 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: ui_browser.php File Reference</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<div class="nav">
-<a class="el" href="dir_000000.html">var</a>&nbsp;/&nbsp;<a class="el" href="dir_000001.html">html</a></div>
-<h1>ui_browser.php File Reference</h1>
-<p>
-<a href="ui__browser_8php-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
-<tr><td></td></tr>
-<tr><td colspan="2"><br><h2>Variables</h2></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser_8php.html#a0">break</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">case&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser_8php.html#a1">permissions</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">case&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser_8php.html#a2">newfile</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">case&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser_8php.html#a3">sform</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">case&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser_8php.html#a4">search</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">case&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser_8php.html#a5">subjects</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">case&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser_8php.html#a6">addGroup</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">case&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser_8php.html#a7">passwd</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">case&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser_8php.html#a8">groups</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">case&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser_8php.html#a9">getFile</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">case&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser_8php.html#a10">getMdata</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">case&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser_8php.html#a11">getInfo</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">case&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser_8php.html#a12">editMetaData</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">case&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser_8php.html#a13">systemPrefs</a></td></tr>
-
-</table>
-<hr><h2>Variable Documentation</h2>
-<a class="anchor" name="a6" doxytag="ui_browser.php::addGroup"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">case <a class="el" href="ui__handler_8php.html#a13">addGroup</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__browser_8php-source.html#l00064">64</a> of file <a class="el" href="ui__browser_8php-source.html">ui_browser.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a0" doxytag="ui_browser.php::break"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top"><a class="el" href="ui__handler_8php.html#a0">break</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__browser_8php-source.html#l00103">103</a> of file <a class="el" href="ui__browser_8php-source.html">ui_browser.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a12" doxytag="ui_browser.php::editMetaData"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">case <a class="el" href="ui__browser_8php.html#a12">editMetaData</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__browser_8php-source.html#l00096">96</a> of file <a class="el" href="ui__browser_8php-source.html">ui_browser.php</a>.
-<p>
-Referenced by <a class="el" href="ui__browser_8class_8php-source.html#l00402">uiBrowser::getMetadataForm()</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a9" doxytag="ui_browser.php::getFile"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">case <a class="el" href="ui__browser_8php.html#a9">getFile</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__browser_8php-source.html#l00081">81</a> of file <a class="el" href="ui__browser_8php-source.html">ui_browser.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a11" doxytag="ui_browser.php::getInfo"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">case <a class="el" href="ui__browser_8php.html#a11">getInfo</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__browser_8php-source.html#l00091">91</a> of file <a class="el" href="ui__browser_8php-source.html">ui_browser.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a10" doxytag="ui_browser.php::getMdata"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">case <a class="el" href="ui__browser_8php.html#a10">getMdata</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__browser_8php-source.html#l00086">86</a> of file <a class="el" href="ui__browser_8php-source.html">ui_browser.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a8" doxytag="ui_browser.php::groups"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">case <a class="el" href="ui__browser_8php.html#a8">groups</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__browser_8php-source.html#l00075">75</a> of file <a class="el" href="ui__browser_8php-source.html">ui_browser.php</a>.
-<p>
-Referenced by <a class="el" href="ui__handler_8class_8php-source.html#l00384">uiHandler::addSubj2Group()</a>, and <a class="el" href="ui__handler_8class_8php-source.html#l00404">uiHandler::removeSubjFromGr()</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a2" doxytag="ui_browser.php::newfile"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">case <a class="el" href="ui__browser_8php.html#a2">newfile</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__browser_8php-source.html#l00036">36</a> of file <a class="el" href="ui__browser_8php-source.html">ui_browser.php</a>.
-<p>
-Referenced by <a class="el" href="ui__browser_8class_8php-source.html#l00139">uiBrowser::getNewFileForm()</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a7" doxytag="ui_browser.php::passwd"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">case <a class="el" href="ui__browser_8php.html#a7">passwd</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__browser_8php-source.html#l00070">70</a> of file <a class="el" href="ui__browser_8php-source.html">ui_browser.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a1" doxytag="ui_browser.php::permissions"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">case <a class="el" href="ui__browser_8php.html#a1">permissions</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__browser_8php-source.html#l00028">28</a> of file <a class="el" href="ui__browser_8php-source.html">ui_browser.php</a>.
-<p>
-Referenced by <a class="el" href="ui__handler_8class_8php-source.html#l00347">uiHandler::addPerm()</a>, and <a class="el" href="ui__handler_8class_8php-source.html#l00365">uiHandler::removePerm()</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a4" doxytag="ui_browser.php::search"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">case <a class="el" href="ui__browser_8php.html#a4">search</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__browser_8php-source.html#l00051">51</a> of file <a class="el" href="ui__browser_8php-source.html">ui_browser.php</a>.
-<p>
-Referenced by <a class="el" href="ui__browser_8class_8php-source.html#l00160">uiBrowser::getSearchForm()</a>, and <a class="el" href="ui__browser_8class_8php-source.html#l00330">uiBrowser::getSearchRes()</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a3" doxytag="ui_browser.php::sform"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">case <a class="el" href="ui__browser_8php.html#a3">sform</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__browser_8php-source.html#l00045">45</a> of file <a class="el" href="ui__browser_8php-source.html">ui_browser.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a5" doxytag="ui_browser.php::subjects"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">case <a class="el" href="ui__browser_8php.html#a5">subjects</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__browser_8php-source.html#l00061">61</a> of file <a class="el" href="ui__browser_8php-source.html">ui_browser.php</a>.
-<p>
-Referenced by <a class="el" href="ui__handler_8class_8php-source.html#l00266">uiHandler::addSubj()</a>, <a class="el" href="ui__handler_8class_8php-source.html#l00384">uiHandler::addSubj2Group()</a>, <a class="el" href="ui__browser_8class_8php-source.html#l00293">uiBrowser::getPermissions()</a>, <a class="el" href="ui__handler_8class_8php-source.html#l00313">uiHandler::passwd()</a>, <a class="el" href="ui__handler_8class_8php-source.html#l00290">uiHandler::removeSubj()</a>, and <a class="el" href="ui__handler_8class_8php-source.html#l00404">uiHandler::removeSubjFromGr()</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a13" doxytag="ui_browser.php::systemPrefs"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">case <a class="el" href="ui__handler_8php.html#a20">systemPrefs</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__browser_8php-source.html#l00101">101</a> of file <a class="el" href="ui__browser_8php-source.html">ui_browser.php</a>.
-<p>
-Referenced by <a class="el" href="ui__handler_8class_8php-source.html#l00418">uiHandler::storeSystemPrefs()</a>.    </td>
-  </tr>
-</table>
-<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/ui__browser__init_8php-source.html b/livesupport/modules/htmlUI/doc/doxygen/html/ui__browser__init_8php-source.html
deleted file mode 100644
index 13fbc288a..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/ui__browser__init_8php-source.html
+++ /dev/null
@@ -1,54 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: ui_browser_init.php Source File</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<div class="nav">
-<a class="el" href="dir_000000.html">var</a></div>
-<h1>ui_browser_init.php</h1><a href="ui__browser__init_8php.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 &lt;?php
-00002 session_start();
-00003 require_once dirname(__FILE__).'/conf.php';
-00004 require_once dirname(__FILE__).'/ui_fmask.inc.php';
-00005 
-00006 <span class="comment">// LS classes/functions</span>
-00007 require_once dirname(__FILE__).'/ui_base.inc.php';
-00008 require_once dirname(__FILE__).'/ui_browser.class.php';
-00009 require_once dirname(__FILE__).'/../../storageServer/var/GreenBox.php';
-00010 
-00011 <span class="comment">// well known classes</span>
-00012 require_once dirname(__FILE__).'/html/Smarty/libs/Smarty.class.php';
-00013 
-00014 require_once 'DB.php';
-00015 require_once 'HTML/QuickForm.php';
-00016 require_once 'HTML/QuickForm/Renderer/ArraySmarty.php';
-00017 
-00018 <span class="preprocessor">#PEAR::setErrorHandling(PEAR_ERROR_TRIGGER, E_USER_WARNING);</span>
-00019 <span class="preprocessor"></span><span class="preprocessor">#PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, 'errCallBack');</span>
-00020 <span class="preprocessor"></span>PEAR::setErrorHandling(PEAR_ERROR_RETURN);
-00021 <span class="preprocessor">#PEAR::setErrorHandling(PEAR_ERROR_PRINT);</span>
-00022 <span class="preprocessor"></span>
-00023 <span class="comment">// some global vars/objects</span>
-<a name="l00024"></a><a class="code" href="ui__browser__init_8php.html#a0">00024</a> <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a> = <span class="keyword">new</span> Smarty;
-00025 require_once  dirname(__FILE__).'/SmartyExtensions.inc.php';
-<a name="l00026"></a><a class="code" href="ui__browser__init_8php.html#a1">00026</a> <a class="code" href="ui__browser__init_8php.html#a1">$uiBrowser</a> = <span class="keyword">new</span> <a class="code" href="classuiBrowser.html">uiBrowser</a>($config);
-<a name="l00027"></a><a class="code" href="ui__browser__init_8php.html#a2">00027</a> <a class="code" href="ui__browser__init_8php.html#a2">$uiBase</a>    = <span class="keyword">new</span> <a class="code" href="classuiBase.html">uiBase</a>();
-00028 
-00029 <span class="preprocessor">## some basic things</span>
-00030 <span class="preprocessor"></span><a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('alertMsg', $<a class="code" href="classuiBrowser.html">uiBrowser</a>-&gt;alertMsg());
-00031 <a class="code" href="ui__browser__init_8php.html#a0">$Smarty</a>-&gt;assign('GLOBALS', $GLOBALS);  ## ??? should i <span class="keywordflow">do</span> <span class="keyword">this</span> ####
-00032 
-00033 <span class="preprocessor">## retransfer incomplete formdata from SESSION to POST-data</span>
-00034 <span class="preprocessor"></span><span class="keywordflow">if</span>(is_array($_SESSION['retransferFormData'])){
-00035     foreach($_SESSION['retransferFormData'] as $k=&gt;$v){
-00036         $_POST[$k] = $v;
-00037     }
-00038     unset($_SESSION['retransferFormData']);
-00039 }
-00040 ?&gt;
-</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/ui__browser__init_8php.html b/livesupport/modules/htmlUI/doc/doxygen/html/ui__browser__init_8php.html
deleted file mode 100644
index c1bcabc3d..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/ui__browser__init_8php.html
+++ /dev/null
@@ -1,104 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: ui_browser_init.php File Reference</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<div class="nav">
-<a class="el" href="dir_000000.html">var</a></div>
-<h1>ui_browser_init.php File Reference</h1>
-<p>
-<a href="ui__browser__init_8php-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
-<tr><td></td></tr>
-<tr><td colspan="2"><br><h2>Variables</h2></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser__init_8php.html#a0">$Smarty</a> = new Smarty</td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser__init_8php.html#a1">$uiBrowser</a> = new <a class="el" href="classuiBrowser.html">uiBrowser</a>($config)</td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__browser__init_8php.html#a2">$uiBase</a> = new <a class="el" href="classuiBase.html">uiBase</a>()</td></tr>
-
-</table>
-<hr><h2>Variable Documentation</h2>
-<a class="anchor" name="a0" doxytag="ui_browser_init.php::$Smarty"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">$Smarty = new Smarty          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__browser__init_8php-source.html#l00024">24</a> of file <a class="el" href="ui__browser__init_8php-source.html">ui_browser_init.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a2" doxytag="ui_browser_init.php::$uiBase"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">$<a class="el" href="classuiBase.html">uiBase</a> = new <a class="el" href="classuiBase.html">uiBase</a>()          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__browser__init_8php-source.html#l00027">27</a> of file <a class="el" href="ui__browser__init_8php-source.html">ui_browser_init.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a1" doxytag="ui_browser_init.php::$uiBrowser"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">$<a class="el" href="classuiBrowser.html">uiBrowser</a> = new <a class="el" href="classuiBrowser.html">uiBrowser</a>($config)          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__browser__init_8php-source.html#l00026">26</a> of file <a class="el" href="ui__browser__init_8php-source.html">ui_browser_init.php</a>.
-<p>
-Referenced by <a class="el" href="SmartyExtensions_8inc_8php-source.html#l00075">S_tra()</a>.    </td>
-  </tr>
-</table>
-<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/ui__fmask_8inc_8php-source.html b/livesupport/modules/htmlUI/doc/doxygen/html/ui__fmask_8inc_8php-source.html
deleted file mode 100644
index 93db35e52..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/ui__fmask_8inc_8php-source.html
+++ /dev/null
@@ -1,302 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: ui_fmask.inc.php Source File</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<div class="nav">
-<a class="el" href="dir_000000.html">var</a></div>
-<h1>ui_fmask.inc.php</h1><a href="ui__fmask_8inc_8php.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 &lt;?php
-<a name="l00002"></a><a class="code" href="ui__fmask_8inc_8php.html#a0">00002</a> <a class="code" href="ui__fmask_8inc_8php.html#a0">$ui_fmask</a> = array(
-00003     <span class="comment">/* ===================== list of system preferences which can be adjusted */</span>
-00004     'systemPrefs'   =&gt; array(
-00005         array(
-00006             'element'   =&gt; 'basics',
-00007             'type'  =&gt; 'header',
-00008             'label' =&gt; 'Basic Settings',
-00009         ),
-00010         array(
-00011             'element'   =&gt; 'maxfilesize',
-00012             'type'  =&gt; 'text',
-00013             'label' =&gt; 'Maximum File Size <span class="keywordflow">for</span> Upload',
-00014             'required'  =&gt;TRUE,
-00015         ),
-00016         array(
-00017             'rule'     =&gt; 'numeric',
-00018             'element'  =&gt; 'maxfilesize',
-00019             'errormsg' =&gt; 'Value <span class="keywordflow">for</span> Maximum File Size must be numeric'
-00020         ),
-00021         array(
-00022             'element' =&gt; 'stationname',
-00023             'type'    =&gt; 'text',
-00024             'label'   =&gt; 'Staion Name',
-00025             'required'=&gt;TRUE
-00026         ),
-00027         array(
-00028             'element'   =&gt; 'stationurl',
-00029             'type'  =&gt; 'text',
-00030             'label' =&gt; 'Station URL',
-00031             'required'  =&gt;TRUE
-00032         ),
-00033         array(
-00034             'element'   =&gt; 'stationurl2',
-00035             'type'  =&gt; 'text',
-00036             'label' =&gt; 'Station URL2',
-00037             'required'  =&gt;TRUE
-00038         ),
-00039         array(
-00040             'element' =&gt; 'upload',
-00041             'type'  =&gt; 'header',
-00042             'label' =&gt; 'Upload'
-00043         ),
-00044         array(
-00045             'element'   =&gt; 'stationlogo',
-00046             'type'  =&gt; 'file',
-00047             'label' =&gt; 'Station Logo',
-00048             'required'  =&gt;FALSE
-00049         ),
-00050         array(
-00051             'element'   =&gt;'submit',
-00052             'type'      =&gt;'submit',
-00053             'label'     =&gt;'Submit'
-00054         )
-00055     ),
-00056 
-00057     <span class="comment">/* =========================================================== Matadata-Mask */</span>
-00058     'mData' =&gt;  array(
-00059         array(
-00060             'element' =&gt; 'title',
-00061             'type'    =&gt; 'text',
-00062             'label'   =&gt; 'Title',
-00063             'required'=&gt; TRUE,
-00064             'groupit' =&gt; TRUE
-00065         ),
-00066         array(
-00067             'element' =&gt;'alternative',
-00068             'type'    =&gt;'text',
-00069             'label'   =&gt;'Alternative Title',
-00070             'required'=&gt;FALSE
-00071         ),
-00072         array(
-00073             'element' =&gt;'description',
-00074             'type'    =&gt;'textarea',
-00075             'label'   =&gt;'Description',
-00076             'required'=&gt;TRUE
-00077         ),
-00078         array(
-00079             'element' =&gt;'genre',
-00080             'type'    =&gt;'select',
-00081             'label'   =&gt;'Genre(s)',
-00082             'required'=&gt;TRUE,
-00083             'multiple'=&gt;TRUE,
-00084             'options' =&gt;array(
-00085                 'rock'      =&gt;'Rock',
-00086                 'blues'     =&gt;'Blues',
-00087                 'jazz'      =&gt;'Jazz',
-00088                 'pop'       =&gt;'Pop',
-00089                 'house'     =&gt;'House',
-00090                 'industrial'=&gt;'Industrial',
-00091                 )
-00092         ),
-00093         array(
-00094             'element' =&gt;'decade',
-00095             'type'    =&gt;'select',
-00096             'label'   =&gt;'Decade',
-00097             'required'=&gt;FALSE,
-00098             'multiple'=&gt;FALSE,
-00099             'options' =&gt;array(
-00100                 '1960'  =&gt;'60\<span class="charliteral">'s'</span>,
-00101                 '1970'  =&gt;'70\<span class="charliteral">'s'</span>,
-00102                 '1980'  =&gt;'80\<span class="charliteral">'s'</span>,
-00103                 '1990'  =&gt;'90\<span class="charliteral">'s'</span>
-00104             )
-00105         ),
-00106         array(
-00107             'element'   =&gt;'licence',
-00108             'type'      =&gt;'radio',
-00109             'label'     =&gt;'Licence exists',
-00110             'required'  =&gt;TRUE,
-00111             'options'   =&gt;array(
-00112                 'yes'    =&gt;'Yes',
-00113                 'no'     =&gt;'No'
-00114             )
-00115         ),
-00116         array(
-00117             'group'     =&gt;'licencegrp',
-00118             'elements'  =&gt;array('licence'),
-00119             'label'     =&gt;'grplkabel'
-00120         ),
-00121         array(
-00122             'element'   =&gt;'full_processed',
-00123             'type'      =&gt;'checkbox',
-00124             'label'     =&gt;'Full processed',
-00125             'required'  =&gt;FALSE
-00126         ),
-00127         array(
-00128             'element'   =&gt;'reset',
-00129             'type'      =&gt;'reset',
-00130             'label'     =&gt;'Reset',
-00131             'groupit'   =&gt;TRUE
-00132         ),
-00133         array(
-00134             'element'   =&gt;'submit',
-00135             'type'      =&gt;'submit',
-00136             'label'     =&gt;'Submit',
-00137             'groupit'   =&gt;TRUE
-00138         ),
-00139         array(
-00140             'group'     =&gt; array('reset', 'submit'),
-00141             'name'      =&gt; NULL,
-00142             'label'     =&gt; NULL,
-00143             'seperator' =&gt; '&amp;nbsp;&amp;nbsp;',
-00144             'appendName'=&gt; NULL
-00145         )
-00146     ),
-00147     'addUser' =&gt; array(
-00148         array(
-00149             'element'   =&gt; 'act',
-00150             'type'      =&gt; 'hidden',
-00151             'constant'  =&gt; 'addUser'
-00152         ),
-00153         array(
-00154             'element'   =&gt; 'login',
-00155             'type'      =&gt; 'text',
-00156             'label'     =&gt; 'Username',
-00157             'required'  =&gt; TRUE
-00158         ),
-00159         array(
-00160             'element'   =&gt;'pass',
-00161             'type'      =&gt;'password',
-00162             'label'     =&gt;'Users Password',
-00163             'required'  =&gt;TRUE
-00164         ),
-00165         array(
-00166             'element'   =&gt;'pass2',
-00167             'type'      =&gt;'password',
-00168             'label'     =&gt;'Repeat Password',
-00169             'required'  =&gt;TRUE
-00170         ),
-00171         array(
-00172             'rule'      =&gt;'compare',
-00173             'element'   =&gt;array('pass<span class="charliteral">','</span>pass2'),
-00174             'errormsg'  =&gt;'Passwords didn�t match'
-00175         ),
-00176         array(
-00177             'element'   =&gt;'submit',
-00178             'type'      =&gt;'submit',
-00179             'label'     =&gt;'Submit'
-00180         )
-00181     ),
-00182     'addGroup' =&gt; array(
-00183         array(
-00184             'element'   =&gt; 'act',
-00185             'type'      =&gt; 'hidden',
-00186             'constant'  =&gt; 'addGroup'
-00187         ),
-00188         array(
-00189             'element'   =&gt; 'login',
-00190             'type'      =&gt; 'text',
-00191             'label'     =&gt; 'Group Name',
-00192             'required'  =&gt; TRUE
-00193         ),
-00194         array(
-00195             'element'   =&gt;'submit',
-00196             'type'      =&gt;'submit',
-00197             'label'     =&gt;'Submit'
-00198         )
-00199     ),
-00200     'login' =&gt; array(
-00201         array(
-00202             'element'   =&gt; 'act',
-00203             'type'      =&gt; 'hidden',
-00204             'constant'  =&gt; 'login'
-00205         ),
-00206         array(
-00207             'element'   =&gt; 'login',
-00208             'type'      =&gt; 'text',
-00209             'label'     =&gt; 'Username',
-00210             'required'  =&gt; TRUE
-00211         ),
-00212         array(
-00213             'element'   =&gt; 'pass',
-00214             'type'      =&gt; 'password',
-00215             'label'     =&gt; 'Password',
-00216             'required'  =&gt; TRUE
-00217         ),
-00218         array(
-00219             'element'   =&gt; 'submit',
-00220             'type'      =&gt; 'submit',
-00221             'label'     =&gt; 'Submit'
-00222         )
-00223     ),
-00224 
-00225 
-00226         #$form-&gt;setConstants(array('<span class="keywordtype">id</span>'=&gt;$<span class="keywordtype">id</span>));
-00227 <span class="preprocessor">        #$form-&gt;addElement('hidden', 'id');</span>
-00228 <span class="preprocessor"></span>
-00229 <span class="preprocessor">        #$form-&gt;addRule('filename', $this-&gt;tra('enter a Filename'), 'required', null, 'client');</span>
-00230 <span class="preprocessor"></span><span class="preprocessor">        #$form-&gt;addRule('mediafile', $this-&gt;tra('select a Media-file'), 'required', null, 'client');</span>
-00231 <span class="preprocessor"></span><span class="preprocessor">        #$form-&gt;addRule('mdatafile', $this-&gt;tra('select a Metadata-file'), 'required', null, 'client');</span>
-00232 <span class="preprocessor"></span>
-00233     '<a class="code" href="ui__handler_8php.html#a2">upload</a>'    =&gt; array(
-00234         array(
-00235             'element'   =&gt; 'act',
-00236             'type'      =&gt; 'hidden',
-00237             'constant'  =&gt; 'upload'
-00238         ),
-00239         array(
-00240             'element'   =&gt; 'MAX_FILE_SIZE',
-00241             'type'      =&gt; 'hidden',
-00242             'constant'  =&gt; UI_INPUT_GBOBJECT_MAXFILESIZE
-00243         ),
-00244         array(
-00245             'element'   =&gt; 'filename',
-00246             'type'      =&gt; 'text',
-00247             'label'     =&gt; 'Filename',
-00248             'required'  =&gt; TRUE
-00249         ),
-00250         array(
-00251             'element'   =&gt; 'mediafile',
-00252             'type'      =&gt; 'file',
-00253             'label'     =&gt; 'Mediafile',
-00254             'required'  =&gt; TRUE,
-00255             'errormsg'  =&gt; 'please select Media file'
-00256         ),
-00257         array(
-00258             'element'   =&gt; 'mdatafile',
-00259             'type'      =&gt; 'file',
-00260             'label'     =&gt; 'Metadata',
-00261             'required'  =&gt; TRUE,
-00262             'errormsg'  =&gt; 'please select Metadata file'
-00263         ),
-00264         array(
-00265             'element'   =&gt; 'submit',
-00266             'type'      =&gt; 'submit',
-00267             'label'     =&gt; 'Submit'
-00268         )
-00269     ),
-00270     '<a class="code" href="ui__browser_8php.html#a4">search</a>'    =&gt; array(
-00271     array(
-00272             'element'   =&gt; 'act',
-00273             'type'      =&gt; 'hidden',
-00274             'constant'  =&gt; 'search'
-00275         ),
-00276         array(
-00277             'element'   =&gt; 'search',
-00278             'type'      =&gt; 'text',
-00279             'label'     =&gt; 'Searchstring',
-00280             'required'  =&gt; TRUE
-00281         ),
-00282         array(
-00283             'element'   =&gt; 'submit',
-00284             'type'      =&gt; 'submit',
-00285             'label'     =&gt; 'Submit'
-00286         )
-00287     )
-00288 );
-</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/ui__fmask_8inc_8php.html b/livesupport/modules/htmlUI/doc/doxygen/html/ui__fmask_8inc_8php.html
deleted file mode 100644
index 8cd052a01..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/ui__fmask_8inc_8php.html
+++ /dev/null
@@ -1,48 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: ui_fmask.inc.php File Reference</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<div class="nav">
-<a class="el" href="dir_000000.html">var</a></div>
-<h1>ui_fmask.inc.php File Reference</h1>
-<p>
-<a href="ui__fmask_8inc_8php-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
-<tr><td></td></tr>
-<tr><td colspan="2"><br><h2>Variables</h2></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__fmask_8inc_8php.html#a0">$ui_fmask</a></td></tr>
-
-</table>
-<hr><h2>Variable Documentation</h2>
-<a class="anchor" name="a0" doxytag="ui_fmask.inc.php::$ui_fmask"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">$ui_fmask          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__fmask_8inc_8php-source.html#l00002">2</a> of file <a class="el" href="ui__fmask_8inc_8php-source.html">ui_fmask.inc.php</a>.    </td>
-  </tr>
-</table>
-<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/ui__handler_8class_8php-source.html b/livesupport/modules/htmlUI/doc/doxygen/html/ui__handler_8class_8php-source.html
deleted file mode 100644
index 11ef76c8d..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/ui__handler_8class_8php-source.html
+++ /dev/null
@@ -1,312 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: ui_handler.class.php Source File</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<div class="nav">
-<a class="el" href="dir_000000.html">var</a></div>
-<h1>ui_handler.class.php</h1><a href="ui__handler_8class_8php.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 &lt;?php
-<a name="l00007"></a><a class="code" href="classuiHandler.html">00007</a> <span class="keyword">class </span><a class="code" href="classuiHandler.html">uiHandler</a> <span class="keyword">extends</span> <a class="code" href="classuiBase.html">uiBase</a> {
-<a name="l00008"></a><a class="code" href="classuiHandler.html#o0">00008</a>     var <a class="code" href="classuiHandler.html#o0">$redirUrl</a>;
-<a name="l00009"></a><a class="code" href="classuiHandler.html#o1">00009</a>     var <a class="code" href="classuiHandler.html#o1">$alertMsg</a>;
-00010 
-<a name="l00011"></a><a class="code" href="classuiHandler.html#a0">00011</a>     function <a class="code" href="classuiHandler.html#a0">uiHandler</a>($config)
-00012     {
-00013         $dbc = DB::connect($config['dsn'], TRUE);
-00014         $dbc-&gt;setFetchMode(DB_FETCHMODE_ASSOC);
-00015         $this-&gt;gb = &amp;<span class="keyword">new</span> GreenBox(&amp;$dbc, $config);
-00016         $this-&gt;<span class="keywordtype">id</span> = (!<a class="code" href="ui__handler_8php.html#a11">$_REQUEST</a>['<span class="keywordtype">id</span>'] ? $this-&gt;gb-&gt;storId : <a class="code" href="ui__handler_8php.html#a11">$_REQUEST</a>['<span class="keywordtype">id</span>']);
-00017         $this-&gt;sessid = <a class="code" href="ui__handler_8php.html#a11">$_REQUEST</a>[<a class="code" href="conf_8php.html#a0">$config</a>['authCookieName']];
-00018         $this-&gt;userid = $this-&gt;gb-&gt;getSessUserId($this-&gt;sessid);
-00019         $this-&gt;<a class="code" href="classuiHandler.html#a1">login</a>  = $this-&gt;gb-&gt;getSessLogin ($this-&gt;sessid);
-00020         $this-&gt;config = <a class="code" href="conf_8php.html#a0">$config</a>;
-00021     }
-00022 
-00023     <span class="comment">// --- authentication ---</span>
-<a name="l00033"></a><a class="code" href="classuiHandler.html#a1">00033</a> <span class="comment"></span>    function <a class="code" href="classuiHandler.html#a1">login</a>(&amp;$formdata, &amp;$mask)
-00034     {    $formdata['xxx'] = 'yyy';
-00035         $this-&gt;redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>;
-00036         <span class="keywordflow">if</span> ($this-&gt;_validateForm($formdata, $mask)) {
-00037             $sessid = $this-&gt;gb-&gt;login($formdata['<a class="code" href="classuiHandler.html#a1">login</a>'], $formdata['pass']);
-00038             <span class="keywordflow">if</span>($sessid &amp;&amp; !PEAR::isError($sessid)){
-00039                 setcookie($this-&gt;config['authCookieName'], $sessid);
-00040 
-00041                 $fid = $this-&gt;gb-&gt;getObjId($formdata['login'], $this-&gt;gb-&gt;storId);
-00042                 <span class="keywordflow">if</span>(!PEAR::isError($fid)) $this-&gt;redirUrl.=<span class="stringliteral">"?id=$fid"</span>;
-00043             }<span class="keywordflow">else</span>{
-00044                 $this-&gt;alertMsg = 'Login failed.';
-00045             }
-00046         }
-00047 
-00048     }
-00049 
-<a name="l00056"></a><a class="code" href="classuiHandler.html#a2">00056</a>     function <a class="code" href="classuiHandler.html#a2">logout</a>()
-00057     {
-00058         $this-&gt;gb-&gt;logout($this-&gt;sessid);
-00059         setcookie($this-&gt;config['authCookieName'], '');
-00060         $this-&gt;redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>;
-00061     }
-00062 
-00063     <span class="comment">// --- files ---</span>
-<a name="l00074"></a><a class="code" href="classuiHandler.html#a3">00074</a> <span class="comment"></span>    function <a class="code" href="classuiHandler.html#a3">upload</a>(&amp;$formdata, $<span class="keywordtype">id</span>, &amp;$mask)
-00075     {
-00076         <span class="keywordflow">if</span> ($this-&gt;_validateForm($formdata, $mask)) {
-00077             $tmpgunid = md5(
-00078                 microtime().$_SERVER['SERVER_ADDR'].rand().<span class="stringliteral">"org.mdlf.livesupport"</span>
-00079             );
-00080             $ntmp = $this-&gt;gb-&gt;bufferDir.<span class="charliteral">'/'</span>.$tmpgunid;
-00081 <span class="preprocessor">            #        $ntmp = tempnam(""{$gb-&gt;bufferDir}", 'gbTmp_');</span>
-00082 <span class="preprocessor"></span>            $mdtmp = <span class="stringliteral">""</span>;
-00083             move_uploaded_file($formdata['mediafile']['tmp_name'], $ntmp);
-00084             chmod($ntmp, 0664);
-00085             <span class="keywordflow">if</span>($formdata['mdatafile']['tmp_name']){
-00086                 $mdtmp = <span class="stringliteral">"$ntmp.xml"</span>;
-00087                 <span class="keywordflow">if</span>(move_uploaded_file($formdata['mdatafile']['tmp_name'], $mdtmp)){
-00088                     chmod($mdtmp, 0664);
-00089                 }
-00090             }
-00091             $r = $this-&gt;gb-&gt;putFile($<span class="keywordtype">id</span>, $formdata['filename'], $ntmp, $mdtmp, $this-&gt;sessid);
-00092             <span class="keywordflow">if</span>(PEAR::isError($r)) $this-&gt;alertMsg = $r-&gt;getMessage();
-00093             <span class="keywordflow">else</span>{
-00094 <span class="preprocessor">            #            $gb-&gt;updateMetadataDB($gb-&gt;_pathFromId($r), $mdata, $sessid);</span>
-00095 <span class="preprocessor"></span>                @unlink($ntmp);
-00096                 @unlink($mdtmp);
-00097             }
-00098             $this-&gt;redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>.<span class="stringliteral">"?id="</span>.$id;
-00099          } <span class="keywordflow">else</span> {
-00100             $this-&gt;redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>.<span class="stringliteral">"?act=newfile&amp;id="</span>.$id;
-00101          }
-00102     }
-00103 
-<a name="l00112"></a><a class="code" href="classuiHandler.html#a4">00112</a>     function <a class="code" href="classuiHandler.html#a4">newFolder</a>($newname, $<span class="keywordtype">id</span>)
-00113     {
-00114         $r = $this-&gt;gb-&gt;createFolder($<span class="keywordtype">id</span>, $newname, $this-&gt;sessid);
-00115         <span class="keywordflow">if</span>(PEAR::isError($r)) $this-&gt;alertMsg = $r-&gt;getMessage();
-00116         $this-&gt;redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>.'?<span class="keywordtype">id</span>='.$id;
-00117     }
-00118 
-<a name="l00127"></a><a class="code" href="classuiHandler.html#a5">00127</a>     function <a class="code" href="classuiHandler.html#a5">rename</a>($newname, $<span class="keywordtype">id</span>)
-00128     {
-00129         $parid = $this-&gt;gb-&gt;getparent($this-&gt;id);
-00130         $r = $this-&gt;gb-&gt;renameFile($<span class="keywordtype">id</span>, $newname, $this-&gt;sessid);
-00131         <span class="keywordflow">if</span>(PEAR::isError($r)) $this-&gt;alertMsg = $r-&gt;getMessage();
-00132         $this-&gt;redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>.<span class="stringliteral">"?id=$parid"</span>;
-00133     }
-00134 
-<a name="l00144"></a><a class="code" href="classuiHandler.html#a6">00144</a>     function <a class="code" href="classuiHandler.html#a6">move</a>($newPath, $<span class="keywordtype">id</span>)
-00145     {
-00146         $newPath = urlencode($newPath);
-00147         $did = $this-&gt;gb-&gt;getObjIdFromRelPath($<span class="keywordtype">id</span>, $newPath);
-00148         $parid = $this-&gt;gb-&gt;getparent($<span class="keywordtype">id</span>);
-00149         $r = $this-&gt;gb-&gt;moveFile($<span class="keywordtype">id</span>, $did, $this-&gt;sessid);
-00150         <span class="keywordflow">if</span>(PEAR::isError($r)){
-00151             $this-&gt;alertMsg = $r-&gt;getMessage();
-00152             $this-&gt;redirUrl  = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>.<span class="stringliteral">"?id=$parid"</span>;
-00153         }
-00154         <span class="keywordflow">else</span> $this-&gt;redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>.<span class="stringliteral">"?id=$did"</span>;
-00155     }
-00156 
-<a name="l00166"></a><a class="code" href="classuiHandler.html#a7">00166</a>     function <a class="code" href="classuiHandler.html#a7">copy</a>($newPath, $<span class="keywordtype">id</span>)
-00167     {
-00168         $newPath = urldecode($newPath);
-00169         $did = $this-&gt;gb-&gt;getObjIdFromRelPath($<span class="keywordtype">id</span>, $newPath);
-00170         $parid = $this-&gt;gb-&gt;getparent($<span class="keywordtype">id</span>);
-00171         $r = $this-&gt;gb-&gt;copyFile($<span class="keywordtype">id</span>, $did, $this-&gt;sessid);
-00172         <span class="keywordflow">if</span>(PEAR::isError($r)){
-00173             $this-&gt;alertMsg = $r-&gt;getMessage();
-00174             $this-&gt;redirUrl  = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>.<span class="stringliteral">"?id=$parid"</span>;
-00175         }
-00176         <span class="keywordflow">else</span> $this-&gt;redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>.<span class="stringliteral">"?id=$did"</span>;
-00177     }
-00178 
-<a name="l00187"></a><a class="code" href="classuiHandler.html#a8">00187</a>     function <span class="keyword">delete</span>($id, $delOverride=FALSE)
-00188     {
-00189         $parid = $this-&gt;gb-&gt;getparent($<span class="keywordtype">id</span>);
-00190 
-00191 <span class="preprocessor">        ## add emtyness-test here ###</span>
-00192 <span class="preprocessor"></span>        <span class="keywordflow">if</span> (!($delOverride==$<span class="keywordtype">id</span>) &amp;&amp; (count($this-&gt;gb-&gt;getObjType($<span class="keywordtype">id</span>)=='Folder'?
-00193                       $this-&gt;gb-&gt;listFolder($<span class="keywordtype">id</span>, $this-&gt;sessid):NULL))) {
-00194             $this-&gt;alertMsg = $this-&gt;<a class="code" href="classuiBase.html#a0">tra</a>(<span class="stringliteral">"Folder is not empty. You can override this protection by clicking DEL again"</span>);
-00195             $this-&gt;redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>.<span class="stringliteral">"?id=$parid&amp;delOverride=$id"</span>;
-00196             <span class="keywordflow">return</span>;
-00197         }
-00198 <span class="preprocessor">        #############################</span>
-00199 <span class="preprocessor"></span>
-00200         $r = $this-&gt;gb-&gt;deleteFile($<span class="keywordtype">id</span>, $this-&gt;sessid);
-00201         <span class="keywordflow">if</span>(PEAR::isError($r)) $this-&gt;alertMsg = $r-&gt;getMessage();
-00202         $this-&gt;redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>.<span class="stringliteral">"?id=$parid"</span>;
-00203     }
-00204 
-00205 
-<a name="l00215"></a><a class="code" href="classuiHandler.html#a9">00215</a>     function <a class="code" href="classuiHandler.html#a9">getFile</a>($<span class="keywordtype">id</span>)
-00216     {
-00217         $r = $this-&gt;gb-&gt;access($<span class="keywordtype">id</span>, $this-&gt;sessid);
-00218         <span class="keywordflow">if</span>(PEAR::isError($r)) $this-&gt;alertMsg = $r-&gt;getMessage();
-00219         <span class="keywordflow">else</span> echo $r;
-00220     }
-00221 
-<a name="l00229"></a><a class="code" href="classuiHandler.html#a10">00229</a>     function <a class="code" href="classuiHandler.html#a10">getMdata</a>($<span class="keywordtype">id</span>)
-00230     {
-00231         header(<span class="stringliteral">"Content-type: text/xml"</span>);
-00232         $r = $this-&gt;gb-&gt;getMdata($<span class="keywordtype">id</span>, $this-&gt;sessid);
-00233         print_r($r);
-00234     }
-00235 
-<a name="l00244"></a><a class="code" href="classuiHandler.html#a11">00244</a>     function <a class="code" href="classuiHandler.html#a11">getInfo</a>($<span class="keywordtype">id</span>)
-00245     {
-00246         header(<span class="stringliteral">"Content-type: text/plain"</span>);
-00247         $ia = $this-&gt;gb-&gt;analyzeFile($<span class="keywordtype">id</span>, $this-&gt;sessid);
-00248         echo<span class="stringliteral">"fileformat: {$ia['fileformat']}\n"</span>;
-00249         echo<span class="stringliteral">"channels: {$ia['audio']['channels']}\n"</span>;
-00250         echo<span class="stringliteral">"sample_rate: {$ia['audio']['sample_rate']}\n"</span>;
-00251         echo<span class="stringliteral">"bits_per_sample: {$ia['audio']['bits_per_sample']}\n"</span>;
-00252         echo<span class="stringliteral">"channelmode: {$ia['audio']['channelmode']}\n"</span>;
-00253         echo<span class="stringliteral">"title: {$ia['id3v1']['title']}\n"</span>;
-00254         echo<span class="stringliteral">"artist: {$ia['id3v1']['artist']}\n"</span>;
-00255         echo<span class="stringliteral">"comment: {$ia['id3v1']['comment']}\n"</span>;
-00256     }
-00257 
-00258    <span class="comment">// --- subjs ----</span>
-<a name="l00266"></a><a class="code" href="classuiHandler.html#a12">00266</a> <span class="comment"></span>    function <a class="code" href="classuiHandler.html#a12">addSubj</a>(&amp;$formdata, &amp;$mask)
-00267     {
-00268         $this-&gt;redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>.'?act='.$_REQUEST['act'];
-00269 
-00270 <span class="preprocessor">        ## first validate the form data</span>
-00271 <span class="preprocessor"></span>        <span class="keywordflow">if</span> ($this-&gt;_validateForm($formdata, $mask)) {
-00272             <span class="keywordflow">if</span>($this-&gt;gb-&gt;checkPerm($this-&gt;userid, '<a class="code" href="ui__browser_8php.html#a5">subjects</a>')){
-00273                 $res = $this-&gt;gb-&gt;addSubj($formdata['<a class="code" href="classuiHandler.html#a1">login</a>'], ($formdata['pass']=='' ? NULL:$formdata['pass'] ));
-00274                 $this-&gt;alertMsg = $this-&gt;<a class="code" href="classuiBase.html#a0">tra</a>('Subject <span class="stringliteral">"'.$formdata['login'].'"</span> added.');
-00275             } <span class="keywordflow">else</span> {
-00276                 $this-&gt;alertMsg = $this-&gt;<a class="code" href="classuiBase.html#a0">tra</a>('Access denied.');
-00277                 <span class="keywordflow">return</span>;
-00278             }
-00279         }
-00280         <span class="keywordflow">if</span>(PEAR::isError($res)) $this-&gt;alertMsg = $res-&gt;getMessage();
-00281     }
-00282 
-<a name="l00290"></a><a class="code" href="classuiHandler.html#a13">00290</a>     function <a class="code" href="classuiHandler.html#a13">removeSubj</a>($login)
-00291     {
-00292         $this-&gt;redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>.'?act=<a class="code" href="ui__browser_8php.html#a5">subjects</a>';
-00293 
-00294         <span class="keywordflow">if</span>($this-&gt;gb-&gt;checkPerm($this-&gt;userid, '<a class="code" href="ui__browser_8php.html#a5">subjects</a>')){
-00295             $res = $this-&gt;gb-&gt;removeSubj($<a class="code" href="classuiHandler.html#a1">login</a>);
-00296         }<span class="keywordflow">else</span>{
-00297             $this-&gt;alertMsg='Access denied.';
-00298             <span class="keywordflow">return</span>;
-00299         }
-00300         <span class="keywordflow">if</span>(PEAR::isError($res)) $this-&gt;alertMsg = $res-&gt;getMessage();
-00301     }
-00302 
-<a name="l00313"></a><a class="code" href="classuiHandler.html#a14">00313</a>     function <a class="code" href="classuiHandler.html#a14">passwd</a>($uid, $oldpass, $pass, $pass2)
-00314     {
-00315         $this-&gt;redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>.'?act=<a class="code" href="ui__browser_8php.html#a5">subjects</a>';
-00316         $ulogin = $this-&gt;gb-&gt;getSubjName($uid);
-00317 
-00318         <span class="keywordflow">if</span>($this-&gt;userid != $uid &amp;&amp;
-00319             ! $this-&gt;gb-&gt;checkPerm($this-&gt;userid, '<a class="code" href="ui__browser_8php.html#a5">subjects</a>')){
-00320             $this-&gt;alertMsg='Access denied..';
-00321             <span class="keywordflow">return</span>;
-00322         }
-00323         <span class="keywordflow">if</span>(FALSE === $this-&gt;gb-&gt;authenticate($ulogin, $oldpass)){
-00324             $this-&gt;alertMsg='Wrong old pasword.';
-00325             <span class="keywordflow">return</span>;
-00326         }
-00327         <span class="keywordflow">if</span>($pass !== $pass2){
-00328             $this-&gt;alertMsg = <span class="stringliteral">"Passwords do not match. "</span>.
-00329                 <span class="stringliteral">"($pass/$pass2)"</span>;
-00330             $this-&gt;redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>.'?act=<a class="code" href="ui__browser_8php.html#a5">subjects</a>';
-00331             <span class="keywordflow">return</span>;
-00332         }
-00333         $this-&gt;gb-&gt;passwd($ulogin, $oldpass, $pass);
-00334     }
-00335 
-00336     <span class="comment">// --- perms ---</span>
-<a name="l00347"></a><a class="code" href="classuiHandler.html#a15">00347</a> <span class="comment"></span>    function <a class="code" href="classuiHandler.html#a15">addPerm</a>($subj, $permAction, $<span class="keywordtype">id</span>, $allowDeny)
-00348     {
-00349         <span class="keywordflow">if</span>($this-&gt;gb-&gt;checkPerm($this-&gt;userid, 'editPerms', $<span class="keywordtype">id</span>)){
-00350             $this-&gt;gb-&gt;addPerm($subj, $permAction,
-00351                 $<span class="keywordtype">id</span>, $allowDeny);
-00352         }<span class="keywordflow">else</span>{
-00353             $this-&gt;alertMsg='Access denied.';
-00354         }
-00355         $this-&gt;redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>.'?<span class="keywordtype">id</span>='.$id.'&amp;act=<a class="code" href="ui__browser_8php.html#a1">permissions</a>';
-00356     }
-00357 
-<a name="l00365"></a><a class="code" href="classuiHandler.html#a16">00365</a>     function <a class="code" href="classuiHandler.html#a16">removePerm</a>($permid, $oid)
-00366     {
-00367         <span class="keywordflow">if</span>($this-&gt;gb-&gt;checkPerm($this-&gt;userid, 'editPerms', $oid))
-00368             $this-&gt;gb-&gt;removePerm($permid);
-00369         <span class="keywordflow">else</span> $this-&gt;alertMsg='Access denied.';
-00370         $this-&gt;redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>.'?act=<a class="code" href="ui__browser_8php.html#a1">permissions</a>&amp;<span class="keywordtype">id</span>='.$id;
-00371     }
-00372 
-00373 
-<a name="l00384"></a><a class="code" href="classuiHandler.html#a17">00384</a>     function <a class="code" href="classuiHandler.html#a17">addSubj2Group</a>($login, $gname, $reid)
-00385     {
-00386         <span class="keywordflow">if</span>($this-&gt;gb-&gt;checkPerm($this-&gt;userid, '<a class="code" href="ui__browser_8php.html#a5">subjects</a>')){
-00387             $res = $this-&gt;gb-&gt;addSubj2Gr($<a class="code" href="classuiHandler.html#a1">login</a>, $gname);
-00388         }<span class="keywordflow">else</span>{
-00389             $this-&gt;alertMsg='Access denied.';
-00390             <span class="keywordflow">return</span>;
-00391         }
-00392         <span class="keywordflow">if</span>(PEAR::isError($res)) $this-&gt;alertMsg = $res-&gt;getMessage();
-00393 
-00394         $this-&gt;redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>.'?act=<a class="code" href="ui__browser_8php.html#a8">groups</a>&amp;<span class="keywordtype">id</span>='.$reid;
-00395     }
-00396 
-<a name="l00404"></a><a class="code" href="classuiHandler.html#a18">00404</a>     function <a class="code" href="classuiHandler.html#a18">removeSubjFromGr</a>($login, $gname, $reid)
-00405     {
-00406         <span class="keywordflow">if</span>($this-&gt;gb-&gt;checkPerm($this-&gt;userid, '<a class="code" href="ui__browser_8php.html#a5">subjects</a>')){
-00407             $res = $this-&gt;gb-&gt;removeSubjFromGr($<a class="code" href="classuiHandler.html#a1">login</a>, $gname);
-00408         }<span class="keywordflow">else</span>{
-00409             $this-&gt;alertMsg='Access denied.';
-00410             <span class="keywordflow">return</span>;
-00411         }
-00412         <span class="keywordflow">if</span>(PEAR::isError($res)) $this-&gt;alertMsg = $res-&gt;getMessage();
-00413 
-00414         $this-&gt;redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>.'?act=<a class="code" href="ui__browser_8php.html#a8">groups</a>&amp;<span class="keywordtype">id</span>='.$reid;
-00415     }
-00416 
-00417 
-<a name="l00418"></a><a class="code" href="classuiHandler.html#a19">00418</a>     function <a class="code" href="classuiHandler.html#a19">storeSystemPrefs</a>(&amp;$formdata, &amp;$mask)
-00419     {
-00420 <span class="preprocessor">        ## first validate the form data</span>
-00421 <span class="preprocessor"></span>        <span class="keywordflow">if</span> ($this-&gt;_validateForm($formdata, $mask)) {
-00422             $this-&gt;alertMsg = $this-&gt;<a class="code" href="classuiBase.html#a0">tra</a>('Settings saved');
-00423             $this-&gt;redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>;
-00424             <span class="keywordflow">return</span>;
-00425         }
-00426         $this-&gt;redirUrl = <a class="code" href="conf_8php.html#a2">UI_BROWSER</a>.'?act=<a class="code" href="ui__browser_8php.html#a13">systemPrefs</a>';
-00427     }
-00428 
-<a name="l00429"></a><a class="code" href="classuiHandler.html#a20">00429</a>     function <a class="code" href="classuiHandler.html#a20">_validateForm</a>(&amp;$formdata, &amp;$mask)
-00430     {
-00431         $form = <span class="keyword">new</span> HTML_QuickForm('validation', UI_STANDARD_FORM_METHOD, <a class="code" href="conf_8php.html#a1">UI_HANDLER</a>);
-00432         $this-&gt;<a class="code" href="classuiBase.html#a1">_parseArr2Form</a>($form, $mask, 'server');
-00433         <span class="keywordflow">if</span> (!$form-&gt;validate()) {
-00434             $_SESSION['retransferFormData'] = $formdata;
-00435             <span class="keywordflow">return</span> FALSE;
-00436         }
-00437 <span class="preprocessor">        ## test for uploadet files ####</span>
-00438 <span class="preprocessor"></span>        foreach($mask as $k) {
-00439             <span class="keywordflow">if</span> ($k['type']=='file') {
-00440                 <span class="keywordflow">if</span> ($formdata[$k['element']]['error']) {
-00441                     $_SESSION['retransferFormData'] = $formdata;
-00442                     <span class="keywordflow">return</span> FALSE;
-00443                 }
-00444             }
-00445         }
-00446         reset($mask);
-00447         <span class="keywordflow">return</span> TRUE;
-00448     }
-00449 
-00450 }
-00451 
-00452 ?&gt;
-</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/ui__handler_8class_8php.html b/livesupport/modules/htmlUI/doc/doxygen/html/ui__handler_8class_8php.html
deleted file mode 100644
index 35e811cf9..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/ui__handler_8class_8php.html
+++ /dev/null
@@ -1,19 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: ui_handler.class.php File Reference</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<div class="nav">
-<a class="el" href="dir_000000.html">var</a></div>
-<h1>ui_handler.class.php File Reference</h1>
-<p>
-<a href="ui__handler_8class_8php-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
-<tr><td></td></tr>
-</table>
-<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/ui__handler_8php-source.html b/livesupport/modules/htmlUI/doc/doxygen/html/ui__handler_8php-source.html
deleted file mode 100644
index 375714e9b..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/ui__handler_8php-source.html
+++ /dev/null
@@ -1,95 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: ui_handler.php Source File</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<div class="nav">
-<a class="el" href="dir_000000.html">var</a>&nbsp;/&nbsp;<a class="el" href="dir_000001.html">html</a></div>
-<h1>ui_handler.php</h1><a href="ui__handler_8php.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 &lt;?php
-00002 require dirname(__FILE__).'/../ui_handler_init.php';
-00003 
-00004 <span class="keywordflow">switch</span>(<a class="code" href="ui__handler_8php.html#a11">$_REQUEST</a>['act']){
-00005 
-00006     <span class="keywordflow">case</span> <span class="stringliteral">"login"</span>;
-00007         <a class="code" href="ui__handler__init_8php.html#a0">$uiHandler</a>-&gt;login($_REQUEST, $ui_fmask[<span class="stringliteral">"login"</span>]);
-00008     <span class="keywordflow">break</span>;
-00009 
-<a name="l00010"></a><a class="code" href="ui__handler_8php.html#a1">00010</a>     <span class="keywordflow">case</span> <span class="stringliteral">"logout"</span>;
-00011         <a class="code" href="ui__handler__init_8php.html#a0">$uiHandler</a>-&gt;logout();
-00012     <span class="keywordflow">break</span>;
-00013 
-00014     <span class="keywordflow">case</span> <span class="stringliteral">"upload"</span>:
-<a name="l00015"></a><a class="code" href="ui__handler_8php.html#a2">00015</a>         <a class="code" href="ui__handler__init_8php.html#a0">$uiHandler</a>-&gt;upload(array_merge($_REQUEST, $_FILES), $<a class="code" href="classuiHandler.html">uiHandler</a>-&gt;id, $ui_fmask[<span class="stringliteral">"upload"</span>]);
-00016     <span class="keywordflow">break</span>;
-00017 
-00018     <span class="keywordflow">case</span> <span class="stringliteral">"newFolder"</span>:
-<a name="l00019"></a><a class="code" href="ui__handler_8php.html#a6">00019</a>         <a class="code" href="ui__handler__init_8php.html#a0">$uiHandler</a>-&gt;newFolder($_REQUEST[<span class="stringliteral">"newname"</span>], $<a class="code" href="classuiHandler.html">uiHandler</a>-&gt;id);
-00020     <span class="keywordflow">break</span>;
-00021 
-00022     <span class="keywordflow">case</span> <span class="stringliteral">"rename"</span>:
-<a name="l00023"></a><a class="code" href="ui__handler_8php.html#a7">00023</a>         <a class="code" href="ui__handler__init_8php.html#a0">$uiHandler</a>-&gt;rename($_REQUEST[<span class="stringliteral">"newname"</span>], $<a class="code" href="classuiHandler.html">uiHandler</a>-&gt;id);
-00024     <span class="keywordflow">break</span>;
-00025 
-00026     <span class="keywordflow">case</span> <span class="stringliteral">"move"</span>:
-<a name="l00027"></a><a class="code" href="ui__handler_8php.html#a8">00027</a>         <a class="code" href="ui__handler__init_8php.html#a0">$uiHandler</a>-&gt;move($_REQUEST[<span class="stringliteral">"newPath"</span>], $<a class="code" href="classuiHandler.html">uiHandler</a>-&gt;id);
-00028     <span class="keywordflow">break</span>;
-00029 
-00030     <span class="keywordflow">case</span> <span class="stringliteral">"copy"</span>:
-<a name="l00031"></a><a class="code" href="ui__handler_8php.html#a9">00031</a>         <a class="code" href="ui__handler__init_8php.html#a0">$uiHandler</a>-&gt;copy($_REQUEST[<span class="stringliteral">"newPath"</span>], $<a class="code" href="classuiHandler.html">uiHandler</a>-&gt;id);
-00032     <span class="keywordflow">break</span>;
-00033 
-00034     <span class="keywordflow">case</span> <span class="stringliteral">"delete"</span>:
-<a name="l00035"></a><a class="code" href="ui__handler_8php.html#a10">00035</a>         <a class="code" href="ui__handler__init_8php.html#a0">$uiHandler</a>-&gt;delete($<a class="code" href="classuiHandler.html">uiHandler</a>-&gt;id, $_REQUEST[<span class="stringliteral">"delOverride"</span>]);
-00036     <span class="keywordflow">break</span>;
-00037 
-00038     <span class="keywordflow">case</span> <span class="stringliteral">"addUser"</span>:
-<a name="l00039"></a><a class="code" href="ui__handler_8php.html#a12">00039</a>         <a class="code" href="ui__handler__init_8php.html#a0">$uiHandler</a>-&gt;addSubj($_REQUEST, $ui_fmask[<span class="stringliteral">"addUser"</span>]);
-00040     <span class="keywordflow">break</span>;
-00041 
-00042     <span class="keywordflow">case</span> <span class="stringliteral">"addGroup"</span>:
-<a name="l00043"></a><a class="code" href="ui__handler_8php.html#a13">00043</a>         <a class="code" href="ui__handler__init_8php.html#a0">$uiHandler</a>-&gt;addSubj($_REQUEST, $ui_fmask[<span class="stringliteral">"addGroup"</span>]);
-00044     <span class="keywordflow">break</span>;
-00045 
-00046     <span class="keywordflow">case</span> <span class="stringliteral">"removeSubj"</span>:
-<a name="l00047"></a><a class="code" href="ui__handler_8php.html#a14">00047</a>         <a class="code" href="ui__handler__init_8php.html#a0">$uiHandler</a>-&gt;removeSubj($_REQUEST[<span class="stringliteral">"login"</span>]);
-00048     <span class="keywordflow">break</span>;
-00049 
-00050     <span class="keywordflow">case</span> <span class="stringliteral">"changePasswd"</span>:
-<a name="l00051"></a><a class="code" href="ui__handler_8php.html#a15">00051</a>         <a class="code" href="ui__handler__init_8php.html#a0">$uiHandler</a>-&gt;passwd($_REQUEST[<span class="stringliteral">"uid"</span>], $_REQUEST[<span class="stringliteral">"oldpass"</span>], $_REQUEST[<span class="stringliteral">"pass"</span>], $_REQUEST[<span class="stringliteral">"pass2"</span>]);
-00052     <span class="keywordflow">break</span>;
-00053 
-00054     <span class="keywordflow">case</span> <span class="stringliteral">"addPerm"</span>:
-<a name="l00055"></a><a class="code" href="ui__handler_8php.html#a4">00055</a>         <a class="code" href="ui__handler__init_8php.html#a0">$uiHandler</a>-&gt;addPerm($_REQUEST[<span class="stringliteral">"subj"</span>], $_REQUEST[<span class="stringliteral">"permAction"</span>], $<a class="code" href="classuiHandler.html">uiHandler</a>-&gt;id, $_REQUEST[<span class="stringliteral">"allowDeny"</span>]);
-00056     <span class="keywordflow">break</span>;
-00057 
-00058     <span class="keywordflow">case</span> <span class="stringliteral">"removePerm"</span>:
-<a name="l00059"></a><a class="code" href="ui__handler_8php.html#a17">00059</a>         <a class="code" href="ui__handler__init_8php.html#a0">$uiHandler</a>-&gt;removePerm($_REQUEST[<span class="stringliteral">"permid"</span>], $_REQUEST[<span class="stringliteral">"oid"</span>]);
-00060     <span class="keywordflow">break</span>;
-00061 
-00062     <span class="keywordflow">case</span> <span class="stringliteral">"addSubj2Group"</span>:
-<a name="l00063"></a><a class="code" href="ui__handler_8php.html#a18">00063</a>         <a class="code" href="ui__handler__init_8php.html#a0">$uiHandler</a>-&gt;addSubj2Group($_REQUEST[<span class="stringliteral">"login"</span>], $_REQUEST[<span class="stringliteral">"gname"</span>], $_REQUEST[<span class="stringliteral">"reid"</span>]);
-00064     <span class="keywordflow">break</span>;
-00065 
-00066     <span class="keywordflow">case</span> <span class="stringliteral">"removeSubjFromGr"</span>:
-<a name="l00067"></a><a class="code" href="ui__handler_8php.html#a19">00067</a>         <a class="code" href="ui__handler__init_8php.html#a0">$uiHandler</a>-&gt;removeSubjFromGr($_REQUEST[<span class="stringliteral">"login"</span>], $_REQUEST[<span class="stringliteral">"gname"</span>], $_REQUEST[<span class="stringliteral">"reid"</span>]);
-00068     <span class="keywordflow">break</span>;
-00069 
-00070     <span class="keywordflow">case</span> <span class="stringliteral">"systemPrefs"</span>:
-<a name="l00071"></a><a class="code" href="ui__handler_8php.html#a20">00071</a>         <a class="code" href="ui__handler__init_8php.html#a0">$uiHandler</a>-&gt;storeSystemPrefs($_REQUEST, $ui_fmask[<span class="stringliteral">"systemPrefs"</span>]);
-<a name="l00072"></a><a class="code" href="ui__handler_8php.html#a0">00072</a>     <span class="keywordflow">break</span>;
-00073 
-00074     <span class="keywordflow">default</span>:
-<a name="l00075"></a><a class="code" href="ui__handler_8php.html#a21">00075</a>         $_SESSION[<span class="stringliteral">"alertMsg"</span>] = <a class="code" href="ui__handler__init_8php.html#a0">$uiHandler</a>-&gt;tra(<span class="stringliteral">"Unknown method: "</span>).$_REQUEST[<span class="stringliteral">"act"</span>];
-00076         header(<span class="stringliteral">"Location: "</span>.UI_BROWSER);
-00077         die();
-00078 }
-00079 <span class="keywordflow">if</span> ($<a class="code" href="classuiHandler.html">uiHandler</a>-&gt;alertMsg) $_SESSION['alertMsg'] = $uiHandler-&gt;alertMsg;
-00080 header('Location: '.$uiHandler-&gt;redirUrl);
-00081 ?&gt;
-</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/ui__handler_8php.html b/livesupport/modules/htmlUI/doc/doxygen/html/ui__handler_8php.html
deleted file mode 100644
index d577c5dfa..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/ui__handler_8php.html
+++ /dev/null
@@ -1,621 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: ui_handler.php File Reference</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<div class="nav">
-<a class="el" href="dir_000000.html">var</a>&nbsp;/&nbsp;<a class="el" href="dir_000001.html">html</a></div>
-<h1>ui_handler.php File Reference</h1>
-<p>
-<a href="ui__handler_8php-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
-<tr><td></td></tr>
-<tr><td colspan="2"><br><h2>Variables</h2></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a0">break</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">case&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a1">logout</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">case&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a2">upload</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">case&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a3">$_FILES</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">case $<a class="el" href="classuiHandler.html">uiHandler</a>&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a4">id</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">case $<a class="el" href="classuiHandler.html">uiHandler</a>&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a5">$ui_fmask</a> ["upload"]</td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">case&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a6">newFolder</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">case&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a7">rename</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">case&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a8">move</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">case&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a9">copy</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">case&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a10">delete</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">case&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a11">$_REQUEST</a> ["delOverride"]</td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">case&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a12">addUser</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">case&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a13">addGroup</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">case&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a14">removeSubj</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">case&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a15">changePasswd</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">case&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a16">addPerm</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">case&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a17">removePerm</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">case&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a18">addSubj2Group</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">case&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a19">removeSubjFromGr</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">case&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a20">systemPrefs</a></td></tr>
-
-<tr><td class="memItemLeft" nowrap align="right" valign="top">default&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler_8php.html#a21">__pad0__</a></td></tr>
-
-</table>
-<hr><h2>Variable Documentation</h2>
-<a class="anchor" name="a3" doxytag="ui_handler.php::$_FILES"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">case $_FILES          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8php-source.html#l00015">15</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a11" doxytag="ui_handler.php::$_REQUEST"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">case $_REQUEST["reid"]          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8php-source.html#l00067">67</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>.
-<p>
-Referenced by <a class="el" href="ui__browser_8class_8php-source.html#l00099">uiBrowser::getStructure()</a>, <a class="el" href="ui__browser_8class_8php-source.html#l00015">uiBrowser::uiBrowser()</a>, and <a class="el" href="ui__handler_8class_8php-source.html#l00011">uiHandler::uiHandler()</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a5" doxytag="ui_handler.php::$ui_fmask"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">case $ui_fmask["systemPrefs"]          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8php-source.html#l00071">71</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a21" doxytag="ui_handler.php::__pad0__"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">default <a class="el" href="ui__handler_8php.html#a21">__pad0__</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8php-source.html#l00075">75</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a13" doxytag="ui_handler.php::addGroup"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">case <a class="el" href="ui__handler_8php.html#a13">addGroup</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8php-source.html#l00043">43</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a16" doxytag="ui_handler.php::addPerm"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">case <a class="el" href="ui__handler_8php.html#a16">addPerm</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8php-source.html#l00055">55</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a18" doxytag="ui_handler.php::addSubj2Group"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">case <a class="el" href="ui__handler_8php.html#a18">addSubj2Group</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8php-source.html#l00063">63</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>.
-<p>
-Referenced by <a class="el" href="ui__browser_8class_8php-source.html#l00262">uiBrowser::getSubj2GroupForm()</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a12" doxytag="ui_handler.php::addUser"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">case <a class="el" href="ui__handler_8php.html#a12">addUser</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8php-source.html#l00039">39</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a0" doxytag="ui_handler.php::break"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top"><a class="el" href="ui__handler_8php.html#a0">break</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8php-source.html#l00072">72</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a15" doxytag="ui_handler.php::changePasswd"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">case <a class="el" href="ui__handler_8php.html#a15">changePasswd</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8php-source.html#l00051">51</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>.
-<p>
-Referenced by <a class="el" href="ui__browser_8class_8php-source.html#l00214">uiBrowser::getChangePasswdForm()</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a9" doxytag="ui_handler.php::copy"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">case <a class="el" href="ui__handler_8php.html#a9">copy</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8php-source.html#l00031">31</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a10" doxytag="ui_handler.php::delete"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">case <a class="el" href="ui__handler_8php.html#a10">delete</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8php-source.html#l00035">35</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a4" doxytag="ui_handler.php::id"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">case <a class="el" href="classuiHandler.html">uiHandler</a> <a class="el" href="ui__handler_8php.html#a4">id</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8php-source.html#l00055">55</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a1" doxytag="ui_handler.php::logout"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">case <a class="el" href="ui__handler_8php.html#a1">logout</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8php-source.html#l00010">10</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a8" doxytag="ui_handler.php::move"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">case <a class="el" href="ui__handler_8php.html#a8">move</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8php-source.html#l00027">27</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a6" doxytag="ui_handler.php::newFolder"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">case <a class="el" href="ui__handler_8php.html#a6">newFolder</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8php-source.html#l00019">19</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a17" doxytag="ui_handler.php::removePerm"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">case <a class="el" href="ui__handler_8php.html#a17">removePerm</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8php-source.html#l00059">59</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a14" doxytag="ui_handler.php::removeSubj"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">case <a class="el" href="ui__handler_8php.html#a14">removeSubj</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8php-source.html#l00047">47</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a19" doxytag="ui_handler.php::removeSubjFromGr"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">case <a class="el" href="ui__handler_8php.html#a19">removeSubjFromGr</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8php-source.html#l00067">67</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a7" doxytag="ui_handler.php::rename"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">case <a class="el" href="ui__handler_8php.html#a7">rename</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8php-source.html#l00023">23</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a20" doxytag="ui_handler.php::systemPrefs"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">case <a class="el" href="ui__handler_8php.html#a20">systemPrefs</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8php-source.html#l00071">71</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>.    </td>
-  </tr>
-</table>
-<a class="anchor" name="a2" doxytag="ui_handler.php::upload"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">case <a class="el" href="ui__handler_8php.html#a2">upload</a>          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__handler_8php-source.html#l00015">15</a> of file <a class="el" href="ui__handler_8php-source.html">ui_handler.php</a>.    </td>
-  </tr>
-</table>
-<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/ui__handler__init_8php-source.html b/livesupport/modules/htmlUI/doc/doxygen/html/ui__handler__init_8php-source.html
deleted file mode 100644
index 9f4de0b30..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/ui__handler__init_8php-source.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: ui_handler_init.php Source File</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<div class="nav">
-<a class="el" href="dir_000000.html">var</a></div>
-<h1>ui_handler_init.php</h1><a href="ui__handler__init_8php.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment">00001 &lt;?php
-00002 session_start();
-00003 require_once dirname(__FILE__).'/conf.php';
-00004 require_once dirname(__FILE__).'/ui_fmask.inc.php';
-00005 
-00006 <span class="comment">// LS classes/functions</span>
-00007 require_once dirname(__FILE__).'/../../storageServer/var/GreenBox.php';
-00008 require_once dirname(__FILE__).'/ui_base.inc.php';
-00009 require_once dirname(__FILE__).'/ui_handler.class.php';
-00010 
-00011 <span class="comment">// well known classes</span>
-00012 require_once 'DB.php';
-00013 require_once 'HTML/QuickForm.php';
-00014 
-00015 <span class="preprocessor">#PEAR::setErrorHandling(PEAR_ERROR_TRIGGER, E_USER_WARNING);</span>
-00016 <span class="preprocessor"></span><span class="preprocessor">#PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, 'errCallBack');</span>
-00017 <span class="preprocessor"></span>PEAR::setErrorHandling(PEAR_ERROR_RETURN);
-00018 <span class="preprocessor">#PEAR::setErrorHandling(PEAR_ERROR_PRINT);</span>
-00019 <span class="preprocessor"></span>
-<a name="l00020"></a><a class="code" href="ui__handler__init_8php.html#a0">00020</a> <a class="code" href="ui__handler__init_8php.html#a0">$uiHandler</a> = <span class="keyword">new</span> <a class="code" href="classuiHandler.html">uiHandler</a>($config);
-00021 ?&gt;
-</pre></div><hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/doc/doxygen/html/ui__handler__init_8php.html b/livesupport/modules/htmlUI/doc/doxygen/html/ui__handler__init_8php.html
deleted file mode 100644
index ae3d17e97..000000000
--- a/livesupport/modules/htmlUI/doc/doxygen/html/ui__handler__init_8php.html
+++ /dev/null
@@ -1,48 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
-<title>LiveSupport&amp;nbsp;-&amp;nbsp;htmlUI&amp;nbsp;module: ui_handler_init.php File Reference</title>
-<link href="doxygen.css" rel="stylesheet" type="text/css">
-</head><body>
-<!-- Generated by Doxygen 1.4.0 -->
-<div class="qindex"><a class="qindex" href="index.html">Main&nbsp;Page</a> | <a class="qindex" href="hierarchy.html">Class&nbsp;Hierarchy</a> | <a class="qindex" href="classes.html">Alphabetical&nbsp;List</a> | <a class="qindex" href="annotated.html">Class&nbsp;List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File&nbsp;List</a> | <a class="qindex" href="functions.html">Class&nbsp;Members</a> | <a class="qindex" href="globals.html">File&nbsp;Members</a></div>
-<div class="nav">
-<a class="el" href="dir_000000.html">var</a></div>
-<h1>ui_handler_init.php File Reference</h1>
-<p>
-<a href="ui__handler__init_8php-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0">
-<tr><td></td></tr>
-<tr><td colspan="2"><br><h2>Variables</h2></td></tr>
-<tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="ui__handler__init_8php.html#a0">$uiHandler</a> = new <a class="el" href="classuiHandler.html">uiHandler</a>($config)</td></tr>
-
-</table>
-<hr><h2>Variable Documentation</h2>
-<a class="anchor" name="a0" doxytag="ui_handler_init.php::$uiHandler"></a><p>
-<table class="mdTable" cellpadding="2" cellspacing="0">
-  <tr>
-    <td class="mdRow">
-      <table cellpadding="0" cellspacing="0" border="0">
-        <tr>
-          <td class="md" nowrap valign="top">$<a class="el" href="classuiHandler.html">uiHandler</a> = new <a class="el" href="classuiHandler.html">uiHandler</a>($config)          </td>
-        </tr>
-      </table>
-    </td>
-  </tr>
-</table>
-<table cellspacing="5" cellpadding="0" border="0">
-  <tr>
-    <td>
-      &nbsp;
-    </td>
-    <td>
-
-<p>
-
-<p>
-Definition at line <a class="el" href="ui__handler__init_8php-source.html#l00020">20</a> of file <a class="el" href="ui__handler__init_8php-source.html">ui_handler_init.php</a>.    </td>
-  </tr>
-</table>
-<hr size="1"><address style="align: right;"><small>Generated on Wed Jan 12 16:22:49 2005 for LiveSupport&nbsp;-&nbsp;htmlUI&nbsp;module by&nbsp;
-<a href="http://www.doxygen.org/index.html">
-<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.0 </small></address>
-</body>
-</html>
diff --git a/livesupport/modules/htmlUI/var/Smarty-2.6.6.tar.gz b/livesupport/modules/htmlUI/var/Smarty-2.6.6.tar.gz
deleted file mode 100644
index e59e81e7f..000000000
Binary files a/livesupport/modules/htmlUI/var/Smarty-2.6.6.tar.gz and /dev/null differ