<?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 on: phpArmory 0.4.1 &#8211; &#8220;Call to Arms&#8221; released</title>
	<atom:link href="http://www.marenkay.com/tipsresources/programming/phparmory-041-call-to-arms-released/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.marenkay.com/tipsresources/programming/phparmory-041-call-to-arms-released/</link>
	<description>developer, father, gamer, and nerd.</description>
	<lastBuildDate>Mon, 04 May 2009 08:31:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Dan</title>
		<link>http://www.marenkay.com/tipsresources/programming/phparmory-041-call-to-arms-released/comment-page-1/#comment-167</link>
		<dc:creator>Dan</dc:creator>
		<pubDate>Mon, 15 Dec 2008 20:31:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.marenkay.com/?p=157#comment-167</guid>
		<description>&lt;p&gt;Verified. Any Guild Name or Realm with a space is being encoded in correctly in the url. &quot;Cenarion Circle&quot; is being encoded as &quot;Cenarion%2BCircle&quot; in the final url, and should be &quot;Cenarion+Circle&quot;.&lt;/p&gt;

&lt;p&gt;The &quot;$realmName  = str_replace(&quot; &quot;, &quot;+&quot;,$realmName);&quot; is working, but the url is &quot;%2B&quot;.&lt;/p&gt;

&lt;p&gt;-Dan&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Verified. Any Guild Name or Realm with a space is being encoded in correctly in the url. &#8220;Cenarion Circle&#8221; is being encoded as &#8220;Cenarion%2BCircle&#8221; in the final url, and should be &#8220;Cenarion+Circle&#8221;.</p>

<p>The &#8220;$realmName  = str_replace(&#8221; &#8220;, &#8220;+&#8221;,$realmName);&#8221; is working, but the url is &#8220;%2B&#8221;.</p>

<p>-Dan</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Ed</title>
		<link>http://www.marenkay.com/tipsresources/programming/phparmory-041-call-to-arms-released/comment-page-1/#comment-146</link>
		<dc:creator>Ed</dc:creator>
		<pubDate>Tue, 09 Dec 2008 18:13:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.marenkay.com/?p=157#comment-146</guid>
		<description>&lt;p&gt;wow...have not seen this even when I was looking for some php code that would do it.  I started on my own.  Pretty much just wanted a version of the armory that was not so slow.  The only problem I have found is when I list someones equipment the enchantments on them are not shown...instead we get an permanentEnchant ID# which means nothing unless we have the data tied to that number.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>wow&#8230;have not seen this even when I was looking for some php code that would do it.  I started on my own.  Pretty much just wanted a version of the armory that was not so slow.  The only problem I have found is when I list someones equipment the enchantments on them are not shown&#8230;instead we get an permanentEnchant ID# which means nothing unless we have the data tied to that number.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel S. Reichenbach</title>
		<link>http://www.marenkay.com/tipsresources/programming/phparmory-041-call-to-arms-released/comment-page-1/#comment-142</link>
		<dc:creator>Daniel S. Reichenbach</dc:creator>
		<pubDate>Tue, 09 Dec 2008 13:17:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.marenkay.com/?p=157#comment-142</guid>
		<description>&lt;p&gt;@Jake: Go for it. AFAIK there is a Ruby gem which does the same, but no .NET class yet.&lt;/p&gt;

&lt;p&gt;@Taylor/TB: I will try the characters and guilds you have mentioned. AFAIK the urlencode function should properly handle spaces in parameters.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>@Jake: Go for it. AFAIK there is a Ruby gem which does the same, but no .NET class yet.</p>

<p>@Taylor/TB: I will try the characters and guilds you have mentioned. AFAIK the urlencode function should properly handle spaces in parameters.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: TB</title>
		<link>http://www.marenkay.com/tipsresources/programming/phparmory-041-call-to-arms-released/comment-page-1/#comment-126</link>
		<dc:creator>TB</dc:creator>
		<pubDate>Tue, 09 Dec 2008 02:12:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.marenkay.com/?p=157#comment-126</guid>
		<description>&lt;p&gt;Great work!
I used your included examples for the following.
Same issue as Ben with US chars. Try Raenger on Undermine:
     $areaName           = &#039;us&#039;;
     $characterName      = &quot;Raenger&quot;;
     $characterRealmName = &quot;Undermine&quot;;
Also, having same issue with guild names with spaces, like:
     $areaName           = &#039;eu&#039;;
     $guildName          = &quot;The North&quot;;
     $guildRealmName     = &quot;Nagrand&quot;;&lt;/p&gt;

&lt;p&gt;Thanks!&lt;/p&gt;

&lt;p&gt;&lt;em&gt;sry if this is double post, Wordpress timed out on me&lt;/em&gt;&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Great work!
I used your included examples for the following.
Same issue as Ben with US chars. Try Raenger on Undermine:
     $areaName           = &#8216;us&#8217;;
     $characterName      = &#8220;Raenger&#8221;;
     $characterRealmName = &#8220;Undermine&#8221;;
Also, having same issue with guild names with spaces, like:
     $areaName           = &#8216;eu&#8217;;
     $guildName          = &#8220;The North&#8221;;
     $guildRealmName     = &#8220;Nagrand&#8221;;</p>

<p>Thanks!</p>

