Added the 'svn:keywords = "Author Revision URL"' property to
*.cxx *.h *.sh *.php *.html Makefile.in configure.ac in all directories except tmp and usr.
This commit is contained in:
parent
6ac0a8c723
commit
30ac8fb6a3
651 changed files with 9353 additions and 9353 deletions
|
@ -1,58 +1,58 @@
|
|||
<?php
|
||||
header("Content-type: text/html; charset=utf-8");
|
||||
session_start();
|
||||
|
||||
## LS classes/functions #############################################
|
||||
require_once dirname(__FILE__).'/ui_conf.php';
|
||||
require_once dirname(__FILE__).'/ui_browser.class.php';
|
||||
|
||||
|
||||
## well known classes ###############################################
|
||||
require_once dirname(__FILE__).'/Smarty/libs/Smarty.class.php';
|
||||
require_once 'HTML/QuickForm/Renderer/ArraySmarty.php';
|
||||
|
||||
## initialize objects ###############################################
|
||||
$Smarty =& new Smarty;
|
||||
$uiBrowser =& new uiBrowser($config);
|
||||
$uiBase =& $uiBrowser;
|
||||
$jscom =& new jscom(array("jscom_wrapper"));
|
||||
$jscom->handler();
|
||||
|
||||
|
||||
## load Smarty+filters ##############################################
|
||||
require_once dirname(__FILE__).'/ui_smartyExtensions.inc.php';
|
||||
#$Smarty->load_filter('output', 'trimwhitespace');
|
||||
#$Smarty->load_filter('post', 'template_marker');
|
||||
$Smarty->load_filter('output', 'localizer');
|
||||
|
||||
|
||||
## some basic things ################################################
|
||||
foreach (get_defined_constants() as $k=>$v) {
|
||||
$Smarty->assign($k, $v);
|
||||
}
|
||||
|
||||
$Smarty->assign('ACT', $_REQUEST['act']);
|
||||
$Smarty->assign('CONFIG', $config);
|
||||
$Smarty->assign('START', array(
|
||||
'id' => &$uiBrowser->id,
|
||||
'pid' => &$uiBrowser->pid,
|
||||
'fid' => &$uiBrowser->fid,
|
||||
'sessid' => &$uiBrowser->sessid)
|
||||
);
|
||||
$Smarty->assign('USER', array(
|
||||
'sessid' => &$uiBrowser->sessid,
|
||||
'userid' => &$uiBrowser->userid,
|
||||
'login' => &$uiBrowser->login)
|
||||
);
|
||||
$uiBrowser->loadStationPrefs($ui_fmask['stationPrefs']);
|
||||
$Smarty->assign('STATIONPREFS', $uiBrowser->STATIONPREFS);
|
||||
$Smarty->assign_by_ref('_REQUEST', &$_REQUEST);
|
||||
|
||||
## retransfer incomplete formdata from SESSION to POST-data #########
|
||||
if (is_array($_SESSION['retransferFormData'])){
|
||||
foreach($_SESSION['retransferFormData'] as $k=>$v){
|
||||
$_POST[$k] = $v;
|
||||
}
|
||||
unset($_SESSION['retransferFormData']);
|
||||
}
|
||||
<?php
|
||||
header("Content-type: text/html; charset=utf-8");
|
||||
session_start();
|
||||
|
||||
## LS classes/functions #############################################
|
||||
require_once dirname(__FILE__).'/ui_conf.php';
|
||||
require_once dirname(__FILE__).'/ui_browser.class.php';
|
||||
|
||||
|
||||
## well known classes ###############################################
|
||||
require_once dirname(__FILE__).'/Smarty/libs/Smarty.class.php';
|
||||
require_once 'HTML/QuickForm/Renderer/ArraySmarty.php';
|
||||
|
||||
## initialize objects ###############################################
|
||||
$Smarty =& new Smarty;
|
||||
$uiBrowser =& new uiBrowser($config);
|
||||
$uiBase =& $uiBrowser;
|
||||
$jscom =& new jscom(array("jscom_wrapper"));
|
||||
$jscom->handler();
|
||||
|
||||
|
||||
## load Smarty+filters ##############################################
|
||||
require_once dirname(__FILE__).'/ui_smartyExtensions.inc.php';
|
||||
#$Smarty->load_filter('output', 'trimwhitespace');
|
||||
#$Smarty->load_filter('post', 'template_marker');
|
||||
$Smarty->load_filter('output', 'localizer');
|
||||
|
||||
|
||||
## some basic things ################################################
|
||||
foreach (get_defined_constants() as $k=>$v) {
|
||||
$Smarty->assign($k, $v);
|
||||
}
|
||||
|
||||
$Smarty->assign('ACT', $_REQUEST['act']);
|
||||
$Smarty->assign('CONFIG', $config);
|
||||
$Smarty->assign('START', array(
|
||||
'id' => &$uiBrowser->id,
|
||||
'pid' => &$uiBrowser->pid,
|
||||
'fid' => &$uiBrowser->fid,
|
||||
'sessid' => &$uiBrowser->sessid)
|
||||
);
|
||||
$Smarty->assign('USER', array(
|
||||
'sessid' => &$uiBrowser->sessid,
|
||||
'userid' => &$uiBrowser->userid,
|
||||
'login' => &$uiBrowser->login)
|
||||
);
|
||||
$uiBrowser->loadStationPrefs($ui_fmask['stationPrefs']);
|
||||
$Smarty->assign('STATIONPREFS', $uiBrowser->STATIONPREFS);
|
||||
$Smarty->assign_by_ref('_REQUEST', &$_REQUEST);
|
||||
|
||||
## retransfer incomplete formdata from SESSION to POST-data #########
|
||||
if (is_array($_SESSION['retransferFormData'])){
|
||||
foreach($_SESSION['retransferFormData'] as $k=>$v){
|
||||
$_POST[$k] = $v;
|
||||
}
|
||||
unset($_SESSION['retransferFormData']);
|
||||
}
|
||||
?>
|
Loading…
Add table
Add a link
Reference in a new issue