Rob's Blog - April 2008

Contents

Here are Rob's Blog entries for April 2008.

Blog entries for other months can be found in the main blog index.

One Nation Under CCTV

I should of posted this earlier. A couple of minutes from the office that well known graffiti artist Banksy has been at work.

Outside the entrance to the Royal Mail depot in Newman Street, just off Oxford Street in London, Banksy has painted "One Nation Under CCTV".

Mon 28/04/2008 13:35 Image186 - Banksy's One Nation Under CCTV painting in Newman Street London

Lifeblog Entry - Posted via Lifeblog from a Nokia smart phone
Entered: 2008-04-29 07:02:07

Links for 2008-04-24

Bookmarks from del.icio.us
Entered: 2008-04-25 00:15:03

Eastbourne In The Snow

It's been snowing in Eastbourne today, so here are a few pictures of our road covered in snow.

Dursley Road, Eastbourne in the snow - April 2008

Eastbourne Ambulance Station in the snow - April 2008

Eastbourne Ambulance Station in the snow - April 2008

Dursley Road, Eastbourne in the snow - April 2008

Entered: 2008-04-06 20:27:53
Modified: 2008-04-06 20:47:41

Using ExtraFields In Movable Type

I've been doing some work with Movable Type using the ExtraFields plugin recently.

One problem I had was offering an alternative if an extra field hadn't been set. It turns out that it's possible to nest an <MTElse> in the <MTIfExtraField> tag.

Here's an example. I have an extrafield called externalurl on an entry, if it exists I want to use that for the link, if not I want to use the entry's permalink.

<MTIfExtraField field="externalurl"> <$MTExtraFieldValue field="externalurl"$> <MTElse> <$MTEntryPermalink$> </MTElse> </MTIfExtraField>

This basically gives us the functionality of a <MTElseExtraField> tag.

Entered: 2008-04-02 16:12:42