<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic InfoWindow not being populated but just in IE!!! in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/infowindow-not-being-populated-but-just-in-ie/m-p/622250#M58122</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi - I have a fairly simple function that uses the attributeInspector to populate and infoWindow.&amp;nbsp; It works GREAT in Mozilla and Chome.&amp;nbsp; But nothing in IE.&amp;nbsp; The infoWindow is just empty - there is nothing there except the infoWindow's title.&amp;nbsp; Any suggestions?&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;function roadObstructionsPopup(evt) {
 var graphic = evt.graphic;
 var geom = graphic.geometry;
 hideAll();
 var lyInfos = [{
&amp;nbsp;&amp;nbsp; 'featureLayer' : roadObstructionsLayer,
&amp;nbsp;&amp;nbsp; 'showAttachments' : true,
&amp;nbsp;&amp;nbsp; 'isEditable' : true,
&amp;nbsp;&amp;nbsp; 'fieldInfos' : [{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'fieldName' : 'DESCRIPTION',
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'isEditable' : true,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'tooltip' : 'Short Description',
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'label' : 'Description:'
&amp;nbsp;&amp;nbsp;&amp;nbsp; }, {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'fieldName' : 'DATE_REPORTED',
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'isEditable' : true,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'tooltip' : 'Report Date',
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'label' : 'Date'
&amp;nbsp;&amp;nbsp;&amp;nbsp; }, {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'fieldName' : 'STATUS',
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'isEditable' : true,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'label' : 'Status:'
&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp; ]
&amp;nbsp; }
 ];
 try {
&amp;nbsp; attInspector = new esri.dijit.AttributeInspector({
&amp;nbsp;&amp;nbsp;&amp;nbsp; layerInfos : lyInfos
&amp;nbsp;&amp;nbsp; }, "infoWindowContents");
&amp;nbsp; var saveButton = new dijit.form.Button({
&amp;nbsp;&amp;nbsp;&amp;nbsp; label : "Save",
&amp;nbsp;&amp;nbsp;&amp;nbsp; "class" : "saveButton"
&amp;nbsp;&amp;nbsp; });
&amp;nbsp; dojo.place(saveButton.domNode, attInspector.deleteBtn.domNode, "after");
&amp;nbsp; dojo.connect(saveButton, "onClick", function () {
&amp;nbsp;&amp;nbsp; updateFeature.getLayer().applyEdits(null, [updateFeature], null, function(results){$('#alert').jGrowl("Road obstruction saved");
&amp;nbsp;&amp;nbsp; map.infoWindow.hide();}, function (error) {
&amp;nbsp;&amp;nbsp;&amp;nbsp; $('#alert').jGrowl("Could not save obstruction due to " + error.message, {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; header : 'Error'
&amp;nbsp;&amp;nbsp;&amp;nbsp; });
&amp;nbsp;&amp;nbsp; });
&amp;nbsp; map.infoWindow.hide();
&amp;nbsp; });
&amp;nbsp; 
&amp;nbsp; dojo.connect(attInspector, "onAttributeChange", function (feature, fieldName, newFieldValue) {
&amp;nbsp;&amp;nbsp; //store the updates to apply when the save button is clicked
&amp;nbsp;&amp;nbsp; updateFeature.attributes[fieldName] = newFieldValue;
&amp;nbsp; });
&amp;nbsp; dojo.connect(attInspector, "onNext", function (feature) {
&amp;nbsp;&amp;nbsp; updateFeature = feature;
&amp;nbsp; });
&amp;nbsp; dojo.connect(attInspector, "onDelete", function (feature) {
&amp;nbsp;&amp;nbsp; feature.getLayer().applyEdits(null, null, [feature], function(results){
&amp;nbsp; roadObstructionsLayer.refresh();
&amp;nbsp; $('#alert').jGrowl("Sucessfully deleted road obstruction");
&amp;nbsp; }, function (error) {
&amp;nbsp;&amp;nbsp;&amp;nbsp; $('#alert').jGrowl("Could not delete road obstructions due to " + error.message, {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; header : 'Error'
&amp;nbsp;&amp;nbsp;&amp;nbsp; });
&amp;nbsp;&amp;nbsp; });
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; map.infoWindow.hide();
&amp;nbsp; });
&amp;nbsp; var tolerance = 5;
&amp;nbsp; var pxWidth = map.extent.getWidth() / map.width;
&amp;nbsp; var padding = tolerance * pxWidth + 60;
&amp;nbsp; var selectQuerygeometry = new esri.geometry.Extent({
&amp;nbsp;&amp;nbsp;&amp;nbsp; 'xmin' : geom.x - padding,
&amp;nbsp;&amp;nbsp;&amp;nbsp; 'ymin' : geom.y - padding,
&amp;nbsp;&amp;nbsp;&amp;nbsp; 'xmax' : geom.x + padding,
&amp;nbsp;&amp;nbsp;&amp;nbsp; 'ymax' : geom.y + padding,
&amp;nbsp;&amp;nbsp;&amp;nbsp; 'spatialReference' : map.spatialReference
&amp;nbsp;&amp;nbsp; });
&amp;nbsp; selectQuery.geometry = selectQuerygeometry;
&amp;nbsp; roadObstructionsLayer.selectFeatures(selectQuery, esri.layers.FeatureLayer.SELECTION_NEW, function (features) {
&amp;nbsp;&amp;nbsp; if (features.length &amp;gt; 0) {
&amp;nbsp;&amp;nbsp;&amp;nbsp; console.log(attInspector.domNode);
&amp;nbsp;&amp;nbsp;&amp;nbsp; updateFeature = features[0];
&amp;nbsp;&amp;nbsp;&amp;nbsp; map.infoWindow.setTitle("Edit Window");
&amp;nbsp;&amp;nbsp;&amp;nbsp; map.infoWindow.setContent(attInspector.domNode);
&amp;nbsp;&amp;nbsp;&amp;nbsp; //dojo.byId('infoWindowContents').innerHTML = attInspector.domNode;
&amp;nbsp;&amp;nbsp;&amp;nbsp; map.infoWindow.resize(300, 400);
&amp;nbsp;&amp;nbsp;&amp;nbsp; console.log(features[0]);
&amp;nbsp;&amp;nbsp;&amp;nbsp; esri.show(dojo.byId("infoWindowContents"));
&amp;nbsp;&amp;nbsp;&amp;nbsp; //var screenPoint = geom.screenPoint;
&amp;nbsp;&amp;nbsp;&amp;nbsp; map.infoWindow.show(evt.graphic.geometry);
&amp;nbsp;&amp;nbsp; } else {
&amp;nbsp;&amp;nbsp;&amp;nbsp; map.infoWindow.hide();
&amp;nbsp;&amp;nbsp; }
&amp;nbsp; });
 } catch (error) {
&amp;nbsp; dijit.byId("infoWindowContents").destroy();
&amp;nbsp; roadObstructionsPopup(evt);
 }
}&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 13 May 2012 12:39:13 GMT</pubDate>
    <dc:creator>JayGregory</dc:creator>
    <dc:date>2012-05-13T12:39:13Z</dc:date>
    <item>
      <title>InfoWindow not being populated but just in IE!!!</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/infowindow-not-being-populated-but-just-in-ie/m-p/622250#M58122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi - I have a fairly simple function that uses the attributeInspector to populate and infoWindow.&amp;nbsp; It works GREAT in Mozilla and Chome.&amp;nbsp; But nothing in IE.&amp;nbsp; The infoWindow is just empty - there is nothing there except the infoWindow's title.&amp;nbsp; Any suggestions?&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="plain" name="code"&gt;function roadObstructionsPopup(evt) {
 var graphic = evt.graphic;
 var geom = graphic.geometry;
 hideAll();
 var lyInfos = [{
&amp;nbsp;&amp;nbsp; 'featureLayer' : roadObstructionsLayer,
&amp;nbsp;&amp;nbsp; 'showAttachments' : true,
&amp;nbsp;&amp;nbsp; 'isEditable' : true,
&amp;nbsp;&amp;nbsp; 'fieldInfos' : [{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'fieldName' : 'DESCRIPTION',
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'isEditable' : true,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'tooltip' : 'Short Description',
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'label' : 'Description:'
&amp;nbsp;&amp;nbsp;&amp;nbsp; }, {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'fieldName' : 'DATE_REPORTED',
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'isEditable' : true,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'tooltip' : 'Report Date',
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'label' : 'Date'
&amp;nbsp;&amp;nbsp;&amp;nbsp; }, {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'fieldName' : 'STATUS',
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'isEditable' : true,
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'label' : 'Status:'
&amp;nbsp;&amp;nbsp;&amp;nbsp; }
&amp;nbsp;&amp;nbsp; ]
&amp;nbsp; }
 ];
 try {
&amp;nbsp; attInspector = new esri.dijit.AttributeInspector({
&amp;nbsp;&amp;nbsp;&amp;nbsp; layerInfos : lyInfos
&amp;nbsp;&amp;nbsp; }, "infoWindowContents");
&amp;nbsp; var saveButton = new dijit.form.Button({
&amp;nbsp;&amp;nbsp;&amp;nbsp; label : "Save",
&amp;nbsp;&amp;nbsp;&amp;nbsp; "class" : "saveButton"
&amp;nbsp;&amp;nbsp; });
&amp;nbsp; dojo.place(saveButton.domNode, attInspector.deleteBtn.domNode, "after");
&amp;nbsp; dojo.connect(saveButton, "onClick", function () {
&amp;nbsp;&amp;nbsp; updateFeature.getLayer().applyEdits(null, [updateFeature], null, function(results){$('#alert').jGrowl("Road obstruction saved");
&amp;nbsp;&amp;nbsp; map.infoWindow.hide();}, function (error) {
&amp;nbsp;&amp;nbsp;&amp;nbsp; $('#alert').jGrowl("Could not save obstruction due to " + error.message, {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; header : 'Error'
&amp;nbsp;&amp;nbsp;&amp;nbsp; });
&amp;nbsp;&amp;nbsp; });
&amp;nbsp; map.infoWindow.hide();
&amp;nbsp; });
&amp;nbsp; 
&amp;nbsp; dojo.connect(attInspector, "onAttributeChange", function (feature, fieldName, newFieldValue) {
&amp;nbsp;&amp;nbsp; //store the updates to apply when the save button is clicked
&amp;nbsp;&amp;nbsp; updateFeature.attributes[fieldName] = newFieldValue;
&amp;nbsp; });
&amp;nbsp; dojo.connect(attInspector, "onNext", function (feature) {
&amp;nbsp;&amp;nbsp; updateFeature = feature;
&amp;nbsp; });
&amp;nbsp; dojo.connect(attInspector, "onDelete", function (feature) {
&amp;nbsp;&amp;nbsp; feature.getLayer().applyEdits(null, null, [feature], function(results){
&amp;nbsp; roadObstructionsLayer.refresh();
&amp;nbsp; $('#alert').jGrowl("Sucessfully deleted road obstruction");
&amp;nbsp; }, function (error) {
&amp;nbsp;&amp;nbsp;&amp;nbsp; $('#alert').jGrowl("Could not delete road obstructions due to " + error.message, {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; header : 'Error'
&amp;nbsp;&amp;nbsp;&amp;nbsp; });
&amp;nbsp;&amp;nbsp; });
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; map.infoWindow.hide();
&amp;nbsp; });
&amp;nbsp; var tolerance = 5;
&amp;nbsp; var pxWidth = map.extent.getWidth() / map.width;
&amp;nbsp; var padding = tolerance * pxWidth + 60;
&amp;nbsp; var selectQuerygeometry = new esri.geometry.Extent({
&amp;nbsp;&amp;nbsp;&amp;nbsp; 'xmin' : geom.x - padding,
&amp;nbsp;&amp;nbsp;&amp;nbsp; 'ymin' : geom.y - padding,
&amp;nbsp;&amp;nbsp;&amp;nbsp; 'xmax' : geom.x + padding,
&amp;nbsp;&amp;nbsp;&amp;nbsp; 'ymax' : geom.y + padding,
&amp;nbsp;&amp;nbsp;&amp;nbsp; 'spatialReference' : map.spatialReference
&amp;nbsp;&amp;nbsp; });
&amp;nbsp; selectQuery.geometry = selectQuerygeometry;
&amp;nbsp; roadObstructionsLayer.selectFeatures(selectQuery, esri.layers.FeatureLayer.SELECTION_NEW, function (features) {
&amp;nbsp;&amp;nbsp; if (features.length &amp;gt; 0) {
&amp;nbsp;&amp;nbsp;&amp;nbsp; console.log(attInspector.domNode);
&amp;nbsp;&amp;nbsp;&amp;nbsp; updateFeature = features[0];
&amp;nbsp;&amp;nbsp;&amp;nbsp; map.infoWindow.setTitle("Edit Window");
&amp;nbsp;&amp;nbsp;&amp;nbsp; map.infoWindow.setContent(attInspector.domNode);
&amp;nbsp;&amp;nbsp;&amp;nbsp; //dojo.byId('infoWindowContents').innerHTML = attInspector.domNode;
&amp;nbsp;&amp;nbsp;&amp;nbsp; map.infoWindow.resize(300, 400);
&amp;nbsp;&amp;nbsp;&amp;nbsp; console.log(features[0]);
&amp;nbsp;&amp;nbsp;&amp;nbsp; esri.show(dojo.byId("infoWindowContents"));
&amp;nbsp;&amp;nbsp;&amp;nbsp; //var screenPoint = geom.screenPoint;
&amp;nbsp;&amp;nbsp;&amp;nbsp; map.infoWindow.show(evt.graphic.geometry);
&amp;nbsp;&amp;nbsp; } else {
&amp;nbsp;&amp;nbsp;&amp;nbsp; map.infoWindow.hide();
&amp;nbsp;&amp;nbsp; }
&amp;nbsp; });
 } catch (error) {
&amp;nbsp; dijit.byId("infoWindowContents").destroy();
&amp;nbsp; roadObstructionsPopup(evt);
 }
}&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 13 May 2012 12:39:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/infowindow-not-being-populated-but-just-in-ie/m-p/622250#M58122</guid>
      <dc:creator>JayGregory</dc:creator>
      <dc:date>2012-05-13T12:39:13Z</dc:date>
    </item>
    <item>
      <title>Re: InfoWindow not being populated but just in IE!!!</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/infowindow-not-being-populated-but-just-in-ie/m-p/622251#M58123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt; 
