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
1=== modified file 'AttributesAPI/test/unit/src/org/gephi/data/attributes/type/IntegerListTest.java'
2--- AttributesAPI/test/unit/src/org/gephi/data/attributes/type/IntegerListTest.java 2010-05-27 21:47:09 +0000
3+++ AttributesAPI/test/unit/src/org/gephi/data/attributes/type/IntegerListTest.java 2011-04-10 10:41:30 +0000
4@@ -1,3 +1,24 @@
5+/*
6+Copyright 2008-2010 Gephi
7+Authors : Martin Škurla
8+Website : http://www.gephi.org
9+
10+This file is part of Gephi.
11+
12+Gephi is free software: you can redistribute it and/or modify
13+it under the terms of the GNU Affero General Public License as
14+published by the Free Software Foundation, either version 3 of the
15+License, or (at your option) any later version.
16+
17+Gephi is distributed in the hope that it will be useful,
18+but WITHOUT ANY WARRANTY; without even the implied warranty of
19+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20+GNU Affero General Public License for more details.
21+
22+You should have received a copy of the GNU Affero General Public License
23+along with Gephi. If not, see <http://www.gnu.org/licenses/>.
24+*/
25+
26 package org.gephi.data.attributes.type;
27
28 import org.junit.Test;
29@@ -43,4 +64,4 @@
30 IntegerList list = new IntegerList(new Integer [0]);
31 assertEquals(list.size(), 0);
32 }
33-}
34\ No newline at end of file
35+}
36
37=== modified file 'AttributesAPI/test/unit/src/org/gephi/data/attributes/type/StringListTest.java'
38--- AttributesAPI/test/unit/src/org/gephi/data/attributes/type/StringListTest.java 2010-05-27 21:47:09 +0000
39+++ AttributesAPI/test/unit/src/org/gephi/data/attributes/type/StringListTest.java 2011-04-10 10:41:30 +0000
40@@ -1,3 +1,24 @@
41+/*
42+Copyright 2008-2010 Gephi
43+Authors : Martin Škurla
44+Website : http://www.gephi.org
45+
46+This file is part of Gephi.
47+
48+Gephi is free software: you can redistribute it and/or modify
49+it under the terms of the GNU Affero General Public License as
50+published by the Free Software Foundation, either version 3 of the
51+License, or (at your option) any later version.
52+
53+Gephi is distributed in the hope that it will be useful,
54+but WITHOUT ANY WARRANTY; without even the implied warranty of
55+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
56+GNU Affero General Public License for more details.
57+
58+You should have received a copy of the GNU Affero General Public License
59+along with Gephi. If not, see <http://www.gnu.org/licenses/>.
60+*/
61+
62 package org.gephi.data.attributes.type;
63
64 import org.junit.Test;
65@@ -43,4 +64,4 @@
66 StringList list = new StringList(new char[0]);
67 assertEquals(list.size(), 0);
68 }
69-}
70\ No newline at end of file
71+}
72
73=== modified file 'AttributesAPI/test/unit/src/org/gephi/data/attributes/type/TypeConvertorTest.java'
74--- AttributesAPI/test/unit/src/org/gephi/data/attributes/type/TypeConvertorTest.java 2010-05-27 21:47:09 +0000
75+++ AttributesAPI/test/unit/src/org/gephi/data/attributes/type/TypeConvertorTest.java 2011-04-10 10:41:30 +0000
76@@ -1,3 +1,24 @@
77+/*
78+Copyright 2008-2010 Gephi
79+Authors : Martin Škurla
80+Website : http://www.gephi.org
81+
82+This file is part of Gephi.
83+
84+Gephi is free software: you can redistribute it and/or modify
85+it under the terms of the GNU Affero General Public License as
86+published by the Free Software Foundation, either version 3 of the
87+License, or (at your option) any later version.
88+
89+Gephi is distributed in the hope that it will be useful,
90+but WITHOUT ANY WARRANTY; without even the implied warranty of
91+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
92+GNU Affero General Public License for more details.
93+
94+You should have received a copy of the GNU Affero General Public License
95+along with Gephi. If not, see <http://www.gnu.org/licenses/>.
96+*/
97+
98 package org.gephi.data.attributes.type;
99
100 import java.math.BigInteger;
101@@ -68,4 +89,4 @@
102 public void testConvertingPrimitiveToWrapperArrayArgumentNotPrimitiveArray() {
103 TypeConvertor.convertPrimitiveToWrapperArray(new Object[0]);
104 }
105-}
106\ No newline at end of file
107+}
108
109=== modified file 'AttributesImpl/src/org/gephi/data/attributes/ListFactory.java'
110--- AttributesImpl/src/org/gephi/data/attributes/ListFactory.java 2010-07-07 23:29:28 +0000
111+++ AttributesImpl/src/org/gephi/data/attributes/ListFactory.java 2011-04-10 10:41:30 +0000
112@@ -1,3 +1,24 @@
113+/*
114+Copyright 2008-2010 Gephi
115+Authors : Martin Škurla
116+Website : http://www.gephi.org
117+
118+This file is part of Gephi.
119+
120+Gephi is free software: you can redistribute it and/or modify
121+it under the terms of the GNU Affero General Public License as
122+published by the Free Software Foundation, either version 3 of the
123+License, or (at your option) any later version.
124+
125+Gephi is distributed in the hope that it will be useful,
126+but WITHOUT ANY WARRANTY; without even the implied warranty of
127+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
128+GNU Affero General Public License for more details.
129+
130+You should have received a copy of the GNU Affero General Public License
131+along with Gephi. If not, see <http://www.gnu.org/licenses/>.
132+*/
133+
134 package org.gephi.data.attributes;
135
136 import java.math.BigDecimal;
137
138=== modified file 'DataLaboratoryPlugin/src/org/gephi/datalab/plugin/manipulators/general/ui/ImportCSVUIWizardPanel1.java'
139--- DataLaboratoryPlugin/src/org/gephi/datalab/plugin/manipulators/general/ui/ImportCSVUIWizardPanel1.java 2010-09-07 09:00:13 +0000
140+++ DataLaboratoryPlugin/src/org/gephi/datalab/plugin/manipulators/general/ui/ImportCSVUIWizardPanel1.java 2011-04-10 10:41:30 +0000
141@@ -1,7 +1,23 @@
142 /*
143- * To change this template, choose Tools | Templates
144- * and open the template in the editor.
145- */
146+Copyright 2008-2010 Gephi
147+Website : http://www.gephi.org
148+
149+This file is part of Gephi.
150+
151+Gephi is free software: you can redistribute it and/or modify
152+it under the terms of the GNU Affero General Public License as
153+published by the Free Software Foundation, either version 3 of the
154+License, or (at your option) any later version.
155+
156+Gephi is distributed in the hope that it will be useful,
157+but WITHOUT ANY WARRANTY; without even the implied warranty of
158+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
159+GNU Affero General Public License for more details.
160+
161+You should have received a copy of the GNU Affero General Public License
162+along with Gephi. If not, see <http://www.gnu.org/licenses/>.
163+*/
164+
165 package org.gephi.datalab.plugin.manipulators.general.ui;
166
167 import java.awt.Component;
168
169=== modified file 'DesktopDataLaboratory/src/org/gephi/desktop/datalab/general/actions/AddColumnUI.java'
170--- DesktopDataLaboratory/src/org/gephi/desktop/datalab/general/actions/AddColumnUI.java 2010-09-07 09:00:13 +0000
171+++ DesktopDataLaboratory/src/org/gephi/desktop/datalab/general/actions/AddColumnUI.java 2011-04-10 10:41:30 +0000
172@@ -8,7 +8,7 @@
173 Gephi is free software: you can redistribute it and/or modify
174 it under the terms of the GNU Affero General Public License as
175 published by the Free Software Foundation, either version 3 of the
176-(at your option) any later version.
177+License, or (at your option) any later version.
178
179 Gephi is distributed in the hope that it will be useful,
180 but WITHOUT ANY WARRANTY; without even the implied warranty of
181
182=== modified file 'DesktopDataLaboratory/src/org/gephi/desktop/datalab/general/actions/CSVExportUI.java'
183--- DesktopDataLaboratory/src/org/gephi/desktop/datalab/general/actions/CSVExportUI.java 2010-12-28 12:29:32 +0000
184+++ DesktopDataLaboratory/src/org/gephi/desktop/datalab/general/actions/CSVExportUI.java 2011-04-10 10:41:30 +0000
185@@ -8,7 +8,7 @@
186 Gephi is free software: you can redistribute it and/or modify
187 it under the terms of the GNU Affero General Public License as
188 published by the Free Software Foundation, either version 3 of the
189-(at your option) any later version.
190+License, or (at your option) any later version.
191
192 Gephi is distributed in the hope that it will be useful,
193 but WITHOUT ANY WARRANTY; without even the implied warranty of
194@@ -17,7 +17,7 @@
195
196 You should have received a copy of the GNU Affero General Public License
197 along with Gephi. If not, see <http://www.gnu.org/licenses/>.
198- */
199+*/
200 package org.gephi.desktop.datalab.general.actions;
201
202 import java.nio.charset.Charset;
203
204=== modified file 'DesktopDataLaboratory/src/org/gephi/desktop/datalab/general/actions/MergeColumnsUI.java'
205--- DesktopDataLaboratory/src/org/gephi/desktop/datalab/general/actions/MergeColumnsUI.java 2011-02-18 14:56:02 +0000
206+++ DesktopDataLaboratory/src/org/gephi/desktop/datalab/general/actions/MergeColumnsUI.java 2011-04-10 10:41:30 +0000
207@@ -8,7 +8,7 @@
208 Gephi is free software: you can redistribute it and/or modify
209 it under the terms of the GNU Affero General Public License as
210 published by the Free Software Foundation, either version 3 of the
211-(at your option) any later version.
212+License, or (at your option) any later version.
213
214 Gephi is distributed in the hope that it will be useful,
215 but WITHOUT ANY WARRANTY; without even the implied warranty of
216
217=== modified file 'DesktopDataLaboratory/src/org/gephi/desktop/datalab/utils/PopupMenuUtils.java'
218--- DesktopDataLaboratory/src/org/gephi/desktop/datalab/utils/PopupMenuUtils.java 2011-02-09 20:31:01 +0000
219+++ DesktopDataLaboratory/src/org/gephi/desktop/datalab/utils/PopupMenuUtils.java 2011-04-10 10:41:30 +0000
220@@ -8,7 +8,7 @@
221 Gephi is free software: you can redistribute it and/or modify
222 it under the terms of the GNU Affero General Public License as
223 published by the Free Software Foundation, either version 3 of the
224-(at your option) any later version.
225+License, or (at your option) any later version.
226
227 Gephi is distributed in the hope that it will be useful,
228 but WITHOUT ANY WARRANTY; without even the implied warranty of
229
230=== modified file 'DesktopDataLaboratory/src/org/gephi/desktop/datalab/utils/SparkLinesRenderer.java'
231--- DesktopDataLaboratory/src/org/gephi/desktop/datalab/utils/SparkLinesRenderer.java 2010-09-13 17:15:02 +0000
232+++ DesktopDataLaboratory/src/org/gephi/desktop/datalab/utils/SparkLinesRenderer.java 2011-04-10 10:41:30 +0000
233@@ -8,7 +8,7 @@
234 Gephi is free software: you can redistribute it and/or modify
235 it under the terms of the GNU Affero General Public License as
236 published by the Free Software Foundation, either version 3 of the
237-(at your option) any later version.
238+License, or (at your option) any later version.
239
240 Gephi is distributed in the hope that it will be useful,
241 but WITHOUT ANY WARRANTY; without even the implied warranty of
242
243=== modified file 'DesktopDataLaboratory/src/org/gephi/desktop/datalab/utils/TimeIntervalsRenderer.java'
244--- DesktopDataLaboratory/src/org/gephi/desktop/datalab/utils/TimeIntervalsRenderer.java 2010-09-13 17:15:02 +0000
245+++ DesktopDataLaboratory/src/org/gephi/desktop/datalab/utils/TimeIntervalsRenderer.java 2011-04-10 10:41:30 +0000
246@@ -8,7 +8,7 @@
247 Gephi is free software: you can redistribute it and/or modify
248 it under the terms of the GNU Affero General Public License as
249 published by the Free Software Foundation, either version 3 of the
250-(at your option) any later version.
251+License, or (at your option) any later version.
252
253 Gephi is distributed in the hope that it will be useful,
254 but WITHOUT ANY WARRANTY; without even the implied warranty of
255
256=== modified file 'DesktopExport/src/org/gephi/desktop/io/export/api/TopDialog.java'
257--- DesktopExport/src/org/gephi/desktop/io/export/api/TopDialog.java 2011-04-06 03:59:06 +0000
258+++ DesktopExport/src/org/gephi/desktop/io/export/api/TopDialog.java 2011-04-10 10:41:30 +0000
259@@ -1,7 +1,24 @@
260 /*
261- * To change this template, choose Tools | Templates
262- * and open the template in the editor.
263- */
264+Copyright 2008-2010 Gephi
265+Authors : Mathieu Bastian <mathieu.bastian@gephi.org>
266+Website : http://www.gephi.org
267+
268+This file is part of Gephi.
269+
270+Gephi is free software: you can redistribute it and/or modify
271+it under the terms of the GNU Affero General Public License as
272+published by the Free Software Foundation, either version 3 of the
273+License, or (at your option) any later version.
274+
275+Gephi is distributed in the hope that it will be useful,
276+but WITHOUT ANY WARRANTY; without even the implied warranty of
277+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
278+GNU Affero General Public License for more details.
279+
280+You should have received a copy of the GNU Affero General Public License
281+along with Gephi. If not, see <http://www.gnu.org/licenses/>.
282+*/
283+
284 package org.gephi.desktop.io.export.api;
285
286 import java.awt.BorderLayout;
287
288=== modified file 'DesktopPreview/src/org/gephi/desktop/preview/PreviewNode.java'
289--- DesktopPreview/src/org/gephi/desktop/preview/PreviewNode.java 2010-12-20 02:20:53 +0000
290+++ DesktopPreview/src/org/gephi/desktop/preview/PreviewNode.java 2011-04-10 10:41:30 +0000
291@@ -1,3 +1,24 @@
292+/*
293+Copyright 2008-2010 Gephi
294+Authors : Jérémy Subtil <jeremy.subtil@gephi.org>
295+Website : http://www.gephi.org
296+
297+This file is part of Gephi.
298+
299+Gephi is free software: you can redistribute it and/or modify
300+it under the terms of the GNU Affero General Public License as
301+published by the Free Software Foundation, either version 3 of the
302+License, or (at your option) any later version.
303+
304+Gephi is distributed in the hope that it will be useful,
305+but WITHOUT ANY WARRANTY; without even the implied warranty of
306+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
307+GNU Affero General Public License for more details.
308+
309+You should have received a copy of the GNU Affero General Public License
310+along with Gephi. If not, see <http://www.gnu.org/licenses/>.
311+*/
312+
313 package org.gephi.desktop.preview;
314
315 import org.gephi.preview.api.PreviewController;
316
317=== modified file 'DesktopPreview/src/org/gephi/desktop/preview/PreviewSettingsTopComponent.java'
318--- DesktopPreview/src/org/gephi/desktop/preview/PreviewSettingsTopComponent.java 2010-09-30 19:52:30 +0000
319+++ DesktopPreview/src/org/gephi/desktop/preview/PreviewSettingsTopComponent.java 2011-04-10 10:41:30 +0000
320@@ -1,3 +1,23 @@
321+/*
322+Copyright 2008-2010 Gephi
323+Website : http://www.gephi.org
324+
325+This file is part of Gephi.
326+
327+Gephi is free software: you can redistribute it and/or modify
328+it under the terms of the GNU Affero General Public License as
329+published by the Free Software Foundation, either version 3 of the
330+License, or (at your option) any later version.
331+
332+Gephi is distributed in the hope that it will be useful,
333+but WITHOUT ANY WARRANTY; without even the implied warranty of
334+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
335+GNU Affero General Public License for more details.
336+
337+You should have received a copy of the GNU Affero General Public License
338+along with Gephi. If not, see <http://www.gnu.org/licenses/>.
339+*/
340+
341 package org.gephi.desktop.preview;
342
343 import java.awt.BorderLayout;
344
345=== modified file 'DesktopPreview/src/org/gephi/desktop/preview/PreviewTopComponent.java'
346--- DesktopPreview/src/org/gephi/desktop/preview/PreviewTopComponent.java 2011-04-07 06:11:23 +0000
347+++ DesktopPreview/src/org/gephi/desktop/preview/PreviewTopComponent.java 2011-04-10 10:41:30 +0000
348@@ -1,3 +1,23 @@
349+/*
350+Copyright 2008-2010 Gephi
351+Website : http://www.gephi.org
352+
353+This file is part of Gephi.
354+
355+Gephi is free software: you can redistribute it and/or modify
356+it under the terms of the GNU Affero General Public License as
357+published by the Free Software Foundation, either version 3 of the
358+License, or (at your option) any later version.
359+
360+Gephi is distributed in the hope that it will be useful,
361+but WITHOUT ANY WARRANTY; without even the implied warranty of
362+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
363+GNU Affero General Public License for more details.
364+
365+You should have received a copy of the GNU Affero General Public License
366+along with Gephi. If not, see <http://www.gnu.org/licenses/>.
367+*/
368+
369 package org.gephi.desktop.preview;
370
371 import java.awt.BorderLayout;
372
373=== modified file 'DesktopPreview/src/org/gephi/desktop/preview/PreviewUIController.java'
374--- DesktopPreview/src/org/gephi/desktop/preview/PreviewUIController.java 2010-10-08 16:01:26 +0000
375+++ DesktopPreview/src/org/gephi/desktop/preview/PreviewUIController.java 2011-04-10 10:41:30 +0000
376@@ -1,3 +1,24 @@
377+/*
378+Copyright 2008-2010 Gephi
379+Authors : Jérémy Subtil <jeremy.subtil@gephi.org>
380+Website : http://www.gephi.org
381+
382+This file is part of Gephi.
383+
384+Gephi is free software: you can redistribute it and/or modify
385+it under the terms of the GNU Affero General Public License as
386+published by the Free Software Foundation, either version 3 of the
387+License, or (at your option) any later version.
388+
389+Gephi is distributed in the hope that it will be useful,
390+but WITHOUT ANY WARRANTY; without even the implied warranty of
391+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
392+GNU Affero General Public License for more details.
393+
394+You should have received a copy of the GNU Affero General Public License
395+along with Gephi. If not, see <http://www.gnu.org/licenses/>.
396+*/
397+
398 package org.gephi.desktop.preview;
399
400 import javax.swing.SwingUtilities;
401
402=== modified file 'DesktopPreview/src/org/gephi/desktop/preview/ProcessingPreview.java'
403--- DesktopPreview/src/org/gephi/desktop/preview/ProcessingPreview.java 2011-04-07 06:11:23 +0000
404+++ DesktopPreview/src/org/gephi/desktop/preview/ProcessingPreview.java 2011-04-10 10:41:30 +0000
405@@ -1,3 +1,24 @@
406+/*
407+Copyright 2008-2010 Gephi
408+Authors : Jérémy Subtil <jeremy.subtil@gephi.org>
409+Website : http://www.gephi.org
410+
411+This file is part of Gephi.
412+
413+Gephi is free software: you can redistribute it and/or modify
414+it under the terms of the GNU Affero General Public License as
415+published by the Free Software Foundation, either version 3 of the
416+License, or (at your option) any later version.
417+
418+Gephi is distributed in the hope that it will be useful,
419+but WITHOUT ANY WARRANTY; without even the implied warranty of
420+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
421+GNU Affero General Public License for more details.
422+
423+You should have received a copy of the GNU Affero General Public License
424+along with Gephi. If not, see <http://www.gnu.org/licenses/>.
425+*/
426+
427 package org.gephi.desktop.preview;
428
429 import java.awt.Font;
430
431=== removed file 'DesktopTools/release/modules/ext/beansbinding-1.2.1.jar'
432Binary 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
433=== modified file 'DirectoryChooser/src/org/netbeans/swing/dirchooser/spi/CustomDirectoryProvider.java'
434--- DirectoryChooser/src/org/netbeans/swing/dirchooser/spi/CustomDirectoryProvider.java 2010-10-21 15:16:36 +0000
435+++ DirectoryChooser/src/org/netbeans/swing/dirchooser/spi/CustomDirectoryProvider.java 2011-04-10 10:41:30 +0000
436@@ -1,10 +1,29 @@
437+/*
438+Copyright 2008-2010 Gephi
439+Authors : Martin Škurla
440+Website : http://www.gephi.org
441+
442+This file is part of Gephi.
443+
444+Gephi is free software: you can redistribute it and/or modify
445+it under the terms of the GNU Affero General Public License as
446+published by the Free Software Foundation, either version 3 of the
447+License, or (at your option) any later version.
448+
449+Gephi is distributed in the hope that it will be useful,
450+but WITHOUT ANY WARRANTY; without even the implied warranty of
451+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
452+GNU Affero General Public License for more details.
453+
454+You should have received a copy of the GNU Affero General Public License
455+along with Gephi. If not, see <http://www.gnu.org/licenses/>.
456+*/
457+
458 package org.netbeans.swing.dirchooser.spi;
459
460-
461 import java.io.File;
462 import javax.swing.Icon;
463
464-
465 /**
466 * Defines icon and required file content of custom directory. Custom directory is invoked always as
467 * the result of <code>jFileChooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);</code>. As
468
469=== modified file 'DynamicImpl/test/unit/src/org/gephi/dynamic/DynamicModeltest.java'
470--- DynamicImpl/test/unit/src/org/gephi/dynamic/DynamicModeltest.java 2010-09-22 20:46:09 +0000
471+++ DynamicImpl/test/unit/src/org/gephi/dynamic/DynamicModeltest.java 2011-04-10 10:41:30 +0000
472@@ -1,4 +1,25 @@
473 /*
474+Copyright 2008-2010 Gephi
475+Authors : Mathieu Bastian <mathieu.bastian@gephi.org>
476+Website : http://www.gephi.org
477+
478+This file is part of Gephi.
479+
480+Gephi is free software: you can redistribute it and/or modify
481+it under the terms of the GNU Affero General Public License as
482+published by the Free Software Foundation, either version 3 of the
483+License, or (at your option) any later version.
484+
485+Gephi is distributed in the hope that it will be useful,
486+but WITHOUT ANY WARRANTY; without even the implied warranty of
487+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
488+GNU Affero General Public License for more details.
489+
490+You should have received a copy of the GNU Affero General Public License
491+along with Gephi. If not, see <http://www.gnu.org/licenses/>.
492+*/
493+
494+/*
495 * To change this template, choose Tools | Templates
496 * and open the template in the editor.
497 */
498
499=== modified file 'FiltersPlugin/src/org/gephi/filters/plugin/DynamicAttributesHelper.java'
500--- FiltersPlugin/src/org/gephi/filters/plugin/DynamicAttributesHelper.java 2011-03-17 07:35:27 +0000
501+++ FiltersPlugin/src/org/gephi/filters/plugin/DynamicAttributesHelper.java 2011-04-10 10:41:30 +0000
502@@ -1,7 +1,24 @@
503 /*
504- * To change this template, choose Tools | Templates
505- * and open the template in the editor.
506- */
507+Copyright 2008-2010 Gephi
508+Authors : Mathieu Bastian <mathieu.bastian@gephi.org>
509+Website : http://www.gephi.org
510+
511+This file is part of Gephi.
512+
513+Gephi is free software: you can redistribute it and/or modify
514+it under the terms of the GNU Affero General Public License as
515+published by the Free Software Foundation, either version 3 of the
516+License, or (at your option) any later version.
517+
518+Gephi is distributed in the hope that it will be useful,
519+but WITHOUT ANY WARRANTY; without even the implied warranty of
520+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
521+GNU Affero General Public License for more details.
522+
523+You should have received a copy of the GNU Affero General Public License
524+along with Gephi. If not, see <http://www.gnu.org/licenses/>.
525+*/
526+
527 package org.gephi.filters.plugin;
528
529 import org.gephi.data.attributes.api.Estimator;
530
531=== modified file 'FiltersPlugin/src/org/gephi/filters/plugin/attribute/ComparableArrayConverter.java'
532--- FiltersPlugin/src/org/gephi/filters/plugin/attribute/ComparableArrayConverter.java 2010-07-15 17:11:39 +0000
533+++ FiltersPlugin/src/org/gephi/filters/plugin/attribute/ComparableArrayConverter.java 2011-04-10 10:41:30 +0000
534@@ -1,3 +1,23 @@
535+/*
536+Copyright 2008-2010 Gephi
537+Website : http://www.gephi.org
538+
539+This file is part of Gephi.
540+
541+Gephi is free software: you can redistribute it and/or modify
542+it under the terms of the GNU Affero General Public License as
543+published by the Free Software Foundation, either version 3 of the
544+License, or (at your option) any later version.
545+
546+Gephi is distributed in the hope that it will be useful,
547+but WITHOUT ANY WARRANTY; without even the implied warranty of
548+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
549+GNU Affero General Public License for more details.
550+
551+You should have received a copy of the GNU Affero General Public License
552+along with Gephi. If not, see <http://www.gnu.org/licenses/>.
553+*/
554+
555 package org.gephi.filters.plugin.attribute;
556
557
558
559=== modified file 'ImportPlugin/test/unit/src/org/gephi/io/importer/plugin/database/EdgeListImporterTest.java'
560--- ImportPlugin/test/unit/src/org/gephi/io/importer/plugin/database/EdgeListImporterTest.java 2010-06-09 22:33:02 +0000
561+++ ImportPlugin/test/unit/src/org/gephi/io/importer/plugin/database/EdgeListImporterTest.java 2011-04-10 10:41:30 +0000
562@@ -1,3 +1,24 @@
563+/*
564+Copyright 2008-2010 Gephi
565+Authors : Mathieu Bastian <mathieu.bastian@gephi.org>
566+Website : http://www.gephi.org
567+
568+This file is part of Gephi.
569+
570+Gephi is free software: you can redistribute it and/or modify
571+it under the terms of the GNU Affero General Public License as
572+published by the Free Software Foundation, either version 3 of the
573+License, or (at your option) any later version.
574+
575+Gephi is distributed in the hope that it will be useful,
576+but WITHOUT ANY WARRANTY; without even the implied warranty of
577+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
578+GNU Affero General Public License for more details.
579+
580+You should have received a copy of the GNU Affero General Public License
581+along with Gephi. If not, see <http://www.gnu.org/licenses/>.
582+*/
583+
584 package org.gephi.io.importer.plugin.database;
585
586 import java.sql.Connection;
587
588=== removed file 'JFreeChart/release/modules/ext/orson-0.5.0.jar'
589Binary 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
590=== modified file 'PreviewExport/src/org/gephi/io/exporter/preview/util/LengthUnit.java'
591--- PreviewExport/src/org/gephi/io/exporter/preview/util/LengthUnit.java 2010-08-29 17:57:57 +0000
592+++ PreviewExport/src/org/gephi/io/exporter/preview/util/LengthUnit.java 2011-04-10 10:41:30 +0000
593@@ -1,3 +1,24 @@
594+/*
595+Copyright 2008-2010 Gephi
596+Authors : Jérémy Subtil <jeremy.subtil@gephi.org>
597+Website : http://www.gephi.org
598+
599+This file is part of Gephi.
600+
601+Gephi is free software: you can redistribute it and/or modify
602+it under the terms of the GNU Affero General Public License as
603+published by the Free Software Foundation, either version 3 of the
604+License, or (at your option) any later version.
605+
606+Gephi is distributed in the hope that it will be useful,
607+but WITHOUT ANY WARRANTY; without even the implied warranty of
608+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
609+GNU Affero General Public License for more details.
610+
611+You should have received a copy of the GNU Affero General Public License
612+along with Gephi. If not, see <http://www.gnu.org/licenses/>.
613+*/
614+
615 package org.gephi.io.exporter.preview.util;
616
617 /**
618
619=== modified file 'PreviewExport/src/org/gephi/io/exporter/preview/util/SupportSize.java'
620--- PreviewExport/src/org/gephi/io/exporter/preview/util/SupportSize.java 2010-08-29 17:57:57 +0000
621+++ PreviewExport/src/org/gephi/io/exporter/preview/util/SupportSize.java 2011-04-10 10:41:30 +0000
622@@ -1,3 +1,24 @@
623+/*
624+Copyright 2008-2010 Gephi
625+Authors : Jérémy Subtil <jeremy.subtil@gephi.org>
626+Website : http://www.gephi.org
627+
628+This file is part of Gephi.
629+
630+Gephi is free software: you can redistribute it and/or modify
631+it under the terms of the GNU Affero General Public License as
632+published by the Free Software Foundation, either version 3 of the
633+License, or (at your option) any later version.
634+
635+Gephi is distributed in the hope that it will be useful,
636+but WITHOUT ANY WARRANTY; without even the implied warranty of
637+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
638+GNU Affero General Public License for more details.
639+
640+You should have received a copy of the GNU Affero General Public License
641+along with Gephi. If not, see <http://www.gnu.org/licenses/>.
642+*/
643+
644 package org.gephi.io.exporter.preview.util;
645
646 /**
647
648=== removed file 'ProcessingWrapper/release/modules/ext/opengl.jar'
649Binary 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
650=== modified file 'RankingAPI/src/org/gephi/ranking/impl/AbstractTransformer.java'
651--- RankingAPI/src/org/gephi/ranking/impl/AbstractTransformer.java 2010-02-07 09:09:49 +0000
652+++ RankingAPI/src/org/gephi/ranking/impl/AbstractTransformer.java 2011-04-10 10:41:30 +0000
653@@ -1,23 +1,24 @@
654 /*
655-CopyrighType 2008 WebAtlas
656+Copyright 2008 WebAtlas
657 Authors : Mathieu Bastian, Mathieu Jacomy, Julian Bilcke
658 Website : http://www.gephi.org
659
660-This file is parType of Gephi.
661-
662-Gephi is free software: you can redistribute iType and/or modify
663-iType under the terms of the GNU General Public License as published by
664-the Free Software Foundation, either version 3 of the License, or
665-(aType your option) any later version.
666-
667-Gephi is distributed in the hope thaType iType will be useful,
668-buType WITHOUType ANY WARRANTY; withouType even the implied warranty of
669+This file is part of Gephi.
670+
671+Gephi is free software: you can redistribute it and/or modify
672+it under the terms of the GNU Affero General Public License as
673+published by the Free Software Foundation, either version 3 of the
674+License, or (at your option) any later version.
675+
676+Gephi is distributed in the hope that it will be useful,
677+but WITHOUT ANY WARRANTY; without even the implied warranty of
678 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
679-GNU General Public License for more details.
680+GNU Affero General Public License for more details.
681
682-You should have received a copy of the GNU General Public License
683+You should have received a copy of the GNU Affero General Public License
684 along with Gephi. If not, see <http://www.gnu.org/licenses/>.
685- */
686+*/
687+
688 package org.gephi.ranking.impl;
689
690 import org.gephi.ranking.api.Interpolator;
691
692=== modified file 'StatisticsAPI/test/unit/src/org/gephi/statistics/StatisticsPersistenceProviderTest.java'
693--- StatisticsAPI/test/unit/src/org/gephi/statistics/StatisticsPersistenceProviderTest.java 2011-02-20 21:46:29 +0000
694+++ StatisticsAPI/test/unit/src/org/gephi/statistics/StatisticsPersistenceProviderTest.java 2011-04-10 10:41:30 +0000
695@@ -1,7 +1,24 @@
696 /*
697- * To change this template, choose Tools | Templates
698- * and open the template in the editor.
699- */
700+Copyright 2008-2010 Gephi
701+Authors : Mathieu Bastian <mathieu.bastian@gephi.org>
702+Website : http://www.gephi.org
703+
704+This file is part of Gephi.
705+
706+Gephi is free software: you can redistribute it and/or modify
707+it under the terms of the GNU Affero General Public License as
708+published by the Free Software Foundation, either version 3 of the
709+License, or (at your option) any later version.
710+
711+Gephi is distributed in the hope that it will be useful,
712+but WITHOUT ANY WARRANTY; without even the implied warranty of
713+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
714+GNU Affero General Public License for more details.
715+
716+You should have received a copy of the GNU Affero General Public License
717+along with Gephi. If not, see <http://www.gnu.org/licenses/>.
718+*/
719+
720 package org.gephi.statistics;
721
722 import java.io.StringReader;
723
724=== modified file 'SwingX/nbproject/project.xml'
725--- SwingX/nbproject/project.xml 2010-09-01 22:24:24 +0000
726+++ SwingX/nbproject/project.xml 2011-04-10 10:41:30 +0000
727@@ -60,10 +60,6 @@
728 <runtime-relative-path>ext/swingx-beaninfo-1.6.1.jar</runtime-relative-path>
729 <binary-origin>release/modules/ext/swingx-beaninfo-1.6.1.jar</binary-origin>
730 </class-path-extension>
731- <class-path-extension>
732- <runtime-relative-path>ext/MultipleGradientPaint.jar</runtime-relative-path>
733- <binary-origin>release/modules/ext/MultipleGradientPaint.jar</binary-origin>
734- </class-path-extension>
735 </data>
736 </configuration>
737 </project>
738
739=== removed file 'SwingX/release/modules/ext/MultipleGradientPaint.jar'
740Binary 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
741=== removed file 'Utils/release/modules/ext/javacsv.jar'
742Binary 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
743=== modified file 'Utils/test/unit/src/org/gephi/utils/StatisticsUtilsTest.java'
744--- Utils/test/unit/src/org/gephi/utils/StatisticsUtilsTest.java 2010-08-23 14:20:55 +0000
745+++ Utils/test/unit/src/org/gephi/utils/StatisticsUtilsTest.java 2011-04-10 10:41:30 +0000
746@@ -10,7 +10,7 @@
747 Gephi is free software: you can redistribute it and/or modify
748 it under the terms of the GNU Affero General Public License as
749 published by the Free Software Foundation, either version 3 of the
750-(at your option) any later version.
751+License, or (at your option) any later version.
752
753 Gephi is distributed in the hope that it will be useful,
754 but WITHOUT ANY WARRANTY; without even the implied warranty of
755@@ -92,4 +92,4 @@
756 assertEquals(results[6], new BigDecimal("1"));
757 assertEquals(results[7], new BigDecimal("7"));
758 }
759-}
760\ No newline at end of file
761+}
762
763=== modified file 'VisualizationModule/src/org/gephi/visualization/apiimpl/contextmenuitems/CopyToWorkspace.java'
764--- VisualizationModule/src/org/gephi/visualization/apiimpl/contextmenuitems/CopyToWorkspace.java 2011-01-15 18:15:35 +0000
765+++ VisualizationModule/src/org/gephi/visualization/apiimpl/contextmenuitems/CopyToWorkspace.java 2011-04-10 10:41:30 +0000
766@@ -1,7 +1,23 @@
767 /*
768- * To change this template, choose Tools | Templates
769- * and open the template in the editor.
770- */
771+Copyright 2008-2010 Gephi
772+Authors : Eduardo Ramos <eduramiba@gmail.com>
773+Website : http://www.gephi.org
774+
775+This file is part of Gephi.
776+
777+Gephi is free software: you can redistribute it and/or modify
778+it under the terms of the GNU Affero General Public License as
779+published by the Free Software Foundation, either version 3 of the
780+License, or (at your option) any later version.
781+
782+Gephi is distributed in the hope that it will be useful,
783+but WITHOUT ANY WARRANTY; without even the implied warranty of
784+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
785+GNU Affero General Public License for more details.
786+
787+You should have received a copy of the GNU Affero General Public License
788+along with Gephi. If not, see <http://www.gnu.org/licenses/>.
789+*/
790
791 package org.gephi.visualization.apiimpl.contextmenuitems;
792
793
794=== modified file 'VisualizationModule/src/org/gephi/visualization/swing/GLAbstractListener.java'
795--- VisualizationModule/src/org/gephi/visualization/swing/GLAbstractListener.java 2011-03-12 22:56:17 +0000
796+++ VisualizationModule/src/org/gephi/visualization/swing/GLAbstractListener.java 2011-04-10 10:41:30 +0000
797@@ -1,3 +1,24 @@
798+/*
799+Copyright 2008-2010 Gephi
800+Authors : Mathieu Bastian <mathieu.bastian@gephi.org>
801+Website : http://www.gephi.org
802+
803+This file is part of Gephi.
804+
805+Gephi is free software: you can redistribute it and/or modify
806+it under the terms of the GNU Affero General Public License as
807+published by the Free Software Foundation, either version 3 of the
808+License, or (at your option) any later version.
809+
810+Gephi is distributed in the hope that it will be useful,
811+but WITHOUT ANY WARRANTY; without even the implied warranty of
812+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
813+GNU Affero General Public License for more details.
814+
815+You should have received a copy of the GNU Affero General Public License
816+along with Gephi. If not, see <http://www.gnu.org/licenses/>.
817+*/
818+
819 package org.gephi.visualization.swing;
820
821 import com.sun.opengl.util.BufferUtil;
822
823=== modified file 'change_license.sh'
824--- change_license.sh 2011-04-05 11:44:27 +0000
825+++ change_license.sh 2011-04-10 10:41:30 +0000
826@@ -1,5 +1,24 @@
827 #!/bin/bash
828
829+# Copyright 2008-2010 Gephi
830+# Website : http://www.gephi.org
831+#
832+# This file is part of Gephi.
833+#
834+# Gephi is free software: you can redistribute it and/or modify
835+# it under the terms of the GNU Affero General Public License as
836+# published by the Free Software Foundation, either version 3 of the
837+# License, or (at your option) any later version.
838+#
839+# Gephi is distributed in the hope that it will be useful,
840+# but WITHOUT ANY WARRANTY; without even the implied warranty of
841+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
842+# GNU Affero General Public License for more details.
843+#
844+# You should have received a copy of the GNU Affero General Public License
845+# along with Gephi. If not, see <http://www.gnu.org/licenses/>.
846+
847+
848 #
849 # Edit all project.properties contained in modules.
850 #
851
852=== modified file 'copykeystore.py'
853--- copykeystore.py 2011-04-05 11:44:27 +0000
854+++ copykeystore.py 2011-04-10 10:41:30 +0000
855@@ -1,3 +1,21 @@
856+# Copyright 2008-2010 Gephi
857+# Website : http://www.gephi.org
858+#
859+# This file is part of Gephi.
860+#
861+# Gephi is free software: you can redistribute it and/or modify
862+# it under the terms of the GNU Affero General Public License as
863+# published by the Free Software Foundation, either version 3 of the
864+# License, or (at your option) any later version.
865+#
866+# Gephi is distributed in the hope that it will be useful,
867+# but WITHOUT ANY WARRANTY; without even the implied warranty of
868+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
869+# GNU Affero General Public License for more details.
870+#
871+# You should have received a copy of the GNU Affero General Public License
872+# along with Gephi. If not, see <http://www.gnu.org/licenses/>.
873+
874 import os.path
875 import sys
876
877@@ -28,4 +46,4 @@
878 f = open(private_dir + "/private.properties", 'w')
879 f.write("storepass=" + passphrase)
880 f.close()
881-project.close()
882\ No newline at end of file
883+project.close()
884
885=== modified file 'po2properties.sh'
886--- po2properties.sh 2011-04-05 11:44:27 +0000
887+++ po2properties.sh 2011-04-10 10:41:30 +0000
888@@ -1,4 +1,23 @@
889 #!/bin/bash
890+
891+# Copyright 2008-2010 Gephi
892+# Website : http://www.gephi.org
893+#
894+# This file is part of Gephi.
895+#
896+# Gephi is free software: you can redistribute it and/or modify
897+# it under the terms of the GNU Affero General Public License as
898+# published by the Free Software Foundation, either version 3 of the
899+# License, or (at your option) any later version.
900+#
901+# Gephi is distributed in the hope that it will be useful,
902+# but WITHOUT ANY WARRANTY; without even the implied warranty of
903+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
904+# GNU Affero General Public License for more details.
905+#
906+# You should have received a copy of the GNU Affero General Public License
907+# along with Gephi. If not, see <http://www.gnu.org/licenses/>.
908+
909 ROOT=`pwd`
910
911 function RecurseDirs
912
913=== modified file 'properties2pot.sh'
914--- properties2pot.sh 2011-04-05 11:44:27 +0000
915+++ properties2pot.sh 2011-04-10 10:41:30 +0000
916@@ -1,4 +1,23 @@
917 #!/bin/bash
918+
919+# Copyright 2008-2010 Gephi
920+# Website : http://www.gephi.org
921+#
922+# This file is part of Gephi.
923+#
924+# Gephi is free software: you can redistribute it and/or modify
925+# it under the terms of the GNU Affero General Public License as
926+# published by the Free Software Foundation, either version 3 of the
927+# License, or (at your option) any later version.
928+#
929+# Gephi is distributed in the hope that it will be useful,
930+# but WITHOUT ANY WARRANTY; without even the implied warranty of
931+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
932+# GNU Affero General Public License for more details.
933+#
934+# You should have received a copy of the GNU Affero General Public License
935+# along with Gephi. If not, see <http://www.gnu.org/licenses/>.
936+
937 ROOT=`pwd`
938
939 function RecurseDirs

Subscribers

People subscribed via source and target branches