Changeset 277
- Timestamp:
- Jul 18, 2011, 5:45:38 PM (13 years ago)
- Location:
- trunk/zoo-kernel
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/zoo-kernel/service_internal_js.c
r274 r277 395 395 jsmsg1 = JS_ValueToString(cx,nvp1j); 396 396 len1 = JS_GetStringLength(jsmsg1); 397 //#ifdef JS_DEBUG397 #ifdef JS_DEBUG 398 398 fprintf(stderr,"JSVAL NVP1J IS OBJECT %s = %s\n",JS_EncodeString(cx,jsmsg),JS_EncodeString(cx,jsmsg1)); 399 //#endif399 #endif 400 400 if(strcasecmp(JS_EncodeString(cx,jsmsg1),"[object Object]")==0){ 401 401 tres->name=strdup(JS_EncodeString(cx,jsmsg)); … … 419 419 420 420 } 421 //#ifdef JS_DEBUG421 #ifdef JS_DEBUG 422 422 dumpMaps(tres); 423 //#endif423 #endif 424 424 if(res==NULL) 425 425 res=dupMaps(&tres); … … 432 432 } 433 433 } 434 //#ifdef JS_DEBUG434 #ifdef JS_DEBUG 435 435 dumpMaps(res); 436 //#endif436 #endif 437 437 return res; 438 438 } -
trunk/zoo-kernel/zoo_service_loader.c
r274 r277 1013 1013 lmap->value=strdup(tmpValue); 1014 1014 free(tmpValue); 1015 dumpMap(tmpmaps->content);1016 1015 tmpc=strtok(NULL,"@"); 1017 1016 continue; … … 1076 1075 free(tmpx); 1077 1076 addToMap(tmpmaps->content,"Reference",tmpv1+1); 1078 dumpMap(tmpmaps->content);1079 1077 } 1080 1078 tmpc=strtok(NULL,"@"); … … 1824 1822 if(istat==0 && file_status.st_size>0){ 1825 1823 conf_read(session_file_path,tmpSess); 1826 dumpMaps(tmpSess);1827 1824 addMapsToMaps(&m,tmpSess); 1828 1825 freeMaps(&tmpSess); … … 1849 1846 addToMap(request_inputs,"status","true"); 1850 1847 status=getMap(request_inputs,"status"); 1851 dumpMap(request_inputs);1852 1848 fprintf(stderr,"cgiSID : %s",cgiSid); 1853 1849 }
Note: See TracChangeset
for help on using the changeset viewer.