Inspector cleanup
This commit is contained in:
parent
e130ec13e2
commit
0b6fa7c64d
@ -15,4 +15,3 @@ $user->administrator = true;
|
|||||||
$user->active = true;
|
$user->active = true;
|
||||||
$user->create();
|
$user->create();
|
||||||
print "Bootstrap ok\n";
|
print "Bootstrap ok\n";
|
||||||
?>
|
|
@ -568,6 +568,7 @@ class IDF_Plugin_SyncMonotone
|
|||||||
$keyGuard = new IDF_Plugin_SyncMonotone_ModelGuard($key);
|
$keyGuard = new IDF_Plugin_SyncMonotone_ModelGuard($key);
|
||||||
|
|
||||||
foreach (Pluf::factory('IDF_Project')->getList() as $project) {
|
foreach (Pluf::factory('IDF_Project')->getList() as $project) {
|
||||||
|
/** @var \IDF_Project $project */
|
||||||
$conf = new IDF_Conf();
|
$conf = new IDF_Conf();
|
||||||
$conf->setProject($project);
|
$conf->setProject($project);
|
||||||
$scm = $conf->getVal('scm', 'mtn');
|
$scm = $conf->getVal('scm', 'mtn');
|
||||||
@ -641,7 +642,7 @@ class IDF_Plugin_SyncMonotone
|
|||||||
$read_perms, LOCK_EX) === false) {
|
$read_perms, LOCK_EX) === false) {
|
||||||
$this->_diagnoseProblem(sprintf(
|
$this->_diagnoseProblem(sprintf(
|
||||||
__('Could not write read-permissions for project "%s"'),
|
__('Could not write read-permissions for project "%s"'),
|
||||||
$shortname
|
$project->shortname
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -195,7 +195,7 @@ class Pluf_DB_MySQL
|
|||||||
|
|
||||||
function __toString()
|
function __toString()
|
||||||
{
|
{
|
||||||
return '<Pluf_DB_MySQL('.$this->con_id.')>';
|
return '<Pluf_DB_MySQL('.$this->con_id->info.')>';
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -163,7 +163,8 @@ class Pluf_DB_SQLite
|
|||||||
|
|
||||||
function __toString()
|
function __toString()
|
||||||
{
|
{
|
||||||
return '<Pluf_DB_SQLite('.$this->con_id.')>';
|
// According to PHPStorm \PDO does not define __toString
|
||||||
|
return '<Pluf_DB_SQLite()>';
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -56,7 +56,7 @@ class Pluf_Form_Field_Datetime extends Pluf_Form_Field
|
|||||||
str_pad($day, 2, '0', STR_PAD_LEFT).' '.
|
str_pad($day, 2, '0', STR_PAD_LEFT).' '.
|
||||||
str_pad($date['tm_hour'], 2, '0', STR_PAD_LEFT).':'.
|
str_pad($date['tm_hour'], 2, '0', STR_PAD_LEFT).':'.
|
||||||
str_pad($date['tm_min'], 2, '0', STR_PAD_LEFT).':';
|
str_pad($date['tm_min'], 2, '0', STR_PAD_LEFT).':';
|
||||||
str_pad($date['tm_sec'], 2, '0', STD_PAD_LEFT);
|
str_pad($date['tm_sec'], 2, '0', STR_PAD_LEFT);
|
||||||
|
|
||||||
// we internally use GMT, so we convert it to a GMT date.
|
// we internally use GMT, so we convert it to a GMT date.
|
||||||
return gmdate('Y-m-d H:i:s', strtotime($date));
|
return gmdate('Y-m-d H:i:s', strtotime($date));
|
||||||
|
@ -65,7 +65,7 @@ class Pluf_Form_Widget_SelectMultipleInput_Checkbox extends Pluf_Form_Widget_Sel
|
|||||||
public function idForLabel($id)
|
public function idForLabel($id)
|
||||||
{
|
{
|
||||||
if ($id) {
|
if ($id) {
|
||||||
$id += '_0';
|
$id .= '_0';
|
||||||
}
|
}
|
||||||
return $id;
|
return $id;
|
||||||
}
|
}
|
||||||
|
@ -147,7 +147,7 @@ class Pluf_Log
|
|||||||
*/
|
*/
|
||||||
public static function log($message)
|
public static function log($message)
|
||||||
{
|
{
|
||||||
return self::_log(self::ALL, $message);
|
self::_log(self::ALL, $message);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -153,7 +153,6 @@ public static function render($c) {$t = $c; ?>'.$this->template_content.'<?php }
|
|||||||
} else {
|
} else {
|
||||||
throw new Exception(sprintf(__('Cannot write the compiled template: %s'), $this->compiled_template));
|
throw new Exception(sprintf(__('Cannot write the compiled template: %s'), $this->compiled_template));
|
||||||
}
|
}
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function markSafe($string)
|
public static function markSafe($string)
|
||||||
|
@ -3335,4 +3335,3 @@ negligence or otherwise) arising in any way out of the use of this
|
|||||||
software, even if advised of the possibility of such damage.
|
software, even if advised of the possibility of such damage.
|
||||||
|
|
||||||
*/
|
*/
|
||||||
?>
|
|
||||||
|
@ -402,7 +402,7 @@ class Pluf_Translation_TemplateExtractor
|
|||||||
$result.=$tok;
|
$result.=$tok;
|
||||||
} elseif ($tok ==']') {
|
} elseif ($tok ==']') {
|
||||||
$result.=$tok;
|
$result.=$tok;
|
||||||
} elseif ($getAsArray && $tok == ',') {
|
} elseif ($tok == ',') { // $getAsArray not defined anywhere...
|
||||||
$results[]=$result;
|
$results[]=$result;
|
||||||
$result='';
|
$result='';
|
||||||
} else {
|
} else {
|
||||||
|
1
pluf/src/Pluf/thirdparty/ccurl.php
vendored
1
pluf/src/Pluf/thirdparty/ccurl.php
vendored
@ -143,4 +143,3 @@ class ccurl {
|
|||||||
return $this->_webpage;
|
return $this->_webpage;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
?>
|
|
@ -89,4 +89,3 @@ echo "\n";
|
|||||||
echo 'Compiled files: '.count($files)."\n";
|
echo 'Compiled files: '.count($files)."\n";
|
||||||
file_put_contents($output_file, '<?php '.implode("\n", $output).' ?>');
|
file_put_contents($output_file, '<?php '.implode("\n", $output).' ?>');
|
||||||
echo('Final size: '.(int)(100*filesize($output_file)/$size).'%'."\n");
|
echo('Final size: '.(int)(100*filesize($output_file)/$size).'%'."\n");
|
||||||
?>
|
|
Loading…
Reference in New Issue
Block a user