|
From: <cre...@us...> - 2006-05-20 18:38:35
|
Revision: 1388 Author: creecode Date: 2006-05-20 11:38:30 -0700 (Sat, 20 May 2006) ViewCVS: http://svn.sourceforge.net/frontierkernel/?rev=1388&view=rev Log Message: ----------- use Frontier.shipdate to set whenLastUpdatesRead Modified Paths: -------------- ODBs/trunk/frontierRoot/system/verbs/builtins/rootUpdates/getPendingUpdatesList.fvc Modified: ODBs/trunk/frontierRoot/system/verbs/builtins/rootUpdates/getPendingUpdatesList.fvc =================================================================== --- ODBs/trunk/frontierRoot/system/verbs/builtins/rootUpdates/getPendingUpdatesList.fvc 2006-05-20 18:37:02 UTC (rev 1387) +++ ODBs/trunk/frontierRoot/system/verbs/builtins/rootUpdates/getPendingUpdatesList.fvc 2006-05-20 18:38:30 UTC (rev 1388) @@ -1,16 +1,18 @@ -FrontierVcsFile:1:scpt:system.verbs.builtins.rootUpdates.getPendingUpdatesList +FrontierVcsFile:2:scpt:system.verbs.builtins.rootUpdates.getPendingUpdatesList on getPendingUpdatesList (adrUpdatesTable, rssUrl, databasesToUpdate, categories = nil) { - \xC7Changes - \xC72/18/06; 6:03:07 PM by TAC - \xC7fixed problem with trying to check the category of an item that had already been deleted - \xC71/28/06; 7:21:26 PM by TAC - \xC7added categories parameter - \xC7replaced referrer url with baseUrl and ip information - \xC78/5/04; 11:09:35 PM by JES - \xC7Change initial whenLastUpdatesRead date to 8/4/04. - \xC712/17/03; 1:34:37 AM by JES - \xC7Created. Read the RSS fead that lists pending root updates. + «Changes + «5/19/06; 4:06:07 PM by TAC + «use Frontier.shipdate to set whenLastUpdatesRead + «2/18/06; 6:03:07 PM by TAC + «fixed problem with trying to check the category of an item that had already been deleted + «1/28/06; 7:21:26 PM by TAC + «added categories parameter + «replaced referrer url with baseUrl and ip information + «8/5/04; 11:09:35 PM by JES + «Change initial whenLastUpdatesRead date to 8/4/04. + «12/17/03; 1:34:37 AM by JES + «Created. Read the RSS fead that lists pending root updates. local (flRead = false); @@ -21,7 +23,7 @@ new (tableType, @adrUpdatesTable^.pendingUpdates)}; if not defined (adrUpdatesTable^.whenLastUpdatesRead) { - adrUpdatesTable^.whenLastUpdatesRead = date.set (4, 8, 2004, 0, 0, 0)}; + adrUpdatesTable^.whenLastUpdatesRead = Frontier.shipdate}; if adrUpdatesTable^.whenLastUpdatesRead < date.yesterday (clock.now ()) { //read up to once every 24 hours flRead = true}; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |