<?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: CurvyCorners 2.0.4 Released!</title>
	<atom:link href="http://www.cameroncooke.com/2009/07/24/curvycorners-2-0-4-released/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.cameroncooke.com/2009/07/24/curvycorners-2-0-4-released/</link>
	<description>Cameron’s thoughts on Technology, Software and Web Development</description>
	<lastBuildDate>Sat, 10 Jul 2010 15:27:00 +0100</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: test</title>
		<link>http://www.cameroncooke.com/2009/07/24/curvycorners-2-0-4-released/comment-page-1/#comment-292</link>
		<dc:creator>test</dc:creator>
		<pubDate>Wed, 31 Mar 2010 14:39:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.cameroncooke.com/?p=60#comment-292</guid>
		<description>With IE8 print preview does not work correctly neither does the tip &quot;@media screen {}&quot;.

With CC 2.0.5pre18, the following removes the corners and limits the width.

.yourDiv &gt; div:first-child {
    display: none;
}

.yourDiv &gt; .autoPadDiv {
    max-width: 17cm;
}</description>
		<content:encoded><![CDATA[<p>With IE8 print preview does not work correctly neither does the tip &#8220;@media screen {}&#8221;.</p>
<p>With CC 2.0.5pre18, the following removes the corners and limits the width.</p>
<p>.yourDiv &gt; div:first-child {<br />
    display: none;<br />
}</p>
<p>.yourDiv &gt; .autoPadDiv {<br />
    max-width: 17cm;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bobo</title>
		<link>http://www.cameroncooke.com/2009/07/24/curvycorners-2-0-4-released/comment-page-1/#comment-260</link>
		<dc:creator>Bobo</dc:creator>
		<pubDate>Wed, 24 Feb 2010 12:31:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.cameroncooke.com/?p=60#comment-260</guid>
		<description>I tried to email you with a few minor bugs/issues I noticed while using CurvyCorners, but it seems the contact email address on the curvycornets.net page isn&#039;t working anymore.

Below, the contents of the mail I sent:


First of all, thank you very much for creating the curvycorners script. It has been very useful and a pleasure to work with.


In using the script, I found two minor issues, one of which I have a fix for.


The first issue is in css in nested classes. The script fails if I have a definition like:

.classA .classB { -webkit-border-radius: 8px; }

I have fixed this by changing line 311 in the source from (linebreaks added by me)

boxCol = boxCol.concat(
   curvyCorners.getElementsByClass(argbits[1], encloser)
);

to

boxCol = boxCol.concat(
   curvyCorners.getElementsByClass(argbits[1], encloser[j])
);


The second issue occurs when defining multiple corners in a single statement. The following CSS causes an error:

.classA { -webkit-border-radius: 8px 8px 0 0; }

This can easily be worked around by using seperate definitions for each corner, but it might be worth fixing anyway.</description>
		<content:encoded><![CDATA[<p>I tried to email you with a few minor bugs/issues I noticed while using CurvyCorners, but it seems the contact email address on the curvycornets.net page isn&#8217;t working anymore.</p>
<p>Below, the contents of the mail I sent:</p>
<p>First of all, thank you very much for creating the curvycorners script. It has been very useful and a pleasure to work with.</p>
<p>In using the script, I found two minor issues, one of which I have a fix for.</p>
<p>The first issue is in css in nested classes. The script fails if I have a definition like:</p>
<p>.classA .classB { -webkit-border-radius: 8px; }</p>
<p>I have fixed this by changing line 311 in the source from (linebreaks added by me)</p>
<p>boxCol = boxCol.concat(<br />
   curvyCorners.getElementsByClass(argbits[1], encloser)<br />
);</p>
<p>to</p>
<p>boxCol = boxCol.concat(<br />
   curvyCorners.getElementsByClass(argbits[1], encloser[j])<br />
);</p>
<p>The second issue occurs when defining multiple corners in a single statement. The following CSS causes an error:</p>
<p>.classA { -webkit-border-radius: 8px 8px 0 0; }</p>
<p>This can easily be worked around by using seperate definitions for each corner, but it might be worth fixing anyway.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cameron</title>
		<link>http://www.cameroncooke.com/2009/07/24/curvycorners-2-0-4-released/comment-page-1/#comment-258</link>
		<dc:creator>Cameron</dc:creator>
		<pubDate>Mon, 22 Feb 2010 12:53:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.cameroncooke.com/?p=60#comment-258</guid>
		<description>Thanks for your kind comments. The anchors are slightly more complicated than it first appears. Basically the content of that page is pulled directly from the documentation of the latest build of CurvyCorners stored in the SVN repository on Goggle Code. The anchors are relative as they should be but I&#039;m resetting the base URL of the page using the &lt;base href=&quot;&quot; /&gt; tag in the head of the website. If I set the anchors to absolute which would fix the problem, clicking on the same links in the documentation from the SVN would redirect the user to the website&#039;s anchor and not the one on the standalone document.

I&#039;ll look into a work around when I get some time though as this needs to be fixed.</description>
		<content:encoded><![CDATA[<p>Thanks for your kind comments. The anchors are slightly more complicated than it first appears. Basically the content of that page is pulled directly from the documentation of the latest build of CurvyCorners stored in the SVN repository on Goggle Code. The anchors are relative as they should be but I&#8217;m resetting the base URL of the page using the &lt;base href=&#8221;" /&gt; tag in the head of the website. If I set the anchors to absolute which would fix the problem, clicking on the same links in the documentation from the SVN would redirect the user to the website&#8217;s anchor and not the one on the standalone document.</p>
<p>I&#8217;ll look into a work around when I get some time though as this needs to be fixed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Harmony M.</title>
		<link>http://www.cameroncooke.com/2009/07/24/curvycorners-2-0-4-released/comment-page-1/#comment-257</link>
		<dc:creator>Harmony M.</dc:creator>
		<pubDate>Mon, 22 Feb 2010 05:25:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.cameroncooke.com/?p=60#comment-257</guid>
		<description>Hi, Cameron. 

CurvyCorners is absolutely amazing -- thank you.

I realized that each time I come to the site and try to navigate using the links containing anchors at the top of the instructions page, I&#039;m whisked away to the home page that doesn&#039;t have the relevant info on it at all. And I only just noticed today that that&#039;s because your anchors at the top of /instructions are taking people to the home directory.

Like, &quot;Getting the Source&quot; takes me to curvycorners.net/#source instead of curvycorners.net/instructions/#source like I think you intend. To format links on the same page, just use &quot;#source&quot; as the location instead of entering a full URL before it or using any forward slashes. (However, I see that your anchors ARE set up that way, so without further investigation, I have no idea why the links themselves are taking users to another page.) Something to look into when you have a moment?

Thanks again for this awesome script!

~ Harmony</description>
		<content:encoded><![CDATA[<p>Hi, Cameron. </p>
<p>CurvyCorners is absolutely amazing &#8212; thank you.</p>
<p>I realized that each time I come to the site and try to navigate using the links containing anchors at the top of the instructions page, I&#8217;m whisked away to the home page that doesn&#8217;t have the relevant info on it at all. And I only just noticed today that that&#8217;s because your anchors at the top of /instructions are taking people to the home directory.</p>
<p>Like, &#8220;Getting the Source&#8221; takes me to curvycorners.net/#source instead of curvycorners.net/instructions/#source like I think you intend. To format links on the same page, just use &#8220;#source&#8221; as the location instead of entering a full URL before it or using any forward slashes. (However, I see that your anchors ARE set up that way, so without further investigation, I have no idea why the links themselves are taking users to another page.) Something to look into when you have a moment?</p>
<p>Thanks again for this awesome script!</p>
<p>~ Harmony</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Calvn</title>
		<link>http://www.cameroncooke.com/2009/07/24/curvycorners-2-0-4-released/comment-page-1/#comment-193</link>
		<dc:creator>Calvn</dc:creator>
		<pubDate>Sun, 15 Nov 2009 09:42:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.cameroncooke.com/?p=60#comment-193</guid>
		<description>Hi,

I found that the curvycorner script has some problem with google adsense ads when using IE 8.

I tried to put a text link ad inside a , of course the  is rounded by the script, once I upload on to web, the text link ad just disappear after everything is load up.

In FF &amp; chrome &amp; safari look alright.

Is there any way to solve it? I think there is a bug or clash with the curvycorner script and google adsense ad javascript.

Hope you address to this matter.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I found that the curvycorner script has some problem with google adsense ads when using IE 8.</p>
<p>I tried to put a text link ad inside a , of course the  is rounded by the script, once I upload on to web, the text link ad just disappear after everything is load up.</p>
<p>In FF &amp; chrome &amp; safari look alright.</p>
<p>Is there any way to solve it? I think there is a bug or clash with the curvycorner script and google adsense ad javascript.</p>
<p>Hope you address to this matter.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
