Merge lp:~rockclimb/gephi/sourcebase-tidy into lp:~gephi.team/gephi/0.8

Proposed by Andrew Ross
Status: Merged
Merged at revision: 2203
Proposed branch: lp:~rockclimb/gephi/sourcebase-tidy
Merge into: lp:~gephi.team/gephi/0.8
Diff against target: 939 lines (+533/-47)
34 files modified
AttributesAPI/test/unit/src/org/gephi/data/attributes/type/IntegerListTest.java (+22/-1)
AttributesAPI/test/unit/src/org/gephi/data/attributes/type/StringListTest.java (+22/-1)
AttributesAPI/test/unit/src/org/gephi/data/attributes/type/TypeConvertorTest.java (+22/-1)
AttributesImpl/src/org/gephi/data/attributes/ListFactory.java (+21/-0)
DataLaboratoryPlugin/src/org/gephi/datalab/plugin/manipulators/general/ui/ImportCSVUIWizardPanel1.java (+19/-3)
DesktopDataLaboratory/src/org/gephi/desktop/datalab/general/actions/AddColumnUI.java (+1/-1)
DesktopDataLaboratory/src/org/gephi/desktop/datalab/general/actions/CSVExportUI.java (+2/-2)
DesktopDataLaboratory/src/org/gephi/desktop/datalab/general/actions/MergeColumnsUI.java (+1/-1)
DesktopDataLaboratory/src/org/gephi/desktop/datalab/utils/PopupMenuUtils.java (+1/-1)
DesktopDataLaboratory/src/org/gephi/desktop/datalab/utils/SparkLinesRenderer.java (+1/-1)
DesktopDataLaboratory/src/org/gephi/desktop/datalab/utils/TimeIntervalsRenderer.java (+1/-1)
DesktopExport/src/org/gephi/desktop/io/export/api/TopDialog.java (+20/-3)
DesktopPreview/src/org/gephi/desktop/preview/PreviewNode.java (+21/-0)
DesktopPreview/src/org/gephi/desktop/preview/PreviewSettingsTopComponent.java (+20/-0)
DesktopPreview/src/org/gephi/desktop/preview/PreviewTopComponent.java (+20/-0)
DesktopPreview/src/org/gephi/desktop/preview/PreviewUIController.java (+21/-0)
DesktopPreview/src/org/gephi/desktop/preview/ProcessingPreview.java (+21/-0)
DirectoryChooser/src/org/netbeans/swing/dirchooser/spi/CustomDirectoryProvider.java (+21/-2)
DynamicImpl/test/unit/src/org/gephi/dynamic/DynamicModeltest.java (+21/-0)
FiltersPlugin/src/org/gephi/filters/plugin/DynamicAttributesHelper.java (+20/-3)
FiltersPlugin/src/org/gephi/filters/plugin/attribute/ComparableArrayConverter.java (+20/-0)
ImportPlugin/test/unit/src/org/gephi/io/importer/plugin/database/EdgeListImporterTest.java (+21/-0)
PreviewExport/src/org/gephi/io/exporter/preview/util/LengthUnit.java (+21/-0)
PreviewExport/src/org/gephi/io/exporter/preview/util/SupportSize.java (+21/-0)
RankingAPI/src/org/gephi/ranking/impl/AbstractTransformer.java (+14/-13)
StatisticsAPI/test/unit/src/org/gephi/statistics/StatisticsPersistenceProviderTest.java (+20/-3)
SwingX/nbproject/project.xml (+0/-4)
Utils/test/unit/src/org/gephi/utils/StatisticsUtilsTest.java (+2/-2)
VisualizationModule/src/org/gephi/visualization/apiimpl/contextmenuitems/CopyToWorkspace.java (+19/-3)
VisualizationModule/src/org/gephi/visualization/swing/GLAbstractListener.java (+21/-0)
change_license.sh (+19/-0)
copykeystore.py (+19/-1)
po2properties.sh (+19/-0)
properties2pot.sh (+19/-0)
To merge this branch: bzr merge lp:~rockclimb/gephi/sourcebase-tidy
Reviewer Review Type Date Requested Status
Mathieu Bastian Approve
Review via email: mp+57070@code.launchpad.net

Description of the change

I've been through and added license headers to those files which were missing them, and fixed mis-worded license headers.

I've also removed the following unreferences jar files:
* JFreeChart/release/modules/ext/orson-0.5.0.jar
* ProcessingWrapper/release/modules/ext/opengl.jar
* DesktopTools/release/modules/ext/beansbinding-1.2.1.jar
* Utils/release/modules/ext/javacsv.jar

For the last two, there is another copy that actually gets used in BeansBindingWrapper and JavaCSVWrapper respectively.

I also removed the following jar file, and its reference in SwingX/nbproject/project.xml since a newer version of the classes are in the swingx jar files anyway (and those jar files have a proper license and source code available):
* SwingX/release/modules/ext/MultipleGradientPaint.jar

To post a comment you must log in.
Revision history for this message
Mathieu Bastian (mathieu.bastian) wrote :

