Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Geoff Baldwin 80 posts 100 karma points
    Oct 03, 2010 @ 21:30
    Geoff Baldwin
    0

    accessing an umbraco field item for a Runway menu template

     

    Hi

    I have made the following additions to the Runway Module:

    1. added an additional Master Page 'Gallery Menu"  (essentially a copy of Gallery)
    2. allowed it to be used as a Template for the Gallery Document Type
    3. created a macro GalleryListGalleries to use in the template
    4. created an xslt file "GalleryListGalleriesTN.xslt" for the macro based on the "GalleryListAlbums.xslt"
    5. added a content item, type upload called pageThumbnail to the Galley document type

    The objective is to have a content structure

    Galleries (Doc type=Gallery)
          Gallery1 (Doc type=Gallery)
                 Album1 (Doc type=GalleryAlbum)
                 Album2
          Gallery 2
                 Album3
          Gallery3...............

    And when the Galleries page is selected to show the Galleries available as thumbnails.

    It all works and I can display the thumbnails with a picture from an image folder I have created. What I want to do is use the Content item pageThumbnail on each gallery page so that a user can upload the image that they want to use. ( I believe there is a package I can use to automatically resize an image to a thumbnail but I haven 't looked at this yet!)

    Here is the relevant part of the xlst file:

                <!-- display each image in the row, with the count of Galleries in each gallery -->
                <li>
                    <a href="{umbraco.library:NiceUrl(@id)}">
                        <!-- Next line should use the pageThumbnail item from each Gallery page not the 'hard wired path to a specific single image-->
                        <img src='\images\camera_thumb.jpg'/>
                        <br />
                        <b>
                            <xsl:value-of select="@nodeName"/>
                        </b>
                    </a>
                    <br />
                    <xsl:value-of select="count(./* [@isDoc])"/>

                    <xsl:text> Galler</xsl:text>
                    <xsl:if test="count(./* [@isDoc]) &gt; 1">
                        <xsl:text>ies</xsl:text>
                    </xsl:if>
                    <xsl:if test="count(./* [@isDoc]) &lt; 2">
                        <xsl:text>y</xsl:text>
                    </xsl:if>
                  
                </li>

                <!-- close the row of images -->

    Any help received gratefully!!

     

  • titorge 14 posts 28 karma points
    Oct 04, 2010 @ 00:18
    titorge
    0

    Check out the ImageGen for resizing of images.

    If i remember correctly you can do something like this:

    <a>
      <xsl:attribute name="href">
        <xsl:value-of select="umbraco.library:NiceUrl(@id)"/>
      </xsl:attribute>
      <img>
        <xsl:attribute name="src">
          <xsl:value-of select="data [@alias = 'pageThumbnail']"/>
        </xsl:attribute>
      </img>
    </a>

  • Geoff Baldwin 80 posts 100 karma points
    Oct 04, 2010 @ 14:39
    Geoff Baldwin
    0

    Thanks for the pointer titorge

    Unfotunately it doesn't work as you have presented it but I can see the logic there and I am trying different syntax aproaches to see if I can get it to work

    The tag appears in red which I guess indicates some kind of error although the page will save without throwing errors. The galleries page then displays OK in the site showing the three galleries below it as thumbnails with correct counts  but  there are no images are contained in the "thumbnails"

    A lot of guesswork as my knowledge of xsl is limmited to what I can glean from the Runway macros at the moment!

    Most of my changes so far result in errors when trying to save:(

    Does <xsl:value-of select="data [@alias = 'pageThumbnail']"/> return the path of the thumbnail?? This is what the src=    will be expecting isn't it?

    This also saves correctlyand does not show any red tags:

    <li>
                     <a>
                      <xsl:attribute name="href">
                        <xsl:value-of select="umbraco.library:NiceUrl(@id)"/>
                      </xsl:attribute>
                      <xsl:attribute name="img">
                        src= <xsl:value-of select="data [@alias = 'pageThumbnail']"/>
                      </xsl:attribute>
                    
                       <b>
                            <xsl:value-of select="@nodeName"/>
                       </b>
                      </a>
                    <br />
                    <xsl:value-of select="count(./* [@isDoc])"/>

                    <xsl:text> Galler</xsl:text>
                    <xsl:if test="count(./* [@isDoc]) &gt; 1">
                        <xsl:text>ies</xsl:text>
                    </xsl:if>
                    <xsl:if test="count(./* [@isDoc]) &lt; 2">
                        <xsl:text>y</xsl:text>
                    </xsl:if>
                 </li>


    The result is similar to above except that the vertical line infront of the node name has gone - still no image :(

  • titorge 14 posts 28 karma points
    Oct 04, 2010 @ 15:23
    titorge
    0

    <xsl:value-of select="data [@alias = 'pageThumbnail']"/> returns the path of the thumbnail.

    It can be the "for-each select loop" that is not set correctly?

    Can you post the XSLT so I can see more of your code.


     

  • Dirk De Grave 4541 posts 6021 karma points MVP 3x admin c-trib
    Oct 04, 2010 @ 15:58
    Dirk De Grave
    0

    I see you're mixing old-style xslt format with the new one. If you're on a v4.5+ version and haven't set useLegacyXmlSchema to false, then you'd need to use the new xml schema, and therefore a new xslt selector for your image. See here for more details (old/new syntax)

     

    Cheers,

    /Dirk

     

     

  • Geoff Baldwin 80 posts 100 karma points
    Oct 04, 2010 @ 21:57
    Geoff Baldwin
    0

    Hi Titorge / Dirk

    I appreciate you giving a total newbie to Umbraco, and xsl some help.

    At the moment I know absolute zero about xls so your post Dirk was a bit over my head (sorry!).   At some point in the not too distant future I shall be attempting some self education by looking at some of the Umbraco TV stuff.

    In the meantime, I am using the latest version of umbraco (4.5.2) to put together a fairly basic gallery site and am relying on using existing .xslt files and modifying them using a pretty ancient background in programming (360 BAL - an assembler language, COBOL, Basic, and more recently some basic .NET stuff and an understanding of HTML) to understand the logic and looking at other .xslt files for inspiration as to how to achieve what I want.

    So, to achieve my aim of providing a page which lists the gallery pages below it with a thumbnail, I took the galleryListAlbums.xslt file and attempted to edit the portion within the Li tags

  • I am currently 90% of the way there but cannot use the pageThumbnail item I have added to the Galley document type to display an image for each gallery.

     

    I have taken a look at the page Dirk directed me to and if I have understood correctly I should be using something like the  file  posted at the end of this post (with the bit I am trying to make work in bold) should be correct. Though as it essentially doesn't work at all (see below) it obviously isn't and I feel it's a backward step compared to where I was - getting everything I want except the images.

    I have two problems with this file

    1. I cannot see how within this syntax I point at the pageThumbnail item on the gallery page
    2. Even though I do not get any intellisense errors I get this error when I try and save the file (from the <xsl:variable name="media" select="umbraco.library:GetMedia($currentPage/imageAlias, 0)" /> statement I believe?
      Error occured

      System.OverflowException: Value was either too large or too small for an Int32.
      at System.Convert.ToInt32(Double value)
      at System.Double.System.IConvertible.ToInt32(IFormatProvider provider)
      at System.Convert.ChangeType(Object value, Type conversionType, IFormatProvider provider)
      at System.Xml.Xsl.Runtime.XmlQueryRuntime.ChangeTypeXsltArgument(XmlQueryType xmlType, Object value, Type destinationType)
      at System.Xml.Xsl.Runtime.XmlQueryContext.InvokeXsltLateBoundFunction(String name, String namespaceUri, IList`1[] args)
      at (XmlQueryRuntime {urn:schemas-microsoft-com:xslt-debug}runtime)
      at Root(XmlQueryRuntime {urn:schemas-microsoft-com:xslt-debug}runtime)
      at Execute(XmlQueryRuntime {urn:schemas-microsoft-com:xslt-debug}runtime)
      at System.Xml.Xsl.XmlILCommand.Execute(Object defaultDocument, XmlResolver dataSources, XsltArgumentList argumentList, XmlSequenceWriter results)
      at System.Xml.Xsl.XmlILCommand.Execute(Object defaultDocument, XmlResolver dataSources, XsltArgumentList argumentList, XmlWriter writer)
      at System.Xml.Xsl.XslCompiledTransform.Transform(IXPathNavigable input, XsltArgumentList arguments, XmlWriter results, XmlResolver documentResolver)
      at System.Xml.Xsl.XslCompiledTransform.Transform(IXPathNavigable input, XsltArgumentList arguments, TextWriter results)
      at umbraco.presentation.webservices.codeEditorSave.SaveXslt(String fileName, String oldName, String fileContents, Boolean ignoreDebugging)

    I have tried replacing

    <xsl:variable name="media" select="umbraco.library:GetMedia($currentPage/imageAlias, 0)" />

    with

    <xsl:variable name="media" select="umbraco.library:GetMedia(./data [@alias = 'pageThumbnail'], 0)"/>

    and

    <xsl:variable name="media" select="umbraco.library:GetMedia($currentPage [@alias = 'pageThumbnail'], 0)"/>

    (which makes some sense to me as I can see that it gets the URL of my pageThumbnail item.

    I get exactly the same error.

    Should I be using something other than "xsl: variable" which can hold more data?

    Treat me kindly and point out my error(s) bearing in mind my lack of expertise,

    Thanks

    Geoff

    version="1.0" encoding="UTF-8"?>
    DOCTYPE xsl:stylesheet [
        ENTITY nbsp " ">
    ]>
    <xsl:stylesheet
      version="1.0"
      xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
      xmlns:msxml="urn:schemas-microsoft-com:xslt"
      xmlns:umbraco.library="urn:umbraco.library"
      exclude-result-prefixes="msxml umbraco.library">

        <xsl:output method="xml" omit-xml-declaration="yes"/>

        <xsl:param name="currentPage"/>
        <xsl:variable name="imagesPerRow" select="6"/>

        

        <xsl:template match="/">
            <xsl:value-of select="umbraco.library:RegisterStyleSheetFile('RunwayGallery', '/css/RunwayGallery.css')"/>

            
            
            
            
            <xsl:variable name="ulOpen">
                <xsl:text><ul class="runwayGallery">xsl:text>
            xsl:variable>
            <xsl:variable name="ulClose">
                <xsl:text></ul>xsl:text>
            xsl:variable>

            <xsl:for-each select="$currentPage/* [@isDoc]">
                
                <xsl:if test="position() = 1 or position() mod $imagesPerRow = 0">
                    <xsl:value-of select="$ulOpen" disable-output-escaping="yes" />
                xsl:if>

                
                <li>
                   <a href="{umbraco.library:NiceUrl(@id)}">
                    <xsl:variable name="media" select="umbraco.library:GetMedia($currentPage/imageAlias, 0)" />

                    <img src="{$media/umbracoFile}" alt="{$media/altText}" />

                          
                      <br />
                          <b>
                              <xsl:value-of select="@nodeName"/>
                          b>
                   a>
                    <br />
                    <xsl:value-of select="count(./* [@isDoc])"/>

                    <xsl:text> Gallerxsl:text>
                    <xsl:if test="count(./* [@isDoc]) > 1"> 
                        <xsl:text>iesxsl:text>
                    xsl:if>
                    <xsl:if test="count(./* [@isDoc]) < 2">
                        <xsl:text>yxsl:text>
                    xsl:if>
                 li>

                
                <xsl:if test="position() mod $imagesPerRow = 0 or position() = last()">
                    <xsl:value-of select="$ulClose" disable-output-escaping="yes"/>
                xsl:if>
            xsl:for-each>

        xsl:template>

        

    xsl:stylesheet>

     

Copy Link
  • Dirk De Grave 4541 posts 6021 karma points MVP 3x admin c-trib
    Oct 04, 2010 @ 22:19
    Dirk De Grave
    0

    Hi Geoff,

    you're talking about the 'pageThumbnail' item you've added to the Gallery document type. Is it a media picker or a file upload property? Depending on the type of property, your xslt will be different.

    If it's a media picker, than you should replace 'imageAlias' with 'pageThumbnail', and use that in combo with GetMedia() should get you the info on the image in the media gallery. To get to the filename of that media item, use the /umbracoFile syntax (as in your code in bold).

    If it's an upload property, then you can just use <img src="{$currentPage/pageThumbnail}" /> as the property will save the path to the image as the value.

    Overflow exception is due to the fact that you don't have a "real" value for the GetMedia() function until runtime. Best practice is to add an conditional if statement as in:

    <xsl:if test="$currentPage/pageThumbnail">
      <xsl:variable name="media" select="umbraco.library:GetMedia($currentPage/imageAlias, 0)" />
      <img src="{$media/umbracoFile}" alt="{$media/altText}" />
    </xsl:if>

    Hope this helps.

    Regards,

    /Dirk

     

    Copy Link
  • Geoff Baldwin 80 posts 100 karma points
    Oct 05, 2010 @ 00:47
    Geoff Baldwin
    0

    Hi Dirk,

    I'm obviously an even bigger numpty than I thought :(

    I am failing miserably to understand this and I hope you don't mind too much my treating you as an on-line tutor.

    I created pageThumbnail by going to the Gallery document type then on the Generic Properties tab I clicked 'add new property' and added Page Thumbnail with alias pageThumbnail as type Upload on the Content Tab. ( I even deleted it and redefined it as the first field rather than the second)

    I then uploaded a thumbnail size picture (100x67 pixels).

    I modified the part of the xslt file that should display the image to :

     <a href="{umbraco.library:NiceUrl(@id)}">              
         <xsl:if test="$currentPage/pageThumbnail">
              <xsl:variable name="media" select="umbraco.library:GetMedia($currentPage/imageAlias, 0)" />
               <img src="{$currentPage/pageThumbnail}" />
        </xsl:if>

        <b>
        <xsl:value-of select="@nodeName"/>
        </b>
       </a>

    which if I read your last post correctly should work?
    (Though The xsl:if is testing for
    "$currentPage/pageThumbnail" to be true - Right?

    Why would the result be TRUE?)

    But what I get is:

    I also tried

                 <a href="{umbraco.library:NiceUrl(@id)}">              
                    <img src="{$currentPage/pageThumbnail}" />
       

        <b>
        <xsl:value-of select="@nodeName"/>
        </b>
       </a>

    This gave

    Note the | above the node name

     

    Copy Link
  • Dirk De Grave 4541 posts 6021 karma points MVP 3x admin c-trib
    Oct 05, 2010 @ 09:03
    Dirk De Grave
    0

    Hi Geoff,

    Let's try to solve your issue... If you're using an upload field, then you don't need the GetMedia() call as the upload property will store the path to the image file. Only if using a media picker, then you'd need the extra GetMedia() call. 

    Xslt if statement is there to check whether the property has a value, it's a short hand notation for:

    <xsl:if test="$currentPage/pageThumbnail != ''">

    So, let's try to figure out what's in your xml of the $currentPage variable.

    Can you add a

    <textarea><xsl:copy-of select="$currentPage" /></textarea>

    to your xslt and show us what's in the textarea when you browse the page.

     

    Looking forward to your info.

    Cheers,

    /Dirk

     

    Copy Link
  • titorge 14 posts 28 karma points
    Oct 05, 2010 @ 10:12
    titorge
    0



    Hi Geoff,

    If I understand you correctly from the image you last posted you are on the Galleries page and want to show a thumbnail for the Event, Portraits and Weddings gallery.
    These are child nodes of "Galleries" and each of these nodes have a thumbnail attached?

    You have a structure like this:

    Galleries (Doc type=Gallery)
          Events (Doc type=Gallery)
                 Album1 (Doc type=GalleryAlbum)            
          Portraits            
          Weddings
                 Album1 (Doc type=GalleryAlbum)
                 Album1 (Doc type=GalleryAlbum)

    As I understand you, you have added a upload property on the "Gallery" docType with an alias = pageThumbnail.
    On the Events, Portraits and Weddings page you have uploaded a thumbnail on each one.

    I have not been working with the XSLT v4.5+ versions, but I post this trying to help you out.

    (this is old XSLT but you may get an idea how to solve your problem. In this examle you scan through all child nodes(Events, Portraits and Weddings) of the page you are on, in this example the Galleries page (currentPage) and pull out the image path placed on each of the child nodes

    <xsl:for-each select="$currentPage/child::node ">
    <a>
      <xsl:attribute name="href">
        <xsl:value-of select="umbraco.library:NiceUrl(@id)"/>
      </xsl:attribute>
      <img>
        <xsl:attribute name="src">
          <xsl:value-of select="data [@alias = 'pageThumbnail']"/>
        </xsl:attribute>
      </img>
    </a>

    </xsl:for-each>

    If you look at the line <xsl:value-of select="data [@alias = 'pageThumbnail']"/> I have removed the "$currentPage" before "data[@alias..... "

    Hope this helps ;-)

    Tor Inge

    Copy Link
  • Geoff Baldwin 80 posts 100 karma points
    Oct 05, 2010 @ 11:59
    Geoff Baldwin
    0

    OK, really appreciate you guys taking the time.

    Feedback:
    @Tor Inge
    replacing <xsl:for-each select="$currentPage/* [@isDoc]"> with <xsl:for-each select="$currentPage/child::node ">
    results in nothing being displayed.

    <img>
        <xsl:attribute name="src">
          <xsl:value-of select="data [@alias = 'pageThumbnail']"/>
        </xsl:attribute>
    </img>
    The </img> tag appears in Red but the file saves OK. I get the galleries but no images as my previous post.

    @Dirk
    I get a text area displayed with the content shown below:

    There appears to be a pageThumbnail item for each gallery page and for my galleries a URL to a folder in media that actually contains the image.

     

    <runwayGallery id="1186" parentID="1048" level="2" writerID="0" creatorID="0" nodeType="1055" template="1215" sortOrder="10" createDate="2010-10-02T17:39:34" updateDate="2010-10-03T13:49:23" nodeName="Galleries" urlName="galleries" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186" isDoc=""><bodyText></bodyText><pageThumnail /><runwayGallery id="1190" parentID="1186" level="3" writerID="0" creatorID="0" nodeType="1055" template="1052" sortOrder="1" createDate="2010-10-02T17:49:28" updateDate="2010-10-04T23:21:46" nodeName="Events" urlName="events" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1190" isDoc=""><runwayGalleryAlbum id="1082" parentID="1190" level="4" writerID="0" creatorID="0" nodeType="1056" template="1053" sortOrder="1" createDate="2010-09-27T15:38:21" updateDate="2010-10-04T23:21:46" nodeName="Wings and Wheels" urlName="wings-and-wheels" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1190,1082" isDoc=""><bodyText>
    <p>A collection of photographs taken at Wings and Wheels 2010 at
    Dunsfold aerodrome in Sussex</p>
    </bodyText><zipBulkUpload /><RunwayGalleryPhoto id="1121" parentID="1082" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="1" createDate="2010-09-27T23:21:26" updateDate="2010-10-04T23:21:46" nodeName="IMG_3012 -  Copy" urlName="img_3012-copy" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1190,1082,1121" isDoc=""><umbracoFile>/media/883/IMG_3012 - Copy.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>53363</umbracoBytes><description></description><umbracoWidth>500</umbracoWidth><umbracoHeight>333</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1122" parentID="1082" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="2" createDate="2010-09-27T23:21:26" updateDate="2010-10-04T23:21:46" nodeName="IMG_3050 -  Copy" urlName="img_3050-copy" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1190,1082,1122" isDoc=""><umbracoFile>/media/895/IMG_3050 - Copy.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>31659</umbracoBytes><description></description><umbracoWidth>500</umbracoWidth><umbracoHeight>333</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1123" parentID="1082" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="3" createDate="2010-09-27T23:21:26" updateDate="2010-10-04T23:21:47" nodeName="IMG_3054 -  Copy" urlName="img_3054-copy" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1190,1082,1123" isDoc=""><umbracoFile>/media/907/IMG_3054 - Copy.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>33330</umbracoBytes><description></description><umbracoWidth>500</umbracoWidth><umbracoHeight>333</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1124" parentID="1082" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="4" createDate="2010-09-27T23:21:26" updateDate="2010-10-04T23:21:47" nodeName="IMG_3077 -  Copy" urlName="img_3077-copy" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1190,1082,1124" isDoc=""><umbracoFile>/media/919/IMG_3077 - Copy.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>35866</umbracoBytes><description></description><umbracoWidth>500</umbracoWidth><umbracoHeight>333</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1125" parentID="1082" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="5" createDate="2010-09-27T23:21:27" updateDate="2010-10-04T23:21:47" nodeName="IMG_3136 -  Copy" urlName="img_3136-copy" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1190,1082,1125" isDoc=""><umbracoFile>/media/931/IMG_3136 - Copy.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>30817</umbracoBytes><description></description><umbracoWidth>500</umbracoWidth><umbracoHeight>333</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1126" parentID="1082" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="6" createDate="2010-09-27T23:21:27" updateDate="2010-10-04T23:21:47" nodeName="IMG_3146 -  Copy" urlName="img_3146-copy" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1190,1082,1126" isDoc=""><umbracoFile>/media/943/IMG_3146 - Copy.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>32898</umbracoBytes><description></description><umbracoWidth>500</umbracoWidth><umbracoHeight>333</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1127" parentID="1082" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="7" createDate="2010-09-27T23:21:27" updateDate="2010-10-04T23:21:47" nodeName="IMG_3327 -  Copy" urlName="img_3327-copy" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1190,1082,1127" isDoc=""><umbracoFile>/media/955/IMG_3327 - Copy.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>24015</umbracoBytes><description></description><umbracoWidth>500</umbracoWidth><umbracoHeight>333</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1128" parentID="1082" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="8" createDate="2010-09-27T23:21:27" updateDate="2010-10-04T23:21:47" nodeName="IMG_3396 -  Copy" urlName="img_3396-copy" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1190,1082,1128" isDoc=""><umbracoFile>/media/967/IMG_3396 - Copy.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>21223</umbracoBytes><description></description><umbracoWidth>500</umbracoWidth><umbracoHeight>333</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1129" parentID="1082" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="9" createDate="2010-09-27T23:21:27" updateDate="2010-10-04T23:21:48" nodeName="IMG_3556" urlName="img_3556" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1190,1082,1129" isDoc=""><umbracoFile>/media/979/IMG_3556.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>20610</umbracoBytes><description></description><umbracoWidth>500</umbracoWidth><umbracoHeight>333</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1130" parentID="1082" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="10" createDate="2010-09-27T23:21:28" updateDate="2010-10-04T23:21:48" nodeName="IMG_3613 -  Copy" urlName="img_3613-copy" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1190,1082,1130" isDoc=""><umbracoFile>/media/991/IMG_3613 - Copy.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>20645</umbracoBytes><description></description><umbracoWidth>500</umbracoWidth><umbracoHeight>333</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1131" parentID="1082" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="11" createDate="2010-09-27T23:21:28" updateDate="2010-10-04T23:21:48" nodeName="IMG_3613" urlName="img_3613" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1190,1082,1131" isDoc=""><umbracoFile>/media/1003/IMG_3613.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>20645</umbracoBytes><description></description><umbracoWidth>500</umbracoWidth><umbracoHeight>333</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1132" parentID="1082" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="12" createDate="2010-09-27T23:21:28" updateDate="2010-10-04T23:21:48" nodeName="IMG_3623" urlName="img_3623" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1190,1082,1132" isDoc=""><umbracoFile>/media/1015/IMG_3623.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>22330</umbracoBytes><description></description><umbracoWidth>500</umbracoWidth><umbracoHeight>333</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1133" parentID="1082" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="13" createDate="2010-09-27T23:21:28" updateDate="2010-10-04T23:21:48" nodeName="IMG_3720" urlName="img_3720" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1190,1082,1133" isDoc=""><umbracoFile>/media/1027/IMG_3720.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>32299</umbracoBytes><description></description><umbracoWidth>500</umbracoWidth><umbracoHeight>333</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1134" parentID="1082" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="14" createDate="2010-09-27T23:21:29" updateDate="2010-10-04T23:21:48" nodeName="IMG_3723" urlName="img_3723" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1190,1082,1134" isDoc=""><umbracoFile>/media/1039/IMG_3723.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>32645</umbracoBytes><description></description><umbracoWidth>500</umbracoWidth><umbracoHeight>333</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1135" parentID="1082" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="15" createDate="2010-09-27T23:21:30" updateDate="2010-10-04T23:21:48" nodeName="IMG_3725" urlName="img_3725" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1190,1082,1135" isDoc=""><umbracoFile>/media/1051/IMG_3725.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>37422</umbracoBytes><description></description><umbracoWidth>500</umbracoWidth><umbracoHeight>333</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1136" parentID="1082" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="16" createDate="2010-09-27T23:21:31" updateDate="2010-10-04T23:21:48" nodeName="IMG_37702" urlName="img_37702" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1190,1082,1136" isDoc=""><umbracoFile>/media/1063/IMG_37702.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>32819</umbracoBytes><description></description><umbracoWidth>500</umbracoWidth><umbracoHeight>333</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1137" parentID="1082" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="17" createDate="2010-09-27T23:21:31" updateDate="2010-10-04T23:21:48" nodeName="IMG_37703" urlName="img_37703" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1190,1082,1137" isDoc=""><umbracoFile>/media/1075/IMG_37703.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>26753</umbracoBytes><description></description><umbracoWidth>500</umbracoWidth><umbracoHeight>333</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1138" parentID="1082" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="18" createDate="2010-09-27T23:21:31" updateDate="2010-10-04T23:21:49" nodeName="IMG_3962" urlName="img_3962" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1190,1082,1138" isDoc=""><umbracoFile>/media/1087/IMG_3962.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>20011</umbracoBytes><description></description><umbracoWidth>500</umbracoWidth><umbracoHeight>333</umbracoHeight></RunwayGalleryPhoto></runwayGalleryAlbum><pageThumbnail>/media/3538/sm-camera.gif</pageThumbnail><bodyText>
    <p>This is the events gallery</p>
    </bodyText></runwayGallery><runwayGallery id="1191" parentID="1186" level="3" writerID="0" creatorID="0" nodeType="1055" template="1052" sortOrder="2" createDate="2010-10-02T17:49:38" updateDate="2010-10-04T23:22:04" nodeName="Portraits" urlName="portraits" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1191" isDoc=""><pageThumbnail>/media/3662/weddingring.jpg</pageThumbnail><bodyText></bodyText></runwayGallery><runwayGallery id="1192" parentID="1186" level="3" writerID="0" creatorID="0" nodeType="1055" template="1052" sortOrder="3" createDate="2010-10-02T17:49:54" updateDate="2010-10-03T17:03:55" nodeName="Weddings" urlName="weddings" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192" isDoc=""><bodyText></bodyText><pageThumbnail>/media/3664/weddingring.jpg</pageThumbnail><runwayGalleryAlbum id="1157" parentID="1192" level="4" writerID="0" creatorID="0" nodeType="1056" template="1053" sortOrder="1" createDate="2010-09-28T21:22:17" updateDate="2010-10-04T23:19:15" nodeName="Pete Daly's" urlName="pete-daly's" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157" isDoc=""><RunwayGalleryPhoto id="1158" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="1" createDate="2010-09-28T21:22:49" updateDate="2010-10-03T13:49:25" nodeName="DPP_0001" urlName="dpp_0001" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1158" isDoc=""><umbracoFile>/media/1336/DPP_0001.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>88051</umbracoBytes><description>This is the first piccie in Petes Gallery</description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1159" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="2" createDate="2010-09-28T21:22:49" updateDate="2010-10-03T13:49:26" nodeName="DPP_0002" urlName="dpp_0002" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1159" isDoc=""><umbracoFile>/media/1348/DPP_0002.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>80372</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1160" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="3" createDate="2010-09-28T21:22:50" updateDate="2010-10-03T13:49:26" nodeName="DPP_0006" urlName="dpp_0006" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1160" isDoc=""><umbracoFile>/media/1360/DPP_0006.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>58121</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>600</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1161" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="4" createDate="2010-09-28T21:22:51" updateDate="2010-10-03T13:49:26" nodeName="DPP_0007" urlName="dpp_0007" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1161" isDoc=""><umbracoFile>/media/1372/DPP_0007.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>55671</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>600</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1162" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="5" createDate="2010-09-28T21:22:51" updateDate="2010-10-03T13:49:26" nodeName="DPP_0008" urlName="dpp_0008" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1162" isDoc=""><umbracoFile>/media/1384/DPP_0008.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>59629</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1163" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="6" createDate="2010-09-28T21:22:52" updateDate="2010-10-03T13:49:26" nodeName="DPP_0008bw" urlName="dpp_0008bw" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1163" isDoc=""><umbracoFile>/media/1396/DPP_0008bw.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>61503</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1164" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="7" createDate="2010-09-28T21:22:52" updateDate="2010-10-03T13:49:26" nodeName="DPP_0009" urlName="dpp_0009" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1164" isDoc=""><umbracoFile>/media/1408/DPP_0009.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>73325</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1165" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="8" createDate="2010-09-28T21:22:52" updateDate="2010-10-03T13:49:26" nodeName="DPP_0010" urlName="dpp_0010" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1165" isDoc=""><umbracoFile>/media/1420/DPP_0010.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>75389</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>600</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1166" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="9" createDate="2010-09-28T21:22:53" updateDate="2010-10-03T13:49:26" nodeName="DPP_0010bw" urlName="dpp_0010bw" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1166" isDoc=""><umbracoFile>/media/1432/DPP_0010bw.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>69600</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>600</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1167" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="10" createDate="2010-09-28T21:22:54" updateDate="2010-10-03T13:49:26" nodeName="DPP_0016" urlName="dpp_0016" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1167" isDoc=""><umbracoFile>/media/1444/DPP_0016.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>68874</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1168" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="11" createDate="2010-09-28T21:22:54" updateDate="2010-10-03T13:49:27" nodeName="DPP_0017" urlName="dpp_0017" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1168" isDoc=""><umbracoFile>/media/1456/DPP_0017.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>60541</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>600</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1169" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="12" createDate="2010-09-28T21:22:54" updateDate="2010-10-03T13:49:27" nodeName="DPP_0018" urlName="dpp_0018" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1169" isDoc=""><umbracoFile>/media/1468/DPP_0018.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>75228</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1170" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="13" createDate="2010-09-28T21:22:54" updateDate="2010-10-03T13:49:27" nodeName="DPP_0019" urlName="dpp_0019" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1170" isDoc=""><umbracoFile>/media/1480/DPP_0019.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>55079</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>600</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1171" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="14" createDate="2010-09-28T21:22:55" updateDate="2010-10-03T13:49:27" nodeName="DPP_0020" urlName="dpp_0020" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1171" isDoc=""><umbracoFile>/media/1492/DPP_0020.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>78150</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1172" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="15" createDate="2010-09-28T21:22:55" updateDate="2010-10-03T13:49:27" nodeName="DPP_0021" urlName="dpp_0021" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1172" isDoc=""><umbracoFile>/media/1504/DPP_0021.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>74502</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1173" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="16" createDate="2010-09-28T21:22:56" updateDate="2010-10-03T13:49:27" nodeName="DPP_0021BW" urlName="dpp_0021bw" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1173" isDoc=""><umbracoFile>/media/1516/DPP_0021BW.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>73957</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1174" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="17" createDate="2010-09-28T21:22:56" updateDate="2010-10-03T13:49:27" nodeName="DPP_0022" urlName="dpp_0022" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1174" isDoc=""><umbracoFile>/media/1528/DPP_0022.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>48347</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>600</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1175" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="18" createDate="2010-09-28T21:22:56" updateDate="2010-10-03T13:49:27" nodeName="DPP_0023" urlName="dpp_0023" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1175" isDoc=""><umbracoFile>/media/1540/DPP_0023.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>54611</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>600</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1176" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="19" createDate="2010-09-28T21:22:56" updateDate="2010-10-03T13:49:27" nodeName="DPP_0024" urlName="dpp_0024" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1176" isDoc=""><umbracoFile>/media/1552/DPP_0024.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>79004</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1177" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="20" createDate="2010-09-28T21:22:57" updateDate="2010-10-03T13:49:28" nodeName="DPP_0024bw" urlName="dpp_0024bw" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1177" isDoc=""><umbracoFile>/media/1564/DPP_0024bw.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>72855</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1178" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="21" createDate="2010-09-28T21:22:57" updateDate="2010-10-03T13:49:28" nodeName="DPP_0025" urlName="dpp_0025" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1178" isDoc=""><umbracoFile>/media/1576/DPP_0025.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>41521</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>600</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1179" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="22" createDate="2010-09-28T21:22:57" updateDate="2010-10-03T13:49:28" nodeName="DPP_0026" urlName="dpp_0026" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1179" isDoc=""><umbracoFile>/media/1588/DPP_0026.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>62168</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1193" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="23" createDate="2010-10-03T11:12:55" updateDate="2010-10-03T13:49:28" nodeName="DPP_0001 (1)" urlName="dpp_0001-(1)" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1193" isDoc=""><umbracoFile>/media/2757/DPP_0001.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>88051</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1194" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="24" createDate="2010-10-03T11:12:56" updateDate="2010-10-03T13:49:28" nodeName="DPP_0002 (1)" urlName="dpp_0002-(1)" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1194" isDoc=""><umbracoFile>/media/2769/DPP_0002.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>80372</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1195" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="25" createDate="2010-10-03T11:12:56" updateDate="2010-10-03T13:49:28" nodeName="DPP_0006 (1)" urlName="dpp_0006-(1)" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1195" isDoc=""><umbracoFile>/media/2781/DPP_0006.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>58121</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>600</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1196" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="26" createDate="2010-10-03T11:12:56" updateDate="2010-10-03T13:49:28" nodeName="DPP_0007 (1)" urlName="dpp_0007-(1)" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1196" isDoc=""><umbracoFile>/media/2793/DPP_0007.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>55671</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>600</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1197" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="27" createDate="2010-10-03T11:12:57" updateDate="2010-10-03T13:49:28" nodeName="DPP_0008 (1)" urlName="dpp_0008-(1)" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1197" isDoc=""><umbracoFile>/media/2805/DPP_0008.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>59629</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1198" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="28" createDate="2010-10-03T11:12:57" updateDate="2010-10-03T13:49:28" nodeName="DPP_0008bw (1)" urlName="dpp_0008bw-(1)" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1198" isDoc=""><umbracoFile>/media/2817/DPP_0008bw.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>61503</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1199" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="29" createDate="2010-10-03T11:12:58" updateDate="2010-10-03T13:49:28" nodeName="DPP_0009 (1)" urlName="dpp_0009-(1)" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1199" isDoc=""><umbracoFile>/media/2829/DPP_0009.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>73325</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1200" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="30" createDate="2010-10-03T11:12:58" updateDate="2010-10-03T13:49:29" nodeName="DPP_0010 (1)" urlName="dpp_0010-(1)" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1200" isDoc=""><umbracoFile>/media/2841/DPP_0010.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>75389</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>600</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1201" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="31" createDate="2010-10-03T11:12:58" updateDate="2010-10-03T13:49:29" nodeName="DPP_0010bw (1)" urlName="dpp_0010bw-(1)" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1201" isDoc=""><umbracoFile>/media/2853/DPP_0010bw.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>69600</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>600</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1202" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="32" createDate="2010-10-03T11:12:59" updateDate="2010-10-03T13:49:29" nodeName="DPP_0016 (1)" urlName="dpp_0016-(1)" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1202" isDoc=""><umbracoFile>/media/2865/DPP_0016.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>68874</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1203" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="33" createDate="2010-10-03T11:12:59" updateDate="2010-10-03T13:49:29" nodeName="DPP_0017 (1)" urlName="dpp_0017-(1)" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1203" isDoc=""><umbracoFile>/media/2877/DPP_0017.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>60541</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>600</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1204" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="34" createDate="2010-10-03T11:12:59" updateDate="2010-10-03T13:49:29" nodeName="DPP_0018 (1)" urlName="dpp_0018-(1)" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1204" isDoc=""><umbracoFile>/media/2889/DPP_0018.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>75228</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1205" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="35" createDate="2010-10-03T11:12:59" updateDate="2010-10-03T13:49:29" nodeName="DPP_0019 (1)" urlName="dpp_0019-(1)" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1205" isDoc=""><umbracoFile>/media/2901/DPP_0019.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>55079</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>600</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1206" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="36" createDate="2010-10-03T11:13:00" updateDate="2010-10-03T13:49:29" nodeName="DPP_0020 (1)" urlName="dpp_0020-(1)" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1206" isDoc=""><umbracoFile>/media/2913/DPP_0020.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>78150</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1207" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="37" createDate="2010-10-03T11:13:00" updateDate="2010-10-03T13:49:29" nodeName="DPP_0021 (1)" urlName="dpp_0021-(1)" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1207" isDoc=""><umbracoFile>/media/2925/DPP_0021.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>74502</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1208" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="38" createDate="2010-10-03T11:13:01" updateDate="2010-10-03T13:49:29" nodeName="DPP_0021BW (1)" urlName="dpp_0021bw-(1)" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1208" isDoc=""><umbracoFile>/media/2937/DPP_0021BW.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>73957</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1209" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="39" createDate="2010-10-03T11:13:01" updateDate="2010-10-03T13:49:30" nodeName="DPP_0022 (1)" urlName="dpp_0022-(1)" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1209" isDoc=""><umbracoFile>/media/2949/DPP_0022.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>48347</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>600</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1210" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="40" createDate="2010-10-03T11:13:01" updateDate="2010-10-03T13:49:30" nodeName="DPP_0023 (1)" urlName="dpp_0023-(1)" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1210" isDoc=""><umbracoFile>/media/2961/DPP_0023.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>54611</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>600</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1211" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="41" createDate="2010-10-03T11:13:01" updateDate="2010-10-03T13:49:30" nodeName="DPP_0024 (1)" urlName="dpp_0024-(1)" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1211" isDoc=""><umbracoFile>/media/2973/DPP_0024.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>79004</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1212" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="42" createDate="2010-10-03T11:13:02" updateDate="2010-10-03T13:49:30" nodeName="DPP_0024bw (1)" urlName="dpp_0024bw-(1)" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1212" isDoc=""><umbracoFile>/media/2985/DPP_0024bw.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>72855</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1213" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="43" createDate="2010-10-03T11:13:02" updateDate="2010-10-03T13:49:30" nodeName="DPP_0025 (1)" urlName="dpp_0025-(1)" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1213" isDoc=""><umbracoFile>/media/2997/DPP_0025.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>41521</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>600</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1214" parentID="1157" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="44" createDate="2010-10-03T11:13:02" updateDate="2010-10-03T13:49:30" nodeName="DPP_0026 (1)" urlName="dpp_0026-(1)" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1157,1214" isDoc=""><umbracoFile>/media/3009/DPP_0026.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>62168</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto><bodyText>
    <p>Some photos taken at my big friend Pete's wedding</p>
    </bodyText><zipBulkUpload /></runwayGalleryAlbum><runwayGalleryAlbum id="1261" parentID="1192" level="4" writerID="0" creatorID="0" nodeType="1056" template="1053" sortOrder="2" createDate="2010-10-03T16:58:28" updateDate="2010-10-03T16:59:05" nodeName="Another Peter" urlName="another-peter" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1261" isDoc=""><bodyText></bodyText><zipBulkUpload>/media/3934/wedding.zip</zipBulkUpload><RunwayGalleryPhoto id="1262" parentID="1261" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="1" createDate="2010-10-03T16:59:05" updateDate="2010-10-03T16:59:06" nodeName="DPP_0001" urlName="dpp_0001" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1261,1262" isDoc=""><umbracoFile>/media/3937/DPP_0001.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>88051</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1263" parentID="1261" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="2" createDate="2010-10-03T16:59:06" updateDate="2010-10-03T16:59:06" nodeName="DPP_0002" urlName="dpp_0002" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1261,1263" isDoc=""><umbracoFile>/media/3949/DPP_0002.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>80372</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1264" parentID="1261" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="3" createDate="2010-10-03T16:59:06" updateDate="2010-10-03T16:59:06" nodeName="DPP_0006" urlName="dpp_0006" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1261,1264" isDoc=""><umbracoFile>/media/3961/DPP_0006.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>58121</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>600</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1265" parentID="1261" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="4" createDate="2010-10-03T16:59:06" updateDate="2010-10-03T16:59:06" nodeName="DPP_0007" urlName="dpp_0007" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1261,1265" isDoc=""><umbracoFile>/media/3973/DPP_0007.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>55671</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>600</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1266" parentID="1261" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="5" createDate="2010-10-03T16:59:06" updateDate="2010-10-03T16:59:07" nodeName="DPP_0008" urlName="dpp_0008" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1261,1266" isDoc=""><umbracoFile>/media/3985/DPP_0008.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>59629</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1267" parentID="1261" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="6" createDate="2010-10-03T16:59:07" updateDate="2010-10-03T16:59:07" nodeName="DPP_0008bw" urlName="dpp_0008bw" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1261,1267" isDoc=""><umbracoFile>/media/3997/DPP_0008bw.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>61503</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1268" parentID="1261" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="7" createDate="2010-10-03T16:59:07" updateDate="2010-10-03T16:59:07" nodeName="DPP_0009" urlName="dpp_0009" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1261,1268" isDoc=""><umbracoFile>/media/4009/DPP_0009.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>73325</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1269" parentID="1261" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="8" createDate="2010-10-03T16:59:07" updateDate="2010-10-03T16:59:08" nodeName="DPP_0010" urlName="dpp_0010" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1261,1269" isDoc=""><umbracoFile>/media/4021/DPP_0010.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>75389</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>600</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1270" parentID="1261" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="9" createDate="2010-10-03T16:59:08" updateDate="2010-10-03T16:59:08" nodeName="DPP_0010bw" urlName="dpp_0010bw" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1261,1270" isDoc=""><umbracoFile>/media/4033/DPP_0010bw.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>69600</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>600</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1271" parentID="1261" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="10" createDate="2010-10-03T16:59:08" updateDate="2010-10-03T16:59:08" nodeName="DPP_0016" urlName="dpp_0016" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1261,1271" isDoc=""><umbracoFile>/media/4045/DPP_0016.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>68874</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1272" parentID="1261" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="11" createDate="2010-10-03T16:59:08" updateDate="2010-10-03T16:59:08" nodeName="DPP_0017" urlName="dpp_0017" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1261,1272" isDoc=""><umbracoFile>/media/4057/DPP_0017.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>60541</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>600</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1273" parentID="1261" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="12" createDate="2010-10-03T16:59:09" updateDate="2010-10-03T16:59:09" nodeName="DPP_0018" urlName="dpp_0018" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1261,1273" isDoc=""><umbracoFile>/media/4069/DPP_0018.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>75228</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1274" parentID="1261" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="13" createDate="2010-10-03T16:59:09" updateDate="2010-10-03T16:59:09" nodeName="DPP_0019" urlName="dpp_0019" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1261,1274" isDoc=""><umbracoFile>/media/4081/DPP_0019.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>55079</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>600</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1275" parentID="1261" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="14" createDate="2010-10-03T16:59:09" updateDate="2010-10-03T16:59:09" nodeName="DPP_0020" urlName="dpp_0020" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1261,1275" isDoc=""><umbracoFile>/media/4093/DPP_0020.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>78150</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1276" parentID="1261" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="15" createDate="2010-10-03T16:59:09" updateDate="2010-10-03T16:59:10" nodeName="DPP_0021" urlName="dpp_0021" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1261,1276" isDoc=""><umbracoFile>/media/4105/DPP_0021.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>74502</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1277" parentID="1261" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="16" createDate="2010-10-03T16:59:10" updateDate="2010-10-03T16:59:10" nodeName="DPP_0021BW" urlName="dpp_0021bw" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1261,1277" isDoc=""><umbracoFile>/media/4117/DPP_0021BW.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>73957</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1278" parentID="1261" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="17" createDate="2010-10-03T16:59:10" updateDate="2010-10-03T16:59:10" nodeName="DPP_0022" urlName="dpp_0022" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1261,1278" isDoc=""><umbracoFile>/media/4129/DPP_0022.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>48347</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>600</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1279" parentID="1261" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="18" createDate="2010-10-03T16:59:10" updateDate="2010-10-03T16:59:10" nodeName="DPP_0023" urlName="dpp_0023" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1261,1279" isDoc=""><umbracoFile>/media/4141/DPP_0023.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>54611</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>600</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1280" parentID="1261" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="19" createDate="2010-10-03T16:59:10" updateDate="2010-10-03T16:59:11" nodeName="DPP_0024" urlName="dpp_0024" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1261,1280" isDoc=""><umbracoFile>/media/4153/DPP_0024.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>79004</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1281" parentID="1261" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="20" createDate="2010-10-03T16:59:11" updateDate="2010-10-03T16:59:11" nodeName="DPP_0024bw" urlName="dpp_0024bw" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1261,1281" isDoc=""><umbracoFile>/media/4165/DPP_0024bw.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>72855</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1282" parentID="1261" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="21" createDate="2010-10-03T16:59:11" updateDate="2010-10-03T16:59:11" nodeName="DPP_0025" urlName="dpp_0025" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1261,1282" isDoc=""><umbracoFile>/media/4177/DPP_0025.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>41521</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>600</umbracoHeight></RunwayGalleryPhoto><RunwayGalleryPhoto id="1283" parentID="1261" level="5" writerID="0" creatorID="0" nodeType="1057" template="1054" sortOrder="22" createDate="2010-10-03T16:59:11" updateDate="2010-10-03T16:59:12" nodeName="DPP_0026" urlName="dpp_0026" writerName="Administrator" creatorName="Administrator" path="-1,1048,1186,1192,1261,1283" isDoc=""><umbracoFile>/media/4189/DPP_0026.jpg</umbracoFile><umbracoExtension>jpg</umbracoExtension><umbracoBytes>62168</umbracoBytes><description></description><umbracoWidth>900</umbracoWidth><umbracoHeight>1350</umbracoHeight></RunwayGalleryPhoto></runwayGalleryAlbum></runwayGallery></runwayGallery>





    Copy Link
  • Dirk De Grave 4541 posts 6021 karma points MVP 3x admin c-trib
    Oct 05, 2010 @ 12:23
    Dirk De Grave
    0

     

    <xsl:for-each select="$currentPage/* [@isDoc]">

          <xsl:if test="position() = 1 or position() mod $imagesPerRow = 0">
            <xsl:value-of select="$ulOpen" disable-output-escaping="yes" />
          </xsl:if>


          <li>
            <a href="{umbraco.library:NiceUrl(./@id)}">

              <img src="{./pageThumbnail}" alt="" />

              <br />
              <b>
                <xsl:value-of select="@nodeName"/>
              </b>
            </a>
            <br />
            <xsl:value-of select="count(./* [@isDoc])"/>

            <xsl:text> Galler</xsl:text>
            <xsl:if test="count(./* [@isDoc]) &gt; 1">
              <xsl:text>ies</xsl:text>
            </xsl:if>
            <xsl:if test="count(./* [@isDoc]) &lt; 2">
              <xsl:text>y</xsl:text>
            </xsl:if>
          </li>


          <xsl:if test="position() mod $imagesPerRow = 0 or position() = last()">
            <xsl:value-of select="$ulClose" disable-output-escaping="yes"/>
          </xsl:if>
        </xsl:for-each>

    Can you try this?

     

    Cheers,

    /Dirk

     

     

     

     

    Copy Link
  • Geoff Baldwin 80 posts 100 karma points
    Oct 05, 2010 @ 13:14
    Geoff Baldwin
    0

    Whoopeeeee!

    Dirk, you are a star!! Many thanks

    And by changing the <img> statement to

    :<img src="{concat(substring-before(./pageThumbnail,'.'), '_thumb.jpg')}"/>

    I don't have to worry about resizing the files to thumbnail size first!!

    In terms of understanding why this works, I am familiar with the concept of '.' meaning 'where I am now' but why should this work when $currentPage doesn't?

    Copy Link
  • Dirk De Grave 4541 posts 6021 karma points MVP 3x admin c-trib
    Oct 05, 2010 @ 13:19
    Dirk De Grave
    0

    Yup, the '.' refers to the current item being processed in the loop (shorthand for current()), while $currentPage is the complete xml fragment of the page you're browsing passed as a variable to your xslt (as a XPathNodeIterator)

    Whoopeeee and congrats! Now your journey can really start!

     

    Good luck

    Cheers,

    /Dirk

    Copy Link
  • Please Sign in or register to post replies

    Write your reply to:

    Draft