From: Dion O. <dol...@us...> - 2005-11-18 19:59:50
|
Update of /cvsroot/magicajax/magicajax/Core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9442/magicajax/Core Modified Files: MagicAjaxModule.cs Log Message: oops, fix a minor bug (now caching the embedded AjaxCallObject.js file) Index: MagicAjaxModule.cs =================================================================== RCS file: /cvsroot/magicajax/magicajax/Core/MagicAjaxModule.cs,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** MagicAjaxModule.cs 18 Nov 2005 19:55:25 -0000 1.16 --- MagicAjaxModule.cs 18 Nov 2005 19:59:41 -0000 1.17 *************** *** 442,445 **** --- 442,446 ---- cachedAjaxCallObjectJs = reader.ReadToEnd(); } + context.Cache.Insert("__CACHED_AJAXCALLOBJECT_JS", cachedAjaxCallObjectJs); } context.Response.Write(cachedAjaxCallObjectJs); |