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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284
|
This package was debianized by Christopher L Cheney
<ccheney@debian.org> on Tue, 16 Apr 2002 22:00:00 -0500.
It was downloaded from: http://www.kde.org/download
Upstream Authors: Kalle Dalheimer <kalle@kde.org> and many others.
Copyright:
Unless something else is mentioned, copyright is
C 1996-2008, The K Desktop Enviroment project http://www.kde.org
Any references to LGPL v2 refer to /usr/share/common-licenses/LGPL-2
Any references to LGPL v2+ refer to /usr/share/common-licenses/LGPL
Any references to LGPL v2.1+ refer to /usr/share/common-licenses/LGPL-2.1
Any references to GPL or GPL v2+ refer to /usr/share/common-licenses/GPL
Any references to BSD refer to the BSD license as follows:
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* 3. Neither the name of the authors nor the names of its contributors
* may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Any references to the MIT license refer to the following license:
--
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to
deal in the Software without restriction, including without limitation the
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
--
The following licenses apply:
kinit
=====
The code is LGPL v2, with the following exceptions:
kdostartupconfig.cpp is licensed under the MIT license.
setproctitle.cpp and setproctitle.h are covered by the sendmail
license, reproduced below:
<start license>
SENDMAIL LICENSE
The following license terms and conditions apply, unless a different
license is obtained from Sendmail, Inc., 1401 Park Avenue, Emeryville, CA
94608, or by electronic mail at license@sendmail.com.
License Terms:
Use, Modification and Redistribution (including distribution of any
modified or derived work) in source and binary forms is permitted only if
each of the following conditions is met:
1. Redistributions qualify as "freeware" or "Open Source Software" under
one of the following terms:
(a) Redistributions are made at no charge beyond the reasonable cost of
materials and delivery.
(b) Redistributions are accompanied by a copy of the Source Code or by an
irrevocable offer to provide a copy of the Source Code for up to three
years at the cost of materials and delivery. Such redistributions
must allow further use, modification, and redistribution of the Source
Code under substantially the same terms as this license. For the
purposes of redistribution "Source Code" means the complete source
code of sendmail including all modifications.
Other forms of redistribution are allowed only under a separate royalty-
free agreement permitting such redistribution subject to standard
commercial terms and conditions. A copy of such agreement may be
obtained from Sendmail, Inc. at the above address.
2. Redistributions of source code must retain the copyright notices as they
appear in each source code file, these license terms, and the
disclaimer/limitation of liability set forth as paragraph 6 below.
3. Redistributions in binary form must reproduce the Copyright Notice,
these license terms, and the disclaimer/limitation of liability set
forth as paragraph 6 below, in the documentation and/or other materials
provided with the distribution. For the purposes of binary distribution
the "Copyright Notice" refers to the following language:
"Copyright (c) 1998 Sendmail, Inc. All rights reserved."
4. Neither the name of Sendmail, Inc. nor the University of California nor
the names of their contributors may be used to endorse or promote
products derived from this software without specific prior written
permission. The name "sendmail" is a trademark of Sendmail, Inc.
5. All redistributions must comply with the conditions imposed by the
University of California on certain embedded code, whose copyright
notice and conditions for redistribution are as follows:
(a) Copyright (c) 1988, 1993 The Regents of the University of
California. All rights reserved.
(b) Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
(i) Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
(ii) Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided
with the distribution.
(iii) All advertising materials mentioning features or use of this
software must display the following acknowledgement: "This
product includes software developed by the University of
California, Berkeley and its contributors."
(iv) Neither the name of the University nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
6. Disclaimer/Limitation of Liability: THIS SOFTWARE IS PROVIDED BY
SENDMAIL, INC. AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
NO EVENT SHALL SENDMAIL, INC., THE REGENTS OF THE UNIVERSITY OF
CALIFORNIA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
<end license>
kutils
======
The code is LGPL v2, with the following exceptions, which are covered
under the LGPL v2+:
kutils/kcmultidialog.h: LGPL_v2+
kutils/kmultitabbar.cpp: LGPL_v2+
kutils/kpluginselector_p.h: LGPL_v2
kutils/kcmodulecontainer.cpp: LGPL_v2+
kutils/kcmodulecontainer.h: LGPL_v2+
kutils/kcmoduleproxyIface.h: LGPL_v2+
kutils/kmultitabbar_p.h: LGPL_v2+
kutils/kcmultidialog.cpp: LGPL_v2+
kutils/kmultitabbar.h: LGPL_v2+
kabc
====
kabc/vcard/* and AdrParam.cpp are licensed under the MIT license.
kabc/addresseehelper.h is licensed under the LGPL_v2.
kabc/ldapclient.cpp|ldapclient.h is licensed under the GPL v2+.
The rest of kabc is licensed under the LGPL v2+
kab
===
Licensed under the GPL.
pics
====
The crystalsvg images are covered under the following license:
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
This copyright and license notice covers all CrystalSVG images.
Note the license notice contains an add-on.
********************************************************************************
KDE Crystal theme icons.
Copyright (C) 2002 and following years KDE Artists
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation,
version 2.1 of the License.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA
**** NOTE THIS ADD-ON ****
The GNU Lesser General Public License or LGPL is written for software
libraries
in the first place. We expressly want the LGPL to be valid for this
artwork
library too.
KDE Crystal theme icons is a special kind of software library, it is
an
artwork library, it's elements can be used in a Graphical User
Interface, or
GUI.
Source code, for this library means:
- for vectors svg;
- for pixels, if applicable, the multi-layered formats xcf or psd, or
otherwise png.
The LGPL in some sections obliges you to make the files carry
notices. With images this is in some cases impossible or hardly
useful.
With this library a notice is placed at a prominent place in the
directory
containing the elements. You may follow this practice.
The exception in section 6 of the GNU Lesser General Public License
covers
the use of elements of this art library in a GUI.
kde-artists [at] kde.org
kate
====
kate is licensed under th LGPL v2, which the exception of the
following files which are licensed under the LGPL v2+.
kate/part/test_regression.cpp: LGPL_v2+
kate/part/test_regression.h: LGPL_v2+
kwallet
=======
Licensed under the LGPL v2+.
arts
====
Licensed mostly under the LGPL v2+, with the following exception:
arts/message/artsmessage.cc: GPL_v2+
arts/kde/mcop-dcop/*: GPL_v2+
arts/kde/kartsserver.h: MIT
arts/kde/kconverttest.cc: GPL
arts/kde/kartsserver.cpp: MIT
arts/knotify/knotify.h: GPL_v2+
arts/knotify/knotify.cpp: GPL_v2+
dcop
====
The license is MIT, with the exceptions documented below:
The following files are licensed under the following license, aka the
X license:
dcop/KDE-ICE/ICEutil.h:
dcop/KDE-ICE/globals.h:
dcop/KDE-ICE/getauth.c:
dcop/KDE-ICE/ICEmsg.h:
dcop/KDE-ICE/listen.c:
dcop/KDE-ICE/iceauth.c:
dcop/KDE-ICE/replywait.c:
dcop/KDE-ICE/authutil.c:
dcop/KDE-ICE/ICElib.h:
dcop/KDE-ICE/globals.c:
dcop/KDE-ICE/connect.c:
dcop/KDE-ICE/misc.c:
dcop/KDE-ICE/error.c:
dcop/KDE-ICE/accept.c:
-----------
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Except as contained in this notice, the name of the X Consortium shall not be
used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization from the X Consortium.
------------
The following files are licensed under the following license, aka the
OpenGroup license:
dcop/KDE-ICE/setauth.c
dcop/KDE-ICE/ICEproto.h
dcop/KDE-ICE/Xfuncproto.h
dcop/KDE-ICE/process.c
dcop/KDE-ICE/listenwk.c
dcop/KDE-ICE/shutdown.c
dcop/KDE-ICE/ping.c
dcop/KDE-ICE/ICElibint.h
dcop/KDE-ICE/watch.c
dcop/KDE-ICE/ICE.h
dcop/KDE-ICE/locking.c
dcop/KDE-ICE/ICEconn.h
dcop/KDE-ICE/protosetup.c
dcop/KDE-ICE/register.c
--------
All Rights Reserved.
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Except as contained in this notice, the name of The Open Group shall not be
used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization from The Open Group.
--------
The following files are BSD licensed:
dcop/KDE-ICE/Xtrans.h
dcop/KDE-ICE/Xtransutil.c
dcop/KDE-ICE/Xtranssock.c
dcop/KDE-ICE/Xtrans.c
dcop/KDE-ICE/transport.c
dcop/KDE-ICE/Xtransint.h
The files are licensed under the GPL or LGPL:
dcop/dcopidl/yacc.cc.h: GPL_v2+
dcop/dcopserver_win.cpp: LGPL_v2
dcop/dcopserver_shutdown_win.cpp: LGPL_v2
dcop/dcopserver_shutdown.c: LGPL_v2
interfaces
==========
The code is licensed under the LGPL v2+, with the following
exceptions (mostly code licensed only under the LGPL v2):
interfaces/kspeech/kspeech.h: GPL_v2
interfaces/kspeech/kspeechsink.h: GPL_v2
interfaces/kmediaplayer/view.cpp: MIT
interfaces/kmediaplayer/player.h: MIT
interfaces/kmediaplayer/view.h: MIT
interfaces/kmediaplayer/player.cpp: MIT
interfaces/kmediaplayer/playerdcopobject.h: MIT
interfaces/ktexteditor/variableinterface.h: LGPL_v2
interfaces/ktexteditor/clipboardinterface.h: LGPL_v2
interfaces/ktexteditor/configinterfaceextension.h: LGPL_v2
interfaces/ktexteditor/markinterfaceextension.cpp: LGPL_v2
interfaces/ktexteditor/printinterface.cpp: LGPL_v2
interfaces/ktexteditor/blockselectioninterface.cpp: LGPL_v2
interfaces/ktexteditor/plugin.h: LGPL_v2
interfaces/ktexteditor/variableinterface.cpp: LGPL_v2
interfaces/ktexteditor/editinterfaceext.cpp: LGPL_v2
interfaces/ktexteditor/encodinginterface.h: LGPL_v2
interfaces/ktexteditor/viewstatusmsginterface.cpp: LGPL_v2
interfaces/ktexteditor/templateinterface.cpp: LGPL_v2
interfaces/ktexteditor/cursorinterface.h: LGPL_v2
interfaces/ktexteditor/cursorinterface.cpp: LGPL_v2
interfaces/ktexteditor/configinterfaceextension.cpp: LGPL_v2
interfaces/ktexteditor/editinterfaceext.h: LGPL_v2
interfaces/ktexteditor/templateinterface.h: LGPL_v2
interfaces/ktexteditor/blockselectioninterface.h: LGPL_v2
interfaces/ktexteditor/configinterface.h: LGPL_v2
interfaces/ktexteditor/undointerface.cpp: LGPL_v2
interfaces/ktexteditor/dynwordwrapinterface.cpp: LGPL_v2
interfaces/ktexteditor/viewcursorinterface.cpp: LGPL_v2
interfaces/ktexteditor/documentinfo.h: LGPL_v2
interfaces/ktexteditor/editinterface.h: LGPL_v2
interfaces/ktexteditor/markinterface.cpp: LGPL_v2
interfaces/ktexteditor/viewstatusmsginterface.h: LGPL_v2
interfaces/ktexteditor/texthintinterface.h: LGPL_v2
interfaces/ktexteditor/configinterface.cpp: LGPL_v2
interfaces/ktexteditor/popupmenuinterface.h: LGPL_v2
interfaces/ktexteditor/document.h: LGPL_v2
interfaces/ktexteditor/editor.h: LGPL_v2
interfaces/ktexteditor/codecompletioninterface.h: LGPL_v2
interfaces/ktexteditor/wordwrapinterface.cpp: LGPL_v2
interfaces/ktexteditor/undointerface.h: LGPL_v2
interfaces/ktexteditor/documentinfo.cpp: LGPL_v2
interfaces/ktexteditor/view.h: LGPL_v2
interfaces/ktexteditor/highlightinginterface.cpp: LGPL_v2
interfaces/ktexteditor/popupmenuinterface.cpp: LGPL_v2
interfaces/ktexteditor/texthintinterface.cpp: LGPL_v2
interfaces/ktexteditor/sessionconfiginterface.cpp: LGPL_v2
interfaces/ktexteditor/encodinginterface.cpp: LGPL_v2
interfaces/ktexteditor/sessionconfiginterface.h: LGPL_v2
interfaces/khexedit/clipboardinterface.h: LGPL_v2
interfaces/khexedit/charcolumninterface.h: LGPL_v2
interfaces/khexedit/zoominterface.h: LGPL_v2
interfaces/khexedit/valuecolumninterface.h: LGPL_v2
interfaces/khexedit/byteseditinterface.h: LGPL_v2
kdecore
=======
Licensed under the LGPL v2+, with the following exceptions:
kdecore/ksycocadict.h: LGPL_v2
kdecore/knotifyclient.cpp: LGPL_v2
kdecore/kstandarddirs.cpp: LGPL_v2
kdecore/kicontheme.h: LGPL_v2
kdecore/kgrantpty.c: GPL
kdecore/kxerrorhandler.cpp: MIT-style
kdecore/kstartupinfo.h: MIT-style
kdecore/kmountpoint.cpp: LGPL_v2
kdecore/kcmdlineargs.cpp: LGPL_v2
kdecore/ktypelist.h: BSD
kdecore/kglobalsettings.cpp: LGPL_v2
kdecore/kmdcodec.cpp: GPL ,LGPL_v2
kdecore/kxmessages.h: MIT-style
kdecore/kclipboard.h: LGPL_v2
kdecore/klargefile.h: LGPL_v2
kdecore/kmdcodec.h: LGPL_v2
kdecore/kglobalsettings.h: LGPL_v2
kdecore/kapplication_win.cpp: LGPL_v2
kdecore/kclipboard.cpp: LGPL_v2
kdecore/kmultipledrag.cpp: LGPL_v2
kdecore/kpalette.cpp: LGPL_v2
kdecore/kiconeffect.h: LGPL_v2
kdecore/ksycoca.cpp: LGPL_v2
kdecore/kpalette.h: LGPL_v2
kdecore/kprotocolinfo_kdecore.cpp: LGPL_v2
kdecore/kregpriv.h: LGPL_v2
kdecore/fakes.c: LGPL_v2
kdecore/kaccel.cpp: LGPL_v2+
kdecore/kcharsets.h: LGPL_v2+
kdecore/ksycocafactory.h: LGPL_v2
kdecore/kmanagerselection.cpp: MIT-style
kdecore/ksavefile.h: LGPL_v2
kdecore/knotifyclient.h: LGPL_v2
kdecore/kurldrag.cpp: LGPL_v2
kdecore/kregexp.cpp: LGPL_v2
kdecore/krfcdate.cpp: LGPL_v2
kdecore/kprotocolinfofactory.cpp: LGPL_v2
kdecore/kstdaccel.cpp: LGPL_v2
kdecore/kde_dmalloc.h: LGPL_v2
kdecore/kicontheme.cpp: LGPL_v2
kdecore/kprocio.h: LGPL_v2
kdecore/kstdaccel.h: LGPL_v2
kdecore/ktempfile.cpp: LGPL_v2
kdecore/kprocio.cpp: LGPL_v2
kdecore/kiconeffect.cpp: LGPL_v2
kdecore/netwm_p.h: MIT-style
kdecore/klibloader.h: LGPL_v2
kdecore/kinstance.cpp: LGPL_v2
kdecore/krfcdate.h: LGPL_v2
kdecore/kstringhandler.h: LGPL_v2
kdecore/ksycocafactory.cpp: LGPL_v2
kdecore/klockfile.cpp: LGPL_v2
kdecore/ktempdir.h: LGPL_v2
kdecore/ksharedptr.h: LGPL_v2
kdecore/ktempdir.cpp: LGPL_v2
kdecore/klibloader.cpp: LGPL_v2
kdecore/kconfigbase.h: LGPL_v2+
kdecore/kstartupinfo.cpp: MIT-style
kdecore/netwm_def.h: MIT-style
kdecore/kckey.h: LGPL
kdecore/ksycoca.h: LGPL_v2
kdecore/klockfile.h: LGPL_v2
kdecore/kiconloader.h: LGPL_v2
kdecore/kprotocolinfofactory.h: LGPL_v2
kdecore/kmultipledrag.h: LGPL_v2
kdecore/ktimezones.h: LGPL_v2
kdecore/kmountpoint.h: LGPL_v2
kdecore/ksocks.cpp: LGPL_v2
kdecore/kiconloader_p.h: LGPL_v2
kdecore/kde_file.h: LGPL_v2
kdecore/ktempfile.h: LGPL_v2
kdecore/ktimezones.cpp: LGPL_v2
kdecore/kmanagerselection.h: MIT-style
kdecore/network/* MIT-style
kdecore/kdelibs_export.h: LGPL_v2
kdecore/kinstance.h: LGPL_v2
kdecore/kglobal.cpp: LGPL_v2
kdecore/kiconloader.cpp: LGPL_v2
kdecore/kxmessages.cpp: MIT-style
kdecore/ksavefile.cpp: LGPL_v2
kdecore/kregexp.h: LGPL_v2
kdecore/tests/krandomsequencetest.cpp: LGPL_v2
kdecore/tests/cplusplustest.cpp: LGPL_v2
kdecore/tests/kcalendartest.cpp: GPL
kdecore/kurldrag.h: LGPL_v2
kdecore/vsnprintf.c: BSD
kdecore/netwm.cpp: MIT-style
kdecore/ksycocaentry.h: LGPL_v2
kdecore/kglobal.h: LGPL_v2
kdecore/ksocks.h: LGPL_v2
kdecore/kxerrorhandler.h: MIT-style
kdecore/ksycocadict.cpp: LGPL_v2
kdecore/krandomsequence.h: LGPL_v2
kdecore/netwm.h: MIT-style
kdecore/kckey.cpp: LGPL
kdoctools
=========
Licensed under the following license:
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
dnssd
=====
Licensed under the LGPL v2+
khtml
=====
Licensed under the LGPL v2+. The following exceptions apply:
khtml/khtml_printsettings.cpp: LGPL_v2
khtml/rendering/table_layout.h: LGPL_v2
khtml/domtreeview.h: GPL_v2+
khtml/misc/arena.h: GPL_v2.1+ ,LGPL_v2.1+ ,MPL_v1.1
khtml/misc/loader_jpeg.cpp: MIT
khtml/misc/loader_jpeg.h: MIT-style
khtml/misc/arena.cpp: GPL_v2.1+ ,LGPL_v2.1+ ,MPL_v1.1
khtml/misc/guess_ja.h: BSD-style
khtml/misc/guess_ja.cpp: BSD-style
khtml/domtreeview.cpp: GPL_v2+
khtml/css/parser.h: GPL_v2+
khtml/css/parser.cpp: GPL_v2+ ,LGPL_v2+
kjs
===
Licensed under the LGPL v2+. The following exceptions apply:
kjs/dtoa.cpp:
---
Permission to use, copy, modify, and distribute this software for any
purpose without fee is hereby granted, provided that this entire notice
is included in all copies of any software which is or includes a copy
or modification of this software and in all copies of the supporting
documentation for such software.
THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED
WARRANTY. IN PARTICULAR, NEITHER THE AUTHOR NOR LUCENT MAKES ANY
REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY
OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE.
---
kjs/grammar.h: GPL_v2+
kjs/grammar.cpp: GPL_v2+ ,LGPL_v2+
kunittest
=========
Licensed under the BSD license.
kdeui
=====
Licensed under the LGPL v2+. The following exceptions apply:
kdeui/kpassdlg.cpp: GPL ,LGPL_v2 ,MPL
kdeui/kfontcombo.cpp: LGPL_v2
kdeui/kstdaction.cpp: LGPL_v2
kdeui/kiconview.h: LGPL_v2
kdeui/kdockwindow.h: LGPL_v2
kdeui/kwindowinfo.cpp: LGPL_v2
kdeui/kdockwidget.cpp: LGPL_v2
kdeui/kpanelextension.h: MIT-style
kdeui/kpixmapio.cpp: LGPL
kdeui/kdatetimewidget.h: LGPL_v2
kdeui/kxmlguiclient.cpp: LGPL_v2
kdeui/kpanelappmenu.cpp: MIT-style
kdeui/kspelldlg.cpp: LGPL_v2
kdeui/Mainpage.dox: LGPL
kdeui/kactioncollection.cpp: LGPL_v2
kdeui/kpassivepopup.h: LGPL_v2
kdeui/kdualcolorbutton.h: LGPL_v2
kdeui/kspell.cpp: LGPL_v2
kdeui/kurllabel.h: LGPL_v2
kdeui/ktoolbarbutton.cpp: LGPL_v2
kdeui/kdockwidget_p.h: LGPL_v2
kdeui/kpassivepopup.cpp: LGPL_v2
kdeui/kscrollview.cpp: LGPL_v2
kdeui/kpixmapio.h: LGPL
kdeui/kwindowlistmenu.h: MIT-style
kdeui/kanimwidget.h: LGPL_v2
kdeui/kauthicon.cpp: LGPL_v2
kdeui/ksqueezedtextlabel.h: LGPL_v2
kdeui/kdualcolorbutton.cpp: LGPL_v2
kdeui/kdatewidget.cpp: LGPL_v2
kdeui/ktoolbarradiogroup.cpp: LGPL_v2
kdeui/kpopupmenu.h: LGPL_v2
kdeui/kmainwindow.cpp: LGPL_v2
kdeui/ksconfig.cpp: LGPL_v2
kdeui/ktoolbarlabelaction.cpp: LGPL_v2
kdeui/kactivelabel.cpp: LGPL_v2
kdeui/kpanelapplet.cpp: MIT-style
kdeui/klistbox.cpp: LGPL_v2
kdeui/krootpixmap.cpp: LGPL
kdeui/ktoolbarhandler.h: LGPL_v2
kdeui/kpassdlg.h: LGPL_v2
kdeui/ktimewidget.h: LGPL_v2
kdeui/kpanelextension.cpp: MIT-style
kdeui/kpanelmenu.h: MIT-style
kdeui/kactionclasses.h: LGPL_v2
kdeui/kstdguiitem.h: LGPL_v2
kdeui/kpanelapplet.h: MIT-style
kdeui/kguiitem.cpp: LGPL_v2
kdeui/ksystemtray.h: LGPL_v2
kdeui/ktoolbar.h: LGPL_v2
kdeui/kaction.cpp: LGPL_v2
kdeui/kwindowinfo.h: LGPL_v2
kdeui/ktoolbarradiogroup.h: LGPL_v2
kdeui/kwordwrap.h: LGPL_v2
kdeui/kactionselector.cpp: LGPL_v2
kdeui/kdockwidget_private.cpp: LGPL_v2
kdeui/klistviewsearchline.h: LGPL_v2
kdeui/ktoolbar.cpp: LGPL_v2
kdeui/ktoolbarhandler.cpp: LGPL_v2
kdeui/kauthicon.h: LGPL_v2
kdeui/ksyntaxhighlighter.h: LGPL_v2
kdeui/klistbox.h: LGPL_v2
kdeui/kpanelmenu.cpp: MIT-style
kdeui/kurllabel.cpp: LGPL_v2
kdeui/kdockwidget_private.h: LGPL_v2
kdeui/kspell.h: LGPL_v2
kdeui/kprogress.cpp: LGPL_v2
kdeui/kmessagebox.cpp: LGPL_v2
kdeui/kscrollview.h: LGPL_v2
kdeui/kstdguiitem.cpp: LGPL_v2
kdeui/klistviewsearchline.cpp: LGPL_v2
kdeui/kaction.h: LGPL_v2
kdeui/ktoolbarlabelaction.h: LGPL_v2
kdeui/kstdaction.h: LGPL_v2
kdeui/ktimezonewidget.cpp: LGPL_v2
kdeui/kmessagebox.h: LGPL_v2
kdeui/kpopupmenu.cpp: LGPL_v2
kdeui/kxmlguiclient.h: LGPL_v2
kdeui/kspelldlg.h: LGPL_v2
kdeui/ktoolbarbutton.h: LGPL_v2
kdeui/kdockwidget.h: LGPL_v2
kdeui/ktimezonewidget.h: LGPL_v2
kdeui/karrowbutton.h: LGPL_v2
kdeui/ksyntaxhighlighter.cpp: LGPL_v2
kdeui/kanimwidget.cpp: LGPL_v2
kdeui/kedittoolbar.cpp: LGPL_v2
kdeui/kpanelappmenu.h: MIT-style
kdeui/klistviewlineedit.h: LGPL_v2
kdeui/kstringvalidator.cpp: LGPL_v2
kdeui/ksconfig.h: LGPL_v2
kdeui/ktip.cpp: MIT-style
kdeui/kactivelabel.h: LGPL_v2
kdeui/kactioncollection.h: LGPL_v2
kdeui/kstdaction_p.h: LGPL_v2
kdeui/kiconviewsearchline.h: LGPL_v2
kdeui/kprogress.h: LGPL_v2
kdeui/kguiitem.h: LGPL_v2
kdeui/kdatewidget.h: LGPL_v2
kdeui/kxmlguifactory.h: LGPL_v2
kdeui/kwordwrap.cpp: LGPL_v2
kdeui/ksqueezedtextlabel.cpp: LGPL_v2
kdeui/kactionselector.h: LGPL_v2
kdeui/kiconviewsearchline.cpp: LGPL_v2
kdeui/kdcopactionproxy.cpp: LGPL_v2+
kdeui/kcursor.h: LGPL_v2
kdeui/klistview.cpp: LGPL_v2
kdeui/krootpixmap.h: LGPL
kdeui/kiconview.cpp: LGPL_v2
kdeui/kstringvalidator.h: LGPL_v2
kdeui/klistview.h: LGPL_v2
kdeui/kdetrayproxy/kdetrayproxy.cpp: GPL_v2+
kdeui/kcursor.cpp: LGPL_v2
kdeui/kmainwindow.h: LGPL_v2
kdeui/kwindowlistmenu.cpp: MIT-style
kdeui/kactionclasses.cpp: LGPL_v2
kdeui/karrowbutton.cpp: LGPL_v2
kdeui/kedittoolbar.h: LGPL_v2
kdeui/ktip.h: MIT-style
libkscreensaver
===============
Licensed under the LGPL v2+. The following exceptions apply:
libkscreensaver/kscreensaver_vroot.h: BSD-style
kdwidgets
=========
Licensed under the LGPL v2+
knewstuff
=========
Licensed under the LGPL v2+. The following exceptions apply:
knewstuff/knewstuffsecure.h: LGPL_v2
knewstuff/security.h: LGPL_v2
knewstuff/security.cpp: LGPL_v2
kdesu
=====
Licensed under the LGPL v2.
libltdl
=======
libltdl/ltdl.c: LGPL_v2+
libltdl/ltdl_win.h: LGPL_v2
libltdl/ltdl_win.c: LGPL_v2
libltdl/ltdl.h: LGPL_v2+
libltdl/ltdl.m4: GPL_v2+
libkmid
=======
Licensed under the LGPL v2+.
kioslave
========
Licensed under the LGPL v2+. The following exceptions apply:
kioslave/bzip2/kbzip2filter.h: LGPL_v2
kioslave/bzip2/kbzip2filter.cpp: LGPL_v2
kioslave/metainfo/metainfo.cpp: LGPL_v2
kioslave/metainfo/metainfo.h: LGPL_v2
kioslave/http/kcookiejar/tests/kcookiejartest.cpp: GPL_v2
kioslave/http/kcookiejar/kcookieserver.h: GPL_v2
kioslave/http/kcookiejar/kcookiewin.h: GPL_v2+
kioslave/http/kcookiejar/main.cpp: MIT-style
kioslave/http/kcookiejar/kcookiewin.cpp: MIT-style
kioslave/http/kcookiejar/kcookiejar.h: GPL_v2
kioslave/http/kcookiejar/kcookieserver.cpp: MIT-style
kioslave/http/kcookiejar/kcookiejar.cpp: MIT-style
kioslave/http/http_cache_cleaner.cpp: MIT-style
kioslave/gzip/kgzipfilter.cpp: LGPL_v2
kioslave/gzip/kgzipfilter.h: LGPL_v2
kdefx
=====
Licensed under the LGPL v2+. The following exceptions apply:
kdefx/kimageeffect.cpp: BSD-style
kdefx/kcpuinfo.cpp: BSD-style
kdefx/kstyle.cpp: LGPL_v2
kdefx/kcpuinfo.h: BSD-style
kdefx/kdrawutil.cpp: LGPL_v2
kdefx/kdrawutil.h: LGPL_v2
kdefx/kstyle.h: LGPL_v2
kdefx/kimageeffect.h: BSD-style
kresources
==========
Licensed under the LGPL v2+.
kimgio
======
Licensed under the LGPL v2+.
kded
====
Licensed under the LGPL v2. The following exceptions apply:
kded/kbuildservicetypefactory.h: LGPL_v2+
kded/kdedmodule.cpp: LGPL_v2+
kded/kbuildservicefactory.h: LGPL_v2+
kded/Makefile.am: LGPL_v2+
kded/kdedmodule.h: LGPL_v2+
kded/Makefile.in: LGPL_v2+
kded/kde-menu.cpp: LGPL_v2
kmdi
====
Licensed under the LGPL v2+. The following exceptions apply:
kmdi/kmdiguiclient.cpp: LGPL_v2
kmdi/kmdi/guiclient.cpp: LGPL_v2
kmdi/kmdi/dockcontainer.h: LGPL_v2
kmdi/kmdi/guiclient.h: LGPL_v2
kmdi/kmdifocuslist.cpp: LGPL_v2
kmdi/kmdidockcontainer.cpp: LGPL_v2
kmdi/kmdidockcontainer.h: LGPL_v2
kmdi/kmdifocuslist.h: LGPL_v2
kmdi/kmdiguiclient.h: LGPL_v2
kcert
=====
Licensed under the LGPL v2+.
kconf_update
============
Licensed under the LGPL v2+.
kparts
======
Licensed under the LGPL v2+.
kspell2
=======
Licensed under the LGPL v2.1+. The following exceptions apply:
kspell2/ui/configui.ui: LGPL
win
===
Licensed under the LGPL v2+. The following exceptions apply:
win/stdlib.h: LGPL_v2
win/netdb.h: LGPL_v2
win/uname.c: LGPL_v2
win/win32_utils.c: LGPL_v2
win/mmap.c: LGPL_v2
win/config.h: LGPL_v2
win/qeventloopex.cpp: LGPL_v2
win/kde_file_win.c: LGPL_v2
win/string.h: LGPL_v2
win/utime.h: LGPL_v2
win/ctype.h: LGPL_v2
win/win32_utils.h: LGPL_v2
win/in.h: GPL_v2+
win/win32_utils2.cpp: LGPL_v2
win/sys/mman.h: LGPL_v2
win/qeventloopex.h: LGPL_v2
win/bootstrap.cpp: LGPL_v2
win/signal.c: LGPL_v2
win/strings.h: LGPL_v2
win/kdelibs_export_win.h: LGPL_v2
win/pwd.h: BSD
win/kde_file_win.h: LGPL_v2
win/readdir.c and win/readdir.h are covered under the following
licensed:
----
/* ====================================================================
* The Apache Software License, Version 1.1
*
* Copyright (c) 2000-2002 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
* 4. The names "Apache" and "Apache Software Foundation" must
* not be used to endorse or promote products derived from this
* software without prior written permission. For written
* permission, please contact apache@apache.org.
*
* 5. Products derived from this software may not be called "Apache",
* nor may "Apache" appear in their name, without prior written
* permission of the Apache Software Foundation.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
*
* Portions of this software are based upon public domain software
* originally written at the National Center for Supercomputing Applications,
* University of Illinois, Urbana-Champaign.
*/
---
kio
===
Licensed under the LGPL v2+. The following exceptions apply:
kio/misc/ktelnetservice.cpp: GPL_v2+
kio/misc/kntlm/kntlm.cpp: LGPL_v2
kio/misc/kntlm/kntlm.h: LGPL_v2
kio/misc/kpac/kpac_dhcp_helper.c: LGPL_v2
kio/misc/kpac/dhcp.h: LGPL_v2
kio/misc/kfile/fileprops.cpp: LGPL_v2
kio/misc/kfile/fileprops.h: LGPL_v2
kio/misc/kdesasl/kdesasl.cpp: LGPL_v2
kio/misc/kdesasl/kdesasl.h: LGPL_v2
kio/misc/uiserver.h: LGPL_v2
kio/misc/kmailservice.cpp: LGPL_v2
kio/misc/uiserver.cpp: LGPL_v2
kio/bookmarks/kbookmarkimporter.cc: LGPL_v2
kio/bookmarks/kbookmark.cc: LGPL_v2
kio/bookmarks/kbookmarkexporter.cc: LGPL_v2
kio/bookmarks/kbookmarkimporter_ie.cc: LGPL_v2
kio/bookmarks/kbookmarkimporter_opera.cc: LGPL_v2
kio/bookmarks/kbookmarkdrag.cc: LGPL_v2
kio/bookmarks/kbookmarkexporter.h: LGPL_v2
kcmshell
========
kcmshell/main.h: LGPL_v2+
kcmshell/main.cpp: GPL_v2+
kcmshell: GPL_v2+ ,LGPL_v2+
kjs
===
Licensed under the LGPL v2+.
kio
===
kio/bookmarks/* :
Licensed under the LGPL v2+. The following exceptions apply:
kio/bookmarks/kbookmark.h: LGPL_v2
kio/bookmarks/kbookmarkimporter_crash.cc: LGPL_v2
kio/bookmarks/kbookmarkmanager.cc: LGPL_v2
kio/bookmarks/kbookmarkimporter_ns.h: LGPL_v2
kio/bookmarks/kbookmarkimporter_crash.h: LGPL_v2
kio/bookmarks/kbookmarkimporter_ns.cc: LGPL_v2
kio/bookmarks/kbookmarkimporter_ie.h: LGPL_v2
kio/bookmarks/kbookmarkimporter_kde1.h: LGPL_v2
kio/bookmarks/kbookmarkmanager.h: LGPL_v2
kio/bookmarks/kbookmarkimporter_kde1.cc: LGPL_v2
kio/bookmarks/kbookmarkimporter.h: LGPL_v2
kio/bookmarks/kbookmarkdrag.h: LGPL_v2
kio/bookmarks/kbookmarkimporter_opera.h: LGPL_v2
kio/kssl/*:
Licensed under the LGPL v2+. The following exceptions apply:
kio/kssl/kopenssl.cc: LGPL_v2
kio/kssl/kssl/cert_extract.c: GPL
kio/kioexec/main.cpp: GPL_v2+
kio/kio/*:
Licensed under the LGPL v2+. The following exceptions apply:
kio/kio/kremoteencoding.h: LGPL_v2
kio/kio/skipdlg.h: LGPL_v2
kio/kio/ksambashare.cpp: LGPL_v2
kio/kio/slaveinterface.cpp: LGPL_v2
kio/kio/kservicetype.cpp: LGPL_v2
kio/kio/ktar.cpp: LGPL_v2
kio/kio/kservicegroupfactory.cpp: LGPL_v2
kio/kio/kimageio.cpp: LGPL
kio/kio/kservice_p.h: LGPL_v2
kio/kio/statusbarprogress.cpp: LGPL_v2
kio/kio/ktrader.cpp: LGPL_v2
kio/kio/knfsshare.cpp: LGPL_v2
kio/kio/karchive.cpp: LGPL_v2
kio/kio/kservice.cpp: LGPL_v2
kio/kio/paste.cpp: LGPL_v2
kio/kio/yacc.h: GPL_v2+
kio/kio/kservicegroupfactory.h: LGPL_v2
kio/kio/kmimetypechooser.h: LGPL_v2
kio/kio/dataprotocol.cpp: LGPL_v2
kio/kio/slavebase.cpp: LGPL_v2
kio/kio/kautomount.h: LGPL_v2
kio/kio/progressbase.h: LGPL_v2
kio/kio/kar.h: LGPL_v2
kio/kio/global.h: LGPL_v2
kio/kio/ktar.h: LGPL_v2
kio/kio/kmimetyperesolver.h: LGPL_v2
kio/kio/paste.h: LGPL_v2
kio/kio/kzip.cpp: LGPL_v2
kio/kio/kfilterdev.h: LGPL_v2
kio/kio/global.cpp: LGPL_v2
kio/kio/kfileshare.h: LGPL_v2
kio/kio/slave.h: LGPL_v2
kio/kio/http_slave_defaults.h: LGPL_v2
kio/kio/kfilterdev.cpp: LGPL_v2
kio/kio/ioslave_defaults.h: LGPL_v2
kio/kio/kimageiofactory.h: LGPL
kio/kio/karchive.h: LGPL_v2
kio/kio/kuserprofile.cpp: LGPL_v2
kio/kio/kmimemagic.cpp: GPL ,LGPL_v2
kio/kio/observer.cpp: LGPL_v2
kio/kio/kdirwatch.h: LGPL_v2
kio/kio/kemailsettings.cpp: BSD-style
kio/kio/knfsshare.h: LGPL_v2
kio/kio/defaultprogress.h: LGPL_v2
kio/kio/dataslave.h: LGPL_v2
kio/kio/kzip.h: LGPL_v2
kio/kio/kprotocolmanager.h: LGPL_v2
kio/kio/kmimetype.h: LGPL_v2
kio/kio/dataprotocol.h: LGPL_v2
kio/kio/kdcopservicestarter.cpp: LGPL_v2
kio/kio/kimageio.h: LGPL
kio/kio/kprotocolinfo.h: LGPL_v2
kio/kio/kfilemetainfo.h: LGPL_v2
kio/kio/kremoteencoding.cpp: LGPL_v2
kio/kio/kdcopservicestarter.h: LGPL_v2
kio/kio/klimitediodevice.h: LGPL_v2
kio/kio/kfilterbase.h: LGPL_v2
kio/kio/kar.cpp: LGPL_v2
kio/kio/progressbase.cpp: LGPL_v2
kio/kio/pastedialog.cpp: LGPL_v2
kio/kio/slaveconfig.cpp: LGPL_v2
kio/kio/kfilterbase.cpp: LGPL_v2
kio/kio/kservicefactory.cpp: LGPL_v2
kio/kio/kmimetypechooser.cpp: LGPL_v2
kio/kio/slaveconfig.h: LGPL_v2
kio/kio/slave.cpp: LGPL_v2
kio/kio/kdirwatch.cpp: LGPL_v2
kio/kio/kshred.h: MIT-style
kio/kio/pastedialog.h: LGPL_v2
kio/kio/kshred.cpp: MIT-style
kio/kio/observer.h: LGPL_v2
kio/kio/statusbarprogress.h: LGPL_v2
kio/kio/metainfojob.cpp: LGPL_v2
kio/kio/kautomount.cpp: LGPL_v2
kio/kio/passdlg.h: LGPL_v2
kio/kio/kprotocolmanager.cpp: LGPL_v2
kio/kio/scheduler.cpp: LGPL_v2
kio/kio/ksambashare.h: LGPL_v2
kio/kio/skipdlg.cpp: LGPL_v2
kio/kio/kfileshare.cpp: LGPL_v2
kio/kio/kmimetype.cpp: LGPL_v2
kio/kio/kfilemetainfo.cpp: LGPL_v2
kio/kio/passdlg.cpp: LGPL_v2
kio/kio/ktrader.h: LGPL_v2
kio/kio/kservicegroup.cpp: LGPL_v2
kio/kio/kservicegroup.h: LGPL_v2
kio/kio/metainfojob.h: LGPL_v2
kio/kio/kemailsettings.h: BSD-style
kio/kio/kprotocolinfo.cpp: LGPL_v2
kio/kio/dataslave.cpp: LGPL_v2
kio/kio/kmessageboxwrapper.h: LGPL_v2
kio/kio/kservicetypefactory.cpp: LGPL_v2
kio/kio/defaultprogress.cpp: LGPL_v2
kio/kfile/*:
Licensed under the LGPL v2+. The following exceptions apply:
kio/kfile/kpreviewprops.cpp: LGPL_v2
kio/kfile/krecentdirs.cpp: BSD-style
kio/kfile/kurlbar.cpp: LGPL_v2
kio/kfile/kdirselectdialog.h: LGPL_v2
kio/kfile/kcustommenueditor.h: LGPL_v2
kio/kfile/kmetaprops.h: LGPL_v2
kio/kfile/kurlbar.h: LGPL_v2
kio/kfile/kfiletreeview.h: LGPL_v2
kio/kfile/kfilespeedbar.cpp: LGPL_v2
kio/kfile/kfilesharedlg.cpp: LGPL_v2
kio/kfile/krecentdocument.cpp: BSD-style
kio/kfile/krecentdirs.h: BSD-style
kio/kfile/kurlcombobox.h: LGPL_v2
kio/kfile/kurlcombobox.cpp: LGPL_v2
kio/kfile/kdirselectdialog.cpp: LGPL_v2
kio/kfile/kdiskfreesp.cpp: LGPL_v2
kio/kfile/kmetaprops.cpp: LGPL_v2
kio/kfile/kfilebookmarkhandler.cpp: LGPL_v2
kio/kfile/kfilebookmarkhandler.h: LGPL_v2
kio/kfile/kpreviewprops.h: LGPL_v2
kio/kfile/kcustommenueditor.cpp: LGPL_v2
kio/kfile/knotifydialog.h: GPL ,LGPL_v2
kio/kfile/knotifydialog.cpp: GPL ,LGPL_v2
kio/kfile/kfilemetainfowidget.cpp: LGPL_v2
kio/kfile/kfiletreebranch.h: LGPL_v2
kio/kfile/kfilespeedbar.h: LGPL_v2
kio/kfile/kfiletreeviewitem.h: LGPL_v2
kio/kfile/kfiletreeview.cpp: LGPL_v2
kio/kfile/kicondialog.cpp: LGPL_v2
kio/kfile/kacleditwidget.h: GPL ,LGPL_v2+
kio/kfile/kdiskfreesp.h: LGPL_v2
kio/kfile/kicondialog.h: LGPL_v2
kio/kfile/kfilemetainfowidget.h: LGPL_v2
kio/kfile/kfiletreeviewitem.cpp: LGPL_v2
kio/kfile/kfiletreebranch.cpp: LGPL_v2
kio/kfile/krecentdocument.h: BSD-style
kio/kfile/kfilesharedlg.h: LGPL_v2
kio/kfile/kurlrequester.h: LGPL_v2
kio/kfile/kurlrequester.cpp: LGPL_v2
kio/Makefile.am: LGPL_v2+
kio/kpasswdserver/kpasswdserver.cpp: GPL_v2
kio/kpasswdserver/kpasswdserver.h: GPL_v2
kio/Makefile.in: LGPL_v2+
kio/httpfilter/httpfilter.h: LGPL_v2
kdeprint
========
Licensed under the LGPL v2. The following exceptions apply:
kdeprint/ppdparser.cpp: GPL ,LGPL_v2+
kdeprint/fooparser.cpp: GPL ,LGPL_v2+
kdeprint/ppdparser.cpp.h: GPL_v2+
kdeprint/tests/* is licensed under the following license:
---
** This file is part of an example program for Qt. This example
** program may be used, distributed and modified without limitation.
---
DocBook Documentation is the following:
Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License,
Version 1.1 or any later version published by the Free Software
Foundation; with no Invariant Sections, with no Front-Cover Texts,
and with no Back-Cover Texts.
A copy of the GNU Free Documentation License (Version 1.2) is
located in /usr/share/common-licenses/GFDL-1.2
------------------------
kio/kssl/kssl/{cert_bundle,certbundle_Makefile} are originally
from mod_ssl. The following license applies:
LICENSE
The mod_ssl package falls under the Open-Source Software label
because it's distributed under a BSD-style license. The
detailed license information follows.
====================================================================
Copyright (c) 1998-2007 Ralf S. Engelschall. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following
disclaimer in the documentation and/or other materials
provided with the distribution.
3. All advertising materials mentioning features or use of this
software must display the following acknowledgment:
"This product includes software developed by
Ralf S. Engelschall <rse@engelschall.com> for use in the
mod_ssl project (http://www.modssl.org/)."
4. The names "mod_ssl" must not be used to endorse or promote
products derived from this software without prior written
permission. For written permission, please contact
rse@engelschall.com.
5. Products derived from this software may not be called "mod_ssl"
nor may "mod_ssl" appear in their names without prior
written permission of Ralf S. Engelschall.
6. Redistributions of any form whatsoever must retain the following
acknowledgment:
"This product includes software developed by
Ralf S. Engelschall <rse@engelschall.com> for use in the
mod_ssl project (http://www.modssl.org/)."
THIS SOFTWARE IS PROVIDED BY RALF S. ENGELSCHALL ``AS IS'' AND ANY
EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL RALF S. ENGELSCHALL OR
HIS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
OF THE POSSIBILITY OF SUCH DAMAGE.
====================================================================
|