forked from OPENDAP/bes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
22087 lines (14788 loc) · 654 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2019-07-08 James Gallagher <jgallagher@opendap.org>
Fixed a broken test data file in dmrpp_handler and updated hdf
handlers
Merge pull request #267 from OPENDAP/dmrpp_doc
Dmrpp doc
2019-07-08 Nathan Potter <ndp@opendap.org>
Spelling etc.
2019-07-08 James Gallagher <jgallagher@opendap.org>
Update README.md
Added some more words at the top. Tried to connect them to the Overview.
Added a one-sentence paragraph to the Overview
Update README.md
Update README.md
2019-07-08 Nathan Potter <ndp@opendap.org>
Spelling etc.
Adding first example for ingest_s3bucket. Small changes to scripts.
Added get_dmrpp example 2.
2019-07-05 Nathan Potter <ndp@opendap.org>
Added get_dmrpp example 1.
More verbosity in README.md
2019-07-04 Nathan Potter <ndp@opendap.org>
More README.md content
Now I am actually adding the modules/dmrpp_module/data//README.md
Undoing unintetional commit
Adding README.md to dmrpp/data and repiring shell scripts therein
2019-07-02 Nathan Potter <ndp@opendap.org>
Merge pull request #266 from OPENDAP/hk-451
corrected problem with server administration information ingest.
corrected prpblem with server administration information ingest.
2019-07-01 Nathan Potter <ndp@opendap.org>
Added close to JSON parse stream
2019-06-24 Nathan Potter <ndp@opendap.org>
Merge pull request #265 from OPENDAP/hk-311
Hk 311
2019-06-24 Kodi Neumiller <kneumiller@mtech.edu>
Merge pull request #264 from OPENDAP/StareIndexing
Made changes so that the stare index is 64bit instead of 32bit.
2019-06-24 Nathan Potter <ndp@opendap.org>
Added two time parsing functions for httpd
2019-06-24 Kodi Neumiller <kneumiller@mtech.edu>
Made changes so that the stare index is 64bit instead of 32bit.
2019-06-24 Nathan Potter <ndp@opendap.org>
Alterntae time format oars routine added,
Alterntae time format oars routine added,
2019-06-21 James Gallagher <jgallagher@opendap.org>
Update DDSLoader.cc
Removed used of nullptr for centos6 compatibility.
2019-06-21 Nathan Potter <ndp@opendap.org>
Merge branch 'master' of https://github.com/opendap/bes
Debug instrumentation.
2019-06-21 James Gallagher <jgallagher@opendap.org>
Merge pull request #263 from OPENDAP/bes-leak-fix
Bes leak fix
Edits to the NcML parser leak fix
Some leak remain from libcurl that I think is tied to libxml2
Attempt to fix the NcML xml parser memory leak.
2019-06-20 James Gallagher <jgallagher@opendap.org>
Minor edits to the DmrppParser code
2019-06-20 Cloud User <centos@ip-172-31-16-66.ec2.internal>
Fixed a leak in DmrppParserSAX2.cc
Setting the context->sax field to NULL was a leak. Some more work
remains, but this is a good find.
Merge branch 'master' into bes-leak-fix
2019-06-20 Nathan Potter <ndp@opendap.org>
Merge pull request #262 from OPENDAP/dmr_chunking_parser
Switched DmrppParserSax2 to chunk based parsing (and not line based)
2019-06-20 James Gallagher <jgallagher@opendap.org>
Memory leak fixes in NcML
2019-06-20 Nathan Potter <ndp@opendap.org>
Switched DmrppParserSax2 to chunk based parsing (and not line
based) which will preserve newlines in Attribute Values. Fixed
baselines affacted by similar changes in libdap4
Merge pull request #260 from OPENDAP/hyrax-403
Hyrax 403
2019-06-20 James Gallagher <jgallagher@opendap.org>
Merge pull request #261 from OPENDAP/HK-23
HK-23
Update FONcAttributes.cc
[skip ci]
2019-06-19 Slav Korolev <slav.korolev@nasa.gov>
HK-23. Corrected misspelling in extention of file.
HK-23. Removed duplicated file.
HK-23. Fixed issue with _FillValue for CHAR variable.
2019-06-13 Nathan Potter <ndp@opendap.org>
removing test patch
2019-06-12 Nathan Potter <ndp@opendap.org>
Memory leak in StandAloneApp
Memory leak patch
2019-06-10 Kodi Neumiller <kneumiller@mtech.edu>
Merge pull request #259 from OPENDAP/parserChecking
Parser improvements
2019-06-10 James Gallagher <jgallagher@opendap.org>
Update DmrppParserSax2.cc
Minor update in comment text
2019-06-07 Kodi Neumiller <kneumiller@mtech.edu>
Got rid of a lingering transfer_xml_attrs. Added some comments
and cleaned stuff up.
Added a modified version of the functions check_attribute and
check_required_attribute. Added a function, get_attribute_val,
that checks for an attribute and if it is found it returns a
string to the value in the attribute array.
2019-05-31 Kodi Neumiller <kneumiller@mtech.edu>
Added a function to check for attribute names. Needs work still.
2019-05-24 Kodi Neumiller <kneumiller@mtech.edu>
Merge pull request #258 from OPENDAP/hdf5API
Hdf5 api
Merge branch 'master' into hdf5API
2019-05-23 James Gallagher <jgallagher@opendap.org>
Fixed autoconf stare.m4 macro for older autoconf versions (CentOS 6)
Merge pull request #257 from OPENDAP/stare-build-fix
Hacked the stare code in configure so it'll detect the STARE lib
Hacked the stare code in configure so it'll detect the STARE lib
2019-05-23 Kodi Neumiller <kneumiller@mtech.edu>
Changed how the Contiguous and Compact methods read data.
2019-05-22 James Gallagher <jgallagher@opendap.org>
Merge branch 'master' into hdf5API
2019-05-22 Kodi Neumiller <kneumiller@mtech.edu>
Merge pull request #256 from OPENDAP/StareIndexing
Stare indexing
Took out the AM_CXXFLAGS = c++11 and tookout the -D__macosx
2019-05-21 James Gallagher <jgallagher@opendap.org>
Fixed the dataset rank and compression code; some cleanup.
2019-05-21 Kodi Neumiller <kneumiller@mtech.edu>
Merge branch 'master' into StareIndexing
Removed the opendapTest file. It was what eventually became
stareMapping.cc so it is not needed anymore.
2019-05-17 Kodi Neumiller <kneumiller@mtech.edu>
Refactored code to use seperate arrays for each value
2019-05-17 James Gallagher <jgallagher@opendap.org>
Merge branch 'master' into hdf5API
2019-05-17 Kodi Neumiller <kneumiller@mtech.edu>
Merge branch 'master' into StareIndexing
2019-05-17 James Gallagher <jgallagher@opendap.org>
Merge pull request #250 from OPENDAP/StareIndexing
Stare indexing
2019-05-16 James Gallagher <jgallagher@opendap.org>
Merge pull request #254 from OPENDAP/geojson_fixes
Geojson fixes
2019-05-16 Kodi Neumiller <kneumiller@mtech.edu>
added #ifdef
Changes allow for code using 1.8 to read the h5 file.
Added <memory>
Got the program to properly generate an h5 file with the
calculated STARE data in it. Added some options and updated
the readme.
2019-05-15 Corey Hemphill <hemphilc@oregonstate.edu>
Merge pull request #2 from hemphilc/bes-covjson-issue-long_name
Bes covjson issue long name
2019-05-15 Nathan Potter <ndp@opendap.org>
Merge pull request #253 from OPENDAP/dmrpp_match
Adding compressed file suffixes to dmrpp_module typematch expression.
Adding compressed file suffixes to dmrpp_module typematch expression.
2019-05-12 hemphilc <hemphilc@oregonstate.edu>
Updated bescmd baselines
More Baseline adjustments
Baselines adjusted.
2019-05-11 hemphilc <hemphilc@oregonstate.edu>
Fixed printing bug in printParametersWorker
Updated print conditioning in printParametersWorker per Jon
Blower's recommendations from
https://groups.google.com/a/opendap.org/forum/#!topic/support/clFboFlh2WM
Fixed a bug that was causing Axes not to be stored and printed
-- Also added explanatory comments
2019-05-06 hemphilc <hemphilc@oregonstate.edu>
Indent fix
Added indenting to printCoverageJSON function
Added function printCoverageJSON which handles all of the
print worker function calls rather than calling all of the
workers individually in the transform function
Removed CoverageCollection printing due to BES Issue #245 --
Will fix in different branch
Updated Readme
Added unit-tests Readme
Adding windsat test
Moving updated Transform files from local branch to forked branch
2019-05-02 Kodi Neumiller <kneumiller@mtech.edu>
Reworked how build_dmrpp calculates chunk information. Still needs refining
2019-04-30 Nathan Potter <ndp@opendap.org>
Minor edits to documentation
hdf5 up
Merge branch 'master' of https://github.com/opendap/bes
Minor edits to documentation
2019-04-26 Kodi Neumiller <kneumiller@mtech.edu>
The bes should now be able to run the STARE functions and find
the STARE library and headers if they are installed.
2019-04-25 Kodi Neumiller <kneumiller@mtech.edu>
Temporary commit, need to work on stare. Build still fails, will fix.
2019-04-23 James Gallagher <jgallagher@opendap.org>
Fixed util_ff.cc from HK-128
The range-base for loop is not supported on CentOS6 (but the auto
keyword is).
2019-04-23 Kodi Neumiller <kneumiller@mtech.edu>
Added conf/stare.m4. Still won't build, but needed to add stare.m4 to the pushed files
Added a call to get the layout type
Changes to configure and stare. Not ready for merger, have to
switch projects so putting this on hold.
2019-04-23 James Gallagher <jgallagher@opendap.org>
Merge pull request #251 from OPENDAP/HK-128
Hk 128
2019-04-22 Slav Korolev <slav.korolev@nasa.gov>
HK-128. Edited bes.conf.in.
Merge branch 'master' into HK-128
2019-04-19 Slav Korolev <slav.korolev@nasa.gov>
HK-128. Corrected bad output in tests.
HK-128. Added tests for regex support.
2019-04-18 Kodi Neumiller <kneumiller@mtech.edu>
Fixed the loop error, offset (or coord) needs to be null when
get_chunk_info() is called
2019-04-17 James Gallagher <jgallagher@opendap.org>
Hacked dap/unit-tests/TemporaryFileTest.cc so that it runs in debug mode
This test fails sometimes for no apparent reason. I'm working on sorting out
these pseudo-random errors.
2019-04-17 Slav Korolev <slav.korolev@nasa.gov>
HK-128. Minor corrections.
HK-128. Added use of regex in FreeForm.
2019-04-16 James Gallagher <jgallagher@opendap.org>
Merge pull request #249 from OPENDAP/fileout_netcdf_fix
Added a fix from Aron.Bartle@mechdyne.com.
Added a fix from Aron.Bartle@mechdyne.com.
Netcdf file responses were not compressed when they should have been
if the dataset had Structures. Fixed by patching FONcStructure as Aron
suggested.
2019-04-16 Kodi Neumiller <kneumiller@mtech.edu>
Cleanup
stareMapping should be able to be compiled on other computers
that have hyrax-dependencies (for the stare library).
2019-04-16 James Gallagher <jgallagher@opendap.org>
Merge branch 'master' of https://github.com/opendap/bes
pushing a change on master to trigger a CI build
I modified the travis.yml to run 'git fetch --unshallow' for the scan
(sonar) of the BES modules to see if this fixes the issue with hdf4/5
missing from the scan.
2019-04-15 Nathan Potter <ndp@opendap.org>
Added new programs to bes spec files
2019-04-15 Kodi Neumiller <kneumiller@mtech.edu>
Update. Still needs work
2019-04-15 Nathan Potter <ndp@opendap.org>
Fixing production rules
Merge pull request #248 from OPENDAP/mk_dmrpp
Mk dmrpp
Style points.
2019-04-12 Nathan Potter <ndp@opendap.org>
Dropping bes.hdf5.cf.conf and bes.hdf5.cf.conf.in from project
as their content has been subsummed by get_dmrpp.in
deleted built filr get_dmrpp
Comments
sync
sync
Path reliance for shell sripts
Reworking get_dmrpp.sh to hold the BES configuration as a Here
document, and then to build get_dmrpp from and input file
(get_dmrpp.in) so that we can fiddle the library paths for the
local system.
Trying to install scripts
2019-04-11 Nathan Potter <ndp@opendap.org>
Usage editing
2019-04-10 Nathan Potter <ndp@opendap.org>
sync
Dropping DmrppParserSax2::intern_OLD() method.
Split the ingest variants into separate scripts.
2019-04-10 Kodi Neumiller <kneumiller@mtech.edu>
modified the parameters passed in to
H5Dget_dataset_storage_info. Still needs work though...
2019-04-10 Nathan Potter <ndp@opendap.org>
Rewrote DmrppParserSex2::intern() to utilize std::string and
not char[] for the input buffer (ala the
libdap::D4ParserSax2::intern()). This makes the max line size,
in chars, 18446744073709551599 which must surely be enough.
2019-04-09 Nathan Potter <ndp@opendap.org>
In the DmrppParserSax2 I increased the max line length for dmrpp files to 1MB.
sync
2019-04-08 Kodi Neumiller <kneumiller@mtech.edu>
Changed function calls to match the new version of hdf5 (1.10)
2019-04-08 Nathan Potter <ndp@opendap.org>
sync
AWS cli filemlisting
2019-04-05 James Gallagher <jgallagher@opendap.org>
Merge branch 'master' of https://github.com/opendap/bes
Updated the hashes for the hdf4 and hdf5 handlers
Merge pull request #247 from OPENDAP/c++11-support C++11
support - this passed all of the builds including the package
steps. But, it took two tries. I think there is a issue in one
of the ncml tests where a network i/o fail breaks test 598.
Not sure...
2019-04-04 James Gallagher <jgallagher@opendap.org>
Fixed the initialization of variables using '={};'
Found and fixed an issue that showed up when using --pedantic
Updated hdf4 on the typeof-removal branch
2019-04-04 Nathan Potter <ndp@opendap.org>
sync
2019-04-03 Nathan Potter <ndp@opendap.org>
permissions
Added in get script to dmrpp code
2019-04-03 James Gallagher <jgallagher@opendap.org>
Merge branch 'master' into c++11-support
Hash for the hdf4 handler changes
C++-11 fixes in netcdf_handler
2019-04-02 Nathan Potter <ndp@opendap.org>
Cleaning up some things that made using get_dmrpp.sh hard
2019-03-29 Kodi Neumiller <kneumiller@mtech.edu>
Changed the file extension in the Makefile for the stareMapping
Changed file extension and added a README
2019-03-28 James Gallagher <jgallagher@opendap.org>
Merge pull request #246 from OPENDAP/covjson-patch-take2
Covjson patch take2
Added comment about a change that breaks tests (and that I don't understand)
minor fix with strings
Modifications to FoDapCovJsonTransform.cc to protect shapeVals
This mirrors what was done on the covjson-patch branch, but tests
pass. I cannot figure out why the tests fail on the covjson branch.
Merge branch 'master' into c++11-support
Edits or C++-11 support.
This code builds on OSX using --std=cxx11. Make sure to get the
correct version of hdf4_handler (the typeof-removal) branch.
2019-03-27 James Gallagher <jgallagher@opendap.org>
Added a test for C++11 or C++0x to configure.
To use this, we will need to modify the Makefile.am files or the default
C++ flags.
2019-03-26 Kodi Neumiller <kneumiller@mtech.edu>
Cleanup
Created a new file to handle the stare indexing. Added this
file to the makefiles. Included getopt in the opendapTest.cpp
file (produces errors, needs fixing).
2019-03-21 Nathan Potter <ndp@opendap.org>
Updated DOI in REDME.md
Pull in submodules
Preparing Hyrax-1.15.4 release
2019-03-20 James Gallagher <jgallagher@opendap.org>
Merge pull request #241 from OPENDAP/HK-351
Hk 351
Merge pull request #242 from OPENDAP/response-limit-fix
Response limit fix
Removed #if 0... #endif
[skip ci]
Added the jpeg2k tests - they were removed from the Makefile a long time ago
Modified the code to add an option to get the old behavior for GeoTiff
GeoTiff look best when the bands are Bytes, but some users may expect
them to be Float32. I made the old behavior an option. jpeg2000 should
always be some integer type and Byte is good enough for now.
Fixed response limit for DAP4 returnAs ascii.
Fixed the Response Limit feature for DAP2 and partly for DAP4
For DAP2, both the binary and ascii responses work WRT response limit;
for DAP4, the binary works but ascii does not (it ignores the limit).
2019-03-20 Slav Korolev <slav.korolev@nasa.gov>
HK-351. Corrected test files.
HK-351. Added gdal_translate for tif and jp2.
2019-03-19 James Gallagher <jgallagher@opendap.org>
Added test bescmd files for request_limit fix.
Not quite there.
For DAP2he response_size and get/set_response_limit() methods use a
confusing set of values in Bytes and KB. For DAP, the dap response
works, but ascii does not.
2019-03-19 Slav Korolev <slav.korolev@nasa.gov>
HK-351. First try.
2019-03-11 James Gallagher <jgallagher@opendap.org>
Merge pull request #240 from OPENDAP/HK-352
Hk 352
2019-03-09 Slav Korolev <slav.korolev@nasa.gov>
HK-352. Made changes in FONgTransform::transform_to_geotiff() and corrected tests.
HK-352. Corrected tests in gateway_module.
2019-03-08 Slav Korolev <slav.korolev@nasa.gov>
HK-352. Corrected GeoTiff and Jpeg2000 transform.
2019-03-05 H. Joe Lee <hyoklee@hdfgroup.org>
Update build_dmrpp.cc
2019-03-05 James Gallagher <jgallagher@opendap.org>
Merge pull request #238 from OPENDAP/sonar-build-test
Test new logic for sonar scan Travis builds
Test Travis 'stages' logic
2019-02-28 James Gallagher <jgallagher@opendap.org>
Test new logic for sonar scan Travis builds
2019-02-27 James Gallagher <jgallagher@opendap.org>
Merge pull request #236 from OPENDAP/sonar-cloud2
Sonar cloud2
Mistakenly added the bes debian build back in. Removed.
Fix this, though.
2019-02-26 H. Joe Lee <hyoklee@hdfgroup.org>
close #237
2019-02-26 James Gallagher <jgallagher@opendap.org>
Removed comments that prevented build and package stages from running
Merge branch 'master' into sonar-cloud2
hdf5 update
Updated the commit hashes for hdf4 and hdf5
2019-02-23 Nathan Potter <ndp@opendap.org>
Added required libdap4 DOI to README.md
Added DOI for version-3.20.3 to README.md
2019-02-21 Nathan Potter <ndp@opendap.org>
Dropped distpatch/bes/site.conf.proto from the DISTCLEAN list.
Updating hdf*_handler hashes
Dropping generated content (atlocal) from git.
2019-02-21 Kodi Neumiller <kneumiller@mtech.edu>
Updated the version number in the .spec files.
2019-02-21 James Gallagher <jgallagher@opendap.org>
Minor edit to sonar props file
[skip ci]
2019-02-20 James Gallagher <jgallagher@opendap.org>
again
Just scan...
parallel sonar scan - tiral #1
Merge branch 'master' into sonar-cloud2
2019-02-20 Kodi Neumiller <kneumiller@mtech.edu>
Updated BES source release.
2019-02-19 Kodi Neumiller <kneumiller@mtech.edu>
BES source release.
2019-02-19 James Gallagher <jgallagher@opendap.org>
Travis hackery
Comments in the travis yml file.
2019-02-13 James Gallagher <jgallagher@opendap.org>
Fixes from the latest sonar run
2019-02-12 James Gallagher <jgallagher@opendap.org>
New commit hashes for hdf4/5
Sonar-inspired edits
2019-02-11 James Gallagher <jgallagher@opendap.org>
sonar-inspires fixes. In hdf4/5, too.
2019-02-08 James Gallagher <jgallagher@opendap.org>
Added sonar-project.properties
[skip ci]
Updated hdf4 and hdf5_handler commit hashes
2019-02-01 Nathan Potter <ndp@opendap.org>
This should update the submodules.
2019-02-01 James Gallagher <jgallagher@opendap.org>
Merge pull request #234 from OPENDAP/travis-rpm-use-awscli
Travis rpm use awscli
Add test for the aws cli - is it on the PATH. Fix that if not.
Sort of. The fix works for C6 but not much else.
Bumped up the version on the centos6 docker image.
Added ~/.local/bin to PATH so the aws cli tool is found.
Pass in the AWS credentials to the docker images for the travis builds
2019-01-31 James Gallagher <jgallagher@opendap.org>
Fixed 'aws s3 cp' syntax fail
removed pip install from build-rpm.sh
included by mistake
Updated build-rpm.sh and travis.yml
Use the aws cli and new docker containers that include the aws cli.
This is all to reduce our spurious build fails when using curl with S3
Merge pull request #233 from OPENDAP/systemctl-fix
Attempt to repair support for systemctl/systemd found on CentOS 7
Merge branch 'master' into systemctl-fix
Removed 'sudo apt-get update -qq' from .travis.yml
Attempt to repair support for systemctl/systemd found on CentOS 7
Merge pull request #232 from OPENDAP/travis-aws
Use aws cli and not curl; modules_common --> modules/common
2019-01-30 James Gallagher <jgallagher@opendap.org>
Use aws cli and not curl; modules_common --> modules/common
2019-01-30 Nathan Potter <ndp@opendap.org>
Merge pull request #231 from OPENDAP/unlink_cache_failures
Unlinking cache files when retrival from remote fails.
Added unlink for primary cache file if the header file creation fails.
2019-01-29 Nathan Potter <ndp@opendap.org>
Unlinking cache files when retrival from remote fails.
Merge pull request #228 from OPENDAP/site_conf_proto
Site conf proto
2019-01-28 Nathan Potter <ndp@opendap.org>
Merge branch 'site_conf_proto' of https://github.com/opendap/bes into site_conf_proto
Added a new SupportEmail key to the default configuration.
2019-01-28 James Gallagher <jgallagher@opendap.org>
Merge branch 'master' into site_conf_proto
Merge branch 'site_conf_proto' of https://github.com/opendap/bes into site_conf_proto
Modified many of the *.conf.in files to use the same pattern for Cache dirs
All of the cache dirs are now named /tmp/hyrax_<name> by default and
all of the prefix values are '<name>_'
2019-01-28 Nathan Potter <ndp@opendap.org>
Added hdf4/5 sections to site.conf.proto
2019-01-28 James Gallagher <jgallagher@opendap.org>
Formatting
[skip ci]
Removed the '.' in '.cache_control' and made the name 'cache_control' a #define
Also made the default MDS prefix 'mds_'
2019-01-25 James Gallagher <jgallagher@opendap.org>
Added trailing underscores to the Cache.Prefix values.
[skip ci]
I normalized the three cache names in the site.conf.proto
They all use the pattern /tmp/hyrax_<name> and a prefix of <name>.
[skip ci]
Added site.conf.proto to the RPM spec files.
Merge pull request #230 from OPENDAP/HK-313
Hk 313
Merge branch 'site_conf_proto' of https://github.com/opendap/bes into site_conf_proto
Fixed some typos
[skip ci]
Fixed some typos
Removed a HDF5 test from the httpd_catalog since the tests don't load that handler
more still more cleanup
Some more cleanup; removed unused code, old 'CMR' comments.
Edit to the httpd_catalog.conf.in - removed redundant info.
Fixed a bug in HttpdCatalog::path_to_access_url(const string &p)
When paths start with a slash, the continer catalog prefix was not
found. Fixed.
2019-01-24 Nathan Potter <ndp@opendap.org>
Adding site.conf.proto to distro
2019-01-24 James Gallagher <jgallagher@opendap.org>
Merge pull request #229 from OPENDAP/HK-313
Hk 313
Fixed comment
[skip ci]
Fixed BESUtil::split(). It did not use the skip_empty param correctly.
Fixed HK-313
If a Remote Resource was accessed using only the collection name with no
trailing slash, an exception was thrown because the string was accessed
one character past its end. Now it's OK to leave off the trailing slash.
I also found that the BESUtil::split() function is broken and will fix
it in a subsequent commit.
2019-01-23 James Gallagher <jgallagher@opendap.org>
checkpoint
2019-01-23 Nathan Potter <ndp@opendap.org>
Disabled CMR catalog by default.
First daft of site.conf.proto
2019-01-22 James Gallagher <jgallagher@opendap.org>
Spelling in a comment
[skip ci]
2019-01-21 Nathan Potter <ndp@opendap.org>
Merge branch 'master' of https://github.com/opendap/bes
Typo fixy
2019-01-19 James Gallagher <jgallagher@opendap.org>
Merge pull request #227 from OPENDAP/httpd_minor_refactor
Httpd minor refactor
2019-01-18 James Gallagher <jgallagher@opendap.org>
Changes to fix the build for the PR from this branch
Merge branch 'master' into httpd_minor_refactor
Removed unused code
Merge pull request #226 from OPENDAP/hk-95
Hk 95
2019-01-17 James Gallagher <jgallagher@opendap.org>
Merge branch 'master' of https://github.com/opendap/bes
Updated the hdf4/5 handler commit hashes
Merge branch 'master' into httpd_minor_refactor
Updated teh hdf4/5 handler commit hashes
More minor edits to httpd_catalog
comments; formatting; minor edits. httpd_catalof.conf.in changes
2019-01-14 James Gallagher <jgallagher@opendap.org>
Merge pull request #225 from OPENDAP/virtual-catalog-bug
Virtual catalog bug
2019-01-14 Nathan Potter <ndp@opendap.org>
More ncml error message grooming
Revert "dscfdw"
This reverts commit bde45591a3e2c99d60b0edbddd3d9a76b73a1234.
dscfdw
2019-01-11 James Gallagher <jgallagher@opendap.org>
Merge branch 'master' into virtual-catalog-bug
More tests for the odd problem with libcurl on OSX
2019-01-11 Kodi Neumiller <kneumiller@mtech.edu>
Merge branch 'master' of https://github.com/opendap/bes
Commented out debian build
2019-01-11 James Gallagher <jgallagher@opendap.org>
checkpoint
2019-01-11 Kodi Neumiller <kneumiller@mtech.edu>
Merge pull request #224 from OPENDAP/debian
Debian: Have to merge, otherwise it won't use the new cacheT.cc file.
Added back the changes made to cacheT.cc
2019-01-10 Kodi Neumiller <kneumiller@mtech.edu>
Added back the bes docker script, was removed from the last git merge.
Merge branch 'debian' of https://github.com/opendap/bes into debian
Added slight changes so that the files can be pushed to master.
Merge branch 'master' into debian
Reverting to the state of the project at d9dd51b530dc74425951ed5b28d6f047461baddf
Reverting to the state of the project at bcd2ee5701f64aa500b0582720949403efaf45fc
Needed to slightly change a file to create a new pull request.
Reverting to the state of the project at bcd2ee5701f64aa500b0582720949403efaf45fc
2019-01-09 Kodi Neumiller <kneumiller@mtech.edu>
Added "sudo" to the debian/rules
Reverting to the state of the project at d9dd51b530dc74425951ed5b28d6f047461baddf. Needed to fix the modules/hdf4 and hdf5 changes that somehow keep showing up...
Merge pull request #223 from OPENDAP/debian
Debian: Had to revert to a previous commit because, for some reason, there was a conflict and several files had new code swapped out for their old code.
Added "sudo" to the rules. (Had to revert a commit that already had this because of conflicts)
Reverting to the state of the project at d9dd51b530dc74425951ed5b28d6f047461baddf
Merge pull request #222 from OPENDAP/debian
Debian
Merge branch 'debian' of https://github.com/opendap/bes into debian