For Mythoi.com I wanted a easy to use, powerful, and partitionable (across a taxonomy hierarchy) Wiki engine to mount inside of Drupal. Last week I did the briefest amount of work getting acquainted with the Drupal API (via DrupalDocs). With DrupalDocs down today I was resorting to Vim searches and the Drupal chatroom.

Today I got some good prototypes started on the main UI for the wiki. I created it to respond to wiki/ and wiki/edit/ paths. The first attempts to load the proper node based on the title and the second attempts to edit/create it. So far the only thing I've ascertained works correctly is that without a proper node reference the wiki/Some/Page will display a message saying that no such page yet exists and if the user has the proper access rights it will display a link to the wiki/edit/Some/Page. A small start, obviously, but a good foundation for the next pieces. Here's what I need to do:

Currently I'm writing against the 4.6 API, because it is relatively stable, but at some point I'll need to forward it to HEAD so that I can upload it to the CVS server. However, right now that isn't a big deal because the servers are down and I don't have a CVS account, anyway. My biggest worry is that I'm relying too heavily on the internals of node.module instead of calling its exposed API. What I'm doing is that I'm mostly using the internals of node_page(), because I'm trying to present a "closer" integration to the Wiki than most node types do. I have to worry that node_page() might change quite a bit of time and keeping up with it could be a pain.