mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-02-06 07:04:57 +00:00
include right files, fix fulltext index
This commit is contained in:
parent
2bc678bc7b
commit
9e6f49598d
|
@ -24,9 +24,9 @@ include("../inc/inc.Init.php");
|
|||
include("../inc/inc.Extension.php");
|
||||
include("../inc/inc.DBInit.php");
|
||||
include("../inc/inc.ClassNotificationService.php");
|
||||
//include("../inc/inc.ClassEmailNotify.php");
|
||||
include("../inc/inc.ClassEmailNotify.php");
|
||||
include("../inc/inc.Notification.php");
|
||||
include("../inc/inc.ClassController.php");
|
||||
//include("Log.php");
|
||||
|
||||
$notifier = new SeedDMS_NotificationService($logger);
|
||||
|
||||
|
|
|
@ -428,8 +428,11 @@ class HTTP_WebDAV_Server_SeedDMS extends HTTP_WebDAV_Server
|
|||
$info["props"][] = $this->mkprop("getcontenttype", $content->getMimeType());
|
||||
} else {
|
||||
$info["props"][] = $this->mkprop("getcontenttype", "application/x-non-readable");
|
||||
}
|
||||
$info["props"][] = $this->mkprop("getcontentlength", filesize($this->dms->contentDir.'/'.$fspath));
|
||||
}
|
||||
if(file_exists($this->dms->contentDir.'/'.$fspath))
|
||||
$info["props"][] = $this->mkprop("getcontentlength", filesize($this->dms->contentDir.'/'.$fspath));
|
||||
else
|
||||
$info["props"][] = $this->mkprop("getcontentlength", 0);
|
||||
if($keywords = $obj->getKeywords())
|
||||
$info["props"][] = $this->mkprop("SeedDMS:", "keywords", $keywords);
|
||||
$info["props"][] = $this->mkprop("SeedDMS:", "id", $obj->getID());
|
||||
|
@ -790,19 +793,12 @@ class HTTP_WebDAV_Server_SeedDMS extends HTTP_WebDAV_Server
|
|||
}
|
||||
*/
|
||||
|
||||
if($settings->_enableFullSearch) {
|
||||
$index = $indexconf['Indexer']::open($settings->_luceneDir);
|
||||
$indexconf['Indexer']::init($settings->_stopWordsFile);
|
||||
} else {
|
||||
$index = null;
|
||||
$indexconf = null;
|
||||
}
|
||||
|
||||
$controller = Controller::factory('AddDocument');
|
||||
$controller->setParam('dms', $this->dms);
|
||||
$controller->setParam('user', $this->user);
|
||||
$controller->setParam('documentsource', 'webdav');
|
||||
$controller->setParam('folder', $folder);
|
||||
$controller->setParam('fulltextservice', $fulltextservice);
|
||||
$controller->setParam('index', $index);
|
||||
$controller->setParam('indexconf', $indexconf);
|
||||
$controller->setParam('name', $name);
|
||||
|
|
Loading…
Reference in New Issue
Block a user