mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-17 23:21:19 +00:00
new version 1.2.0
addѕ previewer which converts documents to pdf instead of png
This commit is contained in:
parent
674de91419
commit
531b645a2d
|
@ -16,9 +16,19 @@
|
||||||
// along with this program; if not, write to the Free Software
|
// along with this program; if not, write to the Free Software
|
||||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @uses Preview/Base.php
|
||||||
|
*/
|
||||||
|
require_once('Preview/Base.php');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @uses Preview/Previewer.php
|
* @uses Preview/Previewer.php
|
||||||
*/
|
*/
|
||||||
require_once('Preview/Previewer.php');
|
require_once('Preview/Previewer.php');
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @uses Preview/PdfPreviewer.php
|
||||||
|
*/
|
||||||
|
require_once('Preview/PdfPreviewer.php');
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
120
SeedDMS_Preview/Preview/Base.php
Normal file
120
SeedDMS_Preview/Preview/Base.php
Normal file
|
@ -0,0 +1,120 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Implementation of preview base
|
||||||
|
*
|
||||||
|
* @category DMS
|
||||||
|
* @package SeedDMS_Preview
|
||||||
|
* @license GPL 2
|
||||||
|
* @version @version@
|
||||||
|
* @author Uwe Steinmann <uwe@steinmann.cx>
|
||||||
|
* @copyright Copyright (C) 2010, Uwe Steinmann
|
||||||
|
* @version Release: @package_version@
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class for managing creation of preview images for documents.
|
||||||
|
*
|
||||||
|
* @category DMS
|
||||||
|
* @package SeedDMS_Preview
|
||||||
|
* @version @version@
|
||||||
|
* @author Uwe Steinmann <uwe@steinmann.cx>
|
||||||
|
* @copyright Copyright (C) 2011, Uwe Steinmann
|
||||||
|
* @version Release: @package_version@
|
||||||
|
*/
|
||||||
|
class SeedDMS_Preview_Base {
|
||||||
|
/**
|
||||||
|
* @var string $cacheDir location in the file system where all the
|
||||||
|
* cached data like thumbnails are located. This should be an
|
||||||
|
* absolute path.
|
||||||
|
* @access public
|
||||||
|
*/
|
||||||
|
public $previewDir;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var array $converters list of mimetypes and commands for converting
|
||||||
|
* file into preview image
|
||||||
|
* @access protected
|
||||||
|
*/
|
||||||
|
protected $converters;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var integer $timeout maximum time for execution of external commands
|
||||||
|
* @access protected
|
||||||
|
*/
|
||||||
|
protected $timeout;
|
||||||
|
|
||||||
|
function __construct($previewDir, $timeout=5) { /* {{{ */
|
||||||
|
if(!is_dir($previewDir)) {
|
||||||
|
if (!SeedDMS_Core_File::makeDir($previewDir)) {
|
||||||
|
$this->previewDir = '';
|
||||||
|
} else {
|
||||||
|
$this->previewDir = $previewDir;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$this->previewDir = $previewDir;
|
||||||
|
}
|
||||||
|
$this->timeout = intval($timeout);
|
||||||
|
} /* }}} */
|
||||||
|
|
||||||
|
static function execWithTimeout($cmd, $timeout=5) { /* {{{ */
|
||||||
|
$descriptorspec = array(
|
||||||
|
0 => array("pipe", "r"),
|
||||||
|
1 => array("pipe", "w"),
|
||||||
|
2 => array("pipe", "w")
|
||||||
|
);
|
||||||
|
$pipes = array();
|
||||||
|
|
||||||
|
$timeout += time();
|
||||||
|
$process = proc_open($cmd, $descriptorspec, $pipes);
|
||||||
|
if (!is_resource($process)) {
|
||||||
|
throw new Exception("proc_open failed on: " . $cmd);
|
||||||
|
}
|
||||||
|
|
||||||
|
$output = '';
|
||||||
|
$timeleft = $timeout - time();
|
||||||
|
$read = array($pipes[1]);
|
||||||
|
$write = NULL;
|
||||||
|
$exeptions = NULL;
|
||||||
|
do {
|
||||||
|
stream_select($read, $write, $exeptions, $timeleft, 200000);
|
||||||
|
|
||||||
|
if (!empty($read)) {
|
||||||
|
$output .= fread($pipes[1], 8192);
|
||||||
|
}
|
||||||
|
$timeleft = $timeout - time();
|
||||||
|
} while (!feof($pipes[1]) && $timeleft > 0);
|
||||||
|
|
||||||
|
if ($timeleft <= 0) {
|
||||||
|
proc_terminate($process);
|
||||||
|
throw new Exception("command timeout on: " . $cmd);
|
||||||
|
} else {
|
||||||
|
return $output;
|
||||||
|
}
|
||||||
|
} /* }}} */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set a list of converters
|
||||||
|
*
|
||||||
|
* Merges the list of passed converters with the already existing ones.
|
||||||
|
* Existing converters will be overwritten.
|
||||||
|
*
|
||||||
|
* @param array list of converters. The key of the array contains the mimetype
|
||||||
|
* and the value is the command to be called for creating the preview
|
||||||
|
*/
|
||||||
|
function setConverters($arr) { /* {{{ */
|
||||||
|
$this->converters = array_merge($arr, $this->converters);
|
||||||
|
} /* }}} */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check if converter for a given mimetype is set
|
||||||
|
*
|
||||||
|
* @param string $mimetype
|
||||||
|
* @return boolean true if converter exists, otherwise false
|
||||||
|
*/
|
||||||
|
function hasConverter($mimetype) { /* {{{ */
|
||||||
|
return array_key_exists($mimetype, $this->converters);
|
||||||
|
} /* }}} */
|
||||||
|
|
||||||
|
}
|
||||||
|
|
276
SeedDMS_Preview/Preview/PdfPreviewer.php
Normal file
276
SeedDMS_Preview/Preview/PdfPreviewer.php
Normal file
|
@ -0,0 +1,276 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Implementation of pdf preview documents
|
||||||
|
*
|
||||||
|
* @category DMS
|
||||||
|
* @package SeedDMS_Preview
|
||||||
|
* @license GPL 2
|
||||||
|
* @version @version@
|
||||||
|
* @author Uwe Steinmann <uwe@steinmann.cx>
|
||||||
|
* @copyright Copyright (C) 2010, Uwe Steinmann
|
||||||
|
* @version Release: @package_version@
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class for managing creation of pdf preview for documents.
|
||||||
|
*
|
||||||
|
* @category DMS
|
||||||
|
* @package SeedDMS_Preview
|
||||||
|
* @version @version@
|
||||||
|
* @author Uwe Steinmann <uwe@steinmann.cx>
|
||||||
|
* @copyright Copyright (C) 2011, Uwe Steinmann
|
||||||
|
* @version Release: @package_version@
|
||||||
|
*/
|
||||||
|
class SeedDMS_Preview_PdfPreviewer extends SeedDMS_Preview_Base {
|
||||||
|
|
||||||
|
function __construct($previewDir, $timeout=5) { /* {{{ */
|
||||||
|
parent::__construct($previewDir, $timeout);
|
||||||
|
$this->converters = array(
|
||||||
|
'application/vnd.openxmlformats-officedocument.wordprocessingml.document' => "unoconv -d document -f pdf --stdout -v '%f' > '%o'",
|
||||||
|
'application/vnd.oasis.opendocument.text' => "unoconv -d document -f pdf --stdout -v '%f' > '%o'",
|
||||||
|
'text/rtf' => "unoconv -d document -f pdf --stdout -v '%f' > '%o'",
|
||||||
|
'application/msword' => "unoconv -d document -f pdf --stdout -v '%f' > '%o'",
|
||||||
|
);
|
||||||
|
} /* }}} */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return the physical filename of the preview image on disk
|
||||||
|
*
|
||||||
|
* @param object $object document content or document file
|
||||||
|
* @return string file name of preview image
|
||||||
|
*/
|
||||||
|
protected function getFileName($object) { /* {{{ */
|
||||||
|
if(!$object)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
$document = $object->getDocument();
|
||||||
|
$dir = $this->previewDir.'/'.$document->getDir();
|
||||||
|
switch(get_class($object)) {
|
||||||
|
case "SeedDMS_Core_DocumentContent":
|
||||||
|
$target = $dir.'p'.$object->getVersion();
|
||||||
|
break;
|
||||||
|
case "SeedDMS_Core_DocumentFile":
|
||||||
|
$target = $dir.'f'.$object->getID();
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return $target;
|
||||||
|
} /* }}} */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a pdf preview for a given file
|
||||||
|
*
|
||||||
|
* This method creates a preview in pdf format for a regular file
|
||||||
|
* in the file system and stores the result in the directory $dir relative
|
||||||
|
* to the configured preview directory. The filename of the resulting preview
|
||||||
|
* image is either $target.pdf (if set) or md5($infile).pdf.
|
||||||
|
* The $mimetype is used to select the propper conversion programm.
|
||||||
|
* An already existing pdf preview is replaced.
|
||||||
|
*
|
||||||
|
* @param string $infile name of input file including full path
|
||||||
|
* @param string $dir directory relative to $this->previewDir
|
||||||
|
* @param string $mimetype MimeType of input file
|
||||||
|
* @param string $target optional name of preview image (without extension)
|
||||||
|
* @return boolean true on success, false on failure
|
||||||
|
*/
|
||||||
|
public function createRawPreview($infile, $dir, $mimetype, $target='') { /* {{{ */
|
||||||
|
if(!$this->previewDir)
|
||||||
|
return false;
|
||||||
|
if(!is_dir($this->previewDir.'/'.$dir)) {
|
||||||
|
if (!SeedDMS_Core_File::makeDir($this->previewDir.'/'.$dir)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(!file_exists($infile))
|
||||||
|
return false;
|
||||||
|
if(!$target)
|
||||||
|
$target = $this->previewDir.$dir.md5($infile);
|
||||||
|
if($target != '' && (!file_exists($target.'.pdf') || filectime($target.'.pdf') < filectime($infile))) {
|
||||||
|
$cmd = '';
|
||||||
|
if(isset($this->converters[$mimetype])) {
|
||||||
|
$cmd = str_replace(array('%f', '%o'), array($infile, $target.'.pdf'), $this->converters[$mimetype]);
|
||||||
|
}
|
||||||
|
if($cmd) {
|
||||||
|
try {
|
||||||
|
self::execWithTimeout($cmd, $this->timeout);
|
||||||
|
} catch(Exception $e) {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
|
||||||
|
} /* }}} */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create preview image
|
||||||
|
*
|
||||||
|
* This function creates a preview image for the given document
|
||||||
|
* content or document file. It internally uses
|
||||||
|
* {@link SeedDMS_Preview::createRawPreview()}. The filename of the
|
||||||
|
* preview image is created by {@link SeedDMS_Preview_Previewer::getFileName()}
|
||||||
|
*
|
||||||
|
* @param object $object instance of SeedDMS_Core_DocumentContent
|
||||||
|
* or SeedDMS_Core_DocumentFile
|
||||||
|
* @return boolean true on success, false on failure
|
||||||
|
*/
|
||||||
|
public function createPreview($object) { /* {{{ */
|
||||||
|
if(!$object)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
$document = $object->getDocument();
|
||||||
|
$file = $document->_dms->contentDir.$object->getPath();
|
||||||
|
$target = $this->getFileName($object);
|
||||||
|
return $this->createRawPreview($file, $document->getDir(), $object->getMimeType(), $target);
|
||||||
|
} /* }}} */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check if a preview image already exists.
|
||||||
|
*
|
||||||
|
* This function is a companion to {@link SeedDMS_Preview_Previewer::createRawPreview()}.
|
||||||
|
*
|
||||||
|
* @param string $infile name of input file including full path
|
||||||
|
* @param string $dir directory relative to $this->previewDir
|
||||||
|
* @return boolean true if preview exists, otherwise false
|
||||||
|
*/
|
||||||
|
public function hasRawPreview($infile, $dir) { /* {{{ */
|
||||||
|
if(!$this->previewDir)
|
||||||
|
return false;
|
||||||
|
$target = $this->previewDir.$dir.md5($infile);
|
||||||
|
if($target !== false && file_exists($target.'.pdf') && filectime($target.'.pdf') >= filectime($infile)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
} /* }}} */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Check if a preview image already exists.
|
||||||
|
*
|
||||||
|
* This function is a companion to {@link SeedDMS_Preview_Previewer::createPreview()}.
|
||||||
|
*
|
||||||
|
* @param object $object instance of SeedDMS_Core_DocumentContent
|
||||||
|
* or SeedDMS_Core_DocumentFile
|
||||||
|
* @return boolean true if preview exists, otherwise false
|
||||||
|
*/
|
||||||
|
public function hasPreview($object) { /* {{{ */
|
||||||
|
if(!$object)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
if(!$this->previewDir)
|
||||||
|
return false;
|
||||||
|
$target = $this->getFileName($object);
|
||||||
|
if($target !== false && file_exists($target.'.pdf') && filectime($target.'.pdf') >= $object->getDate()) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
} /* }}} */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return a preview image.
|
||||||
|
*
|
||||||
|
* This function returns the content of a preview image if it exists..
|
||||||
|
*
|
||||||
|
* @param string $infile name of input file including full path
|
||||||
|
* @param string $dir directory relative to $this->previewDir
|
||||||
|
* @return boolean/string image content if preview exists, otherwise false
|
||||||
|
*/
|
||||||
|
public function getRawPreview($infile, $dir) { /* {{{ */
|
||||||
|
if(!$this->previewDir)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
$target = $this->previewDir.$dir.md5($infile);
|
||||||
|
if($target && file_exists($target.'.pdf')) {
|
||||||
|
readfile($target.'.pdf');
|
||||||
|
}
|
||||||
|
} /* }}} */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return a preview image.
|
||||||
|
*
|
||||||
|
* This function returns the content of a preview image if it exists..
|
||||||
|
*
|
||||||
|
* @param object $object instance of SeedDMS_Core_DocumentContent
|
||||||
|
* or SeedDMS_Core_DocumentFile
|
||||||
|
* @return boolean/string image content if preview exists, otherwise false
|
||||||
|
*/
|
||||||
|
public function getPreview($object) { /* {{{ */
|
||||||
|
if(!$this->previewDir)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
$target = $this->getFileName($object);
|
||||||
|
if($target && file_exists($target.'.pdf')) {
|
||||||
|
readfile($target.'.pdf');
|
||||||
|
}
|
||||||
|
} /* }}} */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return file size preview image.
|
||||||
|
*
|
||||||
|
* @param object $object instance of SeedDMS_Core_DocumentContent
|
||||||
|
* or SeedDMS_Core_DocumentFile
|
||||||
|
* @return boolean/integer size of preview image or false if image
|
||||||
|
* does not exist
|
||||||
|
*/
|
||||||
|
public function getFilesize($object) { /* {{{ */
|
||||||
|
$target = $this->getFileName($object);
|
||||||
|
if($target && file_exists($target.'.pdf')) {
|
||||||
|
return(filesize($target.'.pdf'));
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
} /* }}} */
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Delete preview image.
|
||||||
|
*
|
||||||
|
* @param object $object instance of SeedDMS_Core_DocumentContent
|
||||||
|
* or SeedDMS_Core_DocumentFile
|
||||||
|
* @return boolean true if deletion succeded or false if file does not exist
|
||||||
|
*/
|
||||||
|
public function deletePreview($object) { /* {{{ */
|
||||||
|
if(!$this->previewDir)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
$target = $this->getFileName($object);
|
||||||
|
if($target && file_exists($target.'.pdf')) {
|
||||||
|
return(unlink($target.'.pdf'));
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
} /* }}} */
|
||||||
|
|
||||||
|
static function recurseRmdir($dir) {
|
||||||
|
$files = array_diff(scandir($dir), array('.','..'));
|
||||||
|
foreach ($files as $file) {
|
||||||
|
(is_dir("$dir/$file")) ? SeedDMS_Preview_Previewer::recurseRmdir("$dir/$file") : unlink("$dir/$file");
|
||||||
|
}
|
||||||
|
return rmdir($dir);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Delete all preview images belonging to a document
|
||||||
|
*
|
||||||
|
* This function removes the preview images of all versions and
|
||||||
|
* files of a document including the directory. It actually just
|
||||||
|
* removes the directory for the document in the cache.
|
||||||
|
*
|
||||||
|
* @param object $document instance of SeedDMS_Core_Document
|
||||||
|
* @return boolean true if deletion succeded or false if file does not exist
|
||||||
|
*/
|
||||||
|
public function deleteDocumentPreviews($document) { /* {{{ */
|
||||||
|
if(!$this->previewDir)
|
||||||
|
return false;
|
||||||
|
|
||||||
|
$dir = $this->previewDir.'/'.$document->getDir();
|
||||||
|
if(file_exists($dir) && is_dir($dir)) {
|
||||||
|
return SeedDMS_Preview_Previewer::recurseRmdir($dir);
|
||||||
|
} else {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
} /* }}} */
|
||||||
|
}
|
||||||
|
?>
|
|
@ -22,45 +22,15 @@
|
||||||
* @copyright Copyright (C) 2011, Uwe Steinmann
|
* @copyright Copyright (C) 2011, Uwe Steinmann
|
||||||
* @version Release: @package_version@
|
* @version Release: @package_version@
|
||||||
*/
|
*/
|
||||||
class SeedDMS_Preview_Previewer {
|
class SeedDMS_Preview_Previewer extends SeedDMS_Preview_Base {
|
||||||
/**
|
|
||||||
* @var string $cacheDir location in the file system where all the
|
|
||||||
* cached data like thumbnails are located. This should be an
|
|
||||||
* absolute path.
|
|
||||||
* @access public
|
|
||||||
*/
|
|
||||||
public $previewDir;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @var integer $width maximum width/height of resized image
|
* @var integer $width maximum width/height of resized image
|
||||||
* @access protected
|
* @access protected
|
||||||
*/
|
*/
|
||||||
protected $width;
|
protected $width;
|
||||||
|
|
||||||
/**
|
|
||||||
* @var array $converters list of mimetypes and commands for converting
|
|
||||||
* file into preview image
|
|
||||||
* @access protected
|
|
||||||
*/
|
|
||||||
protected $converters;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @var integer $timeout maximum time for execution of external commands
|
|
||||||
* @access protected
|
|
||||||
*/
|
|
||||||
protected $timeout;
|
|
||||||
|
|
||||||
function __construct($previewDir, $width=40, $timeout=5) { /* {{{ */
|
function __construct($previewDir, $width=40, $timeout=5) { /* {{{ */
|
||||||
if(!is_dir($previewDir)) {
|
parent::__construct($previewDir, $timeout);
|
||||||
if (!SeedDMS_Core_File::makeDir($previewDir)) {
|
|
||||||
$this->previewDir = '';
|
|
||||||
} else {
|
|
||||||
$this->previewDir = $previewDir;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
$this->previewDir = $previewDir;
|
|
||||||
}
|
|
||||||
$this->width = intval($width);
|
|
||||||
$this->converters = array(
|
$this->converters = array(
|
||||||
'image/png' => "convert -resize %wx '%f' '%o'",
|
'image/png' => "convert -resize %wx '%f' '%o'",
|
||||||
'image/gif' => "convert -resize %wx '%f' '%o'",
|
'image/gif' => "convert -resize %wx '%f' '%o'",
|
||||||
|
@ -72,56 +42,7 @@ class SeedDMS_Preview_Previewer {
|
||||||
'application/postscript' => "convert -density 100 -resize %wx '%f[0]' '%o'",
|
'application/postscript' => "convert -density 100 -resize %wx '%f[0]' '%o'",
|
||||||
'application/x-compressed-tar' => "tar tzvf '%f' | convert -density 100 -resize %wx text:-[0] '%o",
|
'application/x-compressed-tar' => "tar tzvf '%f' | convert -density 100 -resize %wx text:-[0] '%o",
|
||||||
);
|
);
|
||||||
$this->timeout = intval($timeout);
|
$this->width = intval($width);
|
||||||
} /* }}} */
|
|
||||||
|
|
||||||
static function execWithTimeout($cmd, $timeout=5) { /* {{{ */
|
|
||||||
$descriptorspec = array(
|
|
||||||
0 => array("pipe", "r"),
|
|
||||||
1 => array("pipe", "w"),
|
|
||||||
2 => array("pipe", "w")
|
|
||||||
);
|
|
||||||
$pipes = array();
|
|
||||||
|
|
||||||
$timeout += time();
|
|
||||||
$process = proc_open($cmd, $descriptorspec, $pipes);
|
|
||||||
if (!is_resource($process)) {
|
|
||||||
throw new Exception("proc_open failed on: " . $cmd);
|
|
||||||
}
|
|
||||||
|
|
||||||
$output = '';
|
|
||||||
$timeleft = $timeout - time();
|
|
||||||
$read = array($pipes[1]);
|
|
||||||
$write = NULL;
|
|
||||||
$exeptions = NULL;
|
|
||||||
do {
|
|
||||||
stream_select($read, $write, $exeptions, $timeleft, 200000);
|
|
||||||
|
|
||||||
if (!empty($read)) {
|
|
||||||
$output .= fread($pipes[1], 8192);
|
|
||||||
}
|
|
||||||
$timeleft = $timeout - time();
|
|
||||||
} while (!feof($pipes[1]) && $timeleft > 0);
|
|
||||||
|
|
||||||
if ($timeleft <= 0) {
|
|
||||||
proc_terminate($process);
|
|
||||||
throw new Exception("command timeout on: " . $cmd);
|
|
||||||
} else {
|
|
||||||
return $output;
|
|
||||||
}
|
|
||||||
} /* }}} */
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set a list of converters
|
|
||||||
*
|
|
||||||
* Merges the list of passed converters with the already existing ones.
|
|
||||||
* Existing converters will be overwritten.
|
|
||||||
*
|
|
||||||
* @param array list of converters. The key of the array contains the mimetype
|
|
||||||
* and the value is the command to be called for creating the preview
|
|
||||||
*/
|
|
||||||
function setConverters($arr) { /* {{{ */
|
|
||||||
$this->converters = array_merge($arr, $this->converters);
|
|
||||||
} /* }}} */
|
} /* }}} */
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -11,11 +11,11 @@
|
||||||
<email>uwe@steinmann.cx</email>
|
<email>uwe@steinmann.cx</email>
|
||||||
<active>yes</active>
|
<active>yes</active>
|
||||||
</lead>
|
</lead>
|
||||||
<date>2016-04-26</date>
|
<date>2016-11-07</date>
|
||||||
<time>15:17:11</time>
|
<time>15:17:11</time>
|
||||||
<version>
|
<version>
|
||||||
<release>1.1.9</release>
|
<release>1.2.0</release>
|
||||||
<api>1.1.9</api>
|
<api>1.2.0</api>
|
||||||
</version>
|
</version>
|
||||||
<stability>
|
<stability>
|
||||||
<release>stable</release>
|
<release>stable</release>
|
||||||
|
@ -23,11 +23,7 @@
|
||||||
</stability>
|
</stability>
|
||||||
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
|
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
|
||||||
<notes>
|
<notes>
|
||||||
add more documentation
|
add new previewer which converts document to pdf instead of png
|
||||||
finish deletePreview()
|
|
||||||
add new method deleteDocumentPreviews()
|
|
||||||
fix calculation of timeout (Bug #269)
|
|
||||||
check if cache dir exists before deleting it in deleteDocumentPreviews()
|
|
||||||
</notes>
|
</notes>
|
||||||
<contents>
|
<contents>
|
||||||
<dir baseinstalldir="SeedDMS" name="/">
|
<dir baseinstalldir="SeedDMS" name="/">
|
||||||
|
@ -216,5 +212,25 @@ set last parameter of stream_select() to 200000 micro sec. in case the timeout i
|
||||||
pass variables to stream_select (required by php7)
|
pass variables to stream_select (required by php7)
|
||||||
</notes>
|
</notes>
|
||||||
</release>
|
</release>
|
||||||
|
<release>
|
||||||
|
<date>2016-04-26</date>
|
||||||
|
<time>15:17:11</time>
|
||||||
|
<version>
|
||||||
|
<release>1.1.9</release>
|
||||||
|
<api>1.1.9</api>
|
||||||
|
</version>
|
||||||
|
<stability>
|
||||||
|
<release>stable</release>
|
||||||
|
<api>stable</api>
|
||||||
|
</stability>
|
||||||
|
<license uri="http://opensource.org/licenses/gpl-license">GPL License</license>
|
||||||
|
<notes>
|
||||||
|
add more documentation
|
||||||
|
finish deletePreview()
|
||||||
|
add new method deleteDocumentPreviews()
|
||||||
|
fix calculation of timeout (Bug #269)
|
||||||
|
check if cache dir exists before deleting it in deleteDocumentPreviews()
|
||||||
|
</notes>
|
||||||
|
</release>
|
||||||
</changelog>
|
</changelog>
|
||||||
</package>
|
</package>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user