home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2012 January / maximum-cd-2012-01.iso / DiscContents / digsby_setup.exe / lib / plugins / facebook / res / properties.py.xml < prev    next >
Encoding:
Text File  |  2009-08-24  |  620 b   |  17 lines

  1. <?py if do_attachment and 'attachment' in post and 'properties' in post.attachment and post.attachment.properties: ?>
  2. <div class="properties">
  3.     <?py for property in post.attachment.properties: ?>
  4.     <div class='minor'>
  5.         <?py if 'name' in property and property.name: ?>
  6.             ${property.name}:
  7.         <?py #endif ?>
  8.         <?py if 'href' in property and property.href: ?>
  9.             <a href="${property.href}">${property.text}</a>
  10.         <?py else: ?>
  11.             <span class="major">${property.text}</span>
  12.         <?py #endif ?>
  13.     </div>
  14.     <?py #endfor ?>
  15. </div>
  16. <?py #endif ?>
  17.