eWorld.UI - Matt Hawley
ME PRGM 4 U
-
WikiPlex 1.4 Released
-
Setting up Mercurial server in IIS7 using a ISAPI module
Previously, Jeremy Skinner posted a very thorough guide on setting up Mercurial in IIS. The difference between his guide, and what I'll be walking you through, is how Mercurial is hosted in IIS. Where he shows you using a CGI script that executes python.exe, my guide will show you how to use isapi-wsgi to host Mercurial. (read more…)
-
Mercurial Conversion from Team Foundation Server
One of my many (almost) daily tasks when working on the CodePlex platform since releasing Mercurial as a supported version control system, is converting projects from Team Foundation Server (TFS) to Mercurial. I'm happy to say that of all the conversions I have done since mid-January, the success rate of migrating full source history is about 95%. To get to this success point, I have had to learn and refine several techniques utilizing a few different tools… (read more)
-
VisualHG: A Mercurial Plugin for Visual Studio
Mercurial is quickly gaining momentum in the open source world, and the need for great tooling to make developers lives easier is always essential. Most developers using Mercurial know of the the explorer shell plugin, TortoiseHg, but what many don't know about is VisualHG. In summary... (read more)
-
WikiPlex v1.3 Released
It's been a many months since the last release of WikiPlex, but its only because there hasn't been a lot of churn recently. I've very happy where WikiPlex is at, and it continues to be a very… (read more)
-
Extending WikiPlex with Scope Augmenters
Another extension point with WikiPlex is Scope Augmenters. Scope Augmenters allow you to post process the collection of scopes to further augment, or insert/remove, new scopes prior to being rendered. WikiPlex comes with 3 out-of-the-box Scope Augmenters that it uses for indentation, tables, and lists. For reference, I'll be explaining… (read more)
-
WikiPlex v1.2 Released
It’s been a few months since the last release of WikiPlex, but I honestly have good reasons – paternity leave! This updated version has taken in a lot of user feedback and put it into action – so thank you for contributing ideas… (read more)
-
WikiPlex v1.1 Released
It's only been a few weeks since the v1.0 release, but a lot of work has gone into a new release of CodePlex's embeddable wiki engine, WikiPlex. The time in between has not been without a few highlights, including… (read more)
-
Extending WikiPlex with Custom Renderers
Following up from my prior post on Extending WikiPlex with Custom Macros it’s now time to talk about creating custom renderers. When we left off, we had created our title link macro and registered it with WikiPlex…[read more]
-
Extending WikiPlex with Custom Macros
One of the very nice features of WikiPlex is the ability to extend it to your hearts desire. The API is completely open, and the entry points off of WikiEngine are merely wrappers. This means that, if you really wanted to, you could create your own parser and formatter - but the majority of extending WikiPlex will be done via macros and renderers. A summary of the extension points include… (read more)