&amp;nbsp; dojo.connect(saveButton, "onClick", function () {
&amp;nbsp;&amp;nbsp; updateFeature.getLayer().applyEdits(null, [updateFeature], null, function(results){$('#alert').jGrowl("Road obstruction saved");
&amp;nbsp;&amp;nbsp; map.infoWindow.hide();
&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;}&lt;/STRONG&gt;, function (error) {
&amp;nbsp;&amp;nbsp;&amp;nbsp; $('#alert').jGrowl("Could not save obstruction due to " + error.message, {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; header : 'Error'
&amp;nbsp;&amp;nbsp;&amp;nbsp; });
&amp;nbsp;&amp;nbsp; });
&amp;nbsp; map.infoWindow.hide();
&amp;nbsp; });
&amp;nbsp; &lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I think you have a syntax error in here that IE cares about but mozilla can get past.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 16:42:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/infowindow-not-being-populated-but-just-in-ie/m-p/622251#M58123</guid>
      <dc:creator>JeffPace</dc:creator>
      <dc:date>2021-12-12T16:42:34Z</dc:date>
    </item>
    <item>
      <title>Re: InfoWindow not being populated but just in IE!!!</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/infowindow-not-being-populated-but-just-in-ie/m-p/622252#M58124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks - I'm not sure that is the issue, because that bracket is in my original code - I just formatted the entire thing poorly so it's difficult to see. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;dojo.connect(saveButton, "onClick", function () {
