Minor modification to the code segment in common/actions.php , which checks the retur...
[plewww.git] / planetlab / events / events.php
index 685370a..302bdc7 100644 (file)
@@ -1,5 +1,5 @@
 <?php
-// $Id: index.php 11949 2009-02-09 17:57:16Z thierry $
+// $Id$
 
 // Require login
 require_once 'plc_login.php';
@@ -14,9 +14,9 @@ include 'plc_header.php';
 
 // Common functions
 require_once 'plc_functions.php';
-require_once 'plc_tables.php';
-require_once 'plc_minitabs.php';
-require_once 'plc_datepicker.php';
+require_once 'table.php';
+require_once 'linetabs.php';
+require_once 'datepicker.php';
   
 // needs much memory
 ini_set("memory_limit","256M");
@@ -126,7 +126,7 @@ function e_fault ($event) {
 
 $tabs=array();
 $tabs['Clear events']=l_events();
-plc_tabs($tabs);
+plekit_linetabs($tabs);
 
 list($from_string,$from_time) = parse_date ($from_date,false,$DAY,$EPOCH);
 list($until_string,$until_time) = parse_date ($until_date,true,$DAY,$EPOCH);
@@ -248,7 +248,7 @@ $headers=array("Id"=>"int",
               "D"=>"none",
               );
 
-$table = new PlcTable ("events",$headers,"0r");
+$table = new PlekitTable ("events",$headers,"0r");
 $table->set_options (array ('max_pages'=>20));
 $table->start ();
 foreach ($events as $event) {
@@ -283,7 +283,7 @@ $table->set_options(array('notes'=>array("The R column shows the call result val
                                         "Click the button in the D(etails) column to get more details")));
 $table->end();
   
-//plc_tabs ($tabs,"bottom");
+//plekit_linetabs ($tabs,"bottom");
 
 // Print footer
 include 'plc_footer.php';