/*****************************************************************************************
   
Copyright (c) Microsoft Corporation. All rights reserved.

****************************************************************************************/

//  --------------------------------------------------------------
//  Data comes from the Live Clipboard specification
//  --------------------------------------------------------------
        var g_SampleLiveClipboardContactData = 
            "<?xml version='1.0' encoding='utf-8'?>" + 
            "<lc:liveclipboard version='0.93' xmlns:lc='http://www.microsoft.com/schemas/liveclipboard' description='Contact Info for Jack Ozzie'>" + 
              "<lc:data>" + 
                "<lc:format type='vcard' contenttype='application/xhtml+xml'>" + 
                  "<lc:item>" + 
                    "<div class='vcard'>" + 
                     "<span class='fn n'>" + 
                      "<span class='given-name'>Jack</span>" + 
                      "<span class='family-name'>Ozzie</span>" + 
                     "</span>" + 
                     "<div class='adr'>" + 
                       "<span class='type'>work</span> address: " + 
                       "<span class='street-address'>1 Microsoft Way</span>, " + 
                       "<span class='locality'>Redmond</span>, " + 
                       "<span class='region'>WA</span>  " + 
                       "<span class='postal-code'>98052</span>" + 
                     "</div>" + 
                     "<div class='tel'>" + 
                       "<span class='type'>work</span>" + 
                       "<abbr class='type' title='voice'> phone: </abbr>" + 
                       "<span class='value'>+1-425-555-1212</span>" + 
                     "</div>" + 
                    "</div>" + 
                  "</lc:item>" + 
                "</lc:format>" + 
              "</lc:data>" + 
            "</lc:liveclipboard>";

        var g_SampleLiveClipboardCalendarEntryData = 
            "<?xml version='1.0' encoding='utf-8' ?>" + 
            "<lc:liveclipboard version='0.93' xmlns:lc='http://www.microsoft.com/schemas/liveclipboard' description='Calendar Entry for The Belleuvue Vegetarian February Meetup'>" + 
             "<lc:data>" + 
              "<lc:format type='vcalendar' contenttype='application/xhtml+xml'>" + 
               "<lc:item>" + 
                "<div class='vevent'>" + 
                 "<a class='url' href='http://www.eventful.com/E1-001-000629872-2'>" + 
                  "<span class='summary'>The Bellevue Vegetarian February Meetup</span>" + 
                 "</a> " + 
                 "<div class='description'>Let&#39;s all get together and meet over a great veggie dinner at Teapot Vegetarian House in Redmond!</div>" + 
                 "<div>Start Date: <abbr class='dtstart' title='20060208T180000'>February 8, 2006</abbr></div>" + 
                 "<div>End Date: <abbr class='dtend' title='20060208T180000'>February 8, 2006</abbr></div>" + 
                 "<div>Location: <span class='location'>Bellevue,Washington 98004</span></div>" + 
                 "<div>UID: <span class='uid'>E1-001-000629872-2</span></div> " + 
                 "<div>Last Updated: <abbr class='dtstamp' title='20060119T184157Z'>January 19, 2006</abbr></div>" + 
                "</div>" + 
               "</lc:item>" + 
              "</lc:format>" + 
              "<lc:format contenttype='text/calendar'>" + 
               "<lc:item>" + 
                "<![CDATA[" + 
                 "BEGIN:VCALENDAR" + 
                 "METHOD:PUBLISH" + 
                 "VERSION:2.0" + 
                 "BEGIN:VEVENT" + 
                 "URL:http://www.eventful.com/E1-001-000629872-2" + 
                 "DTSTART:20060208T180000" + 
                 "DTEND:20060208T180000" + 
                 "DTSTAMP:20060119T184157Z" + 
                 "SUMMARY:The Bellevue Vegetarian February Meetup" + 
                 "DESCRIPTION:Let's all get together and meet over a great veggie dinner at Teapot Vegetarian House in Redmond!" + 
                 "UID:E1-001-000629872-2" + 
                 "LOCATION:Bellevue\,Washington  98004" + 
                 "END:VEVENT" + 
                 "END:VCALENDAR" + 
                "]]>" + 
               "</lc:item>" + 
              "</lc:format>" + 
             "</lc:data>" + 
            "</lc:liveclipboard>";

