- Timestamp:
- 11/23/08 18:48:36 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Xul_XedLib/chrome/content/scenarixedlib/core/xedBase.xbl.xml
r12179 r12188 491 491 var vForceReadOnly = this.isReadOnly; 492 492 //Execution des "onxedload" des noeuds. 493 if(vForceReadOnly && ("isReadOnly" in pDst)) pDst.isReadOnly = true; 493 if(vForceReadOnly && ("isReadOnly" in pDst)) { 494 try{ 495 pDst.isReadOnly = true; 496 } catch(e){xed.debug("isReadOnly=true failed : "+e+"\n"+xed.getXml(pDst));} 497 } 494 498 if("onxedload" in pDst){ 495 499 try{ … … 504 508 var vDstNode = vTwDst.firstChild(); 505 509 while(vDstNode) { 506 if(vForceReadOnly && ("isReadOnly" in vDstNode)) vDstNode.isReadOnly = true; 510 if(vForceReadOnly && ("isReadOnly" in vDstNode)) { 511 try{ 512 vDstNode.isReadOnly = true; 513 } catch(e){xed.debug("isReadOnly=true failed : "+e+"\n"+xed.getXml(vDstNode));} 514 } 507 515 if("onxedload" in vDstNode){ 508 516 try{ … … 1243 1251 //if(vNextSrc) { //Il y en a d'autres après => rollback 1244 1252 if(sSrc.fSavePointDst){ 1245 xed.debug("fSavePointDst:::"+xed.getXml(sSrc.fSavePointDst));1253 //xed.debug("fSavePointDst:::"+xed.getXml(sSrc.fSavePointDst)); 1246 1254 //On repart d'un savePoint 1247 1255 //On supprime les dst suivantes
Note: See TracChangeset
for help on using the changeset viewer.