|
From: creedon <icr...@us...> - 2006-02-02 07:43:26
|
Update of /cvsroot/frontierkernel/odbs/mainResponderRoot/mainResponder/adminSite/website In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7803 Modified Files: updates Log Message: attribute values must be quoted, towards XHTML compliance Index: updates =================================================================== RCS file: /cvsroot/frontierkernel/odbs/mainResponderRoot/mainResponder/adminSite/website/updates,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** updates 31 Jan 2006 20:23:26 -0000 1.3 --- updates 2 Feb 2006 07:43:17 -0000 1.4 *************** *** 1,3 **** FrontierVcsFile:1:scpt:mainResponder.adminSite.website.updates ! on updates () { ÇChanges Ç1/28/06; 7:24:10 PM by TAC Çtweaked script formatting Çadded categories for rootUpdates.getPendingUpdatesList call Ç12/24/05; 11:50:35 AM by TAC Çremoved UserLand and Manila references Ç12/16/03; 3:33:02 AM by JES ÇCreated. Display the pending feature updates and bug fixes which have yet to be downloaded. local (pta = html.getPageTableAddress ()); Çscratchpad.pt = pta^ pta^.title = "Pending Updates"; local (htmlText = ""); on add (s) { htmlText = htmlText + (s + "\r");}; bundle { //explanatory text add ("<p>The pending updates page displays features and bug fixes available, which have not yet been installed on this server. To download the recent updates, click the Update Now button.</p>")}; bundle { //update now button and processing add ("<form method=\"post\">"); add ("<table cellpadding=0 cellspacing=0 border=0>" + mainResponder.adminSite.prefs.updateNowButton (false) + "</table><br /><br />"); add ("</form>")}; local (dbsToUpdate = {"Frontier", "mainResponder", "prefs"}); try {rootUpdates.getPendingUpdatesList (@config.mainResponder.stats, mainResponder.data.featureListRssUrl, dbsToUpdate, {"Frontier.root Updates", "mainResponder.root Updates", "prefs.root Updates"})}; add (rootUpdates.listPendingUpdates (@config.mainResponder.stats)); return (htmlText)}; Çbundle // testing Çhtml.setPageTableAddress (@scratchpad.pt) Ç Çupdates () Ç Çhtml.deletePageTableAddress () \ No newline at end of file --- 1,3 ---- FrontierVcsFile:1:scpt:mainResponder.adminSite.website.updates ! on updates () { ÇChanges Ç2/1/06; 12:43:15 PM by TAC Çattribute values must be quoted, towards XHTML compliance Ç1/28/06; 7:24:10 PM by TAC Çtweaked script formatting Çadded categories for rootUpdates.getPendingUpdatesList call Ç12/24/05; 11:50:35 AM by TAC Çremoved UserLand and Manila references Ç12/16/03; 3:33:02 AM by JES ÇCreated. Display the pending feature updates and bug fixes which have yet to be downloaded. local (pta = html.getPageTableAddress ()); Çscratchpad.pt = pta^ pta^.title = "Pending Updates"; local (htmlText = ""); on add (s) { htmlText = htmlText + (s + "\r");}; bundle { //explanatory text add ("<p>The pending updates page displays features and bug fixes available, which have not yet been installed on this server. To download the recent updates, click the Update Now button.</p>")}; bundle { //update now button and processing add ("<form method=\"post\">"); add ("<table cellpadding=\"0\" cellspacing=\"0\" border=\"0\">" + mainResponder.adminSite.prefs.updateNowButton (false) + "</table><br /><br />"); add ("</form>")}; local (dbsToUpdate = {"Frontier", "mainResponder", "prefs"}); try {rootUpdates.getPendingUpdatesList (@config.mainResponder.stats, mainResponder.data.featureListRssUrl, dbsToUpdate, {"Frontier.root Updates", "mainResponder.root Updates", "prefs.root Updates"})}; add (rootUpdates.listPendingUpdates (@config.mainResponder.stats)); return (htmlText)}; Çbundle // testing Çhtml.setPageTableAddress (@scratchpad.pt) Ç Çupdates () Ç Çhtml.deletePageTableAddress () \ No newline at end of file |