My favorites | Sign in
Project Logo
                
Search
for
Updated Apr 19, 2007 by scottakirkwood
Labels: Featured, Phase-Deploy
mm2notes  
Overview of mm2notes

Does some XML foo to get meeting notes out of your MM file. FreeMind is great for taking notes very quickly and is highly recommended. I sometimes project FreeMind on the overhead projector so that everyone can see the notes I'm taking. The zoom feature (Alt-Down) is very handy so that it isn't too small.

After the meeting you might check-in the .mm file into a source control program (if you are into that kind of thing) and then clean up the notes so that it makes more sense and only the salient points are kept. Then your run something like:

mm2notes WeeklyMeeting.mm -o WeeklyMeeting.html

To output the notes in HTML, which you can copy and paste to a variety of places.

Screen Shots

In FreeMind your notes will look something like this:

After running mm2notes on your .mm file the HTML will look like like:

Features

Attendees can be just a list, at list with e-mails under the person's name (very handy) or a list of cities with the list of people in each city below.

Because FreeMind keeps track of all the times that nodes are created I used that time to organize the meeting minutes. So even though you may freely jump around adding notes under different people or headings, it'll still organize it by time, so it still makes some sense.

Requirements


Comment by koolcat99, Sep 06, 2007

patch for python 2.5 :

--- mm2notes/mm2notes.py_ORIGINAL       2007-09-06 11:46:17.000000000 +0200
+++ mm2notes/mm2notes.py        2007-09-06 11:46:34.000000000 +0200
@@ -16 +16 @@ from optparse import OptionParser
-import elementtree.ElementTree
+import xml.etree.ElementTree
@@ -44 +44 @@ class Mm2Notes:
-        return  elementtree.ElementTree.XML(text)
+        return  xml.etree.ElementTree.XML(text)

Sign in to add a comment
Hosted by Google Code