<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"><channel><title>Morten Bock</title><link>http://www.mortenbock.dk/</link><description>A feed of new content on my website</description><item><author>Morten Bock</author><category>english</category><description>
&lt;p&gt;Umbraco is the friendly CMS. At least when you are a developer
or an editor. It's just one of those things that grow on you when
you get into the mindset of using the ultra flexible framework that
it is. Still, once in a while, a new user comes by and &lt;a
href="http://forum.umbraco.org/yaf_postst9074_I-am-really-not-liking-umbraco-so-far-Nothing-like-the-LAMPWAMP-CMS-out-there.aspx"&gt;
can not understand why it is so hard&lt;/a&gt; to create a site using the
existing packages. That makes me wonder. Because as time goes by,
the new users seem to &lt;a
href="http://forum.umbraco.org/yaf_postst9075_I-am-warming-up-to-umbraco-Nothing-like-the-LAMPWAMP-CMS-out-there.aspx"&gt;
warm up to the concepts&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;When I have been in positions where I recommended Umbraco to
companies, they always ask if there are a lot of
plugins/addons/modules (take your pick), and I have always answered
that Umbraco is not as such a modular CMS. Not because it is not
possible, but because it is often really fast to build the
functionality that you want, instead of installing a module that
might not fit your needs 100%, and then spend time trying to
squeeze your ideas into that module.&lt;/p&gt;

&lt;p&gt;With V4 of Umbraco a lot of effort has been but into making it
easier for the new users by giving them the Runway site that
supports Modules. This is cool, and probably will get some to hang
in a bit longer than otherwise, which again gives them time to warm
up to the concepts of Umbraco. But I am wondering if plug'n'play
modules on a larger scale would be the way to go?&lt;/p&gt;

&lt;p&gt;The upside would probably be a wider adaption in small site
installations, and maybe a more active marketplace for commercial
modules through the package repo. But is it the right way to
go?&lt;/p&gt;

&lt;p&gt;Personally I hope that Umbraco remains on the current balance
between flexibility and availability of modules. I like the concept
of starter sites which gives a great foundation on a blank Umbraco
install. But I am not a big fan of packages that hook directly into
the existing site. I do love the packages that simply supply some
new functionality, that you then have to spend a little time
configuring, which in turn gives you lots of control.&lt;/p&gt;

&lt;p&gt;So the question remains: How much of an Umbraco enthusiast
should you need to be, in order to be able to extend your site with
existing packages?&lt;/p&gt;

&lt;p&gt;I do not have the answer to that, but I am really looking
forward do discussing this and much more at the Core/MVP retreat
and Codegarden in June. See you all there!&lt;/p&gt;
</description><guid isPermaLink="false">1409</guid><link>http://www.mortenbock.dk/blog/2009/04/05/thoughts-about-umbraco-as-a-modular-cms.aspx</link><pubDate>Sun, 05 Apr 2009 12:03:52 +0100</pubDate><title>Thoughts about Umbraco as a modular CMS</title></item><item><author>Morten Bock</author><category>english</category><category>umbraco</category><category>aspnet</category><category>membership</category><category>runway</category><description>
&lt;p&gt;I played around with the membership features of Umbraco tonight,
and I thought I would share my findings. Mostly because it is just
incredibly easy to do without even compiling any code. Just pure
templates and a single entry in the web.config file is all it
takes.&lt;/p&gt;

&lt;p&gt;I started by installing the Runway package, to get a basic
website.&lt;/p&gt;

&lt;p&gt;First of all, I set up my members area with a member type and a
member group:&lt;/p&gt;

&lt;p&gt;&lt;a href="/media/images/image.png"&gt;&lt;img src="/media/images/image-thumb.png" width="170" height="172" alt="image" border="0" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px"/&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Now I need to tell asp.net which Member Type I want to use when
creating new users. Find this line in the web.config file:&lt;/p&gt;

&lt;p&gt;&amp;nbsp;&lt;/p&gt;

&lt;pre&gt;
&amp;lt;add name="UmbracoMembershipProvider"
  type="umbraco.providers.members.UmbracoMembershipProvider"
  enablePasswordRetrieval="false"
  enablePasswordReset="false"
  requiresQuestionAndAnswer="false"
  defaultMemberTypeAlias="WebsiteUser"
  passwordFormat="Hashed" /&amp;gt;
