<?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 e</title>
	<atom:link href="http://e.metaclarity.org/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://e.metaclarity.org</link>
	<description></description>
	<lastBuildDate>Wed, 06 Mar 2013 08:13:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Apache httpd + suEXEC + chroot + FastCGI + PHP by smallbulb</title>
		<link>http://e.metaclarity.org/268/httpdsuexecchrootfastcgiphp/comment-page-1/#comment-1260</link>
		<dc:creator>smallbulb</dc:creator>
		<pubDate>Wed, 06 Mar 2013 08:13:29 +0000</pubDate>
		<guid isPermaLink="false">http://e.metaclarity.org/?p=268#comment-1260</guid>
		<description>Poor man&#039;s PHP environment chroot: http://www.smallbulb.net/2013/303-chroot-php</description>
		<content:encoded><![CDATA[<p>Poor man&#8217;s PHP environment chroot: <a href="http://www.smallbulb.net/2013/303-chroot-php" rel="nofollow">http://www.smallbulb.net/2013/303-chroot-php</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Apache httpd + suEXEC + chroot + FastCGI + PHP by Clean user isolation in Apache &#171; Remind me Later</title>
		<link>http://e.metaclarity.org/268/httpdsuexecchrootfastcgiphp/comment-page-1/#comment-791</link>
		<dc:creator>Clean user isolation in Apache &#171; Remind me Later</dc:creator>
		<pubDate>Mon, 17 Dec 2012 17:45:23 +0000</pubDate>
		<guid isPermaLink="false">http://e.metaclarity.org/?p=268#comment-791</guid>
		<description>[...] of writing this on my own, I would like to point you to this article, which does an excellent job of presenting both the big picture as well as the gory details. I [...]</description>
		<content:encoded><![CDATA[<p>[...] of writing this on my own, I would like to point you to this article, which does an excellent job of presenting both the big picture as well as the gory details. I [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cross-Browser SVG Issues by rupps</title>
		<link>http://e.metaclarity.org/52/cross-browser-svg-issues/comment-page-1/#comment-462</link>
		<dc:creator>rupps</dc:creator>
		<pubDate>Mon, 21 May 2012 10:53:19 +0000</pubDate>
		<guid isPermaLink="false">http://e.metaclarity.org/?p=52#comment-462</guid>
		<description>the definitive solution for fixing webkit scaling and allow anisotropic scaling: thanks to ur article i managed to fix it. the idea is, img.naturalheight&amp;img.naturalwidth contain valuable information about the original SVG aspect ratio. As chrome only scales isotropic, we scale the image 100%width, height auto, and later we apply a transform that shrinks/expands only scaling Y. something like:

var img=new Image();
img.onLoad=function() { fixme() }
img.src=&quot;your-image&quot;


fixme:

var CALCULATED_YSCALE=DESIRED_HEIGHT/(img.naturalHeight/img.naturalWidth*DESIRED_WIDTH);
$(img).css(&quot;-webkit-transform&quot;,&quot;scaleY(&quot;+CALCULATED_YSCALE+&quot;)&quot;)</description>
		<content:encoded><![CDATA[<p>the definitive solution for fixing webkit scaling and allow anisotropic scaling: thanks to ur article i managed to fix it. the idea is, img.naturalheight&amp;img.naturalwidth contain valuable information about the original SVG aspect ratio. As chrome only scales isotropic, we scale the image 100%width, height auto, and later we apply a transform that shrinks/expands only scaling Y. something like:</p>
<p>var img=new Image();<br />
img.onLoad=function() { fixme() }<br />
img.src=&#8221;your-image&#8221;</p>
<p>fixme:</p>
<p>var CALCULATED_YSCALE=DESIRED_HEIGHT/(img.naturalHeight/img.naturalWidth*DESIRED_WIDTH);<br />
$(img).css(&#8220;-webkit-transform&#8221;,&#8221;scaleY(&#8220;+CALCULATED_YSCALE+&#8221;)&#8221;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cross-Browser SVG Issues by rupps</title>
		<link>http://e.metaclarity.org/52/cross-browser-svg-issues/comment-page-1/#comment-461</link>
		<dc:creator>rupps</dc:creator>
		<pubDate>Mon, 21 May 2012 08:51:42 +0000</pubDate>
		<guid isPermaLink="false">http://e.metaclarity.org/?p=52#comment-461</guid>
		<description>after what i do is: it&#039;s missing:


</description>
		<content:encoded><![CDATA[<p>after what i do is: it&#8217;s missing:</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cross-Browser SVG Issues by rupps</title>
		<link>http://e.metaclarity.org/52/cross-browser-svg-issues/comment-page-1/#comment-460</link>
		<dc:creator>rupps</dc:creator>
		<pubDate>Mon, 21 May 2012 08:48:46 +0000</pubDate>
		<guid isPermaLink="false">http://e.metaclarity.org/?p=52#comment-460</guid>
		<description>discovered something interesting:

I just pasted a svg, instead of using img... etc, just pasted the whole svg.

exploring with firebug, I saw an interesting CSS rule:

html&#124;* &gt; svg { -webkit-transform-origin: 50% 50% }

it certainly opens another place to mingle...

besides, that gave me a clue to implement a (temporary) solution to address the scaling problem on chrome (only scales maintaining aspect ratio).

What I do is:





ok so now you have the img properly scaled in X, Y&#039;s gonna be bigger or smaller than your desired height, so you just scale-transform height manually:

var scale=$(&quot;#svgstuff&quot;).get(0).naturalHeight / MY_HEIGHT;
$(&quot;#svgstuff&quot;).css(&quot;-webkit-transform:scaleY(&quot;+scale+&quot;)&quot;;

it&#039;s quick n dirty but it works :)

still interested in all this, please drop me a message if you find better ways to do it.

thanx for your article!</description>
		<content:encoded><![CDATA[<p>discovered something interesting:</p>
<p>I just pasted a svg, instead of using img&#8230; etc, just pasted the whole svg.</p>
<p>exploring with firebug, I saw an interesting CSS rule:</p>
<p>html|* &gt; svg { -webkit-transform-origin: 50% 50% }</p>
<p>it certainly opens another place to mingle&#8230;</p>
<p>besides, that gave me a clue to implement a (temporary) solution to address the scaling problem on chrome (only scales maintaining aspect ratio).</p>
<p>What I do is:</p>
<p>ok so now you have the img properly scaled in X, Y&#8217;s gonna be bigger or smaller than your desired height, so you just scale-transform height manually:</p>
<p>var scale=$(&#8220;#svgstuff&#8221;).get(0).naturalHeight / MY_HEIGHT;<br />
$(&#8220;#svgstuff&#8221;).css(&#8220;-webkit-transform:scaleY(&#8220;+scale+&#8221;)&#8221;;</p>
<p>it&#8217;s quick n dirty but it works <img src='http://e.metaclarity.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>still interested in all this, please drop me a message if you find better ways to do it.</p>
<p>thanx for your article!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Cross-Browser SVG Issues by rupps</title>
		<link>http://e.metaclarity.org/52/cross-browser-svg-issues/comment-page-1/#comment-459</link>
		<dc:creator>rupps</dc:creator>
		<pubDate>Mon, 21 May 2012 08:19:41 +0000</pubDate>
		<guid isPermaLink="false">http://e.metaclarity.org/?p=52#comment-459</guid>
		<description>hi! been fighting with svg scaling,

situation seems improved now, 

in my tests, in firefox 12.0 svg&#039;s inside img&#039;s scale beautifully to provided width &amp; height as you can expect

safari, 100%

chrome: big deception, it scales, but only mantaining aspect ratio. this is driving me crazy, do you have an idea what to try? i tried all your methods, even the object thing, no results.

android stock browser 3.2 (webkit) 100 % !!

internet explorer ... not very interested really :)</description>
		<content:encoded><![CDATA[<p>hi! been fighting with svg scaling,</p>
<p>situation seems improved now, </p>
<p>in my tests, in firefox 12.0 svg&#8217;s inside img&#8217;s scale beautifully to provided width &amp; height as you can expect</p>
<p>safari, 100%</p>
<p>chrome: big deception, it scales, but only mantaining aspect ratio. this is driving me crazy, do you have an idea what to try? i tried all your methods, even the object thing, no results.</p>
<p>android stock browser 3.2 (webkit) 100 % !!</p>
<p>internet explorer &#8230; not very interested really <img src='http://e.metaclarity.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rendering TeX &amp; Graphs to SVG in WordPress by Grant</title>
		<link>http://e.metaclarity.org/142/rendering-tex-graphs-to-svg-in-wordpress/comment-page-1/#comment-435</link>
		<dc:creator>Grant</dc:creator>
		<pubDate>Thu, 15 Mar 2012 20:17:18 +0000</pubDate>
		<guid isPermaLink="false">http://e.metaclarity.org/?p=142#comment-435</guid>
		<description>Disregard previous comment -- found &quot;Settings&quot; menu for setting paths.</description>
		<content:encoded><![CDATA[<p>Disregard previous comment &#8212; found &#8220;Settings&#8221; menu for setting paths.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rendering TeX &amp; Graphs to SVG in WordPress by Grant</title>
		<link>http://e.metaclarity.org/142/rendering-tex-graphs-to-svg-in-wordpress/comment-page-1/#comment-433</link>
		<dc:creator>Grant</dc:creator>
		<pubDate>Fri, 02 Mar 2012 02:33:46 +0000</pubDate>
		<guid isPermaLink="false">http://e.metaclarity.org/?p=142#comment-433</guid>
		<description>This looks great.  But I just tried to install it on my WP site and I&#039;m running into two problems:

1) &quot;pydvi2svg path not specified&quot;  (it&#039;s installed in /usr/local/bin), and

2) The string &#039;options[&#039;includeselector&#039;]) { ?&gt; &#039;  appears in the upper-left corner of every page displayed from the site.   I&#039;m not a PHP programmer, but if you can point me in the right direction, I&#039;ll see if I can fix things up.</description>
		<content:encoded><![CDATA[<p>This looks great.  But I just tried to install it on my WP site and I&#8217;m running into two problems:</p>
<p>1) &#8220;pydvi2svg path not specified&#8221;  (it&#8217;s installed in /usr/local/bin), and</p>
<p>2) The string &#8216;options['includeselector']) { ?&gt; &#8216;  appears in the upper-left corner of every page displayed from the site.   I&#8217;m not a PHP programmer, but if you can point me in the right direction, I&#8217;ll see if I can fix things up.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Apache httpd + suEXEC + chroot + FastCGI + PHP by Jan-Hendrik Palic</title>
		<link>http://e.metaclarity.org/268/httpdsuexecchrootfastcgiphp/comment-page-1/#comment-311</link>
		<dc:creator>Jan-Hendrik Palic</dc:creator>
		<pubDate>Tue, 19 Jul 2011 14:16:10 +0000</pubDate>
		<guid isPermaLink="false">http://e.metaclarity.org/?p=268#comment-311</guid>
		<description>Hi again,

I applied the following patch:

@@ -86,7 +86,7 @@
  *             debugging purposes.
  */
 #ifndef AP_LOG_EXEC
-#define AP_LOG_EXEC DEFAULT_EXP_LOGFILEDIR &quot;/suexec_log&quot; /* Need me? */
+#define AP_LOG_EXEC &quot;/var/log/apache2/suexec_log&quot; /* Need me? */
 #endif
 
 /*

and this error went away.

Regards.

Jan</description>
		<content:encoded><![CDATA[<p>Hi again,</p>
<p>I applied the following patch:</p>
<p>@@ -86,7 +86,7 @@<br />
  *             debugging purposes.<br />
  */<br />
 #ifndef AP_LOG_EXEC<br />
-#define AP_LOG_EXEC DEFAULT_EXP_LOGFILEDIR &#8220;/suexec_log&#8221; /* Need me? */<br />
+#define AP_LOG_EXEC &#8220;/var/log/apache2/suexec_log&#8221; /* Need me? */<br />
 #endif</p>
<p> /*</p>
<p>and this error went away.</p>
<p>Regards.</p>
<p>Jan</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Apache httpd + suEXEC + chroot + FastCGI + PHP by Jan-Hendrik Palic</title>
		<link>http://e.metaclarity.org/268/httpdsuexecchrootfastcgiphp/comment-page-1/#comment-310</link>
		<dc:creator>Jan-Hendrik Palic</dc:creator>
		<pubDate>Tue, 19 Jul 2011 13:02:21 +0000</pubDate>
		<guid isPermaLink="false">http://e.metaclarity.org/?p=268#comment-310</guid>
		<description>Hi,

I followed the instruction of this howto in Ubuntu 10.04, apache 2.2.14 and php 5.3.2 (original sources and patches from this howto). 

I ran into the following problem:

[Tue Jul 19 14:49:12 2011] [warn] FastCGI: (dynamic) server &quot;/home/jpalic/usr/local/wrappers/php5-fcgi&quot; (pid 29259) terminated by calling exit with status &#039;1&#039;
[Tue Jul 19 14:49:17 2011] [warn] FastCGI: (dynamic) server &quot;/home/jpalic/usr/local/wrappers/php5-fcgi&quot; (uid 1001, gid 1001) restarted (pid 29260)
suexec failure: could not open log file
fopen: No such file or directory

Does anyone have a solution for that?

Thanks in advance and regards.

Jan</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I followed the instruction of this howto in Ubuntu 10.04, apache 2.2.14 and php 5.3.2 (original sources and patches from this howto). </p>
<p>I ran into the following problem:</p>
<p>[Tue Jul 19 14:49:12 2011] [warn] FastCGI: (dynamic) server &#8220;/home/jpalic/usr/local/wrappers/php5-fcgi&#8221; (pid 29259) terminated by calling exit with status &#8216;1&#8242;<br />
[Tue Jul 19 14:49:17 2011] [warn] FastCGI: (dynamic) server &#8220;/home/jpalic/usr/local/wrappers/php5-fcgi&#8221; (uid 1001, gid 1001) restarted (pid 29260)<br />
suexec failure: could not open log file<br />
fopen: No such file or directory</p>
<p>Does anyone have a solution for that?</p>
<p>Thanks in advance and regards.</p>
<p>Jan</p>
]]></content:encoded>
	</item>
</channel>
</rss>
