From: Argiris K. <be...@us...> - 2005-11-18 10:29:13
|
Update of /cvsroot/magicajax/magicajax/Core/UI/Controls In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28093/Core/UI/Controls Modified Files: AjaxPanel.cs Log Message: Added 'unloadStoredPage' configuration option that defines whether the stored page will be dropped at the client's page unload event. Moved GetBase64MD5Sum method to Util.cs Index: AjaxPanel.cs =================================================================== RCS file: /cvsroot/magicajax/magicajax/Core/UI/Controls/AjaxPanel.cs,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** AjaxPanel.cs 17 Nov 2005 15:11:46 -0000 1.10 --- AjaxPanel.cs 18 Nov 2005 10:29:04 -0000 1.11 *************** *** 184,188 **** if (IsPageNoStoreMode) ! _controlHtmlHashes[control] = AjaxCallHelper.GetBase64MD5Sum(sb.ToString()); else _controlHtmls[control] = sb.ToString(); --- 184,188 ---- if (IsPageNoStoreMode) ! _controlHtmlHashes[control] = Util.GetBase64MD5Sum(sb.ToString()); else _controlHtmls[control] = sb.ToString(); *************** *** 290,294 **** if (IsPageNoStoreMode) ! _controlHtmlHashes[con] = AjaxCallHelper.GetBase64MD5Sum(sb.ToString()); else _controlHtmls[con] = sb.ToString(); --- 290,294 ---- if (IsPageNoStoreMode) ! _controlHtmlHashes[con] = Util.GetBase64MD5Sum(sb.ToString()); else _controlHtmls[con] = sb.ToString(); *************** *** 409,413 **** if (IsPageNoStoreMode) ! _controlHtmlHashes[con] = AjaxCallHelper.GetBase64MD5Sum(sb.ToString()); else _controlHtmls[con] = sb.ToString(); --- 409,413 ---- if (IsPageNoStoreMode) ! _controlHtmlHashes[con] = Util.GetBase64MD5Sum(sb.ToString()); else _controlHtmls[con] = sb.ToString(); *************** *** 452,456 **** if (IsPageNoStoreMode) ! _controlHtmlHashes[con] = AjaxCallHelper.GetBase64MD5Sum(sb.ToString()); else _controlHtmls[con] = sb.ToString(); --- 452,456 ---- if (IsPageNoStoreMode) ! _controlHtmlHashes[con] = Util.GetBase64MD5Sum(sb.ToString()); else _controlHtmls[con] = sb.ToString(); *************** *** 467,471 **** if (IsPageNoStoreMode) { ! string htmlHashCode = AjaxCallHelper.GetBase64MD5Sum(html); // If it's html rendering sha1 hash is the same, ignore it. --- 467,471 ---- if (IsPageNoStoreMode) { ! string htmlHashCode = Util.GetBase64MD5Sum(html); // If it's html rendering sha1 hash is the same, ignore it. |