/usr/share/php/LetoDMS/Lucene/Indexer.php is in php-letodms-lucene 1.0.2-2ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45  | <?php
/**
 * Implementation of lucene index
 *
 * @category   DMS
 * @package    LetoDMS_Lucene
 * @license    GPL 2
 * @version    @version@
 * @author     Uwe Steinmann <uwe@steinmann.cx>
 * @copyright  Copyright (C) 2010, Uwe Steinmann
 * @version    Release: 1.0.2
 */
/**
 * Class for managing a lucene index.
 *
 * @category   DMS
 * @package    LetoDMS_Lucene
 * @version    @version@
 * @author     Uwe Steinmann <uwe@steinmann.cx>
 * @copyright  Copyright (C) 2011, Uwe Steinmann
 * @version    Release: 1.0.2
 */
class LetoDMS_Lucene_Indexer extends Zend_Search_Lucene {
	/**
	 * @var string $indexname name of lucene index
	 * @access protected
	 */
	protected $indexname;
	/**
	 * Create a new index
	 *
	 * @return object instance of LetoDMS_Lucene_Search
	 */
	function __construct() { /* {{{ */
		$this->version = '1.0.2';
		if($this->version[0] == '@')
			$this->version = '3.0.0';
	} /* }}} */
}
?>
 |