SF.net SVN: fclient: [174] trunk/sandbox/fcp/fcp2_0_consts.py
Status: Pre-Alpha
Brought to you by:
jurner
From: <ju...@us...> - 2008-02-08 08:37:40
|
Revision: 174 http://fclient.svn.sourceforge.net/fclient/?rev=174&view=rev Author: jurner Date: 2008-02-08 00:37:46 -0800 (Fri, 08 Feb 2008) Log Message: ----------- removed ReequestStatus.Started Modified Paths: -------------- trunk/sandbox/fcp/fcp2_0_consts.py Modified: trunk/sandbox/fcp/fcp2_0_consts.py =================================================================== --- trunk/sandbox/fcp/fcp2_0_consts.py 2008-02-08 08:37:27 UTC (rev 173) +++ trunk/sandbox/fcp/fcp2_0_consts.py 2008-02-08 08:37:46 UTC (rev 174) @@ -295,7 +295,6 @@ """Request status flags @cvar Null: no status @cvar Pending: the request is not started yet - @cvar Started: the request has started @cvar Compressing: the request is about to be compressed @cvar Compressed: compressing is completed @cvar Success: the request has completed successfuly @@ -314,12 +313,11 @@ """ Null = 0x0 Pending = 0x1 - Started = 0x2 - Compressing = 0x4 - Compressed = 0x8 - Success = 0x10 - Error = 0x20 - Removed = 0x40 + Compressing = 0x2 + Compressed = 0x4 + Success = 0x8 + Error = 0x10 + Removed = 0x20 Completed =0x10000000 RemovedFromQueue = 0x2000000 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |