Does anyone know of (first-hand experience is especially appreciated) any wiki software out there that is specifically designed to help document/discuss software development? We don't need anything complicated; we really just want something that we can easily drop code into without losing formatting. Code highlighting on the front-end is also a huge plus!
the closest thing i can think of is doxygen. im sure software, esp. game companies, have their own inhouse doc system, probably with wikis but they arent gonna be gpl
i reread your post, and now i think it might not be a good fit. doxygen requires you to make formatted comments in your code, then it parses the code to link all of it together into an api sort of manual. basically, its strictly documentation and helps keep programmers in the same style. what i think you want is something that you can manually copy and paste code in have ppl come look at it and comment on it. sorry about that. what you need then is mediawiki, which i believe is free and open source, and use extensions or write your own extension. theres a huge community support for it http://www.mediawiki.org/wiki/Category:Extensions
i ran through it quickly to give u a few that might be useful
ive never personally used it, but i worked under a project lead that used mediawiki and its pretty much a private wikipedia style wiki that u can mess with
Yeah, I found that out /tongue.gif" style="vertical-align:middle" emoid=":P" border="0" alt="tongue.gif" /> We actually already use phpdoc for that.
Mediawiki is always a fallback. It's definitely extreme overkill for what we need, but with the help of extensions it can do what we want. I've configured it before (which sucked a lot), so that is good.