forked from OPENDAP/netcdf_handler
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChangeLog
2682 lines (1771 loc) · 76.2 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
2014-03-24 Nathan Potter <ndp@opendap.org>
netcdf_handler: Altered the prototype config file so thet the default behavior for the handler when it's shipped is to ShowSharedDimensions=true
2013-10-23 James Gallagher <jgallagher@opendap.org>
updated baselines for the new escaping behavior of libdap
2013-10-11 James Gallagher <jgallagher@opendap.org>
Edits to match the new, sane, semantics for BaseType::read(). True now means done/eof and flase means more data to read (more instances for a sequence). All the tests pass.
2013-10-01 James Gallagher <jgallagher@opendap.org>
Updated the FSF address in the copyright headers
2013-09-26 James Gallagher <jgallagher@opendap.org>
removed -fno-defer-pop from all copies of Makefile.am since the new OSX compiler prints warnings about it and it seems to not make a difference with newer g++ versions.
2013-09-18 Nathan Potter <ndp@opendap.org>
netcdf_handler: Add DAS file for the bears.nc dataset.
2013-09-18 Nathan Potter <ndp@opendap.org>
netcdf_handler: Add DAS file for the bears.nc dataset.
2013-09-10 Nathan Potter <ndp@opendap.org>
netcdf_handler: Updated ChangeLog, NEWS, INSTALL, etc. for Hyrax 1.9
2013-04-30 James Gallagher <jgallagher@opendap.org>
Removed gridfields files (moved to the ugrid_functions dir, which holds only old code that's never used) and removed an include of gridfields.h from NCRequestHandler.cc. This should fix the distcheck target.
;; Local Variables:
;; coding: utf-8
;; End:
2013-04-30 James Gallagher <jgallagher@opendap.org>
Removed gridfields files (moved to the ugrid_functions dir, which holds only old code that's never used) and removed an include of gridfields.h from NCRequestHandler.cc. This should fix the distcheck target.
2013-03-25 Nathan Potter <ndp@coas.oregonstate.edu>
netcdf_handler: Disabling cruft code from earlier ugrid work.
2013-02-10 Nathan Potter <ndp@coas.oregonstate.edu>
netcdf_handler: Disabing gridfields code...
2013-01-25 Patrick West <pwest@ucar.edu>
Need 2.61 autoconf, not 2.63
M configure.ac
2013-01-22 James Gallagher <jgallagher@opendap.org>
Removed the eclipse .project and .cproject files.
D .project
D .cproject
2013-01-21 James Gallagher <jgallagher@opendap.org>
Merge of the hyrax 1.8 branch
_M .
A + .project
_M conf
A + .cproject
_M bes-testsuite
_M bes-testsuite/nc/fnoc1.nc.3.bescmd
_M bes-testsuite/nc/fnoc1.nc.3.bescmd.baseline
A + bes-testsuite/nc/nc4_nc_classic_compressed.nc.2.bescm.baseline
A + bes-testsuite/nc/nc4_nc_classic_compressed.nc.0.bescm.baseline
M NCByte.cc
_M data/nc4_test_files
M NCArray.cc
_M OSX_Resources
_M OSX_Resources/InstallationCheck.proto
_M OSX_Resources/Info.plist.proto
M ncdas.cc
2012-09-28 James Gallagher <jgallagher@opendap.org>
Test hacks... This now passes its tests with the latest version of
libdap. The fixes were for the schema URL, etc., in the root element
of the DDX responses. The code is also using the latest/best stuff for
autotest - spec. baseline generation from teh test driver.
M bes-testsuite/nc/ref_tst_compound5.nc.2.bescmd.baseline
M bes-testsuite/nc/ref_tst_compound2.nc.2.bescmd.baseline
M bes-testsuite/nc/ref_tst_enum_data.nc.2.bescmd.baseline
M bes-testsuite/nc/ref_tst_compound.nc.2.bescmd.baseline
M bes-testsuite/nc/ref_tst_compound4.nc.2.bescmd.baseline
M bes-testsuite/nc/ref_tst_opaque_data.nc.2.bescmd.baseline
M bes-testsuite/nc/ref_tst_compound3.nc.2.bescmd.baseline
M bes-testsuite/handler_tests_macros.m4
A bes-testsuite/generate_data_baseline.sh.in
M bes-testsuite/Makefile.am
A bes-testsuite/generate_metadata_baseline.sh.in
M configure.ac
2012-08-20 James Gallagher <jgallagher@opendap.org>
more refactoring of the gridfields function code.
2012-08-20 James Gallagher <jgallagher@opendap.org>
cleaning...
2012-08-20 James Gallagher <jgallagher@opendap.org>
Updated README
2012-08-20 James Gallagher <jgallagher@opendap.org>
cleaning...
2012-08-20 James Gallagher <jgallagher@opendap.org>
cleaning...
2012-08-20 James Gallagher <jgallagher@opendap.org>
cleaning...
2012-08-20 James Gallagher <jgallagher@opendap.org>
Cleanup in the ugrid_project directory.
2012-08-16 James Gallagher <jgallagher@opendap.org>
hacked the README
2012-08-10 James Gallagher <jgallagher@opendap.org>
Check point
M gridfields_functions.cc
A ugrid_project/bes.conf.jhrg.in
2012-08-10 James Gallagher <jgallagher@opendap.org>
Added the test4.nc data file for the nascent ugrid_restrict tests
2012-08-07 James Gallagher <jgallagher@opendap.org>
More clean up in the gridfields interface code.
2012-08-06 smoe
added gridfields_functions.h
2012-04-19 James Gallagher <jgallagher@opendap.org>
Removed more non-ugrid code from ce_functions.cc in the netcdf_handler
2012-04-19 James Gallagher <jgallagher@opendap.org>
Updated the README with soem more info
2012-04-19 James Gallagher <jgallagher@opendap.org>
Moved the ugrid_project code into the netcdf_handler. There's no place
else where this little bit of test code makes sense.
A http://scm.opendap.org/svn/trunk/netcdf_handler/ugrid_project
D http://scm.opendap.org/svn/trunk/ugrid_project
2012-04-19 James Gallagher <jgallagher@opendap.org>
Fixed an issue with the optional ugrid_project code - now configure.ac
will only make the bes.conf that code needs if the --with-gridfields
option is used and libgridfields is found.
M configure.ac
2012-04-18 James Gallagher <jgallagher@opendap.org>
Added the ugrid function to the netcdf_handler
M NCRequestHandler.cc
M configure.ac
M NCArray.h
A ce_functions.cc
A ce_functions.h
M Makefile.am
2012-04-17 James Gallagher <jgallagher@opendap.org>
Merge/version update.
_M .
M netcdf_handler.spec
_M bes-testsuite/nc/fnoc1.nc.3.bescmd
_M bes-testsuite/nc/fnoc1.nc.3.bescmd.baseline
M configure.ac
M NEWS
_M OSX_Resources/InstallationCheck.proto
_M OSX_Resources/Info.plist.proto
2012-04-12 James Gallagher <jgallagher@opendap.org>
Result of the merge with version 3.10.2 fromt eh h 1.8 branch.
_M .
M ncdds.cc
M netcdf_handler.spec
M NCRequestHandler.cc
M NCRequestHandler.h
A + bes-testsuite/package.m4.in
M bes-testsuite/nc/nc4_strings_comp.nc.0.bescmd.baseline
M bes-testsuite/nc/coads_climatology.nc.ddx.bescmd.baseline
M bes-testsuite/nc/nc4_strings_comp.nc.2.bescmd.baseline
M bes-testsuite/nc/nc4_nc_classic_no_comp.nc.0.bescmd.baseline
M bes-testsuite/nc/nc4_nc_classic_no_comp.nc.2.bescmd.baseline
_M bes-testsuite/nc/fnoc1.nc.3.bescmd
M bes-testsuite/nc/ref_tst_compound5.nc.2.bescmd.baseline
M bes-testsuite/nc/ref_tst_compound2.nc.0.bescmd.baseline
M bes-testsuite/nc/ref_tst_compound2.nc.2.bescmd.baseline
M bes-testsuite/nc/fnoc1.nc.2.bescmd.baseline
_M bes-testsuite/nc/fnoc1.nc.3.bescmd.baseline
M bes-testsuite/nc/ref_tst_enum_data.nc.2.bescmd.baseline
M bes-testsuite/nc/nc4_strings.nc.0.bescmd.baseline
M bes-testsuite/nc/nc4_strings.nc.2.bescmd.baseline
M bes-testsuite/nc/ref_tst_compound.nc.0.bescmd.baseline
M bes-testsuite/nc/ref_tst_compound.nc.2.bescmd.baseline
M bes-testsuite/nc/nc4_strings.nc.2.bescmd
M bes-testsuite/nc/ref_tst_compound4.nc.2.bescmd.baseline
M bes-testsuite/nc/test.nc.1.bescmd.baseline
M bes-testsuite/nc/nc4_nc_classic_compressed.nc.0.bescmd.baseline
M bes-testsuite/nc/nc4_nc_classic_compressed.nc.2.bescmd.baseline
M bes-testsuite/nc/nc4_strings.nc.0.bescmd
M bes-testsuite/nc/nc4_unsigned_types_comp.nc.0.bescmd.baseline
M bes-testsuite/nc/nc4_unsigned_types_comp.nc.2.bescmd.baseline
M bes-testsuite/nc/nc4_unsigned_types.nc.0.bescmd.baseline
M bes-testsuite/nc/nc4_unsigned_types.nc.2.bescmd.baseline
M bes-testsuite/nc/ref_tst_opaque_data.nc.2.bescmd.baseline
A + bes-testsuite/nc/fnoc1.nc.1.1.bescmd
M bes-testsuite/nc/ref_tst_compound3.nc.2.bescmd.baseline
M bes-testsuite/Makefile.am
M configure.ac
M INSTALL
M NCInt16.cc
M NCByte.cc
M NEWS
A + nc_util.cc
M NCArray.cc
A + nc_util.h
M ChangeLog
M nc.conf.in
M README
_M OSX_Resources/InstallationCheck.proto
_M OSX_Resources/Info.plist.proto
M NCStructure.cc
M Makefile.am
M ncdas.cc
2012-02-09 James Gallagher <jgallagher@opendap.org>
Fixes for netcdf-4.1.1 (Removed the NC_FIRSTUSERTYPEID hack - bad
idea)
2012-02-07 James Gallagher <jgallagher@opendap.org>
3.10.1
2012-02-07 James Gallagher <jgallagher@opendap.org>
Added a conditional definition of NC_FIRSTUSERTYPEID to
config_nc.h for netCDF 4.1.1
2012-01-11 James Gallagher <jgallagher@opendap.org>
Updates for Hyrax 1.8.
package.m4 is now generated by configure, not bes-testsuite/Makefile.am
M netcdf_handler.spec
A bes-testsuite/package.m4.in
M bes-testsuite/Makefile.am
M configure.ac
M INSTALL
M NEWS
M ChangeLog
M README
2012-01-09 James Gallagher <jgallagher@opendap.org>
Added a comment
M NCArray.cc
2011-12-28 James Gallagher <jgallagher@opendap.org>
Added include for NCRequestHandler so that we could use it to
access the run-time param PromoteByteToShort.
2011-12-14 James Gallagher <jgallagher@opendap.org>
Fixed missing gmon.out in bes-testsuite/Makefile.am CLEANFILES
M bes-testsuite/Makefile.am
2011-12-14 James Gallagher <jgallagher@opendap.org>
Added the NC.PromoteByteToShort option. This fixes a problem where
signed Byte values 'lost' their sign (see ticket 1850). This has
never been a big deal with Byte variables, but for attributes it
can be a real source of confusion because attributes' values are
rendered to text. If the sign is not present, it's hard for the
client to infer that one was originally present.
2011-12-02 James Gallagher <jgallagher@opendap.org>
Fixed test baselines; I changed the number of significant digits used
when printing attribute values to address a bug where values were being
rounded to values that were off by 1 digit in the Nth place where N was
15 or 7 for 64- or 32-bit reals.
M bes-testsuite/nc/nc4_strings_comp.nc.0.bescmd.baseline
M bes-testsuite/nc/coads_climatology.nc.ddx.bescmd.baseline
M bes-testsuite/nc/nc4_strings_comp.nc.2.bescmd.baseline
M bes-testsuite/nc/nc4_nc_classic_no_comp.nc.0.bescmd.baseline
M bes-testsuite/nc/nc4_nc_classic_no_comp.nc.2.bescmd.baseline
M bes-testsuite/nc/ref_tst_compound2.nc.0.bescmd.baseline
M bes-testsuite/nc/ref_tst_compound2.nc.2.bescmd.baseline
M bes-testsuite/nc/nc4_strings.nc.0.bescmd.baseline
M bes-testsuite/nc/nc4_strings.nc.2.bescmd.baseline
M bes-testsuite/nc/ref_tst_compound.nc.0.bescmd.baseline
M bes-testsuite/nc/ref_tst_compound.nc.2.bescmd.baseline
M bes-testsuite/nc/nc4_strings.nc.2.bescmd
M bes-testsuite/nc/test.nc.1.bescmd.baseline
M bes-testsuite/nc/nc4_nc_classic_compressed.nc.0.bescmd.baseline
M bes-testsuite/nc/nc4_nc_classic_compressed.nc.2.bescmd.baseline
M bes-testsuite/nc/nc4_strings.nc.0.bescmd
M bes-testsuite/nc/nc4_unsigned_types_comp.nc.0.bescmd.baseline
M bes-testsuite/nc/nc4_unsigned_types_comp.nc.2.bescmd.baseline
M bes-testsuite/nc/nc4_unsigned_types.nc.0.bescmd.baseline
M bes-testsuite/nc/nc4_unsigned_types.nc.2.bescmd.baseline
2011-11-17 James Gallagher <jgallagher@opendap.org>
Fixed ticket 1788 - the code that converts floats and double
attribute values to strings was not handling precision correctly
and rounding errors were creeping into the DAS/DDX. I dropped the
precision of floats to 9 digits and doubles to 16 decimal digits.
2011-10-26 James Gallagher <jgallagher@opendap.org>
Updates for the new DDX tests... nearly done
2011-10-24 Patrick West <pwest@ucar.edu>
Added curly brace around if body so can add debug later.
M ncdds.cc
2011-10-24 Patrick West <pwest@ucar.edu>
Working now with netcdf 3.6.3
M NCUInt32.cc
M NCUInt16.cc
M NCInt32.cc
M NCInt16.cc
M NCByte.cc
2011-10-24 James Gallagher <jgallagher@opendap.org>
Fixes for netcdf 3 build - there are issues still.
M NCArray.cc
M NCStructure.cc
M ncdas.cc
2011-10-23 James Gallagher <jgallagher@opendap.org>
Modified configure so that this code builds only the so version of
the library by default. Fixed some DDX tests to work with the new
libdap code.
2011-10-06 James Gallagher <jgallagher@opendap.org>
Fix for ticket 1558: The handler now uses the xdap_accept context
to switch between showing shared dimensions and not (unless that
parameter is explicitly set in the configuration file).
2011-10-03 James Gallagher <jgallagher@opendap.org>
Added to test using the xdap_accept context to trigger various behaviors.
2011-09-23 James Gallagher <jgallagher@opendap.org>
Fixed the distcheck target
M bes-testsuite/Makefile.am
M configure.ac
2011-09-21 James Gallagher <jgallagher@opendap.org>
Hyrax 1.8
2011-09-21 James Gallagher <jgallagher@opendap.org>
Added missing files for the distribution.
2011-09-21 James Gallagher <jgallagher@opendap.org>
Added.
2011-09-21 James Gallagher <jgallagher@opendap.org>
gcc/++ 4.0.x does not support the vector<>.data() method, so I
dropped back to using &var[0] (in place of the less hacky
var.data()). Also fixed a test that somehow got garbage in the
XML.
2011-09-20 James Gallagher <jgallagher@opendap.org>
Added the TypeName attribute to NC_OPAQUEs; updated tests.
2011-09-20 James Gallagher <jgallagher@opendap.org>
Added. For enum tests.
2011-09-19 James Gallagher <jgallagher@opendap.org>
Removed old code - shortened most of the scalar read() mfuncs (for
the integral types) by assuming that the DDS is built correctly.
The code was testing that the datatype return by nc_inq_* matched
the class (NCByte, NCInt32, ...) but that's not necessary (if the
DDS was built correctly in the first place). Also, the code was
using a 'type-safe' function for each read, but the new code for
compound/user-defined types needs general functions, which also
happen to be a bit easier to use, so I switched to those in most
places. NB: The NCFloat32 and NCFloat64 classes use the older code
with the type-safe functions so they can serve as a template if I
need to switch back.
2011-09-19 James Gallagher <jgallagher@opendap.org>
Added support for scalar and array enums, including tests. NetCDF
Enums are represented using integral types (byte, ..., uint32). If
an enum uses a 64-bit int the handler either elides the variable
and writes a message to stderr or throws an exception, depending
on the value of the NC.IgnoreUnknwonTypes parameter.
2011-09-16 James Gallagher <jgallagher@opendap.org>
Added support for both scalars and arrays of the NC_OPAQUE type,
including regression tests. NC_OPAQUE variables are represented as
arrays of Bytes.
2011-09-15 James Gallagher <jgallagher@opendap.org>
Removed some #define NETCDF_VERSION hackery (which made looking at
the code easier). These will break the netcdf 3 builds.
2011-09-15 James Gallagher <jgallagher@opendap.org>
Last bit of hackery for support for nested structures with fields
that are arrays and arrays of nested structures with fields that
are arrays. Includes tests.
2011-09-14 James Gallagher <jgallagher@opendap.org>
Removed instrumentation inadvertently checked in.
2011-09-14 James Gallagher <jgallagher@opendap.org>
Added support for Nested structures (aka compounds) with arrays
and arrays of structures with nested structures with arrays in
them. No tests yet.
2011-09-14 James Gallagher <jgallagher@opendap.org>
Added support for nested structures and included tests for the
same. Next Structure members that are arrays...
2011-09-14 James Gallagher <jgallagher@opendap.org>
Added regression tests for the new structure (netcdf4 compound)
code. Still a work in progress.
2011-09-13 James Gallagher <jgallagher@opendap.org>
cleaned up the NCArray refactor. This just removed #if 0... #endif
and commented-out lines
2011-09-13 James Gallagher <jgallagher@opendap.org>
More changes for compound types - arrays are now supported.
Recursive compounds not so much... Also refactored NCArray.
2011-09-12 James Gallagher <jgallagher@opendap.org>
Initial support for compound types. This code supports compound
variables (scalars, not arrays) and compound attributes (scalars
and vectors). Nested compounds are not supported yet. Two new data
files, with cdl, have been added to data/nc4_test_files and there
are bescmd files for them, too. The tests themselves have not been
added, however. Also, the tests have been partitioned into two
parts, one for netcdf4-only.
2011-09-07 James Gallagher <jgallagher@opendap.org>
The handler now builds and passes make check using both netcdf 3
and netcdf 4.
2011-09-06 James Gallagher <jgallagher@opendap.org>
Fixed bogus define of NETCDF_VERSION compile-time constant.
2011-09-02 James Gallagher <jgallagher@opendap.org>
Fixes for the compilation problem reported by Patrick - I goofed
and checked in a merge that hosed some #if ... #endif stuff.
2011-08-24 James Gallagher <jgallagher@opendap.org>
Merge of Hyrax 1.7.1
_M .
M ncdds.cc
M NCRequestHandler.cc
_M bes-testsuite/nc/fnoc1.nc.3.bescmd
_M bes-testsuite/nc/fnoc1.nc.3.bescmd.baseline
_M OSX_Resources/InstallationCheck.proto
_M OSX_Resources/Info.plist.proto
M ncdas.cc
2011-08-15 James Gallagher <jgallagher@opendap.org>
Fixed missing right brace.
M NCUInt16.cc
2011-08-12 James Gallagher <jgallagher@opendap.org>
Updated the svn:ignore property for the netcdf4 data files used by
the netcdf handler tests
2011-08-09 James Gallagher <jgallagher@opendap.org>
Fixes for builds with netcdf 3
M NCUInt32.cc
M NCUInt16.cc
M configure.ac
M ncdas.cc
M NCStr.cc
2011-08-05 James Gallagher <jgallagher@opendap.org>
The configure script now figures out the major version number of
the netcdf library; the support for the new datatypes uses this so
that the handler will still compile with an old version of the
library (that will lack the new constants, et c., for the new
netcdf 4 datatypes).
M configure.ac
2011-08-05 James Gallagher <jgallagher@opendap.org>
Completed adding support for unsigned short, int and byte types and strings. The server supports both variables and attributes of these types and has tests for the new types.
2011-08-04 James Gallagher <jgallagher@opendap.org>
Added test data for those netcdf4 tests.
2011-08-04 James Gallagher <jgallagher@opendap.org>
Added calls to LT_INIT and AM_PROG_LIBTOOL so that more complete libtool support is available.
2011-08-04 James Gallagher <jgallagher@opendap.org>
Test files for netcdf4 features - these test for support for the 'classic nc4' stuff.
2011-08-04 James Gallagher <jgallagher@opendap.org>
Removed old dejaGNU test cruft; added new tests for netcdf4.
2011-06-30 Patrick West <pwest@ucar.edu>
Merge hyrax 1.7 branch to trunk
2011-05-05 James Gallagher <jgallagher@opendap.org>
MOved nc4 test files to the data directory
2011-05-05 James Gallagher <jgallagher@opendap.org>
Added netcdf 4 files that use the 'NC_CLASSIC_MODEL'
2011-04-20 James Gallagher <jgallagher@opendap.org>
metapackage build
M configure.ac
;; Local Variables:
;; coding: utf-8
;; End:
2011-04-20 James Gallagher <jgallagher@opendap.org>
Hyrax 1.7 release
2011-04-20 James Gallagher <jgallagher@opendap.org>
metapackage build
M configure.ac
2011-03-28 James Gallagher <jgallagher@opendap.org>
1.7RC1
2011-03-17 Nathan Potter <ndp@coas.oregonstate.edu>
netcdf_handler: Added automated version numbers to OSX Package builds
2011-03-08 James Gallagher <jgallagher@opendap.org>
Merge for hyrax 1.7 from the hyrax_1.6.2_release branch of shrew
to the trunk
_M .
M conf/netcdf.m4
_M bes-testsuite/nc/fnoc1.nc.3.bescmd.baseline
_M bes-testsuite/nc/fnoc1.nc.3.bescmd
_M bes-testsuite/besstandalone.netcdf/fnoc1.nc.3.exp
D OSX_Resources/InstallationCheck
A + OSX_Resources/InstallationCheck.proto
D OSX_Resources/Info.plist
A + OSX_Resources/Info.plist.proto
M OSX_Resources/Description.plist
M Makefile.am
2011-02-08 James Gallagher <jgallagher@opendap.org>
removed unneeded mime_util.h and util.h includes; added comments
about sending mime headers in our handlers (which may not be
needed).
2010-10-29 mjohnson
MERGE from Hyrax 1.6.2 RELEASE branch (shrew)
2010-09-14 James Gallagher <jgallagher@opendap.org>
version 3.9.2
M netcdf_handler.spec
M configure.ac
M INSTALL
M NEWS
M ChangeLog
M README
2010-07-19 James Gallagher <jgallagher@opendap.org>
Changed the default setting of the handler so that datasets with
grids have the extra variables that were always included in the
past. This is needed by the current Java Netcdf library.
2010-07-19 James Gallagher <jgallagher@opendap.org>
Changed the default setting of the handler so that datasets with
grids have the extra variables that were always included in the
past. This is needed by the current Java Netcdf library.
2010-07-15 Patrick West <pwest@ucar.edu>
Added include of dependent dap.conf
2010-05-25 James Gallagher <jgallagher@opendap.org>
Fix for ticket 1568. When NAN was being written to the DAS, a dot was
appended. This broke Java parsers. Fixed.
M ncdas.cc
2010-05-24 Patrick West <pwest@ucar.edu>
For netcdf4, NC_CFLAGS is set, not NC_CPPFLAGS
M configure.ac
2010-05-12 James Gallagher <jgallagher@opendap.org>
Merged hyrax 1.6.1
_M .
A + conf/ax_path_generic.m4
A + conf/ax_compare_version.m4
M conf/libdap.m4
M netcdf_handler.spec
M NCGrid.cc
A + bes-testsuite/nc/coads_climatology.nc.ddx.bescmd.baseline
_M bes-testsuite/nc/fnoc1.nc.3.bescmd.baseline
_M bes-testsuite/nc/fnoc1.nc.3.bescmd
A + bes-testsuite/nc/coads_climatology.nc.ddx.bescmd
M bes-testsuite/netcdf_handlerTest.at
_M bes-testsuite/besstandalone.netcdf/fnoc1.nc.3.exp
M bes-testsuite/Makefile.am
M configure.ac
M INSTALL
M NEWS
M NCSequence.cc
M NCSequence.h
M ChangeLog
M NCGrid.h
M README
M NCStructure.cc
M NCStructure.h
M Makefile.am
2010-04-30 James Gallagher <jgallagher@opendap.org>
Fixed error in script when netcdf4 was not found.
2010-04-29 James Gallagher <jgallagher@opendap.org>
Added.
A conf/ax_path_generic.m4
A conf/ax_compare_version.m4
2010-04-29 James Gallagher <jgallagher@opendap.org>
Added support for netcdf 4.x
2010-04-27 James Gallagher <jgallagher@opendap.org>
Added tests for new DDX. Actually, I forgot to add these last week...
2010-04-22 Patrick West <pwest@ucar.edu>
Fixed issue with dap-config --version with b at end (for beta)
M conf/libdap.m4
2010-04-21 James Gallagher <jgallagher@opendap.org>
Support for the new methods in libdap used to build the DDX using
a DAS that is merged with a DDS. The handlers that don't have
correctly formed DAS objects override the default methods in
libdap.
NB: The HDF5 handler seems to be broken WRT the DDX, both with
this new code and with the old version.
2010-04-19 James Gallagher <jgallagher@opendap.org>
Updated the INSTALL files so that they no longer talk about
dap-server or the 'three server programs'. Added a note about
sometimes needing to recompile netcdf, hdf4/5 using -fPIC.
2010-04-15 James Gallagher <jgallagher@opendap.org>
Added a dist-hook target that removes .svn dirs from the dist tar.
M dap-server/Makefile.am
M fileout_netcdf/Makefile.am
M freeform_handler/Makefile.am
M hdf4_handler/Makefile.am
M hdf5_handler/Makefile.am
M ncml_module/Makefile.am
M netcdf_handler/Makefile.am
2010-04-15 James Gallagher <jgallagher@opendap.org>
Added Requires: lines to the .spec files for all the modules we build rpms for.
2010-03-29 Patrick West <pwest@ucar.edu>
+= used for BES.modules
M nc.conf.in
2010-02-06 Patrick West <pwest@ucar.edu>
distcheck fixed. rpm builds successfully.
M netcdf_handler.spec
M bes-testsuite/Makefile.am
2010-02-05 rduncan
update versions for libdap/bes
2010-02-03 rduncan
Release 3.9.0
2010-02-03 rduncan
Release 3.9.0
2010-02-03 rduncan
Release 3.9.0
2010-02-03 rduncan
Release 3.9.0
2010-02-01 rduncan
Release 02/01/2010 3.9.0
2010-02-01 rduncan
Release 02/01/2010 3.9.0
2010-02-01 rduncan
Release 02/01/2010
2010-02-01 rduncan
Release 1/01/2010
;; Local Variables:
;; coding: utf-8
;; End:
2010-02-01 rduncan
Release 1/01/2010
2010-01-22 Patrick West <pwest@ucar.edu>
RPM to use nc.conf instead of bes-nc-data.sh script
M netcdf_handler.spec
2010-01-12 Patrick West <pwest@ucar.edu>
Cleaned up comments
M nc.conf.in
2010-01-11 Patrick West <pwest@ucar.edu>
No longer using the script to update bes.conf, but using own
configuration
D bes-nc-data.sh.in
A nc.conf.in
M Makefile.am
2010-01-10 Patrick West <pwest@ucar.edu>
API changes to BESKeys
M NCRequestHandler.cc
2010-01-08 Patrick West <pwest@ucar.edu>
--clean to clean build and src files for rpmbuild
M Makefile.am
2009-12-29 James Gallagher <jgallagher@opendap.org>
Shrew build changes that will hopefully lead to a version that we can build using NMI's B&T system. Also, I added 'cccc' targets so that we can take a 'metrics snapshot' without undue pain.
2009-09-02 James Gallagher <jgallagher@opendap.org>
Added MACRO_DIR to configure.ac; minor libdap updates.
M ncdds.cc
M configure.ac
M ncdas.cc
2009-09-02 Patrick West <pwest@ucar.edu>
Removed reference to dejagnu
M bes-testsuite/Makefile.am
2009-09-01 Patrick West <pwest@ucar.edu>
Checking version of automake.
M configure.ac
2009-09-01 Patrick West <pwest@ucar.edu>
EXTRA_DIST contained files no longer needed, deleted from svn.
M bes-testsuite/Makefile.am
2009-09-01 Patrick West <pwest@ucar.edu>
Removed Server 3 code.
D nc_handler.cc
M netcdf_handler.spec
M configure.ac
M Makefile.am
2009-08-31 Patrick West <pwest@ucar.edu>
changed path variables to use during autotest
2009-08-31 Patrick West <pwest@ucar.edu>
changed include of cgi_util to mime_util and removed include where not needed
2009-08-23 Patrick West <pwest@ucar.edu>
Added ; after each BESDEBUG statement
2009-08-21 James Gallagher <jgallagher@opendap.org>
Added this comd file that gets the DataDDX (which will be triggered by the
.dap extension on a URL.
A nc/fnoc1.nc.dap.bescmd
2009-08-21 James Gallagher <jgallagher@opendap.org>
Changed teh libdap_cmd_module for libdap_xml_module so that the parser for
dataddx works.
M bes-testsuite/bes.conf.in
2009-08-19 James Gallagher <jgallagher@opendap.org>
Deleted generated files
2009-08-18 Patrick West <pwest@ucar.edu>
DAP Macro changes
2009-08-12 James Gallagher <jgallagher@opendap.org>
Added info about the Shared Dimension special option.
M README
2009-07-10 Patrick West <pwest@ucar.edu>
Merge 3.8.3 tag into trunk.
_M .
M netcdf_handler.spec
M bes-testsuite/nc/fnoc1.nc.2.bescmd.baseline
_M bes-testsuite/nc/fnoc1.nc.3.bescmd.baseline
_M bes-testsuite/nc/fnoc1.nc.3.bescmd
_M bes-testsuite/besstandalone.netcdf/fnoc1.nc.3.exp
M configure.ac
M INSTALL
M NEWS
M ChangeLog
M README
;; Local Variables:
;; coding: utf-8
;; End:
2009-05-21 James Gallagher <jgallagher@opendap.org>
Added tests' config directory to Makefile.am
2009-04-08 Nathan Potter <ndp@coas.oregonstate.edu>
netcdf_handler: Tagging version 3.8.2
2009-03-16 James Gallagher <jgallagher@opendap.org>
Version 3.8.2
M netcdf_handler.spec
M configure.ac
M INSTALL
M NEWS
M ChangeLog
M README
2009-03-16 James Gallagher <jgallagher@opendap.org>
Results of a code review
M NCModule.h
2009-03-11 James Gallagher <jgallagher@opendap.org>
Audit fixes
M ncdds.cc
M ncdas.cc
M NCStr.cc
2009-03-08 Patrick West <pwest@ucar.edu>
POST_CONSTRAINT issues with multiple containers. Call set_constraint on
BESDapResponse in order to properly have the post constraint set.
M NCRequestHandler.cc
2009-03-08 Patrick West <pwest@ucar.edu>
Added a handler attribute to help response, specifying what
services the module handles.
M NCModule.cc
M NCRequestHandler.cc
2009-03-04 Patrick West <pwest@ucar.edu>
container storage and catalog list reference changes
M netcdf_handler-3.8.0/NCModule.cc