web/lib/Zend/Search/Lucene/Analysis/Analyzer/Common.php
changeset 807 877f952ae2bd
parent 207 621fa6caec0c
child 1230 68c69c656a2c
equal deleted inserted replaced
805:5e7a0fedabdf 807:877f952ae2bd
    13  * to license@zend.com so we can send you a copy immediately.
    13  * to license@zend.com so we can send you a copy immediately.
    14  *
    14  *
    15  * @category   Zend
    15  * @category   Zend
    16  * @package    Zend_Search_Lucene
    16  * @package    Zend_Search_Lucene
    17  * @subpackage Analysis
    17  * @subpackage Analysis
    18  * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
    18  * @copyright  Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
    19  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    19  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    20  * @version    $Id: Common.php 20096 2010-01-06 02:05:09Z bkarwin $
    20  * @version    $Id: Common.php 24847 2012-05-31 19:19:28Z rob $
    21  */
    21  */
    22 
    22 
    23 
    23 
    24 /** Define constant used to provide correct file processing order    */
    24 /** Define constant used to provide correct file processing order    */
    25 /** @todo Section should be removed with ZF 2.0 release as obsolete  */
    25 /** @todo Section should be removed with ZF 2.0 release as obsolete  */
    26 define('ZEND_SEARCH_LUCENE_COMMON_ANALYZER_PROCESSED', true);
    26 if (!defined('ZEND_SEARCH_LUCENE_COMMON_ANALYZER_PROCESSED')) {
       
    27     define('ZEND_SEARCH_LUCENE_COMMON_ANALYZER_PROCESSED', true);
       
    28 }
    27 
    29 
    28 
    30 
    29 /** Zend_Search_Lucene_Analysis_Analyzer */
    31 /** Zend_Search_Lucene_Analysis_Analyzer */
    30 require_once 'Zend/Search/Lucene/Analysis/Analyzer.php';
    32 require_once 'Zend/Search/Lucene/Analysis/Analyzer.php';
    31 
    33 
    44  * @todo ZSearchHTMLAnalyzer and ZSearchXMLAnalyzer implementation
    46  * @todo ZSearchHTMLAnalyzer and ZSearchXMLAnalyzer implementation
    45  *
    47  *
    46  * @category   Zend
    48  * @category   Zend
    47  * @package    Zend_Search_Lucene
    49  * @package    Zend_Search_Lucene
    48  * @subpackage Analysis
    50  * @subpackage Analysis
    49  * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
    51  * @copyright  Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
    50  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    52  * @license    http://framework.zend.com/license/new-bsd     New BSD License
    51  */
    53  */
    52 abstract class Zend_Search_Lucene_Analysis_Analyzer_Common extends Zend_Search_Lucene_Analysis_Analyzer
    54 abstract class Zend_Search_Lucene_Analysis_Analyzer_Common extends Zend_Search_Lucene_Analysis_Analyzer
    53 {
    55 {
    54     /**
    56     /**