Revert accidentally commited devel stuff

This commit is contained in:
Nathan Gray 2011-12-23 16:29:09 +00:00
parent 587418fca2
commit a5e904faa1
5 changed files with 2 additions and 28 deletions

View File

@ -26,7 +26,6 @@ class customfields_widget
{ {
var $public_functions = array( var $public_functions = array(
'pre_process' => True, 'pre_process' => True,
'post_process' => True,
); );
var $human_name = array( var $human_name = array(
'customfields' => 'custom fields', 'customfields' => 'custom fields',
@ -113,16 +112,10 @@ class customfields_widget
function pre_process($form_name,&$value,&$cell,&$readonlys,&$extension_data,etemplate $tmpl) function pre_process($form_name,&$value,&$cell,&$readonlys,&$extension_data,etemplate $tmpl)
{ {
list($app) = explode('.',$tmpl->name); list($app) = explode('.',$tmpl->name);
if($extension_data['app']) $app = $extension_data['app'];
// if we are in the etemplate editor or the app has no cf's, load the cf's from the app the tpl belongs too // if we are in the etemplate editor or the app has no cf's, load the cf's from the app the tpl belongs too
if ($app && $app != 'stylite' && $app != $this->appname && ( if ($app && $app != 'stylite' && $app != $this->appname && ($this->appname == 'etemplate' || !$this->customfields || etemplate::$hooked))
$this->appname == 'etemplate' || !$this->customfields || etemplate::$hooked || $extension_data['app']
))
{ {
self::__construct(null,$app); // app changed self::__construct(null,$app); // app changed
// Need to keep hooked app for things like nm filter changes and validation errors
if(etemplate::$hooked) $extension_data['app'] = $app;
} }
list($type2,$use_private,$field_names) = explode(',',$cell['size'],3); list($type2,$use_private,$field_names) = explode(',',$cell['size'],3);
$fields_with_vals=array(); $fields_with_vals=array();
@ -500,14 +493,6 @@ class customfields_widget
return True; // extra Label is ok return True; // extra Label is ok
} }
/**
* Override to pass along extension_data - doesn't happen otherwise
*/
public function post_process($name,&$value,&$extension_data,&$loop,etemplate &$tmpl,$value_in) {
$value = $value_in;
return true;
}
/** /**
* Read the options of a 'select' or 'radio' custom field from a file * Read the options of a 'select' or 'radio' custom field from a file
* *

View File

@ -25,8 +25,6 @@
* *
* etemplate or uietemplate extends boetemplate, all vars and public functions are inherited * etemplate or uietemplate extends boetemplate, all vars and public functions are inherited
*/ */
//class etemplate extends etemplate_new {}
//class etemplate_old extends boetemplate
class etemplate extends boetemplate class etemplate extends boetemplate
{ {
/** /**

View File

@ -24,8 +24,6 @@ if (!isset($GLOBALS['egw_info']))
include_once '../../header.inc.php'; include_once '../../header.inc.php';
} }
$GLOBALS['egw_info']['flags']['js_link_registry'] = true;
/** /**
* New eTemplate serverside contains: * New eTemplate serverside contains:
* - main server methods like read, exec * - main server methods like read, exec
@ -394,4 +392,4 @@ if ($GLOBALS['egw_info']['flags']['debug'] == 'etemplate_new')
} }
$GLOBALS['egw_info']['flags']['app_header'] = $name; $GLOBALS['egw_info']['flags']['app_header'] = $name;
$template->exec('etemplate.etemplate.debug', array(), array(), array(), array(), 2); $template->exec('etemplate.etemplate.debug', array(), array(), array(), array(), 2);
} }

View File

@ -86,9 +86,6 @@ class etemplate_widget_customfields extends etemplate_widget_transformer
// Store properties at top level, so all customfield widgets can share // Store properties at top level, so all customfield widgets can share
$app =& $this->getElementAttribute(self::GLOBAL_VALS, 'app'); $app =& $this->getElementAttribute(self::GLOBAL_VALS, 'app');
// Value needs a text key, so it gets handled as a js object, not an array
//$this->setElementAttribute(self::GLOBAL_VALS, 'fields', Array('parse_as_object'=>null));
$this->setElementAttribute(self::GLOBAL_VALS, 'fields', Array());
if($this->getElementAttribute($form_name, 'app')) if($this->getElementAttribute($form_name, 'app'))
{ {
$app =& $this->getElementAttribute($form_name, 'app'); $app =& $this->getElementAttribute($form_name, 'app');

View File

@ -1471,7 +1471,6 @@ class nextmatch_widget
$value['start'] = 0; $value['start'] = 0;
$value['num_rows'] = 500; $value['num_rows'] = 500;
$value['csv_export'] = true; // so get_rows method _can_ produce different content or not store state in the session $value['csv_export'] = true; // so get_rows method _can_ produce different content or not store state in the session
$start = microtime(true);
do do
{ {
if (!($total = self::call_get_rows($value,$rows))) if (!($total = self::call_get_rows($value,$rows)))
@ -1506,7 +1505,6 @@ $start = microtime(true);
} }
while($total > $value['start']); while($total > $value['start']);
$time = microtime(true) - $start;
unset($value['csv_export']); unset($value['csv_export']);
$value['start'] = $backup_start; $value['start'] = $backup_start;
$value['num_rows'] = $backup_num_rows; $value['num_rows'] = $backup_num_rows;
@ -1514,8 +1512,6 @@ $time = microtime(true) - $start;
{ {
self::call_get_rows($value); self::call_get_rows($value);
} }
fwrite($fp, "\n\nExport time: " . round($time,3) . 's' );
if ($fp) if ($fp)
{ {
fclose($fp); fclose($fp);