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
|
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: Frescobaldi
Upstream-Contact: Wilbert Berendsen <wbsoft@xs4all.nl>
Source: https://github.com/wbsoft/frescobaldi/downloads
Repacked, excluding icons from the Tango project (depending on
tango-icon-theme package instead), and excluding hyphenation patterns
that are already available in existing Debian packages.
Files-Excluded:
frescobaldi_app/hyphdicts/hyph_en_CA.dic
frescobaldi_app/hyphdicts/README_hyph_en_CA.txt
frescobaldi_app/hyphdicts/hyph_en_GB.dic
frescobaldi_app/hyphdicts/README_hyph_en_GB.txt
frescobaldi_app/hyphdicts/hyph_en_US.dic
frescobaldi_app/hyphdicts/hyph_fr.dic
frescobaldi_app/hyphdicts/hyph_hu.dic
frescobaldi_app/hyphdicts/README_hyph_hu_HU.txt
frescobaldi_app/hyphdicts/hyph_it.dic
frescobaldi_app/hyphdicts/hyph_nn_NO.dic
frescobaldi_app/hyphdicts/README_hyph_nn_NO.txt
frescobaldi_app/hyphdicts/hyph_pl.dic
frescobaldi_app/hyphdicts/README_hyph_pl_PL.txt
frescobaldi_app/hyphdicts/hyph_ru_RU.dic
frescobaldi_app/hyphdicts/README_hyph_ru_RU.txt
frescobaldi_app/icons/Tango/*
Comment:
This package was debianized by Ryan Kavanagh <ryanakca@kubuntu.org> on
Sat, 31 Jan 2009 19:53:55 -0500.
.
Versions prior to 2.0.0 were downloaded from
http://code.google.com/p/lilykde/downloads/list
Versions 2.0.0 onwards were downloaded from
https://github.com/wbsoft/frescobaldi/downloads
Files: *
Copyright: 2008–2016 Wilbert Berendsen <wbsoft@xs4all.nl>
License: GPL-2+
Files: debian/*
Copyright: 2009–2013 Ryan Kavanagh <rak@debian.org>
2014–2016 Anthony Fok <foka@debian.org>
License: GPL-2+
Files: frescobaldi_app/po/cs.po
Copyright: 2009–2013 Pavel Fric <pavelfric@seznam.cz>
License: GPL-2+
Files: frescobaldi_app/po/de.po
Copyright: 2008 Henrik Evers <henrik.evers@gmx.de>
2009–2014 Georg Hennig <georg.hennig@web.de>
2012, 2013 Urs Liska <git@ursliska.de>
License: GPL-2+
Files: frescobaldi_app/po/es.po
Copyright: 2008–2013 Francisco Vila <francisco.vila@hispalinux.es>
License: GPL-2+
Files: frescobaldi_app/po/fr.po
Copyright: 2011, 2013 Philippe Massart
2011–2014 Raphaël Doursenaud <rdoursenaud@free.fr>
2008, 2010 Valentin Villenave <v.villenave@gmail.com>
2009 David Bouriaud <david.bouriaud@ac-rouen.fr>
2009–2011 Ryan Kavanagh <ryanakca@kubuntu.org>
2013 Richard Cognot <cognot@gocad.org>
2013 Bitouzé Denis <dbitouze@wanadoo.fr>
License: GPL-2+
Files: frescobaldi_app/po/gl.po
Copyright: 2009–2011 Manuel A. Vazquez <xixirei@yahoo.es>
License: GPL-2+
Files: frescobaldi_app/po/it.po
Copyright: 2011–2012 .billyBoh <billyboh@gmail.com>
2008–2014 Gianluca D'Orazio <gianluca.dorazio@gmail.com>
2014 Federico Bruni <fedelogy@gmail.com>
2015 Davide Liessi <davide.liessi@gmail.com>
License: GPL-2+
Files: frescobaldi_app/po/nl.po
Copyright: 2008–2014 Wilbert Berendsen <wbsoft@xs4all.nl>
License: GPL-2+
Files: frescobaldi_app/po/pl.po
Copyright: 2009–2012 Piotr Komorowski <piotr-komorowski@wp.pl>
License: GPL-2+
Files: frescobaldi_app/po/pt_BR.po
Copyright: 2012 Édio Mazera <mazera3@gmail.com>
2014 Arnaldo Russo <arnaldorusso@gmail.com>
License: GPL-2+
Files: frescobaldi_app/po/ru.po
Copyright: 2009 Serj Poltavski <serge.uliss@gmail.com>
2009 Artem Zolochevskiy <artem.zolochevskiy@gmail.com>
2012 Mikhail Iglizky <m0003r@gmail.com>
License: GPL-2+
Files: frescobaldi_app/po/tr.po
Copyright: 2008–2010 Server Acim <sacim@acim.name.tr>
License: GPL-2+
Files: frescobaldi_app/po/uk.po
Copyright: 2012 Dmytro O. Redchuk <brownian.box@gmail.com>
License: GPL-2+
Files: frescobaldi_app/po/zh_*.po
Copyright: 2012, 2014 Anthony Fok <foka@debian.org>
License: GPL-2+
Files: frescobaldi_app/hyphdicts/hyph_cs_CZ.dic
Copyright: 1995 Pavel Ševeček <pavel@lingea.cz>
2003 Pavel Janík <Pavel@Janik.cz> (format conversion)
License: GPL-2+
Comment:
These patterns were converted from TeX hyphenation patterns by the package
lingucomponent-tools
(http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/oo-cs/lingucomponent-tools/).
.
The license of original files is GNU GPL (they are both parts of csTeX). My
work on them was to only run the scripts from lingucomponent-tools package
(dual LGPL/SISSL license so it can be integrated).
--
Pavel Janík
2003
.
This file was derived from czhyphen.tex, which is available at
http://ftp.linux.cz/pub/tex/local/cstug/olsak/csplain/czhyphen.tex
and as /usr/share/texlive/texmf-dist/tex/csplain/base/czhyphen.tex
in the texlive-lang-czechslovak package.
.
Discussions: https://issues.apache.org/ooo/show_bug.cgi?id=74287
Files: frescobaldi_app/hyphdicts/hyph_da_DK.dic
Copyright: 1994 Frank Jensen <Frank.Jensen@hugin.com>
2002 Marco Huggenberger <marco@by-night.ch> (format conversion)
License: LPPL-1.3c and LGPL-2.1+
Comment:
The original TeX hyphenation tables for Danish are available at:
http://mirror.ctan.org/language/hyphenation/dkhyphen/
.
This work may be distributed and/or modified under the
conditions of the LaTeX Project Public License, either version 1.3
of this license or (at your option) any later version.
The latest version of this license is in
http://www.latex-project.org/lppl.txt
and version 1.3 or later is part of all distributions of LaTeX
version 2003/12/01 or later.
.
This work consists of the files dkcommon.tex, dkhyphen.tex and
dkspecial.tex.
.
OpenOffice.org Adaptions of this package are licensed under the
GNU Lesser General Public License (LGPL).
.
Discussions:
https://issues.apache.org/ooo/show_bug.cgi?id=74268
https://issues.apache.org/ooo/show_bug.cgi?id=74288
Files: frescobaldi_app/hyphdicts/hyph_el_GR.dic
Copyright: 2002 InterZone <info@interzone.gr>
License: LGPL-2.1+
Files: frescobaldi_app/hyphdicts/hyph_fi_FI.dic
Copyright: 1986, 1988, 1989, 1995, 2004 Kauko Saarinen
2003 Jarno Elonen <elonen@iki.fi>
License: public-domain
This Finnish hyphenation dictionary for the ALTLinux LibHnj library
was converted in 2003-11-03 by Jarno Elonen <elonen@iki.fi>
from TeX hyphenation patterns in "fihyph.tex" as described at
http://lingucomponent.openoffice.org/hyphenator.html.
.
The original hyphenation pattern file, available at
http://elonen.iki.fi/code/ooo-hyph-fi/fihyph-pd.tex ,
contains with the following updated copyright notice:
.
% -----> Finnish hyphenation patterns for MLPCTeX <------
%
% + January 1986: first release by Kauko Saarinen,
% Computing Centre, University of Jyvaskyla, Finland
%
% + January 1988: completely rewritten by Kauko Saarinen.
% The new patterns make much less mistakes with foreign
% and compound words. The article "Automatic Hyphenation
% of Finnish" by Professor Fred Karlsson is also referred
%
% + 8th March 1989 (vers. 2.2): some vowel triples added by
% Kauko Saarinen based on Fred Karlsson's ideas
%
% + 9th January 1995: added \uccode and \lccode by Thomas Esser
%
% + 24th May 2004: changelog reformatted for disambiguation and
% Thomas Esser's \[u/l]ccode changes complete rewritten to make
% certain Saarinen is the sole copyright owner of the file again,
% by Jarno Elonen (who donated all his modification works into
% the Public Domain.)
%
% + 24th May 2004: rewrote donated into the Public Domain
% by Kauko Saarinen
%
% This file/works is donated completely into the Public Domain.
% However, the author kindly asks that any modifications be
% voluntarily reported by logging them above, if possible.
Comment: Discussions at https://issues.apache.org/ooo/show_bug.cgi?id=74298
Files: frescobaldi_app/hyphdicts/hyph_ga_IE.dic
Copyright: 2004 Kevin P. Scannell <scannell@slu.edu>
License: GPL-2+
Comment:
For detailed remarks on the method of construction,
see my web page:
http://borel.slu.edu/fleiscin/index.html
.
The original TeX file `gahyph.tex' from which these patterns are taken
is available from CTAN:
.
http://www.ctan.org/tex-archive/language/hyphenation/
.
or directly from the author <scannell@slu.edu>.
.
- Kevin Scannell, 2004-01-23
Files: frescobaldi_app/hyphdicts/hyph_id_ID.dic
Copyright: 2004 Benitius Brevoort <benitius.brevoort@kapusin.org>
License: GPL-2+
Comment:
Indonesian spell-checker and hyphenator for OpenOffice.org
Version 1.0 - 2004-02-19 : 10803 entries; 3995 hyphenation rules
Version 1.1 - 2004-04-05 : 14447 entries; 5035 hyphenation rules
Version 1.2 - 2004-08-10 : 35270 entries; 8158 hyphenation rules
.
Archives id_ID.dic, id_ID.aff and hyphen_id_ID.dic
were created from scratch by
Author: Benitius Brevoort <benitius.brevoort@kapusin.org>
Copyright (c) 2004, held by Author
under the terms of the GNU General Public License, [...]
.
Special thanks to
Kurniadi <kur@pacific.net.id> and
Volker Mueller <vmueller@ukdw.ac.id>
who shared their lists of words for inclusion in version 1.1
of this OpenOffice.org dictionary
Arno J.J. Brevoort <bre@dnd.utwente.nl>
who shared a full list of words from the Kamus Besar Indonesia, ed. 2
Files: frescobaldi_app/hyphdicts/hyph_is_IS.dic
Copyright: 1987, 1988 Jörgen Pind <jorgen@hi.is>
2003 Áki G. Karlsson <akig@hi.is> (format conversion)
License: LPPL-1.3c, and LGPL-2.1+ or SISSL-1.1
Comment:
The original TeX hyphenation table, available at
http://mirrors.ctan.org/language/hyphenation/icehyph.tex ,
contains the following copyright notice:
.
% This file may be distributed and/or modified under the
% conditions of the LaTeX Project Public License, either version 1.2
% of this license or (at your option) any later version.
% The latest version of this license is in
% http://www.latex-project.org/lppl.txt
% and version 1.2 or later is part of all distributions of LaTeX
% version 1999/12/01 or later.
.
The converted patterns was re-licensed to LGPL/SISSL for OpenOffice.org
.
Discussions at http://bugs.debian.org/223912
Files: frescobaldi_app/hyphdicts/hyph_nl_NL.dic
Copyright: 1996 Piet Tutelaers <P.T.H.Tutelaers@tue.nl>
2002 Arthur Buijs <arthur@artietee.nl> (format conversion)
License: LGPL-2.1+ or LPPL-1.3c or GPL-2+
Comment:
About the Dutch AltLinux hyphenation pattern file hyph_nl.dic:
-------------------------------------------------------------------------------
It is based on the TeX hyphenation patterns file that created and original
copyright by Piet Tutelaers.
.
These hyphenation patterns may be used by anyone, within the conditions that
are laid down in the license (the GNU Lesser General Public License)
.
Arthur Buijs modified the hyphenation patterns file so that it can be used
with the ALTLinux hyphenator.
.
Piet Tutelaers’ original Dutch hyphenation pattern is available at:
http://www.ntg.nl/spelling/dutch96.pat
.
Discussions:
https://issues.apache.org/ooo/show_bug.cgi?id=74265
https://issues.apache.org/ooo/show_bug.cgi?id=74309
Files:
frescobaldi_app/hyphdicts/hyph_pt_BR.dic
frescobaldi_app/hyphdicts/hyph_pt_PT.dic
Copyright: 1987, 1994, 1996 Pedro J. de Rezende <rezende@dcc.unicamp.br>
1996 J.Joao Dias Almeida <jj@di.uminho.pt>
2002 Paulo Morgado <paulo.morgado@vizzavi.pt> (format conversion)
License: LPPL-1.3c and GPL-2+
Comment:
The original TeX hyphenation table, available at
http://mirrors.ctan.org/language/portuguese/pt8hyph.tex ,
contains the following copyright notice:
.
% IMPORTANT NOTICE:
%
% This program can be redistributed and/or modified under the terms
% of the LaTeX Project Public License Distributed from CTAN
% archives in directory macros/latex/base/lppl.txt; either
% version 1 of the License, or any later version.
%
% Remember! If you *must* change it, then call the resulting file
% something else and attach your name to your *documented* changes.
.
The converted hyphenation dictionary was released under the GNU GPL.
Files: frescobaldi_app/hyphdicts/hyph_sk_SK.dic
Copyright: 1992 Jana Chlebíková <chlebikj@dcs.fmph.uniba.sk>
2003 Pavel Janík <Pavel@Janik.cz> (format conversion)
License: GPL-2+ or LGPL-2.1+ or SISSL-1.1
Comment:
These patterns were converted from TeX hyphenation patterns by the package
lingucomponent-tools
(http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/oo-cs/lingucomponent-tools/).
.
The license of original files is GNU GPL (they are both parts of csTeX). My
work on them was to only run the scripts from lingucomponent-tools package
(dual LGPL/SISSL license so it can be integrated).
--
Pavel Janík
2003
.
This file was derived from czhyphen.tex, which is available at
http://ftp.linux.cz/pub/tex/local/cstug/olsak/csplain/skhyphen.tex
and as /usr/share/texlive/texmf-dist/tex/csplain/base/skhyphen.tex
in the texlive-lang-czechslovak package.
.
Discussions at https://issues.apache.org/ooo/show_bug.cgi?id=74316
Files: frescobaldi_app/hyphdicts/hyph_sv_SE.dic
Copyright: 2003 Skåne Sjælland Linux User Group <bestyrelsen@sslug.dk>
License: LGPL-2.1
This dictionary is free software; you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License (version 2.1)
as published by the Free Software Foundation.
.
This dictionary is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
.
You should have received a copy of the GNU Lesser General Public License
along with this dictionary; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
.
On Debian systems, the complete text of the GNU Lesser General Public
License version 2.1 can be found in "/usr/share/common-licenses/LGPL-2.1".
Files: frescobaldi_app/hyphdicts/hyph_uk_UA.dic
Copyright: 1998–2002 Maksym Polyakov <polyama@auburn.edu>
License: GPL-2+
Comment: Discussions at https://issues.apache.org/ooo/show_bug.cgi?id=74320
Files: frescobaldi_app/unicode_blocks.py
Copyright: 1991–2009 Unicode, Inc.
2011 Wilbert Berendsen <wbsoft@xs4all.nl>
License: Unicode-TOU
Contains Unicode Block data which was retrieved from
http://www.unicode.org/Public/5.2.0/ucd/Blocks.txt
.
with the following copyright information:
.
Copyright (c) 1991-2009 Unicode, Inc.
For terms of use, see http://www.unicode.org/terms_of_use.html
.
The corresponding license is as follows:
.
EXHIBIT 1
UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE
.
Unicode Data Files include all data files under the directories
http://www.unicode.org/Public/, http://www.unicode.org/reports/,
and http://www.unicode.org/cldr/data/ . Unicode Software includes any
source code published in the Unicode Standard or under the directories
http://www.unicode.org/Public/, http://www.unicode.org/reports/,
and http://www.unicode.org/cldr/data/.
.
NOTICE TO USER: Carefully read the following legal agreement. BY
DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE
INC.'S DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), YOU
UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND
CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD,
INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE.
.
COPYRIGHT AND PERMISSION NOTICE
.
Copyright © 1991-2014 Unicode, Inc. All rights
reserved. Distributed under the Terms of Use in
http://www.unicode.org/copyright.html.
.
Permission is hereby granted, free of charge, to any person
obtaining a copy of the Unicode data files and any associated
documentation (the "Data Files") or Unicode software and any
associated documentation (the "Software") to deal in the Data Files
or Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute,
and/or sell copies of the Data Files or Software, and to permit
persons to whom the Data Files or Software are furnished to do so,
provided that (a) the above copyright notice(s) and this permission
notice appear with all copies of the Data Files or Software,
(b) both the above copyright notice(s) and this permission notice
appear in associated documentation, and (c) there is clear notice
in each modified Data File or in the Software as well as in the
documentation associated with the Data File(s) or Software that
the data or software has been modified.
.
THE DATA FILES AND SOFTWARE ARE 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 OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE
COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE
FOR ANY CLAIM, OR ANY SPECIAL 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 THE DATA FILES OR SOFTWARE.
.
Except as contained in this notice, the name of a copyright holder
shall not be used in advertising or otherwise to promote the sale,
use or other dealings in these Data Files or Software without
prior written authorization of the copyright holder.
Files:
frescobaldi_app/icons/application-pdf.svg
frescobaldi_app/icons/text-x-lilypond.svg
frescobaldi_app/icons/TangoExt/*
Copyright: 2005–2007 Jakub Steiner <jimmac@src.gnome.org>
2005–2009 Tango! Desktop Project
2011–2012 Wilbert Berendsen <wbsoft@xs4all.nl>
License: public-domain
These icons are in the public domain as stipulated by the <cc:License
rdf:about="http://creativecommons.org/licenses/publicdomain/"> tags
contained therein.
.
This page states that:
.
The person or persons who have associated work with this document (the
"Dedicator" or "Certifier") hereby either (a) certifies that, to the
best of his knowledge, the work of authorship identified is in the
public domain of the country from which the work is published, or (b)
hereby dedicates whatever copyright the dedicators holds in the work of
authorship identified below (the "Work") to the public domain. A
certifier, moreover, dedicates any copyright interest he may have in the
associated work, and for these purposes, is described as a "dedicator"
below.
.
A certifier has taken reasonable steps to verify the copyright status of
this work. Certifier recognizes that his good faith efforts may not
shield him from liability if in fact the work certified is not in the
public domain.
.
Dedicator makes this dedication for the benefit of the public at large
and to the detriment of the Dedicator's heirs and successors. Dedicator
intends this dedication to be an overt act of relinquishment in
perpetuity of all present and future rights under copyright law, whether
vested or contingent, in the Work. Dedicator understands that such
relinquishment of all rights includes the relinquishment of all rights
to enforce (by lawsuit or otherwise) those copyrights in the Work.
.
Dedicator recognizes that, once placed in the public domain, the Work
may be freely reproduced, distributed, transmitted, used, modified,
built upon, or otherwise exploited by anyone for any purpose, commercial
or non-commercial, and in any way, including by methods that have not
yet been invented or conceived.
Comment:
These icons were either renamed or created/derived by Wilbert Berendsen
from various icons from the public domain Tango icon theme:
.
* application-pdf.svg: derived from scalable/mimetypes/text-x-generic.svg
* application-exit.svg: renamed from scalable/actions/system-log-out.svg
* document-close.svg: derived from scalable/actions/document-new.svg
and scalable/status/audio-volume-muted.svg
* document-edit.svg:
from http://commons.wikimedia.org/wiki/File:Edit-find-replace.svg
minus magnifiying glass
* document-save-all.svg: derived from document-save.svg
* help-about.svg: renamed from scalable/apps/help-browser.svg
* help-contents.svg:
from http://commons.wikimedia.org/wiki/File:Help-contents.svg
* text-plain.svg: renamed from scalable/mimetypes/text-x-generic.svg
* text-x-lilypond.svg: derived from scalable/mimetypes/text-x-generic.svg
Files: frescobaldi_app/icons/pushpin.svg
Copyright: 2010 jhnri4
License: public-domain
This icon is in the public domain as stipulated by the <cc:License
rdf:about="http://creativecommons.org/licenses/publicdomain/"> tags
contained therein.
.
This page states that:
.
The person or persons who have associated work with this document (the
"Dedicator" or "Certifier") hereby either (a) certifies that, to the
best of his knowledge, the work of authorship identified is in the
public domain of the country from which the work is published, or (b)
hereby dedicates whatever copyright the dedicators holds in the work of
authorship identified below (the "Work") to the public domain. A
certifier, moreover, dedicates any copyright interest he may have in the
associated work, and for these purposes, is described as a "dedicator"
below.
.
A certifier has taken reasonable steps to verify the copyright status of
this work. Certifier recognizes that his good faith efforts may not
shield him from liability if in fact the work certified is not in the
public domain.
.
Dedicator makes this dedication for the benefit of the public at large
and to the detriment of the Dedicator's heirs and successors. Dedicator
intends this dedication to be an overt act of relinquishment in
perpetuity of all present and future rights under copyright law, whether
vested or contingent, in the Work. Dedicator understands that such
relinquishment of all rights includes the relinquishment of all rights
to enforce (by lawsuit or otherwise) those copyrights in the Work.
.
Dedicator recognizes that, once placed in the public domain, the Work
may be freely reproduced, distributed, transmitted, used, modified,
built upon, or otherwise exploited by anyone for any purpose, commercial
or non-commercial, and in any way, including by methods that have not
yet been invented or conceived.
Comment: Retrieved from http://openclipart.org/detail/89059
Files: frescobaldi_app/icons/edit-clear-locationbar-rtl.svg
frescobaldi_app/icons/tools-score-wizard.svg
Copyright: 2007 The Oxygen Team
License: LGPL-3+
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 3 of the License, or (at your option) any later version.
.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
.
You should have received a copy of the GNU Lesser General Public
License along with this library. If not, see <http://www.gnu.org/licenses/>.
.
Clarification:
.
The GNU Lesser General Public License or LGPL is written for
software libraries in the first place. We expressly want the LGPL to
be valid for this artwork library too.
.
KDE Oxygen theme icons is a special kind of software library, it is an
artwork library, it's elements can be used in a Graphical User Interface, or
GUI.
.
Source code, for this library means:
- where they exist, SVG;
- otherwise, if applicable, the multi-layered formats xcf or psd, or
otherwise png.
.
The LGPL in some sections obliges you to make the files carry
notices. With images this is in some cases impossible or hardly useful.
.
With this library a notice is placed at a prominent place in the directory
containing the elements. You may follow this practice.
.
The exception in section 5 of the GNU Lesser General Public License covers
the use of elements of this art library in a GUI.
.
kde-artists [at] kde.org
.
On Debian systems, the complete text of the GNU Lesser General Public
License version 3 can be found in "/usr/share/common-licenses/LGPL-3".
Comment: These files are from the Oxygen icon theme.
Files: frescobaldi_app/icons/TangoExt/scalable/preferences-other.svg
Copyright: 2007 GNOME icon artists
2007 Lapo Calamandrei <lapo@src.gnome.org>
License: GPL-2+
Comment:
Retrieved from:
* http://commons.wikimedia.org/wiki/File:Gnome-preferences-other.svg
.
Available in the GNOME Git repository:
* https://git.gnome.org/browse/adwaita-icon-theme/tree/scalable/categories/preferences-other.svg?h=gnome-2-28
Files:
frescobaldi_app/icons/TangoExt/scalable/zoom-in.svg
frescobaldi_app/icons/TangoExt/scalable/zoom-out.svg
frescobaldi_app/icons/TangoExt/scalable/zoom-original.svg
Copyright: 2006, 2008 Lapo Calamandrei <lapo@src.gnome.org> (creator)
2006 Jakub Steiner <jimmac@src.gnome.org> (contributor)
2006–2008 GNOME icon artists
License: GPL-2+
Comment:
Retrieved from:
* http://commons.wikimedia.org/wiki/File:Gnome-zoom-in.svg
* http://commons.wikimedia.org/wiki/File:Gnome-zoom-out.svg
* http://commons.wikimedia.org/wiki/File:Gnome-zoom-original.svg
.
Available in the GNOME Git repository:
* https://git.gnome.org/browse/adwaita-icon-theme/tree/scalable/actions?h=gnome-2-28
* https://github.com/GNOME/gnome-icon-theme/tree/gnome-2-28/scalable/actions
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 package; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
.
On Debian systems, the complete text of the GNU General Public License
version 2 can be found in "/usr/share/common-licenses/GPL-2".
License: LGPL-2.1+
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
.
On Debian systems, the complete text of the GNU Lesser General Public
License version 2.1 can be found in "/usr/share/common-licenses/LGPL-2.1".
License: LPPL-1.3c
The LaTeX Project Public License
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
.
LPPL Version 1.3c 2006-05-20
.
Copyright 1999 2002-2006 LaTeX3 Project
Everyone is allowed to distribute verbatim copies of this
license document, but modification of it is not allowed.
.
.
PREAMBLE
========
.
The LaTeX Project Public License (LPPL) is the primary license under
which the LaTeX kernel and the base LaTeX packages are distributed.
.
You may use this license for any work of which you hold the copyright
and which you wish to distribute. This license may be particularly
suitable if your work is TeX-related (such as a LaTeX package), but
it is written in such a way that you can use it even if your work is
unrelated to TeX.
.
The section `WHETHER AND HOW TO DISTRIBUTE WORKS UNDER THIS LICENSE',
below, gives instructions, examples, and recommendations for authors
who are considering distributing their works under this license.
.
This license gives conditions under which a work may be distributed
and modified, as well as conditions under which modified versions of
that work may be distributed.
.
We, the LaTeX3 Project, believe that the conditions below give you
the freedom to make and distribute modified versions of your work
that conform with whatever technical specifications you wish while
maintaining the availability, integrity, and reliability of
that work. If you do not see how to achieve your goal while
meeting these conditions, then read the document `cfgguide.tex'
and `modguide.tex' in the base LaTeX distribution for suggestions.
.
.
DEFINITIONS
===========
.
In this license document the following terms are used:
.
`Work'
Any work being distributed under this License.
.
`Derived Work'
Any work that under any applicable law is derived from the Work.
.
`Modification'
Any procedure that produces a Derived Work under any applicable
law -- for example, the production of a file containing an
original file associated with the Work or a significant portion of
such a file, either verbatim or with modifications and/or
translated into another language.
.
`Modify'
To apply any procedure that produces a Derived Work under any
applicable law.
.
`Distribution'
Making copies of the Work available from one person to another, in
whole or in part. Distribution includes (but is not limited to)
making any electronic components of the Work accessible by
file transfer protocols such as FTP or HTTP or by shared file
systems such as Sun's Network File System (NFS).
.
`Compiled Work'
A version of the Work that has been processed into a form where it
is directly usable on a computer system. This processing may
include using installation facilities provided by the Work,
transformations of the Work, copying of components of the Work, or
other activities. Note that modification of any installation
facilities provided by the Work constitutes modification of the Work.
.
`Current Maintainer'
A person or persons nominated as such within the Work. If there is
no such explicit nomination then it is the `Copyright Holder' under
any applicable law.
.
`Base Interpreter'
A program or process that is normally needed for running or
interpreting a part or the whole of the Work.
.
A Base Interpreter may depend on external components but these
are not considered part of the Base Interpreter provided that each
external component clearly identifies itself whenever it is used
interactively. Unless explicitly specified when applying the
license to the Work, the only applicable Base Interpreter is a
`LaTeX-Format' or in the case of files belonging to the
`LaTeX-format' a program implementing the `TeX language'.
.
.
.
CONDITIONS ON DISTRIBUTION AND MODIFICATION
===========================================
.
1. Activities other than distribution and/or modification of the Work
are not covered by this license; they are outside its scope. In
particular, the act of running the Work is not restricted and no
requirements are made concerning any offers of support for the Work.
.
2. You may distribute a complete, unmodified copy of the Work as you
received it. Distribution of only part of the Work is considered
modification of the Work, and no right to distribute such a Derived
Work may be assumed under the terms of this clause.
.
3. You may distribute a Compiled Work that has been generated from a
complete, unmodified copy of the Work as distributed under Clause 2
above, as long as that Compiled Work is distributed in such a way that
the recipients may install the Compiled Work on their system exactly
as it would have been installed if they generated a Compiled Work
directly from the Work.
.
4. If you are the Current Maintainer of the Work, you may, without
restriction, modify the Work, thus creating a Derived Work. You may
also distribute the Derived Work without restriction, including
Compiled Works generated from the Derived Work. Derived Works
distributed in this manner by the Current Maintainer are considered to
be updated versions of the Work.
.
5. If you are not the Current Maintainer of the Work, you may modify
your copy of the Work, thus creating a Derived Work based on the Work,
and compile this Derived Work, thus creating a Compiled Work based on
the Derived Work.
.
6. If you are not the Current Maintainer of the Work, you may
distribute a Derived Work provided the following conditions are met
for every component of the Work unless that component clearly states
in the copyright notice that it is exempt from that condition. Only
the Current Maintainer is allowed to add such statements of exemption
to a component of the Work.
.
a. If a component of this Derived Work can be a direct replacement
for a component of the Work when that component is used with the
Base Interpreter, then, wherever this component of the Work
identifies itself to the user when used interactively with that
Base Interpreter, the replacement component of this Derived Work
clearly and unambiguously identifies itself as a modified version
of this component to the user when used interactively with that
Base Interpreter.
.
b. Every component of the Derived Work contains prominent notices
detailing the nature of the changes to that component, or a
prominent reference to another file that is distributed as part
of the Derived Work and that contains a complete and accurate log
of the changes.
.
c. No information in the Derived Work implies that any persons,
including (but not limited to) the authors of the original version
of the Work, provide any support, including (but not limited to)
the reporting and handling of errors, to recipients of the
Derived Work unless those persons have stated explicitly that
they do provide such support for the Derived Work.
.
d. You distribute at least one of the following with the Derived Work:
.
1. A complete, unmodified copy of the Work;
if your distribution of a modified component is made by
offering access to copy the modified component from a
designated place, then offering equivalent access to copy
the Work from the same or some similar place meets this
condition, even though third parties are not compelled to
copy the Work along with the modified component;
.
2. Information that is sufficient to obtain a complete,
unmodified copy of the Work.
.
7. If you are not the Current Maintainer of the Work, you may
distribute a Compiled Work generated from a Derived Work, as long as
the Derived Work is distributed to all recipients of the Compiled
Work, and as long as the conditions of Clause 6, above, are met with
regard to the Derived Work.
.
8. The conditions above are not intended to prohibit, and hence do not
apply to, the modification, by any method, of any component so that it
becomes identical to an updated version of that component of the Work as
it is distributed by the Current Maintainer under Clause 4, above.
.
9. Distribution of the Work or any Derived Work in an alternative
format, where the Work or that Derived Work (in whole or in part) is
then produced by applying some process to that format, does not relax or
nullify any sections of this license as they pertain to the results of
applying that process.
.
10. a. A Derived Work may be distributed under a different license
provided that license itself honors the conditions listed in
Clause 6 above, in regard to the Work, though it does not have
to honor the rest of the conditions in this license.
.
b. If a Derived Work is distributed under a different license, that
Derived Work must provide sufficient documentation as part of
itself to allow each recipient of that Derived Work to honor the
restrictions in Clause 6 above, concerning changes from the Work.
.
11. This license places no restrictions on works that are unrelated to
the Work, nor does this license place any restrictions on aggregating
such works with the Work by any means.
.
12. Nothing in this license is intended to, or may be used to, prevent
complete compliance by all parties with all applicable laws.
.
.
NO WARRANTY
===========
.
There is no warranty for the Work. Except when otherwise stated in
writing, the Copyright Holder provides the Work `as is', without
warranty of any kind, either expressed or implied, including, but not
limited to, the implied warranties of merchantability and fitness for a
particular purpose. The entire risk as to the quality and performance
of the Work is with you. Should the Work prove defective, you assume
the cost of all necessary servicing, repair, or correction.
.
In no event unless required by applicable law or agreed to in writing
will The Copyright Holder, or any author named in the components of the
Work, or any other party who may distribute and/or modify the Work as
permitted above, be liable to you for damages, including any general,
special, incidental or consequential damages arising out of any use of
the Work or out of inability to use the Work (including, but not limited
to, loss of data, data being rendered inaccurate, or losses sustained by
anyone as a result of any failure of the Work to operate with any other
programs), even if the Copyright Holder or said author or said other
party has been advised of the possibility of such damages.
.
.
MAINTENANCE OF THE WORK
=======================
.
The Work has the status `author-maintained' if the Copyright Holder
explicitly and prominently states near the primary copyright notice in
the Work that the Work can only be maintained by the Copyright Holder
or simply that it is `author-maintained'.
.
The Work has the status `maintained' if there is a Current Maintainer
who has indicated in the Work that they are willing to receive error
reports for the Work (for example, by supplying a valid e-mail
address). It is not required for the Current Maintainer to acknowledge
or act upon these error reports.
.
The Work changes from status `maintained' to `unmaintained' if there
is no Current Maintainer, or the person stated to be Current
Maintainer of the work cannot be reached through the indicated means
of communication for a period of six months, and there are no other
significant signs of active maintenance.
.
You can become the Current Maintainer of the Work by agreement with
any existing Current Maintainer to take over this role.
.
If the Work is unmaintained, you can become the Current Maintainer of
the Work through the following steps:
.
1. Make a reasonable attempt to trace the Current Maintainer (and
the Copyright Holder, if the two differ) through the means of
an Internet or similar search.
.
2. If this search is successful, then enquire whether the Work
is still maintained.
.
a. If it is being maintained, then ask the Current Maintainer
to update their communication data within one month.
.
b. If the search is unsuccessful or no action to resume active
maintenance is taken by the Current Maintainer, then announce
within the pertinent community your intention to take over
maintenance. (If the Work is a LaTeX work, this could be
done, for example, by posting to comp.text.tex.)
.
3a. If the Current Maintainer is reachable and agrees to pass
maintenance of the Work to you, then this takes effect
immediately upon announcement.
.
b. If the Current Maintainer is not reachable and the Copyright
Holder agrees that maintenance of the Work be passed to you,
then this takes effect immediately upon announcement.
.
4. If you make an `intention announcement' as described in 2b. above
and after three months your intention is challenged neither by
the Current Maintainer nor by the Copyright Holder nor by other
people, then you may arrange for the Work to be changed so as
to name you as the (new) Current Maintainer.
.
5. If the previously unreachable Current Maintainer becomes
reachable once more within three months of a change completed
under the terms of 3b) or 4), then that Current Maintainer must
become or remain the Current Maintainer upon request provided
they then update their communication data within one month.
.
A change in the Current Maintainer does not, of itself, alter the fact
that the Work is distributed under the LPPL license.
.
If you become the Current Maintainer of the Work, you should
immediately provide, within the Work, a prominent and unambiguous
statement of your status as Current Maintainer. You should also
announce your new status to the same pertinent community as
in 2b) above.
.
.
WHETHER AND HOW TO DISTRIBUTE WORKS UNDER THIS LICENSE
======================================================
.
This section contains important instructions, examples, and
recommendations for authors who are considering distributing their
works under this license. These authors are addressed as `you' in
this section.
.
Choosing This License or Another License
----------------------------------------
.
If for any part of your work you want or need to use *distribution*
conditions that differ significantly from those in this license, then
do not refer to this license anywhere in your work but, instead,
distribute your work under a different license. You may use the text
of this license as a model for your own license, but your license
should not refer to the LPPL or otherwise give the impression that
your work is distributed under the LPPL.
.
The document `modguide.tex' in the base LaTeX distribution explains
the motivation behind the conditions of this license. It explains,
for example, why distributing LaTeX under the GNU General Public
License (GPL) was considered inappropriate. Even if your work is
unrelated to LaTeX, the discussion in `modguide.tex' may still be
relevant, and authors intending to distribute their works under any
license are encouraged to read it.
.
A Recommendation on Modification Without Distribution
-----------------------------------------------------
.
It is wise never to modify a component of the Work, even for your own
personal use, without also meeting the above conditions for
distributing the modified component. While you might intend that such
modifications will never be distributed, often this will happen by
accident -- you may forget that you have modified that component; or
it may not occur to you when allowing others to access the modified
version that you are thus distributing it and violating the conditions
of this license in ways that could have legal implications and, worse,
cause problems for the community. It is therefore usually in your
best interest to keep your copy of the Work identical with the public
one. Many works provide ways to control the behavior of that work
without altering any of its licensed components.
.
How to Use This License
-----------------------
.
To use this license, place in each of the components of your work both
an explicit copyright notice including your name and the year the work
was authored and/or last substantially modified. Include also a
statement that the distribution and/or modification of that
component is constrained by the conditions in this license.
.
Here is an example of such a notice and statement:
.
%% pig.dtx
%% Copyright 2005 M. Y. Name
%
% This work may be distributed and/or modified under the
% conditions of the LaTeX Project Public License, either version 1.3
% of this license or (at your option) any later version.
% The latest version of this license is in
% http://www.latex-project.org/lppl.txt
% and version 1.3 or later is part of all distributions of LaTeX
% version 2005/12/01 or later.
%
% This work has the LPPL maintenance status `maintained'.
%
% The Current Maintainer of this work is M. Y. Name.
%
% This work consists of the files pig.dtx and pig.ins
% and the derived file pig.sty.
.
Given such a notice and statement in a file, the conditions
given in this license document would apply, with the `Work' referring
to the three files `pig.dtx', `pig.ins', and `pig.sty' (the last being
generated from `pig.dtx' using `pig.ins'), the `Base Interpreter'
referring to any `LaTeX-Format', and both `Copyright Holder' and
`Current Maintainer' referring to the person `M. Y. Name'.
.
If you do not want the Maintenance section of LPPL to apply to your
Work, change `maintained' above into `author-maintained'.
However, we recommend that you use `maintained', as the Maintenance
section was added in order to ensure that your Work remains useful to
the community even when you can no longer maintain and support it
yourself.
.
Derived Works That Are Not Replacements
---------------------------------------
.
Several clauses of the LPPL specify means to provide reliability and
stability for the user community. They therefore concern themselves
with the case that a Derived Work is intended to be used as a
(compatible or incompatible) replacement of the original Work. If
this is not the case (e.g., if a few lines of code are reused for a
completely different task), then clauses 6b and 6d shall not apply.
.
.
Important Recommendations
-------------------------
.
Defining What Constitutes the Work
.
The LPPL requires that distributions of the Work contain all the
files of the Work. It is therefore important that you provide a
way for the licensee to determine which files constitute the Work.
This could, for example, be achieved by explicitly listing all the
files of the Work near the copyright notice of each file or by
using a line such as:
.
% This work consists of all files listed in manifest.txt.
.
in that place. In the absence of an unequivocal list it might be
impossible for the licensee to determine what is considered by you
to comprise the Work and, in such a case, the licensee would be
entitled to make reasonable conjectures as to which files comprise
the Work.
License: SISSL-1.1
Sun Industry Standards Source License - Version 1.1
.
Note: A printer friendly version of this license is available in PDF format.
.
1.0 DEFINITIONS
.
1.1 "Commercial Use" means distribution or otherwise making the Original Code
available to a third party.
.
1.2 "Contributor Version" means the combination of the Original Code, and the
Modifications made by that particular Contributor.
.
1.3 "Electronic Distribution Mechanism" means a mechanism generally accepted
in the software development community for the electronic transfer of data.
.
1.4 "Executable" means Original Code in any form other than Source Code.
.
1.5 "Initial Developer" means the individual or entity identified as the
Initial Developer in the Source Code notice required by Exhibit A.
.
1.6 "Larger Work" means a work which combines Original Code or portions
thereof with code not governed by the terms of this License.
.
1.7 "License" means this document.
.
1.8 "Licensable" means having the right to grant, to the maximum extent
possible, whether at the time of the initial grant or subsequently acquired,
any and all of the rights conveyed herein.
.
1.9 "Modifications" means any addition to or deletion from the substance or
structure of either the Original Code or any previous Modifications.
A Modification is:
.
A. Any addition to or deletion from the contents of a file containing
Original Code or previous Modifications.
.
B. Any new file that contains any part of the Original Code or previous
Modifications.
.
1.10 "Original Code" means Source Code of computer software code which is
described in the Source Code notice required by Exhibit A as Original
Code.
.
1.11 "Patent Claims" means any patent claim(s), now owned or hereafter
acquired, including without limitation, method, process, and apparatus
claims, in any patent Licensable by grantor.
.
1.12 "Source Code" means the preferred form of the Original Code for making
modifications to it, including all modules it contains, plus any
associated interface definition files, or scripts used to control
compilation and installation of an Executable.
.
1.13 "Standards" means the standards identified in Exhibit B.
.
1.14 "You" (or "Your") means an individual or a legal entity exercising rights
under, and complying with all of the terms of, this License or a future
version of this License issued under Section 6.1. For legal entities,
"You'' includes any entity which controls, is controlled by, or is under
common control with You. For purposes of this definition, "control''
means (a) the power, direct or indirect, to cause the direction or
management of such entity, whether by contract or otherwise, or
(b) ownership of more than fifty percent (50%) of the outstanding shares
or beneficial ownership of such entity.
.
2.0 SOURCE CODE LICENSE
.
2.1 The Initial Developer Grant
The Initial Developer hereby grants You a world-wide, royalty-free,
non-exclusive license, subject to third party intellectual property claims:
.
(a) under intellectual property rights (other than patent or trademark)
Licensable by Initial Developer to use, reproduce, modify, display,
perform, sublicense and distribute the Original Code (or portions
thereof) with or without Modifications, and/or as part of a Larger
Work; and
.
(b) under Patents Claims infringed by the making, using or selling of
Original Code, to make, have made, use, practice, sell, and offer for
sale, and/or otherwise dispose of the Original Code (or portions
thereof).
.
(c) the licenses granted in this Section 2.1(a) and (b) are effective on
the date Initial Developer first distributes Original Code under the
terms of this License.
.
(d) Notwithstanding Section 2.1(b) above, no patent license is granted:
1) for code that You delete from the Original Code; 2) separate from
the Original Code; or 3) for infringements caused by: i) the
modification of the Original Code or ii) the combination of the
Original Code with other software or devices, including but not
limited to Modifications.
.
3.0 DISTRIBUTION OBLIGATIONS
.
3.1 Application of License.
The Source Code version of Original Code may be distributed only under the
terms of this License or a future version of this License released under
Section 6.1, and You must include a copy of this License with every copy of
the Source Code You distribute. You may not offer or impose any terms on any
Source Code version that alters or restricts the applicable version of this
License or the recipients' rights hereunder. Your license for shipment of the
Contributor Version is conditioned upon Your full compliance with this
Section. The Modifications which You create must comply with all requirements
set out by the Standards body in effect one hundred twenty (120) days before
You ship the Contributor Version. In the event that the Modifications do not
meet such requirements, You agree to publish either (i) any deviation from the
Standards protocol resulting from implementation of Your Modifications and a
reference implementation of Your Modifications or (ii) Your Modifications in
Source Code form, and to make any such deviation and reference implementation
or Modifications available to all third parties under the same terms as this
license on a royalty free basis within thirty (30) days of Your first customer
shipment of Your Modifications.
.
3.2 Required Notices.
You must duplicate the notice in Exhibit A in each file of the Source Code.
If it is not possible to put such notice in a particular Source Code file due
to its structure, then You must include such notice in a location (such as a
relevant directory) where a user would be likely to look for such a notice.
If You created one or more Modification(s) You may add Your name as a
Contributor to the notice described in Exhibit A. You must also duplicate
this License in any documentation for the Source Code where You describe
recipients' rights or ownership rights relating to Initial Code. You may
choose to offer, and to charge a fee for, warranty, support, indemnity or
liability obligations to one or more recipients of Your version of the Code.
However, You may do so only on Your own behalf, and not on behalf of the
Initial Developer. You must make it absolutely clear than any such warranty,
support, indemnity or liability obligation is offered by You alone, and You
hereby agree to indemnify the Initial Developer for any liability incurred by
the Initial Developer as a result of warranty, support, indemnity or liability
terms You offer.
.
3.3 Distribution of Executable Versions.
You may distribute Original Code in Executable and Source form only if the
requirements of Sections 3.1 and 3.2 have been met for that Original Code, and
if You include a notice stating that the Source Code version of the Original
Code is available under the terms of this License. The notice must be
conspicuously included in any notice in an Executable or Source versions,
related documentation or collateral in which You describe recipients' rights
relating to the Original Code. You may distribute the Executable and Source
versions of Your version of the Code or ownership rights under a license of
Your choice, which may contain terms different from this License, provided
that You are in compliance with the terms of this License. If You distribute
the Executable and Source versions under a different license You must make it
absolutely clear that any terms which differ from this License are offered by
You alone, not by the Initial Developer. You hereby agree to indemnify the
Initial Developer for any liability incurred by the Initial Developer as a
result of any such terms You offer.
.
3.4 Larger Works.
You may create a Larger Work by combining Original Code with other code not
governed by the terms of this License and distribute the Larger Work as a
single product. In such a case, You must make sure the requirements of this
License are fulfilled for the Original Code.
.
4.0 INABILITY TO COMPLY DUE TO STATUTE OR REGULATION
.
If it is impossible for You to comply with any of the terms of this License
with respect to some or all of the Original Code due to statute, judicial
order, or regulation then You must: (a) comply with the terms of this License
to the maximum extent possible; and (b) describe the limitations and the code
they affect. Such description must be included in the LEGAL file described in
Section 3.2 and must be included with all distributions of the Source Code.
Except to the extent prohibited by statute or regulation, such description
must be sufficiently detailed for a recipient of ordinary skill to be able to
understand it.
.
5.0 APPLICATION OF THIS LICENSE
.
This License applies to code to which the Initial Developer has attached the
notice in Exhibit A and to related Modifications as set out in Section 3.1.
.
6.0 VERSIONS OF THE LICENSE
.
6.1 New Versions.
Sun may publish revised and/or new versions of the License from time to time.
Each version will be given a distinguishing version number.
.
6.2 Effect of New Versions.
Once Original Code has been published under a particular version of the
License, You may always continue to use it under the terms of that version.
You may also choose to use such Original Code under the terms of any
subsequent version of the License published by Sun. No one other than Sun has
the right to modify the terms applicable to Original Code.
.
7.0 DISCLAIMER OF WARRANTY
.
ORIGINAL CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, WITHOUT
WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, WITHOUT
LIMITATION, WARRANTIES THAT THE ORIGINAL CODE IS FREE OF DEFECTS,
MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. THE ENTIRE RISK
AS TO THE QUALITY AND PERFORMANCE OF THE ORIGINAL CODE IS WITH YOU. SHOULD ANY
ORIGINAL CODE PROVE DEFECTIVE IN ANY RESPECT, YOU (NOT THE INITIAL DEVELOPER)
ASSUME THE COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS
DISCLAIMER OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE
OF ANY ORIGINAL CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.
.
8.0 TERMINATION
.
8.1 This License and the rights granted hereunder will terminate automatically
if You fail to comply with terms herein and fail to cure such breach within
30 days of becoming aware of the breach. All sublicenses to the Original Code
which are properly granted shall survive any termination of this License.
Provisions which, by their nature, must remain in effect beyond the
termination of this License shall survive.
.
8.2 In the event of termination under Section 8.1 above, all end user license
agreements (excluding distributors and resellers) which have been validly
granted by You or any distributor hereunder prior to termination shall survive
termination.
.
9.0 LIMIT OF LIABILITY
.
UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT (INCLUDING
NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL DEVELOPER, ANY
OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF ORIGINAL CODE, OR ANY SUPPLIER OF ANY
OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR ANY INDIRECT, SPECIAL,
INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING, WITHOUT
LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, COMPUTER FAILURE OR
MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH
PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS
LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL
INJURY RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW
PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR
LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THIS EXCLUSION AND
LIMITATION MAY NOT APPLY TO YOU.
.
10.0 U.S. GOVERNMENT END USERS
.
U.S. Government: If this Software is being acquired by or on behalf of the
U.S. Government or by a U.S. Government prime contractor or subcontractor (at
any tier), then the Government's rights in the Software and accompanying
documentation shall be only as set forth in this license; this is in
accordance with 48 C.F.R. 227.7201 through 227.7202-4 (for Department of
Defense (DoD) acquisitions) and with 48 C.F.R. 2.101 and 12.212 (for non-DoD
acquisitions).
.
11.0 MISCELLANEOUS
.
This License represents the complete agreement concerning subject matter
hereof. If any provision of this License is held to be unenforceable, such
provision shall be reformed only to the extent necessary to make it
enforceable. This License shall be governed by California law provisions
(except to the extent applicable law, if any, provides otherwise), excluding
its conflict-of-law provisions. With respect to disputes in which at least one
party is a citizen of, or an entity chartered or registered to do business in
the United States of America, any litigation relating to this License shall be
subject to the jurisdiction of the Federal Courts of the Northern District of
California, with venue lying in Santa Clara County, California, with the
losing party responsible for costs, including without limitation, court costs
and reasonable attorneys' fees and expenses. The application of the United
Nations Convention on Contracts for the International Sale of Goods is
expressly excluded. Any law or regulation which provides that the language of
a contract shall be construed against the drafter shall not apply to this
License.
.
EXHIBIT A - Sun Standards License
.
"The contents of this file are subject to the Sun Standards
License Version 1.1 (the "License");
You may not use this file except in compliance with the
License. You may obtain a copy of the
License at _______________________________.
.
Software distributed under the License is distributed on
an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either
express or implied. See the License for the specific
language governing rights and limitations under the License.
.
The Original Code is ______________________________________.
.
The Initial Developer of the Original Code is:
Sun Microsystems, Inc..
.
Portions created by: _______________________________________
.
are Copyright (C): _______________________________________
.
All Rights Reserved.
.
Contributor(s): _______________________________________
.
EXHIBIT B - Standards
.
The Standard is defined as the following:
.
OpenOffice.org XML File Format Specification, located at
http://xml.openoffice.org
.
OpenOffice.org Application Programming Interface Specification, located at
http://api.openoffice.org
|