-
Notifications
You must be signed in to change notification settings - Fork 1
/
map.mm
945 lines (940 loc) · 73.7 KB
/
map.mm
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
<map version="0.9.0">
<!--To view this file, download free mind mapping software Freeplane from http://freeplane.sourceforge.net -->
<attribute_registry SHOW_ATTRIBUTES="selected"/>
<node COLOR="#000000" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" LOCALIZED_STYLE_REF="default" FOLDED="false" ID="ID_436724964" CREATED="1369113595334" MODIFIED="1394886280390">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<richcontent TYPE="NODE">
<html>
<head>
</head>
<body>
<p style="text-align: center">
FREEPLANE
</p>
<p style="text-align: center">
feature map
</p>
</body>
</html>
</richcontent>
<font NAME="SansSerif" SIZE="12" BOLD="false" ITALIC="false"/>
<hook NAME="MapStyle" zoom="0.62">
<properties show_icon_for_attributes="true" show_note_icons="true"/>
</hook>
<node TEXT="[ map handling ]" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="120" MIN_WIDTH="120" STYLE_REF="_comment_and_structure" POSITION="right" ID="ID_40903333" CREATED="1394875410234" MODIFIED="1394904710093">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="[ view ]" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="110" MIN_WIDTH="110" STYLE_REF="_comment_and_structure" ID="ID_1112683211" CREATED="1393109660562" MODIFIED="1402655092187">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1046219652" CREATED="1394877050656" MODIFIED="1394877051171">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="filters to determine visible nodes" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_781420538" CREATED="1393109772640" MODIFIED="1394879630921">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_90574665" CREATED="1394879546328" MODIFIED="1394879547171">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="determination of visible node components (notes, details, attributes,...)" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_1522234010" CREATED="1394879547171" MODIFIED="1394879651968">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_770892960" CREATED="1394877048562" MODIFIED="1394877049593">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="hovering over folding icon previews node tree" COLOR="#ffcc33" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_in_development" ID="ID_1943382652" CREATED="1393783128687" MODIFIED="1396432309687">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
<node TEXT="v1.3.x" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1319656732" CREATED="1394885822640" MODIFIED="1394885856890">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
</node>
</node>
</node>
<node TEXT="..." COLOR="#000000" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" ID="ID_1222506527" CREATED="1393109790218" MODIFIED="1393109790875">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="false" ITALIC="false"/>
</node>
</node>
<node TEXT="[ export ]" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="110" MIN_WIDTH="110" STYLE_REF="_comment_and_structure" ID="ID_1361755184" CREATED="1393109432375" MODIFIED="1402655082625">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_361886622" CREATED="1394877422703" MODIFIED="1394877423390">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="various export formats defined by XSLT scripts" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_1893614122" CREATED="1393109482718" MODIFIED="1402655115609">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
<attribute NAME="user manual" VALUE="http://freeplane.sourceforge.net/wiki/index.php/Export_Using_XSLT"/>
<node TEXT="FreeMind v0.9 ; PDF ; HTML ; ..." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1757439871" CREATED="1393109516937" MODIFIED="1393109551609">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
</node>
<node TEXT="JAVA Applet" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_196526001" CREATED="1402657410484" MODIFIED="1402657716265">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
<attribute NAME="discussion" VALUE="http://sourceforge.net/apps/phpbb/freeplane/viewtopic.php?f=1&t=798&start=0"/>
</node>
<node TEXT="HTML" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_1138517701" CREATED="1402657720265" MODIFIED="1402657724500">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
</node>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1326208026" CREATED="1394877425093" MODIFIED="1394877425578">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="printing support ..." COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_1431073441" CREATED="1369113185234" MODIFIED="1394882532140">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_452135286" CREATED="1394882534609" MODIFIED="1394882535265">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
</node>
</node>
<node TEXT="[ presentation ]" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="110" MIN_WIDTH="110" STYLE_REF="_comment_and_structure" ID="ID_1487752875" CREATED="1393109432375" MODIFIED="1394904813859">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_663223358" CREATED="1394882534609" MODIFIED="1394882535265">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="map view presentation mode emphasizing current node" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_1703589212" CREATED="1394904784812" MODIFIED="1396266904671">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_493969492" CREATED="1394904844218" MODIFIED="1394904845000">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="presentation slide generation using mindslide" COLOR="#000000" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_concept" ID="ID_484712804" CREATED="1394904845000" MODIFIED="1402667720767">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
<attribute NAME="current version" VALUE="[ version number ]"/>
<attribute NAME="user manual" VALUE="[ here might be a link into the WIKI ]"/>
<attribute NAME="development" VALUE="[ here would be a link into the developer forum ]"/>
<attribute NAME="discussion" VALUE="http://sourceforge.net/apps/phpbb/freeplane/viewtopic.php?f=1&t=750&p=3712&hilit=mindslide#p3708"/>
<attribute NAME="discussion" VALUE="http://sourceforge.net/apps/phpbb/freeplane/viewtopic.php?f=1&t=740&start=0&hilit=mindslide"/>
<attribute NAME="discussion" VALUE="http://sourceforge.net/apps/phpbb/freeplane/viewtopic.php?f=1&t=758&start=0&hilit=mindslide"/>
<attribute NAME="developed by" VALUE="n.n."/>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1310845194" CREATED="1394904873343" MODIFIED="1394904874187">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
</node>
</node>
<node TEXT="[ collaboration ]" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="110" MIN_WIDTH="110" STYLE_REF="_comment_and_structure" ID="ID_1961372820" CREATED="1394877965656" MODIFIED="1394904640421">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_702424557" CREATED="1394878014031" MODIFIED="1394878021046">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="collaboration on maps" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_1574975776" CREATED="1394916341921" MODIFIED="1394916382312" LINK="#ID_1763069573">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
</node>
</node>
</node>
<node TEXT="[ versioning ]" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="110" MIN_WIDTH="110" STYLE_REF="_comment_and_structure" ID="ID_568337916" CREATED="1394877980750" MODIFIED="1394904640421">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1109486357" CREATED="1394882552031" MODIFIED="1394882552906">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="comparison of two maps having similar contents" COLOR="#ff0000" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_to_be_optimized" ID="ID_1389331444" CREATED="1394882559953" MODIFIED="1394882624296">
<icon BUILTIN="help"/>
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1413013666" CREATED="1394878006468" MODIFIED="1394878007734">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="" COLOR="#000000" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" ID="ID_293476644" CREATED="1394878009515" MODIFIED="1394878011953">
<icon BUILTIN="help"/>
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="false" ITALIC="false"/>
</node>
</node>
</node>
</node>
<node TEXT="[ node handling ]" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="120" MIN_WIDTH="120" STYLE_REF="_comment_and_structure" POSITION="right" ID="ID_1669222166" CREATED="1394875416281" MODIFIED="1394904710093">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="[ text content ]" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="110" MIN_WIDTH="110" STYLE_REF="_comment_and_structure" ID="ID_1953162016" CREATED="1393109578515" MODIFIED="1400608450656">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_152395310" CREATED="1394877490015" MODIFIED="1394877490703">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="definition of attributes (key and value)" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_435222263" CREATED="1393109592078" MODIFIED="1394885295265">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
<node TEXT="can be scanned e.g. by filter" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1151798030" CREATED="1393109747203" MODIFIED="1394877743859">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
</node>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_184433430" CREATED="1394877495015" MODIFIED="1394877495453">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="edit of further node detail text" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_323358596" CREATED="1369113185234" MODIFIED="1394885295265">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_284870542" CREATED="1394877593015" MODIFIED="1394877593765">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="edit of additional note text portions" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_221614910" CREATED="1394877593765" MODIFIED="1394885295265">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1967722128" CREATED="1394878117109" MODIFIED="1394878117828">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="computability of node contents using formulas" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_14138346" CREATED="1394885652203" MODIFIED="1394885663265" LINK="#ID_336138051">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_366866910" CREATED="1394877491984" MODIFIED="1394885612734">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="edit of inline LaTeX node text content" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_546009897" CREATED="1394885560578" MODIFIED="1394885570718" LINK="#ID_1264934062">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_914878137" CREATED="1394879946156" MODIFIED="1394886069359">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="computability of node contents using formulas and external node content" COLOR="#000000" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_concept" ID="ID_412140574" CREATED="1394886128734" MODIFIED="1402667720735" LINK="#ID_1009022721">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
</node>
</node>
</node>
<node TEXT="[ pictures ]" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="110" MIN_WIDTH="110" STYLE_REF="_comment_and_structure" ID="ID_1026216286" CREATED="1393109578515" MODIFIED="1400608533265">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_992239710" CREATED="1394913060203" MODIFIED="1396433397078">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="insertion of picture into core" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_260014908" CREATED="1394913061593" MODIFIED="1402654973609">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
<attribute_layout NAME_WIDTH="134" VALUE_WIDTH="74"/>
<attribute NAME="video" VALUE="https://www.youtube.com/watch?v=EE3VGoZi0s8&list=UU0G5Ad0Cn0_rHfcOz_zsZOg"/>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_731198524" CREATED="1400608602140" MODIFIED="1400608603828">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="insertion of picture into notes" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_1486422450" CREATED="1400608603843" MODIFIED="1402654973609">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
<attribute_layout NAME_WIDTH="120" VALUE_WIDTH="74"/>
<attribute NAME="video" VALUE="https://www.youtube.com/watch?v=EE3VGoZi0s8&list=UU0G5Ad0Cn0_rHfcOz_zsZOg"/>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1317660688" CREATED="1400610409515" MODIFIED="1400610411171">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="dynamic insertion of picture into node core / details" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_718783796" CREATED="1400610388609" MODIFIED="1400610408015" LINK="#ID_174999351">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
</node>
</node>
</node>
<node TEXT="[ security ]" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="110" MIN_WIDTH="110" STYLE_REF="_comment_and_structure" ID="ID_431157068" CREATED="1393109578515" MODIFIED="1400608478484">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1675200225" CREATED="1394913060203" MODIFIED="1396433397078">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="encryption of contents using password" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_681054596" CREATED="1394913061593" MODIFIED="1394913084421">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
<node TEXT="uses algorithm "PBEWithMD5AndDES" like FreeMind" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_838020586" CREATED="1394913093562" MODIFIED="1394913122421">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
</node>
</node>
</node>
</node>
<node TEXT="[ styling ]" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="110" MIN_WIDTH="110" STYLE_REF="_comment_and_structure" ID="ID_1642347229" CREATED="1393109300421" MODIFIED="1394904663218">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1516144170" CREATED="1394877876937" MODIFIED="1394877877828">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="choice and edit of individual optical node styling" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_923172412" CREATED="1394877877828" MODIFIED="1394892392890">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1854303823" CREATED="1394877788218" MODIFIED="1394877789578">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="styling with regard to conditions (date, content, ...)" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_1332104981" CREATED="1369113185234" MODIFIED="1394885280015">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_531259887" CREATED="1394877792171" MODIFIED="1394879943343">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
</node>
</node>
<node TEXT="[ structure ]" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="110" MIN_WIDTH="110" STYLE_REF="_comment_and_structure" ID="ID_1545128228" CREATED="1393109300421" MODIFIED="1394911408156">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1700039447" CREATED="1394877792171" MODIFIED="1394879943343">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="cloning of branches..." COLOR="#000000" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_concept" ID="ID_294480215" CREATED="1394911413781" MODIFIED="1402667720720">
<icon BUILTIN="help"/>
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1911809568" CREATED="1394911442906" MODIFIED="1394911443562">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
</node>
</node>
<node TEXT="[ positioning ]" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="110" MIN_WIDTH="110" STYLE_REF="_comment_and_structure" ID="ID_880568129" CREATED="1369113489363" MODIFIED="1396134574187">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_303954816" CREATED="1394879717953" MODIFIED="1394879718718">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="creation/move of nodes to any local branch node" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_660223862" CREATED="1394879718718" MODIFIED="1396268187187">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
<attribute_layout NAME_WIDTH="90" VALUE_WIDTH="261"/>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_92513972" CREATED="1394878230609" MODIFIED="1394878231312">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="automatic adjustment of node position (default)" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_1910254778" CREATED="1393783080921" MODIFIED="1394879716343">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_101428081" CREATED="1394879798250" MODIFIED="1394879799984">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="keyboard shortcuts for create/edit/move/cut/copy/paste of nodes" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_1666722194" CREATED="1394879799984" MODIFIED="1402653073109">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_927301318" CREATED="1394878261046" MODIFIED="1394878262390">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="relative positions between nodes adjustable" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_746194088" CREATED="1394878262390" MODIFIED="1394879868984">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_664056767" CREATED="1394878232343" MODIFIED="1394878232781">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="freely positionable nodes without visible ancestors" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_449579336" CREATED="1369113185234" MODIFIED="1396265172312">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1452469234" CREATED="1394878233750" MODIFIED="1394878234203">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="usage of summary nodes grouping nodes" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_1773449586" CREATED="1369113185234" MODIFIED="1394879922953">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_350598319" CREATED="1394879924421" MODIFIED="1394879925203">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
</node>
</node>
<node TEXT="[ linking ]" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="110" MIN_WIDTH="110" STYLE_REF="_comment_and_structure" ID="ID_1975627773" CREATED="1393108751687" MODIFIED="1394904663218">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1046752122" CREATED="1394877046406" MODIFIED="1394879928578">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="optical link from any node to any other local node" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_1555798342" CREATED="1393108856093" MODIFIED="1394885210078">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
<node TEXT="configurable connection line" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1429352544" CREATED="1393109099343" MODIFIED="1393109124390">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
</node>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1417918884" CREATED="1394877044765" MODIFIED="1394879929500">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="hyperlink from any node to any other local node" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_812624863" CREATED="1393108924531" MODIFIED="1394885213421">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
<node TEXT="green arrow icon" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1417759989" CREATED="1393109070406" MODIFIED="1393109081796">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
</node>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1539238926" CREATED="1394877042781" MODIFIED="1394879929796">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="hyperlink from any node to any external document" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_808710130" CREATED="1393108770687" MODIFIED="1394885213421">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
<node TEXT="red arrow icon" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1317120050" CREATED="1393109083375" MODIFIED="1393109088718">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
</node>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1855143072" CREATED="1394877041296" MODIFIED="1394885941609">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="hyperlink from any node to any external node in a different map" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_1101596002" CREATED="1393108823984" MODIFIED="1394886046484">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
<node TEXT="red arrow icon" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_505633001" CREATED="1393109091921" MODIFIED="1393109097390">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
</node>
<node TEXT="using anchor functionality" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1249102492" CREATED="1394885974140" MODIFIED="1394886040000">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
</node>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1068720992" CREATED="1394885958406" MODIFIED="1394885962312">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
</node>
</node>
</node>
<node TEXT="docu" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" POSITION="right" ID="ID_1964199729" CREATED="1394893202187" MODIFIED="1394893203968">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="postings included in this overview" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_80308030" CREATED="1394893203984" MODIFIED="1402644261343">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_115825884" CREATED="1394893224718" MODIFIED="1394893225531">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="http://sourceforge.net/apps/phpbb/freeplane/viewtopic.php?f=1&t=511&p=2722&hilit=collaboration#p2553" COLOR="#000000" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" ID="ID_65530895" CREATED="1394893226593" MODIFIED="1394893234890" LINK="http://sourceforge.net/apps/phpbb/freeplane/viewtopic.php?f=1&t=511&p=2722&hilit=collaboration#p2553">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="false" ITALIC="false"/>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_765708223" CREATED="1394911261609" MODIFIED="1394911262437">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="http://freeplane.sourceforge.net/wiki/index.php/Freeplane_features_you_were_missing_in_FreeMind" COLOR="#000000" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" ID="ID_228206484" CREATED="1394911262437" MODIFIED="1394911267343" LINK="http://freeplane.sourceforge.net/wiki/index.php/Freeplane_features_you_were_missing_in_FreeMind">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="false" ITALIC="false"/>
</node>
</node>
<node TEXT="." COLOR="#000000" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" ID="ID_404030710" CREATED="1402667772363" MODIFIED="1402667775164">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="false" ITALIC="false"/>
<node TEXT="..." COLOR="#000000" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" ID="ID_1463428903" CREATED="1402667775164" MODIFIED="1402667775897">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="false" ITALIC="false"/>
</node>
</node>
</node>
<node TEXT="release notes" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1774644198" CREATED="1402644245734" MODIFIED="1402644284671">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1604554587" CREATED="1402644285078" MODIFIED="1402644290359">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="Freeplane v1.1.x" COLOR="#000000" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" ID="ID_495801573" CREATED="1402644290484" MODIFIED="1402644358218" LINK="http://freeplane.sourceforge.net/wiki/index.php/FreeMind_0.9.0_-_Freeplane_1.1.x">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="false" ITALIC="false"/>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_815930989" CREATED="1402644327468" MODIFIED="1402644328265">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="Freeplane v1.2.x" COLOR="#000000" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" ID="ID_1310432469" CREATED="1402644328265" MODIFIED="1402644387015" LINK="http://freeplane.sourceforge.net/wiki/index.php/New_features_in_Freeplane_1.2.x">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="false" ITALIC="false"/>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1092436211" CREATED="1402644333500" MODIFIED="1402644334484">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="Freeplane v1.3.x" COLOR="#000000" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" ID="ID_1468058970" CREATED="1402644334484" MODIFIED="1402644408187" LINK="http://freeplane.sourceforge.net/wiki/index.php/New_features_in_Freeplane_1.3.x">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="false" ITALIC="false"/>
</node>
</node>
</node>
</node>
<node TEXT="[ general usability ]" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="120" MIN_WIDTH="120" STYLE_REF="_comment_and_structure" POSITION="left" ID="ID_1463402492" CREATED="1369113231456" MODIFIED="1394904710093">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="[ input ]" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="110" MIN_WIDTH="110" STYLE_REF="_comment_and_structure" ID="ID_1193897897" CREATED="1394879447640" MODIFIED="1394904679265">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1712116302" CREATED="1394877059031" MODIFIED="1394877059859">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="configurable keyboard shortcuts for menu items" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_1662472571" CREATED="1369113185171" MODIFIED="1394878578187">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
<node TEXT="function keys with combinations of <SHIFT>, <CTRL> and <ALT>" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1356793985" CREATED="1394878526156" MODIFIED="1394878553515">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
</node>
</node>
</node>
</node>
<node TEXT="[ view ]" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="110" MIN_WIDTH="110" STYLE_REF="_comment_and_structure" ID="ID_648395434" CREATED="1394879399093" MODIFIED="1394904679265">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1925293734" CREATED="1394877057578" MODIFIED="1394877058015">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="display of shortcut settings below menu row [optional]" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_12442959" CREATED="1393783229828" MODIFIED="1394878425437">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_994832810" CREATED="1394877055937" MODIFIED="1394877056437">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="display of format panel for quick node format modification [optional]" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_1886963781" CREATED="1369113185234" MODIFIED="1394892259656">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_946167852" CREATED="1394877054078" MODIFIED="1394877054921">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="display of attributes panel for quick modification [optional]" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_528419250" CREATED="1369113185234" MODIFIED="1394878491968">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
</node>
</node>
</node>
<node TEXT="[ searching ]" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="110" MIN_WIDTH="110" STYLE_REF="_comment_and_structure" ID="ID_588820315" CREATED="1394879331375" MODIFIED="1394904679265">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1299748037" CREATED="1394877052468" MODIFIED="1394877053062">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="approximate search algorithm for node contents" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_428523926" CREATED="1369113185234" MODIFIED="1394879368109">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
</node>
</node>
</node>
<node TEXT="[ productivity ]" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="110" MIN_WIDTH="110" STYLE_REF="_comment_and_structure" ID="ID_539953450" CREATED="1394885172875" MODIFIED="1394904679265">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1327129355" CREATED="1394885116031" MODIFIED="1394885117234">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="professional PDF handling (using Docear plugin)" COLOR="#ffcc33" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_in_development" ID="ID_516054160" CREATED="1394885040406" MODIFIED="1394885126218" LINK="#ID_302252938">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
</node>
</node>
</node>
</node>
<node TEXT="[ expandabililty ]" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="120" MIN_WIDTH="120" STYLE_REF="_comment_and_structure" POSITION="left" ID="ID_95374127" CREATED="1394875697312" MODIFIED="1394904710093">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="[ formula ]" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="110" MIN_WIDTH="110" STYLE_REF="_comment_and_structure" ID="ID_1029255261" CREATED="1394885375328" MODIFIED="1397835458875">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1689859519" CREATED="1394885675234" MODIFIED="1394885676453">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="computability of node contents using formulas" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_336138051" CREATED="1369113185234" MODIFIED="1402654973609">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
<attribute_layout NAME_WIDTH="198" VALUE_WIDTH="74"/>
<attribute NAME="discussion" VALUE="https://sourceforge.net/p/freeplane/discussion/758437/thread/942b064d"/>
<attribute NAME="user manual" VALUE="http://freeplane.sourceforge.net/wiki/index.php/Formulas#Overview"/>
<node TEXT="EXCEL style" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_45606835" CREATED="1393109279484" MODIFIED="1393109288171">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
</node>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_450840656" CREATED="1394886166125" MODIFIED="1394886166984">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="computability of node contents using formulas and external node content" COLOR="#000000" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_concept" ID="ID_1009022721" CREATED="1394886074656" MODIFIED="1402667634154">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
<attribute_layout NAME_WIDTH="120" VALUE_WIDTH="149"/>
<attribute NAME="developed by" VALUE="n.n."/>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1182336736" CREATED="1394886199015" MODIFIED="1394886200796">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
</node>
</node>
<node TEXT="[ script ]" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="110" MIN_WIDTH="110" STYLE_REF="_comment_and_structure" ID="ID_1787140816" CREATED="1394877319406" MODIFIED="1394904663218">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="[ node linking ]" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="100" MIN_WIDTH="100" STYLE_REF="_comment_and_structure" ID="ID_614589662" CREATED="1396450698000" MODIFIED="1397835792421">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1615389120" CREATED="1396450728125" MODIFIED="1396450730687">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="Insert Link to a node in another map" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_855651880" CREATED="1396450730687" MODIFIED="1402654973609">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
<attribute_layout NAME_WIDTH="198" VALUE_WIDTH="74"/>
<attribute NAME="discussion" VALUE="http://sourceforge.net/p/freeplane/discussion/758437/thread/77ff76be"/>
<attribute NAME="source" VALUE="http://freeplane.sourceforge.net/wiki/index.php/Scripting_text_editing"/>
<node TEXT="already covered by builtin function using "anchors"" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_150992893" CREATED="1396450783312" MODIFIED="1402667432508" LINK="#ID_1101596002">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
</node>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1111598602" CREATED="1397816231312" MODIFIED="1397816232859">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="Find all connected nodes" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_474284335" CREATED="1397816240406" MODIFIED="1402654973609">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
<attribute_layout NAME_WIDTH="173" VALUE_WIDTH="74"/>
<attribute NAME="discussion" VALUE="http://sourceforge.net/apps/phpbb/freeplane/viewtopic.php?f=1&t=414&start=0"/>
<attribute NAME="source" VALUE="http://freeplane.sourceforge.net/wiki/index.php/Scripting:_Example_scripts#Find_all_connected_nodes"/>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1094866565" CREATED="1397829490453" MODIFIED="1397829492593">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="Check for broken links" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_1239414446" CREATED="1397829492593" MODIFIED="1402654973609">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
<attribute_layout NAME_WIDTH="132" VALUE_WIDTH="74"/>
<attribute NAME="discussion" VALUE="https://sourceforge.net/apps/phpbb/freeplane/viewtopic.php?f=1&t=872"/>
<attribute NAME="source" VALUE="http://freeplane.sourceforge.net/wiki/index.php/Scripting:_Example_scripts#Check_for_broken_links"/>
</node>
</node>
</node>
<node TEXT="[ map linking ]" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="100" MIN_WIDTH="100" STYLE_REF="_comment_and_structure" ID="ID_1167957239" CREATED="1396451135156" MODIFIED="1397835792421">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_379028167" CREATED="1396451146171" MODIFIED="1396451148109">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="Inline linked maps into one single map" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_1717859384" CREATED="1396451148109" MODIFIED="1402654973609">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
<attribute_layout NAME_WIDTH="189" VALUE_WIDTH="74"/>
<attribute NAME="source" VALUE="http://freeplane.sourceforge.net/wiki/index.php/Scripting_text_editing"/>
<attribute NAME="discussion" VALUE="http://sourceforge.net/p/freeplane/discussion/758437/thread/5c592ee0"/>
</node>
</node>
</node>
<node TEXT="[ picture insert ]" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="100" MIN_WIDTH="100" STYLE_REF="_comment_and_structure" ID="ID_710977535" CREATED="1396450987796" MODIFIED="1397835792421">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_298780239" CREATED="1396451007812" MODIFIED="1396451009421">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="Insert an inline image into node text or details" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_78052965" CREATED="1396451009421" MODIFIED="1402654973609">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
<attribute_layout NAME_WIDTH="228" VALUE_WIDTH="74"/>
<attribute NAME="source" VALUE="http://freeplane.sourceforge.net/wiki/index.php/Scripting_text_editing"/>
</node>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_165536374" CREATED="1394885449171" MODIFIED="1394885451046">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="invocation of own functions using "scripting API"" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_1423483905" CREATED="1369113185171" MODIFIED="1402654973609">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
<attribute_layout NAME_WIDTH="189" VALUE_WIDTH="74"/>
<attribute NAME="API" VALUE="http://freeplane.sourceforge.net/doc/api/"/>
<attribute NAME="user manual" VALUE="http://freeplane.sourceforge.net/wiki/index.php/Scripting"/>
<attribute NAME="user manual" VALUE="http://freeplane.sourceforge.net/wiki/index.php/External_script_file_execution"/>
<attribute NAME="examples" VALUE="http://freeplane.sourceforge.net/wiki/index.php/Scripting:_Example_scripts"/>
<attribute NAME="examples" VALUE="http://freeplane.sourceforge.net/wiki/index.php/Scripting_text_editing"/>
<attribute NAME="examples" VALUE="http://freeplane.sourceforge.net/wiki/index.php/Scripting:_Example_scripts_using_external_libraries"/>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_165931813" CREATED="1396430560125" MODIFIED="1396430560921">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="Groovy scripting" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_1100230635" CREATED="1369128994260" MODIFIED="1402654973609">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
<attribute_layout NAME_WIDTH="148" VALUE_WIDTH="74"/>
<attribute NAME="homepage" VALUE="http://groovy.codehaus.org/"/>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1745335880" CREATED="1396430572421" MODIFIED="1396430573265">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="JavaScript scripting" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_743505918" CREATED="1396430573265" MODIFIED="1402654973609">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
<attribute NAME="wikipedia" VALUE="http://en.wikipedia.org/wiki/JavaScript"/>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_319821269" CREATED="1396430562187" MODIFIED="1396430562921">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="Python scripting" COLOR="#ffcc33" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_in_development" ID="ID_839723507" CREATED="1396430562921" MODIFIED="1396430607375">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
</node>
</node>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_960949734" CREATED="1398846570531" MODIFIED="1398846572390">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="complementing scripting API by using "internal API"" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_1676809692" CREATED="1398846572406" MODIFIED="1402654973609">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
<attribute_layout NAME_WIDTH="184" VALUE_WIDTH="74"/>
<attribute NAME="discussion" VALUE="https://sourceforge.net/apps/phpbb/freeplane/viewtopic.php?f=1&t=414&p=2098&hilit=internal+api"/>
</node>
</node>
</node>
<node TEXT="[ addon ]" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="110" MIN_WIDTH="110" STYLE_REF="_comment_and_structure" ID="ID_581689163" CREATED="1394875440062" MODIFIED="1394904663218">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="examples" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1167189512" CREATED="1369113735414" MODIFIED="1394880776343">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="[ map view ]" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="100" MIN_WIDTH="100" STYLE_REF="_comment_and_structure" ID="ID_1623296599" CREATED="1394893111250" MODIFIED="1394904587781">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_17783308" CREATED="1394892852687" MODIFIED="1394892853203">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="Additional icon libraries" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_1403434355" CREATED="1394892724984" MODIFIED="1394892885125">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1359715757" CREATED="1397836025750" MODIFIED="1397836038937">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="Insert inline image" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_304229043" CREATED="1397836026156" MODIFIED="1397836033593">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
<node TEXT="alternative for including images (attach via nodes details or node core)" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1282882421" CREATED="1394892724968" MODIFIED="1394892804078">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
</node>
</node>
</node>
</node>
<node TEXT="[ picture ]" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="100" MIN_WIDTH="100" STYLE_REF="_comment_and_structure" ID="ID_942455403" CREATED="1394893111250" MODIFIED="1400610347031">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_201278673" CREATED="1400608619468" MODIFIED="1400608620421">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="dynamic insertion of picture into node core / details" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_174999351" CREATED="1400608630937" MODIFIED="1402654973609">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
<attribute_layout NAME_WIDTH="129" VALUE_WIDTH="74"/>
<attribute NAME="video" VALUE="https://www.youtube.com/watch?v=EE3VGoZi0s8&list=UU0G5Ad0Cn0_rHfcOz_zsZOg"/>
</node>
</node>
</node>
<node TEXT="[ development ]" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="100" MIN_WIDTH="100" STYLE_REF="_comment_and_structure" ID="ID_1639580021" CREATED="1394893072375" MODIFIED="1394904587781">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_597736061" CREATED="1394892854078" MODIFIED="1394892854593">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="Developer tools" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_705148047" CREATED="1394892724984" MODIFIED="1394892881734">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1172122905" CREATED="1394892825265" MODIFIED="1394892826031">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="Wikdshell" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_197799510" CREATED="1394892724968" MODIFIED="1394892828906">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
<node TEXT="test platform for building and testing groovy scripts" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1027182355" CREATED="1394892724968" MODIFIED="1394892838625">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
</node>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1573361201" CREATED="1394892847453" MODIFIED="1394892848203">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="Wikdnode" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_372672857" CREATED="1394892724984" MODIFIED="1394892952734">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
<node TEXT="comprehensive set of node text editing tools" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_465043097" CREATED="1394892724984" MODIFIED="1394892958937">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
</node>
</node>
</node>
</node>
<node TEXT="[ productivity ]" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="100" MIN_WIDTH="100" STYLE_REF="_comment_and_structure" ID="ID_1087353850" CREATED="1394893043703" MODIFIED="1394904587781">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_663158784" CREATED="1394892849625" MODIFIED="1394892850218">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="Pack And Go" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_1124071949" CREATED="1394892724984" MODIFIED="1394892943562">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
<node TEXT="ability to pull all FP dependencies into a single zip file" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_479578849" CREATED="1394892724984" MODIFIED="1394892928937">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
</node>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_854524100" CREATED="1394892855484" MODIFIED="1394892855968">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="Getting Things Done" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_614577879" CREATED="1394892724984" MODIFIED="1402654973609">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
<attribute_layout NAME_WIDTH="133" VALUE_WIDTH="74"/>
<attribute NAME="user manual" VALUE="http://auxilus.com/blog/freeplanegtd/"/>
<attribute NAME="source" VALUE="http://sourceforge.net/projects/freeplanegtd/"/>
<node TEXT="task management application" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_240222973" CREATED="1394892724984" MODIFIED="1394892878484">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
</node>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_51971897" CREATED="1394892851203" MODIFIED="1394892851671">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="Study planner" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_1062165324" CREATED="1394892724984" MODIFIED="1394892892796">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
<node TEXT="tool for assisting with the efficient use of study time, including pomodoro timers" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1863280815" CREATED="1394892724984" MODIFIED="1394892899546">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
</node>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_140866477" CREATED="1394911711562" MODIFIED="1394911713234">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="collaboration on maps" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_1763069573" CREATED="1394878021046" MODIFIED="1402654973609">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
<attribute_layout NAME_WIDTH="154" VALUE_WIDTH="74"/>
<attribute NAME="discussion" VALUE="https://sourceforge.net/apps/phpbb/freeplane/viewtopic.php?f=1&t=718&hilit=collaboration"/>
<attribute NAME="user manual" VALUE="http://freeplanecollab.sourceforge.net/"/>
<attribute NAME="source" VALUE="https://github.com/seb4stien/freeplane-collaborative-addon"/>
<node TEXT="using versioning system (CVS, SVN, GIT)" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1858657432" CREATED="1394916487734" MODIFIED="1394916518968">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
</node>
</node>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_590633628" CREATED="1394880780500" MODIFIED="1394892496359">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="..." COLOR="#000000" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" ID="ID_1803068107" CREATED="1369113852312" MODIFIED="1369113853436">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="false" ITALIC="false"/>
</node>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1052405129" CREATED="1394877038812" MODIFIED="1394877039453">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="creation and usage of add-ons (packaged scripts)" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_1965097917" CREATED="1369113185218" MODIFIED="1402654973609">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
<attribute_layout NAME_WIDTH="239" VALUE_WIDTH="74"/>
<attribute NAME="user manual" VALUE="http://freeplane.sourceforge.net/wiki/index.php/Add-ons_%28install%29"/>
</node>
</node>
</node>
<node TEXT="[ plugin ]" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="110" MIN_WIDTH="110" STYLE_REF="_comment_and_structure" ID="ID_1281567032" CREATED="1394875449390" MODIFIED="1394904663218">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="[ LaTeX ]" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="100" MIN_WIDTH="100" STYLE_REF="_comment_and_structure" ID="ID_1104808996" CREATED="1394885381578" MODIFIED="1394904937171">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_914324907" CREATED="1394885581562" MODIFIED="1394885584421">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="edit of inline LaTeX node text content" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_1264934062" CREATED="1369113185234" MODIFIED="1394885604250">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
</node>
</node>
</node>
<node TEXT="[ science ]" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="100" MIN_WIDTH="100" STYLE_REF="_comment_and_structure" ID="ID_591320040" CREATED="1369113330399" MODIFIED="1394904937171">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_797959507" CREATED="1394885485828" MODIFIED="1394885487281">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="professional PDF handling (using Docear plugin)" COLOR="#ffcc33" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_in_development" ID="ID_302252938" CREATED="1369113185234" MODIFIED="1394885481109">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
<node TEXT="professional PDF handling..." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_443218892" CREATED="1382590094150" MODIFIED="1394885034125">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
</node>
</node>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_1939966259" CREATED="1394877038812" MODIFIED="1394877039453">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="creation and usage of plugins" COLOR="#338800" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_feature_operational" ID="ID_298925621" CREATED="1369113185218" MODIFIED="1394885765125">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="true" ITALIC="false"/>
<node TEXT="only for code developers" COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_262941674" CREATED="1394885765125" MODIFIED="1394885783890">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
</node>
</node>
</node>
<node TEXT="." COLOR="#999999" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" STYLE_REF="_comment_and_structure" ID="ID_469916670" CREATED="1394878047625" MODIFIED="1394878048312">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="10" BOLD="false" ITALIC="false"/>
<node TEXT="..." COLOR="#000000" STYLE="as_parent" MAX_WIDTH="600" MIN_WIDTH="1" ID="ID_1082370413" CREATED="1394878053750" MODIFIED="1394885006000">
<edge STYLE="bezier" COLOR="#808080" WIDTH="thin"/>
<font NAME="SansSerif" SIZE="12" BOLD="false" ITALIC="false"/>
</node>
</node>
</node>
</node>
</node>
</map>