예제 #1
0
def dropBlacklist():
    oList = CPEList(collection, args)
    oList.dropCollection()
예제 #2
0
def countBlacklist():
    oList = CPEList(collection, args)
    return oList.countItems()
예제 #3
0
def importBlacklist(importFile):
    oList = CPEList(collection, args)
    return oList.importList(importFile)
예제 #4
0
def exportBlacklist(exportFile=None):
    oList = CPEList(collection, args)
    return oList.exportList(exportFile)
예제 #5
0
def exportBlacklist(exportFile):
    oList = CPEList(collection, args)
    oList.exportList(exportFile)
예제 #6
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()
예제 #7
0
def countWhitelist():
    oList = CPEList(collection, args)
    return oList.countItems()
예제 #8
0
def removeBlacklist(cpe):
    oList = CPEList(collection, args)
    return oList.remove(cpe)
예제 #9
0
def exportWhitelist(exportFile):
    oList = CPEList(collection, args)
    oList.exportList(exportFile)
예제 #10
0
def dropWhitelist():
    oList = CPEList(collection, args)
    return oList.dropCollection()
예제 #11
0
def importWhitelist(importFile):
    oList = CPEList(collection, args)
    oList.importList(importFile)
예제 #12
0
def dropBlacklist(user = None):
    oList = CPEList(collection, args)
    oList.dropCollection(user)
예제 #13
0
def updateWhitelist(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 insertWhitelist(cpe, cpeType, comments=None):
    oList = CPEList(collection, args)
    return oList.insert(cpe, cpeType, comments)
예제 #16
0
def insertBlacklist(cpe, cpeType):
    oList = CPEList(collection, args)
    return oList.insert(cpe, cpeType)
예제 #17
0
def removeWhitelist(cpe):
    oList = CPEList(collection, args)
    return oList.remove(cpe)
예제 #18
0
def updateBlacklist(cpeOld, cpeNew, cpeType):
    oList = CPEList(collection, args)
    return oList.update(cpeOld, cpeNew, cpeType)
예제 #19
0
def insertWhitelist(cpe, cpeType, isglobal, user):
    oList = CPEList(collection, args)
    return oList.insert(cpe, cpeType, isglobal, user)