mirror of
https://gitee.com/jmix/cuba.git
synced 2024-12-03 03:38:33 +08:00
Update credits (added Desktop client libraries). #PL-5181
This commit is contained in:
parent
fd4b7aed6f
commit
ca67b32c19
@ -78,7 +78,7 @@ Copyright 2001-2005 (C) MetaStuff, Ltd. All Rights Reserved.
|
||||
<item name="FreeMarker" web="http://freemarker.sourceforge.net/">
|
||||
<acknowledgment>
|
||||
<![CDATA[
|
||||
This product includes software developed by the Visigoth Software Society (http://www.visigoths.org/).
|
||||
This product includes software (Freemarker) developed by the Visigoth Software Society (http://www.visigoths.org/).
|
||||
]]>
|
||||
</acknowledgment>
|
||||
<license><![CDATA[
|
||||
@ -409,7 +409,7 @@ Initial authors:
|
||||
<jar>xpp3_min-.*</jar>
|
||||
<acknowledgment>
|
||||
<![CDATA[
|
||||
This product includes software developed by the Indiana University Extreme! Lab. For further information please visit http://www.extreme.indiana.edu/
|
||||
This product includes software (Xml Pull Parser 3rd Edition) developed by the Indiana University Extreme! Lab. For further information please visit http://www.extreme.indiana.edu/
|
||||
]]>
|
||||
</acknowledgment>
|
||||
<license>
|
||||
@ -473,6 +473,60 @@ This product includes software developed by the Indiana University Extreme! Lab.
|
||||
]]>
|
||||
</license>
|
||||
</item>
|
||||
|
||||
<item name="Glazed Lists" web="http://www.glazedlists.com">
|
||||
<jar>glazedlists-.*</jar>
|
||||
<license>
|
||||
<![CDATA[
|
||||
Glazed Lists
|
||||
Copyright (c) 2003-2006, publicobject.com, O'Dell Engineering Ltd.
|
||||
|
||||
Glazed Lists is free software and business friendly. It allows you to
|
||||
* distribute Glazed Lists free of charge
|
||||
* use Glazed Lists in a commercial or closed source application
|
||||
It does not allow you to
|
||||
* create a fork of Glazed Lists that is closed-source
|
||||
|
||||
It is made available under two licenses:
|
||||
LGPL, http://creativecommons.org/licenses/LGPL/2.1/
|
||||
MPL, http://www.mozilla.org/MPL/
|
||||
]]>
|
||||
</license>
|
||||
</item>
|
||||
|
||||
<item name="MiG Layout" web="http://www.miglayout.com">
|
||||
<jar>miglayout-.*</jar>
|
||||
<license>
|
||||
Copyright (c) 2004, Mikael Grev, MiG InfoCom AB. (miglayout (at) miginfocom (dot) com)
|
||||
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 the MiG InfoCom AB 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.
|
||||
</license>
|
||||
</item>
|
||||
|
||||
<item name="SwingLabs SwingX" web="https://swingx.java.net" license="lgpl-3">
|
||||
<jar>swingx-.*</jar>
|
||||
</item>
|
||||
</items>
|
||||
|
||||
<licenses>
|
||||
|
@ -5,6 +5,8 @@
|
||||
|
||||
package com.haulmont.cuba.gui.app.core.credits;
|
||||
|
||||
import javax.annotation.Nullable;
|
||||
|
||||
/**
|
||||
* <p>$Id$</p>
|
||||
*
|
||||
@ -36,6 +38,7 @@ public class CreditsItem implements Comparable<CreditsItem> {
|
||||
return webPage;
|
||||
}
|
||||
|
||||
@Nullable
|
||||
public String getLicenseId() {
|
||||
return licenseId;
|
||||
}
|
||||
@ -44,6 +47,7 @@ public class CreditsItem implements Comparable<CreditsItem> {
|
||||
return license;
|
||||
}
|
||||
|
||||
@Nullable
|
||||
public String getAcknowledgement() {
|
||||
return acknowledgement;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user