WalaWiki content from p1k3.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
4.3 KiB

  1. WareLogging. An "enterprise wiki". [http://www.atlassian.com/software/confluence/ Official site].
  2. * [http://www.adaptavist.com/display/USERGUIDE/Home Another Confluence guide]
  3. * [http://confluence.atlassian.com/display/DOC/Filtering+Regular+Expression+Application Filtering Regular Expression Application] - some stuff about how they translate markup. Touches on a couple of issues worth thinking about for wiki authors.
  4. * [http://www.adaptavist.com/display/USERGUIDE/Home;jsessionid=OvhI9yWFWb4VjLpnMq Adaptivist Confluence guide]
  5. * [http://confluence.atlassian.com/display/DOC/Guide+to+Confluence+Macros Guide to Confluence Macros] - weak
  6. * [http://confluence.atlassian.com/display/DOC/User+Macros User Macros]
  7. <[Brennen]> I should rewrite this page, because after using the thing for a while, I'm impressed by a number of things. Also, I'd like to steal half a dozen ideas and implement them myself. Among these are macros and includes.
  8. A few things I've noticed, good (steal these!) and bad:
  9. * Strong namespacing is probably a bad idea. Hierarchy of the parent/child sort modeled here is best avoided.
  10. ** Is this true? Some kind of grouping mechanism is inevitable, isn't it? Why not put things in containers?
  11. **This is a thought to pursue, since I think there are good arguments for a relatively flat namespace.
  12. ** Still, maybe this is just a way not to need multiple wiki installations. But why compartmentalize an engineering team from a marketing department, or whatever? (Addendum: Because the logic of business is bullshit, that's why.)
  13. * A really simple RecentChanges should be one click away at all times.
  14. * Little bright green plus signs are distracting in text. Also, tiny fonts suck.
  15. * Comments as separate entities from pages. Why?
  16. * Tiny fonts suck.
  17. * "Your recent history", a little popup window showing exactly that, is kind of cool.
  18. * Attachments are kind of useful, at least in a trusted environment.
  19. <[Brennen]> I've recently had occasion to use this beast in a working environment. A few salient technical facts: It's apparently built on J2EE. It uses a MarkupLanguage that -looks a lot like- Textile (see TextPattern). It has fine-grained revision tracking with a pretty display of changes. It does wala-style "commenting" on pages. It has namespacing and a concept of "parent" and "child" pages.
  20. The markup is actually better than standard wiki syntax in a couple of particulars: It uses traditional e-mail style markers like *bold* and _italics_. This is cool enough that I might just bite the bullet and implement it here. The revision stuff is also kind of neat.
  21. The reason I'm commenting on this at all: My first experience of Confluence was being told "we don't have enough users to give you an account". It's not just commercial software that relies on a site license or some such. ''It requires per-seat licensing.'' I mean, what? Why in hell would anybody use this thing in a world that contains MediaWiki? There are literally [http://en.wikipedia.org/wiki/List_of_wiki_software scores of wiki implementations]. At least half a dozen of them are robust and feature-rich. You could RollYourOwn in a couple of days if you felt like it.
  22. Anyway, a slightly more subtle point than "this software is not free-as-in-beer": What got me about being out of user licenses was that, fundamentally, that's not how a wiki works. I'm not about to get all [http://c2.com/cgi/wiki?WhyWikiWorks c2] on anybody here, but there's surely a broad set of attributes that define a functional, useful wiki environment. Confluence breaks a fair chunk of them.
  23. <[Brennen]> Goddammit, what a broken half-assed piece of software. If you're going to implement a set of macros, *make them nestable*.
  24. <[Brennen]> Update on above:
  25. Well, you can, sort of. Here for example is an appalling but semi-functional fontsize hack which probably no-one needs:
  26. #set($globalHelper=$action.getGlobalHelper())
  27. #set($renderer=$globalHelper.getWikiStyleRenderer())
  28. #set($context=$content.toPageContext())
  29. #set($renderedContent=$renderer.convertWikiToXHtml($context, $body))
  30. <style>div.stylee p { font-size: inherit; }</style>
  31. <div class="stylee" style="font-size: ${param0}em;">$renderedContent</div>
  32. <[Brennen]> (User macro, called like {fontsize:1.5}body text{fontsize})
  33. <[Brennen]> (Not functional at all in IE6.)