forked from graphstream/gs-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Changelog-1.0-1.1
2245 lines (1753 loc) · 81 KB
/
Changelog-1.0-1.1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
commit c6cdc44
Author: gsavin <[email protected]>
Date: 2011-11-10
Add new developer and contributor in pom. Update some informations.
pom.xml
commit 128f0b5
Author: gsavin <[email protected]>
Date: 2011-11-10
Fix a bug in DGSParser when using nextStep()
src/org/graphstream/stream/file/dgs/DGSParser.java
commit 9107e60
Author: gsavin <[email protected]>
Date: 2011-11-10
Fix bugs in sink/source DOT
src/org/graphstream/stream/file/FileSinkDOT.java
src/org/graphstream/stream/file/dot/DOTParser.java
src/org/graphstream/stream/file/dot/DOTParser.jj
commit f44316a
Merge: b1118ed 8d7d5c9
Author: gsavin <[email protected]>
Date: 2011-11-10
Merge branch 'master' of github.com:graphstream/gs-core
commit b1118ed
Author: gsavin <[email protected]>
Date: 2011-11-10
Use the new dgs parser. Old one is moved to org.graphstream.stream.file.dgs.oldFileSourceDGS. This fix #13
src-test/org/graphstream/stream/file/test/TestFileSourceDGS.java
src/org/graphstream/stream/file/FileSinkImages.java
src/org/graphstream/stream/file/FileSourceBase.java
src/org/graphstream/stream/file/FileSourceDGS.java
src/org/graphstream/stream/file/FileSourceDGS1And2.java
src/org/graphstream/stream/file/dgs/DGSParser.java
src/org/graphstream/stream/file/dgs/FileSourceDGS.java
src/org/graphstream/stream/file/dgs/OldFileSourceDGS.java
commit 8d7d5c9
Author: Stefan Balev <[email protected]>
Date: 2011-11-10
Removed unused imports
src/org/graphstream/ui/graphicGraph/GraphicElement.java
commit 611fecb
Author: gsavin <[email protected]>
Date: 2011-11-10
Improve file source parser
src/org/graphstream/stream/file/FileSourceParser.java
commit f8ef5ca
Author: gsavin <[email protected]>
Date: 2011-11-10
Fix #40
src/org/graphstream/stream/file/dot/DOTParser.java
src/org/graphstream/stream/file/dot/DOTParser.jj
src/org/graphstream/stream/file/dot/DOTParserConstants.java
src/org/graphstream/stream/file/dot/DOTParserTokenManager.java
commit 733b0f5
Author: gsavin <[email protected]>
Date: 2011-11-10
Fix #39
src/org/graphstream/stream/file/gml/GMLContext.java
src/org/graphstream/stream/file/gml/GMLParser.java
src/org/graphstream/stream/file/gml/GMLParser.jj
src/org/graphstream/stream/file/gml/GMLParserConstants.java
src/org/graphstream/stream/file/gml/GMLParserTokenManager.java
commit 550bb55
Author: gsavin <[email protected]>
Date: 2011-11-09
Update licence preamble
pom.xml
src-test/org/graphstream/graph/test/TestElement.java
src-test/org/graphstream/graph/test/TestGenericity.java
src-test/org/graphstream/graph/test/TestGraph.java
src-test/org/graphstream/graph/test/TestGraphSynchronisation.java
src-test/org/graphstream/graph/test/TestPerformance.java
src-test/org/graphstream/stream/file/gml/test/TestSinkGML.java
src-test/org/graphstream/stream/file/gml/test/TestSourceGML.java
src-test/org/graphstream/stream/file/pajek/test/TestPajekParser.java
src-test/org/graphstream/stream/file/test/TestFileSinkBase.java
src-test/org/graphstream/stream/file/test/TestFileSinkDGS.java
src-test/org/graphstream/stream/file/test/TestFileSinkDOT.java
src-test/org/graphstream/stream/file/test/TestFileSourceBase.java
src-test/org/graphstream/stream/file/test/TestFileSourceDGS.java
src-test/org/graphstream/stream/file/test/TestFileSourceDOT.java
src-test/org/graphstream/stream/file/test/TestFileSourceEdge.java
src-test/org/graphstream/stream/file/test/TestFileSourceGEXF.java
src-test/org/graphstream/stream/file/test/TestFileSourceGML.java
src-test/org/graphstream/stream/net/test/TestRMI.java
src-test/org/graphstream/stream/sync/TestSync.java
src-test/org/graphstream/stream/thread/test/TestThreadProxyPipe.java
src-test/org/graphstream/ui/graphicGraph/parser/test/TestStyleSheet.java
src-test/org/graphstream/ui/graphicGraph/test/TestGraphSynchronisationProxyThread.java
src-test/org/graphstream/ui/graphicGraph/test/TestGraphicGraph.java
src-test/org/graphstream/ui/viewer/test/AllInSwing.java
src-test/org/graphstream/ui/viewer/test/TestLayoutAndViewer.java
src-test/org/graphstream/ui/viewer/test/TestTwoGraphsInOneViewer.java
src-test/org/graphstream/ui/viewer/test/TestViewerColorInterpolation.java
src-test/org/graphstream/ui/viewer/test/TestViewerJComponents.java
src-test/org/graphstream/util/test/TestEnvironment.java
src-test/org/graphstream/util/test/TestRandom.java
src/org/graphstream/graph/BreadthFirstIterator.java
src/org/graphstream/graph/CompoundAttribute.java
src/org/graphstream/graph/DepthFirstIterator.java
src/org/graphstream/graph/Edge.java
src/org/graphstream/graph/EdgeFactory.java
src/org/graphstream/graph/EdgeRejectedException.java
src/org/graphstream/graph/Element.java
src/org/graphstream/graph/ElementNotFoundException.java
src/org/graphstream/graph/Graph.java
src/org/graphstream/graph/GraphFactory.java
src/org/graphstream/graph/IdAlreadyInUseException.java
src/org/graphstream/graph/Node.java
src/org/graphstream/graph/NodeFactory.java
src/org/graphstream/graph/NullAttributeException.java
src/org/graphstream/graph/Path.java
src/org/graphstream/graph/implementations/AbstractEdge.java
src/org/graphstream/graph/implementations/AbstractElement.java
src/org/graphstream/graph/implementations/AbstractGraph.java
src/org/graphstream/graph/implementations/AbstractNode.java
src/org/graphstream/graph/implementations/AdjacencyListGraph.java
src/org/graphstream/graph/implementations/AdjacencyListNode.java
src/org/graphstream/graph/implementations/DefaultGraph.java
src/org/graphstream/graph/implementations/Graphs.java
src/org/graphstream/graph/implementations/MultiGraph.java
src/org/graphstream/graph/implementations/MultiNode.java
src/org/graphstream/graph/implementations/OneAttributeElement.java
src/org/graphstream/graph/implementations/SingleGraph.java
src/org/graphstream/graph/implementations/SingleNode.java
src/org/graphstream/graph/implementations/package-info.java
src/org/graphstream/graph/package-info.java
src/org/graphstream/stream/AttributePipe.java
src/org/graphstream/stream/AttributePredicate.java
src/org/graphstream/stream/AttributeSink.java
src/org/graphstream/stream/ElementSink.java
src/org/graphstream/stream/GraphParseException.java
src/org/graphstream/stream/GraphReplay.java
src/org/graphstream/stream/Pipe.java
src/org/graphstream/stream/PipeAdapter.java
src/org/graphstream/stream/PipeBase.java
src/org/graphstream/stream/ProxyPipe.java
src/org/graphstream/stream/Sink.java
src/org/graphstream/stream/SinkAdapter.java
src/org/graphstream/stream/Source.java
src/org/graphstream/stream/SourceAdapter.java
src/org/graphstream/stream/SourceBase.java
src/org/graphstream/stream/file/FileSink.java
src/org/graphstream/stream/file/FileSinkBase.java
src/org/graphstream/stream/file/FileSinkDGS.java
src/org/graphstream/stream/file/FileSinkDOT.java
src/org/graphstream/stream/file/FileSinkDynamicGML.java
src/org/graphstream/stream/file/FileSinkFactory.java
src/org/graphstream/stream/file/FileSinkGML.java
src/org/graphstream/stream/file/FileSinkImages.java
src/org/graphstream/stream/file/FileSinkSVG.java
src/org/graphstream/stream/file/FileSinkSWF.java
src/org/graphstream/stream/file/FileSinkTikZ.java
src/org/graphstream/stream/file/FileSource.java
src/org/graphstream/stream/file/FileSourceBase.java
src/org/graphstream/stream/file/FileSourceDGS.java
src/org/graphstream/stream/file/FileSourceDGS1And2.java
src/org/graphstream/stream/file/FileSourceDOT.java
src/org/graphstream/stream/file/FileSourceEdge.java
src/org/graphstream/stream/file/FileSourceFactory.java
src/org/graphstream/stream/file/FileSourceGEXF.java
src/org/graphstream/stream/file/FileSourceGML.java
src/org/graphstream/stream/file/FileSourceGraphML.java
src/org/graphstream/stream/file/FileSourceLGL.java
src/org/graphstream/stream/file/FileSourceNCol.java
src/org/graphstream/stream/file/FileSourcePajek.java
src/org/graphstream/stream/file/FileSourceParser.java
src/org/graphstream/stream/file/FileSourceTLP.java
src/org/graphstream/stream/file/FileSourceXML.java
src/org/graphstream/stream/file/dgs/DGSParser.java
src/org/graphstream/stream/file/dgs/FileSourceDGS.java
src/org/graphstream/stream/file/dot/DOTParser.java
src/org/graphstream/stream/file/dot/DOTParserConstants.java
src/org/graphstream/stream/file/dot/DOTParserTokenManager.java
src/org/graphstream/stream/file/gml/GMLContext.java
src/org/graphstream/stream/file/gml/GMLParser.java
src/org/graphstream/stream/file/gml/GMLParser.jj
src/org/graphstream/stream/file/gml/GMLParserConstants.java
src/org/graphstream/stream/file/gml/GMLParserTokenManager.java
src/org/graphstream/stream/file/pajek/PajekContext.java
src/org/graphstream/stream/file/pajek/PajekParser.java
src/org/graphstream/stream/file/pajek/PajekParserConstants.java
src/org/graphstream/stream/file/pajek/PajekParserTokenManager.java
src/org/graphstream/stream/file/tlp/TLPParser.java
src/org/graphstream/stream/file/tlp/TLPParserConstants.java
src/org/graphstream/stream/file/tlp/TLPParserTokenManager.java
src/org/graphstream/stream/net/HTTPSource.java
src/org/graphstream/stream/net/URLSource.java
src/org/graphstream/stream/package-info.java
src/org/graphstream/stream/rmi/RMIAdapterIn.java
src/org/graphstream/stream/rmi/RMIAdapterOut.java
src/org/graphstream/stream/rmi/RMISink.java
src/org/graphstream/stream/rmi/RMISource.java
src/org/graphstream/stream/sync/SinkTime.java
src/org/graphstream/stream/sync/SourceTime.java
src/org/graphstream/stream/thread/ThreadProxyPipe.java
src/org/graphstream/ui/geom/Bounds3.java
src/org/graphstream/ui/geom/Box2.java
src/org/graphstream/ui/geom/Box3.java
src/org/graphstream/ui/geom/InterpolatedFloat.java
src/org/graphstream/ui/geom/Point2.java
src/org/graphstream/ui/geom/Point3.java
src/org/graphstream/ui/geom/Vector2.java
src/org/graphstream/ui/geom/Vector3.java
src/org/graphstream/ui/graphicGraph/GraphPosLengthUtils.java
src/org/graphstream/ui/graphicGraph/GraphicEdge.java
src/org/graphstream/ui/graphicGraph/GraphicElement.java
src/org/graphstream/ui/graphicGraph/GraphicElementChangeListener.java
src/org/graphstream/ui/graphicGraph/GraphicGraph.java
src/org/graphstream/ui/graphicGraph/GraphicNode.java
src/org/graphstream/ui/graphicGraph/GraphicSprite.java
src/org/graphstream/ui/graphicGraph/StyleGroup.java
src/org/graphstream/ui/graphicGraph/StyleGroupListener.java
src/org/graphstream/ui/graphicGraph/StyleGroupSet.java
src/org/graphstream/ui/graphicGraph/package-info.java
src/org/graphstream/ui/graphicGraph/stylesheet/Colors.java
src/org/graphstream/ui/graphicGraph/stylesheet/Rule.java
src/org/graphstream/ui/graphicGraph/stylesheet/Selector.java
src/org/graphstream/ui/graphicGraph/stylesheet/Style.java
src/org/graphstream/ui/graphicGraph/stylesheet/StyleConstants.java
src/org/graphstream/ui/graphicGraph/stylesheet/StyleSheet.java
src/org/graphstream/ui/graphicGraph/stylesheet/StyleSheetListener.java
src/org/graphstream/ui/graphicGraph/stylesheet/Value.java
src/org/graphstream/ui/graphicGraph/stylesheet/Values.java
src/org/graphstream/ui/graphicGraph/stylesheet/package-info.java
src/org/graphstream/ui/graphicGraph/stylesheet/parser/StyleSheetParser.java
src/org/graphstream/ui/graphicGraph/stylesheet/parser/StyleSheetParserConstants.java
src/org/graphstream/ui/graphicGraph/stylesheet/parser/StyleSheetParserTokenManager.java
src/org/graphstream/ui/graphicGraph/stylesheet/parser/package-info.java
src/org/graphstream/ui/layout/Layout.java
src/org/graphstream/ui/layout/LayoutListener.java
src/org/graphstream/ui/layout/LayoutRunner.java
src/org/graphstream/ui/layout/Layouts.java
src/org/graphstream/ui/layout/package-info.java
src/org/graphstream/ui/layout/springbox/EdgeSpring.java
src/org/graphstream/ui/layout/springbox/Energies.java
src/org/graphstream/ui/layout/springbox/NodeParticle.java
src/org/graphstream/ui/layout/springbox/SpringBox.java
src/org/graphstream/ui/spriteManager/Sprite.java
src/org/graphstream/ui/spriteManager/SpriteFactory.java
src/org/graphstream/ui/spriteManager/SpriteManager.java
src/org/graphstream/ui/swingViewer/DefaultView.java
src/org/graphstream/ui/swingViewer/GraphRenderer.java
src/org/graphstream/ui/swingViewer/GraphRendererBase.java
src/org/graphstream/ui/swingViewer/LayerRenderer.java
src/org/graphstream/ui/swingViewer/Selection.java
src/org/graphstream/ui/swingViewer/View.java
src/org/graphstream/ui/swingViewer/Viewer.java
src/org/graphstream/ui/swingViewer/ViewerListener.java
src/org/graphstream/ui/swingViewer/ViewerPipe.java
src/org/graphstream/ui/swingViewer/basicRenderer/EdgeRenderer.java
src/org/graphstream/ui/swingViewer/basicRenderer/ElementRenderer.java
src/org/graphstream/ui/swingViewer/basicRenderer/NodeRenderer.java
src/org/graphstream/ui/swingViewer/basicRenderer/SpriteRenderer.java
src/org/graphstream/ui/swingViewer/basicRenderer/SwingBasicGraphRenderer.java
src/org/graphstream/ui/swingViewer/basicRenderer/shapes/Arrow.java
src/org/graphstream/ui/swingViewer/basicRenderer/shapes/Shape.java
src/org/graphstream/ui/swingViewer/util/Camera.java
src/org/graphstream/ui/swingViewer/util/CubicCurve.java
src/org/graphstream/ui/swingViewer/util/DefaultCamera.java
src/org/graphstream/ui/swingViewer/util/FontCache.java
src/org/graphstream/ui/swingViewer/util/FpsCounter.java
src/org/graphstream/ui/swingViewer/util/GradientFactory.java
src/org/graphstream/ui/swingViewer/util/GraphMetrics.java
src/org/graphstream/ui/swingViewer/util/ImageCache.java
src/org/graphstream/ui/swingViewer/util/MouseManager.java
src/org/graphstream/ui/swingViewer/util/ShortcutManager.java
src/org/graphstream/ui/swingViewer/util/StrokeFactory.java
src/org/graphstream/util/Environment.java
src/org/graphstream/util/InterpolatedFloat.java
src/org/graphstream/util/InvalidArgumentException.java
src/org/graphstream/util/InvalidIndexException.java
src/org/graphstream/util/InvalidOperationException.java
src/org/graphstream/util/Logger.java
src/org/graphstream/util/Mem.java
src/org/graphstream/util/NotFoundException.java
src/org/graphstream/util/Random.java
src/org/graphstream/util/SingletonException.java
src/org/graphstream/util/Stopwatch.java
src/org/graphstream/util/TextParserBase.java
src/org/graphstream/util/geom/Bounds3.java
src/org/graphstream/util/geom/Box2.java
src/org/graphstream/util/geom/Box3.java
src/org/graphstream/util/geom/Locator.java
src/org/graphstream/util/geom/Matrix4.java
src/org/graphstream/util/geom/Point2.java
src/org/graphstream/util/geom/Point3.java
src/org/graphstream/util/geom/Point4.java
src/org/graphstream/util/geom/Rectangle.java
src/org/graphstream/util/geom/Vector2.java
src/org/graphstream/util/geom/Vector3.java
src/org/graphstream/util/geom/Vector4.java
src/org/graphstream/util/parser/ParseException.java
src/org/graphstream/util/parser/Parser.java
src/org/graphstream/util/parser/ParserFactory.java
src/org/graphstream/util/parser/SimpleCharStream.java
src/org/graphstream/util/parser/Token.java
src/org/graphstream/util/parser/TokenMgrError.java
src/org/graphstream/util/set/Array.java
src/org/graphstream/util/set/ByteArray.java
src/org/graphstream/util/set/CharArray.java
src/org/graphstream/util/set/ConstMap.java
src/org/graphstream/util/set/DoubleArray.java
src/org/graphstream/util/set/FixedArrayList.java
src/org/graphstream/util/set/FixedIntArrayList.java
src/org/graphstream/util/set/FloatArray.java
src/org/graphstream/util/set/IntArray.java
src/org/graphstream/util/set/InvalidIndexException.java
src/org/graphstream/util/set/LongArray.java
src/org/graphstream/util/set/ShortArray.java
src/org/graphstream/util/set/WindowArray.java
src/org/graphstream/util/time/ISODateComponent.java
src/org/graphstream/util/time/ISODateIO.java
src/org/graphstream/util/ui/MemoryMonitor.java
commit 5b68dfb
Author: Ant01n3 <[email protected]>
Date: 2011-11-07
Bug correction: avoid negative GraphicGraph bounds.
src/org/graphstream/ui/graphicGraph/GraphicGraph.java
commit c97513e
Author: Ant01n3 <[email protected]>
Date: 2011-11-02
Little changes in GraphicElement.
src/org/graphstream/ui/graphicGraph/GraphicElement.java
commit ff7242b
Author: Ant01n3 <[email protected]>
Date: 2011-11-02
Some small optimizations and cleanup in the UI part.
src/org/graphstream/ui/graphicGraph/GraphicElement.java
src/org/graphstream/ui/swingViewer/basicRenderer/ElementRenderer.java
src/org/graphstream/ui/swingViewer/util/Camera.java
src/org/graphstream/ui/swingViewer/util/DefaultCamera.java
commit 9e3726e
Author: Ant01n3 <[email protected]>
Date: 2011-11-01
Added a FPS logger in the basic renderer and update the HowItWorks files in UI.
The "HowItWorks" files in UI are now in markdown format, and are
updated.
Also added a FPS log file that can be activated for the basic Swing
renderer when the "ui.log" attribute is put on the graph with a file
name as a value.
src/org/graphstream/ui/graphicGraph/GraphicGraph.java
src/org/graphstream/ui/graphicGraph/HowItWorks.mkd
src/org/graphstream/ui/graphicGraph/stylesheet/HowItWorks.mkd
src/org/graphstream/ui/swingViewer/basicRenderer/SwingBasicGraphRenderer.java
commit bc3f2d4
Author: Ant01n3 <[email protected]>
Date: 2011-10-31
Added stroke-mode:double and updated UI doc in mkd format.
src/org/graphstream/ui/graphicGraph/HowItWorks
src/org/graphstream/ui/graphicGraph/HowItWorks.mkd
src/org/graphstream/ui/graphicGraph/stylesheet/HowItWorks
src/org/graphstream/ui/graphicGraph/stylesheet/HowItWorks.mkd
src/org/graphstream/ui/graphicGraph/stylesheet/StyleConstants.java
src/org/graphstream/ui/graphicGraph/stylesheet/parser/StyleSheetParser.java
src/org/graphstream/ui/graphicGraph/stylesheet/parser/StyleSheetParser.jj
src/org/graphstream/ui/graphicGraph/stylesheet/parser/StyleSheetParserConstants.java
src/org/graphstream/ui/graphicGraph/stylesheet/parser/StyleSheetParserTokenManager.java
commit 5051fc1
Merge: 1f9120d d751ddc
Author: Ant01n3 <[email protected]>
Date: 2011-10-29
Merge branch 'camera'
commit d751ddc
Author: Ant01n3 <[email protected]>
Date: 2011-10-29
Changed the Camera.transform() and inverseTransform() to transformGuToPx() and transformPxToGu() resp.
For clarity.
src/org/graphstream/ui/swingViewer/basicRenderer/ElementRenderer.java
src/org/graphstream/ui/swingViewer/basicRenderer/SwingBasicGraphRenderer.java
src/org/graphstream/ui/swingViewer/util/Camera.java
src/org/graphstream/ui/swingViewer/util/DefaultCamera.java
commit 1f9120d
Author: Stefan Balev <[email protected]>
Date: 2011-10-26
Javadoc
src/org/graphstream/graph/Graph.java
src/org/graphstream/graph/Node.java
commit 590b3f0
Author: Ant01n3 <[email protected]>
Date: 2011-10-26
Modified the Camera.transform and .inverseTransform.
They now return a Point3 to be compatible with 3D renderers. The
transform() operation consequently takes 3 parameters instead of 2.
src/org/graphstream/ui/swingViewer/basicRenderer/ElementRenderer.java
src/org/graphstream/ui/swingViewer/basicRenderer/SwingBasicGraphRenderer.java
src/org/graphstream/ui/swingViewer/util/Camera.java
src/org/graphstream/ui/swingViewer/util/DefaultCamera.java
commit 3e0ac0f
Author: Ant01n3 <[email protected]>
Date: 2011-10-26
Documented the Viewer.enableXYZfeedback() method.
src/org/graphstream/ui/swingViewer/Viewer.java
commit ec518d9
Author: Stefan Balev <[email protected]>
Date: 2011-10-26
Bug fix
src/org/graphstream/graph/implementations/AdjacencyListNode.java
commit 49b5e5f
Author: Ant01n3 <[email protected]>
Date: 2011-10-19
GraphPosLengthUtils.nodePosition(Node,Point3) is now correct.
It was incompletely implemented compared to nodePosition(Node,Double[]).
src/org/graphstream/ui/graphicGraph/GraphPosLengthUtils.java
commit c8e104a
Author: gsavin <[email protected]>
Date: 2011-10-19
Fix #38
src/org/graphstream/graph/implementations/AbstractGraph.java
commit b1a8adc
Author: gsavin <[email protected]>
Date: 2011-10-14
Minor
src/org/graphstream/ui/swingViewer/util/DefaultCamera.java
commit 9d6ab13
Author: gsavin <[email protected]>
Date: 2011-10-13
Add some missing changes
src/org/graphstream/ui/swingViewer/util/Camera.java
commit 102d2e3
Author: gsavin <[email protected]>
Date: 2011-10-13
Add some missing changes
src/org/graphstream/ui/swingViewer/basicRenderer/EdgeRenderer.java
src/org/graphstream/ui/swingViewer/basicRenderer/ElementRenderer.java
src/org/graphstream/ui/swingViewer/basicRenderer/NodeRenderer.java
src/org/graphstream/ui/swingViewer/basicRenderer/SpriteRenderer.java
commit b2c63fd
Author: gsavin <[email protected]>
Date: 2011-10-12
Add the new Camera interface
src/org/graphstream/stream/file/FileSinkImages.java
src/org/graphstream/ui/swingViewer/DefaultView.java
src/org/graphstream/ui/swingViewer/GraphRenderer.java
src/org/graphstream/ui/swingViewer/View.java
src/org/graphstream/ui/swingViewer/Viewer.java
src/org/graphstream/ui/swingViewer/basicRenderer/SwingBasicGraphRenderer.java
src/org/graphstream/ui/swingViewer/util/Camera.java
src/org/graphstream/ui/swingViewer/util/DefaultCamera.java
src/org/graphstream/ui/swingViewer/util/ShortcutManager.java
commit 3e554d3
Author: gsavin <[email protected]>
Date: 2011-10-12
Various fixes/improvements
COPYING
src/org/graphstream/stream/file/FileSourceGEXF.java
src/org/graphstream/stream/file/FileSourceParser.java
src/org/graphstream/stream/file/dgs/DGSParser.java
src/org/graphstream/stream/file/dgs/FileSourceDGS.java
src/org/graphstream/stream/net/HTTPSource.java
commit dedd72e
Merge: e219460 785d195
Author: gsavin <[email protected]>
Date: 2011-10-06
Merge branch 'master' of github.com:graphstream/gs-core
commit 785d195
Merge: 98921d3 d740e51
Author: Stefan Balev <[email protected]>
Date: 2011-10-06
Merge branch 'master' of github.com:graphstream/gs-core
commit 98921d3
Author: Stefan Balev <[email protected]>
Date: 2011-10-06
Bug fix in SingleGraph. If edge A->B existed, it did not accept to add edge
B->A. Now it works but the price is slightly bigger memory footprint.
src-test/org/graphstream/graph/test/TestPerformance.java
src/org/graphstream/graph/Graph.java
src/org/graphstream/graph/implementations/SingleNode.java
commit e219460
Author: gsavin <[email protected]>
Date: 2011-10-06
Add test for gexf source
src-test/org/graphstream/stream/file/test/TestFileSourceGEXF.java
src-test/org/graphstream/stream/file/test/data/basic.gexf
src-test/org/graphstream/stream/file/test/data/data.gexf
commit d740e51
Author: Guilhelm Savin <[email protected]>
Date: 2011-10-05
Edited README.md via GitHub
README.md
commit d28c551
Author: gsavin <[email protected]>
Date: 2011-10-04
New DGS parser, not yet enable. New feature in dgs sink to export color. New utils used by dgs for new features in the next release ! Be patient :)
src/org/graphstream/stream/file/FileSinkDGS.java
src/org/graphstream/stream/file/dgs/DGSParser.java
src/org/graphstream/stream/file/dgs/FileSourceDGS.java
src/org/graphstream/util/time/ISODateComponent.java
src/org/graphstream/util/time/ISODateIO.java
commit 1460336
Author: Ant01n3 <[email protected]>
Date: 2011-10-04
The CSS parser did not issued errors for some invalid ui.style values.
When using ui.style, the parser was started using the "style" rule, not
the "start" rule that parses a whole stylesheet. The "style" rule
stops when the thing it reads is not a style property, and merely
ignore (does not recognize) the remaining parts of the things to
parse.
Added a "styleStart" rule that expect <EOF> at the end, so that
if something unknown is encountered, the parser emit an error.
src/org/graphstream/ui/graphicGraph/stylesheet/StyleSheet.java
src/org/graphstream/ui/graphicGraph/stylesheet/parser/StyleSheetParser.java
src/org/graphstream/ui/graphicGraph/stylesheet/parser/StyleSheetParser.jj
src/org/graphstream/ui/graphicGraph/stylesheet/parser/StyleSheetParserTokenManager.java
commit acc05c5
Author: Ant01n3 <[email protected]>
Date: 2011-10-04
Sprites modifications did not triggered a redisplay.
Changed.
src/org/graphstream/ui/graphicGraph/GraphicGraph.java
commit 9d30815
Author: Ant01n3 <[email protected]>
Date: 2011-10-04
Corrected a bug preventing sprites to appear if Graph.display() was called after their creation.
A subtle bug: when display is called late and the graph is already
created, with some sprites, the graph is "replayed" with all its
attributes.
Sprites are always stored as attributes on the graph. There is an
attribute that created the sprite, and as many attributes as needed for
each sprite own attributes. They all are stored in the graph.
However, attributes are replayed in an arbitrary order, therefore
attributes specifying that sprites must appear, and attributes
specifying the sprites own attributes may come in any order, if a change
of an attribute on sprites was occuring before the sprite creation was
encountered, it was ignored. This is no more the case.
src/org/graphstream/ui/graphicGraph/GraphicGraph.java
commit 685171f
Author: Stefan Balev <[email protected]>
Date: 2011-09-29
Added getEnteringEdge(int) and getLeavingEdge(int) to Node interface.
src/org/graphstream/graph/Graph.java
src/org/graphstream/graph/Node.java
src/org/graphstream/graph/implementations/AbstractNode.java
src/org/graphstream/graph/implementations/AdjacencyListNode.java
src/org/graphstream/graph/implementations/Graphs.java
src/org/graphstream/ui/graphicGraph/GraphicNode.java
commit f0001c7
Author: Ant01n3 <[email protected]>
Date: 2011-09-28
Added entries in .gitignore.
Is this good practice to share the .gitignore ???
.gitignore
commit 9c18abc
Merge: afd288b 30a1c6e
Author: Ant01n3 <[email protected]>
Date: 2011-09-28
Merge branch 'master' of git+ssh://github.com/graphstream/gs-core
commit afd288b
Author: Ant01n3 <[email protected]>
Date: 2011-09-28
Added exceptions in GraphicGraph and a usage warning.
src/org/graphstream/ui/graphicGraph/GraphicGraph.java
commit 30a1c6e
Author: gsavin <[email protected]>
Date: 2011-09-21
Remove DEBUG features.
src/org/graphstream/stream/file/FileSourceGEXF.java
commit ce63b5d
Author: gsavin <[email protected]>
Date: 2011-09-21
Add support for reading GEXF files.
src/org/graphstream/stream/file/FileSourceGEXF.java
src/org/graphstream/stream/file/FileSourceXML.java
commit 909caca
Merge: 68664e2 0a24d4d
Author: Guilhelm Savin <[email protected]>
Date: 2011-09-19
Merge pull request #35 from rlegendi/master
Minor corrections
commit 68664e2
Author: Antoine Dutot <[email protected]>
Date: 2011-09-16
Fix #37
src/org/graphstream/ui/geom/Locator.java
src/org/graphstream/ui/geom/Matrix4.java
src/org/graphstream/ui/geom/Vector2.java
src/org/graphstream/ui/geom/Vector3.java
commit 0a24d4d
Author: Richard O. Legendi <[email protected]>
Date: 2011-09-15
See comment of commit #18bb0719be9aecae829eb80c7bee3396fc592bd3.
src/org/graphstream/ui/geom/Box3.java
src/org/graphstream/util/geom/Box3.java
commit 45192bf
Author: Richard O. Legendi <[email protected]>
Date: 2011-09-15
Ain't sure if it is used, but invoking `clone()` on an instance that does
not implement the `Cloneable` interface results in the exception
`CloneNotSupportedException` being thrown.
PoC code:
class CT {
@Override
protected Object clone()
throws CloneNotSupportedException {
return super.clone();
}
}
public class Test {
public static void main(String[] args)
throws CloneNotSupportedException {
new CT().clone();
}
}
src/org/graphstream/util/Environment.java
commit 688a2fb
Author: Richard O. Legendi <[email protected]>
Date: 2011-09-15
Guess this is sort of a copy & paste issue :-)
See description of commit #27b734997a421fe84c52e5d6a37d6b474c5ea0cb.
src/org/graphstream/ui/spriteManager/SpriteManager.java
commit aac3281
Author: Richard O. Legendi <[email protected]>
Date: 2011-09-15
Variable `values` is an array here, using `%s` formatting wouldn't show
much.
src/org/graphstream/ui/graphicGraph/GraphicGraph.java
commit 27b7349
Author: Richard O. Legendi <[email protected]>
Date: 2011-09-15
Fixed a `ClassCastException` in a specific case.
Ain't sure if I got it right, but I think `value` should have been
`values[0]` here (as the condition verifie).
src/org/graphstream/ui/graphicGraph/GraphicGraph.java
commit 3c99841
Author: Richard O. Legendi <[email protected]>
Date: 2011-09-15
Fixed typo.
src/org/graphstream/ui/geom/Vector2.java
commit 18bb071
Author: Richard O. Legendi <[email protected]>
Date: 2011-09-15
tostring()?
I think its a typo, right? I made a search for references in the project
but haven't found any (hope there are no cross-references from the other
projects).
I've added the @Override annotations too.
src/org/graphstream/ui/geom/Box2.java
src/org/graphstream/util/geom/Box2.java
commit 61e0810
Author: Richard O. Legendi <[email protected]>
Date: 2011-09-15
Fixed error reporting issue.
If there's an error the system reports something like
`[Ljava.lang.String;@4830c221` (since `parameter` word is handled as an
array).
src/org/graphstream/stream/file/FileSourceBase.java
commit e35efed
Author: Richard O. Legendi <[email protected]>
Date: 2011-09-15
Fixed typo.
src/org/graphstream/stream/file/FileSourceBase.java
commit 0addbb5
Author: Richard O. Legendi <[email protected]>
Date: 2011-09-15
Fixed malformed format string (required 5 but only 4 were provided).
Hope I fixed it correctly, it was a potential runtime problem.
src/org/graphstream/graph/implementations/AbstractGraph.java
commit 73b6f1f
Author: Richard O. Legendi <[email protected]>
Date: 2011-09-15
Organized imports to reduce noise caused by warnings.
src-test/org/graphstream/graph/test/TestGenericity.java
src-test/org/graphstream/graph/test/TestGraph.java
src-test/org/graphstream/graph/test/TestPerformance.java
src-test/org/graphstream/ui/viewer/test/AllInSwing.java
src-test/org/graphstream/ui/viewer/test/TestTwoGraphsInOneViewer.java
src/org/graphstream/stream/file/FileSink.java
src/org/graphstream/ui/graphicGraph/stylesheet/Colors.java
src/org/graphstream/ui/swingViewer/DefaultView.java
src/org/graphstream/ui/swingViewer/View.java
commit 0e090ac
Author: Richard O. Legendi <[email protected]>
Date: 2011-09-15
Added a simple batch script to add required libraries to the local repository.
Ain't sure if the `util.jar` file is required, though, but I omitted it.
lib/addExternalJarsToLocalRepo.bat
commit 9269edc
Author: Richard O. Legendi <[email protected]>
Date: 2011-09-15
Extended ignore list with build directories (`bin`/`target`).
.gitignore
commit 535eb74
Author: Richard O. Legendi <[email protected]>
Date: 2011-09-15
Added a `.gitignore` file to prevent polluting your repo with IDE-based
files.
I'm using Eclipse and saw no project-specific settings in the cloned
project. Added this file just to make sure I don't add something junk
to the repo.
.gitignore
commit 33fda21
Author: Richard O. Legendi <[email protected]>
Date: 2011-09-15
Minor formatting issues.
What I modified:
- Removed unnecessary `<` and `>` (Github recognizes URLs by default so
the text is a bit nicer)
- Removed crap :-)
- Added me to the contributors list. :-)
README.md
commit 823000b
Author: Richard O. Legendi <[email protected]>
Date: 2011-09-15
Added `md` (*Markdown*) extension for the `README` file.
This is a small trick here: adding `*.md` extensions to the `README` file
makes the project home page a bit nicer because Github renders it before
displaying it.
Check it out here on my fork: https://github.com/rlegendi/gs-core
README
README.md
commit 70ec71e
Author: Stefan Balev <[email protected]>
Date: 2011-09-02
Replaced the old breadth-first and depth-first iterators
src/org/graphstream/graph/BreadthFirstIterator.java
src/org/graphstream/graph/BreadthFirstIteratorIndexed.java
src/org/graphstream/graph/DepthFirstIterator.java
src/org/graphstream/graph/DepthFirstIteratorIndexed.java
src/org/graphstream/graph/implementations/AbstractNode.java
commit a22a034
Merge: 8bdea4d e01d83f
Author: Stefan Balev <[email protected]>
Date: 2011-09-02
Merge branch 'indexed-graph'
commit e01d83f
Author: Stefan Balev <[email protected]>
Date: 2011-09-02
Replaced old graph implementations by the new ones.
src-test/org/graphstream/graph/test/TestGenericity.java
src-test/org/graphstream/graph/test/TestGraph.java
src-test/org/graphstream/graph/test/TestGraphSynchronisation.java
src-test/org/graphstream/graph/test/TestPerformance.java
src/org/graphstream/graph/implementations/ALGraph.java
src/org/graphstream/graph/implementations/ALNode.java
src/org/graphstream/graph/implementations/AdjacencyListEdge.java
src/org/graphstream/graph/implementations/AdjacencyListGraph.java
src/org/graphstream/graph/implementations/AdjacencyListNode.java
src/org/graphstream/graph/implementations/DefaultEdge.java
src/org/graphstream/graph/implementations/DefaultGraph.java
src/org/graphstream/graph/implementations/DefaultNode.java
src/org/graphstream/graph/implementations/MGraph.java
src/org/graphstream/graph/implementations/MNode.java
src/org/graphstream/graph/implementations/MultiEdge.java
src/org/graphstream/graph/implementations/MultiGraph.java
src/org/graphstream/graph/implementations/MultiNode.java
src/org/graphstream/graph/implementations/SGraph.java
src/org/graphstream/graph/implementations/SNode.java
src/org/graphstream/graph/implementations/SingleEdge.java
src/org/graphstream/graph/implementations/SingleGraph.java
src/org/graphstream/graph/implementations/SingleNode.java
src/org/graphstream/graph/implementations/ToyEdge.java
src/org/graphstream/graph/implementations/ToyGraph.java
src/org/graphstream/graph/implementations/ToyNode.java
commit 8bdea4d
Author: gsavin <[email protected]>
Date: 2011-08-25
Add a HTTP source.
src/org/graphstream/stream/net/HTTPSource.java
commit 33862c8
Author: gsavin <[email protected]>
Date: 2011-08-23
Fix bugs
src-test/org/graphstream/graph/test/TestGenericity.java
src/org/graphstream/graph/implementations/ALGraph.java
src/org/graphstream/graph/implementations/AdjacencyListNode.java
src/org/graphstream/graph/implementations/Graphs.java
commit 120b5f4
Author: gsavin <[email protected]>
Date: 2011-08-23
Add a new way to synchronize a graph instead of using ConcurrentGraph. Class 'org.graphstream.graph.implementations.Graphs' contains a method called 'synchronizedGraph(Graph)' which return a synchronized wrapper for the given graph.
src/org/graphstream/graph/implementations/AbstractConcurrentElement.java
src/org/graphstream/graph/implementations/ConcurrentEdge.java
src/org/graphstream/graph/implementations/ConcurrentGraph.java
src/org/graphstream/graph/implementations/ConcurrentNode.java
src/org/graphstream/graph/implementations/Graphs.java
commit 1c014da
Author: Stefan Balev <[email protected]>
Date: 2011-08-04
LinkedList in MNode. Consumes a bit less memory