Changeset 12178
- Timestamp:
- 21.11.2008 21:28:01 (16 months ago)
- Location:
- branches/3.7pre
- Files:
-
- 2 modified
-
Jav_IhmMoz/com/scenari/i/ihmcms/Client.java (modified) (2 diffs)
-
Xul_Cms/components/scHttpDataProvider.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/3.7pre/Jav_IhmMoz/com/scenari/i/ihmcms/Client.java
r12133 r12178 23 23 24 24 protected String fUniversalId = null; 25 25 26 26 protected long fLastUse = 0L; 27 27 … … 121 121 122 122 protected void xWriteEntry(StringBuffer pBuf, IWspWatcher.IDistinctUpdtIterator pIt) { 123 if (pBuf.length() != 0) pBuf.append(' ,');123 if (pBuf.length() != 0) pBuf.append(';'); 124 124 pBuf.append('/'); 125 125 String vSp = pIt.getSpace(); 126 126 pBuf.append(vSp); 127 127 String vCd = pIt.getCode(); 128 if (vCd != null) {128 if (vCd != null) { 129 129 pBuf.append('/'); 130 130 pBuf.append(pIt.getCode()); -
branches/3.7pre/Xul_Cms/components/scHttpDataProvider.js
r12164 r12178 686 686 687 687 xDispatchUpdate : function(pCdWsp, pUri, pEventType, pAuthor){ 688 if(this.fDebugComm) debug("debug.ServerCommunication:::xDispatchUpdate local:"+p CdWsp+" - "+pUri+" - pEventType:::"+pEventType+" pAuthor:::"+pAuthor+" this:::"+this+" this.fItemsListeners:::"+this.fItemsListeners);688 if(this.fDebugComm) debug("debug.ServerCommunication:::xDispatchUpdate local:"+pUri+" - pEventType:::"+pEventType+" pAuthor:::"+pAuthor); 689 689 var vItemsListener = this.fItemsListeners; 690 690 while(vItemsListener) { … … 731 731 } 732 732 var vUptds = pReq.getResponseHeader("scUpdts_"+pCdWsp); 733 if(vUptds) {734 vEventType = 1;735 vUptds.split(",").forEach(dispatchUri, this);736 }737 733 var vRm = pReq.getResponseHeader("scRm_"+pCdWsp); 738 if(vRm) {739 vEventType = 2;740 vRm.split(",").forEach(dispatchUri, this);741 }742 734 var vSt = pReq.getResponseHeader("scSt_"+pCdWsp); 743 if(vSt) {744 vEventType = 3;745 vSt.split(",").forEach(dispatchUri, this);746 }747 735 if(this.fDebugComm) { 748 736 if(vUptds) debug("debug.ServerCommunication:::scUpdts_"+pCdWsp+":::::"+vUptds+":::clientid="+this.fClientId); 749 737 if(vRm) debug("debug.ServerCommunication:::scRm_"+pCdWsp+":::::"+vRm+":::clientid="+this.fClientId); 750 738 if(vSt) debug("debug.ServerCommunication:::scSt_"+pCdWsp+":::::"+vSt+":::clientid="+this.fClientId); 739 } 740 if(vUptds) { 741 vEventType = 1; 742 vUptds.split(";").forEach(dispatchUri, this); 743 } 744 if(vRm) { 745 vEventType = 2; 746 vRm.split(";").forEach(dispatchUri, this); 747 } 748 if(vSt) { 749 vEventType = 3; 750 vSt.split(";").forEach(dispatchUri, this); 751 751 } 752 752 }