<p><em>sry if this is double post, WordPress timed out on me</em></p>]]></content:encoded>
	</item>
	<item>
		<title>By: Taylor</title>
		<link>http://www.marenkay.com/tipsresources/programming/phparmory-041-call-to-arms-released/comment-page-1/#comment-125</link>
		<dc:creator>Taylor</dc:creator>
		<pubDate>Tue, 09 Dec 2008 02:06:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.marenkay.com/?p=157#comment-125</guid>
		<description>&lt;p&gt;Great work!
Same issue with US chars. Try Raenger on Undermine. Or my guild Crimson Blood Crusaders on the same realm.
I used your included examples.
Thanks!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Great work!
Same issue with US chars. Try Raenger on Undermine. Or my guild Crimson Blood Crusaders on the same realm.
I used your included examples.
Thanks!</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Justin</title>
		<link>http://www.marenkay.com/tipsresources/programming/phparmory-041-call-to-arms-released/comment-page-1/#comment-113</link>
		<dc:creator>Justin</dc:creator>
		<pubDate>Mon, 08 Dec 2008 19:58:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.marenkay.com/?p=157#comment-113</guid>
		<description>&lt;p&gt;I was attempting to get the phpArmory class working with the basic examples and ran into a problem with getGuildData.   In the case of realms / guild names with spaces, if you perform the urlencode on them, it is unnecessary to replace the spaces with pluses.&lt;/p&gt;

&lt;p&gt;I had this problem with my Guild Name but haven&#039;t given it a shot yet with a realm since my realm has no spaces.&lt;/p&gt;

&lt;p&gt;To be a bit more specific, I&#039;m referring to lines 636 and 637 in phpArmory.class.php.  Hope this helps other people!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I was attempting to get the phpArmory class working with the basic examples and ran into a problem with getGuildData.   In the case of realms / guild names with spaces, if you perform the urlencode on them, it is unnecessary to replace the spaces with pluses.</p>

<p>I had this problem with my Guild Name but haven&#8217;t given it a shot yet with a realm since my realm has no spaces.</p>

<p>To be a bit more specific, I&#8217;m referring to lines 636 and 637 in phpArmory.class.php.  Hope this helps other people!</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Jake</title>
		<link>http://www.marenkay.com/tipsresources/programming/phparmory-041-call-to-arms-released/comment-page-1/#comment-104</link>
		<dc:creator>Jake</dc:creator>
		<pubDate>Mon, 08 Dec 2008 18:53:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.marenkay.com/?p=157#comment-104</guid>
		<description>&lt;p&gt;Would you be opposed to the idea of an ASP.NET port of phpArmory?  I&#039;d definitely like to be able to use what you&#039;ve put together, but I&#039;d rather port it to ASP and integrate that with other things I&#039;m already working on.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Would you be opposed to the idea of an ASP.NET port of phpArmory?  I&#8217;d definitely like to be able to use what you&#8217;ve put together, but I&#8217;d rather port it to ASP and integrate that with other things I&#8217;m already working on.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Marenkay.com &#187; Blog Archive &#187; phpArmory - What features do you want to see?</title>
		<link>http://www.marenkay.com/tipsresources/programming/phparmory-041-call-to-arms-released/comment-page-1/#comment-64</link>
		<dc:creator>Marenkay.com &#187; Blog Archive &#187; phpArmory - What features do you want to see?</dc:creator>
		<pubDate>Fri, 28 Nov 2008 21:39:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.marenkay.com/?p=157#comment-64</guid>
		<description>&lt;p&gt;[...] phpArmory 0.4.1 released, I am currently investigating which features to add next. Thus it is your turn. Tell me [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] phpArmory 0.4.1 released, I am currently investigating which features to add next. Thus it is your turn. Tell me [...]</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel S. Reichenbach</title>
		<link>http://www.marenkay.com/tipsresources/programming/phparmory-041-call-to-arms-released/comment-page-1/#comment-63</link>
		<dc:creator>Daniel S. Reichenbach</dc:creator>
		<pubDate>Fri, 28 Nov 2008 20:29:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.marenkay.com/?p=157#comment-63</guid>
		<description>&lt;p&gt;Can you give me an example of what your code looks like? I can not verify the issue with all US characters I have tried.&lt;/p&gt;

&lt;p&gt;As far as I know there currently is an issue with the armory that prevents the armory from returning character data from characters with special chars in their names, but besides this everything works.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://www.marenkay.com/wp-content/plugins/wow-armory/phparmory/examples/characterData-US.php&quot; rel=&quot;nofollow&quot;&gt;Example here&lt;/a&gt;.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Can you give me an example of what your code looks like? I can not verify the issue with all US characters I have tried.</p>

<p>As far as I know there currently is an issue with the armory that prevents the armory from returning character data from characters with special chars in their names, but besides this everything works.</p>

<p><a href="http://www.marenkay.com/wp-content/plugins/wow-armory/phparmory/examples/characterData-US.php" rel="nofollow">Example here</a>.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://www.marenkay.com/tipsresources/programming/phparmory-041-call-to-arms-released/comment-page-1/#comment-55</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Thu, 27 Nov 2008 19:30:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.marenkay.com/?p=157#comment-55</guid>
		<description>&lt;p&gt;Hi, there seams to be a problem with the US armory, I can get an array off wow-europe with getCharacterData(), but when I set the area to US I get nothing.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi, there seams to be a problem with the US armory, I can get an array off wow-europe with getCharacterData(), but when I set the area to US I get nothing.</p>]]></content:encoded>
	</item>
</channel>
</rss>
