I’ve been wanting a Tauranga Web Meetup since I moved here almost 4 years ago.
There’s a lot of web professionals based in Tauranga, Mount Maunganui and Papamoa but I haven’t met many of them in person. Twitter’s great and I’ve been following what a few of the locals are up to, but nothing beats getting together in the same room picking brains.
So finally we have a Tauranga Web Meetup happening. The first meetup is at QJumpers, above Storage Solutions, Bay Central, Tauranga (by Briscoes, Rebel Sport etc).
View Larger Map
The Auckland Web Meetups have been going strong for a few years now and are the inspiration for the Tauranga Web Meetup. Hopefully we can get it happening in Tauranga. I look forward to meeting local web professionals and finding out who is out there. There’s a lot of work I’d like to farm out to the appropriately skilled people and I’m sure there’s lots of other locals thinking the same.
Let’s get together.
Recursive Navigation Menu for Umbraco 4.5
I recently migrated a site from Umbraco 4.0.2 to Umbraco 4.5 and moved to the new XML schema.
Lots of my XSLT automagically converted using the XsltUpdater for Umbraco package but not everything.
So here’s my updated Recursive Navigation Menu XSLT for the new Umbraco 4.5 XML schema :
In my case I also exclude pages of a certain docType, in this case Job, using [name()!='Job'] which is the equivalent of [@nodeTypeAlias!='Job'] in the old schema. So, you can do things like :
<xsl:if test="count($currentPage/ancestor-or-self::* [@level=$level]/* [@isDoc and string(umbracoNaviHide) != '1'] [name()!='Job']) > '0'">instead of
<xsl:if test="count($currentPage/ancestor-or-self::node [@level=$level]/node [@nodeTypeAlias!='Job'] [string(data [@alias='umbracoNaviHide']) != '1']) > '0'">or
instead of
Credit to Lordtoro for an example that helped me convert my old XSLT Recursive Navigation.