SF.net SVN: fclient: [405] trunk/sandbox/fcp2/client.py
Status: Pre-Alpha
Brought to you by:
jurner
|
From: <jU...@us...> - 2008-05-05 11:29:09
|
Revision: 405
http://fclient.svn.sourceforge.net/fclient/?rev=405&view=rev
Author: jUrner
Date: 2008-05-05 04:29:14 -0700 (Mon, 05 May 2008)
Log Message:
-----------
a few more notes
Modified Paths:
--------------
trunk/sandbox/fcp2/client.py
Modified: trunk/sandbox/fcp2/client.py
===================================================================
--- trunk/sandbox/fcp2/client.py 2008-05-05 11:18:52 UTC (rev 404)
+++ trunk/sandbox/fcp2/client.py 2008-05-05 11:29:14 UTC (rev 405)
@@ -143,10 +143,15 @@
# removbe request is now handled uniformly in Fcp. modify request not yet.
#
#-------------------------------------------------------------------------------------------------------------------------------------------------
+# [0002202: drop global persistents ]
+#
+# suggested dropping of global persistents. pretty dangerous and unhandy imo.
+#
+#
+#--------------------------------------------------------------------------------------------------------------------------------------------------
-
# Todos
#------------------------------------------------------------------------------------------------------------------------------------------------
# clean up
@@ -2127,7 +2132,8 @@
raise ValueError('Can not modify request: %s' % initialRequest.name)
#FIX: [0002083]
- # no way to change priority here ..this is simply not implemented in the protocol
+ # no way to change priority for non-persistent requests..this is simply not implemented in the protocol
+ # persistentUserData is ok, priority can not be changed. no idea how to handle this.
if initialRequest['Persistence'] == consts.Persistence.Connection:
modified = {}
#if priorityClass is not None:
@@ -2141,6 +2147,7 @@
initialRequest['Modified'] = modified
self.events.RequestModified(initialRequest)
return
+ #/FIX: [0002083]
msg = message.ModifyPersistentRequest(
Identifier=initialRequest['Identifier'],
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|