
\c           @   s@   d  Z  d d l m Z d d l m Z d e f d     YZ d S(   s   
    sphinxcontrib.websupport.search.nullsearch
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    The default search adapter, does nothing.

    :copyright: Copyright 2007-2016 by the Sphinx team, see AUTHORS.
    :license: BSD, see LICENSE for details.
i(   t
   BaseSearch(   t   NullSearchExceptiont
   NullSearchc           B   s    e  Z d  Z d   Z d   Z RS(   sV   A search adapter that does nothing. Used when no search adapter
    is specified.
    c         C   s   d  S(   N(    (   t   selft   pagenamet   filenamet   titlet   doctree(    (    sI   lib/python2.7/site-packages/sphinxcontrib/websupport/search/nullsearch.pyt   feed   s    c         C   s   t  d   d  S(   Ns   No search adapter specified.(   R   (   R   t   q(    (    sI   lib/python2.7/site-packages/sphinxcontrib/websupport/search/nullsearch.pyt   query   s    (   t   __name__t
   __module__t   __doc__R   R
   (    (    (    sI   lib/python2.7/site-packages/sphinxcontrib/websupport/search/nullsearch.pyR      s   	N(   R   t   sphinxcontrib.websupport.searchR    t   sphinxcontrib.websupport.errorsR   R   (    (    (    sI   lib/python2.7/site-packages/sphinxcontrib/websupport/search/nullsearch.pyt   <module>
   s   