Changeset 982 for trunk/zoo-project
- Timestamp:
- Feb 24, 2021, 6:20:56 PM (4 years ago)
- Location:
- trunk/zoo-project
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/zoo-project/HISTORY.txt
r980 r982 1 Version 1.8.1 2 * Deploy demo HTML UI from github from the Dockerfile 3 * Add demo ZOO-Services build in the Dockerfile 1 4 Version 1.8.0 2 5 * Support raw response in OGC API - Processes -
trunk/zoo-project/zoo-kernel/Makefile.in
r980 r982 4 4 5 5 version.h: Makefile 6 echo "#define ZOO_VERSION \"1.8. 0`svnversion`\"" > version.h6 echo "#define ZOO_VERSION \"1.8.1-dev `svnversion`\"" > version.h 7 7 echo "@ETC_DEF@" >> version.h 8 8 echo "#define LOCALEDIR \"@localedir@\"" >> version.h -
trunk/zoo-project/zoo-kernel/configure.ac
r980 r982 1 AC_INIT([ZOO Kernel], [1.8. 0], [bugs@zoo-project.org])1 AC_INIT([ZOO Kernel], [1.8.1-dev], [bugs@zoo-project.org]) 2 2 3 3 AC_CONFIG_MACRO_DIR([macros]) -
trunk/zoo-project/zoo-kernel/server_internal.c
r967 r982 375 375 zStatStruct f_status; 376 376 int s=zStat(filename, &f_status); 377 sprintf(rsize,"%l ld",f_status.st_size);377 sprintf(rsize,"%ld",f_status.st_size); 378 378 if(getMap(content,"storage")==NULL){ 379 379 map* tmpMap1=getMap(content,"value"); -
trunk/zoo-project/zoo-kernel/zoo_service_loader.c
r974 r982 3418 3418 signal (SIGABRT, donothing); 3419 3419 #endif 3420 fprintf(stderr,"%s %d \n",__FILE__,__LINE__);3421 fflush(stderr);3422 3420 3423 3421 if (((int) zGetpid ()) != cpid || cgiSid != NULL) 3424 3422 { 3425 fprintf(stderr,"%s %d \n",__FILE__,__LINE__);3426 fflush(stderr);3427 3423 if (eres == SERVICE_SUCCEEDED) 3428 3424 #ifdef USE_CALLBACK -
trunk/zoo-project/zoo-services/cgal/voronoi.c
r980 r982 46 46 47 47 int Voronoi(maps*& conf,maps*& inputs,maps*& outputs){ 48 //#ifdef DEBUG48 #ifdef DEBUG 49 49 fprintf(stderr,"\nService internal print\nStarting\n"); 50 //#endif50 #endif 51 51 //return SERVICE_FAILED; 52 52 maps* cursor=inputs; … … 56 56 tmpm=getMapFromMaps(inputs,"InputPoints","value"); 57 57 58 #ifdef DEBUG 58 59 fprintf(stderr," **** %s %d\n",__FILE__,__LINE__); 59 60 fflush(stderr); 61 #endif 60 62 61 63 OGRRegisterAll(); … … 67 69 return SERVICE_FAILED; 68 70 } 71 #ifdef DEBUG 69 72 fprintf(stderr," **** %s %d\n",__FILE__,__LINE__); 70 73 fflush(stderr); 74 #endif 71 75 72 76 Triangulation T; … … 204 208 const Pointz p1=tmp->source(); 205 209 const Pointz p2=tmp->target(); 206 fprintf(stderr,"P1 %d %d | P2 %d %d\n",p1.x(),p1.y(),p2.x(),p2.y());207 210 #ifdef DEBUG 208 211 fprintf(stderr,"P1 %d %d | P2 %d %d\n",p1.x(),p1.y(),p2.x(),p2.y());
Note: See TracChangeset
for help on using the changeset viewer.