&lt;/pre&gt;

&lt;p&gt;&amp;nbsp;&lt;/p&gt;

&lt;p&gt;Edit the attribute "defaultMemberTypeAlias" to the Member Type
you want. In my case it is "WebsiteUser".&lt;/p&gt;

&lt;p&gt;Now we are ready to create the Sign Up form. I do this in a new
template, which is just a copy of the Runway Textpage, but I add
the following after the body text:&lt;/p&gt;

&lt;pre&gt;
&amp;lt;script runat="server"&amp;gt;

protected void CreateUserWizard1_CreatedUser(object sender, EventArgs e)
{
    Roles.AddUserToRole(CreateUserWizard1.UserName, "BasicUsers");
}

protected void CreateUserWizard1_ContinueButtonClick(object sender, EventArgs e)
{
    Response.Redirect("/member-area.aspx");
}

&amp;lt;/script&amp;gt;

&amp;lt;asp:CreateUserWizard ID="CreateUserWizard1" OnContinueButtonClick="CreateUserWizard1_ContinueButtonClick" OnCreatedUser="CreateUserWizard1_CreatedUser" runat="server"&amp;gt;
    &amp;lt;WizardSteps&amp;gt;
        &amp;lt;asp:CreateUserWizardStep ID="CreateUserWizardStep1" runat="server"&amp;gt;&amp;lt;/asp:CreateUserWizardStep&amp;gt;
        &amp;lt;asp:CompleteWizardStep ID="CompleteWizardStep1" runat="server"&amp;gt;&amp;lt;/asp:CompleteWizardStep&amp;gt;
    &amp;lt;/WizardSteps&amp;gt;
&amp;lt;/asp:CreateUserWizard&amp;gt;
&lt;/pre&gt;

&lt;p&gt;Inside the script block I react to two events. When the user is
created, I add him to the "BasicUsers" group, which is the one I
will give access to my members area. The other method simply
redirects the user to the member area when he finishes the signup
wizard. (&lt;strong&gt;EDIT:&lt;/strong&gt; Petr suggested that you use
ContinueDestinationPageUrl="/member-area.aspx" instead of the
redirect method, which I agree with)&lt;/p&gt;

&lt;p&gt;Now users can sign up for membership, but we also want them to
be able to log in. So we add this to the subNavigation div in the
Runway Textpage template:&lt;/p&gt;

&lt;pre&gt;
&amp;lt;asp:LoginView ID="UmbracoLoginView" runat="server"&amp;gt;
    &amp;lt;AnonymousTemplate&amp;gt;
        &amp;lt;asp:Login ID="Login1" runat="server"&amp;gt;&amp;lt;/asp:Login&amp;gt;
    &amp;lt;/AnonymousTemplate&amp;gt;
    &amp;lt;LoggedInTemplate&amp;gt;
        Welcome
        &amp;lt;asp:LoginName ID="LoginName1" runat="server" /&amp;gt;
        &amp;lt;asp:LoginStatus ID="LoginStatus1" runat="server" /&amp;gt;
    &amp;lt;/LoggedInTemplate&amp;gt;
&amp;lt;/asp:LoginView&amp;gt;
&lt;/pre&gt;

&lt;p&gt;That is all the code that is needed. All that is left is
creating content:&lt;/p&gt;

&lt;p&gt;&lt;a href="/media/images/image1.png"&gt;&lt;img src="/media/images/image-thumb1.png" width="232" height="226" alt="image" border="0" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px"/&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The login page is just a textpage with some text about logging
in. The Sign Up page is using my new template with the
CreateUserWizard control on it. The Member Area page has Public
Access set like this:&lt;/p&gt;

