private void atimer_Elapsed(object sender, EventArgs e)
{
try
{
//logger.Debug(DateTime.Now);
Process proc = null;
string targetDir = string.Format(AppDomain.CurrentDomain.BaseDirectory);//текущая папка AppDomain.CurrentDomain.BaseDirectory
logger.Debug(targetDir);
proc = new Process();
proc.StartInfo.WorkingDirectory = targetDir;
proc.StartInfo.FileName = "restart.bat";
proc.StartInfo.Arguments = string.Format("10");//this is argument
proc.StartInfo.CreateNoWindow = false;
proc.Start();
proc.WaitForExit();
}
catch (Exception msg)
{
logger.Trace(msg);
return;
}
}
net stop "SrvcMOF_Stav";
sc start "SrvcMOF_Stav"
Windows Registry Editor Version 5.00
[-HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.exe]
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.exe]
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.exe\OpenWithList]
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.exe\OpenWithProgids]
"exefile"=hex(0):
#!/usr/bin/python
# -*- coding: utf-8 -*-
import psycopg2
import sys
con = None
try:
con = psycopg2.connect(database='testdb', user='janbodnar')
cur = con.cursor()
cur.execute('SELECT 1 from mytable')
ver = cur.fetchone()
print ver //здесь наш код при успехе
except psycopg2.DatabaseError, e:
print 'Error %s' % e
sys.exit(1)
finally:
if con:
con.close()
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>JWPlayer test</title>
<script src="player/jwplayer.js"></script>
</head>
<body>
<?php
$dir = 'video';
$files = scandir($dir,1);
echo '<pre>';var_dump($files);
for($i=0, $cnt = count($files);$i<$cnt;$i++)
{
if (substr($files[$i], -3) == 'flv' )
{
$id = $files[$i];
echo "
<div id='$id'></div>
<script type='text/javascript'>
jwplayer('$id').setup({
file: 'video/$id',
title: 'Razer',
width: '100%',
aspectratio: '16:9',
fallback: 'false'
});
</script>
";
}
}
?>
</body>
</html>
git config --global http.proxy http://proxyuser:proxypwd@proxy.server.com:8080
git config --global https.proxy https://proxyuser:proxypwd@proxy.server.com:8080
<style>
.columns { overflow: hidden; clear: both; width: 100%; }
.columns .left, .columns .right { float: left; }
.columns .left { width: 80%; }
.columns .right { width: 20%; }
</style>
<div class="container">
<div class="left"><?php $this->widget('CGridView'/* тут вызываем грид */); ?></div>
<div class="right"><!-- тут вызываем график --></div>
</div>
echo CHtml::dropDownList('listname',$mysmen,
array('1' => '1 смена', '2' => '2 смена','3' => '3 смена'),
array(
'ajax' => array(
'type'=>'POST', //request type
'url'=>CController::createUrl('quality/smen'), //url to call.
//Style: CController::createUrl('currentController/methodToCall')
'update'=>'#content', //selector to update
'data' => array
(
'smen' => 'js:this.value',
)
//leave out the data key to pass all form values through
)));
public function actionSmen()
{
$smen = Yii::app()->request->getParam('smen');
$model=new Quality('search');
$model->unsetAttributes(); // clear any default values
if(isset($_GET['Quality']))
$model->attributes=$_GET['Quality'];
$this->renderPartial('admin',array(
'model'=>$model,
));
}
(isset($_POST['smen'])) ? $mysmen =$_POST['smen']: $mysmen = today_smen($todaysmen);
$this->widget('zii.widgets.jui.CJuiDatePicker', array(
'name' => 'from_date',
'value' => $date,
'language' => 'ru',
'options' => array(
'showAnim' => 'fold',
'dateFormat' => 'yy-mm-dd',
//'onSelect' => 'js: function(dateText, inst) {window.location.search = "date=" + this.value; return false;}',
'onSelect' => 'js: function(dateText, inst) {' .
CHtml::ajax(array('type' => 'POST', 'datatype' => 'html', 'url' => array('Reports_ajax'),
'data' => array('date' => 'js: dateText'),
'success' => 'function(html){ $("#content").html(html);
return false; }'
)
) .
'}',
),
));
public function actionSmen()
{
$smen = Yii::app()->request->getParam('smen');
$smen = Yii::app()->request->getParam('date');
$model=new Quality('search');
$model->unsetAttributes(); // clear any default values
if(isset($_GET['Quality']))
$model->attributes=$_GET['Quality'];
$this->renderPartial('admin',array(
'model'=>$model,
));
}
(isset($_POST['date']) && $_POST['date']) ? $date = $_POST['date'] : $date = date('Y-m-d');
$connection = Yii::app()->db;
$sql = "
SELECT COUNT(*) FROM `t_product` `t` WHERE EXIST=:ycp0 AND CAT=:ycp1
AND
(NAME LIKE :ycp2 OR NAME_EN LIKE :ycp3 OR NAME_EXCEL LIKE :ycp4 OR NAME_MENU LIKE :ycp5)
";
$dataReader = $connection->createCommand($sql)->query();
$rows = $dataReader->readAll();
public function mysearch($fact_id, $ware_id)
for($i = 1, $cnt = count($rows); $i < $cnt; $i++) //формируем столбцы
{
$this->widget('bootstrap.widgets.TbExtendedGridView', array(
'filter'=>'false',
'type'=>'striped bordered',
'dataProvider' => $model->mysearch($rows[$i]['fact_id'],$rows[$i]['ware_id']),