<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>p2p.wrox.com Forums</title>
		<link>http://p2p.wrox.com</link>
		<description>Programmer forums, Software Development, Web Development, developer resources, coding answers, blogs, articles, for programmers in ASP NET, C#, Visual Basic, Java, PHP, MySQL, Ruby, JavaScript, HTML, XML, SharePoint, .NET, CSS, Twitter, WordPress, Joomla, Iphone SDK, iPad applications, android applications</description>
		<language>en</language>
		<lastBuildDate>Thu, 23 May 2013 20:12:37 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://p2p.wrox.com/images/misc/rss.jpg</url>
			<title>p2p.wrox.com Forums</title>
			<link>http://p2p.wrox.com</link>
		</image>
		<item>
			<title>Facepalm *spoilers*</title>
			<link>http://p2p.wrox.com/book-ivor-hortons-beginning-visual-c-2010/90136-facepalm-spoilers.html</link>
			<pubDate>Thu, 23 May 2013 14:41:24 GMT</pubDate>
			<description>Just wanted to share that I spent 4 hours+ scratching my head on the second exercise of Chapter 2. 

It basically reads:

Write a program that reads...</description>
			<content:encoded><![CDATA[<div>Just wanted to share that I spent 4 hours+ scratching my head on the second exercise of Chapter 2. <br />
<br />
It basically reads:<br />
<br />
Write a program that reads an integer into an int, and uses one of the bitwise operators to determine the positive remainder, when divided by 8.<br />
<br />
I don't know about anyone else, but I took that literally: Use a bitwise operator to determine the remainder. Felt like pounding my head against the wall. Technically, while you use a bitwise operator to divide and multiply (discarding the remainder), to actually isolate the remainder, you use ordinary subtraction - a method which I'd figured out in the first five minutes. You can't isolate the remainder purely by using bitwise operators, at least not without maybe knowing binary and hexadecimal really well, which I don't. <br />
<br />
Now I'm going to chill out and attempt to approach the rest of this book less logically &gt;&gt;</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/book-ivor-hortons-beginning-visual-c-2010-569/"><![CDATA[BOOK: Ivor Horton's Beginning Visual C++ 2010]]></category>
			<dc:creator>Interloper</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/book-ivor-hortons-beginning-visual-c-2010/90136-facepalm-spoilers.html</guid>
		</item>
		<item>
			<title>using msxsl.exe generate the file in utf-8 with BOM</title>
			<link>http://p2p.wrox.com/xslt/90135-using-msxsl-exe-generate-file-utf-8-bom.html</link>
			<pubDate>Thu, 23 May 2013 13:03:20 GMT</pubDate>
			<description><![CDATA[Hi Experts
 


I am using an .xsl file which contain line as follows:-

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"...]]></description>
			<content:encoded><![CDATA[<div>Hi Experts<br />
 <br />
<br />
<br />
I am using an .xsl file which contain line as follows:-<br />
<br />
&lt;?xml version=&quot;1.0&quot; encoding=&quot;ISO-8859-1&quot;?&gt;<br />
&lt;xsl:stylesheet version=&quot;1.0&quot; xmlns:xsl=&quot;http://www.w3.org/1999/XSL/Transform&quot;&gt;<br />
&lt;xsl:output method=&quot;text&quot; version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; indent=&quot;no&quot; omit-xml-declaration=&quot;yes&quot;/&gt;<br />
when I parse the .xsl file using msxsl, it will generate the output file in utf_8 format without BOM.<br />
<br />
what changes I need to make to generate the file in <b>utf8 with BOM </b>.<br />
<br />
Please help me.<br />
<br />
Thanks &amp; Regards <br />
Vikas</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/xslt-86/">XSLT</category>
			<dc:creator>vikasmailsu</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/xslt/90135-using-msxsl-exe-generate-file-utf-8-bom.html</guid>
		</item>
		<item>
			<title>MouseOver by adding an attribute</title>
			<link>http://p2p.wrox.com/asp-net-4-general-discussion/90133-mouseover-adding-attribute.html</link>
			<pubDate>Thu, 23 May 2013 11:58:08 GMT</pubDate>
			<description>Hello Everyone, i am trying to do a mouseOver event in my Default.aspx page where the image changes on a mouseOver. The code I have below trying to...</description>
			<content:encoded><![CDATA[<div>Hello Everyone, i am trying to do a mouseOver event in my Default.aspx page where the image changes on a mouseOver. The code I have below trying to add an attribute which changes the imageButton picture does not work, when the page is requested it gets rendered fine but when i enter the imageButton control with my cursor the browser comes up &quot;Web Page Error&quot;. When i dubug the debugger comes up with this &quot;breaking on JScript run time error - Object expected&quot;.<br />
 <br />
Any help would be greatly appreciated.<br />
Mark<br />
 <br />
Default.aspx<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">&lt;%@ Page Language=&quot;C#&quot; AutoEventWireup=&quot;true&quot; CodeFile=&quot;Default.aspx.cs&quot; Inherits=&quot;_Default&quot; %&gt;<br />
&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" target="_blank">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd</a>&quot;&gt;<br />
&lt;html xmlns=&quot;<a href="http://www.w3.org/1999/xhtml" target="_blank">http://www.w3.org/1999/xhtml</a>&quot;&gt;<br />
&lt;head runat=&quot;server&quot;&gt;<br />
&nbsp; &nbsp; &lt;title&gt;&lt;/title&gt;<br />
&nbsp; &nbsp; &lt;/head&gt;<br />
&lt;body&gt;<br />
&nbsp; &nbsp; &lt;form id=&quot;form1&quot; runat=&quot;server&quot;&gt;<br />
&nbsp; &nbsp; &lt;div&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;asp:ImageButton ID=&quot;ImageButton1&quot; runat=&quot;server&quot; Height=&quot;139px&quot; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ImageUrl=&quot;~/Images/Picture2.jpg&quot; Width=&quot;158px&quot; /&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/div&gt;<br />
&nbsp; &nbsp; &lt;/form&gt;<br />
&lt;/body&gt;<br />
&lt;/html&gt;</code><hr />
</div>Page Behind<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">using System;<br />
using System.Collections.Generic;<br />
using System.Linq;<br />
using System.Web;<br />
using System.Web.UI;<br />
using System.Web.UI.WebControls;<br />
public partial class _Default : System.Web.UI.Page<br />
{<br />
&nbsp; &nbsp; protected void Page_Load(object sender, EventArgs e)<br />
&nbsp; &nbsp; {<br />
&nbsp; &nbsp; ImageButton1.Attributes[&quot;onMouseOver&quot;] = &quot;javascript<b></b>:swapImageIn('~/Images/Picture1.jpg');return true;&quot;;<br />
&nbsp; &nbsp; ImageButton1.Attributes[&quot;onMouseOut&quot;] = &quot;javascript<b></b>:swapImageOut();return true;&quot;;<br />
&nbsp; &nbsp; }<br />
}</code><hr />
</div></div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/asp-net-4-general-discussion-561/">ASP.NET 4 General Discussion</category>
			<dc:creator>markhh</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/asp-net-4-general-discussion/90133-mouseover-adding-attribute.html</guid>
		</item>
		<item>
			<title>XSLT 1 transformation help</title>
			<link>http://p2p.wrox.com/xslt/90120-xslt-1-transformation-help.html</link>
			<pubDate>Wed, 22 May 2013 12:16:46 GMT</pubDate>
			<description>Hi all,
       I am kind of stuck in implementing a rather tricky output for my given xml source.

 My input...</description>
			<content:encoded><![CDATA[<div>Hi all,<br />
       I am kind of stuck in implementing a rather tricky output for my given xml source.<br />
<br />
 My input is:<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">&lt;PickUpOpeningHours&gt;08:00 - 22:00&lt;/PickUpOpeningHours&gt;</code><hr />
</div>And I want an output similar to:<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left"><br />
&lt;SubSection SubTitle=&quot;OfficeHours&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;Paragraph Name=&quot;Monday&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;Text&gt;CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOCCCCCCCC&lt;/Text&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/Paragraph&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;Paragraph Name=&quot;Tuesday&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;Text&gt;CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOCCCCCCCC&lt;/Text&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/Paragraph&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;Paragraph Name=&quot;Wednesday&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;Text&gt;CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOCCCCCCCC&lt;/Text&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/Paragraph&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;Paragraph Name=&quot;Thursday&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;Text&gt;CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOCCCCCCCC&lt;/Text&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/Paragraph&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;Paragraph Name=&quot;Friday&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;Text&gt;CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOCCCCCCCC&lt;/Text&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/Paragraph&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;Paragraph Name=&quot;Saturday&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;Text&gt;CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOCCCCCCCC&lt;/Text&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/Paragraph&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;Paragraph Name=&quot;Sunday&quot;&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;Text&gt;CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOCCCCCCCC&lt;/Text&gt;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &lt;/Paragraph&gt;<br />
&lt;/SubSection&gt;</code><hr />
</div>Let me explain the output logic.<br />
<br />
C: closes<br />
O: opened<br />
<br />
Time is represented in 24 hours.<br />
<br />
1 hour = 4 x 15 min (4 quarters)<br />
24 hours = 96 x 15 min (96 quarters)<br />
<br />
Total characters (C or O) will be 96 in total, where each character represents single quarter of time.<br />
<br />
The input xml could be of two different formats:<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">&lt;PickUpOpeningHours&gt;07:00 - 23:00&lt;/PickUpOpeningHours&gt;</code><hr />
</div>OR<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">&lt;PickUpOpeningHours&gt;08:30 - 12:00, 14:30 - 18:00&lt;/PickUpOpeningHours&gt;</code><hr />
</div><br />
Can someone please help me out in devising some solution for the above problem using xslt 1?<br />
<br />
Thanks.</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/xslt-86/">XSLT</category>
			<dc:creator>sbutt</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/xslt/90120-xslt-1-transformation-help.html</guid>
		</item>
		<item>
			<title>object attribute-XHTML</title>
			<link>http://p2p.wrox.com/book-beginning-web-programming-html-xhtml-css-2nd-edition-isbn-978-0-470-25931-3/90119-object-attribute-xhtml.html</link>
			<pubDate>Wed, 22 May 2013 11:19:53 GMT</pubDate>
			<description><![CDATA[dear all,
i have the following questions regarding the object attribute:
i used the object attribute as illustrated here:

<code><object...]]></description>
			<content:encoded><![CDATA[<div>dear all,<br />
i have the following questions regarding the object attribute:<br />
i used the object attribute as illustrated here:<br />
<br />
&lt;code&gt;&lt;object data=&quot;C:/Users/Prosanto/Pictures/apple.jpg&quot; type=&quot;image/jpg&quot;&gt;&lt;/object&gt;&lt;/code&gt;<br />
<br />
1)i viewed it in internet explorer as well as  in google chrome. google chrome displayed the image however, internet explorer did not show the image at all. why is it so?<br />
<br />
2) is it necessary to give the &quot;type&quot; attribute? what exactly is its significance?<br />
<br />
from<br />
rupali</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/book-beginning-web-programming-html-xhtml-css-2nd-edition-isbn-978-0-470-25931-3-399/">BOOK: Beginning Web Programming with HTML, XHTML, and CSS, 2nd Edition ISBN: 978-0-470-25931-3</category>
			<dc:creator>rupali317</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/book-beginning-web-programming-html-xhtml-css-2nd-edition-isbn-978-0-470-25931-3/90119-object-attribute-xhtml.html</guid>
		</item>
		<item>
			<title>Missing Example Code: Chapters 8, 12</title>
			<link>http://p2p.wrox.com/book-professional-ios-network-programming-connecting-enterprise-iphone-ipad/90114-missing-example-code-chapters-8-12-a.html</link>
			<pubDate>Tue, 21 May 2013 18:02:58 GMT</pubDate>
			<description>Hello,

It appears that the program downloads for chapters 8 and 12 return only empty files?

The example programs in the other chapters have been...</description>
			<content:encoded><![CDATA[<div>Hello,<br />
<br />
It appears that the program downloads for chapters 8 and 12 return only empty files?<br />
<br />
The example programs in the other chapters have been extremely educational, and I would love to see the example code for these two important chapters if they're also available.<br />
<br />
Cheers!</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/book-professional-ios-network-programming-connecting-enterprise-iphone-ipad-708/">BOOK: Professional iOS Network Programming: Connecting the Enterprise to the iPhone and iPad</category>
			<dc:creator>boulderite</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/book-professional-ios-network-programming-connecting-enterprise-iphone-ipad/90114-missing-example-code-chapters-8-12-a.html</guid>
		</item>
		<item>
			<title><![CDATA[SharePoint 2007 - Form Web Part used in custom search won't allow for count(//@ID)]]></title>
			<link>http://p2p.wrox.com/book-professional-microsoft-office-sharepoint-designer-2007-isbn-978-0-470-28761-3/90113-sharepoint-2007-form-web-part-used-custom-search-wont-allow-count-id.html</link>
			<pubDate>Tue, 21 May 2013 13:16:17 GMT</pubDate>
			<description>I am using four Form Web Parts for filtering and searching rows on a DVWP. Three FWPs are providing filters to the DVWP where the DVWP is the filter...</description>
			<content:encoded><![CDATA[<div>I am using four Form Web Parts for filtering and searching rows on a DVWP. Three FWPs are providing filters to the DVWP where the DVWP is the filter consumer. The last FWP is providing a parameter; the DVWP is the parameter consumer.<br />
<br />
On the Common Data View Tasks popout, I've configured the 'Sort and Group:' as [count(//@ID)]+ in order for the results to show the total number of records available after one of the filters is used.<br />
<br />
The 'count(//@ID)' works great for each of the filter FWPs, but does not work for the parameter FWP. What is different about the parameter-providing FWP than the filter-providing FWPs.<br />
<br />
The [count(//@ID)] code appears in code view after all the FWPs.<br />
<br />
Any suggestions?</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/book-professional-microsoft-office-sharepoint-designer-2007-isbn-978-0-470-28761-3-435/">BOOK: Professional Microsoft Office SharePoint Designer 2007 ISBN: 978-0-470-28761-3</category>
			<dc:creator>rlntel</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/book-professional-microsoft-office-sharepoint-designer-2007-isbn-978-0-470-28761-3/90113-sharepoint-2007-form-web-part-used-custom-search-wont-allow-count-id.html</guid>
		</item>
		<item>
			<title>Ecommerce</title>
			<link>http://p2p.wrox.com/asp-net-4-5-general-discussion/90112-ecommerce.html</link>
			<pubDate>Tue, 21 May 2013 12:13:02 GMT</pubDate>
			<description><![CDATA[I don't know if this the place to put this suggestion. But there is, I feel, a strong need for a .NET standard webforms book for Ecommerce. There is...]]></description>
			<content:encoded><![CDATA[<div>I don't know if this the place to put this suggestion. But there is, I feel, a strong need for a .NET standard webforms book for Ecommerce. There is one out there for ASP.NET 4.5. There needs to be one though. Especially if you could make it mobile with responsive design, media queries and JQuery mobile. Somebody somewhere needs to create a book like this. I hope that one day that will happen.</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/asp-net-4-5-general-discussion-711/">ASP.NET 4.5 General Discussion</category>
			<dc:creator>vbboyd</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/asp-net-4-5-general-discussion/90112-ecommerce.html</guid>
		</item>
		<item>
			<title>cant subscribe with any of the applications</title>
			<link>http://p2p.wrox.com/book-professional-android-open-accessory-programming-arduino/90111-cant-subscribe-any-applications.html</link>
			<pubDate>Tue, 21 May 2013 12:10:23 GMT</pubDate>
			<description><![CDATA[Hey all,

Apologies for being really new,

I can't subscribe in any of the apps to any of the topics, best I've gotten is when using the downloaded...]]></description>
			<content:encoded><![CDATA[<div>Hey all,<br />
<br />
Apologies for being really new,<br />
<br />
I can't subscribe in any of the apps to any of the topics, best I've gotten is when using the downloaded applications like parking assistant, it actually identifies that there is a corresponding application, what thing am I not doing to envoke &quot;OnResume&quot; so that it trys to subscribe to the device?<br />
<br />
I know it has to be really simple but I can't figure it out for the life of me.<br />
<br />
Thanks<br />
<br />
Andrew</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/book-professional-android-open-accessory-programming-arduino-729/">BOOK: Professional Android Open Accessory Programming with Arduino</category>
			<dc:creator>alandmar</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/book-professional-android-open-accessory-programming-arduino/90111-cant-subscribe-any-applications.html</guid>
		</item>
		<item>
			<title>This makes no sense</title>
			<link>http://p2p.wrox.com/book-beginning-asp-net-4-5-c-vb/90105-makes-no-sense.html</link>
			<pubDate>Tue, 21 May 2013 04:31:13 GMT</pubDate>
			<description>Why is it that when I run the following query against your database in the SQL Server management studio:


Code:
---------
select * from Genre 
where...</description>
			<content:encoded><![CDATA[<div>Why is it that when I run the following query against your database in the SQL Server management studio:<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">select * from Genre <br />
where Name Like &quot;Pop&quot;</code><hr />
</div>I get the following error:<br />
Msg 207, Level 16, State 1, Line 2<br />
Invalid column name 'Pop'.<br />
I get the same error message with the following query as well.<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left"><br />
select Id from Genre <br />
where Name like &quot;Pop%&quot;</code><hr />
</div>Isn't that the way a that like statement is supposed to look like??? Am I missing something here???!!! I am noting short of super confused on this one like you wouldn't believe. Any help on this would be so greatly appreciated.</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/book-beginning-asp-net-4-5-c-vb-710/">BOOK: Beginning ASP.NET 4.5 : in C# and VB</category>
			<dc:creator>vbboyd</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/book-beginning-asp-net-4-5-c-vb/90105-makes-no-sense.html</guid>
		</item>
		<item>
			<title>Problems Running Earthquake 1</title>
			<link>http://p2p.wrox.com/book-professional-android-4-application-development/90104-problems-running-earthquake-1-a.html</link>
			<pubDate>Tue, 21 May 2013 01:14:02 GMT</pubDate>
			<description><![CDATA[The book does not specify the min required SDK, the target SDK, or the compile with.

I added all the code with min: API 8, Target: API 17.

I'm...]]></description>
			<content:encoded><![CDATA[<div>The book does not specify the min required SDK, the target SDK, or the compile with.<br />
<br />
I added all the code with min: API 8, Target: API 17.<br />
<br />
I'm getting the following errors on EarthquakeListFragment - Errors in <font color="red">FONT RED</font><br />
<br />
1. public class EarthquakeListFragment extends <font color="red">ListFragment</font> {<br />
<br />
<br />
2. super.<font color="red">onActivityCreated</font>(savedInstanceState);<br />
<br />
3.  aa = new ArrayAdapter&lt;Quake&gt;(<font color="red">getActivity()</font>, layoutID , earthquakes);<br />
<br />
4. <font color="red">setListAdapter(aa);</font><br />
<br />
5.  String quakeFeed = getString(R.string.<font color="red">quake_feed</font>);<br />
<br />
<br />
PS. Number 5. quake_feed. The Strings.xml have the &lt;string name=&quot;quake_feed&quot;&gt;<br />
<br />
Thanks for your help.</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/book-professional-android-4-application-development-685/">BOOK: Professional Android 4 Application Development</category>
			<dc:creator>marfl99</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/book-professional-android-4-application-development/90104-problems-running-earthquake-1-a.html</guid>
		</item>
		<item>
			<title>How to retrive the particular subtags using xslt?</title>
			<link>http://p2p.wrox.com/xslt/90103-how-retrive-particular-subtags-using-xslt.html</link>
			<pubDate>Mon, 20 May 2013 21:53:59 GMT</pubDate>
			<description><![CDATA[hi,
I have The below xml, in this we are having four <Territory> sub tags.
My problem is how can I retrieve only particular <Territory> tag .
I mean...]]></description>
			<content:encoded><![CDATA[<div>hi,<br />
I have The below xml, in this we are having four &lt;Territory&gt; sub tags.<br />
My problem is how can I retrieve only particular &lt;Territory&gt; tag .<br />
I mean I want to retrieve 2nd and 4th &lt;Territory&gt; values, how can we write XSLT code for it?<br />
<br />
&lt;Territories&gt;<br />
	&lt;State&gt;FL&lt;/State&gt;<br />
	&lt;ZipCode&gt;33040&lt;/ZipCode&gt;<br />
	<br />
	&lt;Territory&gt;<br />
		&lt;City&gt;East Rockland Key&lt;/City&gt;<br />
		&lt;County&gt;Monroe&lt;/County&gt;<br />
		&lt;AAISCountyCode&gt;087&lt;/AAISCountyCode&gt;<br />
		&lt;BusinessAutoTerritory&gt;132&lt;/BusinessAutoTerritory&gt;<br />
		&lt;BOPTerritory&gt;012&lt;/BOPTerritory&gt;<br />
	&lt;/Territory&gt;<br />
		<br />
	&lt;Territory&gt;<br />
		&lt;City&gt;Key West&lt;/City&gt;<br />
		&lt;County&gt;Monroe&lt;/County&gt;<br />
		&lt;AAISCountyCode&gt;288&lt;/AAISCountyCode&gt;<br />
		&lt;BusinessAutoTerritory&gt;193&lt;/BusinessAutoTerritory&gt;<br />
		&lt;BOPTerritory&gt;01&lt;/BOPTerritory&gt;<br />
	&lt;/Territory&gt;<br />
	<br />
	&lt;Territory&gt;<br />
		&lt;City&gt;Key West Naval Air Statio&lt;/City&gt;<br />
		&lt;County&gt;Monroe&lt;/County&gt;<br />
		&lt;AAISCountyCode&gt;189&lt;/AAISCountyCode&gt;<br />
		&lt;BusinessAutoTerritory&gt;172&lt;/BusinessAutoTerritory&gt;<br />
		&lt;BOPTerritory&gt;042&lt;/BOPTerritory&gt;<br />
	&lt;/Territory&gt;<br />
	<br />
	&lt;Territory&gt;<br />
		&lt;City&gt;Stock Island&lt;/City&gt;<br />
		&lt;County&gt;Monroe&lt;/County&gt;<br />
		&lt;AAISCountyCode&gt;100&lt;/AAISCountyCode&gt;<br />
		&lt;BusinessAutoTerritory&gt;122&lt;/BusinessAutoTerritory&gt;<br />
		&lt;BOPTerritory&gt;092&lt;/BOPTerritory&gt;<br />
	&lt;/Territory&gt;<br />
	<br />
&lt;/Territories&gt;</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/xslt-86/">XSLT</category>
			<dc:creator>sreenu508@gmail.com</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/xslt/90103-how-retrive-particular-subtags-using-xslt.html</guid>
		</item>
		<item>
			<title>Chapter 7 Site Navigation</title>
			<link>http://p2p.wrox.com/book-beginning-asp-net-4-c-vb/90102-chapter-7-site-navigation.html</link>
			<pubDate>Mon, 20 May 2013 17:50:47 GMT</pubDate>
			<description>In what file are the Web Site Properties kept?  When I change the virtual path from 
Code:
---------
/Site
---------
 to 
Code:
---------
/
---------</description>
			<content:encoded><![CDATA[<div>In what file are the Web Site Properties kept?  When I change the virtual path from <div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">/Site</code><hr />
</div> to <div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">/</code><hr />
</div> where is this change made?</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/book-beginning-asp-net-4-c-vb-560/">BOOK: Beginning ASP.NET 4 : in C# and VB</category>
			<dc:creator>ABW</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/book-beginning-asp-net-4-c-vb/90102-chapter-7-site-navigation.html</guid>
		</item>
		<item>
			<title>Converting straight quotes to smart quotes in xslt 1.0</title>
			<link>http://p2p.wrox.com/xslt/90101-converting-straight-quotes-smart-quotes-xslt-1-0-a.html</link>
			<pubDate>Mon, 20 May 2013 14:21:07 GMT</pubDate>
			<description><![CDATA[Hi,
  I've the below xml


HTML:
---------
<para>A number of the offences set out in the Companies Ordinance are expressed to apply to "officers" of...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
  I've the below xml<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">HTML Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left"><span style="color:#000080">&lt;para&gt;</span>A number of the offences set out in the Companies Ordinance are expressed to apply to &quot;officers&quot; of the company. &quot;Officer&quot; includes directors, managers and the company secretary: Companies Ordinance, s.2(1).<span style="color:#000080">&lt;/para&gt;</span></code><hr />
</div>here actually the in the input the quotes given are &quot; but i want to convert it to smart quotes. i used the below xslt for this.<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">HTML Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left"><span style="color:#000080">&lt;xsl:template match=<span style="color:#0000FF">&quot;para/text()&quot;</span>&gt;</span><br />
<span style="color:#000080">&lt;xsl:when test=<span style="color:#0000FF">&quot;contains(.,$quot)&quot;</span>&gt;</span><br />
<span style="color:#000080">&lt;xsl:value-of select=<span style="color:#0000FF">&quot;translate(.,$quot,'&#8220;')&quot;</span>/&gt;</span><br />
<span style="color:#000080">&lt;xsl:value-of select=<span style="color:#0000FF">&quot;translate(substring-after(.,$quot),$quot,'&#8221;')&quot;</span>/&gt;</span><br />
<span style="color:#000080">&lt;/xsl:when&gt;</span><br />
<span style="color:#000080">&lt;/xsl:template&gt;</span></code><hr />
</div>but i am getting below ooutput.<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">HTML Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">A number of the offences set out in the Companies Ordinance are expressed to apply to &#8220;officers&#8220; of the company. &#8220;Officer&#8220; includes directors, managers and the company secretary: Companies Ordinance, s.2(1).<br />
but i want to get it as below.</code><hr />
</div><div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">HTML Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">A number of the offences set out in the Companies Ordinance are expressed to apply to &#8220;officers&#8221; of the company. &#8220;Officer&#8221; includes directors, managers and the company secretary: Companies Ordinance, s.2(1).</code><hr />
</div>please let me know how do i solve this.<br />
<br />
<br />
Thanks</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/xslt-86/">XSLT</category>
			<dc:creator>sunnykeerthi</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/xslt/90101-converting-straight-quotes-smart-quotes-xslt-1-0-a.html</guid>
		</item>
		<item>
			<title>Failed to load libGL.so</title>
			<link>http://p2p.wrox.com/book-professional-android-4-application-development/90100-failed-load-libgl-so.html</link>
			<pubDate>Mon, 20 May 2013 13:47:55 GMT</pubDate>
			<description>Dear Friend,

I installed Eclipse/ADT in Ubuntu, and defined a new AVD for Nexus 4. When I start emulator for this AVD, I get the following message....</description>
			<content:encoded><![CDATA[<div>Dear Friend,<br />
<br />
I installed Eclipse/ADT in Ubuntu, and defined a new AVD for Nexus 4. When I start emulator for this AVD, I get the following message. Please help:<br />
<br />
<div style="margin:20px; margin-top:5px">
	<div class="smallfont" style="margin-bottom:2px">Code:</div>
	<hr /><code style="margin:0px" dir="ltr" style="text-align:left">Starting emulator for AVD 'My_Nexus4'<br />
Failed to load libGL.so<br />
error libGL.so: cannot open shared object file: No such file or directory<br />
Failed to load libGL.so<br />
error libGL.so: cannot open shared object file: No such file or directory<br />
emulator: emulator window was out of view and was recentered</code><hr />
</div>Thanks,<br />
Shekar M.</div>

]]></content:encoded>
			<category domain="http://p2p.wrox.com/book-professional-android-4-application-development-685/">BOOK: Professional Android 4 Application Development</category>
			<dc:creator>shekar.mahalingam</dc:creator>
			<guid isPermaLink="true">http://p2p.wrox.com/book-professional-android-4-application-development/90100-failed-load-libgl-so.html</guid>
		</item>
	</channel>
</rss>
