Changeset 9133
- Timestamp:
- 04/13/07 14:38:31 (5 years ago)
- Location:
- trunk/Xul_Cms/chrome/content/scenaricms
- Files:
-
- 5 edited
-
installmgr/installmgr.js (modified) (1 diff)
-
uriobject/uriobject.js (modified) (1 diff)
-
widgets/block/gen/genblock.xbl.xml (modified) (1 diff)
-
widgets/zone/genDeploy/genDeploy.js (modified) (1 diff)
-
wspview/wspview.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Xul_Cms/chrome/content/scenaricms/installmgr/installmgr.js
r8903 r9133 291 291 }else{// serveur distant => on on balance un stream 292 292 try{ 293 var vUrlServ = vServer.getServiceUrl("/u/adminWsp?cdaction=InstallRes ");293 var vUrlServ = vServer.getServiceUrl("/u/adminWsp?cdaction=InstallRes&scWspResp=no"); 294 294 var vUploadFile = new UploadFile(); 295 295 var vInstallMgr = this; -
trunk/Xul_Cms/chrome/content/scenaricms/uriobject/uriobject.js
r8804 r9133 94 94 if(!pUri) pUri = this.fUri; 95 95 pUri += "?"+pParamTransform; 96 return this.fServer.getServiceUrl("/u/vueObjet?cdaction=ShowContent& param="+window.encodeURIComponent(pUri));96 return this.fServer.getServiceUrl("/u/vueObjet?cdaction=ShowContent&scWspResp=no¶m="+window.encodeURIComponent(pUri)); 97 97 } else { 98 98 //On passe par la vue trav pour permettre de résoudre des url relatives (item de type .doss, .sitehtml, etc.) 99 return this.fServer.getSourceUrl("trav") + "/" + ( (!pUri) ? this.fUri : pUri ) ;99 return this.fServer.getSourceUrl("trav") + "/" + ( (!pUri) ? this.fUri : pUri ) + "?scWspResp=no"; 100 100 } 101 101 } -
trunk/Xul_Cms/chrome/content/scenaricms/widgets/block/gen/genblock.xbl.xml
r8451 r9133 138 138 <parameter name="pCdToDownload"/> 139 139 <body><![CDATA[ 140 var vUrl = this.fUriObject.getServer().getServiceUrl("/u/vuePrescription?cdaction=Download& param="+encodeURIComponent(this.fUriObject.getUri())+"&module="+pCdToDownload);140 var vUrl = this.fUriObject.getServer().getServiceUrl("/u/vuePrescription?cdaction=Download&scWspResp=no¶m="+encodeURIComponent(this.fUriObject.getUri())+"&module="+pCdToDownload); 141 141 if(vUrl) document.getAnonymousElementByAttribute(this, "anonid", "download").webNavigation.loadURI(vUrl, 0, null, null, null); 142 142 ]]></body> -
trunk/Xul_Cms/chrome/content/scenaricms/widgets/zone/genDeploy/genDeploy.js
r7847 r9133 21 21 22 22 function downloadSupport(pCdToDownload, pWebNavigation ) { 23 var vUrl = document.fUriObject.getServer().getServiceUrl("/u/vuePrescription?cdaction=Download& param="+encodeURIComponent(document.fUriObject.getUri())+"&module="+pCdToDownload);23 var vUrl = document.fUriObject.getServer().getServiceUrl("/u/vuePrescription?cdaction=Download&scWspResp=no¶m="+encodeURIComponent(document.fUriObject.getUri())+"&module="+pCdToDownload); 24 24 if(vUrl){ 25 25 if(pWebNavigation) pWebNavigation.loadURI(vUrl, 0, null, null, null); -
trunk/Xul_Cms/chrome/content/scenaricms/wspview/wspview.js
r9057 r9133 1474 1474 var vWspView = wspViewGetWspView(pEvent.target); 1475 1475 var vViewMgr = vWspView.fViewMgr; 1476 var vUrl = vViewMgr.fServer.getServiceUrl(vViewMgr.fUrlService+"cdaction=GetAsZip& PathRes=/"+encodeURIComponent(vCtx.fUri));1476 var vUrl = vViewMgr.fServer.getServiceUrl(vViewMgr.fUrlService+"cdaction=GetAsZip&scWspResp=no&PathRes=/"+encodeURIComponent(vCtx.fUri)); 1477 1477 var vFrm = document.getAnonymousElementByAttribute(vWspView, "anonid", "iframe"); 1478 1478 vFrm.webNavigation.loadURI(vUrl, 0, null, null, null);
Note: See TracChangeset
for help on using the changeset viewer.