Changeset 864 for branches/prototype-v0
- Timestamp:
- Feb 5, 2018, 2:51:19 PM (7 years ago)
- Location:
- branches/prototype-v0/zoo-project
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/prototype-v0/zoo-project/zoo-kernel/request_parser.c
r863 r864 779 779 xmlGetProp (cur3, BAD_CAST "href"); 780 780 HINTERNET bInternet, res1, res; 781 maps *tmpConf=createMaps("main"); 782 tmpConf->content=createMap("memory","load"); 781 783 bInternet = InternetOpen ( 782 784 #ifndef WIN32 … … 797 799 INTERNET_FLAG_NO_CACHE_WRITE, 798 800 0, 799 *main_conf);801 tmpConf); 800 802 processDownloads (&bInternet); 803 freeMaps(&tmpConf); 804 free(tmpConf); 801 805 char *tmp = 802 806 (char *) -
branches/prototype-v0/zoo-project/zoo-kernel/ulinet.c
r863 r864 503 503 else 504 504 sprintf(filename,"/%s/ZOO_Cache%s", tmpPath->value,tmpUuid); 505 fprintf(stderr," *** %s %d %s",__FILE__,__LINE__,filename);506 fflush(stderr);507 505 free(tmpUuid); 508 506 hInternet->ihandle[hInternet->nb].filename=strdup(filename); -
branches/prototype-v0/zoo-project/zoo-services/ogr/base-vect-ops-py/cgi-env/ogr_sp.py
r863 r864 99 99 geometry=[] 100 100 ds = osgeo.ogr.Open(obj["cache_file"]) 101 if sql is not None: 102 if sql.count("from")==0: 103 layerName=ds.GetLayerByIndex(0).GetName() 104 sql+=" from "+layerName 105 lyr=ds.ExecuteSQL( sql, None, None ) 106 else: 107 lyr = ds.GetLayer(0) 101 lyr = ds.GetLayer(0) 108 102 feat = lyr.GetNextFeature() 109 103 while feat is not None:
Note: See TracChangeset
for help on using the changeset viewer.