Put out OpenInteract 1.40 this morning, to many huzzahs. (Well, one. From one of our cats.) Let me just say again that CPAN/PAUSE rock my world.
To test it out I finally, finally got cwinters.com back online. I had to transfer data from a very old (18 months) MySQL structure into Postgres, my database of choice now. That went pretty well -- I modified the various presentations to have different base templates, copied all the photos to a particular directory, then set the page scanner to work to bring everything in. Worked like a charm, and we're back online. Ugly, but online. Some sort of photo gallery, potentially borrowed from slashcode, is likely in the near future....
For some reason, I woke up thinking about wikis -- insane in the wikibrain -- and how to implement a simple one (hah!) in OpenInteract using chromatic's Text::WikiFormat. I finally took a look at it and it's nice and straightforward, even for overriding and (I think) adding behavior. We'll see. Obviously, good ideas are fermented on less than four hours of sleep... (Or maybe they just seem like good ideas then.)
There aren't any tests for that specifically, though, mostly because I hadn't thought of any good things to add or to override. I'm likely to add in any suggestions you have, or even write new tests based on your ideas.
Re:Text::WikiFormat
lachoy on 2002-05-08T03:18:12
Couple of things I came up with:
- Headers. I've used the TWiki and the UseMod methods and don't really have a preference:
TWiki (using line start/end anchors): ^---+ text $ is h1
^---++ text $ is h2
^---+++ text $ is h3
UseMod: = text = is h1
== text == is h2
=== text === is h3- Interwiki links, normally Foo:WikiName. You'll need to provide a way to map to other wikis, but that's easy
- Other external links. The everything [command://argument] or [[command://argument]] is killer and allows for supereasy plugins. Might even want to use this instead of the previously mentioned interwiki: [meatball://BarnRaising]
- Be able to differentiate between link types in the extended linking semantics, particularly for email.
I might come up with more ideas as I use it more, but it's a start
:-) Re:Text::WikiFormat
lachoy on 2002-05-08T03:55:22
Oh yeah, I forgot. It would also be great to get a list of WikiWords from the most-recently formatted text. Handy for indexing and all...