Пример #1
0
def importBlacklist(importFile):
    oList = CPEList(collection, args)
    return oList.importList(importFile)
Пример #2
0
def dropBlacklist():
    oList = CPEList(collection, args)
    oList.dropCollection()
Пример #3
0
def insertWhitelist(cpe, cpeType):
    oList = CPEList(collection, args)
    return oList.insert(cpe,cpeType)
Пример #4
0
def updateWhitelist(cpeOld, cpeNew, cpeType):
    oList = CPEList(collection, args)
    return oList.update(cpeOld, cpeNew, cpeType)
Пример #5
0
def exportWhitelist(exportFile=None):
    oList = CPEList(collection, args)
    return oList.exportList(exportFile)
Пример #6
0
def countWhitelist():
    oList = CPEList(collection, args)
    return oList.countItems()
Пример #7
0
def countBlacklist():
    oList = CPEList(collection, args)
    return oList.countItems()
Пример #8
0
def exportBlacklist(exportFile):
    oList = CPEList(collection, args)
    oList.exportList(exportFile)
Пример #9
0
def exportBlacklist(exportFile):
    oList = CPEList(collection, args)
    oList.exportList(exportFile)
Пример #10
0
def dropBlacklist():
    oList = CPEList(collection, args)
    oList.dropCollection()
Пример #11
0
def importBlacklist(importFile):
    oList = CPEList(collection, args)
    oList.importList(importFile)
Пример #12
0
def updateWhitelist(cpeOld, cpeNew):
    oList = CPEList(collection, args)
    return oList.update(cpeOld, cpeNew)
Пример #13
0
def updateBlacklist(cpeOld, cpeNew):
    oList = CPEList(collection, args)
    return oList.update(cpeOld, cpeNew)
Пример #14
0
def checkBlacklist(cpe):
    oList = CPEList(collection, args)
    amount = oList.check(cpe)
    return amount
Пример #15
0
def removeBlacklist(cpe):
    oList = CPEList(collection, args)
    return oList.remove(cpe)
Пример #16
0
def removeBlacklist(cpe):
    oList = CPEList(collection, args)
    return oList.remove(cpe)
Пример #17
0
def dropBlacklist(user = None):
    oList = CPEList(collection, args)
    oList.dropCollection(user)
Пример #18
0
def importWhitelist(importFile):
    oList = CPEList(collection, args)
    return oList.importList(importFile)
Пример #19
0
def importWhitelist(importFile):
    oList = CPEList(collection, args)
    oList.importList(importFile)
Пример #20
0
def dropWhitelist():
    oList = CPEList(collection, args)
    oList.dropCollection()
Пример #21
0
def exportWhitelist(exportFile):
    oList = CPEList(collection, args)
    oList.exportList(exportFile)
Пример #22
0
def checkWhitelist(cpe):
    oList = CPEList(collection, args)
    amount = oList.check(cpe)
    return amount
Пример #23
0
def dropWhitelist():
    oList = CPEList(collection, args)
    return oList.dropCollection()
Пример #24
0
def removeWhitelist(cpe):
    oList = CPEList(collection, args)
    return oList.remove(cpe)
Пример #25
0
def countWhitelist():
    oList = CPEList(collection, args)
    return oList.countItems()
Пример #26
0
def countBlacklist():
    oList = CPEList(collection, args)
    return oList.countItems()


def checkBlacklist(cpe):
    oList = CPEList(collection, args)
    amount = oList.check(cpe)
    return amount


def insertBlacklist(cpe, cpeType):
    oList = CPEList(collection, args)
    return oList.insert(cpe, cpeType)


def removeBlacklist(cpe):
    oList = CPEList(collection, args)
    return oList.remove(cpe)


def updateBlacklist(cpeOld, cpeNew, cpeType):
    oList = CPEList(collection, args)
    return oList.update(cpeOld, cpeNew, cpeType)


if __name__ == '__main__':
    oList = CPEList(collection, args)
    oList.process()
Пример #27
0
def insertWhitelist(cpe, cpeType, comments=None):
    oList = CPEList(collection, args)
    return oList.insert(cpe, cpeType, comments)
Пример #28
0
def exportBlacklist(exportFile=None):
    oList = CPEList(collection, args)
    return oList.exportList(exportFile)
Пример #29
0
def removeWhitelist(cpe):
    oList = CPEList(collection, args)
    return oList.remove(cpe)
Пример #30
0
def countBlacklist():
    oList = CPEList(collection, args)
    return oList.countItems()
Пример #31
0
def exportWhitelist(exportFile):
    oList = CPEList(collection, args)
    oList.exportList(exportFile)
Пример #32
0
def insertBlacklist(cpe, cpeType):
    oList = CPEList(collection, args)
    return oList.insert(cpe, cpeType)
Пример #33
0

def countWhitelist():
    oList = CPEList(collection, args)
    return oList.countItems()


def checkWhitelist(cpe):
    oList = CPEList(collection, args)
    amount = oList.check(cpe)
    return amount


def insertWhitelist(cpe, cpeType):
    oList = CPEList(collection, args)
    return oList.insert(cpe,cpeType)


def removeWhitelist(cpe):
    oList = CPEList(collection, args)
    return oList.remove(cpe)


def updateWhitelist(cpeOld, cpeNew, cpeType):
    oList = CPEList(collection, args)
    return oList.update(cpeOld, cpeNew, cpeType)

if __name__ == '__main__':
    oList = CPEList(collection, args)
    oList.process()
Пример #34
0
def updateBlacklist(cpeOld, cpeNew, cpeType):
    oList = CPEList(collection, args)
    return oList.update(cpeOld, cpeNew, cpeType)
Пример #35
0
def insertWhitelist(cpe, cpeType, isglobal, user):
    oList = CPEList(collection, args)
    return oList.insert(cpe, cpeType, isglobal, user)