&lt;p&gt;&lt;a href="/media/images/image2.png"&gt;&lt;img src="/media/images/image-thumb2.png" width="244" height="223" alt="image" border="0" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px"/&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;That is all there is to it. Pretty easy huh? Feel free to post
any questions in the comments, and I will try and answer to the
best of my ability.&lt;/p&gt;
</description><guid isPermaLink="false">1394</guid><link>http://www.mortenbock.dk/blog/2009/04/01/setting-up-membership-in-umbraco.aspx</link><pubDate>Wed, 01 Apr 2009 00:33:43 +0100</pubDate><title>Setting up membership in Umbraco</title></item><item><author>Morten Bock</author><category>google-analytics</category><category>english</category><category>statistics</category><description>                    &lt;p&gt;
                        As many others, i think it is fun to look at the stats for my blog. So here is a
                        little info from Google Analytics:&lt;/p&gt;
                    &lt;h3&gt;
                        Most visited&lt;/h3&gt;
                    &lt;p&gt;
                        The top 10 url’s visited on this site are:&lt;/p&gt;
                    &lt;ul&gt;
                        &lt;li&gt;&lt;a href="http://www.mortenbock.dk/google-analytics-outgoing-links-50.htm"&gt;/google-analytics-outgoing-links-50.htm&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href="http://www.mortenbock.dk/"&gt;/&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href="http://www.mortenbock.dk/widevision-er-et-svindlerfirma-78.htm"&gt;/widevision-er-et-svindlerfirma-78.htm&lt;/a&gt;
                            (new)&lt;/li&gt;
                        &lt;li&gt;&lt;a href="http://www.mortenbock.dk/using-xslt-search-with-multiple-dropdowns-37.htm"&gt;
                            /using-xslt-search-with-multiple-dropdowns-37.htm&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href="http://www.mortenbock.dk/updated-cpalm-multiple-page-picker-for-v3-bugfix-57.htm"&gt;
                            /updated-cpalm-multiple-page-picker-for-v3-bugfix-57.htm&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href="http://www.mortenbock.dk/asus-acpi-drivers-and-intel-prosetwireless-73.htm"&gt;
                            /asus-acpi-drivers-and-intel-prosetwireless-73.htm&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href="http://www.mortenbock.dk/om-skribenten"&gt;/om-skribenten&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href="http://www.mortenbock.dk/umbraco-ecommerce-has-found-a-home-56.htm"&gt;/umbraco-ecommerce-has-found-a-home-56.htm&lt;/a&gt;&lt;/li&gt;
                        &lt;li&gt;&lt;a href="http://www.mortenbock.dk/converting-links-to-popups-using-javascript-74.htm"&gt;
                            /converting-links-to-popups-using-javascript-74.htm&lt;/a&gt; (new)&lt;/li&gt;
                        &lt;li&gt;&lt;a href="http://www.mortenbock.dk/tag/english"&gt;/tag/english&lt;/a&gt;&lt;/li&gt;
                    &lt;/ul&gt;
                    &lt;p&gt;
                        Only two of these were created in 2008. The Google Analytics post is massively in
                        the lead with 3,386 pageviews. The front page in comparison only has 1,289 pageviews.&lt;/p&gt;
                    &lt;h3&gt;
                        Traffic sources&lt;/h3&gt;
                    &lt;p&gt;
                        Search engines (Google) represent 63.08% of the traffic. Referring sites is 26.76%
                        and direct traffic is 10.16%. The Umbraco forum in itself is 7.51% of the traffic.&lt;/p&gt;
                    &lt;h3&gt;
                        Visitors&lt;/h3&gt;
                    &lt;p&gt;
                        48.45% of my visitors use Firefox, and 43.48% use IE. I take that as a sign that
                        this is a geek blog, which suits me fine :-D&lt;/p&gt;
                    &lt;p&gt;
                        36.26% are from Denmark, and 18.96% are from the United States. On a continental
                        level it looks like this:&lt;/p&gt;
                    &lt;ul&gt;
                        &lt;li&gt;Northern Europe 49.32%&lt;/li&gt;
                        &lt;li&gt;Northern America 22.08%&lt;/li&gt;
                        &lt;li&gt;Western Europe 9.09%&lt;/li&gt;
                        &lt;li&gt;Southern Europe 4.79%&lt;/li&gt;
                        &lt;li&gt;Australia and New Zealand 3.34%&lt;/li&gt;
                        &lt;li&gt;Eastern Europe 2.82%&lt;/li&gt;
                        &lt;li&gt;Southern Asia 2.43%&lt;/li&gt;
                        &lt;li&gt;Western Asia 1.94%&lt;/li&gt;
                        &lt;li&gt;South-Eastern Asia 1.38%&lt;/li&gt;
                        &lt;li&gt;Eastern Asia 1.00%&lt;/li&gt;
                    &lt;/ul&gt;
                    &lt;h3&gt;
                        Happy New Year&lt;/h3&gt;
                    &lt;p&gt;
                        Get safe into the new year, and thanks for all the visits :-)&lt;/p&gt;
