Searched refs:name (Results 1 - 25 of 66) sorted by relevance

123

/ec/ECQuiz/Products/ECQuiz/
H A DListValidator.py39 def __init__(self, name):
40 self.name = name
H A Dvalidators.py38 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 Dl2.py32 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 Dvalidators.py25 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 Dvalidators.py29 def __init__(self, name, title='', description=''):
30 self.name = name
31 self.title = title or name
/ec/ECSpooler/lib/util/
H A DBackendSchema.py34 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 Dsettings.py24 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 Dservicecontrol.py31 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 Dbackendctl59 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 Ddto.py42 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 Decabbase.py34 name=u'plone_tools')
39 name=u'plone_portal_state')
/ec/ECAssignmentBox/
H A Dsetup.py20 setup(name='Products.ECAssignmentBox',
/ec/ECAutoAssessmentBox/
H A Dsetup.py17 setup(name='Products.ECAutoAssessmentBox',
/ec/ECLecture/
H A Dsetup.py18 setup(name='Products.ECLecture',
/ec/ECQuiz/
H A Dsetup.py17 setup(name='Products.ECQuiz',
/ec/ECSpooler/backends/echo/
H A DEcho.py40 name = 'Echo von sh und ma' variable in class:Echo
/ec/ECSpooler/
H A Dsetup.py42 setup (name="ECSpooler",
/ec/ECSpooler/backends/sql/lib/
H A Dcommons-logging-1.1.1.jar ... %3E" <init> (java.lang.String) String name public org.apache.avalon.framework.logger ...
H A Dslf4j-simple-1.7.2.jar ... String getStringProperty (java.lang.String) SecurityException e String name String prop private static java.lang.String getStringProperty ...
H A Dslf4j-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 Dportlet.py72 name=u'plone_tools')
77 name=u'plone_portal_state')
/ec/ECQuiz/Products/ECQuiz/AnswerTypes/
H A DECQBaseAnswer.py45 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 Dconfig.py63 # 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 DHaskellIO.py52 name = 'Haskell I/O' variable in class:HaskellIO
/ec/ECQuiz/Products/ECQuiz/tests/
H A Dbase.py54 name = prefix + prop_name[0].upper() + prop_name[1:]
55 return getattr(obj, name)

Completed in 245 milliseconds

123