poikilos
8 years ago
committed by
Jacob Gustafson
19 changed files with 2872 additions and 14 deletions
@ -0,0 +1,57 @@ |
|||||
|
; Script generated by the Inno Setup Script Wizard. |
||||
|
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES! |
||||
|
|
||||
|
#define MyAppName "ENLIVEN (a Minetest engine game)" |
||||
|
#define MyAppVersion "0.4.15.3" |
||||
|
#define MyAppPublisher "Axle Media" |
||||
|
#define MyAppURL "http://www.axlemedia.net" |
||||
|
#define MyAppExeName "ENLIVEN.exe" |
||||
|
|
||||
|
[Setup] |
||||
|
; NOTE: The value of AppId uniquely identifies this application. |
||||
|
; Do not use the same AppId value in installers for other applications. |
||||
|
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.) |
||||
|
AppId={{04FE638C-D7BC-477C-9A67-F051ED0BB53E} |
||||
|
AppName={#MyAppName} |
||||
|
AppVersion={#MyAppVersion} |
||||
|
;AppVerName={#MyAppName} {#MyAppVersion} |
||||
|
AppPublisher={#MyAppPublisher} |
||||
|
AppPublisherURL={#MyAppURL} |
||||
|
AppSupportURL={#MyAppURL} |
||||
|
AppUpdatesURL={#MyAppURL} |
||||
|
DefaultDirName=C:\Games\ENLIVEN |
||||
|
DisableProgramGroupPage=yes |
||||
|
LicenseFile=C:\Games\ENLIVEN-deploy\LICENSE for ENLIVEN.txt |
||||
|
InfoBeforeFile=C:\Games\ENLIVEN-deploy\README.md |
||||
|
OutputDir=Z:\www\expertmultimedia\downloads |
||||
|
OutputBaseFilename=install-ENLIVEN |
||||
|
Compression=lzma |
||||
|
SolidCompression=yes |
||||
|
|
||||
|
[Languages] |
||||
|
Name: "english"; MessagesFile: "compiler:Default.isl" |
||||
|
|
||||
|
[Tasks] |
||||
|
Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked |
||||
|
|
||||
|
[Dirs] |
||||
|
;everyone-full for main application folder seems necessary so Minetest could delete & recreate minetest.conf if settings are changed: |
||||
|
Name: "{app}"; Permissions: everyone-full |
||||
|
;full permissions are needed to bin so that screenshots can be created and debug.txt can be recreated if deleted: |
||||
|
;Name: "{app}\bin"; Permissions: everyone-full |
||||
|
;full permissions are needed for worlds so worlds can be created: |
||||
|
;Name: "{app}\worlds"; Permissions: everyone-full |
||||
|
|
||||
|
[Files] |
||||
|
Source: "C:\Games\ENLIVEN-deploy\ENLIVEN.exe"; DestDir: "{app}"; Flags: ignoreversion |
||||
|
Source: "C:\Games\ENLIVEN-deploy\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs; Permissions: everyone-full |
||||
|
; Source: "C:\games\ENLIVEN\minetest.conf"; DestDir: "{app}"; Permissions: everyone-full |
||||
|
; NOTE: Don't use "Flags: ignoreversion" on any shared system files |
||||
|
|
||||
|
[Icons] |
||||
|
Name: "{commonprograms}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}" |
||||
|
Name: "{commondesktop}\{#MyAppName}"; Filename: "{app}\{#MyAppExeName}"; Tasks: desktopicon |
||||
|
|
||||
|
[Run] |
||||
|
Filename: "{app}\{#MyAppExeName}"; Description: "{cm:LaunchProgram,{#StringChange(MyAppName, '&', '&&')}}"; Flags: nowait postinstall skipifsilent |
||||
|
|
After Width: | Height: | Size: 15 KiB |
@ -0,0 +1,38 @@ |
|||||
|
@echo off |
||||
|
REM http://doc.qt.io/qt-5/windows-deployment.html#the-windows-deployment-tool |
||||
|
REM normally the shell is run via the icon in the Qt folder that links to; C:\Windows\System32\cmd.exe /A /Q /K C:\Qt\5.7\mingw53_32\bin\qtenv2.bat |
||||
|
REM and whose working directory is C:\Windows\System32 |
||||
|
|
||||
|
|
||||
|
REM C:\Qt\5.7\mingw53_32\bin\qtenv2.bat |
||||
|
set PATH=C:\Qt\5.7\mingw53_32\bin;C:/Qt/Tools/mingw530_32\bin;%PATH% |
||||
|
cd /D C:\Qt\5.7\mingw53_32 |
||||
|
|
||||
|
|
||||
|
SET RELEASE_PATH=%USERPROFILE%\Documents\GitHub\build-ENLIVEN-Desktop_Qt_5_7_0_MinGW_32bit-Release\release |
||||
|
IF EXIST "%RELEASE_PATH%" ( |
||||
|
cd "%RELEASE_PATH%" |
||||
|
windeployqt.exe . |
||||
|
echo Current directory: %CD% |
||||
|
echo "Found USERPROFILE: %USERPROFILE%" |
||||
|
REM TOO LONG: |
||||
|
REM SET FINALDEPLOY=%USERPROFILE%\Documents\GitHub\EnlivenMinetest\install-windows-client\destination |
||||
|
REM echo "COPYING TO %FINALDEPLOY%..." |
||||
|
REM IF NOT EXIST "%FINALDEPLOY%\iconengines" MD "%FINALDEPLOY%\iconengines" |
||||
|
REM IF NOT EXIST "%FINALDEPLOY%\imageformats" MD "%FINALDEPLOY%\imageformats" |
||||
|
REM IF NOT EXIST "%FINALDEPLOY%\platforms" MD "%FINALDEPLOY%\platforms" |
||||
|
REM IF NOT EXIST "%FINALDEPLOY%\translations" MD "%FINALDEPLOY%\translations" |
||||
|
REM copy *.dll "%FINALDEPLOY%\" |
||||
|
REM copy ".\iconengines\*.dll" "%FINALDEPLOY%\iconengines\" |
||||
|
REM copy ".\imageformats\*.dll" "%FINALDEPLOY%\imageformats\" |
||||
|
REM copy ".\platforms\*.dll" "%FINALDEPLOY%\platforms\" |
||||
|
REM copy ".\translations\*.qm" "%FINALDEPLOY%\translations\" |
||||
|
pause |
||||
|
) ELSE ( |
||||
|
@echo off |
||||
|
echo "FAILED: couldn't find %RELEASE_PATH%" |
||||
|
pause |
||||
|
) |
||||
|
REM C:\Qt\5.7\mingw53_32\bin\windeployqt.exe |
||||
|
REM C:\Users\Owner\Documents\GitHub\build-ENLIVEN-Desktop_Qt_5_7_0_MinGW_32bit-Release\release |
||||
|
REM C:\Users\Owner\Documents\GitHub\EnlivenMinetest\install-windows-client\destination |
File diff suppressed because it is too large
@ -0,0 +1,450 @@ |
|||||
|
GNU Free Documentation License |
||||
|
Version 1.3, 3 November 2008 |
||||
|
|
||||
|
|
||||
|
Copyright (C) 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc. |
||||
|
<http://fsf.org/> |
||||
|
Everyone is permitted to copy and distribute verbatim copies |
||||
|
of this license document, but changing it is not allowed. |
||||
|
|
||||
|
0. PREAMBLE |
||||
|
|
||||
|
The purpose of this License is to make a manual, textbook, or other |
||||
|
functional and useful document "free" in the sense of freedom: to |
||||
|
assure everyone the effective freedom to copy and redistribute it, |
||||
|
with or without modifying it, either commercially or noncommercially. |
||||
|
Secondarily, this License preserves for the author and publisher a way |
||||
|
to get credit for their work, while not being considered responsible |
||||
|
for modifications made by others. |
||||
|
|
||||
|
This License is a kind of "copyleft", which means that derivative |
||||
|
works of the document must themselves be free in the same sense. It |
||||
|
complements the GNU General Public License, which is a copyleft |
||||
|
license designed for free software. |
||||
|
|
||||
|
We have designed this License in order to use it for manuals for free |
||||
|
software, because free software needs free documentation: a free |
||||
|
program should come with manuals providing the same freedoms that the |
||||
|
software does. But this License is not limited to software manuals; |
||||
|
it can be used for any textual work, regardless of subject matter or |
||||
|
whether it is published as a printed book. We recommend this License |
||||
|
principally for works whose purpose is instruction or reference. |
||||
|
|
||||
|
|
||||
|
1. APPLICABILITY AND DEFINITIONS |
||||
|
|
||||
|
This License applies to any manual or other work, in any medium, that |
||||
|
contains a notice placed by the copyright holder saying it can be |
||||
|
distributed under the terms of this License. Such a notice grants a |
||||
|
world-wide, royalty-free license, unlimited in duration, to use that |
||||
|
work under the conditions stated herein. The "Document", below, |
||||
|
refers to any such manual or work. Any member of the public is a |
||||
|
licensee, and is addressed as "you". You accept the license if you |
||||
|
copy, modify or distribute the work in a way requiring permission |
||||
|
under copyright law. |
||||
|
|
||||
|
A "Modified Version" of the Document means any work containing the |
||||
|
Document or a portion of it, either copied verbatim, or with |
||||
|
modifications and/or translated into another language. |
||||
|
|
||||
|
A "Secondary Section" is a named appendix or a front-matter section of |
||||
|
the Document that deals exclusively with the relationship of the |
||||
|
publishers or authors of the Document to the Document's overall |
||||
|
subject (or to related matters) and contains nothing that could fall |
||||
|
directly within that overall subject. (Thus, if the Document is in |
||||
|
part a textbook of mathematics, a Secondary Section may not explain |
||||
|
any mathematics.) The relationship could be a matter of historical |
||||
|
connection with the subject or with related matters, or of legal, |
||||
|
commercial, philosophical, ethical or political position regarding |
||||
|
them. |
||||
|
|
||||
|
The "Invariant Sections" are certain Secondary Sections whose titles |
||||
|
are designated, as being those of Invariant Sections, in the notice |
||||
|
that says that the Document is released under this License. If a |
||||
|
section does not fit the above definition of Secondary then it is not |
||||
|
allowed to be designated as Invariant. The Document may contain zero |
||||
|
Invariant Sections. If the Document does not identify any Invariant |
||||
|
Sections then there are none. |
||||
|
|
||||
|
The "Cover Texts" are certain short passages of text that are listed, |
||||
|
as Front-Cover Texts or Back-Cover Texts, in the notice that says that |
||||
|
the Document is released under this License. A Front-Cover Text may |
||||
|
be at most 5 words, and a Back-Cover Text may be at most 25 words. |
||||
|
|
||||
|
A "Transparent" copy of the Document means a machine-readable copy, |
||||
|
represented in a format whose specification is available to the |
||||
|
general public, that is suitable for revising the document |
||||
|
straightforwardly with generic text editors or (for images composed of |
||||
|
pixels) generic paint programs or (for drawings) some widely available |
||||
|
drawing editor, and that is suitable for input to text formatters or |
||||
|
for automatic translation to a variety of formats suitable for input |
||||
|
to text formatters. A copy made in an otherwise Transparent file |
||||
|
format whose markup, or absence of markup, has been arranged to thwart |
||||
|
or discourage subsequent modification by readers is not Transparent. |
||||
|
An image format is not Transparent if used for any substantial amount |
||||
|
of text. A copy that is not "Transparent" is called "Opaque". |
||||
|
|
||||
|
Examples of suitable formats for Transparent copies include plain |
||||
|
ASCII without markup, Texinfo input format, LaTeX input format, SGML |
||||
|
or XML using a publicly available DTD, and standard-conforming simple |
||||
|
HTML, PostScript or PDF designed for human modification. Examples of |
||||
|
transparent image formats include PNG, XCF and JPG. Opaque formats |
||||
|
include proprietary formats that can be read and edited only by |
||||
|
proprietary word processors, SGML or XML for which the DTD and/or |
||||
|
processing tools are not generally available, and the |
||||
|
machine-generated HTML, PostScript or PDF produced by some word |
||||
|
processors for output purposes only. |
||||
|
|
||||
|
The "Title Page" means, for a printed book, the title page itself, |
||||
|
plus such following pages as are needed to hold, legibly, the material |
||||
|
this License requires to appear in the title page. For works in |
||||
|
formats which do not have any title page as such, "Title Page" means |
||||
|
the text near the most prominent appearance of the work's title, |
||||
|
preceding the beginning of the body of the text. |
||||
|
|
||||
|
The "publisher" means any person or entity that distributes copies of |
||||
|
the Document to the public. |
||||
|
|
||||
|
A section "Entitled XYZ" means a named subunit of the Document whose |
||||
|
title either is precisely XYZ or contains XYZ in parentheses following |
||||
|
text that translates XYZ in another language. (Here XYZ stands for a |
||||
|
specific section name mentioned below, such as "Acknowledgments", |
||||
|
"Dedications", "Endorsements", or "History".) To "Preserve the Title" |
||||
|
of such a section when you modify the Document means that it remains a |
||||
|
section "Entitled XYZ" according to this definition. |
||||
|
|
||||
|
The Document may include Warranty Disclaimers next to the notice which |
||||
|
states that this License applies to the Document. These Warranty |
||||
|
Disclaimers are considered to be included by reference in this |
||||
|
License, but only as regards disclaiming warranties: any other |
||||
|
implication that these Warranty Disclaimers may have is void and has |
||||
|
no effect on the meaning of this License. |
||||
|
|
||||
|
2. VERBATIM COPYING |
||||
|
|
||||
|
You may copy and distribute the Document in any medium, either |
||||
|
commercially or noncommercially, provided that this License, the |
||||
|
copyright notices, and the license notice saying this License applies |
||||
|
to the Document are reproduced in all copies, and that you add no |
||||
|
other conditions whatsoever to those of this License. You may not use |
||||
|
technical measures to obstruct or control the reading or further |
||||
|
copying of the copies you make or distribute. However, you may accept |
||||
|
compensation in exchange for copies. If you distribute a large enough |
||||
|
number of copies you must also follow the conditions in section 3. |
||||
|
|
||||
|
You may also lend copies, under the same conditions stated above, and |
||||
|
you may publicly display copies. |
||||
|
|
||||
|
|
||||
|
3. COPYING IN QUANTITY |
||||
|
|
||||
|
If you publish printed copies (or copies in media that commonly have |
||||
|
printed covers) of the Document, numbering more than 100, and the |
||||
|
Document's license notice requires Cover Texts, you must enclose the |
||||
|
copies in covers that carry, clearly and legibly, all these Cover |
||||
|
Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on |
||||
|
the back cover. Both covers must also clearly and legibly identify |
||||
|
you as the publisher of these copies. The front cover must present |
||||
|
the full title with all words of the title equally prominent and |
||||
|
visible. You may add other material on the covers in addition. |
||||
|
Copying with changes limited to the covers, as long as they preserve |
||||
|
the title of the Document and satisfy these conditions, can be treated |
||||
|
as verbatim copying in other respects. |
||||
|
|
||||
|
If the required texts for either cover are too voluminous to fit |
||||
|
legibly, you should put the first ones listed (as many as fit |
||||
|
reasonably) on the actual cover, and continue the rest onto adjacent |
||||
|
pages. |
||||
|
|
||||
|
If you publish or distribute Opaque copies of the Document numbering |
||||
|
more than 100, you must either include a machine-readable Transparent |
||||
|
copy along with each Opaque copy, or state in or with each Opaque copy |
||||
|
a computer-network location from which the general network-using |
||||
|
public has access to download using public-standard network protocols |
||||
|
a complete Transparent copy of the Document, free of added material. |
||||
|
If you use the latter option, you must take reasonably prudent steps, |
||||
|
when you begin distribution of Opaque copies in quantity, to ensure |
||||
|
that this Transparent copy will remain thus accessible at the stated |
||||
|
location until at least one year after the last time you distribute an |
||||
|
Opaque copy (directly or through your agents or retailers) of that |
||||
|
edition to the public. |
||||
|
|
||||
|
It is requested, but not required, that you contact the authors of the |
||||
|
Document well before redistributing any large number of copies, to |
||||
|
give them a chance to provide you with an updated version of the |
||||
|
Document. |
||||
|
|
||||
|
|
||||
|
4. MODIFICATIONS |
||||
|
|
||||
|
You may copy and distribute a Modified Version of the Document under |
||||
|
the conditions of sections 2 and 3 above, provided that you release |
||||
|
the Modified Version under precisely this License, with the Modified |
||||
|
Version filling the role of the Document, thus licensing distribution |
||||
|
and modification of the Modified Version to whoever possesses a copy |
||||
|
of it. In addition, you must do these things in the Modified Version: |
||||
|
|
||||
|
A. Use in the Title Page (and on the covers, if any) a title distinct |
||||
|
from that of the Document, and from those of previous versions |
||||
|
(which should, if there were any, be listed in the History section |
||||
|
of the Document). You may use the same title as a previous version |
||||
|
if the original publisher of that version gives permission. |
||||
|
B. List on the Title Page, as authors, one or more persons or entities |
||||
|
responsible for authorship of the modifications in the Modified |
||||
|
Version, together with at least five of the principal authors of the |
||||
|
Document (all of its principal authors, if it has fewer than five), |
||||
|
unless they release you from this requirement. |
||||
|
C. State on the Title page the name of the publisher of the |
||||
|
Modified Version, as the publisher. |
||||
|
D. Preserve all the copyright notices of the Document. |
||||
|
E. Add an appropriate copyright notice for your modifications |
||||
|
adjacent to the other copyright notices. |
||||
|
F. Include, immediately after the copyright notices, a license notice |
||||
|
giving the public permission to use the Modified Version under the |
||||
|
terms of this License, in the form shown in the Addendum below. |
||||
|
G. Preserve in that license notice the full lists of Invariant Sections |
||||
|
and required Cover Texts given in the Document's license notice. |
||||
|
H. Include an unaltered copy of this License. |
||||
|
I. Preserve the section Entitled "History", Preserve its Title, and add |
||||
|
to it an item stating at least the title, year, new authors, and |
||||
|
publisher of the Modified Version as given on the Title Page. If |
||||
|
there is no section Entitled "History" in the Document, create one |
||||
|
stating the title, year, authors, and publisher of the Document aspkg/qt/meta/LICENSE.FDL |
||||
|
given on its Title Page, then add an item describing the Modified |
||||
|
Version as stated in the previous sentence. |
||||
|
J. Preserve the network location, if any, given in the Document for |
||||
|
public access to a Transparent copy of the Document, and likewise |
||||
|
the network locations given in the Document for previous versions |
||||
|
it was based on. These may be placed in the "History" section. |
||||
|
You may omit a network location for a work that was published at |
||||
|
least four years before the Document itself, or if the original |
||||
|
publisher of the version it refers to gives permission. |
||||
|
K. For any section Entitled "Acknowledgments" or "Dedications", |
||||
|
Preserve the Title of the section, and preserve in the section all |
||||
|
the substance and tone of each of the contributor acknowledgments |
||||
|
and/or dedications given therein. |
||||
|
L. Preserve all the Invariant Sections of the Document, |
||||
|
unaltered in their text and in their titles. Section numbers |
||||
|
or the equivalent are not considered part of the section titles. |
||||
|
M. Delete any section Entitled "Endorsements". Such a section |
||||
|
may not be included in the Modified Version. |
||||
|
N. Do not retitle any existing section to be Entitled "Endorsements" |
||||
|
or to conflict in title with any Invariant Section.pkg/qt/meta/LICENSE.FDL |
||||
|
O. Preserve any Warranty Disclaimers. |
||||
|
|
||||
|
If the Modified Version includes new front-matter sections or |
||||
|
appendices that qualify as Secondary Sections and contain no material |
||||
|
copied from the Document, you may at your option designate some or all |
||||
|
of these sections as invariant. To do this, add their titles to the |
||||
|
list of Invariant Sections in the Modified Version's license notice. |
||||
|
These titles must be distinct from any other section titles. |
||||
|
|
||||
|
You may add a section Entitled "Endorsements", provided it contains |
||||
|
nothing but endorsements of your Modified Version by various |
||||
|
parties--for example, statements of peer review or that the text has |
||||
|
been approved by an organization as the authoritative definition of a |
||||
|
standard. |
||||
|
|
||||
|
You may add a passage of up to five words as a Front-Cover Text, and a |
||||
|
passage of up to 25 words as a Back-Cover Text, to the end of the list |
||||
|
of Cover Texts in the Modified Version. Only one passage of |
||||
|
Front-Cover Text and one of Back-Cover Text may be added by (or |
||||
|
through arrangements made by) any one entity. If the Document already |
||||
|
includes a cover text for the same cover, previously added by you or |
||||
|
by arrangement made by the same entity you are acting on behalf of, |
||||
|
you may not add another; but you may replace the old one, on explicit |
||||
|
permission from the previous publisher that added the old one. |
||||
|
|
||||
|
The author(s) and publisher(s) of the Document do not by this License |
||||
|
give permission to use their names for publicity for or to assert or |
||||
|
imply endorsement of any Modified Version. |
||||
|
|
||||
|
|
||||
|
5. COMBINING DOCUMENTS |
||||
|
|
||||
|
You may combine the Document with other documents released under this |
||||
|
License, under the terms defined in section 4 above for modified |
||||
|
versions, provided that you include in the combination all of the |
||||
|
Invariant Sections of all of the original documents, unmodified, and |
||||
|
list them all as Invariant Sections of your combined work in its |
||||
|
license notice, and that you preserve all their Warranty Disclaimers. |
||||
|
|
||||
|
The combined work need only contain one copy of this License, and |
||||
|
multiple identical Invariant Sections may be replaced with a single |
||||
|
copy. If there are multiple Invariant Sections with the same name but |
||||
|
different contents, make the title of each such section unique by |
||||
|
adding at the end of it, in parentheses, the name of the original |
||||
|
author or publisher of that section if known, or else a unique number. |
||||
|
Make the same adjustment to the section titles in the list of |
||||
|
Invariant Sections in the license notice of the combined work. |
||||
|
|
||||
|
In the combination, you must combine any sections Entitled "History" |
||||
|
in the various original documents, forming one section Entitled |
||||
|
"History"; likewise combine any sections Entitled "Acknowledgments", |
||||
|
and any sections Entitled "Dedications". You must delete all sections |
||||
|
Entitled "Endorsements". |
||||
|
|
||||
|
|
||||
|
6. COLLECTIONS OF DOCUMENTS |
||||
|
|
||||
|
You may make a collection consisting of the Document and other |
||||
|
documents released under this License, and replace the individual |
||||
|
copies of this License in the various documents with a single copy |
||||
|
that is included in the collection, provided that you follow the rules |
||||
|
of this License for verbatim copying of each of the documents in all |
||||
|
other respects. |
||||
|
|
||||
|
You may extract a single document from such a collection, and |
||||
|
distribute it individually under this License, provided you insert a |
||||
|
copy of this License into the extracted document, and follow this |
||||
|
License in all other respects regarding verbatim copying of that |
||||
|
document. |
||||
|
|
||||
|
|
||||
|
7. AGGREGATION WITH INDEPENDENT WORKS |
||||
|
|
||||
|
A compilation of the Document or its derivatives with other separate |
||||
|
and independent documents or works, in or on a volume of a storage or |
||||
|
distribution medium, is called an "aggregate" if the copyright |
||||
|
resulting from the compilation is not used to limit the legal rights |
||||
|
of the compilation's users beyond what the individual works permit. |
||||
|
When the Document is included in an aggregate, this License does not |
||||
|
apply to the other works in the aggregate which are not themselves |
||||
|
derivative works of the Document. |
||||
|
|
||||
|
If the Cover Text requirement of section 3 is applicable to these |
||||
|
copies of the Document, then if the Document is less than one half of |
||||
|
the entire aggregate, the Document's Cover Texts may be placed on |
||||
|
covers that bracket the Document within the aggregate, or the |
||||
|
electronic equivalent of covers if the Document is in electronic form. |
||||
|
Otherwise they must appear on printed covers that bracket the whole |
||||
|
aggregate. |
||||
|
|
||||
|
|
||||
|
8. TRANSLATION |
||||
|
|
||||
|
Translation is considered a kind of modification, so you may |
||||
|
distribute translations of the Document under the terms of section 4. |
||||
|
Replacing Invariant Sections with translations requires specialpkg/qt/meta/LICENSE.FDL |
||||
|
permission from their copyright holders, but you may include |
||||
|
translations of some or all Invariant Sections in addition to the |
||||
|
original versions of these Invariant Sections. You may include a |
||||
|
translation of this License, and all the license notices in the |
||||
|
Document, and any Warranty Disclaimers, provided that you also include |
||||
|
the original English version of this License and the original versions |
||||
|
of those notices and disclaimers. In case of a disagreement between |
||||
|
the translation and the original version of this License or a notice |
||||
|
or disclaimer, the original version will prevail. |
||||
|
|
||||
|
If a section in the Document is Entitled "Acknowledgments", |
||||
|
"Dedications", or "History", the requirement (section 4) to Preserve |
||||
|
its Title (section 1) will typically require changing the actual |
||||
|
title. |
||||
|
|
||||
|
|
||||
|
9. TERMINATION |
||||
|
|
||||
|
You may not copy, modify, sublicense, or distribute the Document |
||||
|
except as expressly provided under this License. Any attempt |
||||
|
otherwise to copy, modify, sublicense, or distribute it is void, and |
||||
|
will automatically terminate your rights under this License. |
||||
|
|
||||
|
However, if you cease all violation of this License, then your license |
||||
|
from a particular copyright holder is reinstated (a) provisionally, |
||||
|
unless and until the copyright holder explicitly and finally |
||||
|
terminates your license, and (b) permanently, if the copyright holder |
||||
|
fails to notify you of the violation by some reasonable means prior to |
||||
|
60 days after the cessation. |
||||
|
|
||||
|
Moreover, your license from a particular copyright holder is |
||||
|
reinstated permanently if the copyright holder notifies you of the |
||||
|
violation by some reasonable means, this is the first time you have |
||||
|
received notice of violation of this License (for any work) from that |
||||
|
copyright holder, and you cure the violation prior to 30 days after |
||||
|
your receipt of the notice. |
||||
|
|
||||
|
Termination of your rights under this section does not terminate the |
||||
|
licenses of parties who have received copies or rights from you under |
||||
|
this License. If your rights have been terminated and not permanently |
||||
|
reinstated, receipt of a copy of some or all of the same material does |
||||
|
not give you any rights to use it. |
||||
|
|
||||
|
|
||||
|
10. FUTURE REVISIONS OF THIS LICENSE |
||||
|
|
||||
|
The Free Software Foundation may publish new, revised versions of the |
||||
|
GNU Free Documentation License from time to time. Such new versions |
||||
|
will be similar in spirit to the present version, but may differ in |
||||
|
detail to address new problems or concerns. See |
||||
|
http://www.gnu.org/copyleft/. |
||||
|
|
||||
|
Each version of the License is given a distinguishing version number. |
||||
|
If the Document specifies that a particular numbered version of this |
||||
|
License "or any later version" applies to it, you have the option of |
||||
|
following the terms and conditions either of that specified version or |
||||
|
of any later version that has been published (not as a draft) by the |
||||
|
Free Software Foundation. If the Document does not specify a version |
||||
|
number of this License, you may choose any version ever published (not |
||||
|
as a draft) by the Free Software Foundation. If the Document |
||||
|
specifies that a proxy can decide which future versions of this |
||||
|
License can be used, that proxy's public statement of acceptance of a |
||||
|
version permanently authorizes you to choose that version for the |
||||
|
Document. |
||||
|
|
||||
|
11. RELICENSING |
||||
|
|
||||
|
"Massive Multiauthor Collaboration Site" (or "MMC Site") means any |
||||
|
World Wide Web server that publishes copyrightable works and also |
||||
|
provides prominent facilities for anybody to edit those works. A |
||||
|
public wiki that anybody can edit is an example of such a server. A |
||||
|
"Massive Multiauthor Collaboration" (or "MMC") contained in the site |
||||
|
means any set of copyrightable works thus published on the MMC site. |
||||
|
|
||||
|
"CC-BY-SA" means the Creative Commons Attribution-Share Alike 3.0 |
||||
|
license published by Creative Commons Corporation, a not-for-profit |
||||
|
corporation with a principal place of business in San Francisco, |
||||
|
California, as well as future copyleft versions of that license |
||||
|
published by that same organization. |
||||
|
|
||||
|
"Incorporate" means to publish or republish a Document, in whole or in |
||||
|
part, as part of another Document. |
||||
|
|
||||
|
An MMC is "eligible for relicensing" if it is licensed under this |
||||
|
License, and if all works that were first published under this License |
||||
|
somewhere other than this MMC, and subsequently incorporated in whole or |
||||
|
in part into the MMC, (1) had no cover texts or invariant sections, and |
||||
|
(2) were thus incorporated prior to November 1, 2008. |
||||
|
|
||||
|
The operator of an MMC Site may republish an MMC contained in the site |
||||
|
under CC-BY-SA on the same site at any time before August 1, 2009, |
||||
|
provided the MMC is eligible for relicensing. |
||||
|
|
||||
|
|
||||
|
ADDENDUM: How to use this License for your documents |
||||
|
|
||||
|
To use this License in a document you have written, include a copy of |
||||
|
the License in the document and put the following copyright and |
||||
|
license notices just after the title page: |
||||
|
|
||||
|
Copyright (c) YEAR YOUR NAME. |
||||
|
Permission is granted to copy, distribute and/or modify this document |
||||
|
under the terms of the GNU Free Documentation License, Version 1.3 |
||||
|
or any later version published by the Free Software Foundation; |
||||
|
with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. |
||||
|
A copy of the license is included in the section entitled "GNU |
||||
|
Free Documentation License". |
||||
|
|
||||
|
If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts, |
||||
|
replace the "with...Texts." line with this: |
||||
|
|
||||
|
with the Invariant Sections being LIST THEIR TITLES, with the |
||||
|
Front-Cover Texts being LIST, and with the Back-Cover Texts being LIST. |
||||
|
|
||||
|
If you have Invariant Sections without Cover Texts, or some other |
||||
|
combination of the three, merge those two alternatives to suit the |
||||
|
situation. |
||||
|
|
||||
|
If your document contains nontrivial examples of program code, we |
||||
|
recommend releasing these examples in parallel under your choice of |
||||
|
free software license, such as the GNU General Public License, |
||||
|
to permit their use in free software. |
@ -0,0 +1,896 @@ |
|||||
|
Qt Enterprise |
||||
|
|
||||
|
The various components of the release include Open Source licensed software components. These components, listed by the component where such Open Source licensed software appears, are described as follows: |
||||
|
|
||||
|
========= |
||||
|
Qt Libraries |
||||
|
========= |
||||
|
|
||||
|
The Qt framework and tools are primarily licensed under the license terms specified above. However, Qt does contain certain components and third party software that are licensed under terms different from the above licenses. The third party software, including Open Source Software included in Qt is as follows: |
||||
|
|
||||
|
---------------------------------- |
||||
|
FreeType 2 (freetype) version 2.3.6 |
||||
|
---------------------------------- |
||||
|
|
||||
|
The FreeType project is a team of volunteers who develop free, portable and high-quality software solutions for digital typography. We specifically target embedded systems and focus on bringing small, efficient and ubiquitous products. -- quoted from 3rdparty/freetype/docs/freetype2.html. |
||||
|
See src/3rdparty/freetype/docs/FTL.txt and src/3rdparty/freetype/docs/GPL.txt for license details. |
||||
|
See also the files in src/3rdparty/opentype, which are used by FreeType. |
||||
|
Parts of the FreeType projects have been modified and put into Qt for use in the painting subsystem. These files are ftraster.h, ftraster.c, ftgrays.h and ftgrays.c. The following modifications has been made to these files: |
||||
|
Renamed FT_ and ft_ symbols to QT_FT_ and qt_ft_ to avoid name conflicts. |
||||
|
Removed parts of code not relevant when compiled with _STANDALONE_ defined. |
||||
|
Changed behavior in ftraster.c to follow X polygon filling rules. |
||||
|
Implemented support in ftraster.c for winding / odd even polygon fill rules. |
||||
|
Replaced bitmap generation with span generation in ftraster.c |
||||
|
Renamed: ftraster.h to qblackraster_p.h |
||||
|
Renamed: ftraster.c to qblackraster.c |
||||
|
Renamed: ftgrays.h to qgrayraster_p.h |
||||
|
Renamed: ftgrays.c to qgrayraster.c |
||||
|
The FreeType Project LICENSE |
||||
|
|
||||
|
2006-Jan-27 |
||||
|
|
||||
|
Copyright 1996-2002, 2006 by |
||||
|
David Turner, Robert Wilhelm, and Werner Lemberg |
||||
|
|
||||
|
Introduction |
||||
|
============ |
||||
|
|
||||
|
The FreeType Project is distributed in several archive packages; some of them may contain, in addition to the FreeType font engine, various tools and contributions which rely on, or relate to, the FreeType Project. |
||||
|
|
||||
|
This license applies to all files found in such packages, and which do not fall under their own explicit license. The license affects thus the FreeType font engine, the test programs,documentation and makefiles, at the very least. |
||||
|
|
||||
|
This license was inspired by the BSD, Artistic, and IJG (Independent JPEG Group) licenses, which all encourage inclusion and use of free software in commercial and freeware products alike. As a consequence, its main points are that: |
||||
|
o We don't promise that this software works. However, we will be interested in any kind of bug reports. (`as is' distribution) |
||||
|
|
||||
|
o You can use this software for whatever you want, in parts or full form, without having to pay us. (`royalty-free' usage) |
||||
|
|
||||
|
o You may not pretend that you wrote this software. If you use it, or only parts of it, in a program, you must acknowledge somewhere in your documentation that you have used the FreeType code. (`credits') |
||||
|
|
||||
|
We specifically permit and encourage the inclusion of this software, with or without modifications, in commercial products. We disclaim all warranties covering The FreeType Project and assume no liability related to The FreeType Project. |
||||
|
|
||||
|
Finally, many people asked us for a preferred form for a credit/disclaimer to use in compliance with this license. We thus encourage you to use the following text: |
||||
|
“Portions of this software are copyright © <year> The FreeType Project (www.freetype.org). All rights reserved." |
||||
|
|
||||
|
Please replace <year> with the value from the FreeType version you actually use. |
||||
|
|
||||
|
Legal Terms |
||||
|
=========== |
||||
|
|
||||
|
0. Definitions |
||||
|
-------------- |
||||
|
Throughout this license, the terms `package', `FreeType Project', and `FreeType archive' refer to the set of files originally distributed by the authors (David Turner, Robert Wilhelm, and Werner Lemberg) as the `FreeType Project', be they named as alpha, beta or final release. |
||||
|
|
||||
|
`You' refers to the licensee, or person using the project, where `using' is a generic term including compiling the project's source code as well as linking it to form a `program' or `executable'. This program is referred to as `a program using the FreeType engine'. |
||||
|
|
||||
|
This license applies to all files distributed in the original FreeType Project, including all source code, binaries and documentation, unless otherwise stated in the file in its original, unmodified form as distributed in the original archive. If you are unsure whether or not a particular file is covered by this license, you must contact us to verify this. |
||||
|
|
||||
|
The FreeType Project is copyright (C) 1996-2000 by David Turner, Robert Wilhelm, and Werner Lemberg. All rights reserved except as specified below. |
||||
|
|
||||
|
1. No Warranty |
||||
|
-------------- |
||||
|
THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO USE, OF THE FREETYPE PROJECT. |
||||
|
|
||||
|
2. Redistribution |
||||
|
----------------- |
||||
|
This license grants a worldwide, royalty-free, perpetual and irrevocable right and license to use, execute, perform, compile, display, copy, create derivative works of, distribute and sublicense the FreeType Project (in both source and object code forms) and derivative works thereof for any purpose; and to authorize others to exercise some or all of the rights granted herein, subject to the following conditions: |
||||
|
|
||||
|
o Redistribution of source code must retain this license file (`FTL.TXT') unaltered; any additions, deletions or changes to the original files must be clearly indicated in accompanying documentation. The copyright notices of the unaltered, original files must be preserved in all copies of source files. |
||||
|
|
||||
|
o Redistribution in binary form must provide a disclaimer that states that the software is based in part of the work of the FreeType Team, in the distribution documentation. We also encourage you to put an URL to the FreeType web page in your documentation, though this isn't mandatory. |
||||
|
|
||||
|
These conditions apply to any software derived from or based on the FreeType Project, not just the unmodified files. If you use our work, you must acknowledge us. However, no fee need be paid to us. |
||||
|
|
||||
|
3. Advertising |
||||
|
-------------- |
||||
|
Neither the FreeType authors and contributors nor you shall use the name of the other for commercial, advertising, or promotional purposes without specific prior written permission. We suggest, but do not require, that you use one or more of the following phrases to refer to this software in your documentation or advertising materials: `FreeType Project', `FreeType Engine', `FreeType library', or `FreeType Distribution'. |
||||
|
|
||||
|
As you have not signed this license, you are not required to accept it. However, as the FreeType Project is copyrighted material, only this license, or another one contracted with the authors, grants you the right to use, distribute, and modify it. Therefore, by using, distributing, or modifying the FreeType Project, you indicate that you understand and accept all the terms of this license. |
||||
|
|
||||
|
4. Contacts |
||||
|
----------- |
||||
|
There are two mailing lists related to FreeType: |
||||
|
o freetype@nongnu.org |
||||
|
Discusses general use and applications of FreeType, as well as future and wanted additions to the library and distribution. If you are looking for support, start in this list if you haven't found anything to help you in the documentation. |
||||
|
|
||||
|
o freetype-devel@nongnu.org |
||||
|
Discusses bugs, as well as engine internals, design issues, specific licenses, porting, etc. |
||||
|
|
||||
|
Our home page can be found at http://www.freetype.org |
||||
|
|
||||
|
Freetype includes the Bitmap Distribution Format: |
||||
|
|
||||
|
Copyright 2000 Computing Research Labs, New Mexico State University |
||||
|
Copyright 2001, 2002, 2003, 2004 Francesco Zappa Nardelli |
||||
|
|
||||
|
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 COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY 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. |
||||
|
|
||||
|
Libmng License |
||||
|
|
||||
|
Libjpeg License - version 8c |
||||
|
In plain English: |
||||
|
1. We don't promise that this software works. (But if you find any bugs, please let us know!) |
||||
|
2. You can use this software for whatever you want. You don't have to pay us. |
||||
|
3. You may not pretend that you wrote this software. If you use it in a program, you must acknowledge somewhere in your documentation that you've used the IJG code. |
||||
|
In legalese: |
||||
|
The authors make NO WARRANTY or representation, either express or implied, with respect to this software, its quality, accuracy, merchantability, or fitness for a particular purpose. This software is provided "AS IS", and you, its user, assume the entire risk as to its quality and accuracy. |
||||
|
This software is copyright (C) 1991-1998, Thomas G. Lane. |
||||
|
All Rights Reserved except as specified below. |
||||
|
Permission is hereby granted to use, copy, modify, and distribute this software (or portions thereof) for any purpose, without fee, subject to these conditions: |
||||
|
(1) If any part of the source code for this software is distributed, then this README file must be included, with this copyright and no-warranty notice unaltered; and any additions, deletions, or changes to the original files must be clearly indicated in accompanying documentation. |
||||
|
(2) If only executable code is distributed, then the accompanying |
||||
|
documentation must state that "this software is based in part on the work of the Independent JPEG Group". |
||||
|
(3) Permission for use of this software is granted only if the user accepts full responsibility for any undesirable consequences; the authors accept NO LIABILITY for damages of any kind. |
||||
|
These conditions apply to any software derived from or based on the IJG code, not just to the unmodified library. If you use our work, you ought to acknowledge us. |
||||
|
Permission is NOT granted for the use of any IJG author's name or company name in advertising or publicity relating to this software or products derived from it. This software may be referred to only as "the Independent JPEG Group's software". |
||||
|
We specifically permit and encourage the use of this software as the basis of commercial products, provided that all warranty or liability claims are assumed by the product vendor. |
||||
|
ansi2knr.c is included in this distribution by permission of L. Peter Deutsch, sole proprietor of its copyright holder, Aladdin Enterprises of Menlo Park, CA. ansi2knr.c is NOT covered by the above copyright and conditions, but instead by the usual distribution terms of the Free Software Foundation; principally,that you must include source code if you redistribute it. (See the file ansi2knr.c for full details.) However, since ansi2knr.c is not needed as part of any program generated from the IJG code, this does not limit you more than the foregoing paragraphs do. |
||||
|
The Unix configuration script "configure" was produced with GNU Autoconf. It is copyright by the Free Software Foundation but is freely distributable. The same holds for its supporting scripts (config.guess, config.sub, |
||||
|
ltconfig, ltmain.sh). Another support script, install-sh, is copyright by M.I.T. but is also freely distributable. |
||||
|
It appears that the arithmetic coding option of the JPEG spec is covered by patents owned by IBM, AT&T, and Mitsubishi. Hence arithmetic coding cannot legally be used without obtaining one or more licenses. For this reason, support for arithmetic coding has been removed from the free JPEG software. |
||||
|
(Since arithmetic coding provides only a marginal gain over the unpatented Huffman mode, it is unlikely that very many implementations will support it.) |
||||
|
So far as we are aware, there are no patent restrictions on the remaining code. |
||||
|
The IJG distribution formerly included code to read and write GIF files. |
||||
|
To avoid entanglement with the Unisys LZW patent, GIF reading support has been removed altogether, and the GIF writer has been simplified to produce "uncompressed GIFs". This technique does not use the LZW algorithm; the resulting GIF files are larger than usual, but are readable by all standard GIF decoders. |
||||
|
We are required to state that |
||||
|
"The Graphics Interchange Format(c) is the Copyright property of |
||||
|
CompuServe Incorporated. GIF(sm) is a Service Mark property of |
||||
|
CompuServe Incorporated." |
||||
|
|
||||
|
Libmng License |
||||
|
|
||||
|
Libjpeg License - version 8c |
||||
|
In plain English: |
||||
|
1. We don't promise that this software works. (But if you find any bugs, please let us know!) |
||||
|
2. You can use this software for whatever you want. You don't have to pay us. |
||||
|
3. You may not pretend that you wrote this software. If you use it in a program, you must acknowledge somewhere in your documentation that you've used the IJG code. |
||||
|
In legalese: |
||||
|
The authors make NO WARRANTY or representation, either express or implied, with respect to this software, its quality, accuracy, merchantability, or fitness for a particular purpose. This software is provided "AS IS", and you, its user, assume the entire risk as to its quality and accuracy. |
||||
|
This software is copyright (C) 1991-1998, Thomas G. Lane. |
||||
|
All Rights Reserved except as specified below. |
||||
|
Permission is hereby granted to use, copy, modify, and distribute this software (or portions thereof) for any purpose, without fee, subject to these conditions: |
||||
|
(1) If any part of the source code for this software is distributed, then this README file must be included, with this copyright and no-warranty notice unaltered; and any additions, deletions, or changes to the original files must be clearly indicated in accompanying documentation. |
||||
|
(2) If only executable code is distributed, then the accompanying |
||||
|
documentation must state that "this software is based in part on the work of the Independent JPEG Group". |
||||
|
(3) Permission for use of this software is granted only if the user accepts full responsibility for any undesirable consequences; the authors accept NO LIABILITY for damages of any kind. |
||||
|
These conditions apply to any software derived from or based on the IJG code, not just to the unmodified library. If you use our work, you ought to acknowledge us. |
||||
|
Permission is NOT granted for the use of any IJG author's name or company name in advertising or publicity relating to this software or products derived from it. This software may be referred to only as "the Independent JPEG Group's software". |
||||
|
We specifically permit and encourage the use of this software as the basis of commercial products, provided that all warranty or liability claims are assumed by the product vendor. |
||||
|
ansi2knr.c is included in this distribution by permission of L. Peter Deutsch, sole proprietor of its copyright holder, Aladdin Enterprises of Menlo Park, CA. ansi2knr.c is NOT covered by the above copyright and conditions, but instead by the usual distribution terms of the Free Software Foundation; principally,that you must include source code if you redistribute it. (See the file ansi2knr.c for full details.) However, since ansi2knr.c is not needed as part of any program generated from the IJG code, this does not limit you more than the foregoing paragraphs do. |
||||
|
The Unix configuration script "configure" was produced with GNU Autoconf. It is copyright by the Free Software Foundation but is freely distributable. The same holds for its supporting scripts (config.guess, config.sub, |
||||
|
ltconfig, ltmain.sh). Another support script, install-sh, is copyright by M.I.T. but is also freely distributable. |
||||
|
It appears that the arithmetic coding option of the JPEG spec is covered by patents owned by IBM, AT&T, and Mitsubishi. Hence arithmetic coding cannot legally be used without obtaining one or more licenses. For this reason, support for arithmetic coding has been removed from the free JPEG software. |
||||
|
(Since arithmetic coding provides only a marginal gain over the unpatented Huffman mode, it is unlikely that very many implementations will support it.) |
||||
|
So far as we are aware, there are no patent restrictions on the remaining code. |
||||
|
The IJG distribution formerly included code to read and write GIF files. |
||||
|
To avoid entanglement with the Unisys LZW patent, GIF reading support has been removed altogether, and the GIF writer has been simplified to produce "uncompressed GIFs". This technique does not use the LZW algorithm; the resulting GIF files are larger than usual, but are readable by all standard GIF decoders. |
||||
|
We are required to state that |
||||
|
"The Graphics Interchange Format(c) is the Copyright property of |
||||
|
CompuServe Incorporated. GIF(sm) is a Service Mark property of |
||||
|
CompuServe Incorporated." |
||||
|
|
||||
|
Libpng License - version 1.5.1 |
||||
|
This copy of the libpng notices is provided for your convenience. In case of any discrepancy between this copy and the notices in the file png.h that is included in the libpng distribution, the latter shall prevail. |
||||
|
|
||||
|
COPYRIGHT NOTICE, DISCLAIMER, and LICENSE: |
||||
|
|
||||
|
If you modify libpng you may insert additional notices immediately following this sentence. |
||||
|
|
||||
|
libpng versions 1.2.6, August 15, 2004, through 1.2.29, May 8, 2008, are Copyright (c) 2004, 2006-2008 Glenn Randers-Pehrson, and are |
||||
|
distributed according to the same disclaimer and license as libpng-1.2.5 with the following individual added to the list of Contributing Authors |
||||
|
|
||||
|
Cosmin Truta |
||||
|
|
||||
|
libpng versions 1.0.7, July 1, 2000, through 1.2.5 - October 3, 2002, are Copyright (c) 2000-2002 Glenn Randers-Pehrson, and are |
||||
|
distributed according to the same disclaimer and license as libpng-1.0.6 with the following individuals added to the list of Contributing Authors |
||||
|
|
||||
|
Simon-Pierre Cadieux |
||||
|
Eric S. Raymond |
||||
|
Gilles Vollant |
||||
|
|
||||
|
and with the following additions to the disclaimer: |
||||
|
|
||||
|
There is no warranty against interference with your enjoyment of the library or against infringement. There is no warranty that our efforts or the library will fulfill any of your particular purposes or needs. This library is provided with all faults, and the entire risk of satisfactory quality, performance, accuracy, and effort is with the user. |
||||
|
|
||||
|
libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are Copyright (c) 1998, 1999 Glenn Randers-Pehrson, and are |
||||
|
distributed according to the same disclaimer and license as libpng-0.96, with the following individuals added to the list of Contributing Authors: |
||||
|
|
||||
|
Tom Lane |
||||
|
Glenn Randers-Pehrson |
||||
|
Willem van Schaik |
||||
|
|
||||
|
libpng versions 0.89, June 1996, through 0.96, May 1997, are |
||||
|
Copyright (c) 1996, 1997 Andreas Dilger |
||||
|
|
||||
|
Distributed according to the same disclaimer and license as libpng-0.88, with the following individuals added to the list of Contributing Authors: |
||||
|
|
||||
|
John Bowler |
||||
|
Kevin Bracey |
||||
|
Sam Bushell |
||||
|
Magnus Holmgren |
||||
|
Greg Roelofs |
||||
|
Tom Tanner |
||||
|
|
||||
|
libpng versions 0.5, May 1995, through 0.88, January 1996, are |
||||
|
Copyright (c) 1995, 1996 Guy Eric Schalnat, Group 42, Inc. |
||||
|
|
||||
|
For the purposes of this copyright and license, "Contributing Authors" is defined as the following set of individuals: |
||||
|
|
||||
|
Andreas Dilger |
||||
|
Dave Martindale |
||||
|
Guy Eric Schalnat |
||||
|
Paul Schmidt |
||||
|
Tim Wegner |
||||
|
|
||||
|
The PNG Reference Library is supplied "AS IS". The Contributing Authors and Group 42, Inc. disclaim all warranties, expressed or implied, including, without limitation, the warranties of merchantability and of fitness for any purpose. The Contributing Authors and Group 42, Inc. assume no liability for direct, indirect, incidental, special, exemplary, or consequential damages, which may result from the use of the PNG Reference Library, even if advised of the possibility of such damage. |
||||
|
|
||||
|
Permission is hereby granted to use, copy, modify, and distribute this source code, or portions hereof, for any purpose, without fee, subject to the following restrictions: |
||||
|
|
||||
|
1. The origin of this source code must not be misrepresented. |
||||
|
|
||||
|
2. Altered versions must be plainly marked as such and must not |
||||
|
be misrepresented as being the original source. |
||||
|
|
||||
|
3. This Copyright notice may not be removed or altered from any |
||||
|
source or altered source distribution. |
||||
|
|
||||
|
The Contributing Authors and Group 42, Inc. specifically permit, without fee, and encourage the use of this source code as a component to supporting the PNG file format in commercial products. If you use this source code in a product, acknowledgment is not required but would be appreciated. |
||||
|
|
||||
|
|
||||
|
A "png_get_copyright" function is available, for convenient use in "about" boxes and the like: |
||||
|
|
||||
|
printf("%s",png_get_copyright(NULL)); |
||||
|
|
||||
|
Also, the PNG logo (in PNG format, of course) is supplied in the files "pngbar.png" and "pngbar.jpg (88x31) and "pngnow.png" (98x31). |
||||
|
|
||||
|
Libpng is OSI Certified Open Source Software. OSI Certified Open Source is a certification mark of the Open Source Initiative. |
||||
|
|
||||
|
Glenn Randers-Pehrson |
||||
|
glennrp at users.sourceforge.net |
||||
|
May 8, 2008 |
||||
|
|
||||
|
Zlib License –version 1.2.5 |
||||
|
|
||||
|
Copyright (C) 1995-2005 Jean-loup Gailly and Mark Adler |
||||
|
|
||||
|
This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. |
||||
|
|
||||
|
Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: |
||||
|
|
||||
|
1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. |
||||
|
|
||||
|
2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. |
||||
|
|
||||
|
3. This notice may not be removed or altered from any source distribution. |
||||
|
|
||||
|
Jean-loup Gailly jloup@gzip.org |
||||
|
Mark Adler madler@alumni.caltech.edu |
||||
|
|
||||
|
|
||||
|
Sqlite |
||||
|
1. 2001 September 15 |
||||
|
2. The author disclaims copyright to this source code. In place of a legal notice, here is a blessing: |
||||
|
3. May you do good and not eviL. |
||||
|
4. May you find forgiveness for yourself and forgive others. |
||||
|
5. May you share freely, never taking more than you give. |
||||
|
|
||||
|
Wintab |
||||
|
The text and information contained in this file may be freely used, Copied, or distributed without compensation or licensing restrictions. |
||||
|
This file is copyright 1991-1998 by LCS/Telegraphics. |
||||
|
|
||||
|
HarfBuzz (harfbuzz) |
||||
|
This is HarfBuzz, an OpenType Layout engine. |
||||
|
It was derived originally from the OpenType code in FreeType-1.x, ported to FreeType2. (This code has been abandoned for FreeType2, but until something better comes along, should serve our purposes.) In addition to porting to FreeType-2, it has been modified in various other ways. |
||||
|
Please see licensing terms and conditions set forth in Section a) above (i.e. the FreeType License). |
||||
|
|
||||
|
MD5 (md5.cpp and md5.h) |
||||
|
This code implements the MD5 message-digest algorithm. The algorithm is due to Ron Rivest. This code was written by Colin Plumb in 1993, no copyright is claimed. |
||||
|
This code is in the public domain; do with it what you wish. |
||||
|
|
||||
|
|
||||
|
LibTiff |
||||
|
Copyright (c) 1988-1997 Sam Leffler |
||||
|
Copyright (c) 1991-1997 Silicon Graphics, Inc. |
||||
|
Copyright (C) 2004, Andrey Kiselev <dron@ak4719.spb.edu> |
||||
|
Copyright (c) 1997 Greg Ward Larson |
||||
|
|
||||
|
Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that (i) the above copyright notices and this permission notice appear in all copies of the software and related documentation, and (ii) the names of Sam Leffler and Silicon Graphics may not be used in any advertising or publicity relating to the software without the specific, prior written permission of Sam Leffler and Silicon Graphics. |
||||
|
|
||||
|
THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. |
||||
|
|
||||
|
IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
||||
|
|
||||
|
Copyright (c) 1996-1997 Sam Leffler |
||||
|
Copyright (c) 1996 Pixar |
||||
|
Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that (i) the above copyright notices and this permission notice appear in all copies of the software and related documentation, and (ii) the names of Pixar, Sam Leffler and Silicon Graphics may not be used in any advertising or publicity relating to the software without the specific, prior written permission of Pixar, Sam Leffler and Silicon Graphics. |
||||
|
THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. |
||||
|
IN NO EVENT SHALL PIXAR, SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
||||
|
|
||||
|
PTMalloc Version 1.8 |
||||
|
ptmcalloc3 is a scalable concurrent memory allocator suitable for use in multi-threaded programs. |
||||
|
Copyright (c) 2001-2006 Wolfram Gloger |
||||
|
Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that (i) the above copyright notices and this permission notice appear in all copies of the software and related documentation, and (ii) the name of Wolfram Gloger may not be used in any advertising or publicity relating to the software. |
||||
|
THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. |
||||
|
IN NO EVENT SHALL WOLFRAM GLOGER BE LIABLE FOR ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
||||
|
Non-Digia Owned Code used in Qt |
||||
|
Qt contains some code that is not provided under the the GNU General Public License version 3 (“GPL”), or the GNU Lesser General Public License version 2.1 (“LGPL”), but rather under specific highly permissive licenses from the original authors. This page lists the licenses used for that code, names the authors, and links to the points where it is used. |
||||
|
Digia gratefully acknowledges these and others contributions to Qt. We recommend that programs that use Qt or Qtopia Core also acknowledge these contributions, and quote these license statements in an appendix to the documentation. |
||||
|
|
||||
|
Copyright (C) 1999 Serika Kurusugawa. All rights reserved. |
||||
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: |
||||
|
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. |
||||
|
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. |
||||
|
THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS "AS IS". 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. |
||||
|
* Shift-JIS Text Codec |
||||
|
* ISO 2022-JP (JIS) Text Codec |
||||
|
* EUC-JP Text Codec |
||||
|
|
||||
|
Copyright (C) 1999-2000 Mizi Research Inc. All rights reserved. |
||||
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: |
||||
|
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. |
||||
|
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. |
||||
|
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. |
||||
|
* EUC-KR Text Codec |
||||
|
|
||||
|
Copyright (C) 2000 TurboLinux, Inc. Written by Justin Yu and Sean Chen. |
||||
|
Copyright (C) 2001, 2002 Turbolinux, Inc. Written by James Su. |
||||
|
Copyright (C) 2001, 2002 ThizLinux Laboratory Ltd. Written by Anthony Fok. |
||||
|
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. |
||||
|
* GBK Text Codec |
||||
|
|
||||
|
Copyright (C) 2000 Ming-Che Chuang |
||||
|
Copyright (C) 2001, 2002 James Su, Turbolinux Inc. |
||||
|
Copyright (C) 2002 WU Yi, HancomLinux Inc. |
||||
|
Copyright (C) 2001, 2002 Anthony Fok, ThizLinux Laboratory Ltd. |
||||
|
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. |
||||
|
* Big5-HKSCS Text Codec |
||||
|
|
||||
|
Copyright (C) 2000 Ming-Che Chuang |
||||
|
Copyright (C) 2002 James Su, Turbolinux Inc. |
||||
|
Copyright (C) 2002 Anthony Fok, ThizLinux Laboratory Ltd. |
||||
|
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. |
||||
|
* Big5 Text Codec |
||||
|
|
||||
|
Copyright (C) 2005-2006 Trolltech ASA. All rights reserved. |
||||
|
Copyright (C) 2005 Bjoern Bergstroem |
||||
|
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, modify, market, reproduce, grant sublicenses and distribute 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. These files are provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
||||
|
* Implementation of the Recursive Shadow Casting Algorithm in Qt Designer |
||||
|
|
||||
|
Copyright (C) 2005-2006 Trolltech ASA. All rights reserved. |
||||
|
Copyright (C) 2005 Roberto Raggi |
||||
|
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, modify, market, reproduce, grant sublicenses and distribute 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. These files are provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE WARRANTY OF DESIGN, MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
||||
|
* Contributions to the Following qt3to4 Files: treewalker.h, treedump.cpp, treedump.h, treewalker.cpp |
||||
|
|
||||
|
Copyright (c) 1987 X Consortium |
||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: |
||||
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. |
||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
||||
|
Except as contained in this notice, the name of the X Consortium shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from the X Consortium. |
||||
|
* QRegion |
||||
|
|
||||
|
Copyright (c) 1989 The Regents of the University of California. All rights reserved. |
||||
|
Redistribution and use in source and binary forms are permitted provided that the above copyright notice and this paragraph are duplicated in all such forms and that any documentation, advertising materials, and other materials related to such distribution and use acknowledge that the software was developed by the University of California, Berkeley. The name of the University may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
||||
|
* QDate::weekNumber() |
||||
|
|
||||
|
Copyright (c) 1991 by AT&T. |
||||
|
Permission to use, copy, modify, and distribute this software for any purpose without fee is hereby granted, provided that this entire notice is included in all copies of any software which is or includes a copy or modification of this software and in all copies of the supporting documentation for such software. |
||||
|
THIS SOFTWARE IS BEING PROVIDED "AS IS", WITHOUT ANY EXPRESS OR IMPLIED WARRANTY. IN PARTICULAR, NEITHER THE AUTHOR NOR AT&T MAKES ANY REPRESENTATION OR WARRANTY OF ANY KIND CONCERNING THE MERCHANTABILITY OF THIS SOFTWARE OR ITS FITNESS FOR ANY PARTICULAR PURPOSE. |
||||
|
This product includes software developed by the University of California, Berkeley and its contributors. |
||||
|
* QLocale |
||||
|
|
||||
|
Copyright (c) 2000 Hans Petter Bieker. All rights reserved. |
||||
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: |
||||
|
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. |
||||
|
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. |
||||
|
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. |
||||
|
* TSCII Text Codec |
||||
|
|
||||
|
Copyright 1996 Daniel Dardailler. |
||||
|
Permission to use, copy, modify, distribute, and sell this software for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of Daniel Dardailler not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. Daniel Dardailler makes no representations about the suitability of this software for any purpose. It is provided "as is" without express or implied warranty. |
||||
|
Modifications Copyright 1999 Matt Koss, under the same license as above. |
||||
|
* Drag and Drop |
||||
|
|
||||
|
Copyright 2002 USC/Information Sciences Institute |
||||
|
Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of Information Sciences Institute not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. Information Sciences Institute makes no representations about the suitability of this software for any purpose. It is provided "as is" without express or implied warranty. |
||||
|
INFORMATION SCIENCES INSTITUTE DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL INFORMATION SCIENCES INSTITUTE BE LIABLE FOR 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 THIS SOFTWARE. |
||||
|
* QtSvg Module |
||||
|
|
||||
|
Copyright (C) The Internet Society (2001). All Rights Reserved. |
||||
|
This document and translations of it may be copied and furnished to others, and derivative works that comment on or otherwise explain it or assist in its implementation may be prepared, copied, published and distributed, in whole or in part, without restriction of any kind, provided that the above copyright notice and this paragraph are included on all such copies and derivative works. However, this document itself may not be modified in any way, such as by removing the copyright notice or references to the Internet Society or other Internet organizations, except as needed for the purpose of developing Internet standards in which case the procedures for copyrights defined in the Internet Standards process must be followed, or as required to translate it into languages other than English. |
||||
|
The limited permissions granted above are perpetual and will not be revoked by the Internet Society or its successors or assigns. |
||||
|
This document and the information contained herein is provided on an "AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. |
||||
|
* Torrent Example |
||||
|
|
||||
|
Copyright (c) 1998 by Bjorn Reese <breese@imada.ou.dk> |
||||
|
Permission to use, copy, modify, and 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. |
||||
|
THIS SOFTWARE 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 AUTHORS AND CONTRIBUTORS ACCEPT NO RESPONSIBILITY IN ANY CONCEIVABLE MANNER. |
||||
|
* Parts of the QCrashHandler Class |
||||
|
|
||||
|
Parts of the FreeType projects have been modified and put into Qt and Qtopia Core for use in the painting subsystem. These files are ftraster.h, ftraster.c, ftgrays.h and ftgrays.c. The following modifications has been made to these files: |
||||
|
* Renamed FT and ft_symbols to QT_FT_and qt_ft to avoid name conflicts in qrasterdefs_p.h. |
||||
|
* Removed parts of code not relevant when compiled with _STANDALONE_ defined. |
||||
|
* Changed behavior in ftraster.c to follow X polygon filling rules. |
||||
|
* Implemented support in ftraster.c for winding / odd even polygon fill rules. |
||||
|
* Replaced bitmap generation with span generation in ftraster.c. |
||||
|
* Renamed ftraster.h as qblackraster_p.h. |
||||
|
* Renamed ftraster.c as qblackraster.c. |
||||
|
* Renamed ftgrays.h as qgrayraster_p.h. |
||||
|
* Renamed ftgrays.c as qgrayraster.c. |
||||
|
See src/3rdparty/freetype/docs/FTL.txt and src/3rdparty/freetype/docs/GPL.txt for license details. |
||||
|
|
||||
|
Copyright (c) 1985, 1986, 1987 X Consortium |
||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: |
||||
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. |
||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
||||
|
Except as contained in this notice, the name of the X Consortium shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from the X Consortium. |
||||
|
* Parts of the Q3PolygonScanner Class Used in Qt for Embedded Linux |
||||
|
|
||||
|
Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts. |
||||
|
All Rights Reserved |
||||
|
Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of Digital not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. |
||||
|
DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL DIGITAL BE LIABLE FOR 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 THIS SOFTWARE. |
||||
|
* Parts of the Q3PolygonScanner class used in Qt for Embedded Linux |
||||
|
|
||||
|
OpenGL is a trademark of Silicon Graphics, Inc. in the United States and other countries. |
||||
|
* QGLFormat |
||||
|
|
||||
|
WebKit is licensed under the GNU Library General Public License. Individual contributor names and copyright dates can be found inline in the code. |
||||
|
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. |
||||
|
This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. |
||||
|
You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
||||
|
* QtWebKit Module |
||||
|
|
||||
|
Copyright (C) 2000-2004, International Business Machines |
||||
|
Corporation and others. All Rights Reserved. |
||||
|
Copyright (C) 2007 Apple Inc. All rights reserved. |
||||
|
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, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, provided that the above copyright notice(s) and this permission notice appear in all copies of the Software and that both the above copyright notice(s) and this permission notice appear in supporting documentation. |
||||
|
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 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 THIS 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 this Software without prior written authorization of the copyright holder. |
||||
|
* Parts of WebKit used by the QtWebKit module |
||||
|
|
||||
|
Copyright (C) 2003-2006 Ben van Klinken and the CLucene Team |
||||
|
Changes are Copyright(C) 2007 by Trolltech ASA, all rights reserved. |
||||
|
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 |
||||
|
* QtHelp Module |
||||
|
|
||||
|
Copyright (C) 2004, 2005 Daniel M. Duley |
||||
|
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 ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||
|
* QImage |
||||
|
|
||||
|
This file is part of the KDE project |
||||
|
Copyright (C) 2005-2007 Matthias Kretz <kretz@kde.org> |
||||
|
Copyright (C) 2007-2008 Trolltech ASA. |
||||
|
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License version 2 as published by the Free Software Foundation. |
||||
|
This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. |
||||
|
You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
||||
|
* Phonon Module |
||||
|
|
||||
|
Copyright (C) 2007-2008, Apple, Inc. |
||||
|
All rights reserved. |
||||
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: |
||||
|
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. |
||||
|
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. |
||||
|
* Neither the name of Apple, Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. |
||||
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||
|
Contributions to the Following QtGui Files: |
||||
|
* qapplication_cocoa_p.h |
||||
|
* qapplication_mac.mm |
||||
|
* qdesktopwidget_mac.mm |
||||
|
* qeventdispatcher_mac.mm |
||||
|
* qeventdispatcher_mac_p.h |
||||
|
* qmacincludes_mac.h |
||||
|
* qt_cocoa_helpers.mm |
||||
|
* qt_cocoa_helpers_p.h |
||||
|
* qwidget_mac.mm |
||||
|
* qsystemtrayicon_mac.mm |
||||
|
|
||||
|
|
||||
|
Copyright (C) 2003-2004 immodule for Qt Project. All rights reserved. |
||||
|
This file is written to contribute to Digia Corporation and/or its subsidiary(-ies) under their own license. You may use this file under your Qt license. Following description is copied from their original file headers. Contact immodule-qt@freedesktop.org if any conditions of this licensing are not clear to you. |
||||
|
* QInputContextFactory |
||||
|
* QInputContext |
||||
|
* QInputContextPlugin |
||||
|
|
||||
|
Copyright (c) 2003, 2006 Matteo Frigo |
||||
|
Copyright (c) 2003, 2006 Massachusetts Institute of Technology |
||||
|
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. |
||||
|
* QTestLib Manual |
||||
|
|
||||
|
Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). |
||||
|
All rights reserved. |
||||
|
Contact: Qt Development Frameworks Information (qt-info@nokia.com) |
||||
|
You may use this file under the terms of the BSD license as follows: |
||||
|
"Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: |
||||
|
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. |
||||
|
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. |
||||
|
* Neither the name of Nokia Corporation and its Subsidiary(-ies) nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. |
||||
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." |
||||
|
* QAxServer Module |
||||
|
* The qtmain Library |
||||
|
* QAxContainer Module |
||||
|
|
||||
|
Copyright 1985, 1987, 1998 The Open Group |
||||
|
Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. |
||||
|
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. |
||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
||||
|
Except as contained in this notice, the name of The Open Group shall not be used in advertising or otherwise to promote the sale, use or other dealings in this Software without prior written authorization from The Open Group. |
||||
|
* Parts of the internal QKeyMapper class on X11 platforms |
||||
|
|
||||
|
pnmscale.c - read a portable anymap and scale it |
||||
|
Copyright (C) 1989, 1991 by Jef Poskanzer. |
||||
|
Permission to use, copy, modify, and distribute this software and its documentation for any purpose and without fee is hereby granted, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation. This software is provided "as is" without express or implied warranty. |
||||
|
* Parts of the internal QImageSmoothScaler::scale() function use code based on pnmscale.c by Jef Poskanzer. |
||||
|
|
||||
|
FFTReal version 2.0 |
||||
|
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. |
||||
|
This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. |
||||
|
You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
||||
|
|
||||
|
JQuery |
||||
|
jQuery JavaScript Library v1.3.2 http://jquery.com/ |
||||
|
Copyright (c) 2009 John Resig Dual licensed under the MIT and GPL licenses. http://docs.jquery.com/License |
||||
|
Sizzle CSS Selector Engine - v0.9.3 Copyright 2009, The Dojo Foundation Released under the MIT, BSD, and GPL Licenses. More information: http://sizzlejs.com/ |
||||
|
* examples/webkit/fancybrowser/jquery.min.js |
||||
|
|
||||
|
DES (des.cpp) |
||||
|
Implementation of DES encryption for NTLM |
||||
|
Copyright 1997-2005 Simon Tatham. |
||||
|
This software is released under the MIT license. |
||||
|
|
||||
|
MD4 (md4.cpp and md4.h) |
||||
|
MD4 (RFC-1320) message digest. |
||||
|
Modified from MD5 code by Andrey Panin <pazke@donpac.ru> |
||||
|
Written by Solar Designer <solar@openwall.com> in 2001, and placed in |
||||
|
the public domain. There's absolutely no warranty. |
||||
|
|
||||
|
Bison Parser |
||||
|
As a special exception, you may create a larger work that contains part or all of the Bison parser skeleton and distribute that work under terms of your choice, so long as that work isn't itself a parser generator using the skeleton or a modified version thereof as a parser skeleton. Alternatively, if you modify or redistribute the parser skeleton itself, you may (at your option) remove this special exception, which will cause the skeleton and the resulting Bison output files to be licensed under the GNU General Public License without this special exception. |
||||
|
|
||||
|
Copyright © 1994-2001 World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University). All Rights Reserved. http://www.w3.org/Consortium/Legal/ |
||||
|
This W3C work (including software, documents, or other related items) is being provided by the copyright holders under the following license. By obtaining, using and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions: |
||||
|
Permission to use, copy, modify, and distribute this software and its documentation, with or without modification, for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the software and documentation or portions thereof, including modifications, that you make: |
||||
|
1. The full text of this NOTICE in a location viewable to users of the redistributed or derivative work. |
||||
|
2. Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, a short notice of the following form (hypertext is preferred, text is permitted) should be used within the body of any redistributed or derivative code: "Copyright © [$date-of-software] World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University). All Rights Reserved. http://www.w3.org/Consortium/Legal/" |
||||
|
3. Notice of any changes or modifications to the W3C files, including the date changes were made. (We recommend you provide URIs to the location from which the code is derived.) |
||||
|
THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. |
||||
|
COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION. |
||||
|
The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the software without specific, written prior permission. Title to copyright in this software and any associated documentation will at all times remain with copyright holders. |
||||
|
* XML Patterns Scheme (source/qt-everywhere-opensource-src-4.8.0/qt-everywhere-opensource-src-4.8.0/src/xmlpatterns/schema/schemas/xml.xsd-LICENSE) |
||||
|
|
||||
|
PowerVR: |
||||
|
Copyright : Copyright (c) Imagination Technologies Limited. |
||||
|
This specification is protected by copyright laws and contains material proprietary to Imagination Technologies Limited. |
||||
|
You may use and distribute this specification free of charge for implementing the functionality therein, without altering or removing any trademark, copyright, or other notice from the specification. |
||||
|
|
||||
|
Superfish: |
||||
|
Superfish v1.4.8 - jQuery menu widget |
||||
|
Copyright (c) 2008 Joel Birch |
||||
|
License: |
||||
|
* Dual licensed under the MIT and GPL licenses: |
||||
|
* http://www.opensource.org/licenses/mit-license.php |
||||
|
* http://www.gnu.org/licenses/gpl.html |
||||
|
|
||||
|
Cycle: |
||||
|
Copyright (c) 2003, 2006 Matteo Frigo |
||||
|
Copyright (c) 2003, 2006 Massachusetts Institute of Technology |
||||
|
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. |
||||
|
|
||||
|
|
||||
|
Wayland Windowing Manager: |
||||
|
Copyright © 2010 Kristian Høgsberg |
||||
|
Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted without fee, provided that the above copyright notice appear in all copies and that both that copyright notice and this permission notice appear in supporting documentation, and that the name of the copyright holders not be used in advertising or publicity pertaining to distribution of the software without specific, written prior permission. The copyright holders make no representations about the suitability of this software for any purpose. It is provided "as is" without express or implied warranty. |
||||
|
THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR 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 THIS SOFTWARE. |
||||
|
|
||||
|
|
||||
|
TestLib\Callgrind: |
||||
|
Copyright (C) 2003-2007 Josef Weidendorfer. All rights reserved. |
||||
|
License: |
||||
|
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. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. |
||||
|
3. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. |
||||
|
4. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. |
||||
|
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||
|
|
||||
|
TestLib\Valgrind: |
||||
|
Copyright (C) 2000-2007 Julian Seward. All rights reserved. |
||||
|
License: |
||||
|
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. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. |
||||
|
3. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. |
||||
|
4. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. |
||||
|
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIEDWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||||
|
|
||||
|
PCRE: |
||||
|
|
||||
|
PCRE LICENSE |
||||
|
------------ |
||||
|
|
||||
|
PCRE is a library of functions to support regular expressions whose syntax |
||||
|
and semantics are as close as possible to those of the Perl 5 language. |
||||
|
|
||||
|
Release 8 of PCRE is distributed under the terms of the "BSD" license, as |
||||
|
specified below. The documentation for PCRE, supplied in the "doc" |
||||
|
directory, is distributed under the same terms as the software itself. |
||||
|
|
||||
|
The basic library functions are written in C and are freestanding. Also |
||||
|
included in the distribution is a set of C++ wrapper functions, and a |
||||
|
just-in-time compiler that can be used to optimize pattern matching. These |
||||
|
are both optional features that can be omitted when the library is built. |
||||
|
|
||||
|
|
||||
|
THE BASIC LIBRARY FUNCTIONS |
||||
|
--------------------------- |
||||
|
|
||||
|
Written by: Philip Hazel |
||||
|
Email local part: ph10 |
||||
|
Email domain: cam.ac.uk |
||||
|
|
||||
|
University of Cambridge Computing Service, |
||||
|
Cambridge, England. |
||||
|
|
||||
|
Copyright (c) 1997-2012 University of Cambridge |
||||
|
All rights reserved. |
||||
|
|
||||
|
|
||||
|
PCRE JUST-IN-TIME COMPILATION SUPPORT |
||||
|
------------------------------------- |
||||
|
|
||||
|
Written by: Zoltan Herczeg |
||||
|
Email local part: hzmester |
||||
|
Emain domain: freemail.hu |
||||
|
|
||||
|
Copyright(c) 2010-2012 Zoltan Herczeg |
||||
|
All rights reserved. |
||||
|
|
||||
|
|
||||
|
STACK-LESS JUST-IN-TIME COMPILER |
||||
|
-------------------------------- |
||||
|
|
||||
|
Written by: Zoltan Herczeg |
||||
|
Email local part: hzmester |
||||
|
Emain domain: freemail.hu |
||||
|
|
||||
|
Copyright(c) 2009-2012 Zoltan Herczeg |
||||
|
All rights reserved. |
||||
|
|
||||
|
|
||||
|
THE C++ WRAPPER FUNCTIONS |
||||
|
------------------------- |
||||
|
|
||||
|
Contributed by: Google Inc. |
||||
|
|
||||
|
Copyright (c) 2007-2012, Google Inc. |
||||
|
All rights reserved. |
||||
|
|
||||
|
|
||||
|
THE "BSD" LICENSE |
||||
|
----------------- |
||||
|
|
||||
|
Redistribution and use in source and binary forms, with or without |
||||
|
modification, are permitted provided that the following conditions are met: |
||||
|
|
||||
|
* Redistributions of source code must retain the above copyright notice, |
||||
|
this list of conditions and the following disclaimer. |
||||
|
|
||||
|
* Redistributions in binary form must reproduce the above copyright |
||||
|
notice, this list of conditions and the following disclaimer in the |
||||
|
documentation and/or other materials provided with the distribution. |
||||
|
|
||||
|
* Neither the name of the University of Cambridge nor the name of Google |
||||
|
Inc. nor the names of their contributors may be used to endorse or |
||||
|
promote products derived from this software without specific prior |
||||
|
written permission. |
||||
|
|
||||
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
||||
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
||||
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
||||
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE |
||||
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
||||
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
||||
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
||||
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
||||
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
||||
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
||||
|
POSSIBILITY OF SUCH DAMAGE. |
||||
|
|
||||
|
End |
||||
|
|
||||
|
|
||||
|
ANGLE: |
||||
|
Copyright (C) 2002-2010 The ANGLE Project Authors. |
||||
|
All rights reserved. |
||||
|
|
||||
|
Redistribution and use in source and binary forms, with or without |
||||
|
modification, are permitted provided that the following conditions |
||||
|
are met: |
||||
|
|
||||
|
Redistributions of source code must retain the above copyright |
||||
|
notice, this list of conditions and the following disclaimer. |
||||
|
|
||||
|
Redistributions in binary form must reproduce the above |
||||
|
copyright notice, this list of conditions and the following |
||||
|
disclaimer in the documentation and/or other materials provided |
||||
|
with the distribution. |
||||
|
|
||||
|
Neither the name of TransGaming Inc., Google Inc., 3DLabs Inc. |
||||
|
Ltd., nor the names of their contributors may be used to endorse |
||||
|
or promote products derived from this software without specific |
||||
|
prior written permission. |
||||
|
|
||||
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||
|
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
||||
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
||||
|
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
||||
|
COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
||||
|
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
||||
|
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
||||
|
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
||||
|
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
||||
|
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN |
||||
|
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
||||
|
POSSIBILITY OF SUCH DAMAGE. |
||||
|
|
||||
|
xcb: |
||||
|
Copyright (C) 2001-2006 Bart Massey, Jamey Sharp, and Josh Triplett. |
||||
|
All Rights Reserved. |
||||
|
|
||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy |
||||
|
of this software and associated documentation files (the "Software"), to deal |
||||
|
in the Software without restriction, including without limitation the rights |
||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
||||
|
copies of the Software, and to permit persons to whom the Software is |
||||
|
furnished to do so, subject to the following conditions: |
||||
|
|
||||
|
The above copyright notice and this permission notice shall be included in all |
||||
|
copies or substantial portions of the Software. |
||||
|
|
||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
||||
|
AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN |
||||
|
ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
||||
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
||||
|
|
||||
|
Except as contained in this notice, the names of the authors or their |
||||
|
institutions shall not be used in advertising or otherwise to promote the |
||||
|
sale, use or other dealings in this Software without prior written |
||||
|
authorization from the authors |
||||
|
|
||||
|
|
||||
|
========== |
||||
|
Qt Creator |
||||
|
========== |
||||
|
Qt Creator includes the following third-party components, |
||||
|
we thank the authors who made this possible: |
||||
|
|
||||
|
* Open Source front-end for C++ (license MIT), enhanced for use in Qt Creator |
||||
|
|
||||
|
Roberto Raggi <roberto.raggi@gmail.com> |
||||
|
|
||||
|
QtCreator/src/shared/cplusplus |
||||
|
|
||||
|
Copyright 2005 Roberto Raggi <roberto@kdevelop.org> |
||||
|
|
||||
|
Permission to use, copy, modify, distribute, and sell this software and its |
||||
|
documentation for any purpose is hereby granted without fee, provided that |
||||
|
the above copyright notice appear in all copies and that both that |
||||
|
copyright notice and this permission notice appear in supporting |
||||
|
documentation. |
||||
|
|
||||
|
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 |
||||
|
KDEVELOP TEAM 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. |
||||
|
|
||||
|
|
||||
|
* Botan, a C++ crypto library. Version 1.8.8 |
||||
|
|
||||
|
Copyright (C) 1999-2004 The Botan Project. All rights reserved. |
||||
|
Copyright (C) 1999-2009 Jack Lloyd |
||||
|
2001 Peter J Jones |
||||
|
2004-2007 Justin Karneges |
||||
|
2005 Matthew Gregan |
||||
|
2005-2006 Matt Johnston |
||||
|
2006 Luca Piccarreta |
||||
|
2007 Yves Jerschow |
||||
|
2007-2008 FlexSecure GmbH |
||||
|
2007-2008 Technische Universitat Darmstadt |
||||
|
2007-2008 Falko Strenzke |
||||
|
2007-2008 Martin Doering |
||||
|
2007 Manuel Hartl |
||||
|
2007 Christoph Ludwig |
||||
|
2007 Patrick Sona |
||||
|
All rights reserved. |
||||
|
|
||||
|
Redistribution and use in source and binary forms, with or without |
||||
|
modification, are permitted provided that the following conditions are met: |
||||
|
|
||||
|
1. Redistributions of source code must retain the above copyright notice, |
||||
|
this list of conditions, and the following disclaimer. |
||||
|
|
||||
|
2. Redistributions in binary form must reproduce the above copyright notice, |
||||
|
this list of conditions, and the following disclaimer in the documentation |
||||
|
and/or other materials provided with the distribution. |
||||
|
|
||||
|
THIS SOFTWARE IS PROVIDED BY THE AUTHOR(S) "AS IS" AND ANY EXPRESS OR IMPLIED |
||||
|
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
||||
|
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ARE DISCLAIMED. IN NO |
||||
|
EVENT SHALL THE AUTHOR(S) OR CONTRIBUTOR(S) 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. |
||||
|
|
||||
|
The source code of Botan C++ crypto library can be found in |
||||
|
QtCreator/src/libs/3rdparty |
||||
|
|
||||
|
|
||||
|
* ClassView and ImageViewer plugins |
||||
|
|
||||
|
Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). |
||||
|
|
||||
|
All rights reserved. |
||||
|
Copyright (c) 2010 Denis Mingulov. |
||||
|
|
||||
|
Contact: http://www.qt-project.org/ |
||||
|
|
||||
|
This file is part of Qt Creator. |
||||
|
|
||||
|
You may use this file under the terms of the BSD license as follows: |
||||
|
|
||||
|
"Redistribution and use in source and binary forms, with or without |
||||
|
modification, are permitted provided that the following conditions are |
||||
|
met: |
||||
|
* Redistributions of source code must retain the above copyright |
||||
|
notice, this list of conditions and the following disclaimer. |
||||
|
* Redistributions in binary form must reproduce the above copyright |
||||
|
notice, this list of conditions and the following disclaimer in |
||||
|
the documentation and/or other materials provided with the |
||||
|
distribution. |
||||
|
* Neither the name of Digia Plc and its Subsidiary(-ies) nor |
||||
|
the names of its contributors may be used to endorse or promote |
||||
|
products derived from this software without specific prior written |
||||
|
permission. |
||||
|
|
||||
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||
|
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
||||
|
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
||||
|
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
||||
|
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
||||
|
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
||||
|
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||||
|
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||||
|
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||||
|
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
||||
|
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." |
||||
|
|
Loading…
Reference in new issue