forked from juancho85/opencast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NOTICES
1579 lines (1258 loc) · 101 KB
/
NOTICES
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
Copyright <2015>, The Apereo Foundation
This project includes software developed by The Apereo Foundation.
http://www.apereo.org/
Licensed under the Educational Community License, Version 2.0
(the "License"); you may not use this software except in compliance
with the License. You may obtain a copy of the License at:
http://opensource.org/licenses/ecl2.txt
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Portions of the Matterhorn source code are Copyright (c) University of
California Berkeley and were originally developed and distributed by University
of California Berkeley, including contributions it licensed from others under
one or more contributor license agreements. This source code is licensed by the
Apereo Foundation under the Educational Community License, Version 2.0, unless
it is already directly licensed to the Apereo Foundation under one or more
contributor license agreements by the copyright holder.
Additional third-party dependencies defined in Maven pom.xml files are pulled
from remote repositories at build-time and then deployed within the Matterhorn
bundle. All third party libraries and tools included in the source code are
distributed under licenses that are compatible with ECL 2.0.
List of Included Third-Party Dependencies
-----------------------------------------
modules/matterhorn-admin-ui-ng/src/main/webapp/css/vendor/chosen.less
Chosen, a Select Box Enhancer for jQuery and Prototype
by Patrick Filler for Harvest, http://getharvest.com
Copyright (c) 2011 - 2016 Harvest http://getharvest.com
MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
modules/matterhorn-admin-ui-ng/src/main/webapp/lib/angular/*
AngularJS v1.3.6
(c) 2010-2014 Google, Inc. http://angularjs.org
License: MIT
modules/matterhorn-admin-ui-ng/src/main/webapp/lib/angular-file-upload/*
Copyright (c) 2013 danialfarid
The MIT License (MIT)
modules/matterhorn-admin-ui-ng/src/main/webapp/lib/angular-sortable.js
UI.Sortable
https://github.com/angular-ui/ui-sortable
Copyright (c) 2012 the AngularUI Team, http://angular-ui.github.com
MIT License
modules/matterhorn-admin-ui-ng/src/main/webapp/lib/backbone-1.1.0.js
Backbone.js 1.1.0
(c) 2010-2011 Jeremy Ashkenas, DocumentCloud Inc.
(c) 2011-2013 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
Backbone may be freely distributed under the MIT license.
http://backbonejs.org
modules/matterhorn-admin-ui-ng/src/main/webapp/lib/chosen.js
modules/matterhorn-admin-ui-ng/src/main/webapp/lib/chosen.jquery.*
Chosen, a Select Box Enhancer for jQuery and Prototype
by Patrick Filler for Harvest, http://getharvest.com
Version 1.6.2
Copyright (c) 2011 - 2016 Harvest http://getharvest.com
MIT License
modules/matterhorn-admin-ui-ng/src/main/webapp/lib/angular-chosen.js
modules/matterhorn-admin-ui-ng/src/main/webapp/lib/angular-chosen.min.js
Angular Binding for Harvest Chosen
Version 1.6.0
Copyright (c) 2013 Localytics http://www.localytics.com
MIT License
modules/matterhorn-admin-ui-ng/src/main/webapp/lib/datepicker/*
jQuery UI - v1.10.3 - 2013-12-13
http://jqueryui.com
Copyright 2013 jQuery Foundation and other contributors; Licensed MIT
modules/matterhorn-admin-ui-ng/src/main/webapp/lib/font-awesome/*
Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome
License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
modules/matterhorn-admin-ui-ng/src/main/webapp/lib/google-fonts/*
Open Sans
Steve Matteson
https://www.google.com/fonts/specimen/Open+Sans
Apache License, version 2.0
modules/matterhorn-admin-ui-ng/src/main/webapp/lib/javascript-md5/*
JavaScript MD5
https://github.com/blueimp/JavaScript-MD5
Copyright 2011, Sebastian Tschan https://blueimp.net
Licensed under the MIT license:
http://www.opensource.org/licenses/MIT
modules/matterhorn-admin-ui-ng/src/main/webapp/lib/jquery-1.10.2.js
jQuery JavaScript Library v1.10.2
http://jquery.com/
Copyright 2005, 2013 jQuery Foundation, Inc. and other contributors
Released under the MIT license
http://jquery.org/license
modules/matterhorn-admin-ui-ng/src/main/webapp/lib/jquery-ui.js
jQuery UI - v1.10.4 - 2014-01-17
http://jqueryui.com
Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */
modules/matterhorn-admin-ui-ng/src/main/webapp/lib/moment.min.js
version : 2.9.0
authors : Tim Wood, Iskren Chernev, Moment.js contributors
license : MIT
momentjs.com
modules/matterhorn-admin-ui-ng/src/main/webapp/lib/underscore-1.5.2.js
Underscore.js 1.5.2
http://underscorejs.org
(c) 2009-2013 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
Underscore may be freely distributed under the MIT license.
modules/matterhorn-admin-ui-ng/src/main/webapp/lib/video-js/*
Video.js v4.11.2
Copyright 2014 Brightcove, Inc.
Licensed under the Apache License, Version 2.0
modules/matterhorn-admin-ui-ng/src/main/webapp/scripts/shared/directives/opencastScrollGlue.js
Adapted from AngularJS Scroll Glue v2.0.6
https://github.com/Luegg/angularjs-scroll-glue
(c) 2013 Lukas Wegmann
Licensed under the MIT license
modules/matterhorn-admin-ui-ng/src/test/resources/test/lib/angular/angular-scenario.js
Copyright 2005, 2013 jQuery Foundation, Inc. and other contributors
Released under the MIT license
http://jquery.org/license
modules/matterhorn-admin-ui-ng/src/test/resources/test/lib/jasmine-jquery.js
Jasmine-jQuery: a set of jQuery helpers for Jasmine tests.
Version 2.0.5
https://github.com/velesin/jasmine-jquery
Copyright (c) 2010-2014 Wojciech Zawistowski, Travis Jeffery
MIT License
modules/matterhorn-admin-ui-ng/src/test/resources/test/lib/jquery-deparam.js
Deparam is the inverse of jquery's $.param method
Extracted $.deparam from Ben Alman's jquery-bbq with license info included
https://github.com/AceMetrix/jquery-deparam
MIT License
modules/matterhorn-common/src/test/resources/InfusionAll.js
jQuery JavaScript Library v1.3.2
http://jquery.com/
Copyright (c) 2009 John Resig
Dual licensed under the MIT and GPL licenses.
modules/matterhorn-distribution-service-aws-s3
Amazon AWS SDK for Java
Version 1.11.49_1
https://github.com/aws/aws-sdk-java
Licensed under Apache 2 (https://github.com/aws/aws-sdk-java/blob/master/LICENSE.txt)
modules/matterhorn-engage-theodul-core/src/main/resources/ui/js/lib/backbone.js
Backbone v1.2.3 (http://backbonejs.org)
Copyright 2010-2016 Jeremy Ashkenas, DocumentCloud
Licensed under MIT (https://github.com/jashkenas/backbone/blob/master/LICENSE)
modules/matterhorn-engage-theodul-core/src/main/resources/ui/js/lib/basil.js
Basil v0.4.0 (http://wisembly.github.io/basil.js)
Copyright 2014-2015 Wisembly and contributors
Licensed under MIT (https://github.com/Wisembly/basil.js/blob/master/LICENCE.md)
modules/matterhorn-engage-theodul-core/src/main/resources/ui/js/lib/bootbox.js
Bootbox 4.4.0 (https://github.com/makeusabrew/bootbox)
Copyright 2011-2015 by Nick Payne
Licensed under MIT (http://bootboxjs.com/license.txt)
modules/matterhorn-engage-theodul-core/src/main/resources/ui/css/bootstrap/*
modules/matterhorn-engage-theodul-core/src/main/resources/ui/js/lib/bootstrap.js
Bootstrap v3.3.6 (http://getbootstrap.com)
Copyright 2011-2015 Twitter, Inc.
Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
modules/matterhorn-engage-theodul-core/src/main/resources/ui/js/lib/bower.js
Bower 1.0.0 (https://github.com/ded/bowser)
Copyright 2015 Dustin Diaz
Licensed under MIT (https://github.com/ded/bowser/blob/master/LICENSE)
modules/matterhorn-engage-theodul-core/src/main/resources/ui/js/lib/jquery.js
jQuery v2.2.0 (http://jquery.com)
Copyright jQuery Foundation and other contributors
Licensed under MIT (https://github.com/jquery/jquery/blob/master/LICENSE.txt)
modules/matterhorn-engage-theodul-core/src/main/resources/ui/js/lib/jquery-ui.js
jQuery UI v1.11.4 (http://jqueryui.com)
Copyright jQuery Foundation and other contributors
Licensed under MIT (https://github.com/jquery/jquery-ui/blob/master/LICENSE.txt)
modules/matterhorn-engage-theodul-core/src/main/resources/ui/js/lib/moment.js
Moment v2.11.1 (momentjs.com)
Copyright 2011-2016 Tim Wood, Iskren Chernev, Moment.js contributors
Licensed under MIT (https://github.com/jquery/jquery/blob/master/LICENSE.txt)
modules/matterhorn-engage-theodul-core/src/main/resources/ui/js/lib/mousetrap.js
Mousetrap v1.5.3 (http://craig.is/killing/mice)
Copyright 2015 Craig Campbell
Licensed under MIT
modules/matterhorn-engage-theodul-core/src/main/resources/ui/js/lib/require.js
RequireJS v2.1.22 (http://requirejs.org)
Copyright 2010-2015, The Dojo Foundation
Licensed under the "New" BSD License (https://github.com/jrburke/requirejs/blob/master/LICENSE)
modules/matterhorn-engage-theodul-core/src/main/resources/ui/js/lib/require.js
RequireJS v1.8.3 (http://underscorejs.org)
Copyright 2009-2015 Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
Licensed under MIT (https://github.com/jashkenas/underscore/blob/master/LICENSE)
modules/matterhorn-engage-theodul-core/src/main/resources/ui/js/lib/mousewheel.js
Requires: jQuery 1.2.2+
Copyright (c) 2013 Brandon Aaron (http://brandon.aaron.sh)
Licensed under the MIT License
modules/matterhorn-engage-theodul-plugin-archetype/src/main/resources/archetype-resources/src/test/resources/js/lib/require.js
RequireJS 2.1.5
Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved.
Available via the MIT or new BSD license.
http://github.com/jrburke/requirejs
modules/matterhorn-engage-theodul-plugin-controls/src/main/resources/static/lib/jqueryui/*
jQuery UI v1.11.4 (http://jqueryui.com)
Copyright jQuery Foundation and other contributors
Licensed under MIT (https://github.com/jquery/jquery-ui/blob/master/LICENSE.txt)
modules/matterhorn-engage-theodul-plugin-controls/src/main/resources/static/lib/jquery.ui.touch-punch.min.js
jQuery UI Touch Punch 0.2.3
http://touchpunch.furf.com/
Copyright 2011–2014, Dave Furfero
Dual licensed under the MIT or GPL Version 2 licenses.
modules/matterhorn-engage-theodul-plugin-controls/src/main/resources/static/lib/hammer.min.js
Hammer.JS - v2.0.6 - 2016-01-06
http://hammerjs.github.io/
Copyright (c) 2016 Jorik Tangelder
Licensed under MIT (https://github.com/hammerjs/hammer.js/blob/master/LICENSE.md)
modules/matterhorn-engage-theodul-plugin-controls/src/main/resources/static/lib/jquery.hammer.js
jquery.hammer.js - v2.0.0
https://github.com/hammerjs/jquery.hammer.js
Copyright (c) 2014 Hammer.js
Licensed under MIT (https://github.com/hammerjs/jquery.hammer.js/blob/master/LICENSE)
modules/matterhorn-engage-theodul-plugin-controls/src/test/resources/js/lib/bootstrap.js
Bootstrap v3.2.0 (http://getbootstrap.com)
Copyright 2011-2014 Twitter, Inc.
Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
modules/matterhorn-engage-theodul-plugin-controls/src/test/resources/js/lib/mousetrap.js
Simple keyboard shortcut library for Javascript
Copyright 2013 Craig Campbell
Licensed under the Apache License, Version 2.0
Version 1.4.6
http://craig.is/killing/mice
modules/matterhorn-engage-theodul-plugin-controls/src/test/resources/js/lib/require.js
RequireJS 2.1.5
Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved.
Available via the MIT or new BSD license.
http://github.com/jrburke/requirejs
modules/matterhorn-engage-theodul-plugin-custom-mhConnection/src/test/resources/js/lib/bootstrap.js
Bootstrap v3.2.0 (http://getbootstrap.com)
Copyright 2011-2014 Twitter, Inc.
Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
modules/matterhorn-engage-theodul-plugin-custom-mhConnection/src/test/resources/js/lib/mousetrap.js
Simple keyboard shortcut library for Javascript
Copyright 2013 Craig Campbell
Licensed under the Apache License, Version 2.0
Version 1.4.6
http://craig.is/killing/mice
modules/matterhorn-engage-theodul-plugin-custom-mhConnection/src/test/resources/js/lib/require.js
RequireJS 2.1.5
Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved.
Available via the MIT or new BSD license.
http://github.com/jrburke/requirejs
modules/matterhorn-engage-theodul-plugin-custom-notifications/src/main/resources/static/lib/alertify/alertify.js
AlertifyJS v0.13.12 (https://alertifyjs.org)
Copyright 2009-2014 Stuart Knightley, David Duponchel, Franz Buchinger, António Afonso
Licensed under MIT license (https://github.com/alertifyjs/alertify.js/blob/master/LICENSE.md)
modules/matterhorn-engage-theodul-plugin-custom-notifications/src/test/resources/js/lib/bootstrap.js
Bootstrap v3.2.0 (http://getbootstrap.com)
Copyright 2011-2014 Twitter, Inc.
Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
modules/matterhorn-engage-theodul-plugin-custom-notifications/src/test/resources/js/lib/mousetrap.js
Simple keyboard shortcut library for Javascript
Copyright 2013 Craig Campbell
Licensed under the Apache License, Version 2.0
Version 1.4.6
http://craig.is/killing/mice
modules/matterhorn-engage-theodul-plugin-custom-notifications/src/test/resources/js/lib/require.js
RequireJS 2.1.5
Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved.
Available via the MIT or new BSD license.
http://github.com/jrburke/requirejs
modules/matterhorn-engage-theodul-plugin-custom-usertracking/src/test/resources/js/lib/bootstrap.js
Bootstrap v3.2.0 (http://getbootstrap.com)
Copyright 2011-2014 Twitter, Inc.
Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
modules/matterhorn-engage-theodul-plugin-custom-usertracking/src/test/resources/js/lib/mousetrap.js
Simple keyboard shortcut library for Javascript
Copyright 2013 Craig Campbell
Licensed under the Apache License, Version 2.0
Version 1.4.6
http://craig.is/killing/mice
modules/matterhorn-engage-theodul-plugin-custom-usertracking/src/test/resources/js/lib/require.js
RequireJS 2.1.5
Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved.
Available via the MIT or new BSD license.
http://github.com/jrburke/requirejs
modules/matterhorn-engage-theodul-plugin-description/src/test/resources/js/lib/bootstrap.js
Bootstrap v3.2.0 (http://getbootstrap.com)
Copyright 2011-2014 Twitter, Inc.
Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
modules/matterhorn-engage-theodul-plugin-description/src/test/resources/js/lib/mousetrap.js
Simple keyboard shortcut library for Javascript
Copyright 2013 Craig Campbell
Licensed under the Apache License, Version 2.0
Version 1.4.6
http://craig.is/killing/mice
modules/matterhorn-engage-theodul-plugin-description/src/test/resources/js/lib/require.js
RequireJS 2.1.5
Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved.
Available via the MIT or new BSD license.
http://github.com/jrburke/requirejs
modules/matterhorn-engage-theodul-plugin-tab-description/src/test/resources/js/lib/bootstrap.js
Bootstrap v3.2.0 (http://getbootstrap.com)
Copyright 2011-2014 Twitter, Inc.
Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
modules/matterhorn-engage-theodul-plugin-tab-description/src/test/resources/js/lib/mousetrap.js
Simple keyboard shortcut library for Javascript
Copyright 2013 Craig Campbell
Licensed under the Apache License, Version 2.0
Version 1.4.6
http://craig.is/killing/mice
modules/matterhorn-engage-theodul-plugin-tab-description/src/test/resources/js/lib/require.js
RequireJS 2.1.5
Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved.
Available via the MIT or new BSD license.
http://github.com/jrburke/requirejs
modules/matterhorn-engage-theodul-plugin-tab-shortcuts/src/test/resources/js/lib/bootstrap.js
Bootstrap v3.2.0 (http://getbootstrap.com)
Copyright 2011-2014 Twitter, Inc.
Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
modules/matterhorn-engage-theodul-plugin-tab-shortcuts/src/test/resources/js/lib/mousetrap.js
Simple keyboard shortcut library for Javascript
Copyright 2013 Craig Campbell
Licensed under the Apache License, Version 2.0
Version 1.4.6
http://craig.is/killing/mice
modules/matterhorn-engage-theodul-plugin-tab-shortcuts/src/test/resources/js/lib/require.js
RequireJS 2.1.5
Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved.
Available via the MIT or new BSD license.
http://github.com/jrburke/requirejs
modules/matterhorn-engage-theodul-plugin-tab-slidetext/src/test/resources/js/lib/bootstrap.js
Bootstrap v3.2.0 (http://getbootstrap.com)
Copyright 2011-2014 Twitter, Inc.
Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
modules/matterhorn-engage-theodul-plugin-tab-slidetext/src/test/resources/js/lib/mousetrap.js
Simple keyboard shortcut library for Javascript
Copyright 2013 Craig Campbell
Licensed under the Apache License, Version 2.0
Version 1.4.6
http://craig.is/killing/mice
modules/matterhorn-engage-theodul-plugin-tab-slidetext/src/test/resources/js/lib/require.js
RequireJS 2.1.5
Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved.
Available via the MIT or new BSD license.
http://github.com/jrburke/requirejs
modules/matterhorn-engage-theodul-plugin-timeline-statistics/src/main/resources/static/lib/Chart.js
Chart.js
http://chartjs.org/
Version: 1.0.1-beta.4
Copyright 2014 Nick Downie
Released under the MIT license
modules/matterhorn-engage-theodul-plugin-timeline-statistics/src/test/resources/js/lib/bootstrap.js
Bootstrap v3.2.0 (http://getbootstrap.com)
Copyright 2011-2014 Twitter, Inc.
Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
modules/matterhorn-engage-theodul-plugin-timeline-statistics/src/test/resources/js/lib/Chart.min.js
Chart.js
http://chartjs.org/
Copyright 2013 Nick Downie
Released under the MIT license
https://github.com/nnnick/Chart.js
modules/matterhorn-engage-theodul-plugin-timeline-statistics/src/test/resources/js/lib/mousetrap.js
Simple keyboard shortcut library for Javascript
Copyright 2013 Craig Campbell
Licensed under the Apache License, Version 2.0
Version 1.4.6
http://craig.is/killing/mice
modules/matterhorn-engage-theodul-plugin-timeline-statistics/src/test/resources/js/lib/require.js
RequireJS 2.1.5
Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved.
Available via the MIT or new BSD license.
http://github.com/jrburke/requirejs
modules/matterhorn-engage-theodul-plugin-video-videojs/src/main/resources/static/lib/synchronize.js
Synchronize.js v1.2.5 (https://github.com/CallToPower/Synchronize.js)
Copyright (c) 2013-2016, Denis Meyer
Licensed under 3-clause BSD License (https://github.com/CallToPower/Synchronize.js/blob/master/LICENSE.txt)
modules/matterhorn-engage-theodul-plugin-video-videojs/src/main/resources/static/lib/videojs/video.js
Video.js v5.6.0 (http://videojs.com)
Copyright Brightcove, Inc.
Licensed under the Apache License, Version 2.0 (https://github.com/videojs/video.js/blob/master/LICENSE)
modules/matterhorn-engage-theodul-plugin-video-videojs/src/main/resources/static/lib/videojs/videojs.hls.min.js
videojs-contrib-hls v1.3.7 (http://videojs.github.io/videojs-contrib-hls)
Copyright 2016 Brightcove
Licensed under the Apache License, Version 2.0 (https://github.com/videojs/videojs-contrib-hls/blob/master/LICENSE)
modules/matterhorn-engage-theodul-plugin-video-videojs/src/main/resources/static/lib/videojs/videojs-media-sources.min.js
videojs-media-sources v2.4.5 (https://github.com/videojs/videojs-contrib-media-sources)
Copyright 2016 Brightcove
Licensed under the Apache License, Version 2.0 (https://github.com/videojs/videojs-contrib-media-sources)
modules/matterhorn-engage-theodul-plugin-video-videojs/src/test/resources/js/lib/bootstrap.js
Bootstrap v3.2.0 (http://getbootstrap.com)
Copyright 2011-2014 Twitter, Inc.
Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
modules/matterhorn-engage-theodul-plugin-video-videojs/src/test/resources/js/lib/mousetrap.js
Simple keyboard shortcut library for Javascript
Copyright 2013 Craig Campbell
Licensed under the Apache License, Version 2.0
Version 1.4.6
http://craig.is/killing/mice
modules/matterhorn-engage-theodul-plugin-video-videojs/src/test/resources/js/lib/require.js
RequireJS 2.1.5
Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved.
Available via the MIT or new BSD license.
http://github.com/jrburke/requirejs
modules/matterhorn-engage-ui/src/main/resources/ui/css/bootstrap.*
Bootstrap v3.3.2 (http://getbootstrap.com)
Copyright 2011-2015 Twitter, Inc.
Licensed under MIT
modules/matterhorn-admin-ui-ng/src/main/webapp/lib/angular-wizard/.*
angular-wizard 0.6.1 (https://github.com/mgonto/angular-wizard)
Copyright (c) 2013-2014 Martin Gontovnikas http://www.gon.to/
Licensed under MIT
modules/matterhorn-admin-ui-ng/bower_components/angular-hotkeys/.*
angular-wizard 0.6.1 (https://github.com/chieffancypants/angular-hotkeys)
Copyright (c) 2014 Wes Cruver
Licensed under MIT
modules/matterhorn-engage-ui/src/main/resources/ui/js/alertify/alertify.js
AlertifyJS - v0.13.12
Copyright Fabien Doiron <[email protected]>
MIT license
modules/matterhorn-engage-ui/src/main/resources/ui/js/jquery-localize.min.js
jquery.localize.js
Copyright (c) Jim Garvin (http://github.com/coderifous), 2008.
Dual licensed under the GPL (http://dev.jquery.com/browser/trunk/jquery/GPL-LICENSE.txt)
and MIT (http://dev.jquery.com/browser/trunk/jquery/MIT-LICENSE.txt) licenses.
modules/matterhorn-engage-ui/src/main/resources/ui/js/bootstrap-accessibility.min.js
bootstrap-accessibility-plugin - v1.0.4 - 2014-11-03
https://github.com/paypal/bootstrap-accessibility-plugin
Copyright (c) 2014 PayPal Accessibility Team
Licensed BSD
modules/matterhorn-engage-ui/src/main/resources/ui/js/bootstrap.min.js
Bootstrap v3.3.2 (http://getbootstrap.com)
Copyright 2011-2015 Twitter, Inc.
Licensed under MIT
modules/matterhorn-engage-ui/src/main/resources/ui/js/jquery.liveSearch.js
Live Search 2.0
http://andreaslagerkvist.com/jquery/live-search/
2008 Andreas Lagerkvist (andreaslagerkvist.com)
http://creativecommons.org/licenses/by/3.0/
modules/matterhorn-engage-ui/src/main/resources/ui/js/seedrandom.js
seedrandom.js version 2.3.4
Author: David Bau
Copyright (c)2014 David Bau.
MIT License
modules/matterhorn-ingest-service-impl/src/test/qunit/qunit/qunit.js
QUnit - A JavaScript Unit Testing Framework
http://docs.jquery.com/QUnit
Copyright (c) 2009 John Resig, Jörn Zaefferer
Dual licensed under the MIT and GPL licenses
modules/matterhorn-kernel/src/test/resources/InfusionAll.js
jQuery JavaScript Library v1.3.2
http://jquery.com/
Copyright (c) 2009 John Resig
Dual licensed under the MIT and GPL licenses.
modules/matterhorn-videoeditor-workflowoperation/src/main/resources/ui/operation/editor/js/ObjTree.js
XML.ObjTree -- XML source code from/to JavaScript object like E4X
Author: Yusuke Kawasaki http://www.kawa.net/
Copyright (c) 2005-2006 Yusuke Kawasaki. All rights reserved.
Artistic license.
modules/matterhorn-videoeditor-workflowoperation/src/main/resources/ui/operation/editor/js/synchronize-min.js
Synchronize.js
Copyright (c) 2013-2015, Denis Meyer, [email protected]
3-clause BSD License
shared-resources/css/jquery-ui/*
jQuery UI CSS Framework
Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
Dual licensed under the MIT or GPL Version 2 licenses.
http://jquery.org/license
shared-resources/css/player-multi-hybrid/opencast-reset.css
YUI fonts, reset and base
Copyright (c) 2008, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.5.2
shared-resources/js/bridge/lib/FABridge.js
Copyright 2006 Adobe Systems Incorporated
MIT License
shared-resources/js/ext/trimpath.js
TrimPath Template. Release 1.0.38.
Copyright (C) 2004, 2005 Metaha.
TrimPath Template is licensed under the GNU General Public License
and the Apache License, Version 2.0
shared-resources/js/jquery/jquery-ui.js
jQuery UI 1.8.18
Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
Dual licensed under the MIT or GPL Version 2 licenses.
http://docs.jquery.com/UI
shared-resources/js/jquery/plugins/jARIA.js
Copyright 2007 Chris Hoffman
This software is dual licensed under the MIT (MIT-LICENSE.txt)
and GPL (GPL-LICENSE.txt) licenses.
shared-resources/js/jquery/plugins/jquery.cookie.js
jQuery Cookie plugin
Copyright (c) 2010 Klaus Hartl (stilbuero.de)
Dual licensed under the MIT and GPL licenses:
shared-resources/js/jquery/plugins/jquery.crypt.js
jQuery Cryptography Plug-in
version: 1.0.0 (24 Sep 2008)
copyright 2008 Scott Thompson http://www.itsyndicate.ca - [email protected]
http://www.opensource.org/licenses/mit-license.php
shared-resources/js/jquery/plugins/jquery-ui-timepicker-addon.js
jQuery timepicker addon
Version 1.0.2
Copyright 2012 Trent Richardson
You may use this project under MIT or GPL licenses.
shared-resources/js/jquery/plugins/jquery.wysiwyg.js
WYSIWYG - jQuery plugin 0.6
Copyright (c) 2008-2009 Juan M Martinez
http://plugins.jquery.com/project/jWYSIWYG
Dual licensed under the MIT and GPL licenses:
shared-resources/js/jquery/plugins/jquery.xslt.js
jquery.xslt.js
Copyright (c) 2005-2008 Johann Burkard (<mailto:[email protected]>)
<http://eaio.com>
MIT License
shared-resources/js/jquery/plugins/jquery.xslt.new.js
XSLT jQuery Plugin - Copyright (C) 2007, Jorrit Jongma (Chainfire)
Version: 0.70
@update 7.2.2013 by Martin Abel ([email protected]): Change callback function order
Homepage: http://www.jongma.org/webtools/jquery/
License: MIT / Public Domain
List of Third-Party Dependencies Included with Maven
----------------------------------------------------
assemblies
GroupId ArtifactId License
org.apache.karaf.features framework Apache License, Version 2.0
org.apache.karaf.features standard Apache License, Version 2.0
org.apache.karaf.tooling karaf-maven-plugin Apache License, Version 2.0
org.apache.maven.plugins maven-resources-plugin Apache License, Version 2.0
org.codehaus.mojo build-helper-maven-plugin MIT License
matterhorn-admin-ui-ng
GroupId ArtifactId License
com.entwinemedia.common functional Apache License, Version 2.0
com.jayway.restassured rest-assured Apache 2.0
javax.ws.rs jsr311-api -
javax.xml.bind jaxb-api CDDL 1.1-GPL2 w/ CPE
net.fortuna.ical4j ical4j -
org.codehaus.groovy groovy-all The Apache Software License, Version 2.0
org.slf4j slf4j-api MIT License
matterhorn-annotation-impl
GroupId ArtifactId License
commons-io commons-io The Apache Software License, Version 2.0
javax.ws.rs jsr311-api -
javax.xml.bind jaxb-api CDDL 1.1-GPL2 w/ CPE
org.eclipse.persistence javax.persistence Eclipse Public License v1.0-Eclipse Distribution License v. 1.0
org.eclipse.persistence org.eclipse.persistence.core Eclipse Public License - v 1.0
org.slf4j slf4j-api MIT License
matterhorn-archive-api
GroupId ArtifactId License
org.slf4j slf4j-api MIT License
matterhorn-archive-base
GroupId ArtifactId License
com.google.guava guava The Apache Software License, Version 2.0
commons-io commons-io The Apache Software License, Version 2.0
javax.ws.rs jsr311-api -
javax.xml.bind jaxb-api CDDL 1.1-GPL2 w/ CPE
org.apache.solr solr-core Apache 2
org.apache.solr solr-solrj Apache 2
org.eclipse.persistence javax.persistence Eclipse Public License v1.0-Eclipse Distribution License v. 1.0
org.slf4j slf4j-api MIT License
matterhorn-archive-schema
GroupId ArtifactId License
com.google.guava guava The Apache Software License, Version 2.0
commons-io commons-io The Apache Software License, Version 2.0
javax.ws.rs jsr311-api -
javax.xml.bind jaxb-api CDDL 1.1-GPL2 w/ CPE
org.apache.solr solr-core Apache 2
org.apache.solr solr-solrj Apache 2
org.eclipse.persistence javax.persistence Eclipse Public License v1.0-Eclipse Distribution License v. 1.0
org.slf4j slf4j-api MIT License
matterhorn-authorization-manager
GroupId ArtifactId License
commons-io commons-io The Apache Software License, Version 2.0
javax.ws.rs jsr311-api -
javax.xml.bind jaxb-api CDDL 1.1-GPL2 w/ CPE
org.apache.servicemix.bundles org.apache.servicemix.bundles.quartz The Apache Software License, Version 2.0
org.eclipse.persistence javax.persistence Eclipse Public License v1.0-Eclipse Distribution License v. 1.0
matterhorn-authorization-xacml
GroupId ArtifactId License
com.jayway.restassured rest-assured Apache 2.0
commons-io commons-io The Apache Software License, Version 2.0
net.sf.saxon Saxon-HE Mozilla Public License Version 2.0
org.apache.cxf cxf-bundle-jaxrs The Apache Software License, Version 2.0
org.jboss.security jboss-xacml lgpl
matterhorn-caption-api
GroupId ArtifactId License
javax.ws.rs jsr311-api -
matterhorn-caption-impl
GroupId ArtifactId License
javax.ws.rs jsr311-api -
org.slf4j slf4j-api MIT License
matterhorn-caption-remote
GroupId ArtifactId License
commons-io commons-io The Apache Software License, Version 2.0
javax.ws.rs jsr311-api -
javax.xml.bind jaxb-api CDDL 1.1-GPL2 w/ CPE
org.apache.httpcomponents httpclient-osgi Apache License, Version 2.0
org.apache.httpcomponents httpcore-osgi Apache License, Version 2.0
org.eclipse.persistence javax.persistence Eclipse Public License v1.0-Eclipse Distribution License v. 1.0
org.slf4j slf4j-api MIT License
matterhorn-capture-admin-service-api
GroupId ArtifactId License
org.apache.commons commons-lang3 The Apache Software License, Version 2.0
matterhorn-capture-admin-service-impl
GroupId ArtifactId License
com.google.guava guava The Apache Software License, Version 2.0
commons-io commons-io The Apache Software License, Version 2.0
org.apache.commons commons-lang3 The Apache Software License, Version 2.0
javax.ws.rs jsr311-api -
javax.xml.bind jaxb-api CDDL 1.1-GPL2 w/ CPE
org.apache.servicemix.bundles org.apache.servicemix.bundles.xerces The Apache Software License, Version 2.0
org.eclipse.persistence javax.persistence Eclipse Public License v1.0-Eclipse Distribution License v. 1.0
org.slf4j slf4j-api MIT License
matterhorn-comments
GroupId ArtifactId License
com.googlecode.json-simple json-simple The Apache Software License, Version 2.0
commons-codec commons-codec The Apache Software License, Version 2.0
commons-collections commons-collections The Apache Software License, Version 2.0
commons-io commons-io The Apache Software License, Version 2.0
org.apache.commons commons-lang3 The Apache Software License, Version 2.0
javax.xml.bind jaxb-api CDDL 1.1-GPL2 w/ CPE
org.apache.cxf cxf-bundle-jaxrs The Apache Software License, Version 2.0
org.eclipse.persistence javax.persistence Eclipse Public License v1.0-Eclipse Distribution License v. 1.0
org.slf4j slf4j-api MIT License
matterhorn-common
GroupId ArtifactId License
c3p0 c3p0 GNU LESSER GENERAL PUBLIC LICENSE
com.entwinemedia.common functional Apache License, Version 2.0
com.google.code.findbugs jsr305 The Apache Software License, Version 2.0
com.google.guava guava The Apache Software License, Version 2.0
com.jayway.restassured rest-assured Apache 2.0
com.sun.jersey jersey-bundle CDDL 1.1-GPL2 w/ CPE
commons-codec commons-codec The Apache Software License, Version 2.0
commons-collections commons-collections The Apache Software License, Version 2.0
commons-fileupload commons-fileupload The Apache Software License, Version 2.0
commons-io commons-io The Apache Software License, Version 2.0
org.apache.commons commons-lang3 The Apache Software License, Version 2.0
de.schlichtherle truezip Apache License, Version 2.0
javax.ws.rs jsr311-api -
javax.xml.bind jaxb-api CDDL 1.1-GPL2 w/ CPE
joda-time joda-time Apache 2
org.apache.commons com.springsource.org.apache.commons.beanutils The Apache Software License, Version 2.0
org.apache.httpcomponents httpclient-osgi Apache License, Version 2.0
org.codehaus.jettison jettison Apache License, Version 2.0
org.eclipse.persistence javax.persistence Eclipse Public License v1.0-Eclipse Distribution License v. 1.0
org.eclipse.persistence org.eclipse.persistence.jpa Eclipse Public License - v 1.0
org.freemarker freemarker BSD-style license
org.hamcrest hamcrest-core New BSD License
org.hamcrest hamcrest-library New BSD License
matterhorn-composer-ffmpeg
GroupId ArtifactId License
commons-io commons-io The Apache Software License, Version 2.0
javax.ws.rs jsr311-api -
javax.xml.bind jaxb-api CDDL 1.1-GPL2 w/ CPE
org.apache.felix org.apache.felix.fileinstall The Apache Software License, Version 2.0
org.apache.xmlrpc xmlrpc-client The Apache Software License, Version 2.0
org.slf4j slf4j-api MIT License
matterhorn-composer-service-api
GroupId ArtifactId License
commons-io commons-io The Apache Software License, Version 2.0
javax.ws.rs jsr311-api -
javax.xml.bind jaxb-api CDDL 1.1-GPL2 w/ CPE
matterhorn-composer-service-remote
GroupId ArtifactId License
commons-io commons-io The Apache Software License, Version 2.0
javax.ws.rs jsr311-api -
javax.xml.bind jaxb-api CDDL 1.1-GPL2 w/ CPE
org.apache.httpcomponents httpclient-osgi Apache License, Version 2.0
org.apache.httpcomponents httpcore-osgi Apache License, Version 2.0
org.eclipse.persistence javax.persistence Eclipse Public License v1.0-Eclipse Distribution License v. 1.0
org.slf4j slf4j-api MIT License
matterhorn-conductor
GroupId ArtifactId License
commons-io commons-io The Apache Software License, Version 2.0
org.slf4j slf4j-api MIT License
matterhorn-dataloader
GroupId ArtifactId License
org.apache.commons commons-csv The Apache Software License, Version 2.0
matterhorn-db
GroupId ArtifactId License
c3p0 c3p0 GNU LESSER GENERAL PUBLIC LICENSE
com.h2database h2 The H2 License, Version 1.0
mysql mysql-connector-java The GNU General Public License, Version 2
org.slf4j slf4j-api MIT License
postgresql postgresql BSD License
matterhorn-dictionary-hunspell
GroupId ArtifactId License
org.slf4j slf4j-api MIT License
matterhorn-dictionary-regexp
GroupId ArtifactId License
org.slf4j slf4j-api MIT License
matterhorn-distribution-service-acl
GroupId ArtifactId License
commons-io commons-io The Apache Software License, Version 2.0
javax.ws.rs jsr311-api -
javax.xml.bind jaxb-api CDDL 1.1-GPL2 w/ CPE
org.slf4j slf4j-api MIT License
matterhorn-distribution-service-acl-remote
GroupId ArtifactId License
commons-io commons-io The Apache Software License, Version 2.0
javax.ws.rs jsr311-api -
javax.xml.bind jaxb-api CDDL 1.1-GPL2 w/ CPE
org.slf4j slf4j-api MIT License
matterhorn-distribution-service-download
GroupId ArtifactId License
commons-io commons-io The Apache Software License, Version 2.0
javax.ws.rs jsr311-api -
javax.xml.bind jaxb-api CDDL 1.1-GPL2 w/ CPE
org.slf4j slf4j-api MIT License
matterhorn-distribution-service-download-remote
GroupId ArtifactId License
commons-io commons-io The Apache Software License, Version 2.0
javax.ws.rs jsr311-api -
javax.xml.bind jaxb-api CDDL 1.1-GPL2 w/ CPE
org.slf4j slf4j-api MIT License
matterhorn-distribution-service-streaming
GroupId ArtifactId License
commons-io commons-io The Apache Software License, Version 2.0
javax.ws.rs jsr311-api -
javax.xml.bind jaxb-api CDDL 1.1-GPL2 w/ CPE
org.slf4j slf4j-api MIT License
matterhorn-distribution-service-streaming-remote
GroupId ArtifactId License
commons-io commons-io The Apache Software License, Version 2.0
javax.ws.rs jsr311-api -
javax.xml.bind jaxb-api CDDL 1.1-GPL2 w/ CPE
org.slf4j slf4j-api MIT License
matterhorn-dublincore
GroupId ArtifactId License
com.google.code.findbugs jsr305 The Apache Software License, Version 2.0
org.slf4j slf4j-api MIT License
matterhorn-email-template=service-impl
GroupId ArtifactId License
org.apache.felix org.apache.felix.fileinstall The Apache Software License, Version 2.0
org.slf4j slf4j-api MIT License
org.slf4j slf4j-log4j12 MIT License
org.freemarker freemarker BSD-style license
matterhorn-engage-theodul-api
GroupId ArtifactId License
javax.ws.rs jsr311-api -
matterhorn-engage-theodul-core
GroupId ArtifactId License
javax.ws.rs jsr311-api -
org.apache.servicemix.bundles org.apache.servicemix.bundles.quartz The Apache Software License, Version 2.0
matterhorn-engage-theodul-plugin-controls
GroupId ArtifactId License
javax.ws.rs jsr311-api -
matterhorn-engage-theodul-plugin-custom-mhConnection
GroupId ArtifactId License
javax.ws.rs jsr311-api -
matterhorn-engage-theodul-plugin-custom-notifications
GroupId ArtifactId License
javax.ws.rs jsr311-api -
matterhorn-engage-theodul-plugin-custom-usertracking
GroupId ArtifactId License
javax.ws.rs jsr311-api -
matterhorn-engage-theodul-plugin-description
GroupId ArtifactId License
javax.ws.rs jsr311-api -
matterhorn-engage-theodul-plugin-tab-description
GroupId ArtifactId License
javax.ws.rs jsr311-api -
matterhorn-engage-theodul-plugin-tab-shortcuts
GroupId ArtifactId License
javax.ws.rs jsr311-api -
matterhorn-engage-theodul-plugin-tab-slidetext
GroupId ArtifactId License
javax.ws.rs jsr311-api -
matterhorn-engage-theodul-plugin-timeline-statistics
GroupId ArtifactId License
javax.ws.rs jsr311-api -
matterhorn-engage-theodul-plugin-video-videojs
GroupId ArtifactId License
javax.ws.rs jsr311-api -
matterhorn-engage-ui
GroupId ArtifactId License
commons-io commons-io The Apache Software License, Version 2.0
javax.ws.rs jsr311-api -
javax.xml.bind jaxb-api CDDL 1.1-GPL2 w/ CPE
org.slf4j slf4j-api MIT License
matterhorn-execute-impl
GroupId ArtifactId License
org.slf4j slf4j-api MIT License
org.slf4j slf4j-log4j12 MIT License
matterhorn-execute-workflowoperation
GroupId ArtifactId License
org.slf4j slf4j-api MIT License
org.slf4j slf4j-log4j12 MIT License
matterhorn-external-api
GroupId ArtifactId License
com.entwinemedia.common functional Apache License, Version 2.0
javax.ws.rs jsr311-api -
javax.xml.bind jaxb-api CDDL 1.1-GPL2 w/ CPE
org.apache.httpcomponents httpclient-osgi Apache License, Version 2.0
org.codehaus.groovy groovy-all The Apache Software License, Version 2.0
org.slf4j slf4j-api MIT License
org.slf4j slf4j-log4j12 MIT License
org.slf4j slf4j-simple MIT License
matterhorn-fileupload
GroupId ArtifactId License
commons-fileupload commons-fileupload The Apache Software License, Version 2.0
javax.ws.rs jsr311-api -
org.apache.servicemix.bundles org.apache.servicemix.bundles.quartz The Apache Software License, Version 2.0
matterhorn-index-service
GroupId ArtifactId License
javax.xml.bind jaxb-api CDDL 1.1-GPL2 w/ CPE
matterhorn-ingest-service-impl
GroupId ArtifactId License
com.google.guava guava The Apache Software License, Version 2.0