diff --git a/phpgwapi/templates/default/parts.inc.php b/phpgwapi/templates/default/parts.inc.php
deleted file mode 100644
index 43c00dc1ac..0000000000
--- a/phpgwapi/templates/default/parts.inc.php
+++ /dev/null
@@ -1,125 +0,0 @@
-template->set_var('phpgw_left_table_width','5%');
- $GLOBALS['phpgw']->template->set_var('phpgw_right_table_width','5%');
-
- $GLOBALS['phpgw']->template->set_var('phpgw_top_table_height','5%');
- $GLOBALS['phpgw']->template->set_var('phpgw_top_frame_height','45');
- $GLOBALS['phpgw']->template->set_var('phpgw_top_scrolling','NO');
- $GLOBALS['phpgw']->template->set_var('phpgw_body_table_width','90%');
- $GLOBALS['phpgw']->template->set_var('phpgw_body_table_height','89%');
- $GLOBALS['phpgw']->template->set_var('phpgw_bottom_table_height','1%');
- $GLOBALS['phpgw']->template->set_var('phpgw_bottom_frame_height','40');
-
- function parse_toppart($output)
- {
- $GLOBALS['phpgw']->template->set_file('parts','parts.tpl');
- $GLOBALS['phpgw']->template->set_block('parts','top_part');
- $GLOBALS['phpgw']->template->set_block('parts','top_part_app');
-
- /* $var['navbar_color'] = $GLOBALS['phpgw_info']['theme']['navbar_bg'];
-
- if ($GLOBALS['phpgw_info']['flags']['navbar_target'])
- {
- $target = ' target="' . $GLOBALS['phpgw_info']['flags']['navbar_target'] . '"';
- } */
-
- $i = 1;
- while ($app = each($GLOBALS['phpgw_info']['navbar']))
- {
- if ($GLOBALS['phpgw_info']['user']['preferences']['common']['navbar_format'] == 'text')
- {
- $tabs[$i]['label'] = lang($app[1]['title']);
- $tabs[$i]['link'] = $app[1]['url'];
- if (ereg($GLOBALS['phpgw_info']['navbar'][$app[0]],$PHP_SELF))
- {
- $selected = $i;
- }
- $i++;
- }
- else
- {
- $title = '';
- if ($GLOBALS['phpgw_info']['user']['preferences']['common']['navbar_format'] == 'icons_and_text')
- {
- $title .= "
" . lang($app[1]['title']);
- $var['width'] = '7%';
- }
- else
- {
- $var['width'] = '3%';
- }
-
- $var['value'] = '' . $title . '';
- $var['align'] = 'center';
- $GLOBALS['phpgw']->template->set_var($var);
- $GLOBALS['phpgw']->template->parse('applications','top_part_app',True);
- }
- }
- if ($GLOBALS['phpgw_info']['user']['preferences']['common']['navbar_format'] == 'text')
- {
- $var['align'] = 'right';
- $var['value'] = $GLOBALS['phpgw']->common->create_tabs($tabs,$selected,-1);
- $GLOBALS['phpgw']->template->set_var($var);
- $GLOBALS['phpgw']->template->parse('applications','top_part_app',True);
- }
-
- if ($GLOBALS['phpgw_info']['server']['showpoweredbyon'] == 'top')
- {
- $var['powered_by'] = lang('Powered by phpGroupWare version x',$GLOBALS['phpgw_info']['server']['versions']['phpgwapi']);
- }
- if (isset($GLOBALS['phpgw_info']['navbar']['admin']) && isset($GLOBALS['phpgw_info']['user']['preferences']['common']['show_currentusers']))
- {
- $db = $GLOBALS['phpgw']->db;
- $db->query("select count(session_id) from phpgw_sessions where session_flags != 'A'");
- $db->next_record();
- $var['current_users'] = ' ' . lang('Current users') . ': ' . $db->f(0) . '';
- }
- $now = time();
- $var['user_info'] = $GLOBALS['phpgw']->common->display_fullname() . ' - '
- . lang($GLOBALS['phpgw']->common->show_date($now,'l')) . ' '
- . $GLOBALS['phpgw']->common->show_date($now,$GLOBALS['phpgw_info']['user']['preferences']['common']['dateformat']);
-// . lang($GLOBALS['phpgw']->common->show_date($now,'F')) . ' '
-// . $GLOBALS['phpgw']->common->show_date($now,'d, Y');
-
- // This is gonna change
- if (isset($cd))
- {
- $var['messages'] = checkcode($cd);
- }
- $GLOBALS['phpgw']->template->set_var($var);
- $GLOBALS['phpgw']->template->fp($output,'top_part');
- }
-
- function parse_bottompart($output)
- {
- if ($GLOBALS['phpgw_info']['server']['showpoweredbyon'] == 'bottom')
- {
- $GLOBALS['phpgw']->template->set_file('parts','parts.tpl');
- $GLOBALS['phpgw']->template->set_block('parts','bottom_part');
- $var = Array(
- 'msg' => lang('Powered by phpGroupWare version x',$GLOBALS['phpgw_info']['server']['versions']['phpgwapi']),
- 'version' => $GLOBALS['phpgw_info']['server']['versions']['phpgwapi']
- );
- $GLOBALS['phpgw']->template->set_var($var);
- $GLOBALS['phpgw']->template->fp($output,'bottom_part');
- }
- else
- {
- $GLOBALS['phpgw']->template->set_var($output,'');
- }
- }
-
diff --git a/phpgwapi/templates/default/parts.tpl b/phpgwapi/templates/default/parts.tpl
deleted file mode 100644
index 6e050d266f..0000000000
--- a/phpgwapi/templates/default/parts.tpl
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-
- {user_info} |
- {applications}
-
-
-
-
- {powered_by} |
- {current_users} |
-
-
-
-
-
-
-
-
-
-{value} |
-
diff --git a/phpgwapi/templates/default/phpgw.tpl b/phpgwapi/templates/default/phpgw.tpl
deleted file mode 100644
index c082a276f8..0000000000
--- a/phpgwapi/templates/default/phpgw.tpl
+++ /dev/null
@@ -1,134 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
- {phpgw_head_website_title}
- {phpgw_head_javascript}
- {phpgw_css}
- {phpgw_head_tags}
-
-
-
-
- {phpgw_top} |
-
-
- {phpgw_left} |
-
- {phpgw_msgbox}
-
-
-
- {phpgw_body}
- |
- {phpgw_right} |
-
-
- {phpgw_bottom} |
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {phpgw_head_website_title}
- {phpgw_head_javascript}
- {phpgw_css}
- {phpgw_head_tags}
-
-
- {phpgw_msgbox}
-
-
-
- {phpgw_body}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- {phpgw_head_website_title}
-
-
-
-
-
-
-
-
-
-
-