コード例 #1
0
 def _checkZEOpasswd(self):
     args = ["-f", self.pwfile, "-p", self.protocol]
     if self.protocol == "plaintext":
         from ZEO.auth.base import Database
         zeopasswd.main(args + ["-d", "foo"], Database)
         zeopasswd.main(args + ["foo", "bar"], Database)
     else:
         zeopasswd.main(args + ["-d", "foo"])
         zeopasswd.main(args + ["foo", "bar"])
コード例 #2
0
ファイル: testAuth.py プロジェクト: bendavis78/zope
 def _checkZEOpasswd(self):
     args = ["-f", self.pwfile, "-p", self.protocol]
     if self.protocol == "plaintext":
         from ZEO.auth.base import Database
         zeopasswd.main(args + ["-d", "foo"], Database)
         zeopasswd.main(args + ["foo", "bar"], Database)
     else:
         zeopasswd.main(args + ["-d", "foo"])
         zeopasswd.main(args + ["foo", "bar"])
コード例 #3
0
#!python
##############################################################################
#
# Copyright (c) 2003 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################

import sys

from ZEO.zeopasswd import main

main(sys.argv[1:])