Accessories: Difference between revisions
From FreeMind
Jump to navigationJump to search
(Task Coach converter) |
(→Other) |
||
Line 73: | Line 73: | ||
* [http://www.zms-publishing.com/support/content/e724/e729/e2769/index_eng.html ZMSMindMaps]: An Add-on to ZMS (Zope based Content Management for Science, Technology and Medicine) for viewing, exporting and importing of Mindmaps. | * [http://www.zms-publishing.com/support/content/e724/e729/e2769/index_eng.html ZMSMindMaps]: An Add-on to ZMS (Zope based Content Management for Science, Technology and Medicine) for viewing, exporting and importing of Mindmaps. | ||
* [http://www.xinet.ro/en/current-projects/joomfreemind.html Joom!FreeMind - Joomla! 1.5.x site structure]: Visual self-generated Sitemap from Joomla 1.5.x content - a Joomla component displaying the site structure through a link from a menu, a menu item or a simple hyperlink placed inside the published articles (Joom!FreeMind v2.0).The extension generates an appealing visual mindmap observing your Joomla menus,categories and sections. | |||
* Below is a Unix <tt>sed</tt> command to remove the optional data from a MindMap .mm file's XML to make it more reader-friendly, keeping only the TEXT attribute. After converting a MindMap file with this command, you can open the generated XML file in Firefox and use its XML element collapsing features to interactively view MindMaps even without Freemind installed. | * Below is a Unix <tt>sed</tt> command to remove the optional data from a MindMap .mm file's XML to make it more reader-friendly, keeping only the TEXT attribute. After converting a MindMap file with this command, you can open the generated XML file in Firefox and use its XML element collapsing features to interactively view MindMaps even without Freemind installed. |
Revision as of 09:58, 24 October 2008
What follows is a list of FreeMind accessories, provided by third parties. Feel free to add your own accessory. When adding a new link to an accessory you are the author of, please consider releasing your accessory by "GNU GPL V2 or later at your option" license. When you do, the FreeMind team can consider delivering your accessory as part of FreeMind. Conversions
See also Other
sed -e "s/ \(CREATED\|MODIFIED\|ID\|POSITION\|FOLDED\)=\"[0-9a-zA-Z_]*\"//g" Old.mm > New.xml For version 0.9, this command is better : sed -e "s/ \(CREATED\|MODIFIED\|ID\|POSITION\|FOLDED\|COLOR\)=\"#\?[0-9a-zA-Z_]*\"//g" -e "s/<\(font\|hook\)[^>]\+\?>//g" Old.mm > New.xml |