Probably many of you know that feeling: You're working with a product like TYPO3 and you've got a great idea for a new feature. A very small one, would probably easy to implement and is that sort of would-be-cool-if-we-had-that feature.
One thing I always wanted to implement for five-zero is some advanced error / exception handling. What if you, as a developer, wouldn't get a plain PHP error but a detailed report of what went wrong. A nice backtrace along with the arguments which were passed to each method.
I implemented such an exception handler a while ago for the _UNKNOWN3_ framework (checkout that first screenshot). It turned out to be very helpful in the course of development, you instantly get the idea what went wrong (well, in most cases at least).
Now, "wouldn't it be cool" if you could get some more information about the exception and read what other users did to solve the problem? Wouldn't be a wiki the right place for this information?
Our exception handler now renders a little link along with each exception. Just click on it and you'll be transfered to a matching page in the TYPO3 wiki. Because we didn't want to hardcode the wiki page address, we created a softlink for that purpose. typo3.org/go/exception/1166550023 will bring you directly to the wiki.typo3.org page for exception number 1166550023. On that page you find further information about who created the exception and what he thinks could help you solve the problem. Further more you can read other developer's comments or add your own.
So apparently all exceptions have a number. But how can I get a fresh number for my own exception? The answer is: exception codes are just timestamps. Just get yourself a current timestamp and check if a wiki page exists with that number. If not, you can just use that number and create a new page with the exception details.
So, no big deal, this feature, but one I always wanted. And by the great help of Daniel Brüßler we now have some proper templates for that in the wiki, too.