server/sources/pyrorql.py
branchtls-sprint
changeset 1138 22f634977c95
parent 1016 26387b836099
child 1263 01152fffd593
equal deleted inserted replaced
1135:00eb43688a57 1138:22f634977c95
    22 from cubicweb import dbapi, server
    22 from cubicweb import dbapi, server
    23 from cubicweb import BadConnectionId, UnknownEid, ConnectionError
    23 from cubicweb import BadConnectionId, UnknownEid, ConnectionError
    24 from cubicweb.cwconfig import register_persistent_options
    24 from cubicweb.cwconfig import register_persistent_options
    25 from cubicweb.server.sources import AbstractSource, ConnectionWrapper
    25 from cubicweb.server.sources import AbstractSource, ConnectionWrapper
    26 
    26 
    27 class ReplaceByInOperator:
    27 class ReplaceByInOperator(Exception):
    28     def __init__(self, eids):
    28     def __init__(self, eids):
    29         self.eids = eids
    29         self.eids = eids
    30         
    30         
    31 class PyroRQLSource(AbstractSource):
    31 class PyroRQLSource(AbstractSource):
    32     """External repository source, using Pyro connection"""
    32     """External repository source, using Pyro connection"""