Development: Difference between revisions
Line 89: | Line 89: | ||
==Libraries and components used in FreeMind== | ==Libraries and components used in FreeMind== | ||
* [http://nanoxml.cyberelf.be/ NanoXML] | * [http://nanoxml.cyberelf.be/ NanoXML] -- slim XML parser, used in reading the mind map XML | ||
* [http://jibx.sourceforge.net/ JiBX] | * [http://jibx.sourceforge.net/ JiBX] -- XML binding for Java, used in undo implementation | ||
* [http://sourceforge.net/projects/simplyhtml SimplyHTML] | * [http://sourceforge.net/projects/simplyhtml SimplyHTML] -- rich text editing component | ||
==Obtaining focus for selected node in reliable manner== | ==Obtaining focus for selected node in reliable manner== |
Revision as of 08:48, 9 December 2007
The development of FreeMind is coordinated using FreeMind's project page at SourceForge, and also using this wiki. At wiki, we have requests for enhancements page; there is also requests for enhancements (RFEs) page at SourceForge (not preferred). You can browse CVS repository. We also use SourceForge for bugs, and open discussion forum. We do not use the documentation part there as we use this wiki instead. Contributing to FreeMindThere are different possible ways of taking part in the FreeMind development: the project needs people for:
Also:
Getting started as a developerSee Getting started as a developer. Getting started as a testerSee Getting started as a tester. Reporting bugsSee Getting started as a tester. Organization of FreeMind developmentInitially, every active developer of the core team works on his own CVS branch. Our intermediate results are published as our "alpha versions". We use forum Open Discussion and section Experimental_versions on this wiki page to communicate them. Further details about the FreeMind release process are described on the FreeMind Release process page. Experimental versionsCurrently, there are the following experimental versions available. They are not meant for productive use; use at your own risk! FreeMind 0.9.0 beta 14 with Node Attributes, Map Filters and WYSIWYG rich text node editorAttaching of named attributes to every node, filtering of the displayed map content based on node text, node icons and node attributes, HTML based rich text formatting for nodes and notes, fit for Java6, a script editor is included in the script plugin --Rben13 10:06, 3 Sep 2007 (PDT) Creating proper copyright noticeA source file may be viewed as a sum b + d1 + d2 + ... + dk, where b is the basis, di are deltas (or patches), and the plus operator is the operator of applying a patch. The basis and each delta have their own copyright holder and the year of copyright. If there is only one author and one year, then the copyright notice is simple. If there is only one author and more years, then the copyright notice may look like
which is to be understood as
If there are more authors, then the copyright notice consists of more lines, like
Not all changes are eligible for copyright. If a change is small, then it does not make sense to add a line to the copyright notice for it. Copyright notice is not required for copyright to hold. It makes claiming your right at court easier. The correctness of these instructions is not granted. They are subject to improvement as we see fit. --Danielpolansky 11:29, 3 Jun 2005 (PDT) Libraries and components used in FreeMind
Obtaining focus for selected node in reliable mannerRequesting focus for NodeView using requestFocus() method is unreliable. A reliable way of doing that has been implemented in the method getController().obtainFocusForSelected(); Requesting focus using newSelected.requestFocus(); where More development pagesTo see all development pages, have a look at the category Development, by clicking on the link at the bottom of this page. |