-
Notifications
You must be signed in to change notification settings - Fork 7
/
non_ibm_license.txt
executable file
·5081 lines (3905 loc) · 400 KB
/
non_ibm_license.txt
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
NOTICE
This document includes terms and conditions applicable to the Separately Licensed Code included with the Program(s) listed below. Only those terms and conditions applicable to the Separately Licensed Code included with the Program(s) for which Licensee has acquired entitlements apply.
=========================
TERMS AND CONDITIONS FOR SEPARATELY LICENSED CODE
IBM API Connect Essentials Edition V5.0
The IBM license agreement and any applicable information on the web
download page for IBM products refers Licensee to this file for details
concerning terms and conditions applicable to code identified as
Separately Licensed Code in the License Information document and
included in the products listed above ("the Program").
The "Separately Licensed Code" identified in the License Information
document of the IBM license agreement is provided to Licensee under terms
and conditions that are different from the IBM license agreement.
Licensee's use of such components or portions thereof is subject to the
terms of the associated license agreement provided or referenced in this
section and not the terms of the IBM license agreement.
Please note: This NON_IBM_LICENSE file may identify Separately Licensed
Code and its related agreements that are not used by, or that were not
shipped with, the Program as Licensee installed it.
The following are Separately Licensed Code:
acl
acpi
acpid
acpi-support
addressfield (drupal)
AddToAny (drupal)
adduser
admin_menu (drupal)
adminimal_admin_menu (drupal)
adminimal_theme (drupal)
advagg (drupal)
Advanced Forum (drupal)
Advanced syslog (drupal)
alpha_pagination
alsa-lib
angular.js/images/logo
apt
aptitude
aptitude-common
apt-utils
at
AT Tools (drupal)
atk
attr
audit
augeas
autogen
Automated Logout (drupal)
avahi
base-files
base-lsb
base-passwd
bash
bc
Bean (drupal)
better_exposed_filters (drupal...
binary_heap.js
bind
bind9-host
binutils
Block Class (drupal)
Block Class Styles (drupal)
BOA
bridge-utils
busybox
c3p0
ca-certificates
cairo
cairo-spice
caniuse-db(node)
CAPTCHA (Drupal)
cdrkit
chain_menu_access
chkconfig
commons.wikimedia
compat-gcc-32
config.guess
ConsoleKit
console-setup
content_access (drupal)
context (drupal)
coreutils
cpio
cron
cronie
crontabs
cryptsetup-luks
csync2
CTools (drupal)
cups
cvs
d3 (drupal)
dash
dbus
dbus-glib
debian-archive-keyring
debianutils
desktop-file-utils
device-mapper-multipath
dictionaries-common
diffutils
discover
dmidecode
dmsetup
dnsmasq
dpkg
dracut
drbd83-kmod
drbd83-utils
Drupal
drush_language (drupal)
e2fslibs
e2fsprogs
ebtables
ed
eggdbus
eject
ejectorseat (drupal)
elfutils
entity (drupal)
Entity API (drupal)
ethtool
FAQ (drupal)
faq.html
Farbtastic
ffmpeg-spice
filesystem
findutils
Fivestar (drupal)
Flag (Drupal)
flood_control
follow
Font Awesome4.1.0
Font-Awesome
forum_access
frameprevention (drupal)
gamin
gawk
gcc
gcc-4.7-base
gdb
gdbm
geoip-database
gettext
gettext-base
git
git-core
git-man
glib2
glibc
gmp
GNU Libtool
gnupg
gnutls
gpgv
gpm
gpxe
grep
groff
groff-base
Group (drupal)
grub
grub2-common
grubby
grub-common
grub-pc
grub-pc-bin
gtfs
gtk2
gzip
Hibernate
hicolor-icon-theme
Hierachical Select (Drupal)
hierarchical_select
hierarchical_select (drupal)
hostname
httprl (drupal)
hwdata
i18n (drupal)
ifupdown
igb-kmod
Image CAPTCHA Refresh (drupal)
Images
IMCE
IMCE (drupal)
imce_wysiwyg
imce_wysiwyg (drupal)
index-debug.html
info
initramfs-tools
initscripts
insserv
installation-report
install-info
iproute
iptables
iputils-ping
ipvsadm
irqbalance
iscsi-initiator-utils
iso-codes
ixgbe-kmod
jq
jQuery Update (drupal)
JSONSelect site
kbd
kernel
kexec-tools
keyboard-configuration
keyutils
klibc-utils
kmod
l10n_update
l10n_update (drupal)
legal (drupal)
less
libacl1
libaio
libapt-inst1.5
libapt-pkg4.12
libart_lgpl
libasprintf0c2
libasyncns
libattr1
libblkid1
libbz2-1.0
libc6
libcap2
libcap-ng
libc-bin
libcgroup
libclass-isa-perl
libcmpiutil
libcomerr2
libcwidget3
libdb5.1
libdbd-mysql-perl
libdbi-perl
libdevmapper1.02.1
libdevmapper-event1.02.1
libdiscover2
libept1.4.12
liberror-perl
libev4
libfile-copy-recursive-perl
libfreetype6
libfuse2
libgcc1
libgcrypt
libgcrypt11
libgd2-xpm
libgdbm3
libgeoip1
libgnutls2
libgnutls-openssl27
libgpg-error
libgpg-error0
libhtml-template-perl
libidn
libidn11
libkeyutils1
libklibc
libkmod2
liblocale-gettext-perl
libltdl7
liblzma5
libmariadbclient18
libmcrypt4
libmount1
libmverbs
libmysqlclient18
libnewt0.52
libnfnetlink0
libnih
libnl
libp11-kit0
libpam0g
libpam-modules
libpam-modules-bin
libpam-runtime
libpci3
libpipeline1
libpng12-0
libpopt0
libprocps0
libqdbm14
Libraries API (drupal)
libreadline5
libreadline6
librsync1
librtmp0
libsasl2-2
libsasl2-modules
libselinux1
libsemanage1
libsemanage-common
libsepol
libsepol1
libsigc++-2.0-0c2a
libsigsegv2
libslang2
libsndfile
libss2
libstdc++6
libswitch-perl
libt
libtasn1
libtasn1-3
libtext-charwidth-perl
libtext-iconv-perl
libtext-wrapi18n-perl
libthai
libtool
libudev0
libusb
libusb-0.1-4
libuser
libustr-1.0-1
libutempter
libuuid1
libuuid-perl
libvirt
libvirt-cim
libxapian22
linkit
linkit (drupal)
linkit_picker
linkit_picker (drupal)
linux-base
linux-image-3.2.0
lksctp-tools
lm_sensors
locales
login
logrotate
lsb-base
lsb-release
lsof
lsyncd
lvm2
lzo
lzop
m4
make
MAKEDEV
man
man-db
manpages
mariadb-client-5.5
mariadb-client-core-5.5
mariadb-common
mariadb-galera-server
mariadb-galera-server-5.5
markdown (drupal)
mawk
mdadm
megaraid_sas-kmod
menu_item_visibility (drupal)
messaging (drupal)
metatag (drupal)
microcode_ctl
mime-support
mingetty
module-init-tools
mount
mptlinux-kmod
multiarch-support
mysql
mysql-common
nano
netbase
netcat-traditional
netcf
net-tools
newt
nfs-utils
nginx
nginx-common
nginx-full
nmap
no_autocomplete (drupal)
node_clone (drupal)
notifications (drupal)
notifications_forum (drupal)
nss-pam-ldapd
numactl
numad
ocfs2-tools
ofa_kernel
OpenIPMI
openssh-blacklist
openssh-blacklist-extra
openssh-client
openssh-server
oprofile
os-prober
pam
pam_ldap
Panels (drupal)
pango
parted
passwd
Password policy (drupal)
patch
Pathologic (drupal)
PCD
pciutils
percona-xtrabackup
perl
perl-base
perl-modules
PHP SAML2
phpmailer
PHPMailer (drupal)
pkgconfig
pkg-config
plymouth
pm-utils
polkit
portreserve
prelink
procmail
procps
psmisc
pulseaudio
python
python2.7
python2.7-minimal
python-apt
python-apt-common
python-gnupginterface
python-minimal
python-pycurl
python-software-properties
python-support
qemu-kvm
readline
readline-common
restrict_by_ip (drupal)
restws (drupal)
rng-tools
rpm
rsync
rsyslog
scsi-target-utils
seabios
search_autocomplete (drupal)
search_config (drupal)
seckit (drupal)
security_questions (drupal)
sed
sensible-utils
session_limit (drupal)
sgml-base
shadow-utils
sharutils
Simple Dialog
simplesamlphp
simplesamlphp_auth (drupal)
slang
slick (drupal)
slick_extras (drupal)
slick_views (drupal)
socat
SPDX specification
spdx-exceptions(Node)1.0.3
spdx-exceptions(Node)1.0.4
spice-server
sshpass
ssmtp
StatsD (drupal)
stickynav (drupal)
Support Ticketing System (drupal)
swig
sysfsutils
syslog-ng
sysstat
sysvinit
sysvinit-utils
sysv-rc
TagCloud (drupal)
tar
tar-static
tasksel
tasksel-data
taxonomy_menu
taxonomy_menu (drupal)
taxonomy_menu_block (drupal)
texinfo
tfa
tfa (drupal)
tfa_basic
tfa_basic (drupal)
time
tinyMCE
Token (Drupal)
traceroute
Translation helpers (drupal)
transliteration (drupal)
trustedgrub
tunctl
Twitter Timeline (drupal)
ucf
udev
Ulimate Cron (Drupal)
unattended-upgrades
unixODBC
update-inetd
upstart
util-linux
util-linux-locales
util-linux-ng
Variable (drupal)
vgabios
Views (drupal)
Views_bulk_operations (drupal)
views_send (drupal)
vim
Voting API (drupal)
VPPR (drupal)
wget
which
whiptail
Wysiwig (drupal)
xml-core
xmlto
xtrabackup
xz
xz-utils
The Program includes some or all of the following licensed to you as Separately Licensed Code under the GNU General Public License version 2.
Acl,acpi,acpid,acpi-support,addressfield (drupal),AddToAny (drupal),adduser,admin_menu (drupal),adminimal_admin_menu (drupal),adminimal_theme (drupal),advagg (drupal),Advanced Forum (drupal),Advanced syslog (drupal),alpha_pagination,apt,aptitude,aptitude-common,apt-utils,AT Tools (drupal),Automated Logout (drupal),base-files,base-passwd,Bean (drupal),better_exposed_filters (drupal...,Block Class (drupal),Block Class Styles (drupal),BOA,ca-certificates,CAPTCHA (Drupal),chain_menu_access,console-setup,content_access (drupal),context (drupal),cron,csync2,CTools (drupal),d3 (drupal),dash,dbus,debian-archive-keyring,debianutils,dictionaries-common,discover,dmsetup,dpkg,Drupal,drush_language (drupal),e2fslibs,eject,ejectorseat (drupal),entity (drupal),Entity API (drupal),FAQ (drupal),Farbtastic,Fivestar (drupal),Flag (Drupal),flood_control,follow,forum_access,frameprevention (drupal),gettext-base,git,git-core,git-man,Group (drupal),Hierachical Select (Drupal),hierarchical_select,hierarchical_select (drupal),hostname,httprl (drupal),i18n (drupal),ifupdown,Image CAPTCHA Refresh (drupal),IMCE,imce_wysiwyg,initramfs-tools,initscripts,installation-report,iproute,iputils-ping,jq,jQuery Update (drupal),kbd,keyboard-configuration,klibc-utils,kmod,l10n_update,legal (drupal),libapt-inst1.5,libapt-pkg4.12,libblkid1,libbz2-1.0,libc6,libcap2,libc-bin,libclass-isa-perl,libcomerr2,libcwidget3,libdb5.1,libdbd-mysql-perl,libdbi-perl,libdevmapper1.02.1,libdevmapper-event1.02.1,libdiscover2,libev4,libfuse2,libgcrypt11,libgd2-xpm,libgdbm3,libhtml-template-perl,libkeyutils1,libklibc,libkmod2,liblocale-gettext-perl,libltdl7,libmariadbclient18,libmount1,libmysqlclient18,libnih,libp11-kit0,libpci3,libpng12-0,libpopt0,libprocps0,libqdbm14,Libraries API (drupal),libreadline5,libreadline6,librtmp0,libselinux1,libsemanage1,libsemanage-common,libsepol1,libsigsegv2,libslang2,libss2,libswitch-perl,libt,libtext-charwidth-perl,libtext-iconv-perl,libtext-wrapi18n-perl,libudev0,libustr-1.0-1,libuuid1,libuuid-perl,libxapian22,linkit,linkit_picker,linux-base,linux-image-3.2.0,locales,login,lsb-base,lsb-release,lsof,lsyncd,lvm2,man-db,manpages,mariadb-client-5.5,mariadb-client-core-5.5,mariadb-common,mariadb-galera-server,mariadb-galera-server-5.5,markdown (drupal),mawk,menu_item_visibility (drupal),messaging (drupal),metatag (drupal),mime-support,module-init-tools,mount,multiarch-support,mysql-common,netbase,netcat-traditional,nginx,nginx-common,nginx-full,no_autocomplete (drupal),node_clone (drupal),notifications (drupal),notifications_forum (drupal),openssh-blacklist,openssh-blacklist-extra,os-prober,Panels (drupal),passwd,Password policy (drupal),patch,Pathologic (drupal),pciutils,percona-xtrabackup,perl,perl-base,perl-modules,PHPMailer (drupal),python,python2.7,python2.7-minimal,python-apt,python-apt-common,python-gnupginterface,python-minimal,python-software-properties,python-support,readline-common,restrict_by_ip (drupal),restws (drupal),search_autocomplete (drupal),search_config (drupal),seckit (drupal),security_questions (drupal),sensible-utils,session_limit (drupal),sgml-base,Simple Dialog,simplesamlphp_auth (drupal),slick (drupal),slick_extras (drupal),slick_views (drupal),socat,sshpass,StatsD (drupal),stickynav (drupal),Support Ticketing System (drupal),syslog-ng,sysvinit,sysvinit-utils,sysv-rc,TagCloud (drupal),tar,tasksel,tasksel-data,taxonomy_menu,taxonomy_menu_block (drupal),tfa,tfa_basic,Token (Drupal),traceroute,Translation helpers (drupal),transliteration (drupal),Twitter Timeline (drupal),ucf,Ulimate Cron (Drupal),unattended-upgrades,update-inetd,upstart,util-linux-locales,Variable (drupal),Views (drupal),Views_bulk_operations (drupal),views_send (drupal),Voting API (drupal),VPPR (drupal),wget,Wysiwig (drupal),xml-core,xtrabackup,pkg-config-0.24, config.guess, GNU Libtool
Note: Source code to any of the above-listed packages is available upon written request to the following address: IBM Corporation, Dept. QX3A, 3039 Cornwallis Rd., Research Triangle Park NC 27709. Identify the IBM product and the GPL-licensed program for which you are requesting the source code.
=========================================================
The Program includes some or all of the following licensed to you as Separately Licensed Code under the GNU Lesser General Public License version 2.1.
aaa_base,acl,attr,bash,bc,bind,busybox,c3p0,coreutils,device-mapper,dmidecode,drbd,e2fsprogs,ethtool,filesystem,fillup,gawk,gdb,gdbm,git,git-core,git-man,glib2,glibc,grep,grub,gzip,hibernate,insserv,iproute2,iptables,ipvsadm,iso-codes,kernel,kexec-tools,keyutils,kmod,libacl1,libaio1,libattr1,libc6,libc-bin,libdevmapper1.02.1,libdevmapper-event1.02.1,libept1.4.12,libgcrypt11,libgnutls26,libgnutls-openssl27,libgpg-error0,libidn11,libkmod2,liblzma5,libnl,libqdbm14,librsync1,librtmp0,libsemanage1,libsemanage-common,libsepol1,libsigc++-2.0-0c2a,libstdcxx-compat,libtasn1-3,libudev0,libusb,libustr-1.0-1,locales,logrotate,lvm2,mdadm,mingetty,module-init-,module-init-tools,multiarch-support,multipath-tools,netcfg,net-tools,open-iscsi,pam,pam_ldap,PCD,PHP SAML2,phpmailer,procps,psmisc,python-pycurl,readline,rpm,sed,sharutils,simplesamlphp,strongswan,sysfsutils,sysstat,termcap,tinyMCE,tools,traceroute,trustedgrub,udev,update-desktop-files,util-linux,vlan,wodim,xz-utils,seek-bzip
Note: Source code to any of the above-listed packages is available upon written request to the following address: IBM Corporation, Dept. QX3A, 3039 Cornwallis Rd., Research Triangle Park NC 27709. Identify the IBM product and the LGPL-licensed program for which you are requesting the source code.
=========================================================
This product contains certain code packages that are licensed pursuant to the terms of the GNU General Public License ("GPL") and/or the GNU Lesser General Public License ("LGPL"). Those terms are reproduced below for your reference. The code packages that are licensed under the GPL or LGPL version 2 include:
geoip-database,libfuse2,libgeoip1,libkeyutils1,libmcrypt4,libnewt0.52,libprocps0,libusb-0.1-4,lsof,procps,whiptail
Note: Source code to any of the above-listed packages is available upon written request to the following address:
IBM Corporation
Linux Technology Center, Dept. 7UDA
11501 Burnet Road
Austin, TX 78758
=========================================================
The code packages that are licensed under the GPL or LGPL version 3 include:
bash,autogen,bind9-host,busybox,coreutils,cpio,diffutils,findutils,gawk,gcc-4.7-base,gmp,gnupg,gpgv,grep,groff-base,grub2-common,grub-common,grub-pc,grub-pc-bin,gzip,info,install-info,less,libasprintf0c2,liberror-perl,libfile-copy-recursive-perl,libfreetype6,libgcc1,libgnutls26,libgnutls-openssl27,libidn11,liblzma5,libnfnetlink0,libpam0g,libpam-modules,libpam-modules-bin,libpam-runtime,libpipeline1,libreadline5,libreadline6,libsasl2-2,libsasl2-modules,libstdc++6,libstdcxx,libtasn1-3,man-db,nano,openssh-client,openssh-server,percona-xtrabackup,python-software-properties,rsync,rsyslog,socat,tar,xtrabackup,xz-utils
Note: Source code to any of the above-listed packages is available upon written request to the following address:
IBM Corporation
Linux Technology Center, Dept. 7UDA
11501 Burnet Road
Austin, TX 78758
=========================================================
The icons that are licensed under the Creative Commons Attribution 2.5 license include :
silk/star.png
silk/readme.txt
silk/magnifier.png
silk/heart.png
silk/exclamation.png
silk/error.png
silk/delete.png
silk/accept.png
=========================================================
The icon packages that are listed under the SIL Open Font License include :
Font-Awesome
material-design-icons
=========================================================
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Creative Commons License CC by 3.0
The Program includes some or all of the following works licensed under
the Creative Commons CC by 3.0 License.
spdx-exceptions(Node)1.0.3, Kyle E. Mitchell, https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-1.0.3.tgz
spdx-exceptions(Node)1.0.4, Kyle E. Mitchell, https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-1.0.4.tgz
Font Awesome4.1.0, Dave Gandy, https://github.com/nomiddlename/log4js-node/releases/tag/v0.6.26
binary_heap.js, (C) Marijn Haverbeke, http://eloquentjavascript.net/1st_edition/appendix2.html
JSONSelect site, Lloyd Hilaiel <[email protected]>, https://registry.npmjs.org/JSONSelect/-/JSONSelect-0.4.0.tgz|
index-debug.html, Google, Inc., https://code.angularjs.org/1.2.0rc1/angular-1.2.0rc1.zip
End of Creative Commons License NOTICES AND INFORMATION
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Creative Commons License CC by 4.0
The Program includes some or all of the following works licensed under
the Creative Commons CC by 4.0 License.
caniuse-db(node) Alexis Deveria https://github.com/Fyrd/caniuse/tree/798250b18f61bf8763dbe9a1c4cacb27ba8e3457
End of Creative Commons License NOTICES AND INFORMATION
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Creative Commons Attribution-ShareAlike 3.0
The Program includes some or all of the following works licensed under
the Creative Commons Attribution-ShareAlike 3.0 License.
commons.wikimedia, jQuery Foundation, http://commons.wikimedia.org/wiki/Main_Page
angular.js/images/logo, Google, Inc., https://github.com/angular/angular.js/tree/master/images/logo
faq.html, Google, Inc., https://code.angularjs.org/1.2.0rc1/angular-1.2.0rc1.zip
Images, jQuery Foundation and other contributors, https://github.com/jquery/jquery-ui/tree/1.10.4
SPDX specification, Kyle E. Mitchell, https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.2.tgz
gtfs, Daniel Wirtz, https://github.com/dcodeIO/ProtoBuf.js
End of Creative Commons License NOTICES AND INFORMATION
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Unique License
optjs (node) 3.2.1-boom
NASA OPEN SOURCE AGREEMENT VERSION 1.3
THIS OPEN SOURCE AGREEMENT ("AGREEMENT") DEFINES THE RIGHTS OF USE,
REPRODUCTION, DISTRIBUTION, MODIFICATION AND REDISTRIBUTION OF CERTAIN
COMPUTER SOFTWARE ORIGINALLY RELEASED BY THE UNITED STATES GOVERNMENT AS
REPRESENTED BY THE GOVERNMENT AGENCY LISTED BELOW ("GOVERNMENT AGENCY").
THE UNITED STATES GOVERNMENT, AS REPRESENTED BY GOVERNMENT AGENCY, IS AN
INTENDED THIRD-PARTY BENEFICIARY OF ALL SUBSEQUENT DISTRIBUTIONS OR
REDISTRIBUTIONS OF THE SUBJECT SOFTWARE. ANYONE WHO USES, REPRODUCES,
DISTRIBUTES, MODIFIES OR REDISTRIBUTES THE SUBJECT SOFTWARE, AS DEFINED
HEREIN, OR ANY PART THEREOF, IS, BY THAT ACTION, ACCEPTING IN FULL THE
RESPONSIBILITIES AND OBLIGATIONS CONTAINED IN THIS AGREEMENT.
Government Agency: _____________________________________
Government Agency Original Software Designation: ______________
Government Agency Original Software Title: ____________________
User Registration Requested. Please Visit http://__________________
Government Agency Point of Contact for Original Software: ___________________ ________________________________________________
1. DEFINITIONS
A. "Contributor" means Government Agency, as the developer of the
Original Software, and any entity that makes a Modification. B.
"Cover|ed Patents" mean patent claims licensable by a Contributor |that
are necessarily infringed by the |use or sale of its Modification alone
or when combined with the Subject Software. C. "Display" means the
showing of a copy of the Subject Software, either directly or by means
of an image, or any other device. D. "Distribution" means conveyance or
transfer of the Subject Software, regardless of means, to another. E.
"Larger Work" means computer software that combines Subject Software, or
portions thereof, with software separate from the Subject Software that
is not governed by the terms of this Agreement. F. "Modification" means
any alteration of, including |addition to or deletion from, the
substance or structure of either the Original |Software or Subject
Software, and includes derivative works, as that term is defined in the
Copyright Statute, 17 USC 101. However, the act of including Subject
Software as part of a Larger Work does not in and of itself constitute a
Modification. G. "Original Software" means the computer software first
released under this Agreement by Government Agency with Government
Agency designation ______________ and entitled
_____________________________________________, |including source code,
object code and |accompanying documentation, if any. H. "Recipient"
means anyone who acquires the Subject Software |under this Agreement,
including all Contributors. |I. "Redistribution" means Distribution of
the Subject Software after a Modification has been made. J.
"Reproduction" means the making of a counterpart, image or copy of the
Subject Software. K. "Sale" means the exchange of the Subject Software
for money or equivalent value. L. "Subject Software" means the Original
Software, Modifications, or any respective parts thereof. M. "Use" means
the application or employment of the Subject Software for any purpose.
2. GRANT OF RIGHTS
A. Under Non-Patent Rights: |Subject to the terms and conditions of this
|Agreement, each Contributor, with respect to its own contribution to
the Subject Software, hereby grants to each |Recipient a non-exclusive,
world-wide, royalty-free |license to engage in the following activities
pertaining to the Subject Software:
1. Use
2. Distribution
3. Reproduction
4. Modification
5. Redistribution
6. Display
B. Under Patent Rights: |Subject to the terms and conditions of this
|Agreement, each Contributor, with respect to its own contribution to
the Subject Software, hereby grants to each Recipient under Covered
Patents |a non-exclusive, world-wide, royalty-free license |to engage in
the following activities pertaining to the Subject Software:
1. Use
2. Distribution
3. Reproduction
4. Sale
5. Offer for Sale
C. The rights granted under Paragraph B. also apply to the combination
of a Contributor's Modification and the Subject Software if, at the time
the Modification is added by the Contributor, the addition of such
Modification causes the combination to be covered by the Covered
Patents. It does not apply to any other combinations that include a
Modification.
D. The rights granted in Paragraphs A. and B. allow the Recipient to
sublicense those same rights. Such sublicense must be under the sam|e
terms and conditions of this Agreement.
3. |OBLIGATIONS OF RECIPIENT
A. Distribution or Redistribution of the Subject Software must be made under this Agreement except for additions covered under paragraph 3H.
1. Whenever a Recipient distributes or redistributes the Subject
Software, |a copy of this Agreement must be included with each copy of
the |Subject Software; and 2. If Recipient distributes or redistributes
the Subject |Software in any form other than source code, |Recipient
must also make the source code freely available, and must provide with
each copy of the Subject Software information on how to obtain the
source code |in a reasonable manner on or through a medium customarily
used for software exchange.
|B. Each Recipient must ensure that the following copyright notice
appears prominently in the Subject Software:
[Government Agency will insert the applicable copyright notice in each
agreement accompanying the initial distribution of original software and
remove this bracketed language.]
[The following copyright notice will be used if created by a contractor
pursuant to Government Agency contract and rights obtained from creator
by assignment. Government Agency will insert the year and its Agency
designation and remove the bracketed language.] Copyright " {YEAR}
United States Government as represented by ______
_________________________. All Rights Reserved.
[The following copyright notice will be used if created by civil
servants only. Government Agency will insert the year and its Agency
designation and remove the bracketed language.] Copyright " {YEAR}
United States Government as represented by _____________
_____________________________. No copyright is claimed in the United
States under Title 17, U.S.Code. All Other Rights Reserved.
C. Each Contributor must characterize its alteration of the Subject
Software as a Modification and |must identify itself as the originator
of its |Modification |in a manner that reasonably allows subsequent
Recipients to identify the originator of the |Modification. In
fulfillment of these requirements, Contributor must include a file
(e.g., a change log file) that describes the alterations made and the
date of the alterations, identifies Contributor as originator of the
alterations, and consents to characterization of the alterations as a
Modification, for example, by including a |statement that the
Modification is derived, directly or indirectly, from Original |Software
provided by Government Agency. Once consent is granted, it may not
thereafter be revoked.
D. A Contributor may add its own copyright notice to the Subject
Software. Once a copyright notice has been added to the Subject
Software, a Recipient may not remove it without the express permission
of the Contributor who added the notice.
E. A Recipient may not make any representation in the Subject Software
or in any promotional, advertising or other material that may be
construed as an endorsement by Government Agency or by any prior
Recipient of any product or service provided by Recipient, or that may
seek to obtain commercial advantage by the fact of Government Agency's
or a prior Recipient's participation in this Agreement.
F. In an effort to track usage and maintain accurate records of the
Subject Software, each Recipient, upon receipt of the Subject Software,
is requested to register with Government Agency by visiting the
following website: ______________________________. Recipient's name and
personal information shall be used for statistical purposes only. Once a
Recipient makes a Modification available, it is requested that the
Recipient inform Government Agency at the web site provided above how to
access the Modification.
[Alternative paragraph for use when a web site for release and
monitoring of subject software will not be supported by releasing
Government Agency] In an effort to track usage and maintain accurate
records of the Subject Software, each Recipient, upon receipt of the
Subject Software, is requested to provide Government Agency, by e-mail
to the Government Agency Point of Contact listed in clause 5.F., the
following information: ______________________________. Recipient's name
and personal information shall be used for statistical purposes only.
Once a Recipient makes a Modification available, it is requested that
the Recipient inform Government Agency, by e-mail to the Government
Agency Point of Contact listed in clause 5.F., how to access the
Modificatio|n.
G. Each Contributor represents that t|hat its Modification is believed
to be Contributor's original creation and does not violate any existing
agreements, regulations, statutes or rules, and further that
|Contributor has sufficient rights to grant the rights conveyed by this
|Agreement.
H. A Recipient |may choose to offer, and to charge a fee for, warranty,
support, indemnity |and/|or liability obligations to one or more |other
Recipients of the Subject Software. A Recipient may do so, however, only
on its own behalf and not on behalf of Government Agency or any other
Recipient. Such a Recipient |must make it absolutely clear that any such
warranty, support, indemnity |and/|or liability obligation is offered by
|that Recipient alone. Further, such Recipient agrees to indemnify
Government Agency and every other Recipient for any liability incurred
by them |as a result of warranty, support, indemnity |and/or liability
offered by such Recipient.
I. A Recipient may create a Larger Work by combining Subject Software
with separate software not governed by the terms of this agreement |and
distribute the Larger Work as a single product. In such |case, the
Recipient must make sure Subject Software, or portions thereof, included
in the Larger Work is subject to this Agreement.
J. Notwithstanding any provisions contained herein, Recipient is hereby
put on notice that export of any goods |or technical data from the
United States may require some form of export |license from the U.S.
Government. Failure to obtain necessary export licenses |may result in
criminal liability under U.S. laws. |Government Agency neither
represents that a license shall not be required nor that, if required,
it shall be issued. Nothing granted herein provides any such export
license.
4. DISCLAIMER OF WARRANTIES AND LIABILITIES; WAIVER AND INDEMNIFICATION
A. No Warranty: THE SUBJECT |SOFTWARE IS PROVIDED "AS IS" WITHOUT ANY
|WARRANTY OF ANY KIND, EITHER EXPRESSED, IMPLIED, OR STATUTORY,
INCLUDING, |BUT NOT LIMITED TO, ANY WARRANTY THAT THE |SUBJECT SOFTWARE
WILL CONFORM TO SPECIFICATIONS, |ANY IMPLIED WARRANTIES OF
MERCHANTABILITY, |FITNESS FOR A PARTICULAR PURPOSE, OR FREEDOM FROM
INFRINGEMENT, ANY WARRANTY THAT THE SUBJECT SOFTWARE WILL BE ERROR FREE,
OR ANY WARRANTY THAT DOCUMENTATION, IF PROVIDED, WILL CONFORM TO THE
SUBJECT SOFTWARE. THIS AGREEMENT DOES NOT, IN ANY MANNER, CONSTITUTE AN
ENDORSEMENT BY GOVERNMENT AGENCY OR ANY PRIOR RECIPIENT OF ANY RESULTS,
RESULTING DESIGNS, HARDWARE, SOFTWARE PRODUCTS OR ANY OTHER APPLICATIONS
RESULTING FROM USE OF THE SUBJECT SOFTWARE. FURTHER, GOVERNMENT AGENCY
DISCLAIMS ALL WARRANTIES AND LIABILITIES REGARDING THIRD-PARTY SOFTWARE,
IF PRESENT IN THE ORIGINAL SOFTWARE, AND DISTRIBUTES IT "AS IS."
B. Waiver and Indemnity: RECIPIENT AGREES TO WAIVE ANY AND ALL CLAIMS
AGAINST THE UNITED STATES GOVERNMENT, ITS CONTRACTORS AND
SUBCONTRACTORS, AS WELL AS ANY PRIOR RECIPIENT. IF RECIPIENT'S USE OF
THE SUBJECT SOFTWARE RESULTS IN ANY LIABILITIES, DEMANDS, DAMAGES,
EXPENSES OR LOSSES ARISING FROM SUCH USE, INCLUDING ANY DAMAGES FROM
PRODUCTS BASED ON, OR RESULTING FROM, RECIPIENT'S USE OF THE SUBJECT
SOFTWARE, RECIPIENT SHALL INDEMNIFY AND HOLD HARMLESS THE UNITED STATES
GOVERNMENT, ITS CONTRACTORS AND SUBCONTRACTORS, AS WELL AS ANY PRIOR
RECIPIENT, TO THE EXTENT PERMITTED BY LAW. RECIPIENT'S SOLE REMEDY FOR
ANY SUCH MATTER SHALL BE THE IMMEDIATE, UNILATERAL TERMINATION OF THIS
AGREEMENT.
5. GENERAL TERMS
A. Termination: This Agreement |and the rights granted hereunder will
terminate automatically if |a Recipient fails to comply with these terms
and conditions, and fails to cure such noncompliance within thirty (30)
days of |becoming aware of such noncompliance. |Upon termination, a
Recipient agrees to immediately cease use and distribution of the
Subject Software. All sublicenses to the Subject Software properly
granted by the breaching Recipient shall survive any such termination of
this Agreement.
B. Severability: |If any provision of this Agreement is invalid or
unenforceable under applicable law, it shall not affect the validity or
enforceability of the remainder of the terms of this Agreement.
|C. Applicable Law: This Agreement shall be subject to United States
federal law only for all purposes, including, but not limited to,
determining the validity of this Agreement, the meaning of its
provisions and the rights, obligations and remedies of the parties.
D. Entire Understanding: This Agreement constitutes the entire
understanding and agreement of the parties relating to release of the
Subject Software and may not be superseded, modified or amended except
by further written agreement duly executed by the parties.
E. Binding Authority: By accepting and using the Subject Software under
this Agreement, a Recipient affirms its authority to bind the Recipient
to all |terms and conditions of this Agreement and |that that Recipient
hereby agrees to all terms and conditions herein.
F. Point of Contact: Any Recipient contact with Government Agency is to
be directed to the designated representative as follows:
END OF Unique LICENSE NOTICES AND INFORMATION
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
GNU GENERAL PUBLIC LICENSE
Version 2, June 1991
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too.
When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things.
To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it.
For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights.
We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software.
Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations.
Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all.
The precise terms and conditions for copying, distribution and modification follow.
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you".
Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does.
1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program.
You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee.
2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions:
=========================================================
CREATIVE COMMONS ATTRIBUTION 2.5 LICENSE
THE WORK (AS DEFINED BELOW) IS PROVIDED UNDER THE TERMS OF THIS CREATIVE COMMONS PUBLIC LICENSE ("CCPL" OR "LICENSE"). THE WORK IS PROTECTED BY COPYRIGHT AND/OR OTHER APPLICABLE LAW. ANY USE OF THE WORK OTHER THAN AS AUTHORIZED UNDER THIS LICENSE OR COPYRIGHT LAW IS PROHIBITED.
BY EXERCISING ANY RIGHTS TO THE WORK PROVIDED HERE, YOU ACCEPT AND AGREE TO BE BOUND BY THE TERMS OF THIS LICENSE. THE LICENSOR GRANTS YOU THE RIGHTS CONTAINED HERE IN CONSIDERATION OF YOUR ACCEPTANCE OF SUCH TERMS AND CONDITIONS.
1. Definitions
"Collective Work" means a work, such as a periodical issue, anthology or encyclopedia, in which the Work in its entirety in unmodified form, along with a number of other contributions, constituting separate and independent works in themselves, are assembled into a collective whole. A work that constitutes a Collective Work will not be considered a Derivative Work (as defined below) for the purposes of this License.
"Derivative Work" means a work based upon the Work or upon the Work and other pre-existing works, such as a translation, musical arrangement, dramatization, fictionalization, motion picture version, sound recording, art reproduction, abridgment, condensation, or any other form in which the Work may be recast, transformed, or adapted, except that a work that constitutes a Collective Work will not be considered a Derivative Work for the purpose of this License. For the avoidance of doubt, where the Work is a musical composition or sound recording, the synchronization of the Work in timed-relation with a moving image ("synching") will be considered a Derivative Work for the purpose of this License.
"Licensor" means the individual or entity that offers the Work under the terms of this License.
"Original Author" means the individual or entity who created the Work.
"Work" means the copyrightable work of authorship offered under the terms of this License.
"You" means an individual or entity exercising rights under this License who has not previously violated the terms of this License with respect to the Work, or who has received express permission from the Licensor to exercise rights under this License despite a previous violation.
2. Fair Use Rights. Nothing in this license is intended to reduce, limit, or restrict any rights arising from fair use, first sale or other limitations on the exclusive rights of the copyright owner under copyright law or other applicable laws.
3. License Grant. Subject to the terms and conditions of this License, Licensor hereby grants You a worldwide, royalty-free, non-exclusive, perpetual (for the duration of the applicable copyright) license to exercise the rights in the Work as stated below:
to reproduce the Work, to incorporate the Work into one or more Collective Works, and to reproduce the Work as incorporated in the Collective Works;
to create and reproduce Derivative Works;
to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission the Work including as incorporated in Collective Works;
to distribute copies or phonorecords of, display publicly, perform publicly, and perform publicly by means of a digital audio transmission Derivative Works.
For the avoidance of doubt, where the work is a musical composition:
Performance Royalties Under Blanket Licenses. Licensor waives the exclusive right to collect, whether individually or via a performance rights society (e.g. ASCAP, BMI, SESAC), royalties for the public performance or public digital performance (e.g. webcast) of the Work.
Mechanical Rights and Statutory Royalties. Licensor waives the exclusive right to collect, whether individually or via a music rights agency or designated agent (e.g. Harry Fox Agency), royalties for any phonorecord You create from the Work ("cover version") and distribute, subject to the compulsory license created by 17 USC Section 115 of the US Copyright Act (or the equivalent in other jurisdictions).
Webcasting Rights and Statutory Royalties. For the avoidance of doubt, where the Work is a sound recording, Licensor waives the exclusive right to collect, whether individually or via a performance-rights society (e.g. SoundExchange), royalties for the public digital performance (e.g. webcast) of the Work, subject to the compulsory license created by 17 USC Section 114 of the US Copyright Act (or the equivalent in other jurisdictions).
The above rights may be exercised in all media and formats whether now known or hereafter devised. The above rights include the right to make such modifications as are technically necessary to exercise the rights in other media and formats. All rights not expressly granted by Licensor are hereby reserved.
4. Restrictions.The license granted in Section 3 above is expressly made subject to and limited by the following restrictions: