- Timestamp:
- Jun 30, 2015, 2:06:42 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/thirds/otb2zcfg/otb2zcfg.cxx
r566 r703 178 178 /* Bounded and unbounded parameters */ 179 179 if(type == ParameterType_StringList || type == ParameterType_InputImageList 180 || type == ParameterType_InputVectorDataList || type == ParameterType_InputFilenameList) 180 || type == ParameterType_InputVectorDataList || type == ParameterType_InputFilenameList 181 || type == ParameterType_ListView) 181 182 std::cout << " maxOccurs = 1024" << std::endl; 182 183 else -
trunk/thirds/saga2zcfg/saga2zcfg.c
r638 r703 188 188 for(int k=0;k<pc;k++){ 189 189 CSG_Parameter * param=params->Get_Parameter(k); 190 190 191 if(CSG_String(param->Get_Type_Identifier()).is_Same_As(CSG_String("parameters"),true)){ 192 int pc0=param->asParameters()->Get_Count(); 193 int l; 194 fprintf(stderr,"%s\n",CSG_String(param->Get_Name()).b_str()); 195 for(l=0;l<pc0;l++){ 196 CSG_Parameter * param0=param->asParameters()->Get_Parameter(l); 197 fprintf(stderr,"%s\n",CSG_String(param0->Get_Type_Identifier()).b_str()); 198 } 199 } 200 191 201 // Node should be used for defining Complex ComplexData 192 202 if(CSG_String(param->Get_Type_Identifier()).is_Same_As(CSG_String("color"))){ -
trunk/zoo-project/COMMITTERS
r536 r703 9 9 david David SAGGIORATO 10 10 dsaggiorato at free.fr 11 djay Gérald FENOY 11 djay Gérald FENOY *SVN Admin* 12 12 gerald.fenoy at geolabs.fr 13 13 jmckenna Jeff MCKENNA -
trunk/zoo-project/zoo-kernel/request_parser.c
r695 r703 952 952 xmlDocDumpFormatMemoryEnc (doc1, &mv, 953 953 &buffersize, 954 "utf-8", 1); 955 char size[1024]; 956 sprintf (size, "%d", buffersize); 957 addToMap (tmpmaps->content, "size", 958 size); 954 "utf-8", 0); 955 addIntToMap (tmpmaps->content, "size", 956 buffersize); 959 957 xmlFreeDoc (doc1); 960 958 } … … 967 965 xmlDocDumpFormatMemoryEnc (doc1, &mv, 968 966 &buffersize, 969 "utf-8", 1); 970 char size[1024]; 971 sprintf (size, "%d", buffersize); 972 addToMap (tmpmaps->content, "size", 973 size); 967 "utf-8", 0); 968 addIntToMap(tmpmaps->content, "size",buffersize); 974 969 xmlFreeDoc (doc2); 975 970 xmlFreeDoc (doc1); … … 990 985 { 991 986 addToMap (tmpmaps->content, "value", 992 (char 987 (char*) mv); 993 988 xmlFree (mv); 989 dumpMap(tmpmaps->content); 994 990 } 995 991 } 996 992 else 997 993 { 994 fprintf(stderr,"DEBUG %s %d \n",__FILE__,__LINE__); 998 995 xmlChar *tmp = xmlNodeListGetRawString (doc, 999 996 cur4->xmlChildrenNode, … … 1003 1000 xmlFree (tmp); 1004 1001 } 1002 1005 1003 cur4 = cur4->next; 1006 1004 } -
trunk/zoo-project/zoo-kernel/service_internal.c
r681 r703 23 23 */ 24 24 25 #include "service_internal.h"26 25 #ifdef USE_MS 27 26 #include "service_internal_ms.h" … … 29 28 #include "cpl_vsi.h" 30 29 #endif 30 #include "service_internal.h" 31 31 32 32 #ifndef TRUE -
trunk/zoo-project/zoo-kernel/zoo_service_loader.c
r682 r703 2192 2192 char *tmps1 = (char *) malloc ((flen + 1) * sizeof (char)); 2193 2193 fread (tmps1, flen, 1, f2); 2194 char *pchr=strrchr(tmps1,'>'); 2195 flen=strlen(tmps1)-strlen(pchr)+1; 2196 tmps1[flen]=0; 2194 2197 fwrite (tmps1, 1, flen, f3); 2195 2198 fclose (f2);
Note: See TracChangeset
for help on using the changeset viewer.