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 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577
|
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: weechat-scripts
Upstream-Contact: Sebastien Helleu <flashcode@flashtux.org>
Source: https://weechat.org/scripts/
Files: debian/*
Copyright: 2006-2007, Julien Louis <ptitlouis@sysif.net>
2007-2025, Emmanuel Bouthenot <kolter@debian.org>
License: GPL-3+
Files: guile/emote.scm
Copyright: 2015-2023, csmith <caleb [dot] smithnc [at] gmail [dot] com>
License: GPL-3+
Files: guile/karmastorm.scm
Copyright: 2016, Matt Soucy <msoucy [at] csh [dot] rit [dot] edu>
License: GPL-3+
Files: guile/gateway_rename.scm
Copyright: 2016-2017, Zephyr Quarto-Pellerin <zv [at] nxvr [dot] org>
License: GPL-3+
Files: guile/weechataboo.scm
Copyright: 2017-2018, Alvar <post [at] 0x21 [dot] biz>
License: GPL-3+
Files: javascript/autospurdo.js
Copyright: 2016, installgen2 <gen2 [at] kek [dot] club>
License: GPL-3+
Files: javascript/opall.js
Copyright: 2019, gagz <gagz [at] riseup [dot] net>
License: WTFPL
Files: lua/text_effects.lua
Copyright: 2010-2012, vaughan <balkrah [at] gmail [dot] com>
License: GPL-3+
Files: lua/mpdbitl.lua
Copyright: 2012, rumia <rumia [dot] youkai [dot] of [dot] dusk [at] gmail [dot] com>
License: WTFPL
Files: lua/http_item.lua
Copyright: 2013, xt <xt [at] bash [dot] no>
License: GPL-3+
Files: lua/oldswarner.lua
Copyright: 2013-2015, xt <xt [at] bash [dot] no>
License: GPL-3+
Files: lua/pastebuf.lua
Copyright: 2014, tomoe-mami <rumia [dot] youkai [dot] of [dot] dusk [at] gmail [dot] com>
License: WTFPL
Files: lua/urlselect.lua
Copyright: 2014-2020, tomoe-mami <rumia [dot] youkai [dot] of [dot] dusk [at] gmail [dot] com>
License: WTFPL
Files: lua/emoji.lua
Copyright: 2016-2020, xt <xt [at] bash [dot] no>
License: GPL-3+
Files: lua/nick_complete_wrapper.lua
Copyright: 2016, singalaut <rumia [dot] youkai [dot] of [dot] dusk [at] gmail [dot] com>
License: WTFPL
Files: perl/awaylog.pl
Copyright: 2005-2010, GolemJ <golemj [at] gmail [dot] com>
License: GPL-2+
Files: perl/launcher.pl
Copyright: 2009-2017, FlashCode <flashcode [at] flashtux [dot] org>
License: GPL-3+
Files: perl/mastermind.pl
Copyright: 2008-2009, FlashCode <flashcode [at] flashtux [dot] org>
License: GPL-3+
Files: perl/moc.pl
Copyright: 2006-2009, GolemJ <golemj [at] gmail [dot] com>
License: GPL-2+
Files: perl/sound.pl
Copyright: 2005-2009, FlashCode <flashcode [at] flashtux [dot] org>
License: GPL-3+
Files: perl/growl_net_notify.pl
Copyright: 2009, kinabalu <andrew [at] mysticcoders [dot] com>
License: GPL-2+
Files: perl/audacious.pl
Copyright: 2006-2009, DeltaS4 <deltas4 [at] gmail [dot] com>
License: GPL-2+
Files: perl/fortune.pl
Copyright: 2006-2009, ptitlouis <ptitlouis [at] sysif [dot] net>
License: public-domain
Files: perl/kernel.pl
Copyright: 2006-2011, ptitlouis <ptitlouis [at] sysif [dot] net>
License: public-domain
Files: perl/shuffle.pl
Copyright: 2009, Trashlord <dornenreich666 [at] gmail [dot] com>
License: public-domain
Files: perl/chanmon.pl
Copyright: 2009-2021, KenjiE20 <longbow [at] longbowslair [dot] co [dot] uk>
License: GPL-3+
Files: perl/rslap.pl
Copyright: 2009-2021, KenjiE20 <longbow [at] longbowslair [dot] co [dot] uk>
License: GPL-3+
Files: perl/highmon.pl
Copyright: 2009-2020, KenjiE20 <longbow [at] longbowslair [dot] co [dot] uk>
License: GPL-3+
Files: perl/jnotify.pl
Copyright: 2009-2021, nils_2 <weechatter [at] arcor [dot] de>
License: GPL-3+
Files: perl/rhythmbox.pl
Copyright: 2009, jnbek <jnbek [at] yahoo [dot] com>
License: GPL-2+
Files: perl/amarok2.pl
Copyright: 2009-2012, nils_2 <weechatter [at] arcor [dot] de>
License: GPL-3+
Files: perl/volumeter.pl
Copyright: 2009, nils_2 <weechatter [at] arcor [dot] de>
License: GPL-3+
Files: perl/kikoo.pl
Copyright: 2009, mRk <mrk [dot] dzey [at] gmail [dot] com>
License: GPL-2+
Files: perl/stats_bar.pl
Copyright: 2009-2018, wishbone <djwishbone [at] gmail [dot] com>
License: GPL-3+
Files: perl/nickregain.pl
Copyright: 2009-2010, KenjiE20 <longbow [at] longbowslair [dot] co [dot] uk>
License: GPL-3+
Files: perl/dellog.pl
Copyright: 2009-2010, nils_2 <weechatter [at] arcor [dot] de>
License: GPL-3+
Files: perl/yaaa.pl
Copyright: 2009, jnbek <jnbek1972 [at] gmail [dot] com>
License: GPL-3+
Files: perl/hotlist2extern.pl
Copyright: 2009-2021, nils_2 <weechatter [at] arcor [dot] de>
License: GPL-3+
Files: perl/buddylist.pl
Copyright: 2009-2025, nils_2 <weechatter [at] arcor [dot] de>
License: GPL-3+
Files: perl/strmon.pl
Copyright: 2010-2017, Stravy <stravy [at] gmail [dot] com>
License: GPL-3+
Files: perl/query_blocker.pl
Copyright: 2010-2025, rettub <rettub [at] gmx [dot] net>
License: GPL-3+
Files: perl/newsbar.pl
Copyright: 2010-2020, rettub <rettub [at] gmx [dot] net>
License: GPL-3+
Files: perl/filter_ext.pl
Copyright: 2010-2011, rettub <rettub [at] gmx [dot] net>
License: GPL-3+
Files: perl/foo_spam.pl
Copyright: 2010, Kovensky <diogomfranco [at] gmail [dot] com>
License: ISC
Files: perl/weerock.pl
Copyright: 2010, Sebastian Köhler <sebkoehler [at] whoami [dot] org [dot] uk>
License: Apache-2
Files: perl/mplex.pl
Copyright: 2010, rettub <rettub [at] gmx [dot] net>
License: GPL-3+
Files: perl/snarl_net_notify.pl
Copyright: 2010, Eric Harmon <spamme1 [at] nerisoft [dot] com>
License: GPL-2+
Files: perl/beat.pl
Copyright: 2010, nils_2 <weechatter [at] arcor [dot] de>
License: GPL-3+
Files: perl/ubus.pl
Copyright: 2010-2011, aep <aep-x-weechat [at] exys [dot] org>
License: GPL-3+
Files: perl/colorize_lines.pl
Copyright: 2010-2023, nils_2 <weechatter [at] arcor [dot] de>
License: GPL-3+
Files: perl/curiousignore.pl
Copyright: 2010-2020, nils_2 <weechatter [at] arcor [dot] de>
License: GPL-3+
Files: perl/wmiibar.pl
Copyright: 2010-2011, Sebastian Köhler <sebkoehler [at] whoami [dot] org [dot] uk>
License: Apache-2
Files: perl/thinklight_blink.pl
Copyright: 2010-2011, trenki <trechris [at] gmx [dot] net>
License: GPL-3+
Files: perl/pop3_mail.pl
Copyright: 2010-2021, nils_2 <weechatter [at] arcor [dot] de>
License: GPL-3+
Files: perl/bashorg.pl
Copyright: 2011, Trashlord <dornenreich666 [at] gmail [dot] com>
License: public-domain
Files: perl/expand_url.pl
Copyright: 2011-2019, nils_2 <weechatter [at] arcor [dot] de>
License: GPL-3+
Files: perl/menu.pl
Copyright: 2011-2020, Nei <ailin [at] devio [dot] us>
License: GPL-3+
Files: perl/sort_buffers.pl
Copyright: 2011-2013, nils_2 <weechatter [at] arcor [dot] de>
License: GPL-3+
Files: perl/seeks.pl
Copyright: 2011-2012, Fabien Dupont <fab [at] kafe-in [dot] net>
License: GPL-3+
Files: perl/listsort.pl
Copyright: 2011, ArZa <arza [at] arza [dot] us>
License: GPL-3+
Files: perl/sysinfo.pl
Copyright: 2011-2019, nils_2 <weechatter [at] arcor [dot] de>
License: BSD-2c
Files: perl/kickban.pl
Copyright: 2011-2014, ArZa <arza [at] arza [dot] us>
License: GPL-3+
Files: perl/perlexec.pl
Copyright: 2011, ArZa <arza [at] arza [dot] us>
License: GPL-3+
Files: perl/ragefaces.pl
Copyright: 2011, stfn <stfnmd [at] googlemail [dot] com>
License: GPL-3+
Files: perl/unset_unused.pl
Copyright: 2011-2019, nils_2 <weechatter [at] arcor [dot] de>
License: GPL-3+
Files: perl/ncmpcpp.pl
Copyright: 2011, stfn <stfnmd [at] googlemail [dot] com>
License: GPL-3+
Files: perl/topicsed.pl
Copyright: 2011, nils_2 <weechatter [at] arcor [dot] de>
License: GPL-3+
Files: perl/xclip.pl
Copyright: 2011, stfn <stfnmd [at] googlemail [dot] com>
License: GPL-3+
Files: perl/isgd.pl
Copyright: 2011-2014, stfn <stfnmd [at] googlemail [dot] com>
License: GPL-3+
Files: perl/snake.pl
Copyright: 2011, ArZa <arza [at] arza [dot] us>
License: GPL-3+
Files: perl/recoverop.pl
Copyright: 2012-2023, Ryuunosuke Ayanokouzi <i38w7i3 [at] yahoo [dot] co [dot] jp>
License: GPL-3+
Files: perl/yaurls.pl
Copyright: 2012, R1cochet <deltaxrho [at] gmail [dot] com>
License: GPL-3+
Files: perl/rhythmbus.pl
Copyright: 2012, R1cochet <deltaxrho [at] gmail [dot] com>
License: GPL-3+
Files: perl/chatters.pl
Copyright: 2012-2013, Asido <asido4 [at] gmail [dot] com>
License: GPL-3+
Files: perl/maildir.pl
Copyright: 2012, Yoran Heling <projects [at] yorhel [dot] nl>
License: MIT
Files: perl/coords.pl
Copyright: 2012-2018, Nei <ailin [at] devio [dot] us>
License: GPL-3+
Files: perl/join2fast.pl
Copyright: 2012-2013, Ratler <ratler [at] stderr [dot] eu>
License: GPL-3+
Files: perl/parse_relayed_msg.pl
Copyright: 2012-2022, w8rabbit <w8rabbit [at] i2pmail [dot] org>
License: GPL-3+
Files: perl/rssagg.pl
Copyright: 2012-2021, R1cochet <deltaxrho [at] gmail [dot] com>
License: GPL-3+
Files: perl/xterm_paste.pl
Copyright: 2012, Nei <ailin [at] devio [dot] us>
License: GPL-3+
Files: perl/spell_menu.pl
Copyright: 2013-2019, Nei <ailin [at] devio [dot] us>
License: GPL-3+
Files: perl/color_popup.pl
Copyright: 2013-2015, Nei <ailin [at] devio [dot] us>
License: GPL-3+
Files: perl/format_lines.pl
Copyright: 2013-2020, R1cochet <deltaxrho [at] gmail [dot] com>
License: GPL-3+
Files: perl/luanma.pl
Copyright: 2013-2021, Nei <ailin [at] devio [dot] us>
License: GPL-3+
Files: perl/notify_send.pl
Copyright: 2013-2017, shmibs <shmibs [at] gmail [dot] com>
License: GPL-3+
Files: perl/pushover.pl
Copyright: 2013-2017, stfn <stfnmd [at] gmail [dot] com>
License: GPL-3+
Files: perl/stalker.pl
Copyright: 2013-2021, nils_2 <weechatter [at] arcor [dot] de>
License: GPL-3+
Files: perl/spacer.pl
Copyright: 2013, Biohazard <notbiohazard [at] zoho [dot] com>
License: GPL-3+
Files: perl/mass_hl_blocker.pl
Copyright: 2013-2020, ArZa <arza [at] arza [dot] us>
License: GPL-3+
Files: perl/url_arza.pl
Copyright: 2013-2019, ArZa <arza [at] arza [dot] us>
License: GPL-3+
Files: perl/hl_here.pl
Copyright: 2013-2015, sascha <sasch9r [at] gmail [dot] com>
License: GPL-3+
Files: perl/jump_smart_closest.pl
Copyright: 2013-2018, ArZa <arza [at] arza [dot] us>
License: GPL-3+
Files: perl/cmdind.pl
Copyright: 2013, Nei <ailin [at] devio [dot] us>
License: GPL-3+
Files: perl/mnick.pl
Copyright: 2014-2019, CrazyCat <crazycat [at] c-p-f [dot] org>
License: GPL-3+
Files: perl/sort_arza.pl
Copyright: 2015, ArZa <arza [at] arza [dot] us>
License: GPL-3+
Files: perl/dzen_notifier.pl
Copyright: 2015, apendragon <cpandragon [at] gmail [dot] com>
License: Artistic-2
Files: perl/commorkers.pl
Copyright: 2015, Al-Caveman <toraboracaveman [at] gmail [dot] com>
License: GPL-3+
Files: perl/notifym.pl
Copyright: 2017-2019, dmitescu <d [dot] mitescu [at] jacobs-university [dot] de>
License: GPL-3+
Files: perl/atcomplete.pl
Copyright: 2016, xdg <xdg [at] xdg [dot] me>
License: Apache-2
Files: perl/foo.pl
Copyright: 2018, Juerd <site-weechat [dot] org [at] juerd [dot] nl>
License: public-domain
Files: perl/autonickprefix.pl
Copyright: 2018, Juerd <site-weechat [dot] org [at] juerd [dot] nl>
License: public-domain
Files: perl/ctrl_w.pl
Copyright: 2018-2021, Juerd <site-weechat [dot] org [at] juerd [dot] nl>
License: public-domain
Files: perl/pv_info.pl
Copyright: 2018-2020, ff0x <ff0x [at] infr [dot] io>
License: GPL-3+
Files: python/weetris.py
Copyright: 2008-2019, FlashCode <flashcode [at] flashtux [dot] org>
License: GPL-3+
Files: python/go.py
Copyright: 2009-2024, FlashCode <flashcode [at] flashtux [dot] org>
License: GPL-3+
Files: python/pagetitle.py
Copyright: 2008-2021, xororand <wolf [at] unfoog [dot] de>
License: public-domain
Files: python/vdm.py
Copyright: 2009-2012, FlashCode <flashcode [at] flashtux [dot] org>
License: GPL-3+
Files: python/whois_on_query.py
Copyright: 2009-2017, FlashCode <flashcode [at] flashtux [dot] org>
License: GPL-3+
Files: python/notify.py
Copyright: 2009-2020, lavaramano <lavaramano [at] gmail [dot] com>
License: GPL-2+
Files: python/kbtimeout.py
Copyright: 2009-2022, kinabalu <andrew [at] mysticcoders [dot] com>
License: GPL-3+
Files: python/title.py
Copyright: 2009-2017, xt <xt [at] bash [dot] no>
License: GPL-3+
Files: python/chanact.py
Copyright: 2009-2020, xt <xt [at] bash [dot] no>
License: GPL-3+
Files: python/urlbar.py
Copyright: 2009-2020, xt <xt [at] bash [dot] no>
License: GPL-3+
Files: python/urlgrab.py
Copyright: 2009-2022, drubin <drubin [at] smartcube [dot] co [dot] za>
License: GPL-2+
Files: python/bufsave.py
Copyright: 2009-2021, xt <xt [at] bash [dot] no>
License: GPL-3+
Files: python/histsearch.py
Copyright: 2009-2023, xt <xt [at] bash [dot] no>
License: GPL-3+
Files: python/kiloseconds.py
Copyright: 2009, Wraithan <XWraithanX [at] gmail [dot] com>
License: GPL-3+
Files: python/toggle_nicklist.py
Copyright: 2009-2012, xt <xt [at] bash [dot] no>
License: GPL-3+
Files: python/grep.py
Copyright: 2009-2022, m4v <lambdae2 [at] gmail [dot] com>
License: GPL-3+
Files: python/moc_control.py
Copyright: 2009-2020, SuperTux88 <info [at] benjaminneff [dot] ch>
License: GPL-2+
Files: python/spotify.py
Copyright: 2009-2019, xt <xt [at] bash [dot] no>
License: GPL-3+
Files: python/hlpvitem.py
Copyright: 2009-2014, FlashCode <flashcode [at] flashtux [dot] org>
License: GPL-3+
Files: python/bandwidth.py
Copyright: 2009-2020, xt <xt [at] bash [dot] no>
License: GPL-3+
Files: python/translate.py
Copyright: 2009-2013, FlashCode <flashcode [at] flashtux [dot] org>
License: GPL-3+
Files: python/text_replace.py
Copyright: 2009-2020, xt <xt [at] bash [dot] no>
License: GPL-3+
Files: python/autojoin_on_invite.py
Copyright: 2009-2022, xt <xt [at] bash [dot] no>
License: GPL-3+
Files: python/chanop.py
Copyright: 2009-2023, m4v <lambdae2 [at] gmail [dot] com>
License: GPL-3+
Files: python/imap_status.py
Copyright: 2009-2019, xt <xt [at] bash [dot] no>
License: GPL-3+
Files: python/screen_away.py
Copyright: 2009-2019, xt <xt [at] bash [dot] no>
License: GPL-3+
Files: python/infolist.py
Copyright: 2009-2018, FlashCode <flashcode [at] flashtux [dot] org>
License: GPL-3+
Files: python/buffer_autoclose.py
Copyright: 2009-2024, xt <xt [at] bash [dot] no>
License: GPL-3+
Files: python/announce_url_title.py
Copyright: 2009-2021, xt <xt [at] bash [dot] no>
License: GPL-3+
Files: python/nameday.py
Copyright: 2010-2012, FlashCode <flashcode [at] flashtux [dot] org>
License: GPL-3+
Files: python/shortenurl.py
Copyright: 2010-2019, sontek <sontek [at] gmail [dot] com>
License: GPL-3+
Files: python/upside_down.py
Copyright: 2010-2022, xt <xt [at] bash [dot] no>
License: GPL-3+
Files: python/completion.py
Copyright: 2010-2019, m4v <lambdae2 [at] gmail [dot] com>
License: GPL-3+
Files: python/alternatetz.py
Copyright: 2010-2022, Chmouel <chmouel [at] chmouel [dot] com>
License: GPL-3+
Files: python/dcc_antispam.py
Copyright: 2010-2012, FlashCode <flashcode [at] flashtux [dot] org>
License: GPL-3+
Files: python/auto_away.py
Copyright: 2010-2018, Specimen <spinifer [at] gmail [dot] com>
License: GPL-3+
Files: python/typing_counter.py
Copyright: 2010-2018, fauno <fauno [at] kiwwwi [dot] com [dot] ar>
License: GPL-3+
Files: python/colorize_nicks.py
Copyright: 2010-2023, xt <xt [at] bash [dot] no>
License: GPL-3+
Files: python/away_action.py
Copyright: 2010-2020, xt <xt [at] bash [dot] no>
License: GPL-3+
Files: python/buffer_autoset.py
Copyright: 2010-2021, FlashCode <flashcode [at] flashtux [dot] org>
License: GPL-3+
Files: python/postpone.py
Copyright: 2010-2021, Alexander Schremmer <alex [at] alexanderweb [dot] de>
License: GPL-3+
Files: python/bitlbee_typing_notice.py
Copyright: 2010-2020, Alexander Schremmer <alex [at] alexanderweb [dot] de>
License: GPL-3+
Files: python/prism.py
Copyright: 2010-2019, Alex Barrett <al [dot] barrett [at] gmail [dot] com>
License: WTFPL
Files: python/lastfm.py
Copyright: 2010-2022, Adam Saponara <saponara [at] gmail [dot] com>
License: GPL-3+
Files: python/cron.py
Copyright: 2010-2021, FlashCode <flashcode [at] flashtux [dot] org>
License: GPL-3+
Files: python/zerotab.py
Copyright: 2010-2013, i686 <lucian [dot] adamson [at] yahoo [dot] com>
License: GPL-3+
Files: python/jabber.py
Copyright: 2010-2013, FlashCode <flashcode [at] flashtux [dot] org>
License: GPL-3+
Files: python/lnotify.py
Copyright: 2010-2019, kevr <kevr [at] exdevelopment [dot] net>
License: GPL-3+
Files: python/snotify.py
Copyright: 2010-2022, Mrokii <s [dot] huebner [at] gmx [dot] org>
License: GPL-3+
Files: python/update_notifier.py
Copyright: 2010-2023, drubin <davidrub [at] gmail [dot] com>
License: GPL-3+
Files: python/confversion.py
Copyright: 2010-2021, drubin <davidrub [at] gmail [dot] com>
License: GPL-3+
Files: python/pybuffer.py
Copyright: 2010-2018, m4v <lambdae2 [at] gmail [dot] com>
License: GPL-3+
Files: python/xfer_setip.py
Copyright: 2010-2019, Mrokii <s [dot] huebner [at] gmx [dot] org>
License: GPL-3+
Files: python/automode.py
Copyright: 2010-2019, m4v <lambdae2 [at] gmail [dot] com>
License: GPL-3+
Files: python/leet.py
Copyright: 2011-2020, Lenoob <andypilate [at] gmail [dot] com>
License: BSD-3c
Files: python/cmdqueue.py
Copyright: 2011-2021, walk <KingPython [at] gmx [dot] com>
License: GPL-3+
Files: python/topicdiff.py
Copyright: 2011-2019, daf <daf [at] rhydd [dot] org>
License: GPL-3+
Files: python/clemenshow.py
Copyright: 2011-2024, Leigh MacDonald <leigh [dot] macdonald [at] gmail [dot] com>
License: GPL-3+
Files: python/purgelogs.py
Copyright: 2011-2021, nils_2 <weechatter [at] arcor [dot] de>
License: GPL-3+
Files: python/correction_completion.py
Copyright: 2011-2020, pSub <PascalWittmann [at] gmx [dot] net>
License: GPL-3+
Files: python/fileaway.py
Copyright: 2011-2019, javagamer <atomic [dot] quark [at] gmail [dot] com>
License: GPL-3+
Files: python/cmd_help.py
Copyright: 2011-2018, FlashCode <flashcode [at] flashtux [dot] org>
License: GPL-3+
Files: python/autoconnect.py
Copyright: 2011-2019, arno <arno [at] renevier [dot] net>
License: GPL-3+
Files: python/urlbuf.py
Copyright: 2011-2019, Jani KesÀnen <jani [dot] kesanen+weechat [at] gmail [dot] com>
License: GPL-3+
Files: python/spotify_nowplaying.py
Copyright: 2011-2022, agreeabledragon <recognize [at] me [dot] com>
License: GPL-3+
Files: python/chanpriority.py
Copyright: 2011-2012, Paul Barbu <paullik [dot] paul [at] gmail [dot] com>
License: GPL-3+
Files: python/floodit.py
Copyright: 2011-2012, FlashCode <flashcode [at] flashtux [dot] org>
License: GPL-3+
Files: python/arespond.py
Copyright: 2011-2022, Mrokii <s [dot] huebner [at] gmx [dot] org>
License: GPL-3+
Files: python/listbuffer.py
Copyright: 2011-2019, FiXato <fixato [at] gmail [dot] com>
License: MIT
Files: python/clone_scanner.py
Copyright: 2011-2024, FiXato <fixato [at] gmail [dot] com>
License: MIT
Files: python/autoauth.py
Copyright: 2011-2021, kolter <kolter [at] openics [dot] org>
License: GPL-2+
Files: python/infos.py
Copyright: 2011-2013, m4v <lambdae2 [at] gmail [dot] com>
License: GPL-3+
Files: python/minesweeper.py
Copyright: 2011-2012, FlashCode <flashcode [at] flashtux [dot] org>
License: GPL-3+
Files: python/urlserver.py
Copyright: 2011-2021, FlashCode <flashcode [at] flashtux [dot] org>
License: GPL-3+
Files: python/bufsize.py
Copyright: 2012-2017, nils_2 <weechatter [at] arcor [dot] de>
License: GPL-3+
Files: python/logsize.py
Copyright: 2012-2019, nils_2 <weechatter [at] arcor [dot] de>
License: GPL-3+
Files: python/customize_bar.py
Copyright: 2012-2018, nils_2 <weechatter [at] arcor [dot] de>
License: GPL-3+
Files: python/server_autoswitch.py
Copyright: 2012-2013, nils_2 <weechatter [at] arcor [dot] de>
License: GPL-3+
Files: python/quick_force_color.py
Copyright: 2012-2017, nils_2 <weechatter [at] arcor [dot] de>
License: GPL-3+
Files: python/keepnick.py
Copyright: 2012-2023, nils_2 <weechatter [at] arcor [dot] de>
License: GPL-3+
Files: python/unwanted_msg.py
Copyright: 2012-2022, nesthib <nesthib [at] tdct [dot] org>
License: GPL-3+
Files: python/samegame.py
Copyright: 2012, FlashCode <flashcode [at] flashtux [dot] org>
License: GPL-3+
Files: python/fish.py
Copyright: 2012-2023, David Flatz <david [at] upcs [dot] at>
License: GPL-3+
Files: python/weestats.py
Copyright: 2012-2019, FiXato <fixato [at] gmail [dot] com>
License: MIT
Files: python/gntpnotify.py
Copyright: 2012, ofan <odayfans [at] gmail [dot] com>
License: GPL-3+
Files: python/pyrnotify.py
Copyright: 2012-2018, Krister Svanlund <krister [dot] svanlund [at] gmail [dot] com>
License: GPL-3+
Files: python/apply_corrections.py
Copyright: 2012-2018, Raugturi <raugturi [at] gmail [dot] com>
License: GPL-3+
Files: python/notification_center.py
Copyright: 2012-2021, Sindre Sorhus <sindresorhus [at] gmail [dot] com>
License: MIT
Files: python/anotify.py
Copyright: 2012-2020, magnific0 <jacco [dot] geul [at] gmail [dot] com>
License: MIT
Files: python/noirccolors.py
Copyright: 2012-2020, Fredrick Brennan <fredrick [dot] brennan1 [at] gmail [dot] com>
License: public-domain
Files: python/irssinotifier.py
Copyright: 2013-2018, Caspar Clemens Mierau <launchpad [at] mierau [dot] eu>
License: GPL-3+
Files: python/biditext.py
Copyright: 2012, spacepluk <oscar [at] morante [dot] eu>
License: GPL-3+
Files: python/histman.py
Copyright: 2012-2021, nils_2 <weechatter [at] arcor [dot] de>
License: GPL-3+
Files: python/toggle_highlight.py
Copyright: 2013, Adam Spiers <weechat [at] adamspiers [dot] org>
License: GPL-3+
Files: python/spell_correction.py
Copyright: 2013-2024, nils_2 <weechatter [at] arcor [dot] de>
License: GPL-3+
Files: python/stick_buffer.py
Copyright: 2013-2017, nils_2 <weechatter [at] arcor [dot] de>
License: GPL-3+
Files: python/cmus.py
Copyright: 2013-2024, Isaac Ross <foxxysauce [at] gmail [dot] com>
License: GPL-2+
Files: python/weemustfeed.py
Copyright: 2013-2018, Bit Shift <bitshift [at] bigmacintosh [dot] net>
License: MIT
Files: python/weetweet.py
Copyright: 2013-2018, DarkDefender <darkdefende [at] gmail [dot] com>
License: GPL-3+
Files: python/mnotify.py
Copyright: 2013-2019, maker <maker [at] python [dot] it>
License: Beerware
Files: python/weeprowl.py
Copyright: 2013-2021, Josh Dick <josh [at] joshdick [dot] net>
License: GPL-2+
Files: python/queryman.py
Copyright: 2013-2023, nils_2 <weechatter [at] arcor [dot] de>
License: GPL-3+
Files: python/vimode.py
Copyright: 2013-2021, GermainZ <germanosz [at] gmail [dot] com>
License: GPL-3+
Files: python/tmux_env.py
Copyright: 2013-2021, agriffis <agriffis [at] n01se [dot] net>
License: GPL-3+
Files: python/autosavekey.py
Copyright: 2013-2019, nils_2 <weechatter [at] arcor [dot] de>
License: GPL-3+
Files: python/irssi_awaylog.py
Copyright: 2013-2023, henrik <henrik [at] affekt [dot] org>
License: GPL-3+
Files: python/undernet_totp.py
Copyright: 2014-2021, Ratler <ratler [at] stderr [dot] eu>
License: GPL-3+
Files: python/weemoticons.py
Copyright: 2014-2020, Ratler <ratler [at] stderr [dot] eu>
License: GPL-3+
Files: python/autosort.py
Copyright: 2014-2023, Maarten de Vries <maarten [at] de-vri [dot] es>
License: GPL-3+
Files: python/responsive_layout.py
Copyright: 2014-2019, Ratler <ratler [at] stderr [dot] eu>
License: GPL-3+
Files: python/btc_ticker.py
Copyright: 2014-2018, pr3d4t0r <github [at] cime [dot] net>
License: BSD-3c
Files: python/clemy.py
Copyright: 2014-2024, Darth-O-Ring <darthoring [at] gmail [dot] com>
License: GPL-3+
Files: python/triggerreply.py
Copyright: 2015-2022, Vlad Stoica <stoica [dot] vl [at] gmail [dot] com>
License: GPL-3+
Files: python/xfer_scp.py
Copyright: 2015-2017, Grant Bacon <btnarg [at] gmail [dot] com>
License: GPL-3+
Files: python/bitlbee_completion.py
Copyright: 2015-2023, Roger Duran <rogerduran [at] gmail [dot] com>
License: GPL-3+
Files: python/beinc.py
Copyright: 2016-2024, Blackmore <blackmore [at] pichove [dot] org>
License: GPL-3+
Files: python/fullwidth.py
Copyright: 2015-2019, GermainZ <germanosz [at] gmail [dot] com>
License: GPL-3+
Files: python/deadbeef_np.py
Copyright: 2015-2024, mwgg <m [at] mw [dot] gg>
License: MIT
Files: python/slack.py
Copyright: 2016-2024, Trygve Aaberge <trygveaa [at] gmail [dot] com>
License: MIT
Files: python/ircrypt.py
Copyright: 2016, IRCrypt team <sven [at] haardiek [dot] de>
License: GPL-3+
Files: python/automarkbuffer.py
Copyright: 2015, nils_2 <weechatter [at] arcor [dot] de>
License: GPL-3+
Files: python/hatwidget.py
Copyright: 2015, GermainZ <germanosz [at] gmail [dot] com>
License: GPL-3+
Files: python/unread_buffer.py
Copyright: 2015-2018, nils_2 <weechatter [at] arcor [dot] de>
License: GPL-3+
Files: python/grep_filter.py
Copyright: 2016-2021, Simmo Saan <simmo [dot] saan [at] gmail [dot] com>
License: GPL-3+
Files: python/chancomp.py
Copyright: 2016-2023, Jos Ahrens <buughost+weechat [at] gmail [dot] com>
License: MIT
Files: python/emoji_aliases.py
Copyright: 2016-2020, Mike Reinhardt <mreinhardt [at] gmail [dot] com>
License: BSD-2c
Files: python/whowas_timeago.py
Copyright: 2016, Jos Ahrens <buughost [at] gmail [dot] com>
License: MIT
Files: python/maskmatch.py
Copyright: 2016, Jos Ahrens <buughost [at] gmail [dot] com>
License: MIT
Files: python/mop.py
Copyright: 2016, Adam Saponara <saponara [at] gmail [dot] com>
License: GPL-3+
Files: python/emoji2alias.py
Copyright: 2016-2019, clouserw <clouserw [at] micropipes [dot] com>
License: MIT
Files: python/buffer_dmenu.py
Copyright: 2017-2021, Ferus <ferus [at] zodiaclabs [dot] org>
License: GPL-3+
Files: python/mqtt_notify.py
Copyright: 2016-2018, maethor <maethor [at] subiron [dot] org>
License: WTFPL
Files: python/unhighlight.py
Copyright: 2016-2020, xiagu <me [at] andrew [dot] rs>
License: GPL-3+
Files: python/mpv.py
Copyright: 2016-2021, teraflops <cprieto [dot] ortiz [at] gmail [dot] com>
License: Beerware
Files: python/buffer_bind.py
Copyright: 2017, Trevor 'tee' Slocum <tslocum [at] gmail [dot] com>
License: GPL-3+
Files: python/latex_unicode.py
Copyright: 2016-2021, Simmo Saan <simmo [dot] saan [at] gmail [dot] com>
License: GPL-3+
Files: python/twitch.py
Copyright: 2016-2024, mumixam <mumixam [at] gmail [dot] com>
License: GPL-3+
Files: python/url_olde.py
Copyright: 2016-2021, yeled <charlie [at] evilforbeginners [dot] com>
License: GPL-3+
Files: python/zncplayback.py
Copyright: 2016-2022, jazzpi <jasper [at] mezzo [dot] de>
License: GPL-3+
Files: python/aformat.py
Copyright: 2017-2018, Hairo R. Carela <hairocr8 [at] gmail [dot] com>
License: WTFPL
Files: python/tictactoe.py
Copyright: 2016, FlashCode <flashcode [at] flashtux [dot] org>
License: GPL-3+
Files: python/xfer_run_command.py
Copyright: 2016, Michael Kebe <michael [dot] kebe [at] gmail [dot] com>
License: GPL-3+
Files: python/gnome_screensaver_away.py
Copyright: 2016-2021, Gerard Ryan <gerard [at] ryan [dot] lt>
License: GPL-3+
Files: python/tts.py
Copyright: 2017-2021, raspbeguy <raspbeguy [at] hashtagueule [dot] fr>
License: MIT
Files: python/force_nick.py
Copyright: 2017-2018, Simmo Saan <simmo [dot] saan [at] gmail [dot] com>
License: GPL-3+
Files: python/detach_away.py
Copyright: 2017-2019, p3lim <weechat [at] p3lim [dot] net>
License: MIT
Files: python/automerge.py
Copyright: 2017-2018, Ricky Brent <ricky [at] rickybrent [dot] com>
License: GPL-2+
Files: python/giphy.py
Copyright: 2017-2018, butlerx <butler [at] redbrick [dot] dcu [dot] ie>
License: GPL-3+
Files: python/autoconf.py
Copyright: 2017-2021, manu <manu [at] koell [dot] li>
License: GPL-3+
Files: python/i3lock_away.py
Copyright: 2017-2020, bebr <bertrand [dot] ciroux [at] gmail [dot] com>
License: GPL-3+
Files: python/buffer_autohide.py
Copyright: 2017-2019, Matthias Adamczyk <mail [at] notmatti [dot] me>
License: MIT
Files: python/emojis.py
Copyright: 2018, jmui <jmui [at] jmui [dot] net>
License: GPL-3+
Files: python/autobump.py
Copyright: 2018-2019, dkess <daniel [at] dkess [dot] me>
License: GPL-3+
Files: python/xdccq.py
Copyright: 2018-2023, flagg <shinigami_flagg [at] yahoo [dot] it>
License: GPL-3+
Files: python/url_hint.py
Copyright: 2018-2019, oakkitten <oakkitten [at] users [dot] noreply [dot] github [dot] com>
License: MIT
Files: python/topicdiff_alt.py
Copyright: 2018, Juerd <site-weechat [dot] org [at] juerd [dot] nl>
License: public-domain
Files: python/execbot.py
Copyright: 2018, TxGVNN <txgvnn [at] gmail [dot] com>
License: GPL-3+
Files: python/chanotify.py
Copyright: 2018, manzerbredes <manzerbredes [at] gmx [dot] com>
License: GPL-3+
Files: python/selfcensor.py
Copyright: 2018, tx <trqx [at] goat [dot] si>
License: MIT
Files: python/weenotify.py
Copyright: 2018, Armageddon <eliaellazkani+weechat [at] gmail [dot] com>
License: BSD-2c
Files: python/collapse_channel.py
Copyright: 2019-2024, nils_2 <weechatter [at] arcor [dot] de>
License: GPL-3+
Files: python/aesthetic.py
Copyright: 2019-2020, Wojciech Siewierski <wojciech [dot] siewierski [at] onet [dot] pl>
License: GPL-3+
Files: python/himan.py
Copyright: 2019, px-havok <px [at] havok [dot] org>
License: GPL-3+
Files: python/last_written.py
Copyright: 2019, nils_2 <weechatter [at] arcor [dot] de>
License: GPL-3+
Files: python/log.py
Copyright: 2019, nils_2 <weechatter [at] arcor [dot] de>
License: GPL-3+
Files: python/glitter.py
Copyright: 2019, jotham <jotham [dot] read [at] gmail [dot] com>
License: GPL-3+
Files: python/weejoin.py
Copyright: 2020, KittyKatt <kittykatt [at] teknik [dot] io>
License: BSD-2c
Files: python/buffer_open.py
Copyright: 2019-2021, Simmo Saan <simmo [dot] saan [at] gmail [dot] com>
License: GPL-3+
Files: python/anti_password.py
Copyright: 2021, FlashCode <flashcode [at] flashtux [dot] org>
License: GPL-3+
Files: python/styurl.py
Copyright: 2021, Cole Helbling <cole [dot] e [dot] helbling [at] outlook [dot] com>
License: GPL-3+
Files: python/lossage.py
Copyright: 2021, GermainZ <germanosz [at] gmail [dot] com>
License: GPL-3+
Files: python/emoji2ascii.py
Copyright: 2021, eyjhb <eyjhbb [at] gmail [dot] com>
License: GPL-3+
Files: python/weefusables.py
Copyright: 2021, nils_2 <weechatter [at] arcor [dot] de>
License: GPL-3+
Files: python/weenotifier.py
Copyright: 2021-2024, Mohan R <mohan43u [at] gmail [dot] com>
License: BSD-2c
Files: python/reop.py
Copyright: 2022, Jeroen F.J. Laros <jlaros [at] fixedpoint [dot] nl>
License: MIT
Files: python/maze.py
Copyright: 2022, FlashCode <flashcode [at] flashtux [dot] org>
License: GPL-3+
Files: python/openbsd_privdrop.py
Copyright: 2022-2024, Alvar Penning <post [at] 0x21 [dot] biz>
License: ISC
Files: python/digraph.py
Copyright: 2023, narodnik <policeterror [at] dyne [dot] org>
License: GPL-3+
Files: python/wee_most.py
Copyright: 2023, Damien Tardy-Panis <damien [dot] dev [at] tardypad [dot] me>
License: GPL-3+
Files: python/sarcasm.py
Copyright: 2023, Fsaev <fredrik [at] saevland [dot] com>
License: GPL-3+
Files: python/greentext.py
Copyright: 2023, AGVXOV <agvxov [at] gmail [dot] com>
License: public-domain
Files: python/kitty_notifications.py
Copyright: 2024, Emma Eilefsen Glenna <emma [at] eilefsen [dot] net>
License: MIT
Files: python/irccloud_avatar_link.py
Copyright: 2024, Jesse McDowell <jessemcd1 [at] gmail [dot] com>
License: GPL-3+
Files: ruby/url_shorten.rb
Copyright: 2008-2013, Daniel Bretoi <daniel [at] bretoi [dot] com>
License: BSD-2c
Files: ruby/mpdspam.rb
Copyright: 2009, linopolus <linopolus [at] xssn [dot] at>
License: BSD-2c
Files: ruby/myuptime.rb
Copyright: 2009, SuperTux88 <info [at] benjaminneff [dot] ch>
License: GPL-2+
Files: ruby/minbif_typing_notice.rb
Copyright: 2010, CissWit <cisswit [at] 6-8 [dot] fr>
License: GPL-3+
Files: ruby/weefish.rb
Copyright: 2010-2012, tp <tp [at] unreal [dot] dk>
License: GPL-3+
Files: ruby/amqp_notify.rb
Copyright: 2011, mahlon <mahlon [at] martini [dot] nu>
License: BSD-3c
Files: ruby/xmms2.rb
Copyright: 2011, Ćukasz Michalik <lmi [at] ift [dot] uni [dot] wroc [dot] pl>
License: GPL-2
Files: ruby/hilites.rb
Copyright: 2011-2014, crshd <christian [at] crshd [dot] cc>
License: MIT
Files: ruby/input_lock.rb
Copyright: 2011-2022, mahlon <mahlon [at] martini [dot] nu>
License: BSD-3c
Files: ruby/gntp_notify.rb
Copyright: 2011-2012, tinifni <jandersonis [at] gmail [dot] com>
License: GPL-3+
Files: ruby/zmq_notify.rb
Copyright: 2011, Mahlon <mahlon [at] martini [dot] nu>
License: BSD-3c
Files: ruby/dcc_send_relay.rb
Copyright: 2012, Dominik Honnef <dominikh [at] fork-bomb [dot] org>
License: MIT
Files: ruby/challengeauth.rb
Copyright: 2013, Dominik Honnef <dominikh [at] fork-bomb [dot] org>
License: MIT
Files: ruby/samechannel.rb
Copyright: 2013-2021, Hendrik 'henk' Jaeger <weechat [at] henk [dot] geekmail [dot] org>
License: GPL-3+
Files: ruby/weespotify.rb
Copyright: 2013-2016, PawelP <pawelpogorzelski [at] gmail [dot] com>
License: GPL-3+
Files: ruby/undernet_challenge.rb
Copyright: 2013, Daniel Bretoi <nefar [at] otherware [dot] org>
License: BSD-2c
Files: ruby/substitution.rb
Copyright: 2014-2024, sam113101 <sam113101 [at] gmail [dot] com>
License: GPL-3+
Files: ruby/countdown.rb
Copyright: 2014, Rylee Fowler <rylee [at] rylee [dot] me>
License: MIT
Files: ruby/auth.rb
Copyright: 2014, Shawn Smith <ShawnSmith0828 [at] gmail [dot] com>
License: GPL-3+
Files: ruby/url_hinter.rb
Copyright: 2015-2017, tkengo <embrace [dot] ddd [dot] flake [dot] peace [at] gmail [dot] com>
License: GPL-3+
Files: ruby/socket_notify.rb
Copyright: 2015, kelsin <kelsin [at] valefor [dot] com>
License: MIT
Files: ruby/colorizer.rb
Copyright: 2015-2020, musl <m [at] hix [dot] io>
License: BSD-2c
Files: ruby/cleanbuffer.rb
Copyright: 2017, manavortex <manavortex [at] gmail [dot] com>
License: GPL-3+
Files: ruby/buffzilla.rb
Copyright: 2016, Dave Williams <dave [at] dave [dot] io>
License: Apache-2
Files: ruby/pushsafer.rb
Copyright: 2017, appzer <kevinsiml [at] googlemail [dot] com>
License: Apache-2
Files: ruby/pushbullet.rb
Copyright: 2018, yazgoo <yazgoo+weechat [dot] org [at] gmail [dot] com>
License: MIT
Files: tcl/chan_hl.tcl
Copyright: 2009, Karvur <fnfal [at] academ [dot] tsc [dot] ru>
License: GPL-3+
Files: tcl/rnotify.tcl
Copyright: 2010-2015, Gotisch <gotisch [at] gmail [dot] com>
License: GPL-3+
Files: tcl/xosdnotify.tcl
Copyright: 2010-2013, Karvur <fnfal [at] academ [dot] tsc [dot] ru>
License: GPL-3+
Files: tcl/inverter.tcl
Copyright: 2017, CrazyCat <crazycat [at] c-p-f [dot] org>
License: GPL-3+
Files: tcl/ipinfo.tcl
Copyright: 2022, CrazyCat <crazycat [at] c-p-f [dot] org>
License: GPL-3+
Files: tcl/wttr.tcl
Copyright: 2023, CrazyCat <crazycat [at] c-p-f [dot] org>
License: GPL-3+
License: Apache-2
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
.
http://www.apache.org/licenses/LICENSE-2.0
.
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
.
On Debian systems, the complete text of the Apache License Version 2.0,
can be found in the file /usr/share/common-licenses/Apache-2.0
License: Artistic-2
The "Artistic License"
.
Preamble
.
The intent of this document is to state the conditions under which a
Package may be copied, such that the Copyright Holder maintains some
semblance of artistic control over the development of the package,
while giving the users of the package the right to use and distribute
the Package in a more-or-less customary fashion, plus the right to make
reasonable modifications.
.
Definitions:
.
"Package" refers to the collection of files distributed by the
Copyright Holder, and derivatives of that collection of files
created through textual modification.
.
"Standard Version" refers to such a Package if it has not been
modified, or has been modified in accordance with the wishes
of the Copyright Holder as specified below.
.
"Copyright Holder" is whoever is named in the copyright or
copyrights for the package.
.
"You" is you, if you're thinking about copying or distributing
this Package.
.
"Reasonable copying fee" is whatever you can justify on the
basis of media cost, duplication charges, time of people involved,
and so on. (You will not be required to justify it to the
Copyright Holder, but only to the computing community at large
as a market that must bear the fee.)
.
"Freely Available" means that no fee is charged for the item
itself, though there may be fees involved in handling the item.
It also means that recipients of the item may redistribute it
under the same conditions they received it.
.
1. You may make and give away verbatim copies of the source form of the
Standard Version of this Package without restriction, provided that you
duplicate all of the original copyright notices and associated disclaimers.
.
2. You may apply bug fixes, portability fixes and other modifications
derived from the Public Domain or from the Copyright Holder. A Package
modified in such a way shall still be considered the Standard Version.
.
3. You may otherwise modify your copy of this Package in any way, provided
that you insert a prominent notice in each changed file stating how and
when you changed that file, and provided that you do at least ONE of the
following:
.
a) place your modifications in the Public Domain or otherwise make them
Freely Available, such as by posting said modifications to Usenet or
an equivalent medium, or placing the modifications on a major archive
site such as uunet.uu.net, or by allowing the Copyright Holder to include
your modifications in the Standard Version of the Package.
.
b) use the modified Package only within your corporation or organization.
.
c) rename any non-standard executables so the names do not conflict
with standard executables, which must also be provided, and provide
a separate manual page for each non-standard executable that clearly
documents how it differs from the Standard Version.
.
d) make other distribution arrangements with the Copyright Holder.
.
4. You may distribute the programs of this Package in object code or
executable form, provided that you do at least ONE of the following:
.
a) distribute a Standard Version of the executables and library files,
together with instructions (in the manual page or equivalent) on where
to get the Standard Version.
.
b) accompany the distribution with the machine-readable source of
the Package with your modifications.
.
c) give non-standard executables non-standard names, and clearly
document the differences in manual pages (or equivalent), together
with instructions on where to get the Standard Version.
.
d) make other distribution arrangements with the Copyright Holder.
.
5. You may charge a reasonable copying fee for any distribution of this
Package. You may charge any fee you choose for support of this
Package. You may not charge a fee for this Package itself. However,
you may distribute this Package in aggregate with other (possibly
commercial) programs as part of a larger (possibly commercial) software
distribution provided that you do not advertise this Package as a
product of your own. You may embed this Package's interpreter within
an executable of yours (by linking); this shall be construed as a mere
form of aggregation, provided that the complete Standard Version of the
interpreter is so embedded.
.
6. The scripts and library files supplied as input to or produced as
output from the programs of this Package do not automatically fall
under the copyright of this Package, but belong to whoever generated
them, and may be sold commercially, and may be aggregated with this
Package. If such scripts or library files are aggregated with this
Package via the so-called "undump" or "unexec" methods of producing a
binary executable image, then distribution of such an image shall
neither be construed as a distribution of this Package nor shall it
fall under the restrictions of Paragraphs 3 and 4, provided that you do
not represent such an executable image as a Standard Version of this
Package.
.
7. C subroutines (or comparably compiled subroutines in other
languages) supplied by you and linked into this Package in order to
emulate subroutines and variables of the language defined by this
Package shall not be considered part of this Package, but are the
equivalent of input as in Paragraph 6, provided these subroutines do
not change the language in any way that would cause it to fail the
regression tests for the language.
.
8. Aggregation of this Package with a commercial distribution is always
permitted provided that the use of this Package is embedded; that is,
when no overt attempt is made to make this Package's interfaces visible
to the end user of the commercial distribution. Such use shall not be
construed as a distribution of this Package.
.
9. The name of the Copyright Holder may not be used to endorse or promote
products derived from this software without specific prior written permission.
.
10. THIS PACKAGE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
.
The End
License: BSD-2c
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 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 REGENTS 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-3c
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 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 REGENTS 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: Beerware
"THE BEER-WARE LICENSE" (Revision 42):
<theauthor@domain.tld> wrote this file. As long as you retain this notice you
can do whatever you want with this stuff. If we meet some day, and you think
this stuff is worth it, you can buy me a beer in return.
License: GPL-2
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, see <http://www.gnu.org/licenses/>.
.
On Debian systems, the complete text of the GNU General Public License,
Version 2 can be found in the file /usr/share/common-licenses/GPL-2
License: GPL-2+
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, see <http://www.gnu.org/licenses/>.
.
On Debian systems, the complete text of the GNU General Public License,
Version 2 can be found in the file /usr/share/common-licenses/GPL-2
License: GPL-3+
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 <http://www.gnu.org/licenses/>.
.
On Debian systems, the complete text of the GNU General Public License,
Version 3 can be found in the file /usr/share/common-licenses/GPL-3
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: 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.
License: WTFPL
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: public-domain
No license required for any purpose; the work is not subject to
copyright in any jurisdiction.
|