/ec/ECQuiz/Products/ECQuiz/ |
H A D | ListValidator.py | 39 def __init__(self, name): 40 self.name = name
|
H A D | validators.py | 38 def __init__(self, name): 39 self.name = name 74 def __init__(self, name): 75 self.name = name 91 def __init__(self, name): 92 self.name = name 125 def __init__(self, name) [all...] |
H A D | l2.py | 32 def __init__(self, name): 33 self.name = name 36 return cmp(self.name, other.name) 40 return self.name 45 def __init__(self, name): 46 Symbol.__init__(self, name[1:]) 48 return ':' + self.name 210 def intern(name, klas [all...] |
/ec/ECAssignmentBox/Products/ECAssignmentBox/content/ |
H A D | validators.py | 25 def __init__(self, name, title='', description=''): 28 self.name = name 29 self.title = title or name 38 return ("Validation failed (%(name)s): could not convert \ 39 '%(value)r' to number" % { 'name' : self.name, 'value': value})
|
/ec/ECLecture/Products/ECLecture/content/ |
H A D | validators.py | 29 def __init__(self, name, title='', description=''): 30 self.name = name 31 self.title = title or name
|
/ec/ECSpooler/lib/util/ |
H A D | BackendSchema.py | 34 def __init__(self, name=None, **kwargs): 36 Assign name to __name__. Add properties and passed-in 39 if name is None: 42 name = 'field.%s' % _field_count 44 self.__name__ = name 51 """Return the name of this field as a string""" 57 def getProperty(self, name): 58 return dict(vars(self))[name] 69 def copy(self, name=None): 71 Return a copy of field instance, consisting of field name an [all...] |
H A D | settings.py | 24 def init_logging(name=None): 26 Initialize logging using root logger and specified name for log file. 28 @param name: specified logger name which will be used as basename for log file. 32 get_logger(None, name) 35 def get_logger(name, filename=None, level=LOG_LEVEL, maxBytes=LOG_FILESIZE, backupCount=LOG_FILES, fmt=LF_LONG): 39 @param name: specified logger name which will be used as basename of the logfile. 46 log = logging.getLogger(name)
|
H A D | servicecontrol.py | 31 def __init__(self, name, port, username=None, password=None): 34 self.name = name 81 print >> sys.stdout, "Starting %s at %s" % (self.name, time.asctime()) 120 print >> sys.stdout, "Stopping %s at %s:%d" % (self.name, self.host, self.port)
|
/ec/ECSpooler/bin/ |
H A D | backendctl | 59 def __init__(self, name, spooler_host, spooler_port, backend_port, username=None, password=None): 62 ServiceControl.__init__(self, name, backend_port, username=username, password=password) 79 exec 'from backends.%s import %s' % (self.name.lower(), self.name) 80 exec 'id = %s.%s.id' % (self.name, self.name,) 82 print >> sys.stderr, "No such backend: '%s'" % self.name 86 % (self.name, self.name.capitalize(),) 89 exec 'version = %s.%s.version' % (self.name, sel [all...] |
/ec/ECSpooler/lib/data/ |
H A D | dto.py | 42 name = Unicode variable in class:BackendStatus 58 name = Unicode variable in class:Backend 64 name = Unicode variable in class:BackendInputField 79 name = Unicode variable in class:BackendTestField
|
/ec/ECAssignmentBox/Products/ECAssignmentBox/browser/ |
H A D | ecabbase.py | 34 name=u'plone_tools') 39 name=u'plone_portal_state')
|
/ec/ECAssignmentBox/ |
H A D | setup.py | 20 setup(name='Products.ECAssignmentBox',
|
/ec/ECAutoAssessmentBox/ |
H A D | setup.py | 17 setup(name='Products.ECAutoAssessmentBox',
|
/ec/ECLecture/ |
H A D | setup.py | 18 setup(name='Products.ECLecture',
|
/ec/ECQuiz/ |
H A D | setup.py | 17 setup(name='Products.ECQuiz',
|
/ec/ECSpooler/backends/echo/ |
H A D | Echo.py | 40 name = 'Echo von sh und ma' variable in class:Echo
|
/ec/ECSpooler/ |
H A D | setup.py | 42 setup (name="ECSpooler",
|
/ec/ECSpooler/backends/sql/lib/ |
H A D | commons-logging-1.1.1.jar | ... %3E" <init> (java.lang.String) String name
public org.apache.avalon.framework.logger ... |
H A D | slf4j-simple-1.7.2.jar | ... String getStringProperty (java.lang.String) SecurityException e
String name
String prop
private static java.lang.String getStringProperty ... |
H A D | slf4j-api-1.7.2.jar | ... .Marker {
private static final long serialVersionUID private final String name private java.util.List refereceList private static String ... |
/ec/ECLecture/Products/ECLecture/portlets/ |
H A D | portlet.py | 72 name=u'plone_tools') 77 name=u'plone_portal_state')
|
/ec/ECQuiz/Products/ECQuiz/AnswerTypes/ |
H A D | ECQBaseAnswer.py | 45 name='title', variable in class:ECQBaseAnswer 58 name='answerkey', variable in class:ECQBaseAnswer 80 meta_type = 'ECQBaseAnswer' # zope type name 81 portal_type = meta_type # plone type name 82 archetype_name = 'Base Answer' # friendly type name
|
/ec/ECSpooler/backends/junit/ |
H A D | config.py | 63 # The name of the wrapper class that performs the semantic check 70 # Library directory name: 84 if os.name == 'dos' or os.name == 'nt':
|
/ec/ECSpooler/backends/haskellio/ |
H A D | HaskellIO.py | 52 name = 'Haskell I/O' variable in class:HaskellIO
|
/ec/ECQuiz/Products/ECQuiz/tests/ |
H A D | base.py | 54 name = prefix + prop_name[0].upper() + prop_name[1:] 55 return getattr(obj, name)
|