-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy patharchived_history.txt
More file actions
2242 lines (1510 loc) · 65.6 KB
/
archived_history.txt
File metadata and controls
2242 lines (1510 loc) · 65.6 KB
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
commit 4a318112e333feab51121c4ea8bef2d154c44f75
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Oct 12 13:45:10 2017 +0000
use raw dem_type value for facet
commit dce9c2a1c95df92978957100f95f87e1ccf505d5
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Oct 11 23:19:01 2017 +0000
add dem_type facet
commit 70e2b34d25b27c8653f6461acd74013f7247eb71
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Oct 9 22:57:13 2017 +0000
add azimuth and range look facets
commit b4cc3b2a3733d234aa675f6d03d0d5226800e712
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Aug 11 23:32:04 2017 +0000
mstarch: fixing new feature cache message
commit 6afb61bb1614f27c28d7273f594056ccff5a04a7
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Aug 11 16:58:14 2017 +0000
mstarch: adding links to Dataset Downloads and My Jobs
commit b7eb213e28494351a826a21be536da96648bd8d6
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Jul 20 19:35:09 2017 +0000
handle unbound event handler to rules not visible: https://www.gyrocode.com/articles/jquery-datatables-why-click-event-handler-does-not-work/
commit 2b325d2684d435a6cb1614b7c7a08666b8086d5a
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Thu Jul 20 10:24:37 2017 -0700
propagate ops user through to rule creation
commit 2250288d0abcd7a4d5b7fb28bd8be9f476dfeb90
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Jul 20 16:03:40 2017 +0000
decrease font size and cellpadding for user rules list
commit 22dd1790d50836cda611c07b8a88f55140237df1
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Jul 20 14:07:51 2017 +0000
move created and modified times to last columns
commit 5767d52de89b6dc8ca6111a644f1bdaa42234408
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Jul 20 03:31:06 2017 +0000
set default date for created and modified times
commit cd9645cf30af6cb9d50d1b92ab7739b37fbafcf0
Merge: a821cc2 873061c
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Jul 20 03:11:03 2017 +0000
Merge branch 'master' of https://github.jpl.nasa.gov/hysds-org/tosca
commit 873061c6d4979e035e23cd15a95c482f367e0664
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Jul 20 03:06:13 2017 +0000
use datatables API to delete rule; increase size of list_rules_modal
commit b20d6c55aceabf96c2e5ffcf79a9a5e5068bca84
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Jul 19 22:55:13 2017 +0000
use datatables for rule list
commit 30f6092a63c59573faa6ea670c75281bec4d30ed
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Jul 19 20:15:01 2017 +0000
add rule creation and modified time
commit a821cc20ee22ce41494aa1f72733425190f8d525
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Mon Jul 17 18:33:07 2017 +0000
mstarch: firewall if sub-apps don't exist
commit cfaecc0c6d03979a6fab2779e37d3d5f25ade8f5
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Mon Jul 17 18:26:20 2017 +0000
mstarch: my_jobs and my_downloads integration
commit e9189c2b1fc1576b60abef882a587d6f8e23ba8c
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Jul 13 19:40:00 2017 +0000
show support link and modal; show "Jobs" link if ops user
commit 4acf675931bd99e4a56db9489457accfa5c2a734
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Jul 12 14:39:26 2017 +0000
sort actions by labels ignoring case
commit d2a1719557d9bdb12c9bd20feb1ee0cb984268ec
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Jul 10 17:58:12 2017 +0000
increase facet size for type and dataset
commit d1eac9b376642f56e67e3e0abd40f7dc3ab994f8
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Jun 19 15:41:30 2017 +0000
disable provenance button until updated to v2
commit 8735c1701784c490ab7d1db392119b82c9db88eb
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Jun 14 23:18:33 2017 +0000
add option to specify and show title badge
commit f5d5ca9c929fe051b2bde8854b4bdacf10653888
Author: M Starch <Michael..D.Starch@jpl.nasa.gov>
Date: Wed May 31 19:30:13 2017 +0000
mstarch: turning grayed-out options into hidden options
commit 568666ccec30bc1f5dfd885d14ad226bd6f138e7
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue May 30 14:09:32 2017 +0000
template tosca title value
commit 447a22c96c95faa142d05a1596e33bda2d71fc71
Author: M Starch <Michael..D.Starch@jpl.nasa.gov>
Date: Wed May 17 23:40:49 2017 +0000
mstarch: products w/o geolocation don't break facetview
commit ca78f55d6b3ab17edf778c3f6b61c38ed5891aab
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon May 8 17:40:13 2017 +0000
add within option to location search map to filter on docs with polygons that are within query polygon
commit d7dc260b17739384478e2b692a98d56ec9850170
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Thu May 4 15:55:20 2017 +0000
mstarch: fixing boolean-enumerable problem
commit 87d00054ba207602c711305c83e2f9f85d8c7434
Author: jlinick <Justin.P.Linick@jpl.nasa.gov>
Date: Tue May 2 21:24:38 2017 +0000
add bugfix version of leaflet
commit a2fbdfe074be732e6311a8d737da16e1b906eb8b
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Thu Apr 20 00:13:09 2017 +0000
mstarch: fixing FIGARO_URL
commit 498709ca29dea8caf1742b04149bb8cc61039736
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Apr 19 23:43:31 2017 +0000
mstarch: fixing re match up to ':'
commit 39c982d283ea20fcaf686a4ec3e839839d0ec581
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Apr 19 23:36:16 2017 +0000
mstarch: fixing syntax error
commit 0913585a5941991336ad853d99cb73a65bf5ea0f
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Apr 19 23:31:04 2017 +0000
mstarch: reading regexes instead of version_substring
commit ae94e4b1ca3235921ccd476c54221624302055a7
Merge: 26e660d b32ac3a
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Apr 19 16:40:50 2017 +0000
Merge branch 'master' of https://github.jpl.nasa.gov/hysds-org/tosca into v2-special-inputs
commit 26e660db15b004bb4947b65fb425b45eae97b72a
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Apr 19 16:40:19 2017 +0000
mstarch: fixing Jobs link
commit b32ac3a6b9e3d9f6a5caed13571e1c9d4b514a8e
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Apr 13 16:13:15 2017 +0000
handle "+" in dataset IDs
commit b0a6f228485746d766cc3f75f7f9ee02ded4dd18
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Tue Apr 11 16:32:43 2017 +0000
mstarch: fixing optional inputs
commit f4df4d572999bc328d8eb44f139ab1a7e5522f37
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Mon Apr 10 22:39:52 2017 +0000
mstarch: working special-inputs
commit efea12708358c7202434dddf60bd040a54230795
Merge: 12cff62 b28ed5c
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Mon Apr 10 15:44:41 2017 +0000
Merge branch 'master' of https://github.jpl.nasa.gov/hysds-org/tosca into v2-special-inputs
commit b28ed5ca892dc6b2ed261a521c989bf7f34d2b20
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Sat Apr 8 21:10:29 2017 +0000
allow for lists of LDAP groups
commit 010eb38d8d6d31621107f999adad366b2f28b060
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Apr 6 21:56:06 2017 +0000
add bellini-dav (needs to be fixed in the future)
commit 36e400343c5389ee4ae6859d599566cdeaa9895b
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Mar 24 23:39:51 2017 +0000
update Leaflet.draw to 0.4.9 (bug fixes)
commit a72ea4c9818383747e02090608bc89e2c7877833
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Mar 24 23:07:06 2017 +0000
update to leaflet-1.0.3 (bug fix release)
commit c272a8d1f274de642420ab7becc452a26978dbd1
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Mar 24 22:28:07 2017 +0000
disable showing global bbox location filter
commit 203d25d537ea887e8fd61bce45357aae1de0435a
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Mar 24 22:13:54 2017 +0000
fix refesh bug when polygon is selected
commit e4a4ec59f6ce302fdfeab21268edffc81a25799f
Merge: e1bca68 0555fdf
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Mar 14 15:30:11 2017 +0000
Merge branch 'v2'
commit 0555fdf484c99fe7d7e434df4771a5b744905827
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Mar 10 23:50:07 2017 +0000
move type facet above dataset facet
commit 9c1f60ce668c682478dfa630d78edb7ff7ac18c5
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Feb 27 22:13:02 2017 +0000
remove job submission queue and job spec
commit e7162ad4ec320ecf34e8ae06dd27b3506ffabc47
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Feb 27 21:29:04 2017 +0000
initial implementation of job iterator task call
commit e1f7034ee6eeb234d2524d76d6fadf4a6b020d6a
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Feb 27 18:44:27 2017 +0000
fix docstring and remove debug print
commit 4b66831e08ef68ba12177e86312fcad482e18a1c
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Feb 27 16:59:57 2017 +0000
optimize get_action_spec() and related library calls
Fix template values.
commit 843b46caf9f030101ce7e400acb31784167af954
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Feb 24 05:20:30 2017 +0000
undo fix
commit 5aab06dec85068df2722c1ef14300341680f5621
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Feb 24 00:29:38 2017 +0000
update query payload to handle updates in job iterator
commit 07640fa2ff95eeb678e54f24405995d2c28ebaf8
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Feb 17 00:37:00 2017 +0000
fix feature not carried over from v1: show tiles layer
commit 12cff627e917b8d643a3bbcb8daf040701854f27
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Thu Feb 16 03:11:23 2017 +0000
mstarch: removing geo validation without geo validator
commit 31794874c47a049953f14b5ad75eac141c20bf3a
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Thu Feb 16 02:42:35 2017 +0000
mstarch: woring defaults, and multiple types
commit 36fa285d0cce577e2297fb230ffbda4ea5542ac8
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Feb 15 16:03:58 2017 +0000
make extractCoords() a recursive function to handle all GeoJSON cases
commit 56c56c6b12bdf464e58ccb83c5bf53e92543cb21
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Feb 15 15:29:36 2017 +0000
add more processes to debug mode to handle REST calls to itself
commit 9cc88cf804568c8be8b2eead5084e03c627c9607
Merge: 899c610 da2bfa4
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Feb 15 00:55:58 2017 +0000
Merge branch 'v2' of https://github.jpl.nasa.gov/hysds-org/tosca into v2-special-inputs
commit 899c610944df5e1dc6dee30f649eff3fcb40ca26
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Feb 15 00:55:31 2017 +0000
mstarch: added region querying from faceted-region
commit da2bfa4387d9b80fd22705a1bea102775921b1f8
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Feb 14 19:32:24 2017 +0000
populate passthru_query and query_all; form proper query based on passthru_query
commit b7c38251d255760713b361b6f5ac9e70734e3b68
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Feb 14 14:53:45 2017 +0000
restore correct query formation
commit bb472424fc78c4ab98abbb84090158098cf0ce0a
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Feb 14 00:50:51 2017 +0000
route jobs to correct queues: job-job-iterator to system-jobs-queue and action job to selected queue
commit 3ab45a64dfe9e6c4819bc8adf466275a45ff35cb
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Mon Feb 13 22:19:14 2017 +0000
mstarch: facetview points to new JS file
commit c5b327c09fd98c7a10bf044082931906f79dff1f
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Mon Feb 13 22:18:45 2017 +0000
mstarch: replaced inline JS with JS file for action building
commit 311a95dd7dfc250884c4cfc3be5285ec503a4d1e
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Mon Feb 13 20:48:31 2017 +0000
mstarch: extracting out form generator
commit 0cc57666d53a64ce3113e9228092aed5095948f5
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Feb 13 19:09:40 2017 +0000
update debug mode to run on same port as ops web app without SSL context
commit a22302476b30030e58cabb61518669ad2a8b2b87
Merge: 731efb6 077a125
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Feb 13 15:02:20 2017 +0000
Merge branch 'v2' of https://github.jpl.nasa.gov/hysds-org/tosca into v2
commit 731efb6cefb2641caa4d6f93a09f4bf11324bc3c
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Feb 13 15:01:11 2017 +0000
fix incomplete rule
commit 077a125b737af3ffdd0080e90448d60b6eabc2b5
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Fri Feb 10 22:27:36 2017 +0000
mstarch: better queue listing. Fixes: hysds-org/general#344
commit e5e6e0742545fec29e2d51bbc5734a5ba72d03be
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Thu Feb 9 01:05:42 2017 +0000
mstarch: reading queue object now hysds-org/general#344
commit 278ffee9b576129edeea668ee93980e5e789a25e
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Feb 8 23:42:30 2017 +0000
mstarch: keeping condition box always for triggers hysds-org/general#342
commit 905179ef184a529de568b5490efe0637d02d68dd
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Feb 8 23:21:01 2017 +0000
mstarch: removing condition for non-iterative jobs for hysds-org/general#342
commit ecafee107286ce0c05dea303c7e0445f21993be4
Merge: 248436a bfe213f
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Feb 8 22:45:07 2017 +0000
Merge branch 'v2' of https://github.jpl.nasa.gov/hysds-org/tosca into v2
commit 248436a0906b1f5c407d8635961b9308ffd74627
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Feb 8 22:44:58 2017 +0000
mstarch: fixing labeling in rules interface
commit bfe213f0f3a4bd4e11931f00bcb9828fdf32aef7
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Mon Feb 6 18:24:46 2017 +0000
mstarch: abstracting templates for v2 style jobs
commit 95271f7d5796cfe0bf1650eb02c3e06515f3aa95
Merge: 9d703c3 0ab8cf1
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Feb 1 23:33:50 2017 +0000
Merge branch 'v2' of https://github.jpl.nasa.gov/hysds-org/tosca into v2
commit 9d703c3feb5852ba51fae2add9466bbd76045023
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Feb 1 23:33:43 2017 +0000
mstarch: fixing queue listing
commit 0ab8cf15fe8755ea4547f992e747ee7962c1c86f
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Mon Jan 30 15:07:15 2017 +0000
use template to specify lightweight jobs spec in tosca config
commit e2c2bc65efac69ff6286159d0ca5c3c9b5a2afb4
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Jan 26 17:56:03 2017 +0000
sort action listing
commit ceb6538bf557c9d71dadb9170150deaf727afb5c
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Jan 25 18:49:05 2017 +0000
mstarch: bug fixes to on-demand queue listing
commit 4e00f180eafb97dc9d86f0ee38ae242ee95e9ea2
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Jan 25 18:14:42 2017 +0000
mstarch: making queue listing on demand
commit e1bca68c04560b6c04916957ffde10c15e21e04a
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Jan 19 16:56:13 2017 +0000
add zip-delivery action
commit 2e2b9a0b897097e7b1e0fb284a8d8eb5f1a411e1
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Thu Jan 19 03:48:06 2017 +0000
mstarch: kwargs as JSON string
commit a37e9a48679bb8195eb4e357e9632a22fe5333a6
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Thu Jan 19 01:09:34 2017 +0000
mstarch: fixing remaining tosca bugs
commit c5365e65836bb1ab3db86a7b050634d50ed164d8
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Thu Jan 19 00:37:46 2017 +0000
mstarch: removing evil :
commit 83a93feaf4be614267e0be823115dd4fcdec45e4
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Jan 18 21:43:27 2017 +0000
mstarch: eating dog-food in tosca, and adding queue to monitor rules
commit b6f15d7f2973cdcd9d0468851f4d3eb4fa33a40a
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Jan 12 16:33:18 2017 +0000
add cleaner script for hysds_ios index
commit 072717fc6bf23461c8bc0d179927d683e4f0f1c3
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Thu Jan 12 02:08:47 2017 +0000
mstarch: queue dialog for v2 always displayed
commit 2c4e5f0627d4db122b9b1226c30bf7162c681fac
Merge: 56bf2d1 420a8fa
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Thu Jan 12 00:16:18 2017 +0000
Merge branch 'v2-job-iterator-job' of https://github.jpl.nasa.gov/hysds-org/tosca into v2
commit 420a8fa9839db486940d4ee52370669a16b4fffe
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Jan 11 23:40:16 2017 +0000
mstarch: correcting template example
commit abc968cc3fb5731864db8e7d465fa5a366e8adae
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Jan 11 23:35:40 2017 +0000
mstarch: more configuration changes
commit bb116abe54cc6277faba3182d359f3cd5c0a9a34
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Jan 11 23:26:11 2017 +0000
mstarch: removing hard-coded job-spec
commit 3442f166be6dc6eb64059e72629233e22e96fe7d
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Jan 11 23:02:58 2017 +0000
mstarch: adding mozart_url to job-iterator-job submission
commit 56287f14c5b53aa8104bdd519f5e4bf9287d0e1e
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Jan 11 22:49:27 2017 +0000
mstarch: using hysds_commons and working job-iterator-job submission
commit 05a42364e2c0a8559a525642ce69206b3ce5c24f
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Jan 11 01:34:54 2017 +0000
mstarch: making job-iterator-job configurable
commit 56bf2d18de80adc62977542e251f6abaff8c26fc
Merge: 54cf647 b3c5d51
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Jan 10 18:48:48 2017 +0000
Merge branch 'master' into v2
Conflicts:
setup.py
commit b3c5d51852fef8fe0d2f8925d34ac6fbcc4e70ef
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Jan 10 18:47:04 2017 +0000
remove celery 3.1.25 dependency link
commit 54cf647947718033d0fb35d238eade03a8cfe091
Merge: 1ed364a 885dbf0
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Jan 10 17:25:21 2017 +0000
Merge branch 'master' into v2
Conflicts:
setup.py
commit 885dbf03f9b3444e080a2b5061de33ea171eaf99
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Jan 10 17:23:27 2017 +0000
set dependency link for celery with priority queue support
commit 1ed364a7ca0ec3aa4bcfac5d8449424358fd4759
Merge: 12fee52 3900404
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Jan 10 01:28:15 2017 +0000
Merge branch 'master' into v2
commit 39004046510c862aaa2a22d75718a73416622906
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Jan 10 01:24:10 2017 +0000
move selected filters and top pager above location map
commit 12fee528dbce34ee9ac40ec0af010e7a37a69250
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Thu Jan 5 22:51:00 2017 +0000
mstarch: fixed new REST based communications
commit 66abe4bacc8c06110d5c10882aff9e3b7b1fda11
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Thu Jan 5 22:03:38 2017 +0000
mstarch: minor bug fixes
commit 84fae72c03c390ff683b17e1b8bc97f1c04235a7
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Jan 4 23:02:30 2017 +0000
mstarch: updating names for job_spec calls
commit 4a4493c181ea90613a545502538dcecc4efc956d
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Jan 4 22:51:53 2017 +0000
mstarch: fixing settings template to add GRQ_URL and minor bugs
commit 297c0088e61f3e56d799c3ab923199d8d90bae22
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Jan 4 21:59:55 2017 +0000
mstarch: tosca now uses HySDS libraries, and properly handles HySDS IOs
commit 494bc193d70cf72de1a5c661548344ad5a0f2e6a
Merge: 432f15b 0773d82
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Tue Jan 3 21:15:14 2017 +0000
Merge branch 'v2' of https://github.jpl.nasa.gov/hysds-org/tosca into v2-container
commit 432f15b95d2e802e019c020d32203b60974d7416
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Tue Jan 3 21:14:55 2017 +0000
mstarch: fixing queue duplicate listing issue
commit 63049eeec52a0f0df02ac4c3f70887ede6c4f606
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Tue Jan 3 21:13:42 2017 +0000
mstarch: plumbing rule name into tags
commit 0773d82772be92990ac8486158778d510c7e2387
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Dec 27 23:07:37 2016 +0000
handle products and browse stored in google storage
commit 4e8f4361e014939caaf1a33afa78353c7816c004
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Dec 27 18:37:54 2016 +0000
restore using raw fields
commit ee7b23bb773a56aaeb6008709c8e5dbb93986b60
Merge: 5406305 b4da0e5
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Dec 21 21:42:48 2016 +0000
Merge branch 'v2' into v2-container
commit b4da0e5381d6c6f73819a43357e2519b28e99796
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Dec 21 18:28:26 2016 +0000
mstarch+malarout: fixed missing brace in if statment causing tosca crash
commit 5406305ecd12227ac26b9dd805611553214d0577
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Dec 21 18:28:26 2016 +0000
mstarch+malarout: fixed missing brace in if statment causing tosca crash
commit 3530098029576a2d706b544f3edea1635b23ef85
Merge: fcb0a76 2ad8468
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Wed Dec 21 17:56:18 2016 +0000
Merge branch 'v2-container' of https://github.jpl.nasa.gov/hysds-org/tosca into v2-container
commit 2ad846830307c4c71ebded76583aea2b464e5a36
Merge: c7636a3 8c18bd8
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Dec 21 17:54:49 2016 +0000
Merge branch 'master' into v2
commit 8c18bd89cee4e92a7f83c947642619f0f3742561
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Dec 21 17:52:35 2016 +0000
fix issue with modal display in mapview
Override default modal width by prefix "body" selector so that custom
modal CSS takes precedence over default values specified by bootstrap.
commit c7636a3da586b584ab92116fd3dd7bb6e13e280c
Merge: fc11d11 d8d999c
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Dec 21 01:26:51 2016 +0000
Merge branch 'master' into v2
Conflicts:
tosca/static/facetview/jquery.facetview.js
commit d8d999c7b38734d9a1757ca97d073aeb2da7552f
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Dec 21 01:20:34 2016 +0000
draw bbox only if not global
commit 0f93940fd9afb5b48fe4384cd7464f81d5af1385
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Dec 21 01:04:41 2016 +0000
increase location search map size and move controls below it
commit fc11d11584f6574e4ff9fb77baf88c65f41dfd42
Merge: 376d669 098c33d
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Dec 20 03:07:55 2016 +0000
Merge branch 'master' into v2
Conflicts:
tosca/templates/facetview.html
commit 098c33d26593f6f96d20495b2078872284f9da02
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Dec 20 03:06:12 2016 +0000
add link in result leaflet popup as well
commit 376d669c24c9d7f5e443fccf5237ac7698c5d2c8
Merge: ac0e0d2 58929ff
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Dec 20 03:03:33 2016 +0000
Merge branch 'master' into v2
Conflicts:
tosca/templates/facetview.html
commit 58929ffa07b9961feb7259db2abcad2cd4b0d99f
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Dec 20 03:01:25 2016 +0000
allow click on anywhere in the footprint
commit ac0e0d2916f67b9d51746e8187abb300a28161b6
Merge: ef2eddf d65a7c1
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Dec 20 02:46:13 2016 +0000
Merge branch 'master' into v2
Conflicts:
tosca/templates/facetview.html
commit d65a7c112b2cb6b2a8b4f310cc6356fb610c42ea
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Dec 20 02:41:05 2016 +0000
link to faceted product in popup for product footprint
commit 0c3706f7bedd35a4ac52c20b48eae140135d0bca
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Dec 20 02:28:39 2016 +0000
decrease footprint shape weight to 1
commit ef2eddfe85657cb34ea38946e01ba785c6286f96
Merge: 78ea354 23c099d
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Dec 20 02:10:14 2016 +0000
Merge branch 'master' into v2
Conflicts:
tosca/templates/facetview.html
commit 23c099d96e7affac50cc98f2381f9ba1bda4db0b
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Tue Dec 20 02:05:22 2016 +0000
show footprint shape of current results page on location search map
commit 78ea354f150af61a83b800124001cf92c53a762a
Merge: 16345db 273432a
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Dec 16 20:58:00 2016 +0000
Merge branch 'master' into v2
commit 273432ab2aa462c585e35f2227f2efb6004a7ac0
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Dec 16 20:56:01 2016 +0000
increase opacity of dataset tiles in mapview
commit 16345db6cfa17261a03cc79d8f6f212984c66582
Merge: 06b0033 a4d83db
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Dec 16 20:03:45 2016 +0000
Merge branch 'master' into v2
commit a4d83db56c4d3c623589540fa6da5fb0b205751d
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Dec 16 19:59:33 2016 +0000
use arcgis basemap layer for browse leaflet and mapview
Increase size of browse leaflet in mapview's list view.
commit 06b0033be13787042cc2f5d4946479394471f7ed
Merge: 5c34903 d99d402
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Fri Dec 16 16:38:45 2016 +0000
Merge branch 'master' into v2
commit d99d402c3697f1153b23f4cffb25b60082692f13
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Dec 15 23:25:42 2016 +0000
restore previous behavior of show all tiles on mouseout
commit 5c34903fdec6d547f13ce7fd31b6e1b4ecb44c9a
Merge: 6843578 43b317a
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Dec 15 22:58:15 2016 +0000
Merge branch 'master' into v2
Conflicts:
tosca/templates/facetview-aoi_filter.html
commit 43b317a41380328aa4e1ab09332c9883e19ba0ba
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Dec 15 22:54:08 2016 +0000
disable WMTS GetCapabilities call and Alex's custom leaflet lib
Updated mapview to use latest leaflet 1.0.2.
commit e358e4f6b0cb7c786c32097772ee0012f4719973
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Dec 15 22:47:51 2016 +0000
remove all usages of old leaflet v0.6.2
commit 684357824701cf682de3b4aa02f6ba1ccbf8d8e7
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Thu Dec 15 22:41:00 2016 +0000
mstarch: adding missing +
commit 1fd7f971e10c9e59c13ed1e2e58b4298aa49bb06
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Dec 15 22:41:56 2016 +0000
add latest leaflet v1.0.2 for mapview interface
commit fcb0a76e763751b23a1a39a2d0754441410ed263
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Thu Dec 15 22:41:00 2016 +0000
mstarch: adding missing +
commit 246a015efa4b60e063734a947e11f8e816d48fdf
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Dec 15 22:33:47 2016 +0000
fix maxNativeZoom bug and remove opacity in browse leaflet
Upgrade leaflet to 1.0.2.
commit e991dbf926a37e41a2e16e0e168c668b5afa8d02
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Dec 15 22:12:19 2016 +0000
detect if tileLayers is undefined
commit 1a2f7242e850be440d1100d3dd3d2cad752e4cd5
Merge: 7b115d8 62bdfe6
Author: M Starch <Michael.D.Starch@jpl.nasa.gov>
Date: Thu Dec 15 22:08:39 2016 +0000
Merge branch 'v2-container' of https://github.jpl.nasa.gov/hysds-org/tosca into v2-container
commit 62bdfe647eba694898747eca4c4101cb9fa5b0ff
Merge: af42ba0 78ef26e
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Dec 15 19:28:07 2016 +0000
Merge branch 'master' into v2
commit 78ef26ebeb2706323e748b44a351dcc9ca0ba5e3
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Thu Dec 15 19:25:37 2016 +0000
add ability to show multiple layers in dataset's tiles directory
commit af42ba0081ea892f917310f1577aa778af9f515d
Merge: e1b58d6 f6b701a
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Dec 14 23:50:59 2016 +0000
Merge branch 'master' into v2
commit f6b701ad69a1b4199ba9723bcef6486749456f34
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Dec 14 23:49:31 2016 +0000
allow faceting on single dataset by clicking on ID in mapview tooltip
commit e1b58d63099c838ec4f954aa1d5be445958aa4f8
Merge: 7e54a63 dc2018b
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Dec 14 22:58:48 2016 +0000
Merge branch 'master' into v2
commit dc2018b3923ea998b8d710b51eb87c3bb566e499
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Dec 14 22:54:42 2016 +0000
remove link to show browse images if clicked
commit 7e54a637fe658cfb7b7cdfb03997477a2738e7c4
Merge: 504193b 3e5fc9c
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Dec 14 22:39:39 2016 +0000
Merge branch 'master' into v2
commit 3e5fc9cbab57ff73d1d61e34a60756daebf588c3
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Dec 14 22:36:41 2016 +0000
lazy load browse images in mapview front card
Restructure result set format for future implementation of excel view.
commit e5a71a1aed82368cb8c09a5bed731e819d4b2430
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Dec 14 16:37:22 2016 +0000
check that tile for imgid is defined
commit 6c572e3a3052ffd52d51c6c31c00b5050cf4338b
Merge: 0198912 cb3b699
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Dec 14 06:41:17 2016 +0000
Merge branch 'master' of github.jpl.nasa.gov:hysds-org/tosca
commit 504193b4b576c8e2dac833c9de172237c7c845ea
Merge: da44f45 a3e68d7
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Dec 14 06:35:20 2016 +0000
Merge branch 'v2-container' into v2
commit da44f45649bed069c05b0ee068db5219a90a1077
Merge: e545f23 cb3b699
Author: gmanipon <gmanipon@jpl.nasa.gov>
Date: Wed Dec 14 06:32:41 2016 +0000
Merge branch 'master' into test-merge