&amp;nbsp;&amp;nbsp; updateFeature.getLayer().applyEdits(null, [updateFeature], null, function(results){$('#alert').jGrowl("Road obstruction saved");
&amp;nbsp;&amp;nbsp; map.infoWindow.hide();}, function (error) {
&amp;nbsp;&amp;nbsp;&amp;nbsp; $('#alert').jGrowl("Could not save obstruction due to " + error.message, {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; header : 'Error'
&amp;nbsp;&amp;nbsp;&amp;nbsp; });
&amp;nbsp;&amp;nbsp; });
&amp;nbsp; map.infoWindow.hide();
&amp;nbsp; });&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 16:42:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/infowindow-not-being-populated-but-just-in-ie/m-p/622252#M58124</guid>
      <dc:creator>JayGregory</dc:creator>
      <dc:date>2021-12-12T16:42:37Z</dc:date>
    </item>
    <item>
      <title>Re: InfoWindow not being populated but just in IE!!!</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/infowindow-not-being-populated-but-just-in-ie/m-p/622253#M58125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;right, i think its an error in the original code.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;That bracket seems to close the function, which means the comma after it doesnt make sense. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Just saying IE has a huge issue with commas where they dont belong.&amp;nbsp; It will shatter JSON, in IE for example, but chrome and mozilla will be fine.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2012 14:22:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/infowindow-not-being-populated-but-just-in-ie/m-p/622253#M58125</guid>
      <dc:creator>JeffPace</dc:creator>
      <dc:date>2012-05-14T14:22:53Z</dc:date>
    </item>
    <item>
      <title>Re: InfoWindow not being populated but just in IE!!!</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/infowindow-not-being-populated-but-just-in-ie/m-p/622254#M58126</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Ahh - okay - I understand what you're saying.&amp;nbsp; Maybe my javascript isn't up to par, but I was under the impression you were supposed to close callback functions explicitly:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;function (parameter1, parameter 2, successCallback {stuff}, errorCallback{stuff});&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Do I have that wrong?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 May 2012 20:07:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/infowindow-not-being-populated-but-just-in-ie/m-p/622254#M58126</guid>
      <dc:creator>JayGregory</dc:creator>
      <dc:date>2012-05-14T20:07:15Z</dc:date>
    </item>
  </channel>
</rss>

