Michael Radziej

Email: <mir AT moin.m1.spieleck.de>

I use MoinMoin mostly for a kayak club homepage

What I really like about MoinMoin:

he subtle markup differences in the different Wikis are really annoying. I experiment a little with RestructuredText. It's nice for documentations, but perhaps a little too complicated for everybody.

Something I'd also like to see is a mail importer: send or bounce mail to an address like wiki+WikiName, and it gets appended. Wouldn't it be great to find all you important mail in your wiki, ready to comment and refactor?

Cheers, and thanks for a great Wiki!

Michael


Some ideas for realizing the email stuff (old stuff)

   1 class EmailUser:
   2    def __init__(self):
   3       self.valid = 0
   4       self.id = str(time.time()) + "." + str(os.getpid())
   5       self.name = "EmailCollector"
   6       self.language = ""
   7       from security import Default
   8       self.may = Default(self)
   9 
  10 request = Request({'user': EmailUser()})
  11 p = PageEditor(WikiName)
  12 body = p.get_raw_body()
  13 # now append email text to body
  14 p.save_text(request,body,0,notify=1,comment='by email')

(hmm, I left out datestamp logic - what should I do if someone has edited during email processing? Probably just redo.)


CategoryHomepage

MoinMoin: MichaelRadziej (last edited 2007-10-29 19:13:36 by localhost)