server/sources/__init__.py
changeset 9448 3e7cad3967c5
parent 9446 18a186b02970
child 9449 287a05ec7ab1
equal deleted inserted replaced
9447:0636c4960259 9448:3e7cad3967c5
    62     return True
    62     return True
    63 
    63 
    64 
    64 
    65 class AbstractSource(object):
    65 class AbstractSource(object):
    66     """an abstract class for sources"""
    66     """an abstract class for sources"""
    67     # does the source copy data into the system source, or is it a *true* source
       
    68     # (i.e. entities are not stored physically here)
       
    69     copy_based_source = False
       
    70 
    67 
    71     # boolean telling if modification hooks should be called when something is
    68     # boolean telling if modification hooks should be called when something is
    72     # modified in this source
    69     # modified in this source
    73     should_call_hooks = True
    70     should_call_hooks = True
    74     # boolean telling if the repository should connect to this source during
    71     # boolean telling if the repository should connect to this source during