</description><guid isPermaLink="false">1388</guid><link>http://www.mortenbock.dk/blog/2008/12/31/a-bit-of-stats-for-the-year-2008.aspx</link><pubDate>Wed, 31 Dec 2008 13:47:39 +0100</pubDate><title>A bit of stats for the year 2008</title></item><item><author>Morten Bock</author><category>english</category><category>umbraco</category><category>codegarden</category><category>evangelist</category><description>
&lt;p&gt;&amp;nbsp;&lt;/p&gt;

&lt;p&gt;I just received the news form &lt;a
href="http://umbraco.us/"&gt;CGUS&lt;/a&gt; that &lt;a
href="http://www.percipientstudios.com/"&gt;Douglas Robar&lt;/a&gt; has has
joined the Umbraco company as an evangelist. This is great news and
a positive recognition of the huge effort that Doug has put into
the forum and the community, which has also earned him two(?) MVP
awards.&lt;/p&gt;

&lt;p&gt;I like the idea of the evangelist position that I also know from
the Microsoft developer departments. (Don't know if this is common
in other places). It will be of great value to the community to
have Doug as maybe a sort of middle man between the users on the
forum and the core developers.&lt;/p&gt;

&lt;p&gt;Congratulations Doug, and I hope you have a blast spreading the
Umbraco gospel :-)&lt;/p&gt;

&lt;p&gt;&amp;nbsp;&lt;/p&gt;
</description><guid isPermaLink="false">1383</guid><link>http://www.mortenbock.dk/blog/2008/10/06/umbraco-gets-an-evangelist.aspx</link><pubDate>Mon, 06 Oct 2008 19:08:51 +0100</pubDate><title>Umbraco gets an evangelist</title></item><item><author>Morten Bock</author><category>english</category><category>umbraco</category><category>job</category><description>
&lt;p&gt;&amp;nbsp;&lt;/p&gt;

&lt;p&gt;After two good years at my current position at Up-Site, it is
time to try something new. So from September 1st it is on to new
things. What those things will be is not clear yet, but I hope it
will include lots of learning experiences, as I am eager to dig
deeper into the world of programming.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Will it include Umbraco?&lt;br /&gt;
&lt;/strong&gt;I hope so. One thins is for sure, I am not going to let go
of the Umbraco community, even if the future should not bring as
much work related Umbraco projects.&lt;/p&gt;

&lt;p&gt;All in all, this is an exiting time, so I will just kick it off
with escaping for a weekend to a cabin in the woods with some
friends from Holstebro Højskole. Fire and acoustic guitars, nothing
like it! (Oh, and guitarhero and beer)&lt;/p&gt;

&lt;p&gt;&amp;nbsp;&lt;/p&gt;
</description><guid isPermaLink="false">1371</guid><link>http://www.mortenbock.dk/blog/2008/07/31/time-for-new-challenges.aspx</link><pubDate>Thu, 31 Jul 2008 20:32:02 +0100</pubDate><title>Time for new challenges</title></item><item><author>Morten Bock</author><category>english</category><category>xml</category><category>xslt</category><category>tip</category><description>
&lt;p&gt;I just discovered this little tip that is quite handy (and
obvious, if you allready know it).&lt;/p&gt;

&lt;p&gt;Imagine you have som xml like this:&lt;/p&gt;

&lt;p&gt;&amp;nbsp;&lt;/p&gt;

&lt;pre&gt;
&amp;lt;message&amp;gt;
Thank god it is friday
&amp;lt;from&amp;gt;Tony&amp;lt;/from&amp;gt;
&amp;lt;/message&amp;gt;
&lt;/pre&gt;

&lt;p&gt;&amp;nbsp;&lt;/p&gt;

&lt;p&gt;Now, you would like to write out the actual message, and not who
it is from.&lt;/p&gt;

