[Zope-CVS] CVS: Packages/JobBoardEx - IJob.py:1.10

Guido van Rossum guido@python.org
Mon, 17 Jun 2002 10:02:06 -0400


Update of /cvs-repository/Packages/JobBoardEx
In directory cvs.zope.org:/tmp/cvs-serv14835

Modified Files:
	IJob.py 
Log Message:
Put back attribute definitions for submitter, description and contact.


=== Packages/JobBoardEx/IJob.py 1.9 => 1.10 ===
     """Interface for the basic Job"""
 
+    submitter = Attribute("submitter",
+                          "Email address of the submitter")
+
     summary = Attribute("summary",
                         "One-line summary of the job")
 
+    description = Attribute("description",
+                            "Longer description of the job")
+
+    contact = Attribute("contact",
+                        "Email address to contact about the job")
+
     state = Attribute("state",
                       "Current state of the job listing.\n"
                       "The possible values are defined in JobState.")
 
     def approve():
-        "Moves the job state to approved"
+        "Moves the job state to Approved"
 
 
 class JobState: