<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -59,6 +59,20 @@
              maxHeight=&quot;{numMediaItems == 1 ? 63 : 47}&quot;
              includeInLayout=&quot;{!StringUtil.empty(itemDescription.htmlText)}&quot;
              visible=&quot;{itemDescription.includeInLayout}&quot; /&gt;
+
+    &lt;!-- Renders the properties of a story, such as event time/place --&gt;
+    &lt;mx:Repeater id=&quot;itemProperties&quot;
+                 dataProvider=&quot;{itemPropertyList}&quot;
+                 recycleChildren=&quot;true&quot; &gt;
+      &lt;mx:HBox styleName=&quot;itemProperty&quot;
+               width=&quot;100%&quot; &gt;
+        &lt;mx:Label styleName=&quot;itemPropertyName&quot;
+                  text=&quot;{itemProperties.currentItem.name + ':'}&quot; /&gt;
+        &lt;mx:Text  styleName=&quot;itemPropertyText&quot;
+                  width=&quot;100%&quot;
+                  text=&quot;{itemProperties.currentItem.text}&quot; /&gt;
+      &lt;/mx:HBox&gt;
+    &lt;/mx:Repeater&gt;
   &lt;/mx:VBox&gt;
 
   &lt;mx:Script&gt;&lt;![CDATA[
@@ -70,6 +84,7 @@
     import fbair.util.HashArray;
 
     import mx.events.FlexEvent;
+    import mx.collections.ArrayCollection;
 
     public static const MaxImageWidth:int = 117;
     public static const MaxImageHeight:int = 160;
@@ -79,6 +94,8 @@
     public var itemsHash:HashArray = new HashArray();
     [Bindable] public var numMediaItems:int = 0;
 
+    [Bindable] public var itemPropertyList:ArrayCollection;
+
     // When we were created
     private function creationComplete(event:FlexEvent):void {
       // Add any items to display tree that were already set in data
@@ -118,8 +135,12 @@
       // update the number of media items we have
       numMediaItems = data.media.length;
 
-        // Update our dimensions, if we have a display tree..
+      // Update our dimensions, if we have a display tree..
       if (mediaItems) updateImageDimensions();
+
+      // Create properties
+      if (data.properties is Array)
+        itemPropertyList = new ArrayCollection(data.properties);
     }
 
     // Fight global warming!</diff>
      <filename>fbair/nile/renderers/AttachmentRenderer.mxml</filename>
    </modified>
    <modified>
      <diff>@@ -84,7 +84,7 @@
   color: #808080;
 }
 
-.itemDescription, .itemSource, .itemLink {
+.itemDescription, .itemSource, .itemLink, .itemProperty {
   paddingLeft: -2;
 }
 
@@ -93,6 +93,18 @@
   paddingBottom: 2;
 }
 
+.itemProperty {
+
+}
+
+.itemPropertyName {
+  color: #AAAAAA;
+}
+
+.itemPropertyText {
+  color: #808080;
+}
+
 .likesPreview {
   horizontalGap: 2;
   paddingTop: 2;</diff>
      <filename>fbair/styles/renderers.css</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>bb81748fc2c244c4368787897cc28e4dc7f11bef</id>
    </parent>
  </parents>
  <author>
    <name>Lee Byron</name>
    <email>leebyron@lbyron.local</email>
  </author>
  <url>http://github.com/jubishop/Facebook-for-Adobe-AIR/commit/a2cc0292ce9a32d226626c5b037af50aea8fbf2a</url>
  <id>a2cc0292ce9a32d226626c5b037af50aea8fbf2a</id>
  <committed-date>2009-05-29T15:02:51-07:00</committed-date>
  <authored-date>2009-05-29T15:02:51-07:00</authored-date>
  <message>property renderer</message>
  <tree>1a94908d071df7de8f97ab0b6b3669017948b83e</tree>
  <committer>
    <name>Lee Byron</name>
    <email>leebyron@lbyron.local</email>
  </committer>
</commit>
