Skip to content

Commit

Permalink
Updated the license of Palmetto.
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelRoeder committed Oct 24, 2017
1 parent 6fa73b8 commit 84903c0
Show file tree
Hide file tree
Showing 190 changed files with 3,460 additions and 1,344 deletions.
663 changes: 656 additions & 7 deletions LICENSE

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -6,7 +6,7 @@ Palmetto

This is the implementation of coherence calculations for evaluating the quality of topics. If you want to learn more about coherence calculations and their meaning for topic evaluation, take a look at the <a href="http://palmetto.aksw.org/">project homepage</a> - especially at the publications.

<span xmlns:dct="http://purl.org/dc/terms/" property="dct:title">Palmetto</span> from <a xmlns:cc="http://creativecommons.org/ns#" href="http://aksw.org" property="cc:attributionName" rel="cc:attributionURL">AKSW</a> is licensed under a <a rel="license" href="http://www.gnu.org/licenses/lgpl-3.0.txt">LGPL v3.0 License</a> for non-commercial software. For the commercial usage, take a look at the LICENSE file.
<span xmlns:dct="http://purl.org/dc/terms/" property="dct:title">Palmetto</span> from <a xmlns:cc="http://creativecommons.org/ns#" href="http://cs.uni-paderborn.de/ds/" property="cc:attributionName" rel="cc:attributionURL">DICE</a> is licensed under a <a rel="license" href="https://www.gnu.org/licenses/agpl.txt">AGPL v3.0 License</a>.

Please take a look at the the wikipage to read <a href="https://github.com/AKSW/Palmetto/wiki/How-Palmetto-can-be-used">how Palmetto can be used</a>.

Expand Down
663 changes: 656 additions & 7 deletions palmetto/LICENSE

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion palmetto/README.md
Expand Up @@ -4,7 +4,7 @@ Palmetto

This is the implementation of coherence calculations for evaluating the quality of topics. If you want to learn more about coherence calculations and their meaning for topic evaluation, take a look at the <a href="http://palmetto.aksw.org/">project homepage</a> - especially at the publications.

<span xmlns:dct="http://purl.org/dc/terms/" property="dct:title">Palmetto</span> from <a xmlns:cc="http://creativecommons.org/ns#" href="http://aksw.org" property="cc:attributionName" rel="cc:attributionURL">AKSW</a> is licensed under a <a rel="license" href="http://www.gnu.org/licenses/lgpl-3.0.txt">LGPL v3.0 License</a> for non-commercial software. For the commercial usage, take a look at the LICENSE file.
<span xmlns:dct="http://purl.org/dc/terms/" property="dct:title">Palmetto</span> from <a xmlns:cc="http://creativecommons.org/ns#" href="http://cs.uni-paderborn.de/ds/" property="cc:attributionName" rel="cc:attributionURL">DICE</a> is licensed under a <a rel="license" href="https://www.gnu.org/licenses/agpl.txt">AGPL v3.0 License</a>.

Please take a look at the the wikipage to read <a href="https://github.com/AKSW/Palmetto/wiki/How-Palmetto-can-be-used">how Palmetto can be used</a>.

Expand Down
31 changes: 17 additions & 14 deletions palmetto/pom.xml
@@ -1,19 +1,20 @@
<!--
This file is part of Palmetto.
Palmetto - Palmetto is a quality measure tool for topics.
Copyright © 2014 Data Science Group (DICE) (michael.roeder@uni-paderborn.de)
Palmetto is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Palmetto is distributed in the hope that it will be useful,
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
GNU Affero General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with Palmetto. If not, see <http://www.gnu.org/licenses/>.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Expand Down Expand Up @@ -48,8 +49,8 @@
<!-- LICENSE -->
<licenses>
<license>
<name>LGPL 3.0</name>
<url>http://www.gnu.org/licenses/lgpl-3.0.txt</url>
<name>AGPL 3.0</name>
<url>http://www.gnu.org/licenses/agpl.txt</url>
</license>
</licenses>