&lt;p&gt;If you use a regular value-of like this:&lt;/p&gt;

&lt;p&gt;&amp;nbsp;&lt;/p&gt;

&lt;pre&gt;
&amp;lt;xsl:value-of select="message" /&amp;gt;
&lt;/pre&gt;

&lt;p&gt;&amp;nbsp;&lt;/p&gt;

&lt;p&gt;Then you will get "Thank god it is fridayTony", and I don't
really want Tony's name in there. So I will do this instead:&lt;/p&gt;

&lt;p&gt;&amp;nbsp;&lt;/p&gt;

&lt;pre&gt;
&amp;lt;xsl:value-of select="message/text()" /&amp;gt;
&lt;/pre&gt;

&lt;p&gt;&amp;nbsp;&lt;/p&gt;

&lt;p&gt;And voila, it only writes out "Thank god it is friday" and
ignores the &amp;lt;from&amp;gt; element.&lt;/p&gt;

&lt;p&gt;EDIT:&lt;/p&gt;

&lt;p&gt;If you wanted to write out only the &amp;lt;from&amp;gt; element, you
would do:&lt;/p&gt;

&lt;p&gt;&amp;nbsp;&lt;/p&gt;

&lt;pre&gt;
&amp;lt;xsl:value-of select="message/from" /&amp;gt;
&lt;/pre&gt;

&lt;p&gt;&amp;nbsp;&lt;/p&gt;
</description><guid isPermaLink="false">1359</guid><link>http://www.mortenbock.dk/blog/2008/06/20/just-a-tiny-xslt-tip.aspx</link><pubDate>Fri, 20 Jun 2008 13:56:55 +0100</pubDate><title>Just a tiny XSLT tip</title></item><item><author>Morten Bock</author><category>english</category><category>umbraco</category><category>forum</category><category>rss</category><description>
&lt;p&gt;I don't know if you are as slow as I am, or even if this has
been out there for a long time, but I just discovered that the
Umbraco forum now again has body text in the RSS feed. This is
really nice, as the other feed just kind of sucked...&lt;/p&gt;

&lt;p&gt;But here it is: &lt;a href="http://forum.umbraco.org/rss.aspx"
title="http://forum.umbraco.org/rss.aspx"&gt;http://forum.umbraco.org/rss.aspx&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Now go forth and post!!!&lt;/p&gt;
</description><guid isPermaLink="false">1355</guid><link>http://www.mortenbock.dk/blog/2008/06/10/umbraco-forum-has-full-text-rss-again-wuhuu.aspx</link><pubDate>Tue, 10 Jun 2008 22:31:59 +0100</pubDate><title>Umbraco forum has full text RSS again - WUHUU</title></item><item><author>Morten Bock</author><category>english</category><category>festival</category><category>singer-songwriter</category><category>spot</category><description>                &lt;p&gt;
                    For those of you who don't know what the &lt;a href="http://www.spotfestival.dk/index.php?1212995608"&gt;
                        SPOT festival&lt;/a&gt; is about, I recommend taking a look at the website. It's a
                    two day festival in the middle of Aarhus, filled with upcoming artists of different
                    sorts. The whole thing reminds me at bit of the open space format that was used
                    at Codegarden. Basically you don't know anything about 80% of the performing bands,
                    so when you go to a concert, you must apply "The Law of The Two Feet". If you don't
                    like the show, just get up and go see another one.&lt;/p&gt;
                &lt;h4&gt;
                    A hidden gem&lt;/h4&gt;
                &lt;p&gt;When you are cruising a lot of concerts it is obviously harder for an artist to
                stand out from the vast crowd of talent, but when I sat down to hear &lt;a href="http://www.maiahirasawa.com/"&gt;
                    &lt;strong&gt;Maia Hirasawa&lt;/strong&gt;&lt;/a&gt; I did not want to go anywhere else. Just
                pure soothing music flowing from the stage with nice arrangements and a twist of
                meaningful lyrics (I'm not really a lyrics man, so don't take my word for it...).
                Instead, listen to it yourself (Try to forget the sound quality. The CD is much
                better, so &lt;a href="http://www.amazon.co.uk/Though-Im-Just-Maia-Hirasawa/dp/B000Q36Y9M/ref=sr_1_1?ie=UTF8&amp;amp;s=music&amp;amp;qid=1212997402&amp;amp;sr=8-1"&gt;
                    go buy it&lt;/a&gt;!):&lt;/p&gt;
                &lt;div id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:fa5cd764-0bd9-436f-a613-a78cc906d89c"
                    class="wlWriterSmartContent" style="padding-right: 0px; display: inline; padding-left: 0px;
                    padding-bottom: 0px; margin: 0px; padding-top: 0px"&gt;
                    &lt;div id="3a1b0b8d-f71d-46d4-95b0-50cdfa955a33" style="margin: 0px; padding: 0px;
                        display: inline;"&gt;
                        &lt;div&gt;
                            &lt;a href="http://www.youtube.com/watch?v=EWmyHPDowg4" target="_new"&gt;
                                &lt;img src="/media/images/videoe80bee07a2c7.jpg" alt="" width="425" height="355" /&gt;&lt;/a&gt;&lt;/div&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
                &lt;p&gt;
                    She also has a MySpace page, but I fucking hate MySpace, so I won't link to it.&lt;/p&gt;
                &lt;p&gt;
                    There was also a session called &lt;a href="http://nordiccowriters.blogspot.com/"&gt;Nordic
                        Cowriters&lt;/a&gt; that was basically a bunch of Nordic singer-songwriters that had
                    been placed in a mansion, and forced to write a lot of new songs. Very interesting
                    concert, and there was definitely some talent in that group.&lt;/p&gt;</description><guid isPermaLink="false">1353</guid><link>http://www.mortenbock.dk/blog/2008/06/09/spot-08-hidden-gems.aspx</link><pubDate>Mon, 09 Jun 2008 09:58:26 +0100</pubDate><title>SPOT 08: Hidden gems</title></item><item><author>Morten Bock</author><category>english</category><category>umbraco</category><category>codegarden08</category><description>
