Title: [commits] (john) [11212] remove more displayNames

Diff

Modified: trunk/chandler/application/Utility.py (11211 => 11212)

--- trunk/chandler/application/Utility.py	2006-07-20 00:54:24 UTC (rev 11211)
+++ trunk/chandler/application/Utility.py	2006-07-21 00:36:21 UTC (rev 11212)
@@ -33,7 +33,7 @@
 # with your name (and some helpful text). The comment's really there just to
 # cause Subversion to warn you of a conflict when you update, in case someone 
 # else changes it at the same time you do (that's why it's on the same line).
-SCHEMA_VERSION = "220" #john: remove displayName from Amazon parcel
+SCHEMA_VERSION = "221" #john: remove more displayNames
 
 logger = None # initialized in initLogging()
 

Modified: trunk/chandler/parcels/osaf/framework/blocks/calendar/TimedCanvas.py (11211 => 11212)

--- trunk/chandler/parcels/osaf/framework/blocks/calendar/TimedCanvas.py	2006-07-20 00:54:24 UTC (rev 11211)
+++ trunk/chandler/parcels/osaf/framework/blocks/calendar/TimedCanvas.py	2006-07-21 00:36:21 UTC (rev 11212)
@@ -721,7 +721,7 @@
         """
         canvasItem = self.SelectedCanvasItem()
         if canvasItem is None and self._bgSelectionStartTime is not None:
-            canvasItem = self.OnCreateItem(None, displayName = '')
+            canvasItem = self.OnCreateItem(None)
         if canvasItem is not None:
             self.OnEditItem(canvasItem)
 

Modified: trunk/chandler/parcels/osaf/framework/certstore/certificate.py (11211 => 11212)

--- trunk/chandler/parcels/osaf/framework/certstore/certificate.py	2006-07-20 00:54:24 UTC (rev 11211)
+++ trunk/chandler/parcels/osaf/framework/certstore/certificate.py	2006-07-21 00:36:21 UTC (rev 11212)
@@ -53,14 +53,7 @@
     """
 
     who = schema.One(redirectTo = 'displayName')
-    displayName = schema.One(
-        schema.Text, displayName = _(u'Display Name'),
-        doc = 'Display Name.',
-    )
-    about = schema.One(
-        doc = "Issues: type would make more sense, but it isn't supported for summary view.",
-        redirectTo = 'trust',
-    )
+    about = schema.One(redirectTo = 'trust')
     date = schema.One(redirectTo = 'createdOn')
     type = schema.One(
         typeEnum,

Modified: trunk/chandler/parcels/osaf/pim/mail.py (11211 => 11212)

--- trunk/chandler/parcels/osaf/pim/mail.py	2006-07-20 00:54:24 UTC (rev 11211)
+++ trunk/chandler/parcels/osaf/pim/mail.py	2006-07-21 00:36:21 UTC (rev 11212)
@@ -159,7 +159,7 @@
         initialValue = u'',
     )
     port = schema.One(
-        schema.Integer, displayName = _(u'Port'), doc = 'The port number to use',
+        schema.Integer, doc = 'The port number to use',
     )
     connectionSecurity = schema.One(
         connectionSecurityEnum,
@@ -451,7 +451,7 @@
     )
 
     folder = schema.One(
-        schema.Text, displayName = u'Folder', initialValue = u'',
+        schema.Text, initialValue = u'',
     )
     uid = schema.One(
         schema.Long,
@@ -466,7 +466,7 @@
         initialValue = u'',
     )
     flags = schema.Sequence(
-        schema.Text, displayName = u'Flags', initialValue = [],
+        schema.Text, initialValue = [],
     )
 
 
@@ -509,9 +509,9 @@
     )
 
     filename = schema.One(
-        schema.Text, displayName = _(u'File name'), initialValue = u'',
+        schema.Text, initialValue = u'',
     )
-    filesize = schema.One(schema.Long, displayName = _(u'File Size'))
+    filesize = schema.One(schema.Long)
 
     schema.addClouds(
         sharing = schema.Cloud(filename, filesize),

Modified: trunk/chandler/parcels/osaf/pim/tasks.py (11211 => 11212)

--- trunk/chandler/parcels/osaf/pim/tasks.py	2006-07-20 00:54:24 UTC (rev 11211)
+++ trunk/chandler/parcels/osaf/pim/tasks.py	2006-07-21 00:36:21 UTC (rev 11212)
@@ -74,7 +74,7 @@
         TaskStatusEnum,
         displayName = u'Task Status',
     )
-    dueDate = schema.One(schema.DateTimeTZ, displayName = u'Due date')
+    dueDate = schema.One(schema.DateTimeTZ)
     whoFrom = schema.One(redirectTo = 'requestor')
     about = schema.One(redirectTo = 'displayName')
 

Modified: trunk/chandler/tools/QATestScripts/Performance/PerfLargeDataSharing.py (11211 => 11212)

--- trunk/chandler/tools/QATestScripts/Performance/PerfLargeDataSharing.py	2006-07-20 00:54:24 UTC (rev 11211)
+++ trunk/chandler/tools/QATestScripts/Performance/PerfLargeDataSharing.py	2006-07-21 00:36:21 UTC (rev 11212)
@@ -61,7 +61,7 @@
     ap.Ok()
 
     # verification
-    ap.VerifyValues("WebDAV", uw("Publish Test WebDAV"), displayName = uw("Publish Test WebDAV"), host = "qacosmo.osafoundation.org", username = "demo1", password="ad3leib5", port=8080)
+    ap.VerifyValues("WebDAV", uw("Publish Test WebDAV"), host = "qacosmo.osafoundation.org", username = "demo1", password="ad3leib5", port=8080)
 
     # import events so test will have something to share even when run by itself
     path = os.path.join(os.getenv('CHANDLERHOME'),"tools/QATestScripts/DataFiles")

Modified: trunk/chandler/util/commandline.py (11211 => 11212)

--- trunk/chandler/util/commandline.py	2006-07-20 00:54:24 UTC (rev 11211)
+++ trunk/chandler/util/commandline.py	2006-07-21 00:36:21 UTC (rev 11212)
@@ -68,7 +68,7 @@
 
         start = parse_datetime(s)
         length = parse_timedelta(l)
-        task = Calendar.CalendarEvent(itsView=view, displayName = data, startTime=start , duration=length )
+        task = Calendar.CalendarEvent(itsView=view, startTime=start , duration=length )
         view.commit()
     elif subcommand == 'task':
         task = pim.Task(itsView=view, displayName=text)




_______________________________________________
Commits mailing list
[email protected]
http://lists.osafoundation.org/mailman/listinfo/commits

Reply via email to