- Timestamp:
- Jun 14, 2019, 11:05:08 PM (6 years ago)
- Location:
- tags/rel-1.7.0
- Files:
-
- 7 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
tags/rel-1.7.0
-
tags/rel-1.7.0/docs/kernel/what.rst
r725 r942 88 88 C / C++ Shared Library maps* M integer 89 89 Java Class File `HashMap`_ integer 90 C# Class File `ZMaps`_ integer 90 91 Python Module File `Dictionary`_ integer 91 92 PHP Script File `Array`_ integer … … 93 94 Ruby Script File `Hash`_ integer 94 95 Fortran Shared Library CHARACTER*(1024) M(10,30) integer 96 R Script file `R List`_ integer 95 97 JavaScript Script file `Object`_ or Array Object/Array 96 98 ============ =================== ========================= ============ … … 101 103 .. _`Object`: http://www.json.org/ 102 104 .. _`Hash`: http://ruby-doc.org/core-2.2.0/Hash.html 105 .. _`ZMaps`: https://docs.microsoft.com/fr-fr/dotnet/api/system.collections.generic.dictionary-2?view=netframework-4.8 106 .. _`R List`: https://cran.r-project.org/doc/manuals/r-release/R-lang.html#List-objects 103 107 -
tags/rel-1.7.0/docs/services/zcfg-reference.rst
r793 r942 223 223 AllowedValues = -10,-8,-7,-5,-1 224 224 rangeMin = 0 225 rangeM in= 100225 rangeMax = 100 226 226 rangeClosure = co 227 227 </Default> 228 228 <Supported> 229 229 rangeMin = 200 230 rangeM in= 600230 rangeMax = 600 231 231 rangeClosure = co 232 232 </Supported> 233 233 <Supported> 234 234 rangeMin = 750 235 rangeM in= 990235 rangeMax = 990 236 236 rangeClosure = co 237 237 rangeSpacing = 10 -
tags/rel-1.7.0/zoo-project/zoo-kernel/otbZooWatcher.cxx
r560 r942 16 16 =========================================================================*/ 17 17 #include "otbZooWatcher.h" 18 #include "otbConfigure.h" 18 19 #include "service_internal.h" 19 20 … … 52 53 ::StartFilter() 53 54 { 55 #if OTB_VERSION_MAJOR < 6 54 56 m_TimeProbe.Start(); 57 #endif 55 58 } 56 59 … … 59 62 ::EndFilter() 60 63 { 64 #if OTB_VERSION_MAJOR < 6 61 65 m_TimeProbe.Stop(); 62 66 std::ostringstream elapsedTime; … … 68 72 << " seconds)" 69 73 << std::endl; 74 #endif 70 75 } -
tags/rel-1.7.0/zoo-project/zoo-kernel/request_parser.c
r917 r942 1070 1070 buffersize); 1071 1071 } 1072 else if (cur5 != NULL)/* 1073 && cur5->type == XML_CDATA_SECTION_NODE)*/{ 1074 xmlFree(mv); 1075 if(cur5->content!=NULL){ 1076 mv=xmlStrdup(cur5->content); 1077 } 1072 else if (cur5 != NULL){ 1073 if(ltmp!= NULL && strstr(ltmp->value,"text/")!=NULL){ 1074 xmlChar *tmp = xmlNodeListGetRawString (doc, 1075 cur4->xmlChildrenNode, 1076 0); 1077 addToMap (tmpmaps->content, "value", 1078 (char *) tmp); 1079 xmlFree (tmp); 1080 }else{ 1081 while(cur5!=NULL && cur5->type != XML_CDATA_SECTION_NODE) 1082 cur5=cur5->next; 1083 xmlFree(mv); 1084 if(cur5!=NULL && cur5->content!=NULL){ 1085 mv=xmlStrdup(cur5->content); 1086 } 1087 } 1078 1088 } 1079 1089 } … … 1859 1869 if (r_inputs == NULL){ 1860 1870 if(mandatory>0){ 1861 c har *replace=_("Mandatory parameter <%s> was not specified");1871 const char *replace=_("Mandatory parameter <%s> was not specified"); 1862 1872 char *message=(char*)malloc((strlen(replace)+strlen(toCheck)+1)*sizeof(char)); 1863 1873 sprintf(message,replace,toCheck); … … 1908 1918 } 1909 1919 if(hasValidValue<0){ 1910 c har *replace=_("The value <%s> was not recognized, %s %s the only acceptable value.");1920 const char *replace=_("The value <%s> was not recognized, %s %s the only acceptable value."); 1911 1921 nb=0; 1912 1922 char *vvalues=NULL; 1913 c har* num=_("is");1923 const char* num=_("is"); 1914 1924 while(avalues[nb]!=NULL){ 1915 1925 char *tvalues; -
tags/rel-1.7.0/zoo-project/zoo-kernel/service_internal_hpc.c
r917 r942 69 69 dupElements(cur) 70 70 }; 71 c har *geoLink="wcs_link";71 const char *geoLink="wcs_link"; 72 72 if(geo==2){ 73 73 geoLink="wfs_link"; … … 213 213 zooLock* lck; 214 214 if((lck=lockFile(*conf,argv[1]->value,'r'))==NULL){ 215 c har* templateStr=_("Unable to lock the file for %s in read mode.");215 const char* templateStr=_("Unable to lock the file for %s in read mode."); 216 216 char *tmpMessage=(char*)malloc((strlen(templateStr)+strlen(argv[0]->value)+1)*sizeof(char)); 217 217 sprintf(tmpMessage,templateStr,argv[0]->value); … … 251 251 if(unlockFile(*conf,zoo_file_locks[i])<1){ 252 252 map* argv=getMapArray(queueMaps->content,"input",i); 253 c har* templateStr=_("Unable to unlock the file for %s after execution.");253 const char* templateStr=_("Unable to unlock the file for %s after execution."); 254 254 char *tmpMessage=(char*)malloc((strlen(templateStr)+strlen(argv->value)+1)*sizeof(char)); 255 255 sprintf(tmpMessage,templateStr,argv->value); -
tags/rel-1.7.0/zoo-project/zoo-kernel/service_internal_python.c
r928 r942 355 355 #endif 356 356 char *pStrErrorMessage = PyString_AsString(pvalue); 357 c har *tmp0=_("Python module %s cannot be loaded. Message: %s\n");357 const char *tmp0=_("Python module %s cannot be loaded. Message: %s\n"); 358 358 359 359 PyObject *trace=PyObject_Str(pvalue); … … 393 393 if(pbt!=NULL) 394 394 free(pbt); 395 c har* format=_("%s\nUnable to run your python process properly. Please check the following messages : %s");395 const char* format=_("%s\nUnable to run your python process properly. Please check the following messages : %s"); 396 396 pbt=(char*)malloc((strlen(format)+strlen(tpbt)+strlen(PyString_AsString(trace))+1)*sizeof(char)); 397 397 sprintf(pbt,format,tpbt,PyString_AsString(trace)); … … 400 400 if(pbt!=NULL) 401 401 free(pbt); 402 c har* format=_("%s \n Unable to run your python process properly. Unable to provide any further information.");402 const char* format=_("%s \n Unable to run your python process properly. Unable to provide any further information."); 403 403 pbt=(char*)malloc((strlen(format)+strlen(tpbt)+strlen(PyString_AsString(trace))+1)*sizeof(char)); 404 404 sprintf(pbt,format,tpbt); -
tags/rel-1.7.0/zoo-project/zoo-kernel/sshapi.c
r917 r942 730 730 if((lck=lockFile(*conf,argv[1]->value,'w'))!=NULL){/**/ 731 731 if(ssh_copy(*conf,argv[1]->value,argv[2]->value,ssh_get_cnt(*conf))!=true){ 732 c har* templateStr=_("Unable to copy over SSH the file requested for setting the value of %s.");732 const char* templateStr=_("Unable to copy over SSH the file requested for setting the value of %s."); 733 733 char *tmpMessage=(char*)malloc((strlen(templateStr)+strlen(argv[0]->value)+1)*sizeof(char)); 734 734 sprintf(tmpMessage,templateStr,argv[0]->value);
Note: See TracChangeset
for help on using the changeset viewer.