File: copyright

package info (click to toggle)
kio 5.116.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 41,496 kB
  • sloc: cpp: 123,468; xml: 528; ansic: 466; ruby: 60; sh: 21; makefile: 13
file content (998 lines) | stat: -rw-r--r-- 43,930 bytes parent folder | download | duplicates (2)
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
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: kio
Source: https://invent.kde.org/frameworks/kio
Upstream-Contact: kde-frameworks-devel@kde.org

Files: *
Copyright: 2006, Aaron J. Seigo <aseigo@kde.org>
           2021-2022, Ahmad Samir <a.samirh78@gmail.com>
           2008, Alex Merry <alex.merry@kdemail.net>
           2000, Alex Zepeda <zipzippy@sonic.net>
           2000-2005, Alexander Neundorf <neundorf@kde.org>
           2006, Allan Sandfeld Jensen <sandfeld@kde.org>
           2001, Anders Lund <anders.lund@lund.tdcadsl.dk>
           2003, Andras Mantia <amantia@freemail.hu>
           2007-2010, Andreas Hartmetz <ahartmetz@gmail.com>
           2017, Anthony Fieroni <bvbfan@abv.bg>
           2014, Arjun A.K. <arjunak234@gmail.com>
           2022, Carson Black <uhhadd@gmail.com>
           1999-2003, Carsten Pfeiffer <pfeiffer@kde.org>
           2007-2009, Christian Ehrlicher <ch.ehrlicher@gmx.de>
           2001-2015, Christoph Cullmann <cullmann@kde.org>
           2019, Christoph Feck <cfeck@kde.org>
           2003, Clarence Dang <dang@kde.org>
           2003, Cornelius Schumacher <schumacher@kde.org>
           1998, Daniel Grana <grana@ie.iwi.unibe.ch>
           2007-2018, Daniel Nicoletti <dantti12@gmail.com>
           2007, Daniel Nicoletti <mirttex@users.sourceforge.net>
           2015, David Edmundson <davidedmundson@kde.org>
           2013, David Faure <faure+bluesystems@kde.org>
           1999-2022, David Faure <faure@kde.org>
           2009, David Nolden <david.nolden.kdevelop@art-master.de>
           2000, David Smith <dsmith@algonet.se>
           2000-2010, Dawit Alemayehu <adawit at kde.org>
           2000, Dawit Alemayehu <adawit@kde.org
           2000-2013, Dawit Alemayehu <adawit@kde.org>
           1999-2002, Dirk Mueller <mueller@kde.org>
           2013-2014, Frank Reininghaus <frank78ac@googlemail.com>
           2006-2008, Fredrik Höglund <fredrik@kde.org>
           2001, Frerich Raabe <raabe@kde.org>
           2017, Friedrich W. H. Kossebau <kossebau@kde.org>
           2000-2003, George Staikos <staikos@kde.org>
           2001-2002, Hamish Rodda <rodda@kde.org>
           2019-2022, Harald Sitter <sitter@kde.org>
           2001-2006, Holger Freyther <freyther@kde.org>
           2018, Jaime Torres <jtamate@gmail.com>
           2002, Jan-Pascal van Best <janpascal@vanbest.org>
           2008, Jarosław Staniek <staniek@kde.org>
           2001-2003, Joseph Wenninger <jowenn@kde.org>
           2016-2018, Kai Uwe Broulik <kde@privat.broulik.de>
           2004, Kevin Ottens <ervin ipsquad net>
           2004, Kevin Ottens <ervin@ipsquad.net>
           2006-2007, Kevin Ottens <ervin@kde.org>
           2001, Malte Starostik <malte.starostik@t-online.de>
           2000-2003, Malte Starostik <malte@kde.org>
           2014, Mathias Tillman <master.homer@gmail.com>
           2000, Matthias Hoelzer-Kluepfel <hoelzer@kde.org>
           1997, Matthias Kalle Dalheimer <kalle@kde.org>
           2001-2006, Michael Brade <brade@kde.org>
           2009, Michael Pyne <michael.pyne@kdemail.net>
           2015, Montel Laurent <montel@kde.org>
           2019-2020, Méven Car <meven.car@kdemail.net>
           2007, Nick Shaforostoff <shafff@ukr.net>
           2022, Nicolas Fella <nicolas.fella@gmx.de>
           2007-2008, Norbert Frese <nf2@scheinwelt.at>
           2009, Patrick Spendrin <ps_ml@gmx.de>
           2006-2010, Peter Penz <peter.penz@gmx.at>
           2009, Peter Penz <peter.penz@kde.org>
           2007, Pino Toscano <pino@kde.org>
           1999-2000, Preston Brown <pbrown@kde.org>
           2008, Rafael Fernández López <ereslibre@kde.org>
           1997-2010, Richard Moore <rich@kde.org>
           2008, Roland Harnau <tau@gmx.eu>
           2010-2012, Rolf Eike Beer <kde@opensource.sf-tec.de>
           2004, Scott Wheeler <wheeler@kde.org>
           2005, Sean Harmer <sh@rama.homelinux.org>
           2009, Shaun Reich <shaun.reich@kdemail.net>
           2000, Simon Hausmann <hausmann@kde.org>
           1998-2002, Stephan Kulow <coolo@kde.org>
           Stephan Kulow <coolo@kde.org>
           2013, Szókovács Róbert <szo@szo.hu>
           2013, Teo Mrnjavac <teo@kde.org>
           2006-2007, Thiago Macieira <thiago@kde.org>
           2000-2007, Till Adam <adam@kde.org>
           2008-2009, Tobias Koenig <tokoe@kde.org>
           1998-2000, Torben Weis <weis@kde.org>
           1997, Torben Weis <weis@stud.uni-frankfurt.de>
           2007, Trolltech ASA
           2007-2009, Urs Wolfer <uwolfer@kde.org>
           1998-2009, Waldo Bastian <bastian@kde.org>
           2000, Wilco Greven <greven@kde.org>
           2000, Yves Arrouye <yves@realnames.com>