&lt;p&gt;This is just an ultra short writeup of some of the hidden gems
presented at one of the Open Space sessions at codegarden.&lt;/p&gt;

&lt;p&gt;You can now get the image source directly in the template:
&amp;lt;img src='&amp;lt;umbraco:Item field="umbracoFile" nodeid="1072"
runat="server"&amp;gt;&amp;lt;/umbraco:Item&amp;gt;' /&amp;gt; 'nodeid' is the id
of the media item.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;"Magic" document property names&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;These all work by adding a property to your document type with
the mentioned name as property alias&lt;/p&gt;

&lt;p&gt;&lt;em&gt;umbracoRedirect&lt;/em&gt; When a nodeid is entered in this
property on a page, Umbraco will redirect to that page.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;umbracoUrlName&lt;/em&gt; If you want to change/override the
niceUrl of a page, but don't want to change the pagename property,
this is the way to go.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;umbracoUrlAlias&lt;/em&gt; This will _add_ new url's that will
show the page. For example if you have a page hidden deep in your
nodetree, you can add "signup" to the property, and you can now
access the page on "/signup.aspx" (or without the .aspx if you are
using directory url's). You can add multiple shortcuts by
separating with a comma (no spaces):
"signup,membership,deeper/url/here".&lt;/p&gt;

&lt;p&gt;Feel free to add more of the gems from the session (I didn't
attend the whole thing)&lt;/p&gt;
</description><guid isPermaLink="false">1342</guid><link>http://www.mortenbock.dk/blog/2008/06/05/codegarden-08-hidden-gems.aspx</link><pubDate>Thu, 05 Jun 2008 22:56:35 +0100</pubDate><title>Codegarden 08: Hidden gems</title></item><item><author>Morten Bock</author><category>certification</category><category>english</category><category>mcp</category><category>umbraco</category><description>&lt;p&gt;Today I completed the Umbraco certification test, so I thought this would be a good time to add a little "Certifications" box in my sidebar. So now I'm an MCP and an UCP(?). Gotta get me a new businesscard as well....&lt;/p&gt;</description><guid isPermaLink="false">1336</guid><link>http://www.mortenbock.dk/blog/2008/04/24/certification-logos-in-place.aspx</link><pubDate>Thu, 24 Apr 2008 18:32:49 +0100</pubDate><title>Certification logos in place</title></item></channel></rss>
