Accessories: Difference between revisions

From FreeMind
Jump to navigationJump to search
No edit summary
No edit summary
Line 46: Line 46:
| Topic Map (XTM) || ↔ || XSLT || [http://sourceforge.net/tracker/index.php?func=detail&aid=1853869&group_id=7118&atid=307118 Converter] || PS: I've created an [http://sourceforge.net/tracker/index.php?func=detail&aid=1785534&group_id=7118&atid=307118 Import with XSLT Plugin] to easily drop Import/Export plugins.
| Topic Map (XTM) || ↔ || XSLT || [http://sourceforge.net/tracker/index.php?func=detail&aid=1853869&group_id=7118&atid=307118 Converter] || PS: I've created an [http://sourceforge.net/tracker/index.php?func=detail&aid=1785534&group_id=7118&atid=307118 Import with XSLT Plugin] to easily drop Import/Export plugins.
|-
|-
| Mind Mapper || ↔ || XSLT || http://sourceforge.net/tracker/index.php?func=detail&aid=1853952&group_id=7118&atid=307118 Converter] || PS: I've created an [http://sourceforge.net/tracker/index.php?func=detail&aid=1785534&group_id=7118&atid=307118 Import with XSLT Plugin] to easily drop Import/Export plugins.
| Mind Mapper || ↔ || XSLT || [http://sourceforge.net/tracker/index.php?func=detail&aid=1853952&group_id=7118&atid=307118 Converter] || PS: I've created an [http://sourceforge.net/tracker/index.php?func=detail&aid=1785534&group_id=7118&atid=307118 Import with XSLT Plugin] to easily drop Import/Export plugins.
|-
|-
| SVN Repository || → || XSLT || Not yet stored anywhere... || SVN repository as an "file-view"
| SVN Repository || → || XSLT || Not yet stored anywhere... || SVN repository as an "file-view"

Revision as of 08:10, 29 January 2008

 

What follows is a list of FreeMind accessories, provided by third parties. (Feel free to add your own accessory.)

Conversions

Format Direction Lang. Link Note
Tab-indented text Python Text-to-Freemind Also useful for automated conversions
ToDoList 2 XSLT Convertor N/A
del.icio.us Java Delicious Mind N/A
Emacs Planner Perl Taskmm N/A
Vym XSLT Convertor N/A
Mantis bug tracker PHP Convertor N/A
Ganttproject XSLT Converter N/A
.c,.h,.s Perl Convertor N/A
LaTeX article & book Ruby Freemindtolatex N/A
LaTeX beamer presentation Perl Convertor N/A
LaTeX beamer presentation XSLT Convertor Includes build.xml for Ant to integrate pdflatex
Meeting notes Python mm2notes N/A
S5 Presentation Python mm2s5 N/A
Microsoft Project XSLT Conversor N/A
Java objects Java Converter See also Marshaller
Graphviz DOT-Format XSLT Converter Sorry, i've uploaded the document and then fixed a minor bug. PS: I've created an Import with XSLT Plugin to easily drop Import/Export plugins.
Topic Map (XTM) XSLT Converter PS: I've created an Import with XSLT Plugin to easily drop Import/Export plugins.
Mind Mapper XSLT Converter PS: I've created an Import with XSLT Plugin to easily drop Import/Export plugins.
SVN Repository XSLT Not yet stored anywhere... SVN repository as an "file-view"

See also

Other

  • Dynamic mind maps from CMS: Sitemap, weblinks and feeds dynamically generated from content management system Joomla (Freemind Flashbrowser)
  • Freemind Win Collab : Share your mindmaps and built them in collaboration. This simple batch file autorise collaboration on freemind maps via a fileserver. If you can access the same disk with your collegues in your organisation, you can now work together on your mindmaps : this script avoid multiple edition at the same time (lock the file for you and tell the others that YOU edit it for the moment) and make backups each time you open a mindmap (like 2006-04-02_myfilename.mm). Work only on windows.
  • Below is a Unix sed 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.
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