Very good job, our source code gets cleaner :-)

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'AttributesAPI/test/unit/src/org/gephi/data/attributes/type/IntegerListTest.java'
--- AttributesAPI/test/unit/src/org/gephi/data/attributes/type/IntegerListTest.java 2010-05-27 21:47:09 +0000
+++ AttributesAPI/test/unit/src/org/gephi/data/attributes/type/IntegerListTest.java 2011-04-10 10:41:30 +0000
@@ -1,3 +1,24 @@
1/*
2Copyright 2008-2010 Gephi
3Authors : Martin Škurla
4Website : http://www.gephi.org
5
6This file is part of Gephi.
7
8Gephi is free software: you can redistribute it and/or modify
9it under the terms of the GNU Affero General Public License as
10published by the Free Software Foundation, either version 3 of the
11License, or (at your option) any later version.
12
13Gephi is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU Affero General Public License for more details.
17
18You should have received a copy of the GNU Affero General Public License
19along with Gephi. If not, see <http://www.gnu.org/licenses/>.
20*/
21
1package org.gephi.data.attributes.type;22package org.gephi.data.attributes.type;
223
3import org.junit.Test;24import org.junit.Test;
@@ -43,4 +64,4 @@
43 IntegerList list = new IntegerList(new Integer [0]);64 IntegerList list = new IntegerList(new Integer [0]);
44 assertEquals(list.size(), 0);65 assertEquals(list.size(), 0);
45 }66 }
46}
47\ No newline at end of file67\ No newline at end of file
68}
4869
=== modified file 'AttributesAPI/test/unit/src/org/gephi/data/attributes/type/StringListTest.java'
--- AttributesAPI/test/unit/src/org/gephi/data/attributes/type/StringListTest.java 2010-05-27 21:47:09 +0000
+++ AttributesAPI/test/unit/src/org/gephi/data/attributes/type/StringListTest.java 2011-04-10 10:41:30 +0000
@@ -1,3 +1,24 @@
1/*
2Copyright 2008-2010 Gephi
3Authors : Martin Škurla
4Website : http://www.gephi.org
5
6This file is part of Gephi.
7
8Gephi is free software: you can redistribute it and/or modify
9it under the terms of the GNU Affero General Public License as
10published by the Free Software Foundation, either version 3 of the
11License, or (at your option) any later version.
12
13Gephi is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU Affero General Public License for more details.
17
18You should have received a copy of the GNU Affero General Public License
19along with Gephi. If not, see <http://www.gnu.org/licenses/>.
20*/
21
1package org.gephi.data.attributes.type;22package org.gephi.data.attributes.type;
223
3import org.junit.Test;24import org.junit.Test;
@@ -43,4 +64,4 @@
43 StringList list = new StringList(new char[0]);64 StringList list = new StringList(new char[0]);
44 assertEquals(list.size(), 0);65 assertEquals(list.size(), 0);
45 }66 }
46}
47\ No newline at end of file67\ No newline at end of file
68}
4869
=== modified file 'AttributesAPI/test/unit/src/org/gephi/data/attributes/type/TypeConvertorTest.java'
--- AttributesAPI/test/unit/src/org/gephi/data/attributes/type/TypeConvertorTest.java 2010-05-27 21:47:09 +0000
+++ AttributesAPI/test/unit/src/org/gephi/data/attributes/type/TypeConvertorTest.java 2011-04-10 10:41:30 +0000
@@ -1,3 +1,24 @@
1/*
2Copyright 2008-2010 Gephi
3Authors : Martin Škurla
4Website : http://www.gephi.org
5
6This file is part of Gephi.
7
8Gephi is free software: you can redistribute it and/or modify
9it under the terms of the GNU Affero General Public License as
10published by the Free Software Foundation, either version 3 of the
11License, or (at your option) any later version.
12
13Gephi is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU Affero General Public License for more details.
17
18You should have received a copy of the GNU Affero General Public License
19along with Gephi. If not, see <http://www.gnu.org/licenses/>.
20*/
21
1package org.gephi.data.attributes.type;22package org.gephi.data.attributes.type;
223
3import java.math.BigInteger;24import java.math.BigInteger;
@@ -68,4 +89,4 @@
68 public void testConvertingPrimitiveToWrapperArrayArgumentNotPrimitiveArray() {89 public void testConvertingPrimitiveToWrapperArrayArgumentNotPrimitiveArray() {
69 TypeConvertor.convertPrimitiveToWrapperArray(new Object[0]);90 TypeConvertor.convertPrimitiveToWrapperArray(new Object[0]);
70 }91 }
71}
72\ No newline at end of file92\ No newline at end of file
93}
7394
=== modified file 'AttributesImpl/src/org/gephi/data/attributes/ListFactory.java'
--- AttributesImpl/src/org/gephi/data/attributes/ListFactory.java 2010-07-07 23:29:28 +0000
+++ AttributesImpl/src/org/gephi/data/attributes/ListFactory.java 2011-04-10 10:41:30 +0000
@@ -1,3 +1,24 @@
1/*
2Copyright 2008-2010 Gephi
3Authors : Martin Škurla
4Website : http://www.gephi.org
5
6This file is part of Gephi.
7
8Gephi is free software: you can redistribute it and/or modify
9it under the terms of the GNU Affero General Public License as
10published by the Free Software Foundation, either version 3 of the
11License, or (at your option) any later version.
12
13Gephi is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU Affero General Public License for more details.
17
18You should have received a copy of the GNU Affero General Public License
19along with Gephi. If not, see <http://www.gnu.org/licenses/>.
20*/
21
1package org.gephi.data.attributes;22package org.gephi.data.attributes;
223
3import java.math.BigDecimal;24import java.math.BigDecimal;
425
=== modified file 'DataLaboratoryPlugin/src/org/gephi/datalab/plugin/manipulators/general/ui/ImportCSVUIWizardPanel1.java'
--- DataLaboratoryPlugin/src/org/gephi/datalab/plugin/manipulators/general/ui/ImportCSVUIWizardPanel1.java 2010-09-07 09:00:13 +0000
+++ DataLaboratoryPlugin/src/org/gephi/datalab/plugin/manipulators/general/ui/ImportCSVUIWizardPanel1.java 2011-04-10 10:41:30 +0000
@@ -1,7 +1,23 @@
1/*1/*
2 * To change this template, choose Tools | Templates2Copyright 2008-2010 Gephi
3 * and open the template in the editor.3Website : http://www.gephi.org
4 */4
5This file is part of Gephi.
6
7Gephi is free software: you can redistribute it and/or modify
8it under the terms of the GNU Affero General Public License as
9published by the Free Software Foundation, either version 3 of the
10License, or (at your option) any later version.
11
12Gephi is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU Affero General Public License for more details.
16
17You should have received a copy of the GNU Affero General Public License
18along with Gephi. If not, see <http://www.gnu.org/licenses/>.
19*/
20
5package org.gephi.datalab.plugin.manipulators.general.ui;21package org.gephi.datalab.plugin.manipulators.general.ui;
622
7import java.awt.Component;23import java.awt.Component;
824
=== modified file 'DesktopDataLaboratory/src/org/gephi/desktop/datalab/general/actions/AddColumnUI.java'
--- DesktopDataLaboratory/src/org/gephi/desktop/datalab/general/actions/AddColumnUI.java 2010-09-07 09:00:13 +0000
+++ DesktopDataLaboratory/src/org/gephi/desktop/datalab/general/actions/AddColumnUI.java 2011-04-10 10:41:30 +0000
@@ -8,7 +8,7 @@
8Gephi is free software: you can redistribute it and/or modify8Gephi is free software: you can redistribute it and/or modify
9it under the terms of the GNU Affero General Public License as9it under the terms of the GNU Affero General Public License as
10published by the Free Software Foundation, either version 3 of the10published by the Free Software Foundation, either version 3 of the
11(at your option) any later version.11License, or (at your option) any later version.
1212
13Gephi is distributed in the hope that it will be useful,13Gephi is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of14but WITHOUT ANY WARRANTY; without even the implied warranty of
1515
=== modified file 'DesktopDataLaboratory/src/org/gephi/desktop/datalab/general/actions/CSVExportUI.java'
--- DesktopDataLaboratory/src/org/gephi/desktop/datalab/general/actions/CSVExportUI.java 2010-12-28 12:29:32 +0000
+++ DesktopDataLaboratory/src/org/gephi/desktop/datalab/general/actions/CSVExportUI.java 2011-04-10 10:41:30 +0000
@@ -8,7 +8,7 @@
8Gephi is free software: you can redistribute it and/or modify8Gephi is free software: you can redistribute it and/or modify
9it under the terms of the GNU Affero General Public License as9it under the terms of the GNU Affero General Public License as
10published by the Free Software Foundation, either version 3 of the10published by the Free Software Foundation, either version 3 of the
11(at your option) any later version.11License, or (at your option) any later version.
1212
13Gephi is distributed in the hope that it will be useful,13Gephi is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of14but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -17,7 +17,7 @@
1717
18You should have received a copy of the GNU Affero General Public License18You should have received a copy of the GNU Affero General Public License
19along with Gephi. If not, see <http://www.gnu.org/licenses/>.19along with Gephi. If not, see <http://www.gnu.org/licenses/>.
20 */20*/
21package org.gephi.desktop.datalab.general.actions;21package org.gephi.desktop.datalab.general.actions;
2222
23import java.nio.charset.Charset;23import java.nio.charset.Charset;
2424
=== modified file 'DesktopDataLaboratory/src/org/gephi/desktop/datalab/general/actions/MergeColumnsUI.java'
--- DesktopDataLaboratory/src/org/gephi/desktop/datalab/general/actions/MergeColumnsUI.java 2011-02-18 14:56:02 +0000
+++ DesktopDataLaboratory/src/org/gephi/desktop/datalab/general/actions/MergeColumnsUI.java 2011-04-10 10:41:30 +0000
@@ -8,7 +8,7 @@
8Gephi is free software: you can redistribute it and/or modify8Gephi is free software: you can redistribute it and/or modify
9it under the terms of the GNU Affero General Public License as9it under the terms of the GNU Affero General Public License as
10published by the Free Software Foundation, either version 3 of the10published by the Free Software Foundation, either version 3 of the
11(at your option) any later version.11License, or (at your option) any later version.
1212
13Gephi is distributed in the hope that it will be useful,13Gephi is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of14but WITHOUT ANY WARRANTY; without even the implied warranty of
1515
=== modified file 'DesktopDataLaboratory/src/org/gephi/desktop/datalab/utils/PopupMenuUtils.java'
--- DesktopDataLaboratory/src/org/gephi/desktop/datalab/utils/PopupMenuUtils.java 2011-02-09 20:31:01 +0000
+++ DesktopDataLaboratory/src/org/gephi/desktop/datalab/utils/PopupMenuUtils.java 2011-04-10 10:41:30 +0000
@@ -8,7 +8,7 @@
8Gephi is free software: you can redistribute it and/or modify8Gephi is free software: you can redistribute it and/or modify
9it under the terms of the GNU Affero General Public License as9it under the terms of the GNU Affero General Public License as
10published by the Free Software Foundation, either version 3 of the10published by the Free Software Foundation, either version 3 of the
11(at your option) any later version.11License, or (at your option) any later version.
1212
13Gephi is distributed in the hope that it will be useful,13Gephi is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of14but WITHOUT ANY WARRANTY; without even the implied warranty of
1515
=== modified file 'DesktopDataLaboratory/src/org/gephi/desktop/datalab/utils/SparkLinesRenderer.java'
--- DesktopDataLaboratory/src/org/gephi/desktop/datalab/utils/SparkLinesRenderer.java 2010-09-13 17:15:02 +0000
+++ DesktopDataLaboratory/src/org/gephi/desktop/datalab/utils/SparkLinesRenderer.java 2011-04-10 10:41:30 +0000
@@ -8,7 +8,7 @@
8Gephi is free software: you can redistribute it and/or modify8Gephi is free software: you can redistribute it and/or modify
9it under the terms of the GNU Affero General Public License as9it under the terms of the GNU Affero General Public License as
10published by the Free Software Foundation, either version 3 of the10published by the Free Software Foundation, either version 3 of the
11(at your option) any later version.11License, or (at your option) any later version.
1212
13Gephi is distributed in the hope that it will be useful,13Gephi is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of14but WITHOUT ANY WARRANTY; without even the implied warranty of
1515
=== modified file 'DesktopDataLaboratory/src/org/gephi/desktop/datalab/utils/TimeIntervalsRenderer.java'
--- DesktopDataLaboratory/src/org/gephi/desktop/datalab/utils/TimeIntervalsRenderer.java 2010-09-13 17:15:02 +0000
+++ DesktopDataLaboratory/src/org/gephi/desktop/datalab/utils/TimeIntervalsRenderer.java 2011-04-10 10:41:30 +0000
@@ -8,7 +8,7 @@
8Gephi is free software: you can redistribute it and/or modify8Gephi is free software: you can redistribute it and/or modify
9it under the terms of the GNU Affero General Public License as9it under the terms of the GNU Affero General Public License as
10published by the Free Software Foundation, either version 3 of the10published by the Free Software Foundation, either version 3 of the
11(at your option) any later version.11License, or (at your option) any later version.
1212
13Gephi is distributed in the hope that it will be useful,13Gephi is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of14but WITHOUT ANY WARRANTY; without even the implied warranty of
1515
=== modified file 'DesktopExport/src/org/gephi/desktop/io/export/api/TopDialog.java'
--- DesktopExport/src/org/gephi/desktop/io/export/api/TopDialog.java 2011-04-06 03:59:06 +0000
+++ DesktopExport/src/org/gephi/desktop/io/export/api/TopDialog.java 2011-04-10 10:41:30 +0000
@@ -1,7 +1,24 @@
1/*1/*
2 * To change this template, choose Tools | Templates2Copyright 2008-2010 Gephi
3 * and open the template in the editor.3Authors : Mathieu Bastian <mathieu.bastian@gephi.org>
4 */4Website : http://www.gephi.org
5
6This file is part of Gephi.
7
8Gephi is free software: you can redistribute it and/or modify
9it under the terms of the GNU Affero General Public License as
10published by the Free Software Foundation, either version 3 of the
11License, or (at your option) any later version.
12
13Gephi is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU Affero General Public License for more details.
17
18You should have received a copy of the GNU Affero General Public License
19along with Gephi. If not, see <http://www.gnu.org/licenses/>.
20*/
21
5package org.gephi.desktop.io.export.api;22package org.gephi.desktop.io.export.api;
623
7import java.awt.BorderLayout;24import java.awt.BorderLayout;
825
=== modified file 'DesktopPreview/src/org/gephi/desktop/preview/PreviewNode.java'
--- DesktopPreview/src/org/gephi/desktop/preview/PreviewNode.java 2010-12-20 02:20:53 +0000
+++ DesktopPreview/src/org/gephi/desktop/preview/PreviewNode.java 2011-04-10 10:41:30 +0000
@@ -1,3 +1,24 @@
1/*
2Copyright 2008-2010 Gephi
3Authors : Jérémy Subtil <jeremy.subtil@gephi.org>
4Website : http://www.gephi.org
5
6This file is part of Gephi.
7
8Gephi is free software: you can redistribute it and/or modify
9it under the terms of the GNU Affero General Public License as
10published by the Free Software Foundation, either version 3 of the
11License, or (at your option) any later version.
12
13Gephi is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU Affero General Public License for more details.
17
18You should have received a copy of the GNU Affero General Public License
19along with Gephi. If not, see <http://www.gnu.org/licenses/>.
20*/
21
1package org.gephi.desktop.preview;22package org.gephi.desktop.preview;
223
3import org.gephi.preview.api.PreviewController;24import org.gephi.preview.api.PreviewController;
425
=== modified file 'DesktopPreview/src/org/gephi/desktop/preview/PreviewSettingsTopComponent.java'
--- DesktopPreview/src/org/gephi/desktop/preview/PreviewSettingsTopComponent.java 2010-09-30 19:52:30 +0000
+++ DesktopPreview/src/org/gephi/desktop/preview/PreviewSettingsTopComponent.java 2011-04-10 10:41:30 +0000
@@ -1,3 +1,23 @@
1/*
2Copyright 2008-2010 Gephi
3Website : http://www.gephi.org
4
5This file is part of Gephi.
6
7Gephi is free software: you can redistribute it and/or modify
8it under the terms of the GNU Affero General Public License as
9published by the Free Software Foundation, either version 3 of the
10License, or (at your option) any later version.
11
12Gephi is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU Affero General Public License for more details.
16
17You should have received a copy of the GNU Affero General Public License
18along with Gephi. If not, see <http://www.gnu.org/licenses/>.
19*/
20
1package org.gephi.desktop.preview;21package org.gephi.desktop.preview;
222
3import java.awt.BorderLayout;23import java.awt.BorderLayout;
424
=== modified file 'DesktopPreview/src/org/gephi/desktop/preview/PreviewTopComponent.java'
--- DesktopPreview/src/org/gephi/desktop/preview/PreviewTopComponent.java 2011-04-07 06:11:23 +0000
+++ DesktopPreview/src/org/gephi/desktop/preview/PreviewTopComponent.java 2011-04-10 10:41:30 +0000
@@ -1,3 +1,23 @@
1/*
2Copyright 2008-2010 Gephi
3Website : http://www.gephi.org
4
5This file is part of Gephi.
6
7Gephi is free software: you can redistribute it and/or modify
8it under the terms of the GNU Affero General Public License as
9published by the Free Software Foundation, either version 3 of the
10License, or (at your option) any later version.
11
12Gephi is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU Affero General Public License for more details.
16
17You should have received a copy of the GNU Affero General Public License
18along with Gephi. If not, see <http://www.gnu.org/licenses/>.
19*/
20
1package org.gephi.desktop.preview;21package org.gephi.desktop.preview;
222
3import java.awt.BorderLayout;23import java.awt.BorderLayout;
424
=== modified file 'DesktopPreview/src/org/gephi/desktop/preview/PreviewUIController.java'
--- DesktopPreview/src/org/gephi/desktop/preview/PreviewUIController.java 2010-10-08 16:01:26 +0000
+++ DesktopPreview/src/org/gephi/desktop/preview/PreviewUIController.java 2011-04-10 10:41:30 +0000
@@ -1,3 +1,24 @@
1/*
2Copyright 2008-2010 Gephi
3Authors : Jérémy Subtil <jeremy.subtil@gephi.org>
4Website : http://www.gephi.org
5
6This file is part of Gephi.
7
8Gephi is free software: you can redistribute it and/or modify
9it under the terms of the GNU Affero General Public License as
10published by the Free Software Foundation, either version 3 of the
11License, or (at your option) any later version.
12
13Gephi is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU Affero General Public License for more details.
17
18You should have received a copy of the GNU Affero General Public License
19along with Gephi. If not, see <http://www.gnu.org/licenses/>.
20*/
21
1package org.gephi.desktop.preview;22package org.gephi.desktop.preview;
223
3import javax.swing.SwingUtilities;24import javax.swing.SwingUtilities;
425
=== modified file 'DesktopPreview/src/org/gephi/desktop/preview/ProcessingPreview.java'
--- DesktopPreview/src/org/gephi/desktop/preview/ProcessingPreview.java 2011-04-07 06:11:23 +0000
+++ DesktopPreview/src/org/gephi/desktop/preview/ProcessingPreview.java 2011-04-10 10:41:30 +0000
@@ -1,3 +1,24 @@
1/*
2Copyright 2008-2010 Gephi
3Authors : Jérémy Subtil <jeremy.subtil@gephi.org>
4Website : http://www.gephi.org
5
6This file is part of Gephi.
7
8Gephi is free software: you can redistribute it and/or modify
9it under the terms of the GNU Affero General Public License as
10published by the Free Software Foundation, either version 3 of the
11License, or (at your option) any later version.
12
13Gephi is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU Affero General Public License for more details.
17
18You should have received a copy of the GNU Affero General Public License
19along with Gephi. If not, see <http://www.gnu.org/licenses/>.
20*/
21
1package org.gephi.desktop.preview;22package org.gephi.desktop.preview;
223
3import java.awt.Font;24import java.awt.Font;
425
=== removed file 'DesktopTools/release/modules/ext/beansbinding-1.2.1.jar'
5Binary files DesktopTools/release/modules/ext/beansbinding-1.2.1.jar 2009-09-23 10:28:52 +0000 and DesktopTools/release/modules/ext/beansbinding-1.2.1.jar 1970-01-01 00:00:00 +0000 differ26Binary files DesktopTools/release/modules/ext/beansbinding-1.2.1.jar 2009-09-23 10:28:52 +0000 and DesktopTools/release/modules/ext/beansbinding-1.2.1.jar 1970-01-01 00:00:00 +0000 differ
=== modified file 'DirectoryChooser/src/org/netbeans/swing/dirchooser/spi/CustomDirectoryProvider.java'
--- DirectoryChooser/src/org/netbeans/swing/dirchooser/spi/CustomDirectoryProvider.java 2010-10-21 15:16:36 +0000
+++ DirectoryChooser/src/org/netbeans/swing/dirchooser/spi/CustomDirectoryProvider.java 2011-04-10 10:41:30 +0000
@@ -1,10 +1,29 @@
1/*
2Copyright 2008-2010 Gephi
3Authors : Martin Škurla
4Website : http://www.gephi.org
5
6This file is part of Gephi.
7
8Gephi is free software: you can redistribute it and/or modify
9it under the terms of the GNU Affero General Public License as
10published by the Free Software Foundation, either version 3 of the
11License, or (at your option) any later version.
12
13Gephi is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU Affero General Public License for more details.
17
18You should have received a copy of the GNU Affero General Public License
19along with Gephi. If not, see <http://www.gnu.org/licenses/>.
20*/
21
1package org.netbeans.swing.dirchooser.spi;22package org.netbeans.swing.dirchooser.spi;
223
3
4import java.io.File;24import java.io.File;
5import javax.swing.Icon;25import javax.swing.Icon;
626
7
8/**27/**
9 * Defines icon and required file content of custom directory. Custom directory is invoked always as28 * Defines icon and required file content of custom directory. Custom directory is invoked always as
10 * the result of <code>jFileChooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);</code>. As29 * the result of <code>jFileChooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);</code>. As
1130
=== modified file 'DynamicImpl/test/unit/src/org/gephi/dynamic/DynamicModeltest.java'
--- DynamicImpl/test/unit/src/org/gephi/dynamic/DynamicModeltest.java 2010-09-22 20:46:09 +0000
+++ DynamicImpl/test/unit/src/org/gephi/dynamic/DynamicModeltest.java 2011-04-10 10:41:30 +0000
@@ -1,4 +1,25 @@
1/*1/*
2Copyright 2008-2010 Gephi
3Authors : Mathieu Bastian <mathieu.bastian@gephi.org>
4Website : http://www.gephi.org
5
6This file is part of Gephi.
7
8Gephi is free software: you can redistribute it and/or modify
9it under the terms of the GNU Affero General Public License as
10published by the Free Software Foundation, either version 3 of the
11License, or (at your option) any later version.
12
13Gephi is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU Affero General Public License for more details.
17
18You should have received a copy of the GNU Affero General Public License
19along with Gephi. If not, see <http://www.gnu.org/licenses/>.
20*/
21
22/*
2 * To change this template, choose Tools | Templates23 * To change this template, choose Tools | Templates
3 * and open the template in the editor.24 * and open the template in the editor.
4 */25 */
526
=== modified file 'FiltersPlugin/src/org/gephi/filters/plugin/DynamicAttributesHelper.java'
--- FiltersPlugin/src/org/gephi/filters/plugin/DynamicAttributesHelper.java 2011-03-17 07:35:27 +0000
+++ FiltersPlugin/src/org/gephi/filters/plugin/DynamicAttributesHelper.java 2011-04-10 10:41:30 +0000
@@ -1,7 +1,24 @@
1/*1/*
2 * To change this template, choose Tools | Templates2Copyright 2008-2010 Gephi
3 * and open the template in the editor.3Authors : Mathieu Bastian <mathieu.bastian@gephi.org>
4 */4Website : http://www.gephi.org
5
6This file is part of Gephi.
7
8Gephi is free software: you can redistribute it and/or modify
9it under the terms of the GNU Affero General Public License as
10published by the Free Software Foundation, either version 3 of the
11License, or (at your option) any later version.
12
13Gephi is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU Affero General Public License for more details.
17
18You should have received a copy of the GNU Affero General Public License
19along with Gephi. If not, see <http://www.gnu.org/licenses/>.
20*/
21
5package org.gephi.filters.plugin;22package org.gephi.filters.plugin;
623
7import org.gephi.data.attributes.api.Estimator;24import org.gephi.data.attributes.api.Estimator;
825
=== modified file 'FiltersPlugin/src/org/gephi/filters/plugin/attribute/ComparableArrayConverter.java'
--- FiltersPlugin/src/org/gephi/filters/plugin/attribute/ComparableArrayConverter.java 2010-07-15 17:11:39 +0000
+++ FiltersPlugin/src/org/gephi/filters/plugin/attribute/ComparableArrayConverter.java 2011-04-10 10:41:30 +0000
@@ -1,3 +1,23 @@
1/*
2Copyright 2008-2010 Gephi
3Website : http://www.gephi.org
4
5This file is part of Gephi.
6
7Gephi is free software: you can redistribute it and/or modify
8it under the terms of the GNU Affero General Public License as
9published by the Free Software Foundation, either version 3 of the
10License, or (at your option) any later version.
11
12Gephi is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU Affero General Public License for more details.
16
17You should have received a copy of the GNU Affero General Public License
18along with Gephi. If not, see <http://www.gnu.org/licenses/>.
19*/
20
1package org.gephi.filters.plugin.attribute;21package org.gephi.filters.plugin.attribute;
222
323
424
=== modified file 'ImportPlugin/test/unit/src/org/gephi/io/importer/plugin/database/EdgeListImporterTest.java'
--- ImportPlugin/test/unit/src/org/gephi/io/importer/plugin/database/EdgeListImporterTest.java 2010-06-09 22:33:02 +0000
+++ ImportPlugin/test/unit/src/org/gephi/io/importer/plugin/database/EdgeListImporterTest.java 2011-04-10 10:41:30 +0000
@@ -1,3 +1,24 @@
1/*
2Copyright 2008-2010 Gephi
3Authors : Mathieu Bastian <mathieu.bastian@gephi.org>
4Website : http://www.gephi.org
5
6This file is part of Gephi.
7
8Gephi is free software: you can redistribute it and/or modify
9it under the terms of the GNU Affero General Public License as
10published by the Free Software Foundation, either version 3 of the
11License, or (at your option) any later version.
12
13Gephi is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU Affero General Public License for more details.
17
18You should have received a copy of the GNU Affero General Public License
19along with Gephi. If not, see <http://www.gnu.org/licenses/>.
20*/
21
1package org.gephi.io.importer.plugin.database;22package org.gephi.io.importer.plugin.database;
223
3import java.sql.Connection;24import java.sql.Connection;
425
=== removed file 'JFreeChart/release/modules/ext/orson-0.5.0.jar'
5Binary files JFreeChart/release/modules/ext/orson-0.5.0.jar 2009-09-27 13:11:36 +0000 and JFreeChart/release/modules/ext/orson-0.5.0.jar 1970-01-01 00:00:00 +0000 differ26Binary files JFreeChart/release/modules/ext/orson-0.5.0.jar 2009-09-27 13:11:36 +0000 and JFreeChart/release/modules/ext/orson-0.5.0.jar 1970-01-01 00:00:00 +0000 differ
=== modified file 'PreviewExport/src/org/gephi/io/exporter/preview/util/LengthUnit.java'
--- PreviewExport/src/org/gephi/io/exporter/preview/util/LengthUnit.java 2010-08-29 17:57:57 +0000
+++ PreviewExport/src/org/gephi/io/exporter/preview/util/LengthUnit.java 2011-04-10 10:41:30 +0000
@@ -1,3 +1,24 @@
1/*
2Copyright 2008-2010 Gephi
3Authors : Jérémy Subtil <jeremy.subtil@gephi.org>
4Website : http://www.gephi.org
5
6This file is part of Gephi.
7
8Gephi is free software: you can redistribute it and/or modify
9it under the terms of the GNU Affero General Public License as
10published by the Free Software Foundation, either version 3 of the
11License, or (at your option) any later version.
12
13Gephi is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU Affero General Public License for more details.
17
18You should have received a copy of the GNU Affero General Public License
19along with Gephi. If not, see <http://www.gnu.org/licenses/>.
20*/
21
1package org.gephi.io.exporter.preview.util;22package org.gephi.io.exporter.preview.util;
223
3/**24/**
425
=== modified file 'PreviewExport/src/org/gephi/io/exporter/preview/util/SupportSize.java'
--- PreviewExport/src/org/gephi/io/exporter/preview/util/SupportSize.java 2010-08-29 17:57:57 +0000
+++ PreviewExport/src/org/gephi/io/exporter/preview/util/SupportSize.java 2011-04-10 10:41:30 +0000
@@ -1,3 +1,24 @@
1/*
2Copyright 2008-2010 Gephi
3Authors : Jérémy Subtil <jeremy.subtil@gephi.org>
4Website : http://www.gephi.org
5
6This file is part of Gephi.
7
8Gephi is free software: you can redistribute it and/or modify
9it under the terms of the GNU Affero General Public License as
10published by the Free Software Foundation, either version 3 of the
11License, or (at your option) any later version.
12
13Gephi is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU Affero General Public License for more details.
17
18You should have received a copy of the GNU Affero General Public License
19along with Gephi. If not, see <http://www.gnu.org/licenses/>.
20*/
21
1package org.gephi.io.exporter.preview.util;22package org.gephi.io.exporter.preview.util;
223
3/**24/**
425
=== removed file 'ProcessingWrapper/release/modules/ext/opengl.jar'
5Binary files ProcessingWrapper/release/modules/ext/opengl.jar 2009-11-03 21:59:39 +0000 and ProcessingWrapper/release/modules/ext/opengl.jar 1970-01-01 00:00:00 +0000 differ26Binary files ProcessingWrapper/release/modules/ext/opengl.jar 2009-11-03 21:59:39 +0000 and ProcessingWrapper/release/modules/ext/opengl.jar 1970-01-01 00:00:00 +0000 differ
=== modified file 'RankingAPI/src/org/gephi/ranking/impl/AbstractTransformer.java'
--- RankingAPI/src/org/gephi/ranking/impl/AbstractTransformer.java 2010-02-07 09:09:49 +0000
+++ RankingAPI/src/org/gephi/ranking/impl/AbstractTransformer.java 2011-04-10 10:41:30 +0000
@@ -1,23 +1,24 @@
1/*1/*
2CopyrighType 2008 WebAtlas2Copyright 2008 WebAtlas
3Authors : Mathieu Bastian, Mathieu Jacomy, Julian Bilcke3Authors : Mathieu Bastian, Mathieu Jacomy, Julian Bilcke
4Website : http://www.gephi.org4Website : http://www.gephi.org
55
6This file is parType of Gephi.6This file is part of Gephi.
77
8Gephi is free software: you can redistribute iType and/or modify8Gephi is free software: you can redistribute it and/or modify
9iType under the terms of the GNU General Public License as published by9it under the terms of the GNU Affero General Public License as
10the Free Software Foundation, either version 3 of the License, or10published by the Free Software Foundation, either version 3 of the
11(aType your option) any later version.11License, or (at your option) any later version.
1212
13Gephi is distributed in the hope thaType iType will be useful,13Gephi is distributed in the hope that it will be useful,
14buType WITHOUType ANY WARRANTY; withouType even the implied warranty of14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU General Public License for more details.16GNU Affero General Public License for more details.
1717
18You should have received a copy of the GNU General Public License18You should have received a copy of the GNU Affero General Public License
19along with Gephi. If not, see <http://www.gnu.org/licenses/>.19along with Gephi. If not, see <http://www.gnu.org/licenses/>.
20 */20*/
21
21package org.gephi.ranking.impl;22package org.gephi.ranking.impl;
2223
23import org.gephi.ranking.api.Interpolator;24import org.gephi.ranking.api.Interpolator;
2425
=== modified file 'StatisticsAPI/test/unit/src/org/gephi/statistics/StatisticsPersistenceProviderTest.java'
--- StatisticsAPI/test/unit/src/org/gephi/statistics/StatisticsPersistenceProviderTest.java 2011-02-20 21:46:29 +0000
+++ StatisticsAPI/test/unit/src/org/gephi/statistics/StatisticsPersistenceProviderTest.java 2011-04-10 10:41:30 +0000
@@ -1,7 +1,24 @@
1/*1/*
2 * To change this template, choose Tools | Templates2Copyright 2008-2010 Gephi
3 * and open the template in the editor.3Authors : Mathieu Bastian <mathieu.bastian@gephi.org>
4 */4Website : http://www.gephi.org
5
6This file is part of Gephi.
7
8Gephi is free software: you can redistribute it and/or modify
9it under the terms of the GNU Affero General Public License as
10published by the Free Software Foundation, either version 3 of the
11License, or (at your option) any later version.
12
13Gephi is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU Affero General Public License for more details.
17
18You should have received a copy of the GNU Affero General Public License
19along with Gephi. If not, see <http://www.gnu.org/licenses/>.
20*/
21
5package org.gephi.statistics;22package org.gephi.statistics;
623
7import java.io.StringReader;24import java.io.StringReader;
825
=== modified file 'SwingX/nbproject/project.xml'
--- SwingX/nbproject/project.xml 2010-09-01 22:24:24 +0000
+++ SwingX/nbproject/project.xml 2011-04-10 10:41:30 +0000
@@ -60,10 +60,6 @@
60 <runtime-relative-path>ext/swingx-beaninfo-1.6.1.jar</runtime-relative-path>60 <runtime-relative-path>ext/swingx-beaninfo-1.6.1.jar</runtime-relative-path>
61 <binary-origin>release/modules/ext/swingx-beaninfo-1.6.1.jar</binary-origin>61 <binary-origin>release/modules/ext/swingx-beaninfo-1.6.1.jar</binary-origin>
62 </class-path-extension>62 </class-path-extension>
63 <class-path-extension>
64 <runtime-relative-path>ext/MultipleGradientPaint.jar</runtime-relative-path>
65 <binary-origin>release/modules/ext/MultipleGradientPaint.jar</binary-origin>
66 </class-path-extension>
67 </data>63 </data>
68 </configuration>64 </configuration>
69</project>65</project>
7066
=== removed file 'SwingX/release/modules/ext/MultipleGradientPaint.jar'
71Binary files SwingX/release/modules/ext/MultipleGradientPaint.jar 2009-06-26 15:45:50 +0000 and SwingX/release/modules/ext/MultipleGradientPaint.jar 1970-01-01 00:00:00 +0000 differ67Binary files SwingX/release/modules/ext/MultipleGradientPaint.jar 2009-06-26 15:45:50 +0000 and SwingX/release/modules/ext/MultipleGradientPaint.jar 1970-01-01 00:00:00 +0000 differ
=== removed file 'Utils/release/modules/ext/javacsv.jar'
72Binary files Utils/release/modules/ext/javacsv.jar 2010-08-02 18:06:19 +0000 and Utils/release/modules/ext/javacsv.jar 1970-01-01 00:00:00 +0000 differ68Binary files Utils/release/modules/ext/javacsv.jar 2010-08-02 18:06:19 +0000 and Utils/release/modules/ext/javacsv.jar 1970-01-01 00:00:00 +0000 differ
=== modified file 'Utils/test/unit/src/org/gephi/utils/StatisticsUtilsTest.java'
--- Utils/test/unit/src/org/gephi/utils/StatisticsUtilsTest.java 2010-08-23 14:20:55 +0000
+++ Utils/test/unit/src/org/gephi/utils/StatisticsUtilsTest.java 2011-04-10 10:41:30 +0000
@@ -10,7 +10,7 @@
10Gephi is free software: you can redistribute it and/or modify10Gephi is free software: you can redistribute it and/or modify
11it under the terms of the GNU Affero General Public License as11it under the terms of the GNU Affero General Public License as
12published by the Free Software Foundation, either version 3 of the12published by the Free Software Foundation, either version 3 of the
13(at your option) any later version.13License, or (at your option) any later version.
1414
15Gephi is distributed in the hope that it will be useful,15Gephi is distributed in the hope that it will be useful,
16but WITHOUT ANY WARRANTY; without even the implied warranty of16but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -92,4 +92,4 @@
92 assertEquals(results[6], new BigDecimal("1"));92 assertEquals(results[6], new BigDecimal("1"));
93 assertEquals(results[7], new BigDecimal("7"));93 assertEquals(results[7], new BigDecimal("7"));
94 }94 }
95}
96\ No newline at end of file95\ No newline at end of file
96}
9797
=== modified file 'VisualizationModule/src/org/gephi/visualization/apiimpl/contextmenuitems/CopyToWorkspace.java'
--- VisualizationModule/src/org/gephi/visualization/apiimpl/contextmenuitems/CopyToWorkspace.java 2011-01-15 18:15:35 +0000
+++ VisualizationModule/src/org/gephi/visualization/apiimpl/contextmenuitems/CopyToWorkspace.java 2011-04-10 10:41:30 +0000
@@ -1,7 +1,23 @@
1/*1/*
2 * To change this template, choose Tools | Templates2Copyright 2008-2010 Gephi
3 * and open the template in the editor.3Authors : Eduardo Ramos <eduramiba@gmail.com>
4 */4Website : http://www.gephi.org
5
6This file is part of Gephi.
7
8Gephi is free software: you can redistribute it and/or modify
9it under the terms of the GNU Affero General Public License as
10published by the Free Software Foundation, either version 3 of the
11License, or (at your option) any later version.
12
13Gephi is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU Affero General Public License for more details.
17
18You should have received a copy of the GNU Affero General Public License
19along with Gephi. If not, see <http://www.gnu.org/licenses/>.
20*/
521
6package org.gephi.visualization.apiimpl.contextmenuitems;22package org.gephi.visualization.apiimpl.contextmenuitems;
723
824
=== modified file 'VisualizationModule/src/org/gephi/visualization/swing/GLAbstractListener.java'
--- VisualizationModule/src/org/gephi/visualization/swing/GLAbstractListener.java 2011-03-12 22:56:17 +0000
+++ VisualizationModule/src/org/gephi/visualization/swing/GLAbstractListener.java 2011-04-10 10:41:30 +0000
@@ -1,3 +1,24 @@
1/*
2Copyright 2008-2010 Gephi
3Authors : Mathieu Bastian <mathieu.bastian@gephi.org>
4Website : http://www.gephi.org
5
6This file is part of Gephi.
7
8Gephi is free software: you can redistribute it and/or modify
9it under the terms of the GNU Affero General Public License as
10published by the Free Software Foundation, either version 3 of the
11License, or (at your option) any later version.
12
13Gephi is distributed in the hope that it will be useful,
14but WITHOUT ANY WARRANTY; without even the implied warranty of
15MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16GNU Affero General Public License for more details.
17
18You should have received a copy of the GNU Affero General Public License
19along with Gephi. If not, see <http://www.gnu.org/licenses/>.
20*/
21
1package org.gephi.visualization.swing;22package org.gephi.visualization.swing;
223
3import com.sun.opengl.util.BufferUtil;24import com.sun.opengl.util.BufferUtil;
425
=== modified file 'change_license.sh'
--- change_license.sh 2011-04-05 11:44:27 +0000
+++ change_license.sh 2011-04-10 10:41:30 +0000
@@ -1,5 +1,24 @@
1#!/bin/bash1#!/bin/bash
22
3# Copyright 2008-2010 Gephi
4# Website : http://www.gephi.org
5#
6# This file is part of Gephi.
7#
8# Gephi is free software: you can redistribute it and/or modify
9# it under the terms of the GNU Affero General Public License as
10# published by the Free Software Foundation, either version 3 of the
11# License, or (at your option) any later version.
12#
13# Gephi is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU Affero General Public License for more details.
17#
18# You should have received a copy of the GNU Affero General Public License
19# along with Gephi. If not, see <http://www.gnu.org/licenses/>.
20
21
3# 22#
4# Edit all project.properties contained in modules.23# Edit all project.properties contained in modules.
5# 24#
625
=== modified file 'copykeystore.py'
--- copykeystore.py 2011-04-05 11:44:27 +0000
+++ copykeystore.py 2011-04-10 10:41:30 +0000
@@ -1,3 +1,21 @@
1# Copyright 2008-2010 Gephi
2# Website : http://www.gephi.org
3#
4# This file is part of Gephi.
5#
6# Gephi is free software: you can redistribute it and/or modify
7# it under the terms of the GNU Affero General Public License as
8# published by the Free Software Foundation, either version 3 of the
9# License, or (at your option) any later version.
10#
11# Gephi is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU Affero General Public License for more details.
15#
16# You should have received a copy of the GNU Affero General Public License
17# along with Gephi. If not, see <http://www.gnu.org/licenses/>.
18
1import os.path19import os.path
2import sys20import sys
321
@@ -28,4 +46,4 @@
28 f = open(private_dir + "/private.properties", 'w')46 f = open(private_dir + "/private.properties", 'w')
29 f.write("storepass=" + passphrase)47 f.write("storepass=" + passphrase)
30 f.close()48 f.close()
31project.close()
32\ No newline at end of file49\ No newline at end of file
50project.close()
3351
=== modified file 'po2properties.sh'
--- po2properties.sh 2011-04-05 11:44:27 +0000
+++ po2properties.sh 2011-04-10 10:41:30 +0000
@@ -1,4 +1,23 @@
1#!/bin/bash1#!/bin/bash
2
3# Copyright 2008-2010 Gephi
4# Website : http://www.gephi.org
5#
6# This file is part of Gephi.
7#
8# Gephi is free software: you can redistribute it and/or modify
9# it under the terms of the GNU Affero General Public License as
10# published by the Free Software Foundation, either version 3 of the
11# License, or (at your option) any later version.
12#
13# Gephi is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU Affero General Public License for more details.
17#
18# You should have received a copy of the GNU Affero General Public License
19# along with Gephi. If not, see <http://www.gnu.org/licenses/>.
20
2ROOT=`pwd`21ROOT=`pwd`
322
4function RecurseDirs23function RecurseDirs
524
=== modified file 'properties2pot.sh'
--- properties2pot.sh 2011-04-05 11:44:27 +0000
+++ properties2pot.sh 2011-04-10 10:41:30 +0000
@@ -1,4 +1,23 @@
1#!/bin/bash1#!/bin/bash
2
3# Copyright 2008-2010 Gephi
4# Website : http://www.gephi.org
5#
6# This file is part of Gephi.
7#
8# Gephi is free software: you can redistribute it and/or modify
9# it under the terms of the GNU Affero General Public License as
10# published by the Free Software Foundation, either version 3 of the
11# License, or (at your option) any later version.
12#
13# Gephi is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU Affero General Public License for more details.
17#
18# You should have received a copy of the GNU Affero General Public License
19# along with Gephi. If not, see <http://www.gnu.org/licenses/>.
20
2ROOT=`pwd`21ROOT=`pwd`
322
4function RecurseDirs23function RecurseDirs

Subscribers

People subscribed via source and target branches