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
|
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Source: http://scripts.irssi.org/
http://www.explodingferret.com/linux/irssi/logresume.pl
http://freenode.net/sasl/cap_sasl.pl
http://twirssi.com/twirssi.pl
http://svn.oftc.net/svn/oftc-tools/trunk/oper/akilluser.pl
http://midgar.cardboardium.com/~phyber/irssi/bantime.pl
http://svn.oftc.net/svn/oftc-tools/trunk/oper/challenge.pl
http://svn.oftc.net/svn/oftc-tools/trunk/user/irssi/nickident.pl
http://svn.oftc.net/svn/oftc-tools/trunk/user/i
http://midgar.cardboardium.com/~phyber/irssi/whitelist.pl
http://the-timing.nl/files/irssi-bitlbee/old/auto_away.pl
http://sente.cc/misc/tinyurl.pl
Files: debian/*
Copyright: 2002 Martin Loschwitz <madkiss@madkiss.org>
2004-2006 Florian Ernst <florian_ernst@gmx.net>
2007-2009 Christoph Berg <myon@debian.org>
2009-2010 Ryan Niebur <ryanryan52@gmail.com>
2009-2010 martin f. krafft <madduck@debian.org>
2012-2017 Daniel Echeverry <epsilon77@gmail.com>
License: GPL-2.0+
Files: update-scripts INDEX
Copyright: 2007 Christoph Berg <myon@debian.org>
License: GPL-2.0+
Files: scripts/8-ball.pl
Copyright: Patrik Jansson <gein@knivby.nu>
License: GPL-1.0
Files: scripts/0x0st.pl
Copyright: 2019 bw1 <bw1@aol.at>
License: ISC
Files: scripts/go2.pl
Copyright: 2017 cxreg <cxreg@pobox.com>
License: public-domain
Files: scripts/adv_windowlist.pl
Copyright: Nei <Nei@anti@conference.jabber.teamidiot.de>
License: GPL-2.0+
Files: scripts/desktop-notify.pl
Copyright: 2015 Felipe F. Tonello <eu@felipetonello.com>
License: GPL-3.0+
Files: scripts/tmux-nicklist-portable.pl
Copyright: Thiago de Arruda <tpadilha84@gmail.com>
License: WTFPL
Files: scripts/copy.pl
Copyright: 2020 bw1 <bw1@aol.at>
2020 vague <vague!#irssi@freenode>
License: public-domain
Files: scripts/Cirssi.pl
Copyright: 2009 Dani Soufi
License: GPL-3.0+
Files: scripts/tictactoe.pl
Copyright: 2019 bw1 <w1@aol.at>
License: LGPL-3+
Files: scripts/dtach_away.pl
Copyright: 2019 Antoine Beaupré <anarcat@debian.org>
License: GPL-2.0
Files: scripts/revolve.pl
Copyright: Ryan Freebern <ryan@freebern.org>
License: GPL-2.0+
Files: scripts/fpaste.pl scripts/theme.pl scripts/gitscriptassist.pl
Copyright: 2019-2020 bw1 <w1@aol.at>
License: public-domain
Files: scripts/urlwindow.pl
Copyright: zdleaf <leaf@zincldn.co.uk>
License: public-domain
Files: scripts/hideshow.pl scripts/dim_nicks.pl
Copyright: Nei <Nei@anti@conference.jabber.teamidiot.de>
License: GPL-2.0+
Files: scripts/bansearch.pl
Copyright: athan Handler <nathan.handler@gmail.com>
Joseph Price <pricechild@ubuntu.com>
License: GPL-3.0+
Files: scripts/pangotext.pl
Copyright: fprintf <fprintf@github.com>
License: GPL-2.0+
Files: scripts/track.pl
Copyright: Ziddy <DALnet>
License: public-domain
Files: scripts/email_msgs.pl
Copyright: 2010 Adam James <atj@pulsewidth.org.uk>
2015 Igor Duarte Cardoso <igordcard@gmail.com>
License: MIT
Files: scripts/kban-referrals.pl
Copyright: Linostar <linostar@sdf.org>
License: BSD-3-Clause
Files: scripts/fnotify.pl
Copyright: Tyler Abair
Thorsten Leemhuis <fedora@leemhuis.info>
Serge van Ginderachter <serge@vanginderachter.be>
Michael Davies
James Shubin
License: GPL-1.0
Files: scripts/talk.pl
Copyright: Alexander Mieland <dma147\@mieland-programming.deg>
License: GPL-2.0
Files: scripts/urlfeed.pl
Copyright: 2019 Jakub Jankowski <shasta@toxcorp.com>
License: GPL-2.0+
Files: scripts/oopsie.pl
Copyright: 2019 David Leadbeater <dgl@dgl.cx>
License: WTFPL
Files: scripts/query-connection-notifier.pl
Copyright: me <meh@schizofreni.co>
License: WTFPL
Files: scripts/follow.pl
Copyright: 2002 juerd <juerd@juerd.nl>
License: public-domain
Files: scripts/accent.pl
Copyright: 2003 Tamas SZERB <toma@rulez.org>
License: GPL-1.0
Files: scripts/act.pl scripts/kicks.pl scripts/ls.pl scripts/page-c0ffee.pl scripts/version-stat.pl
Copyright: 2002-2004-2006 c0ffee <c0ffee@penguin-breeder.org>
License: public-domain
Files: scripts/aidle.pl scripts/getop.pl scripts/opnotify.pl scripts/relm.pl scripts/scripthelp.pl scripts/sping.pl scripts/tlock.pl scripts/whois.pl
Copyright: 2002-2003 Maciek Freudenheim <fahren@bochnia.pl>
License: GPL-2.0+
Files: scripts/ai.pl scripts/ircops.pl scripts/niq.pl scripts/nm.pl scripts/noisyquery.pl scripts/repeat.pl scripts/rotator.pl scripts/thankop.pl
Copyright: 2001-2002 BC-bd <bd@bc-bd.org>
License: GPL-2.0
Files: scripts/akftp.pl
Copyright: 2003 ak <ocb23@freenet.removethis.de>
License: GPL-2.0+
Files: scripts/akilluser.pl
Copyright: 2006 Joerg Jaspert <joerg@debian.org>
2007 Christoph Berg <cb@df7cb.de>
License: GPL-2.0
Files: scripts/alame.pl
Copyright: Christian 'mordeth' Weber <mordeth@mac.com>
License: GPL-2.0
Files: scripts/anotherway.pl scripts/idletime.pl scripts/idonkey.pl scripts/ircsec.pl scripts/localize.pl scripts/multipaste.pl scripts/bestoiber.pl scripts/leodict.pl scripts/mood.pl scripts/morse.pl scripts/noteserve.pl scripts/ontv.pl scripts/chansearch.pl scripts/newsline.pl scripts/forward.pl scripts/openurl.pl scripts/crapbuster.pl scripts/poison.pl scripts/postpone.pl scripts/queryresume.pl scripts/quizmaster.pl scripts/tab_stop.pl scripts/target.pl scripts/topics.pl scripts/trustweb.pl scripts/verstats.pl scripts/xdccget.pl scripts/xetra.pl
Copyright: 2002-2003 Stefan Tomanek <stefan@pico.ruhr.de>
License: GPL-2.0
Files: scripts/antiplenk.pl
Copyright: 2003 Grigori Goronzy <greg@chown.ath.cx>
License: BSD-3-Clause
Files: scripts/apm.pl
Copyright: Alexander Wirt <formorer@formorer.de>
License: GPL-1.0
Files: scripts/armeija.pl scripts/ignoreoc.pl scripts/irccomplete.pl scripts/mailcheck_mbox_flux.pl
Copyright: 2002 Erkki Seppälä <flux@inside.org>
License: public-domain
Files: scripts/ascii.pl scripts/mkick.pl scripts/modelist.pl scripts/modelist-r.pl scripts/news.pl scripts/paste_derwan.pl scripts/paste-derwan.pl scripts/autocycle.pl scripts/nocollide.pl scripts/norepeat.pl scripts/awaylogcnt.pl scripts/shortenurl.pl scripts/synccheck.pl
Copyright: 2002-2004 Marcin Rozycki <derwan@irssi.pl>
License: GPL-2.0
Files: scripts/auto_away.pl
Copyright: 2004 Tijmen Ruizendaal <tijmen@fokdat.nl>
License: GPL-2.0
Files: scripts/autoaway.pl
Copyright: 2010 Larry "Vizzie" Daffner <vizzie@airmail.net>
License: BSD-3-Clause
Files: scripts/autochannel.pl scripts/dccmove.pl scripts/keepnick.pl scripts/log2ansi.pl scripts/query.pl scripts/upgradeinfo.pl scripts/uptime.pl
Copyright: 2001-2007 Peder Stray <peder@ninja.no>
License: GPL-1.0
Files: scripts/autolimit.pl scripts/on.pl scripts/remote.pl scripts/resize_split.pl scripts/servercomplete.pl scripts/sysinfo_dg.pl scripts/foreach_user.pl scripts/file.pl scripts/urlgrab.pl
Copyright: 2001-2010 David Leadbeater <dgl@dgl.cx>
License: GPL-2.0+
Files: scripts/autoopper.pl
Copyright: Toni Salomäki <Toni@IRCNet>
License: GPL-2.0+
Files: scripts/autorealname.pl
Copyright: 2003 Timo 'cras' Sirainen <tss@iki.fi>
2003 Bastian Blank <waldi@debian.org>
License: GPL-2.0+
Files: scripts/autorejoinpunish.pl
Copyright: 2002 Paul 'laaama' Raade <paul@raade.org>
License: BSD-3-Clause
Files: scripts/autoreminder.pl
Copyright: Terry Lewis <mrkennie@kryogenic.co.uk>
License: GPL-2.0+
Files: scripts/autoversion.pl
Copyright: 2002 Christian 'mordeth' Weber <chris@mac.ruhr.de>
License: GPL-2.0
Files: scripts/autovoice.pl
Copyright: aluser
License: GPL-1.0
Files: scripts/auto_whois.pl
Copyright: 2004 Andreas 'ads' Scherbaum <ads@ufp.de>
License: GPL-1.0
Files: scripts/autowhois.pl scripts/grep.pl scripts/ircgallery.pl scripts/logcompress.pl scripts/nickcolor.pl scripts/tracknick.pl
Copyright: 2002-2008 Timo 'cras' Sirainen <tss@iki.fi>
License: public-domain
Files: scripts/autowrap.pl
Copyright: 2007 Bitt Faulk <lxsfx3h02@sneakemail.com>
License: BSD-3-Clause
Files: scripts/away2web.pl
Copyright: 2003 Oskari 'Okko' Ojala <sorter.irssi-scripts@okko.net>
License: BSD-3-Clause
Files: scripts/awaybar.pl
Copyright: Simon Shine <simon@shine.eu.org>
License: public-domain
Files: scripts/nickserv.pl scripts/fakectcp.pl scripts/dancer_hide_477.pl scripts/fuckem.pl scripts/active_notify.pl scripts/freenode_filter.pl scripts/away_hilight_notice.pl scripts/kline_warning.pl scripts/active_notice.pl scripts/hignore.pl scripts/invitejoin.pl
Copyright: 2003-2008 Geert Hauwaerts <geert@irssi.org>
License: GPL-2.0+
Files: scripts/away.pl
Copyright: 2003 Jean-Yves Lefort <jylefort@brutele.be>
Larry "Vizzie" Daffner <vizzie@airmail.net>
Kees Cook <kc@outflux.net>
License: BSD-3-Clause
Files: scripts/awayproxy.pl scripts/ircgmessagenotify.pl
Copyright: BCOW <anttip@n0-life.com>
License: GPL-2.0
Files: scripts/away_verbose.pl
Copyright: 2004 Wouter Coekaerts <vipie@ulyssis.org>
Koenraad Heijlen <wouter@coekaerts.be>
License: GPL-2.0
Files: scripts/badword.pl
Copyright: 2002 Jan 'fissie' Sembera <fis@ji.cz>
License: GPL-2.0+
Files: scripts/bandwidth.pl scripts/hl.pl scripts/mysqlurllogger.pl scripts/sana.pl
Copyright: Riku Voipio <riku.voipio@iki.fi>
License: GPL-2.0
Files: scripts/ban.pl scripts/rk.pl scripts/sms.pl
Copyright: 2002 Maciek 'fahren' Freudenheim" <fahren@bochnia.pl>
License: GPL-2.0+
Files: scripts/bantime.pl
Copyright: 2007 David O'Rourke <phyber@#irssi>
License: GPL-2.0
Files: scripts/beepaway.pl
Copyright: Simon 'corecode' Schubert <corecode@corecode.ath.cx>
License: BSD-3-Clause
Files: scripts/beep_beep.pl
Copyright: 2002-2004 Ge0rG@IRCnet (Georg Lukas <georg@op-co.de>)
License: public-domain
Files: scripts/beep.pl scripts/exec_clean.pl scripts/hostname.pl scripts/pager.pl scripts/url.pl scripts/userhost.pl scripts/users.pl
Copyright: 2002-2003 Jean-Yves Lefort <jylefort@brutele.be>
License: BSD-3-Clause
Files: scripts/bgta.pl
Copyright: [^BgTA^] <raul@bgta.net>
License: public-domain
Files: scripts/binary.pl
Copyright: 2004 Riku Voipio <riku.voipio\@iki.fi>
License: GPL-2.0
Files: scripts/bitlbee_blist.pl scripts/bitlbee_join_notice.pl scripts/bitlbee_nick_change.pl scripts/bitlbee_tab_completion.pl
Copyright: 2006-2010 Tijmen "timing" Ruizendaal <tijmen.ruizendaal@gmail.com>
License: GPL-2.0
Files: scripts/bitlbee_typing_notice.pl
Copyright: 2004-2010 Tijmen "timing" Ruizendaal <tijmen.ruizendaal@gmail.com>
Matt "f0rked" Sparks <root@f0rked.com>
License: GPL-2.0
Files: scripts/blowjob.pl
Copyright: iMil <imil@gcu-squad.org>
Skid
Foxmask <odemah@phpfr.org>
reiffert
License: GPL-1.0
Files: scripts/bmi.pl
Copyright: Daniel K. Gebhart <dkg@con-fuse.org>
Marcus Rockert <darix@irssi.org>
License: GPL-2.0
Files: scripts/calc.pl scripts/guts.pl scripts/scriptinfo.pl
Copyright: 2002 Juerd <juerd@juerd.nl>
License: public-domain
Files: scripts/callerid.pl
Copyright: Daniel "dubkat" Reidy <dubkat@dubkat.org>
License: GPL-1.0
Files: scripts/cap_sasl.pl
Copyright: Michael Tharp and Jilles Tjoelker <gxti@partiallystapled.com>
License: GPL-1.0
Files: scripts/centericq.pl
Copyright: Joost "Garion" Vunderink <joost@carnique.nl>
License: public-domain
Files: scripts/cgrep.pl
Copyright: 2005 Pieter-Bas IJdens <irssi-scripts@nospam.mi4.org.uk>
License: GPL-2.0+
Files: scripts/challenge.pl
Copyright: 2006 Joerg Jaspert <joerg@debian.org>
License: GPL-2.0+
Files: scripts/chanact.pl scripts/nact.pl
Copyright: BC-bd <bd@bc-bd.org>
Veli <veli@piipiip.net>
License: GPL-2.0+
Files: scripts/chanfull_duden.pl scripts/chansync.pl
Copyright: 2003 Uwe 'duden' Dudenhoeffer <script@duden.eu.org>
License: GPL-2.0
Files: scripts/chanfull.pl
Copyright: 2003 Joern 'Wulf' Heissler <wulf@wulf.eu.org>
License: GPL-2.0
Files: scripts/chanpeak.pl
Copyright: 2001 Bjoern 'fuchs' Krombholz <bjkro@gmx.de>
License: public-domain
Files: scripts/chanshare.pl scripts/colorswap.pl scripts/country.pl scripts/hilightwin.pl scripts/noticemove.pl
Copyright: 2002 Timo 'cras' Sirainen <tss@iki.fi>
License: public-domain
Files: scripts/chansort.pl
Copyright: 2004 Peder Stray <peder@gzip.ninja.no>
License: GPL-1.0
Files: scripts/chops.pl scripts/defaultchanmode.pl scripts/friends_shasta.pl scripts/rainbow.pl scripts/vowels.pl
Copyright: Jakub Jankowski <shasta@atn.pl>
License: GPL-2.0+
Files: scripts/cleanpublic.pl
Copyright: 2003 Jorgen Tjerns <darkthorne\@samsen.com>
License: GPL-1.0
Files: scripts/clipboard.pl
Copyright: 2002 Dominic Battre <dominic@battre.de>
License: public-domain
Files: scripts/cloneprot.pl
Copyright: 2002 Rick (strlen) Jansen <strlen@shellz.nl>
License: GPL-1.0
Files: scripts/clones.pl
Copyright: 2001 From irssi source, modified by David Leadbeater
License: GPL-2.0+
Files: scripts/colorkick.pl scripts/topicsed.pl
Copyright: 2002-2004 Gabor Nyeki <bigmac@vim.hu>
License: public-domain
Files: scripts/connectcmd.pl
Copyright: 2002 Ian Peters <itp@ximian.com>
License: public-domain
Files: scripts/countdown.pl
Copyright: 2002 Mikko 'Quidz' Salmi <mikko@quidz.net>
License: public-domain
Files: scripts/cp1250_kick.pl
Copyright: 2002 Tomasz Poradowski <batonik@irc.pl>
License: GPL-1.0
Files: scripts/cron.pl
Copyright: 2003-2004 Piotr Krukowiecki <piotr@krukowiecki.net>
License: GPL-2.0
Files: scripts/cwho.pl
Copyright: 2002 Maciek 'fahren' Freudenheim <fahren@bochnia.pl>
License: GPL-2.0+
Files: scripts/dancer_forwardfix.pl
Copyright: 2004 Geert Hauwaerts <geert@irssi.org>
License: public-domain
Files: scripts/dau.pl
Copyright: 2008 Clemens Heidinger <heidinger@dau.pl>
License: BSD-3-Clause
Files: scripts/dcc_ip.pl
Copyright: 2004 ak5 <meister@hq.kroenk.de>
License: public-domain
Files: scripts/dccself.pl
Copyright: David Leadbeater <dgl@dgl.cx>
License: GPL-1.0
Files: scripts/dccstat.pl
Copyright: 2002 Matti 'qvr' Hiljanen" <matti@hiljanen.com>
License: GPL-2.0
Files: scripts/df.pl
Copyright: Jochem Meyers <jochem.meyers@gmail.com>
License: GPL-2.0+
Files: scripts/dice.pl
Copyright: Marcel Kossin <mkossin@enumerator.org>
License: GPL-2.0+
Files: scripts/dictcomplete.pl
Copyright: 2002 Juerd (first version: Timo Sirainen) <juerd@juerd.nl'>
License: public-domain
Files: scripts/dispatch.pl
Copyright: 2002 Sebastian 'yath' Schmidt <yathen@web.de>
License: GPL-2.0
Files: scripts/doc.pl
Copyright: 2001 Author FoxMaSk <foxmask@phpfr.org>
License: GPL-2.0+
Files: scripts/doublefilter.pl
Copyright: 2005 Karl Siegemund <q@spuk.de>
License: GPL-2.0
Files: scripts/eliza.pl scripts/itime.pl scripts/kernel.pl scripts/notonline.pl scripts/sana_cmd.pl
Copyright: Johan "Ion" Kiviniemi <ion@hassers.org>
License: public-domain
Files: scripts/emaildb.pl scripts/gimmie.pl
Copyright: PrincessLeia2 <lyz@princessleia.com>
License: GPL-2.0+
Files: scripts/eng_no_translate_dpryo.pl
Copyright: 2002 Harald Nesland <hnesland@samsen.com>
License: public-domain
Files: scripts/events.pl
Copyright: 2002 Taneli Kaivola <dist@sci.fi>
License: GPL-2.0
Files: scripts/figlet.pl
Copyright: 2002 Juerd <juerd@juerd.nl>
License: public-domain
Files: scripts/findbot.pl
Copyright: 2003 Thomas Karlsson <findbot@planet.eu.org>
License: GPL-2.0+
Files: scripts/find.pl
Copyright: 2002 Erkki Sepp�l� <flux@inside.org>
License: public-domain
Files: scripts/fleech.pl
Copyright: 2003 Piotr Krukowiecki <iotr@krukowiecki.net>
License: GPL-2.0
Files: scripts/foo.pl
Copyright: 2003 Juerd <juerd@juerd.nl>
Shiar <shiar@shiar.org>
License: public-domain
Files: scripts/fortune.pl
Copyright: 2004 Ivo Marino <eim@cpan.org>
License: public-domain
Files: scripts/friends_peder.pl
Copyright: 2002-2003 Peder Stray <peder@ninja.no>
License: GPL-1.0
Files: scripts/fserve.pl
Copyright: 2001 Martin Persson
2003 Andriy Gritsenko
2002-2004 Piotr Krukowiecki <piotr@pingu.ii.uj.edu.pl>
License: GPL-2.0+
Files: scripts/google.pl
Copyright: 2002 Oddbjorn Kvalsund <oddbjorn.kvalsund@hiof.no>
License: public-domain
Files: scripts/go.pl
Copyright: 2004 Nohar <nohar@freenode>
License: GPL-2.0+
Files: scripts/gpgvalidator.pl
Copyright: 2002 pallotron <pallotron@freaknet.org'>
License: GPL-2.0+
Files: scripts/hddtemp.pl
Copyright: 2004 Valentin Batz <vb@g-23.org>
License: GPL-2.0
Files: scripts/hello.pl
Copyright: 2005 Cybertinus <cybertinus@cybertinus.nl>
License: GPL-2.0
Files: scripts/hideauth.pl
Copyright: 2002 JamesOff <james@jamesoff.net>
License: GPL-2.0
Files: scripts/hide.pl scripts/stocks.pl
Copyright: 2002 Marcus Rueckert <darix@irssi.de>
License: public-domain
Files: scripts/highlite.pl
Copyright: 2003 Mantis <mantis@inta-link.com>
License: GPL-2.0
Files: scripts/history_search.pl scripts/mouse.pl scripts/showmode.pl
Copyright: Copyright 2005-2009 Wouter Coekaerts <coekie@irssi.org>
License: GPL-2.0+
Files: scripts/trigger.pl
Copyright: 2002-2010 Wouter Coekaerts <wouter@coekaerts.be>
License: GPL-2.0+
Files: scripts/hlbot.pl
Copyright: 2002 Veli Mankinen <veli@piipiip.net>
License: GPL-2.0
Files: scripts/identify-md5.pl scripts/imdb.pl
Copyright: 2003 Eric Jansen <chaos@sorcery.net>
License: GPL-1.0
Files: scripts/idlesince.pl
Copyright: 2002 Leszek Matok <lam@lac.pl>
License: GPL-1.0
Files: scripts/ignore_log.pl
Copyright: 2004 Dmitry "jsn" Kim <jason@nichego.net>
License: GPL-2.0+
Files: scripts/il.pl scripts/oidenty.pl
Copyright: 2003 Marcus Rueckert <darix@irssi.de>
License: BSD-3-Clause
Files: scripts/iMPD.pl
Copyright: 2004 Shawn Fogle (starz@antisocial.com)
License: GPL-2.0+
Files: scripts/ipupdate.pl
Copyright: 2006 xlony <anderfdez@yahoo.es'>
License: GPL-1.0
Files: scripts/irssiBlaster.pl
Copyright: 2003 legion <a.lepore@email.it>
License: GPL-2.0+
Files: scripts/isdn.pl
Copyright: 2004 Uli Baumann <f-zappa@irc-muenster.de>
License: GPL-1.0
Files: scripts/ixmmsa.pl
Copyright: 2006 Kristof Korwisi <kk@manoli.im-dachgeschoss.de>
License: GPL-2.0+
Files: scripts/joininfo.pl
Copyright: 2005 Pieter-Bas IJdens <irssi-scripts\@nospam.mi4.org.uk>
License: GPL-2.0+
Files: scripts/kblamehost.pl
Copyright: Filippo 'godog' Giunchedi <filippo@esaurito.net>
License: GPL-2.0+
Files: scripts/kenny.pl
Copyright: 2002 Gerfried Fuchs <alfie@channel.debian.de>
License: BSD-3-Clause
Files: scripts/kill_fake_gets.pl
Copyright: 2003 Piotr 'Cvbge' Krukowiecki
License: public-domain
Files: scripts/l33tmusic.pl
Copyright: Mikachu <Mikachu@quakenet|freenode|arcnet|oftc'>
License: GPL-1.0
Files: scripts/lastspoke.pl
Copyright: Sander Smeenk <irssi@freshdot.net'>
License: GPL-2.0+
Files: scripts/len.pl
Copyright: 2006 Clemens Heidinger <heidinger@dau.pl>
License: BSD-3-Clause
Files: scripts/licq.pl
Copyright: Jari Matilainen <jmn98015@student.mdh.se>
License: public-domain
Files: scripts/linkchan.pl scripts/seen.pl
Copyright: Marcin 'Qrczak' Kowalczyk <qrczak@knm.org.pl>
License: GPL-1.0
Files: scripts/listen.pl
Copyright: 2002 Csaba Nagy <lordpyre@negerno.hu>
License: GPL-2.0+
Files: scripts/loadavg.pl
Copyright: aki <aki@evilbsd.info>
License: public-domain
Files: scripts/logresume.pl
Copyright: 2008 ferret <ferret(tA)explodingferret(moCtoD), ferret on irc.freenode.net>
License: public-domain
Files: scripts/mailcheck_imap.pl
Copyright: David "Legooolas" Gardner <irssi@icmfp.com>
License: GPL-2.0
Files: scripts/mailcheck_pop3_kimmo.pl scripts/paste_kimmoke.pl
Copyright: 2002 Kimmo Lehto <kimmo@a-men.org>
License: public-domain
Files: scripts/mangle.pl
Copyright: 2004 Szymon Sokol <szymon@hell.pl>
License: GPL-2.0
Files: scripts/map.pl scripts/nickmix_pasky.pl scripts/operview.pl
Copyright: 2002 Petr Baudis <pasky@ji.cz>
License: GPL-2.0
Files: scripts/mass_hilight_blocker.pl
Copyright: 2004 Uli Baumann <f-zappa@irc-muenster.de>
License: GPL-1.0
Files: scripts/miodek.pl
Copyright: 2002 Leszek Matok <lam@lac.pl>
Andrzej Jagodzi�ski
License: GPL-2.0
Files: scripts/mkshorterlink.pl
Copyright: 2002 Gergely Nagy <algernon@bonehunter.rulez.org>
License: GPL-1.0
Files: scripts/mldonkey_bandwidth.pl
Copyright: 2003 Carsten Otto <c-otto@gmx.de>
License: GPL-2.0
Files: scripts/mpg123.pl scripts/ogg123.pl
Copyright: 2006 Ricardo Mesquita <ricardomesquita@netcabo.pt>
License: GPL-2.0
Files: scripts/my_beep.pl
Copyright: Remco den Breeje <stacium or stek (most of the time) @ quakenet.org>
License: public-domain
Files: scripts/mygoogle.pl scripts/myimdb.pl
Copyright: 2004 Tim Van Wassenhove <timvw@users.sourceforge.net>
License: BSD-3-Clause
Files: scripts/nickban.pl
Copyright: Roeland 'Trancer' Nieuwenhuis <irssi@trancer.nl>
License: public-domain
Files: scripts/nickident.pl
Copyright: 2007 Sami Haahtinen
Christoph Berg
License: public-domain
Files: scripts/nickignore.pl
Copyright: 2003 Kalle 'rpr' Marjola <marjola@iki.fi>
License: public-domain
Files: scripts/nicklist.pl scripts/special_complete.pl
Copyright: 2003-2004 Wouter Coekaerts <coekie@irssi.org>
License: GPL-2.0
Files: scripts/nickmix-c0ffee.pl
Copyright: 2006 c0ffee <c0ffee@penguin-breeder.org>
License: GPL-2.0
Files: scripts/nocaps.pl
Copyright: 2002 JamesOff <james@jamesoff.net>
Ion
License: public-domain
Files: scripts/nopl.pl
Copyright: 2005 Adam Wysocki <gophi@efnet.pl>
License: public-domain
Files: scripts/oops.pl
Copyright: bw1 and others <bw1@aol.at>
License: public-domain
Files: scripts/operit.pl
Copyright: 2002-2003 Petr Baudis <pasky@ji.cz>
License: BSD-3-Clause
Files: scripts/opnotice.pl
Copyright: 2002 Terje "xerath" Tjeldnes" <terje@darkrealm.no>
License: GPL-2.0+
Files: scripts/osd.pl
Copyright: 2004 Jeroen Coekaerts <vipie@ulyssis.org>
Koenraad Heijlen <jeroen@coekaerts.be>
License: BSD-3-Clause
Files: scripts/washnicks.pl
Copyright: 2002 ulbkold <solaris@sundevil.de>
License: GPL-1.0
Files: scripts/page_reeler.pl scripts/url_log.pl
Copyright: Thomas Graf <irssi@reeler.org>
License: GPL-2.0+
Files: scripts/paste_huggie.pl scripts/quizgr.pl scripts/quiz.pl
Copyright: 2002 Simon Huggins <huggie-irssi@earth.li>
License: GPL-2.0+
Files: scripts/pelix.pl
Copyright: Mankeli <mankeli@einari.org>
License: GPL-1.0
Files: scripts/people.pl
Copyright: 2002 Marcin 'Qrczak' Kowalczyk <qrczak@knm.org.pl>
Johan 'ion' Kiviniemi
License: GPL-1.0
Files: scripts/pggb_sound.pl
Copyright: Adam Duck <duck@cs.uni-frankfurt.de>
License: GPL-2.0
Files: scripts/phpdoc.pl
Copyright: 2002 Author FoxMaSk <odemah@phpfr.org>
License: GPL-2.0+
Files: scripts/ppl.pl
Copyright: 2001 Maciek Freudenheim <fahren@bochnia.pl>
2002 Marco d'Itri <md@linux.it>
License: GPL-2.0
Files: scripts/quiet.pl
Copyright: 2006 Christoph Berg <cb@df7cb.de>
License: BSD-2-Clause
Files: scripts/quitrand.pl
Copyright: Fernando J. Pereda <ferdy@ferdyx.org>
License: GPL-2.0
Files: scripts/q_username.pl
Copyright: Teemu \'jamov\' Koskinen <teemu.koskinen@mbnet.fi>
License: public-domain
Files: scripts/randaway.pl
Copyright: 2003 Lasse Karstensen <lkarsten@stud.ntnu.no>
License: public-domain
Files: scripts/randname.pl
Copyright: 2003 Legion <a.lepore@email.it>
License: public-domain
Files: scripts/romajibind.pl scripts/romaji.pl
Copyright: 2002 Victor Ivanov <v0rbiz@yahoo.com>
License: BSD-2-Clause
Files: scripts/rot13.pl
Copyright: 2003 Mariusz 'Craig' Ciesla <craig@fish.mac.edu.pl>
License: GPL-2.0
Files: scripts/schwaebisch.pl
Copyright: 2000-2003 Robert Scheck <irssi@robert-scheck.de>
License: GPL-2.0+
Files: scripts/screen_away.pl
Copyright: Andreas 'ads' Scherbaum <ads@wars-nicht.de>
License: GPL-2.0
Files: scripts/scroller.pl
Copyright: Demonen <demmydemon@gmail.com>
License: public-domain
Files: scripts/seti.pl
Copyright: 2002 optical <optical@linux.nu>
License: GPL-1.0
Files: scripts/showhilight.pl
Copyright: 2002 Pawe� 'Styx' Chuchma�a <styx@irc.pl>
License: GPL-2.0
Files: scripts/showhost.pl
Copyright: 2003 Michiel v Vaardegem <michielv@zeelandnet.nl>
License: GPL-1.0
Files: scripts/smiley.pl
Copyright: Jonne Piittinen <jip@loota.org>
License: public-domain
Files: scripts/snmpup.pl
Copyright: 2002 Rick (strlen) Jansen <strlen@shellz.nl>
License: GPL-2.0
Files: scripts/spambot.pl
Copyright: Daemon <Daemon@ircd.foxchat.net>
License: public-domain
Files: scripts/spellcheck.pl
Copyright: 2007 Jakub Jankowski <shasta@toxcorp.com>
License: GPL-2.0
Files: scripts/sysinfo277-irssi.pl
Copyright: 2002-2003 David Rudie <david@inexistent.com>
License: GPL-2.0
Files: scripts/sysinfoplus.pl
Copyright: 2002 Juerd <trn@iki.fi>
Tronic
License: public-domain
Files: scripts/thistory.pl
Copyright: 2002 Teemu Hjelt <temex@iki.fi>
License: GPL-2.0+
Files: scripts/timer.pl
Copyright: 2003 Kimmo Lehto <kimmo@a-men.org>
Marcus Rueckert <darix@irssi.org>
License: public-domain
Files: scripts/tinyurl.pl
Copyright: Stuart Powers <stuart.powers@gmail.com>
License: GPL-1.0
Files: scripts/title.pl
Copyright: 2002 Timo Sirainen <tss@iki.fi>
David Leadbeater <dgl@dgl.cx>
License: GPL-1.0
Files: scripts/topic-diff.pl
Copyright: Pascal Hakim <pasc@redellipse.net>
License: GPL-1.0
Files: scripts/trackbar.pl
Copyright: 2003 Peter 'kinlo' Leurs <peter@pfoe.be>
Uwe Dudenhoeffer
Michiel Holtkamp
Nico R. Wohlgemuth
Geert Hauwaerts
License: GPL-2.0+
Files: scripts/twirssi.pl
Copyright: 2012 Dan Boger <zigdon@gmail.com>
License: GPL-2.0
Files: scripts/tvmusor.pl
Copyright: 2003 Gabor Nyeki <bigmac@vim.hu>
License: BSDL
Files: scripts/twprompt.pl scripts/twsocials.pl scripts/twtopic.pl
Copyright: 2004 John Engelbrecht <jengelbr@yahoo.com>
License: public-domain
Files: scripts/UNIBG-autoident.pl
Copyright: 2003 Doncho N. Gunchev <mr_700@yahoo.com>
License: public-domain
Files: scripts/u.pl
Copyright: 2004 Michiel <michiel@dotgeek.org>
License: GPL-1.0
Files: scripts/urlplot.pl
Copyright: 2002 bwolf <bwolf@geekmind.org>
License: BSD-3-Clause
Files: scripts/warnkick.pl
Copyright: 2004 Svante Kvarnstr�m <svarre@undernet.org>
License: GPL-2.0+
Files: scripts/watch.pl
Copyright: 2003 ThEbUtChE <thebutche@interec.org>
License: BSD-3-Clause
Files: scripts/whitelist.pl
Copyright: 2007 David O'Rourke
Karl Siegemund <q@spuk.de>
License: GPL-2.0
Files: scripts/whos.pl
Copyright: Erik Fears <strtok@softhome.net>
License: GPL-1.0
Files: scripts/wilm.pl
Copyright: 2002 Leszek Matok <lam@lac.pl>
License: public-domain
Files: scripts/wkb.pl
Copyright: 2002 Matti 'qvr' Hiljanen <matti@hiljanen.com>
License: public-domain
Files: scripts/wlstat.pl
Copyright: BC-bd <bd@bc-bd.org>
Veli <veli@piipiip.net>
Timo 'cras' Sirainen <tss@iki.fi>
Wouter Coekaerts <wouter@coekaerts.be>
Nei <Nei@QuakeNet>
License: GPL-2.0+
Files: scripts/wordcompletition.pl
Copyright: 2004 Jesper Lindh <rakblad@midgard.liu.se>
License: public-domain
Files: scripts/wordscramble.pl
Copyright: 2003 Koenraad Heijlen <vipie@ulyssis.org>
License: GPL-2.0
Files: scripts/xauth.pl
Copyright: Toshio R. Spoor <t.spoor@gmail.com>
License: GPL-2.0+
Files: scripts/xcmd.pl
Copyright: 2003 Cl�ment "nodens" Hermann <clement.hermann@free.fr>
License: GPL-2.0+
Files: scripts/xlist.pl
Copyright: Matth�us 'JonnyBG' Wander <jbg@swznet.de>
License: GPL-2.0
Files: scripts/xmms2.pl scripts/xmms.pl
Copyright: 2006 Simon <simon@blueshell.dk>
License: public-domain
Files: scripts/xmmsinfo.pl
Copyright: 2002-2006 Tuomas Jormola <tjormola@cc.hut.fi>
License: GPL-2.0+
Files: scripts/xqf.pl
Copyright: 2004 mizerou <mizerou@telus.net>
License: GPL-2.0
License: WTFPL
This program is free software. It comes without any warranty, to
the extent permitted by applicable law. You can redistribute it
and/or modify it under the terms of the Do What The Fuck You Want
To Public License, Version 2, as published by Sam Hocevar. See
http://sam.zoy.org/wtfpl/COPYING for more details.
.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
.
Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
.
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
.
0. You just DO WHAT THE FUCK YOU WANT TO.
License: GPL-1.0
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 1.
.
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.
License: GPL-2.0
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.
.
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 St, Fifth Floor, Boston, MA
02110-1301 USA
.
On Debian GNU/Linux systems, the complete text of the GNU General
Public License can be found in `/usr/share/common-licenses/GPL-2'.
License: GPL-2.0+
This package 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 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 2 can be found in "/usr/share/common-licenses/GPL-2".
License: GPL-3.0+
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 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/>.
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. The name of the author may not be used to endorse or promote products
derived from this software without specific prior written permission.
.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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-2-Clause
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
.
Redistributions of source code must retain the above copyright notice, this list
of conditions and the following disclaimer.
.
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: BSDL
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 author 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 AUTHOR 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 AUTHOR 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: public-domain
Author states "Public Domain" which is interpreted as permiss
license
License: ISC
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
License: LGPL-3+
This package 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.
.
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
Lesser 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 Lesser General
Public License can be found in "/usr/share/common-licenses/LGPL-3".
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 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.
|