<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Mantis and Jessamine</title>
	<atom:link href="http://www.carolinamantis.com/wordpress/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://www.carolinamantis.com/wordpress</link>
	<description>Thoughts on Web Applications and Design</description>
	<lastBuildDate>Fri, 18 May 2012 19:14:36 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on Trimming Trailing Whitespace in Adobe DreamWeaver by Tony</title>
		<link>http://www.carolinamantis.com/wordpress/?p=208&#038;cpage=1#comment-13308</link>
		<dc:creator>Tony</dc:creator>
		<pubDate>Fri, 18 May 2012 19:14:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.carolinamantis.com/wordpress/?p=208#comment-13308</guid>
		<description>Hope it works for you!  Please come back and let me know if you encounter any problems with it.</description>
		<content:encoded><![CDATA[<p>Hope it works for you!  Please come back and let me know if you encounter any problems with it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Trimming Trailing Whitespace in Adobe DreamWeaver by GD</title>
		<link>http://www.carolinamantis.com/wordpress/?p=208&#038;cpage=1#comment-13285</link>
		<dc:creator>GD</dc:creator>
		<pubDate>Thu, 17 May 2012 22:26:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.carolinamantis.com/wordpress/?p=208#comment-13285</guid>
		<description>Thanks for the DW extension.  Works like a charm.  No more bogus SVN conflicts (I hope)!</description>
		<content:encoded><![CDATA[<p>Thanks for the DW extension.  Works like a charm.  No more bogus SVN conflicts (I hope)!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ColdFusion, DDX, and PDFs Part 2: Styling a Table of Contents by Bryn Parrott</title>
		<link>http://www.carolinamantis.com/wordpress/?p=151&#038;cpage=1#comment-10588</link>
		<dc:creator>Bryn Parrott</dc:creator>
		<pubDate>Mon, 16 Jan 2012 01:42:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.carolinamantis.com/wordpress/?p=151#comment-10588</guid>
		<description>I copied the DDX code specified in your example.
Constantly I get the result: The DDX specified is not valid. 
info: Check for invalid construct or restricted keywords. Detail: 
  

This is with ColdFusion 9.0
I can get things working with 



 
   
  
     
         
         
     
 



However of course then I dont get the desired formatting (particularly the font.)

Obviously I am missing something.  Neither of the assembler variables :
  
are expressly mentioned in the CF Documentation as either supported or not supported; however I take it on faith that you had this working.

My instance of ColdFusion 9 has CF901 applied along with CHF 2.

Is there some clue you can impart that might assist ?
Cheers,....</description>
		<content:encoded><![CDATA[<p>I copied the DDX code specified in your example.<br />
Constantly I get the result: The DDX specified is not valid.<br />
info: Check for invalid construct or restricted keywords. Detail: </p>
<p>This is with ColdFusion 9.0<br />
I can get things working with </p>
<p>However of course then I dont get the desired formatting (particularly the font.)</p>
<p>Obviously I am missing something.  Neither of the assembler variables :</p>
<p>are expressly mentioned in the CF Documentation as either supported or not supported; however I take it on faith that you had this working.</p>
<p>My instance of ColdFusion 9 has CF901 applied along with CHF 2.</p>
<p>Is there some clue you can impart that might assist ?<br />
Cheers,&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a JSONP Data Provider in PHP by Tony</title>
		<link>http://www.carolinamantis.com/wordpress/?p=29&#038;cpage=1#comment-9838</link>
		<dc:creator>Tony</dc:creator>
		<pubDate>Wed, 14 Dec 2011 21:58:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.carolinamantis.com/wordpress/?p=29#comment-9838</guid>
		<description>Thanks, Kasimir for the kind words.  I was investigating the same origin header information, but knew that my JSONP implementation worked without having to reconfigure my web servers.

Big thank  you for the PHP proxy code, that&#039;s really nice, and much better than the simple code I posted!</description>
		<content:encoded><![CDATA[<p>Thanks, Kasimir for the kind words.  I was investigating the same origin header information, but knew that my JSONP implementation worked without having to reconfigure my web servers.</p>
<p>Big thank  you for the PHP proxy code, that&#8217;s really nice, and much better than the simple code I posted!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a JSONP Data Provider in PHP by Kasimir</title>
		<link>http://www.carolinamantis.com/wordpress/?p=29&#038;cpage=1#comment-9790</link>
		<dc:creator>Kasimir</dc:creator>
		<pubDate>Tue, 13 Dec 2011 09:09:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.carolinamantis.com/wordpress/?p=29#comment-9790</guid>
		<description>This is the best explanation by far I&#039;ve found covering the business of hooking up the JSONP stuff in PHP/jQuery fashion. Examples are short and concise, pointing out exactly what matters - the callback, the wrapper, the header. Only thing, two and a half years on, is I guess you could drop the stuff about the PEAR package for old PHP versions. But then again, it&#039;s easy to gloss over that.
Oh, and Peter&#039;s wrong about the origin-header. Internet Explorer (9- at least) doesn&#039;t even understand that, so exactly that is a very good reason to implement JSONP to allow cross-domain. For people who can&#039;t do the JSONP stuff, perhaps because you cannot get it from your source, a proxy implementation is the best solution, and this is a good article about it: http://benalman.com/projects/php-simple-proxy/</description>
		<content:encoded><![CDATA[<p>This is the best explanation by far I&#8217;ve found covering the business of hooking up the JSONP stuff in PHP/jQuery fashion. Examples are short and concise, pointing out exactly what matters &#8211; the callback, the wrapper, the header. Only thing, two and a half years on, is I guess you could drop the stuff about the PEAR package for old PHP versions. But then again, it&#8217;s easy to gloss over that.<br />
Oh, and Peter&#8217;s wrong about the origin-header. Internet Explorer (9- at least) doesn&#8217;t even understand that, so exactly that is a very good reason to implement JSONP to allow cross-domain. For people who can&#8217;t do the JSONP stuff, perhaps because you cannot get it from your source, a proxy implementation is the best solution, and this is a good article about it: <a href="http://benalman.com/projects/php-simple-proxy/" rel="nofollow">http://benalman.com/projects/php-simple-proxy/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a JSONP Data Provider in PHP by peter feeney</title>
		<link>http://www.carolinamantis.com/wordpress/?p=29&#038;cpage=1#comment-8180</link>
		<dc:creator>peter feeney</dc:creator>
		<pubDate>Wed, 21 Sep 2011 14:38:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.carolinamantis.com/wordpress/?p=29#comment-8180</guid>
		<description>your code won&#039;t work crossdomain! you are missing
&lt;b&gt;header(&#039;Access-Control-Allow-Origin: *&#039;);&lt;/b&gt;
please update
regards pete</description>
		<content:encoded><![CDATA[<p>your code won&#8217;t work crossdomain! you are missing<br />
<b>header(&#8216;Access-Control-Allow-Origin: *&#8217;);</b><br />
please update<br />
regards pete</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a JSONP Data Provider in PHP by メモ：PHPでJSONPを返すサンプルコード &#124; Kinopyo&#039;s Blog</title>
		<link>http://www.carolinamantis.com/wordpress/?p=29&#038;cpage=1#comment-5363</link>
		<dc:creator>メモ：PHPでJSONPを返すサンプルコード &#124; Kinopyo&#039;s Blog</dc:creator>
		<pubDate>Tue, 21 Dec 2010 10:44:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.carolinamantis.com/wordpress/?p=29#comment-5363</guid>
		<description>[...] http://www.carolinamantis.com/wordpress/?p=29  AKPC_IDS += &quot;1589,&quot;;    Share  Tweet [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.carolinamantis.com/wordpress/?p=29" rel="nofollow">http://www.carolinamantis.com/wordpress/?p=29</a>  AKPC_IDS += &quot;1589,&quot;;    Share  Tweet [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a JSONP Data Provider in PHP by Julian Johannesen</title>
		<link>http://www.carolinamantis.com/wordpress/?p=29&#038;cpage=1#comment-3074</link>
		<dc:creator>Julian Johannesen</dc:creator>
		<pubDate>Wed, 24 Feb 2010 22:57:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.carolinamantis.com/wordpress/?p=29#comment-3074</guid>
		<description>This was really helpful.  Thanks.  I&#039;d been looking around for a while for an explanation of the php required to get a json service going.  i was all set with the javascript, but the php was mystifying to me.</description>
		<content:encoded><![CDATA[<p>This was really helpful.  Thanks.  I&#8217;d been looking around for a while for an explanation of the php required to get a json service going.  i was all set with the javascript, but the php was mystifying to me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a JSONP Data Provider in PHP by aguyfromearth</title>
		<link>http://www.carolinamantis.com/wordpress/?p=29&#038;cpage=1#comment-2483</link>
		<dc:creator>aguyfromearth</dc:creator>
		<pubDate>Wed, 25 Nov 2009 16:02:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.carolinamantis.com/wordpress/?p=29#comment-2483</guid>
		<description>This isn&#039;t work on different port?</description>
		<content:encoded><![CDATA[<p>This isn&#8217;t work on different port?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a JSONP Data Provider in PHP by Wes</title>
		<link>http://www.carolinamantis.com/wordpress/?p=29&#038;cpage=1#comment-1138</link>
		<dc:creator>Wes</dc:creator>
		<pubDate>Tue, 01 Sep 2009 04:52:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.carolinamantis.com/wordpress/?p=29#comment-1138</guid>
		<description>Thank you.  I spent the better part of the day looking for a specific example that didn&#039;t leave off some important part.  Your example was the only one that I found.  Including line 5. and 6. were important and left out of almost every other PHP example.  Thanks a bunch!</description>
		<content:encoded><![CDATA[<p>Thank you.  I spent the better part of the day looking for a specific example that didn&#8217;t leave off some important part.  Your example was the only one that I found.  Including line 5. and 6. were important and left out of almost every other PHP example.  Thanks a bunch!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