Expand Down Expand Up @@ -180,22 +181,24 @@
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>2.11</version>
<version>3.0</version>
<configuration>
<header>com/mycila/maven/plugin/license/templates/LGPL-3.txt</header>
<header>com/mycila/maven/plugin/license/templates/AGPL-3.txt</header>
<properties>
<owner>Agile Knowledge Engineering and Semantic Web (AKSW)
(roeder@informatik.uni-leipzig.de)</owner>
<owner>Data Science Group (DICE)</owner>
<email>michael.roeder@uni-paderborn.de</email>
</properties>
<excludes>
<exclude>**/README</exclude>
<exclude>**/LICENSE</exclude>
<exclude>**/Dockerfile</exclude>
<exclude>diagrams/**</exclude>
<exclude>src/test/resources/**</exclude>
<exclude>src/main/resources/**</exclude>
<exclude>src/main/webapp/**</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</project>
</project>
15 changes: 8 additions & 7 deletions palmetto/src/main/java/org/aksw/palmetto/Coherence.java
@@ -1,18 +1,19 @@
/**
* This file is part of Palmetto.
* Palmetto - Palmetto is a quality measure tool for topics.
* Copyright © 2014 Data Science Group (DICE) (michael.roeder@uni-paderborn.de)
*
* Palmetto is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Palmetto is distributed in the hope that it will be useful,
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Palmetto. If not, see <http://www.gnu.org/licenses/>.
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.aksw.palmetto;

Expand Down
@@ -1,18 +1,19 @@
/**
* This file is part of Palmetto.
* Palmetto - Palmetto is a quality measure tool for topics.
* Copyright © 2014 Data Science Group (DICE) (michael.roeder@uni-paderborn.de)
*
* Palmetto is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Palmetto is distributed in the hope that it will be useful,
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Palmetto. If not, see <http://www.gnu.org/licenses/>.
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.aksw.palmetto;

Expand Down
@@ -1,18 +1,19 @@
/**
* This file is part of Palmetto.
* Palmetto - Palmetto is a quality measure tool for topics.
* Copyright © 2014 Data Science Group (DICE) (michael.roeder@uni-paderborn.de)
*
* Palmetto is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Palmetto is distributed in the hope that it will be useful,
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Palmetto. If not, see <http://www.gnu.org/licenses/>.
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.aksw.palmetto;

Expand Down
15 changes: 8 additions & 7 deletions palmetto/src/main/java/org/aksw/palmetto/Palmetto.java
@@ -1,18 +1,19 @@
/**
* This file is part of Palmetto.
* Palmetto - Palmetto is a quality measure tool for topics.
* Copyright © 2014 Data Science Group (DICE) (michael.roeder@uni-paderborn.de)
*
* Palmetto is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Palmetto is distributed in the hope that it will be useful,
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Palmetto. If not, see <http://www.gnu.org/licenses/>.
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.aksw.palmetto;

Expand Down
@@ -1,18 +1,19 @@
/**
* This file is part of Palmetto.
* Palmetto - Palmetto is a quality measure tool for topics.
* Copyright © 2014 Data Science Group (DICE) (michael.roeder@uni-paderborn.de)
*
* Palmetto is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Palmetto is distributed in the hope that it will be useful,
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Palmetto. If not, see <http://www.gnu.org/licenses/>.
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.aksw.palmetto;

Expand Down
@@ -1,18 +1,19 @@
/**
* This file is part of Palmetto.
* Palmetto - Palmetto is a quality measure tool for topics.
* Copyright © 2014 Data Science Group (DICE) (michael.roeder@uni-paderborn.de)
*
* Palmetto is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Palmetto is distributed in the hope that it will be useful,
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Palmetto. If not, see <http://www.gnu.org/licenses/>.
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.aksw.palmetto.aggregation;

Expand Down
@@ -1,18 +1,19 @@
/**
* This file is part of Palmetto.
* Palmetto - Palmetto is a quality measure tool for topics.
* Copyright © 2014 Data Science Group (DICE) (michael.roeder@uni-paderborn.de)
*
* Palmetto is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Palmetto is distributed in the hope that it will be useful,
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Palmetto. If not, see <http://www.gnu.org/licenses/>.
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.aksw.palmetto.aggregation;

Expand Down
@@ -1,18 +1,19 @@
/**
* This file is part of Palmetto.
* Palmetto - Palmetto is a quality measure tool for topics.
* Copyright © 2014 Data Science Group (DICE) (michael.roeder@uni-paderborn.de)
*
* Palmetto is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Palmetto is distributed in the hope that it will be useful,
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Palmetto. If not, see <http://www.gnu.org/licenses/>.
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.aksw.palmetto.aggregation;

Expand Down
@@ -1,18 +1,19 @@
/**
* This file is part of Palmetto.
* Palmetto - Palmetto is a quality measure tool for topics.
* Copyright © 2014 Data Science Group (DICE) (michael.roeder@uni-paderborn.de)
*
* Palmetto is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Palmetto is distributed in the hope that it will be useful,
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Palmetto. If not, see <http://www.gnu.org/licenses/>.
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.aksw.palmetto.aggregation;

Expand Down
15 changes: 8 additions & 7 deletions palmetto/src/main/java/org/aksw/palmetto/aggregation/Max.java
@@ -1,18 +1,19 @@
/**
* This file is part of Palmetto.
* Palmetto - Palmetto is a quality measure tool for topics.
* Copyright © 2014 Data Science Group (DICE) (michael.roeder@uni-paderborn.de)
*
* Palmetto is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Palmetto is distributed in the hope that it will be useful,
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Palmetto. If not, see <http://www.gnu.org/licenses/>.
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.aksw.palmetto.aggregation;

Expand Down
15 changes: 8 additions & 7 deletions palmetto/src/main/java/org/aksw/palmetto/aggregation/Median.java
@@ -1,18 +1,19 @@
/**
* This file is part of Palmetto.
* Palmetto - Palmetto is a quality measure tool for topics.
* Copyright © 2014 Data Science Group (DICE) (michael.roeder@uni-paderborn.de)
*
* Palmetto is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Palmetto is distributed in the hope that it will be useful,
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with Palmetto. If not, see <http://www.gnu.org/licenses/>.
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.aksw.palmetto.aggregation;

Expand Down

0 comments on commit 84903c0

Please sign in to comment.