License: LGPL-2.0-or-later

Files: autotests/dataprotocoltest.cpp
       autotests/dataprotocoltest.h
Copyright: 2002-2003, Leo Savernik <l.savernik@aon.at>
           2012, Rolf Eike Beer <kde@opensource.sf-tec.de>
License: LGPL-2.0-or-later
Comment: No explicit SPDX license stanza, considering as covered by
 the main kio license.

Files: po/*
Copyright: 2007, KDE i18n Project for Vietnamese.
           1999-2011, Free Software Foundation, Inc.
           2003-2022, KDE euskaratzeko proiektuko arduraduna <xalba@ni.eus>
           2000, KDE Team.
           1999-2003, Meni Livne <livne@kde.org>
           2009, Rosetta Contributors and Canonical Ltd 2009
           2008-2010, This_file_is_part_of_KDE
           2001, translate.org.za
License: LGPL-2.0-or-later

Files: src/core/krecentdocument.cpp
       src/core/krecentdocument.h
       src/filewidgets/krecentdirs.cpp
       src/filewidgets/krecentdirs.h
       src/widgets/imagefilter.cpp
       src/widgets/imagefilter_p.h
Copyright: 2000, Daniel M. Duley <mosfet@kde.org>
           2006-2008, Fredrik Höglund <fredrik@kde.org>
           2021, Martin Tobias Holmedahl Sandsmark
           2002-2005, Maxim Shemanarev <http://www.antigrain.com>
           2022, Méven Car <meven.car@kdemail.net>
           2000, Waldo Bastian <bastian@kde.org>
           2006, Zack Rusin <zack@kde.org>
License: BSD-2-Clause

Files: cmake/FindACL.cmake
       cmake/FindGem.cmake
       cmake/FindGem.cmake.in
       cmake/FindGSSAPI.cmake
       cmake/FindRubyExe.cmake
       cmake/FindWsgidavExe.cmake
       tests/messageboxworker/CMakeLists.txt
Copyright: 2020, Ben Gruber <bengruber250@gmail.com>
           2022, Friedrich W. H. Kossebau <kossebau@kde.org>
           2019, Harald Sitter <sitter@kde.org>
           2006, Pino Toscano <toscano.pino@tiscali.it>
License: BSD-3-Clause

Files: autotests/kterminallauncherjobtest/konsole
       .gitlab-ci.yml
       tests/messageboxworker/messageboxworker.json
       tests/messageboxworker/README.md
Copyright: 2022, Friedrich W. H. Kossebau <kossebau@kde.org>
           none
           2020, Volker Krause <vkrause@kde.org>
License: CC0-1.0

Files: autotests/kfileplacesmodeltest.cpp
       autotests/kfileplacesviewtest.cpp
       src/ioslaves/trash/kinterprocesslock.cpp
       src/ioslaves/trash/kinterprocesslock.h
       src/ioslaves/trash/tests/lockingtest.cpp
       src/kpasswdserver/kpasswdserver.cpp
       src/kpasswdserver/kpasswdserver.h
Copyright: 2005, David Faure <faure@kde.org>
           2012, Dawit Alemayehu <adawit@kde.org>
           2020, Harald Sitter <sitter@kde.org>
           2007, Kevin Ottens <ervin@kde.org>
           2017, Renato Araujo Oliveira Filho <renato.araujo@kdab.com>
           2009, Tobias Koenig <tokoe@kde.org>
           2002, Waldo Bastian <bastian@kde.org>
License: GPL-2.0-only

Files: autotests/krecentdocumenttest.cpp
       autotests/krecentdocumenttest.h
       autotests/ksambashareprivatetest.cpp
       autotests/ksambashareprivatetest.h
       autotests/ksambasharetest.cpp
       autotests/ksambasharetest.h
       src/core/faviconscache.cpp
       src/core/faviconscache_p.h
       src/kpasswdserver/autotests/kpasswdservertest.cpp
       src/urifilters/ikws/searchproviderregistry.cpp
       src/urifilters/ikws/searchproviderregistry.h
Copyright: 2010-2017, David Faure <faure@kde.org>
           2012, Dawit Alemayehu <adawit@kde.org>
           2018, Kai Uwe Broulik <kde@broulik.de>
           2001, Malte Starostik <malte@kde.org>
           2022, Méven Car <meven.car@kdemail.net>
           2018, Stefan Brüns <stefan.bruens@rwth-aachen.de>
License: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL

Files: autotests/kurlcomboboxtest.cpp
       autotests/kurlcomboboxtest.h
       autotests/kurlnavigatortest.cpp
       autotests/kurlnavigatortest.h
       autotests/udsentry_benchmark.cpp
       autotests/urlutiltest.cpp
       src/gui/urlutil_p.h
       src/ioslaves/trash/kcmtrash.cpp
       src/ioslaves/trash/kcmtrash.h
       src/kcms/cookies/kcookiesmanagement.cpp
       src/kcms/cookies/kcookiesmanagement.h
       src/kcms/cookies/kcookiespolicies.cpp
       src/kcms/cookies/kcookiespolicies.h
       src/kcms/cookies/kcookiespolicyselectiondlg.cpp
       src/kcms/cookies/kcookiespolicyselectiondlg.h
       src/kcms/webshortcuts/main.cpp
       src/kcms/webshortcuts/main.h
       src/kioexec/main.cpp
       src/kioexec/main.h
       src/kioworkers/http/kcookiejar/kcookiewin.h
       src/schemehandlers/telnet/ktelnetservice.cpp
       src/urifilters/fixhost/fixhosturifilter.cpp
       src/urifilters/fixhost/fixhosturifilter.h
       src/urifilters/ikws/ikwsopts.cpp
       src/urifilters/ikws/ikwsopts.h
       src/urifilters/ikws/ikwsopts_p.h
       src/urifilters/ikws/kuriikwsfilter.cpp
       src/urifilters/ikws/kuriikwsfiltereng.cpp
       src/urifilters/ikws/kuriikwsfiltereng.h
       src/urifilters/ikws/kuriikwsfilter.h
       src/urifilters/ikws/kurisearchfilter.cpp
       src/urifilters/ikws/kurisearchfilter.h
       src/urifilters/ikws/searchprovider.cpp
       src/urifilters/ikws/searchproviderdlg.cpp
       src/urifilters/ikws/searchproviderdlg.h
       src/urifilters/ikws/searchprovider.h
       src/urifilters/localdomain/localdomainurifilter.cpp
       src/urifilters/localdomain/localdomainurifilter.h
       src/urifilters/shorturi/kshorturifilter.cpp
       src/urifilters/shorturi/kshorturifilter.h
       tests/kprotocolinfo_dumper.cpp
       tests/listjobtest.cpp
Copyright: 2015, Alejandro Fiestas Olivares <afiestas@kde.org>
           2001, Andreas Hochsteger <e9625392@student.tuwien.ac.at>
           1999-2015, David Faure <faure@kde.org>
           2000-2010, Dawit Alemayehu <adawit@kde.org>
           2014, Frank Reininghaus <frank78ac@googlemail.com>
           2015-2016, Gregor Mi <codestruct@posteo.org>
           2002-2007, Lubos Lunak <llunak@suse.cz>
           2000-2001, Malte Starostik <malte@kde.org>
           2000, Malte Starostik <starosti@zedat.fu-berlin.de>
           2000-2001, Marco Pinelli <pinmc@orion.it>
           2009, Nick Shaforostoff <shaforostoff@kde.ru>
           2008, Peter Penz <peter.penz@gmx.at>
           1999-2000, Simon Hausmann <hausmann@kde.org>
           2008, Tobias Koenig <tokoe@kde.org>
           1998-1999, Torben Weis <weis@kde.org>
           2008, Urs Wolfer <uwolfer@kde.org>
           1998-2001, Waldo Bastian <bastian@kde.org>
           Waldo Bastian <bastian@kde.org>
           1999-2000, Yves Arrouye <yves@realnames.com>
License: GPL-2.0-or-later

Files: src/kcms/cookies/kcookiesmain.cpp
       src/kcms/cookies/kcookiesmain.h
Copyright: David Faure <faure@kde.org>
           Waldo Bastian <bastian@kde.org>
License: GPL-2.0-or-later
Comment: No explicit SPDX license stanza, considering as covered by
 the same license as the rest of src/kcms/cookies.

Files: autotests/deletejobtest.cpp
       autotests/deletejobtest.h
       autotests/http/httpfiltertest.cpp
       autotests/kfilecustomdialogtest.cpp
       autotests/kfilecustomdialogtest.h
       autotests/kmountpointtest.cpp
       autotests/kmountpointtest.h
       autotests/kprotocolinfotest.cpp
       autotests/kurifiltertest.cpp
       autotests/kurifiltertest.h
       autotests/kurlcompletiontest.cpp
       autotests/listdirtest.cpp
       autotests/listdirtest.h
       src/core/commands_p.h
       src/core/dataprotocol.cpp
       src/core/dataprotocol_p.h
       src/core/dataworker.cpp
       src/core/dataworker_p.h
       src/core/filejob.cpp
       src/core/filejob.h
       src/core/global.cpp
       src/core/global.h
       src/core/http_worker_defaults.h
       src/core/idleslave.cpp
       src/core/idleslave.h
       src/core/ioworker_defaults.h
       src/core/job_error.cpp
       src/core/jobtracker.cpp
       src/core/jobtracker.h
       src/core/kdiskfreespaceinfo.cpp
       src/core/kdiskfreespaceinfo.h
       src/core/kioglobal_p.cpp
       src/core/kioglobal_p.h
       src/core/kioglobal_p_unix.cpp
       src/core/kioglobal_p_win.cpp
       src/core/kmountpoint.cpp
       src/core/kmountpoint.h
       src/core/knfsshare.cpp
       src/core/knfsshare.h
       src/core/kprotocolinfo.cpp
       src/core/kprotocolinfofactory.cpp
       src/core/kprotocolinfofactory_p.h
       src/core/kprotocolinfo.h
       src/core/kprotocolinfo_p.h
       src/core/kprotocolmanager.cpp
       src/core/kprotocolmanager.h
       src/core/kremoteencoding.cpp
       src/core/kremoteencoding.h
       src/core/ksambashare.cpp
       src/core/ksambashare.h
       src/core/metadata.cpp
       src/core/metadata.h
       src/core/scheduler.cpp
       src/core/scheduler_p.h
       src/core/slavebase.cpp
       src/core/slaveconfig.cpp
       src/core/slaveconfig.h
       src/core/slave.cpp
       src/core/slave.h
       src/core/slaveinterface.cpp
       src/core/slaveinterface_p.h
       src/core/udsentry.h
       src/core/usernotificationhandler.cpp
       src/core/usernotificationhandler_p.h
       src/filewidgets/kdiroperatordetailview.cpp
       src/filewidgets/kdiroperatordetailview_p.h
       src/filewidgets/kdiroperatoriconview.cpp
       src/filewidgets/kdiroperatoriconview_p.h
       src/filewidgets/kdirsortfilterproxymodel.cpp
       src/filewidgets/kdirsortfilterproxymodel.h
       src/filewidgets/kfilebookmarkhandler.cpp
       src/filewidgets/kfilebookmarkhandler_p.h
       src/filewidgets/kfilecustomdialog.cpp
       src/filewidgets/kfilecustomdialog.h
       src/filewidgets/kfilemetapreview.cpp
       src/filewidgets/kfilemetapreview_p.h
       src/filewidgets/kfileplaceeditdialog.cpp
       src/filewidgets/kfileplaceeditdialog.h
       src/filewidgets/kfileplacesitem.cpp
       src/filewidgets/kfileplacesitem_p.h
       src/filewidgets/kfileplacesmodel.cpp
       src/filewidgets/kfileplacesmodel.h
       src/filewidgets/kfileplacesview.cpp
       src/filewidgets/kfileplacesview.h
       src/filewidgets/kfileplacesview_p.h
       src/filewidgets/kimagefilepreview.cpp
       src/filewidgets/kimagefilepreview.h
       src/filewidgets/kpreviewwidgetbase.cpp
       src/kcms/proxy/kproxydlg.cpp
       src/kcms/proxy/kproxydlg.h
       src/kioslave/kioslave.cpp
       src/kioworkers/http/httpfilter.cpp
       src/kioworkers/http/httpfilter.h
       src/kioworkers/remote/kdedmodule/remotedirnotify.cpp
       src/kioworkers/remote/kdedmodule/remotedirnotify.h
       src/kioworkers/remote/kdedmodule/remotedirnotifymodule.cpp
       src/kioworkers/remote/kdedmodule/remotedirnotifymodule.h
       src/kntlm/kntlm.cpp
       src/kntlm/kntlm.h
       src/kpac/dhcp.h
       src/kpac/kpac_dhcp_helper.c
       src/widgets/kautomount.cpp
       src/widgets/kautomount.h
       src/widgets/kbuildsycocaprogressdialog.cpp
       src/widgets/kbuildsycocaprogressdialog.h
       src/widgets/kdesktopfileactions.cpp
       src/widgets/kdesktopfileactions.h
       src/widgets/kfile.cpp
       src/widgets/kfile.h
       src/widgets/kurlcombobox.cpp
       src/widgets/kurlcombobox.h
       src/widgets/kurlrequester.cpp
       src/widgets/kurlrequester.h
       src/widgets/paste.cpp
       src/widgets/pastedialog.cpp
       src/widgets/pastedialog_p.h
       src/widgets/paste.h
       src/widgets/pixmaploader.cpp
       src/widgets/pixmaploader.h
       src/widgets/skipdialog.cpp
       src/widgets/skipdialog.h
       tests/kdirmodeltest_gui.cpp
       tests/kemailclientlauncherjobtest_gui.cpp
       tests/kfilecustomdialogtest_gui.cpp
       tests/kfilecustomdialogtest_gui_select_dir_mode.cpp
       tests/kioworkertest.cpp
       tests/kioworkertest.h
       tests/kmountpoint_debug.cpp
       tests/kruntest.cpp
       tests/kruntest.h
       tests/kterminallauncherjobtest_gui.cpp
       tests/kurlrequestertest_gui.cpp
       tests/runapplication.cpp
Copyright: 2014, Alex Richardson <arichardson.kde@gmail.com>
           2006, Allan Sandfeld Jensen <kde@carewolf.com>
           2009-2010, Andreas Hartmetz <ahartmetz@gmail.com>
           1999-2003, Carsten Pfeiffer <pfeiffer@kde.org>
           1999-2021, David Faure <faure@kde.org>
           2000-2012, Dawit Alemayehu <adawit@kde.org>
           2008, Dirk Mueller <mueller@kde.org>
           2006, Dominic Battre <dominic@battre.de>
           2015-2022, Harald Sitter <sitter@kde.org>
           2004, Jan Schaefer <j_schaef@informatik.uni-kl.de>
           2008, Jarosław Staniek <staniek@kde.org>
           2022, Kai Uwe Broulik <kde@broulik.de>
           2007, Kevin Ottens <ervin@kde.org>
           2017, Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
           2004, Kévin Ottens <ervin ipsquad net>
           2002-2003, Leo Savernik <l.savernik@aon.at>
           2001, Lubos Lunak <l.lunak@kde.org>
           2001, Malte Starostik <malte@kde.org>
           1999, Mario Weilguni <mweilguni@sime.com>
           2013, Mark Gaiser <markg85@gmail.com>
           2015, Martin Blumenstingl <martin.blumenstingl@googlemail.com>
           2006, Martin Pool <mbp@canonical.com>
           2001, Martin R. Jones <mjones@kde.org>
           1999, Matt Koss <koss@miesto.sk>
           2019, Méven Car <meven.car@kdemail.net>
           2007, Norbert Frese <nf2@scheinwelt.at>
           2006-2007, Peter Penz <peter.penz@gmx.at>
           2008, Rafael Fernández López <ereslibre@kde.org>
           2010, Rodrigo Belem <rclbelem@gmail.com>
           2008, Sebastian Trug <trueg@kde.org>
           2000-2003, Stephan Kulow <coolo@kde.org>
           2004, Szombathelyi György <gyurco@freemail.hu>
           2013, Teo Mrnjavac <teo@kde.org>
           2003, Thiago Macieira <thiago.macieira@kdemail.net>
           2007, Thiago Macieira <thiago@kde.org>
           1999, Torben Weis <weis@kde.org>
           2000, Waldo Bastain <bastain@kde.org>
           1999-2003, Waldo Bastian <bastian@kde.org>
License: LGPL-2.0-only

Files: autotests/kcookiejar/kcookiejartest.cpp
       src/filewidgets/knewfilemenu.cpp
       src/filewidgets/knewfilemenu.h
       src/kioworkers/http/kcookiejar/kcookiejar.h
       src/kioworkers/http/kcookiejar/kcookieserver.h
       src/widgets/dndpopupmenuplugin.cpp
       src/widgets/dndpopupmenuplugin.h
Copyright: 1998-2009, David Faure <faure@kde.org>
           2009, Harald Hvaal <haraldhv@stud.ntnu.no>
           2003, Sven Leiber <s.leiber@web.de>
           1998-2004, Waldo Bastian <bastian@kde.org>
License: LGPL-2.0-only OR LGPL-3.0-only

Files: autotests/accessmanagertest.cpp
       autotests/applicationlauncherjobtest.cpp
       autotests/applicationlauncherjobtest.h
       autotests/commandlauncherjobtest.cpp
       autotests/commandlauncherjobtest.h
       autotests/deleteortrashjobtest.cpp
       autotests/dropjobtest.cpp
       autotests/filefiltertest.cpp
       autotests/ftpd
       autotests/ftptest.cpp
       autotests/http_jobtest.cpp
       autotests/kdiroperatortest.cpp
       autotests/kemailclientlauncherjobtest.cpp
       autotests/kemailclientlauncherjobtest.h
       autotests/kfilecopytomenutest.cpp
       autotests/kfilefiltercombotest.cpp
       autotests/kfilewidgettest.cpp
       autotests/knewfilemenutest.cpp
       autotests/kterminallauncherjobtest.cpp
       autotests/kterminallauncherjobtest.h
       autotests/kurlrequestertest.cpp
       autotests/mimetypefinderjobtest.cpp
       autotests/mimetypefinderjobtest.h
       autotests/mockcoredelegateextensions.h
       autotests/mockguidelegateextensions.h
       autotests/openurljobtest.cpp
       autotests/openurljobtest.h
       autotests/upurltest.cpp
       autotests/webdavtest.cpp
       src/core/askuseractioninterface.cpp
       src/core/askuseractioninterface.h
       src/core/kfileitemlistproperties.cpp
       src/core/kfileitemlistproperties.h
       src/core/mimetypefinderjob.cpp
       src/core/mimetypefinderjob.h
       src/core/namefinderjob.cpp
       src/core/namefinderjob.h
       src/core/untrustedprogramhandlerinterface.cpp
       src/core/untrustedprogramhandlerinterface.h
       src/filewidgets/kfilecopytomenu.cpp
       src/filewidgets/kfilecopytomenu.h
       src/filewidgets/kfilecopytomenu_p.h
       src/filewidgets/knameandurlinputdialog.cpp
       src/filewidgets/knameandurlinputdialog.h
       src/filewidgets/kurlnavigatormenu.cpp
       src/filewidgets/kurlnavigatormenu_p.h
       src/gui/applicationlauncherjob.cpp
       src/gui/applicationlauncherjob.h
       src/gui/commandlauncherjob.cpp
       src/gui/commandlauncherjob.h
       src/gui/dbusactivationrunner.cpp
       src/gui/dbusactivationrunner_p.h
       src/gui/kemailclientlauncherjob.cpp
       src/gui/kprocessrunner.cpp
       src/gui/kprocessrunner_p.h
       src/gui/kterminallauncherjob.cpp
       src/gui/kterminallauncherjob.h
       src/gui/openorexecutefileinterface.cpp
       src/gui/openorexecutefileinterface.h
       src/gui/openurljob.cpp
       src/gui/openurljob.h
       src/gui/openwithhandlerinterface.cpp
       src/gui/openwithhandlerinterface.h
       src/gui/systemd/dbustypes.h
       src/gui/systemd/systemdprocessrunner.cpp
       src/gui/systemd/systemdprocessrunner_p.h
       src/kiod/kiod_agent.mm
       src/kiod/kiod_main.cpp
       src/kioexec/kioexecd.cpp
       src/kioexec/kioexecd.h
       src/widgets/deleteortrashjob.cpp
       src/widgets/deleteortrashjob.h
       src/widgets/dropjob.cpp
       src/widgets/dropjob.h
       src/widgets/kabstractfileitemactionplugin.cpp
       src/widgets/kabstractfileitemactionplugin.h
       src/widgets/kfileitemactions.cpp
       src/widgets/kfileitemactions.h
       src/widgets/kfileitemactions_p.h
       src/widgets/koverlayiconplugin.cpp
       src/widgets/koverlayiconplugin.h
       src/widgets/widgetsaskuseractionhandler.cpp
       src/widgets/widgetsaskuseractionhandler.h
       src/widgets/widgetsopenorexecutefilehandler.cpp
       src/widgets/widgetsopenorexecutefilehandler.h
       src/widgets/widgetsopenwithhandler.cpp
       src/widgets/widgetsopenwithhandler.h
       src/widgets/widgetsuntrustedprogramhandler.cpp
       src/widgets/widgetsuntrustedprogramhandler.h
Copyright: 2020-2022, Ahmad Samir <a.samirh78@gmail.com>
           2016, Albert Astals Cid <aacid@kde.org>
           2015, Aleix Pol Gonzalez <aleixpol@kde.org>
           2021, Alexander Lohnau <alexander.lohnau@gmx.de>
           2019, Ben Gruber <bengruber250@gmail.com>
           1998-2021, David Faure <faure@kde.org>
           2020-2021, David Redondo <kde@david-redondo.de>
           2017, Elvis Angelaccio <elvis.angelaccio@kde.org>
           2008, George Goldberg <grundleborg@googlemail.com>
           2019-2022, Harald Sitter <sitter@kde.org>
           2020, Henri Chain <henri.chain@enioka.com>
           2022, Nicolas Fella <nicolas.fella@gmx.de>
           2015, Olivier Goffart <ogoffart@woboq.com>
           2008, Peter Penz <peter.penz@gmx.at>
           2009, Rahman Duran <rahman.duran@gmail.com>
           2017, René J.V. Bertin
           2010, Sebastian Trueg <trueg@kde.org>
License: LGPL-2.0-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL

Files: src/filewidgets/kstatusbarofflineindicator.cpp
       src/filewidgets/kstatusbarofflineindicator.h
Copyright: 2007, Will Stephenson <wstephenson@kde.org>
License: LGPL-2.0-only_WITH_Qt-Commercial-exception-1.0

Files: src/kntlm/des.cpp
       src/kntlm/des.h
Copyright: 2003, Nikos Mavroyanopoulos <nmav@hellug.gr>
           1988-1991, Phil Karn <karn@ka9q.net>
           Taken from libmcrypt (http://mcrypt.hellug.gr/lib/index.html)
License: LGPL-2.1-only_with_parts_under_GPL-3.0-or-later

Files: autotests/httpserver_p.cpp
       autotests/httpserver_p.h
Copyright: 2010-2016, Klaralvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
License: LGPL-2.1-only OR LGPL-3.0-only

Files: autotests/batchrenamejobtest.cpp
       autotests/privilegejobtest.cpp
       autotests/privilegejobtest.h
       src/core/batchrenamejob.cpp
       src/core/batchrenamejob.h
       src/core/desktopexecparser.h
       src/core/hostinfo.cpp
       src/core/hostinfo.h
       src/core/kpasswdserverclient.cpp
       src/core/kpasswdserverclient.h
       src/core/kpasswdserverloop.cpp
       src/core/kpasswdserverloop_p.h
       src/core/ksambasharedata.cpp
       src/core/ksambasharedata.h
       src/core/ksambasharedata_p.h
       src/core/ksambashare_p.h
       src/filewidgets/kurlnavigatorpathselectoreventfilter.cpp
       src/filewidgets/kurlnavigatorpathselectoreventfilter_p.h
       src/gui/kemailclientlauncherjob.h
       src/ioslaves/file/fdreceiver.cpp
       src/ioslaves/file/fdreceiver.h
       src/ioslaves/file/file_p.h
       src/ioslaves/file/kauth/fdsender.cpp
       src/ioslaves/file/kauth/fdsender.h
       src/ioslaves/file/kauth/filehelper.cpp
       src/ioslaves/file/kauth/filehelper.h
       src/ioslaves/file/sharefd_p.h
       src/kpasswdserver/kiod_kpasswdserver.cpp
Copyright: 2015, Alex Richardson <arichardson.kde@gmail.com>
           2017, Chinmoy Ranjan Pradhan <chinmoyrp65@gmail.com>
           2013-2021, David Faure <faure@kde.org>
           2020, Harald Sitter <sitter@kde.org>
           2018, Kai Uwe Broulik <kde@privat.broulik.de>
           2009, Michael Leupold <lemma@confuego.org>
           2010, Rodrigo Belem <rclbelem@gmail.com>
           2008, Roland Harnau <tau@gmx.eu>
License: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL

Files: po/ca/kio5.po
       po/ca@valencia/kio5.po
       po/uk/kio5.po
Copyright: 1998-2022, This_file_is_part_of_KDE
License: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL

Files: src/core/http_slave_defaults.h
       src/core/ioslave_defaults.h
       src/gui/compatheaders/KCoreUrlNavigator
       src/gui/compatheaders/kcoreurlnavigator.h
       src/widgets/kdynamicjobtracker.cpp
       src/widgets/kdynamicjobtracker_p.h
       templates/kioworker/src/%{APPNAMELC}.cpp
       templates/kioworker/src/%{APPNAMELC}.h
       templates/kioworker/src/mydatasystem.cpp
       templates/kioworker/src/mydatasystem.h
       tests/messageboxworker/messageboxworker.cpp
       tests/messageboxworker/messageboxworker.h
Copyright: 2022, Friedrich W. H. Kossebau <kossebau@kde.org>
           2021, Kai Uwe Broulik <kde@broulik.de>
           2008, Rob Scheepmaker <r.scheepmaker@student.utwente.nl>
           2010, Shaun Reich <shaun.reich@kdemail.net>
License: LGPL-2.1-or-later

Files: src/kioworkers/http/http_cache_cleaner.cpp
       src/kioworkers/http/kcookiejar/kcookiejar.cpp
       src/kioworkers/http/kcookiejar/kcookieserver.cpp
       src/kioworkers/http/kcookiejar/kcookiewin.cpp
       src/kioworkers/http/kcookiejar/main.cpp
Copyright: 2009, Andreas Hartmetz <ahartmetz@gmail.com>
           2000-2001, Dawit Alemayehu <adawit@kde.org>
           1998-2000, Waldo Bastian <bastian@kde.org>
License: MIT

Files: debian/*
Copyright: 2022, Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>
           2014, Scarlett Clark <scarlett@scarlettgatelyclark.com>
License: LGPL-2.0-or-later

License: BSD-2-Clause
 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.
 .
 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 HOLDER 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.

License: BSD-3-Clause
 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 copyright holder 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 HOLDER 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.

License: CC0-1.0
 To the extent possible under law, the author(s) have dedicated all
 copyright and related and neighboring rights to this software to the
 public domain worldwide. This software is distributed without any
 warranty.
 .
 You should have received a copy of the CC0 Public Domain Dedication
 along with this software. If not, see
 <https://creativecommons.org/publicdomain/zero/1.0/>.
 .
 On Debian systems, the complete text of the CC0 Public Domain
 Dedication can be found in `/usr/share/common-licenses/CC0-1.0’.

License: GPL-2.0-only
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; version 2.
 .
 This program 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
 General Public License for more details.
 .
 You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 02110-1301, USA. Also add information on how to contact you by
 electronic and paper mail.
 .
 On Debian systems, the complete text of the GNU General Public
 License version 2 can be found in
 `/usr/share/common-licenses/GPL-2’.

License: GPL-2.0-or-later
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 2 of the License, or
 (at your option) any later version.
 .
 This program 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
 General Public License for more details.
 .
 You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 02110-1301, USA. Also add information on how to contact you by
 electronic and paper mail.
 .
 On Debian systems, the complete text of the GNU General Public
 License version 2 can be found in
 `/usr/share/common-licenses/GPL-2’.

License: GPL-3.0-only
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GPL License as published by the Free
 Software Foundation, version 3.
 .
 This package 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
 General Public License for more details.
 .
 You should have received a copy of the GNU General Public License
 along with this program. If not, see <http://www.gnu.org/licenses/>.
 .
 On Debian systems, the complete text of the GNU General Public
 License version 3 can be found in
 `/usr/share/common-licenses/GPL-3’.

License: LGPL-2.0-only
 This library is free software; you can redistribute it and/or modify
 it under the terms of the GNU Library General Public License version
 2 as published by the Free Software Foundation.
 .
 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
 Library General Public License for more details.
 .
 You should have received a copy of the GNU Library General Public
 License along with this library; if not, write to the Free Software
 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 02110-1301, USA.
 .
 On Debian systems, the complete text of the GNU Library General
 Public License version 2 can be found in
 `/usr/share/common-licenses/LGPL-2’.

License: LGPL-2.0-only_WITH_Qt-Commercial-exception-1.0
 This library is free software; you can redistribute it and/or modify
 it under the terms of the GNU Library General Public License version
 2 as published by the Free Software Foundation.
 .
 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
 Library General Public License for more details.
 .
 You should have received a copy of the GNU Library General Public
 License along with this library; if not, write to the Free Software
 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 02110-1301, USA.
 .
 On Debian systems, the complete text of the GNU Library General
 Public License version 2 can be found in
 `/usr/share/common-licenses/LGPL-2’.
 .
 As a special exception, the copyright holder(s) give permission to
 link this program with the Qt Library (commercial or non-commercial
 edition), and distribute the resulting executable, without including
 the source code for the Qt library in the source distribution.

License: LGPL-2.0-or-later
 This library is free software; you can redistribute it and/or modify
 it under the terms of the GNU Library General Public License as
 published by the Free Software Foundation; either version 2 of the
 License, or (at your option)  any later version.
 .
 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
 Library General Public License for more details.
 .
 You should have received a copy of the GNU Library General Public
 License along with this library; if not, write to the Free Software
 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
 02110-1301, USA.
 .
 On Debian systems, the complete text of the GNU Library General
 Public License version 2 can be found in
 `/usr/share/common-licenses/LGPL-2’.

License: LGPL-2.1-only
 This library is free software; you can redistribute it and/or modify
 it under the terms of the GNU Lesser General Public License version
 2.1 as published by the Free Software Foundation.
 .
 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 Also add information on how to contact you by
 electronic and paper mail.
 .
 On Debian systems, the complete text of the GNU Lesser General
 Public License version 2.1 can be found in
 `/usr/share/common-licenses/LGPL-2.1’.

License: LGPL-2.1-or-later
 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; either version 2.1 of the
 License, or (at your option) any later version.
 .
 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 Also add information on how to contact you by
 electronic and paper mail.
 .
 On Debian systems, the complete text of the GNU Lesser General
 Public License version 2.1 can be found in
 `/usr/share/common-licenses/LGPL-2.1’.

License: LGPL-3.0-only
 This library is free software; you can redistribute it and/or modify
 it under the terms of the GNU Lesser General Public License version
 3 as published by the Free Software Foundation.
 .
 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, see
 <http://www.gnu.org/licenses/>.
 .
 On Debian systems, the complete text of the GNU Lesser General
 Public License version 3 can be found in
 `/usr/share/common-licenses/LGPL-3’.

License: LGPL-2.1-only_with_parts_under_GPL-3.0-or-later
 LGPL-2.1-only:
 .
 This library is free software; you can redistribute it and/or modify
 it under the terms of the GNU Lesser General Public License version
 2.1 as published by the Free Software Foundation.
 .
 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 Also add information on how to contact you by
 electronic and paper mail.
 .
 On Debian systems, the complete text of the GNU Lesser General
 Public License version 2.1 can be found in
 `/usr/share/common-licenses/LGPL-2.1’.
 .
 Software DES functions
 written 12 Dec 1986 by Phil Karn, KA9Q; large sections adapted from
 the 1977 public-domain program by Jim Gillogly
 Modified for additional speed - 6 December 1988 Phil Karn
 Modified for parameterized key schedules - Jan 1991 Phil Karn
 Callers now allocate a key schedule as follows:
 kn = (char (*)[8])malloc(sizeof(char) * 8 * 16);
 or
 char kn[16][8];
 .
 modified in order to use the libmcrypt API by Nikos Mavroyanopoulos
 All modifications are placed under the license of libmcrypt.
 .
 mcrypt is released under the GPL version 3 or later.
 .
 GPL-3.0-or-later:
 .
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation, either version 3 of the License, or
 (at your option) any later version.
 .
 This program 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
 General Public License for more details.
 .
 You should have received a copy of the GNU General Public License
 along with this program. If not, see
 <https://www.gnu.org/licenses/>.
 .
 On Debian systems, the complete text of the GNU General Public
 License version 3 can be found in
 `/usr/share/common-licenses/GPL-3’.

License: LicenseRef-KDE-Accepted-GPL
 This library is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 3 of the license or (at
 your option) at any later version that is accepted by the membership
 of KDE e.V. (or its successor approved by the membership of KDE
 e.V.), which shall act as a proxy as defined in Section 14 of
 version 3 of the license.
 .
 This program 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
 General Public License for more details.

License: LicenseRef-KDE-Accepted-LGPL
 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; either version 3 of the
 license or (at your option) any later version that is accepted by
 the membership of KDE e.V. (or its successor approved by the
 membership of KDE e.V.), which shall act as a proxy as defined in
 Section 6 of version 3 of the license.
 .
 This program 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
 General Public License for more details.

License: MIT
 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 (including the
 next paragraph) 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 OR COPYRIGHT HOLDERS
 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.