User Pierre Spring - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T14:11:34Zhttp://stackoverflow.com/feeds/user/1532http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1693677/debugging-php-on-mac/1694831#16948310Answer by Pierre Spring for debugging php on mac?Pierre Spring2009-11-07T23:42:59Z2009-11-07T23:42:59Z<p>Using <a href="http://xdebug.org/" rel="nofollow">xdebug</a> is a good start. Download the package and follow the instructions in the <code>INSTALL</code> file. It's fairly easy. Once this is done, add the following lines to your <code>php.ini</code> file:</p>
<pre><code>;;[xdebug]
zend_extension="/Path/to/your/module/xdebug.so"
xdebug.file_link_format="txmt://open?url=file://%f&line=%1"
xdebug.var_display_max_depth = 20
</code></pre>
<p>Don't forget to restart Apache after this.</p>
<p>Most debugging can be done using a simple <code>die(var_dump($some_variable))</code>. It's not very sophisticated, but with xdebug installed, the output of a vardump looks pretty good in a browser. In most of the cases this is enough.</p>
<p>If you need more control, you can add an <code>xdebug_break();</code> statement in your code and add the following lines to your <code>php.ini</code>:</p>
<pre><code>xdebug.remote_enable=1
xdebug.remote_host=localhost
xdebug.remote_port=9000
xdebug.remote_autostart=1
</code></pre>
<p>Again, don't forget to restart Apache.</p>
<p>Now, using a tool like <a href="http://www.bluestatic.org/software/macgdbp/" rel="nofollow">MacGDBp</a> (or Eclipse+PDT if you must), you get a classic debugger. You can step though your program.</p>
<p>Have fun!</p>
http://stackoverflow.com/questions/1694703/mac-os-x-10-5-apache-and-subversion-upgrade-alternatives/1694786#16947860Answer by Pierre Spring for Mac OS X 10.5 Apache and Subversion upgrade alternativesPierre Spring2009-11-07T23:22:51Z2009-11-07T23:22:51Z<p>I have been developing for the LAMP stack on a Mac for bit over 4 years now. I have tried pretty much every flavor of the stack on the Mac.</p>
<ul>
<li><strong>Native:</strong> Not viable, because it's an old codebase.</li>
<li><strong><a href="http://www.macports.org/" rel="nofollow">MacPorts</a>:</strong> I ran into trouble with OS X updates.</li>
<li><strong>Self Compiled:</strong> Same as with the MacPorts, I ran into trouble with OS X updates.</li>
<li><strong>MAMPP:</strong> I didn't like this package, yet this is a personal dislike. I kind of disliked it's <em>freemium</em> like style. The package is not easily configurable, except using the commercial configuration software.</li>
<li><strong><a href="http://www.apachefriends.org/en/xampp-macosx.html" rel="nofollow">XAMPP</a>:</strong> I ended up sticking with XAMPP.</li>
</ul>
<p><strong>About <a href="http://www.apachefriends.org/en/xampp-macosx.html" rel="nofollow">XAMPP</a>:</strong></p>
<p>The XAMPP code base is rather up to date. With the <strong>Developer Package</strong>, you get all the tools necessary to compile additional extensions. Everything is configured in <code>/Applications/XAMPP/etc/</code>.</p>
http://stackoverflow.com/questions/1664362/access-an-array-returned-by-a-function/1664379#16643790Answer by Pierre Spring for Access an Array Returned by a FunctionPierre Spring2009-11-02T23:30:34Z2009-11-02T23:30:34Z<p>I have asked a <a href="http://stackoverflow.com/questions/13109/php-access-array-value-on-the-fly">similar question</a> some time ago.</p>
<p>The short answer is no, you can not. Yet, if you just need the first value in the array, you can use reset():</p>
<pre><code>fuction getArray()
{
array('la', 'li', 'lu');
}
echo reset(getArray()); // echos "la"
</code></pre>
http://stackoverflow.com/questions/1560075/zip-files-get-corrupted-by-ie0ZIP Files get corrupted by IEPierre Spring2009-10-13T12:58:35Z2009-10-13T13:37:12Z
<p>I am delivering a ZIP file in 64k chunks using a loop in PHP (but the problem would arise with any server side language).</p>
<p>When fetching the file with FF, everything goes just fine.</p>
<p>When fetching the file with IE7, some bits get corrupted. This leads to an error message regarding wrong CRC (a hash) and some of the unzipped files end up being corrupted.</p>
<p>The headers being sent are the following:</p>
<pre><code>Expires: 0
Cache-Control: must-revalidate, post-check=0, pre-check=0
Pragma: public
Content-Description: File Transfer
Content-Disposition: attachment; filename="671fb8f80f5e94984c59e61c3c91bb70.zip";
Content-Transfer-Encoding: binary
Vary: Accept-Encoding
Content-Encoding: gzip
Keep-Alive: timeout=5, max=100
Connection: Keep-Alive
Transfer-Encoding: chunked
Content-Type: application/octet-stream
</code></pre>
<p>Does anyone have a clue where this corruption comes from?</p>
http://stackoverflow.com/questions/1560075/zip-files-get-corrupted-by-ie/1560303#15603032Answer by Pierre Spring for ZIP Files get corrupted by IEPierre Spring2009-10-13T13:35:16Z2009-10-13T13:35:16Z<p>Thanks to the previous answers, i managed to solve the problem:</p>
<p>Apache's <strong>mod_deflate</strong> encoded the responses in gzip. This had two effects when sending the file in chunks:</p>
<ol>
<li>The <code>Content-Length</code> header was not sent out</li>
<li>The delivered files were corrupted when using IE7</li>
</ol>
<p>The solution, in php, is to disable the encoding of the response using the following command:</p>
<pre><code>apache_setenv('no-gzip', '1');
</code></pre>
http://stackoverflow.com/questions/1441333/mysql-typecasting-null-to-00MySQL: Typecasting NULL to 0Pierre Spring2009-09-17T21:01:58Z2009-09-17T21:11:07Z
<p>Hi all,</p>
<p>Let us suppose the following table (e.g. a result of several inner join statements):</p>
<pre><code>id | column_1 | column_2
------------------------
1 | 1 |
2 | 2 | 2
3 | | 3
</code></pre>
<p>Which you could for example get from the following statement:</p>
<pre><code>select a.id, t1.column_1, t2.column_2
from a
left join t1 on a.id = t1.id
left join t2 on a.id = t2.id
</code></pre>
<p>Now, if i'd like to sum up t1.column_1 and t2.column_2 as follows</p>
<pre><code>select
a.id,
t1.column_1,
t2.column_2,
(t1.column_1 + t2.column_2) as cumulated
from a
left join t1 on a.id = t1.id
left join t2 on a.id = t2.id
</code></pre>
<p>The reslut will look as follows:</p>
<pre><code>id | column_1 | column_2 | cumulated
------------------------------------
1 | 1 | NULL | NULL
2 | 2 | 2 | 4
3 | NULL | 3 | NULL
</code></pre>
<p>My question basically is: is there a way to typecast NULL into 0 in order to do some math? </p>
<p>I have tried <code>CONVERT(t1.column_1, SIGNED)</code> and <code>CAST(t1.column_1 as SIGNED)</code>, but a <code>NULL</code> stays a <code>NULL</code>.</p>
http://stackoverflow.com/questions/1440808/mysql-union-of-a-left-join-with-a-right-join0MySQL: Union of a Left Join with a Right JoinPierre Spring2009-09-17T19:13:25Z2009-09-17T20:28:46Z
<p>Hi all,</p>
<p>Say we have the following tables t1 and t2:</p>
<pre><code>t1:
id | column_1
-------------
1 | 1
2 | 2
t2:
id | column_2
-------------
2 | 2
3 | 3
</code></pre>
<p>and we want to find the following result:</p>
<pre><code>id | column_1 | column_2
------------------------
1 | 1 |
2 | 2 | 2
3 | | 3
</code></pre>
<p>This basically is the union of a right join with a left join. The following code works but feels clumsy:</p>
<pre><code>(
SELECT t1.id, t1.column_1, t2.column_2
FROM t1
LEFT JOIN t2 ON t1.id = t2.id
)
UNION
(
SELECT t2.id, t1.column_1, t2.column_2
FROM t1
RIGHT JOIN t2 ON t1.id = t2.id
)
</code></pre>
<p>Is there a better way to achieve this?</p>
http://stackoverflow.com/questions/1327151/soap-request-with-attribute1SOAP request with attributePierre Spring2009-08-25T09:37:32Z2009-08-28T18:49:07Z
<p>hi all,</p>
<p>I can not seem to find out how to set an attribute to a SOAP request without using the <strong>XSD_ANYXML</strong> encoding.</p>
<p>The request parameter should look as follows</p>
<pre><code><request
xmlns:ns="/some/ns">
...
<ns:parameter attr="some attribute">
value
</ns:parameter>
...
</request>
</code></pre>
<p>Of course the following code works, but it's rather ugly (ugly, because it uses string concatenation where it should <strong>use the SOAP_Client API</strong> and because it does not use the general namespace)</p>
<pre><code>$param = new SoapVar(
'<ns_xxx:parameter xmlns:ns_xxx="/some/ns" attr="some attribute">
value
</ns_xxx:parameter>',
XSD_ANYXML
);
</code></pre>
<p>Is there a better way to create a SOAP request parameter with a namespace and an attribute?</p>
<p>I am looking for s.th. like the following (this is just some pseudo code using the <a href="http://php.net/manual/en/soapvar.soapvar.php" rel="nofollow">SoapVar</a> API):</p>
<pre><code>$param = new SoapVar(
array(
'_' => 'value',
'attr' => 'some attribute'
),
SOME_ENCODING,
null,
null,
null,
'/some/ns'
);
</code></pre>
http://stackoverflow.com/questions/1122292/php-soap-client-that-understands-multi-part-messages/1276937#12769370Answer by Pierre Spring for PHP SOAP client that understands multi-part messages?Pierre Spring2009-08-14T09:37:25Z2009-08-14T09:37:25Z<p>Using S. Gehrig second idea worked just fine here.</p>
<p>In <strong>most cases</strong>, you have just a single message packed into a MIME MultiPart message. In those cases a "<em>SoapFault exception: [Client] looks like we got no XML document</em>" exception is thrown. Here the following class should do just fine:</p>
<pre><code>class MySoapClient extends SoapClient
{
public function __doRequest($request, $location, $action, $version, $one_way = 0)
{
$response = parent::__doRequest($request, $location, $action, $version, $one_way);
// strip away everything but the xml.
$response = preg_replace('#^.*(<\?xml.*>)[^>]*$#s', '$1', $response);
return $response;
}
}
</code></pre>
http://stackoverflow.com/questions/13109/php-access-array-value-on-the-fly3php: access array value on the flyPierre Spring2008-08-16T12:42:54Z2009-08-13T06:29:03Z
<p>in php, i often need to map a variable using an array ... but i can not seem to be able to do this in a one liner. c.f. example:</p>
<pre><code>// the following results in an error:
echo array('a','b','c')[$key];
// this works, using an unnecessary variable:
$variable = array('a','b','c');
echo $variable[$key];
</code></pre>
<p>this is a minor problem, but it keeps bugging every once in a while ... i don't like the fact, that i use a variable for nothing ;)</p>
http://stackoverflow.com/questions/31870/using-a-html-entity-in-xslt-e-g-nbsp4using a html entity in xslt (e.g. )Pierre Spring2008-08-28T08:55:34Z2009-08-07T10:13:14Z
<p>what is the best way to include a htlm entity in XSLT?</p>
<pre><code><xsl:template match="/a/node">
<xsl:value-of select="."/>
<!--
due to a strange behaviour in stackoverflow, the
&_nbsp_; gets evaluated, buth the amp not.
hencce the space in the following code.
-->
<xsl:text>&_nbsp_;</xsl:text>
</xsl:template>
</code></pre>
<p>this one returns a <strong>XsltParseError</strong></p>
http://stackoverflow.com/questions/1007451/if-i-call-a-flash-function-at-the-same-time-as-a-href-link-will-flash-function-al/1007570#10075700Answer by Pierre Spring for If I call a flash function at the same time as a href link will flash function always be executed?Pierre Spring2009-06-17T14:55:35Z2009-06-17T14:55:35Z<p>The answer to the question is no.</p>
<p>There is an easy workaround. Simply stop the propagation of the click event and let flash do the redirection:</p>
<pre><code><a href="page2.php" onClick="stop_and_call(event);"/>
</code></pre>
<p>the javascript:</p>
<pre><code>function stop_and_call(e)
{
if (!!(window.attachEvent && !window.opera)){
// this is IE
e.returnValue = false;
e.cancelBubble = true;
} else {
e.preventDefault();
e.stopPropagation();
}
e.stopped = true;
callFlash();
}
</code></pre>
http://stackoverflow.com/questions/1004070/db-design-when-should-you-make-a-superclass-of-common-attributes/1007229#10072290Answer by Pierre Spring for DB Design: when should you make a superclass of common attributes?Pierre Spring2009-06-17T14:04:28Z2009-06-17T14:04:28Z<p>In the GradStudent scenario you have the following property:</p>
<p>A GradStudent can be TeachAsst first and become ResearchAsst later. Or she can be both at the same time.</p>
<p>In this situation, denormalization might not be a good idea.</p>
<p>Yet in your case, you measure cameas and mobile phones. They will never become something else. I think you could risk the denormalization for the sake of less complexity.</p>
<p>Or, you could even think about using a documend db like <a href="http://couchdb.apache.org/" rel="nofollow">CouchDB</a>, in which you do not have to follow any schema.</p>
http://stackoverflow.com/questions/951373/when-is-eval-evil-in-php6when is eval evil in php?Pierre Spring2009-06-04T15:43:26Z2009-06-05T01:36:37Z
<p>hi all,</p>
<p>i all the years i have been developing in php, i've always heard that using eval() is evil.</p>
<p>considering the following code, wouldn't it make sense, to use the second (and elegant) option? if no, why?</p>
<pre><code>// $type is the result of an SQL statement
// e.g. SHOW COLUMNS FROM a_table LIKE 'a_column';
// hence you can be pretty sure about the consistency
// of your string
$type = "enum('a','b','c')";
// possibility one
$type_1 = preg_replace('#^enum\s*\(\s*\'|\'\s*\)\s*$#', '', $type);
$result = preg_split('#\'\s*,\s*\'#', $type_1);
// possibility two
eval('$result = '.preg_replace('#^enum#','array', $type).';');
</code></pre>
http://stackoverflow.com/questions/299168/html-text-decoration-of-a-link-without-css1html: text decoration of a link without cssPierre Spring2008-11-18T15:55:09Z2009-05-08T08:31:30Z
<p>i need to to some (technically awful but still good looking) table designs for blackberries that have all css support disabled.</p>
<p>i don't seem to find out how to get my links to display as follows without css:</p>
<pre><code><style type="text/css">
a.hover {
border:0;
}
a {
text-decoration: none;
}
</style>
</code></pre>
<p>is it even possible, just using html?</p>
http://stackoverflow.com/questions/639089/sql-syntax-error-when-creating-a-stored-procedure-in-mysql0SQL syntax error when creating a stored procedure in MYSQLPierre Spring2009-03-12T15:14:06Z2009-04-02T01:01:19Z
<p>hi all,</p>
<p>i have a hard time locating an error when trying to create a stored procedure in mysql.</p>
<p>if i run every single line of the procedure independently, everything works just fine.</p>
<pre><code>CREATE PROCEDURE cms_proc_add_child (param_parent_id INT, param_name CHAR(255), param_content_type CHAR(255))
BEGIN
SELECT @child_left := rgt FROM cms_tree WHERE id = param_parent_id;
UPDATE cms_tree SET rgt = rgt+2 WHERE rgt >= @child_left;
UPDATE cms_tree SET lft = lft+2 WHERE lft >= @child_left;
INSERT INTO cms_tree (name, lft, rgt, content_type) VALUES (param_name, @child_left, @child_left+1, param_content_type);
END
</code></pre>
<p>i get the following (helpful) error: <strong>ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 3</strong> … i just don't know where to start debugging, as every single one of these lines is correct.</p>
<p>any tips?</p>
http://stackoverflow.com/questions/435005/xslt-javascript-and-unescaped-html-entities0xslt, javascript and unescaped html entitiesPierre Spring2009-01-12T10:17:03Z2009-03-17T19:58:12Z
<p>i have a tiny little problem with xslt, js and html entities, eg. within a template:</p>
<pre><code><script type="text/javascript">
<xsl:value-of select="/some/node"/>
for (var i = 0; i &lt; 5; i++) {
// ^^^ js error
}
</script>
<script type="text/javascript">
<xsl:value-of select="/some/node"/>
for (var i = 0; i < 5; i++) {
// ^ xslt error
}
</script>
<script type="text/javascript">
<xsl:value-of select="/some/node"/>
// <![CDATA[
for (var i = 0; i < 5; i++) {
// ^ becomes &lt;
}
// ]]>
</script>
<script type="text/javascript">
<xsl:value-of select="/some/node"/>
for (var i = 0; i <xsl:value-of disable-output-escaping="yes" select="string('&lt;')"/> 5; i++) {
// works of course
}
</script>
</code></pre>
<p>does anyone have an idea where my problem could come from? i always thought the xslt processor would leave the content of a <script/> element unescaped when using the html output method ...</p>
<p>i run libxslt2 version 1.1.24 on OSX which was installed using macportsports ...</p>
http://stackoverflow.com/questions/641893/access-lastinsertid-from-php-after-calling-a-stored-procedure2access LAST_INSERT_ID() from php after calling a stored procedurePierre Spring2009-03-13T09:10:59Z2009-03-15T11:52:36Z
<p>hi all,</p>
<p>i have defined a stored procedure (let's call it <em>proc_create_node(parent INT)</em>) in mysql which does an insertion.</p>
<p>when i call it from the mysql cli, doing the following works just fine:</p>
<pre><code>CALL proc_create_node(12);
SELECT LAST_INSERT_ID();
</code></pre>
<p>and i get the last inserted id:</p>
<pre><code>+------------------+
| LAST_INSERT_ID() |
+------------------+
| 15 |
+------------------+
</code></pre>
<p>now, when i call these lines from php, or if i use the <em>mysql_insert_id()</em> php function, i always get back <em>0</em>.</p>
<p>what am i missing? how could i get the last inserted id within php?</p>
<p>yours ... pierre</p>
http://stackoverflow.com/questions/629638/build-tree-from-flat-list-in-xml-using-xslt2build tree from flat list in XML using xsltPierre Spring2009-03-10T10:49:01Z2009-03-11T07:21:37Z
<p>hi all,</p>
<p>i use a minimalist MVC framework, where the <strong>PHP controler</strong> hands the <strong>DOM model</strong> to the <strong>XSLT view</strong> (c.f. <a href="http://okapi.liip.ch/" rel="nofollow">okapi</a>).</p>
<p>in order to build a navigation tree, i used nested sets in MYSQL. this way, i end up with a model XML that looks as follows:</p>
<pre><code><tree>
<node>
<name>root</name>
<depth>0</depth>
</node>
<node>
<name>TELEVISIONS</name>
<depth>1</depth>
</node>
<node>
<name>TUBE</name>
<depth>2</depth>
</node>
<node>
<name>LCD</name>
<depth>2</depth>
</node>
<node>
<name>PLASMA</name>
<depth>2</depth>
</node>
<node>
<name>PORTABLE ELECTRONICS</name>
<depth>1</depth>
</node>
<node>
<name>MP3 PLAYERS</name>
<depth>2</depth>
</node>
<node>
<name>FLASH</name>
<depth>3</depth>
</node>
<node>
<name>CD PLAYERS</name>
<depth>2</depth>
</node>
<node>
<name>2 WAY RADIOS</name>
<depth>2</depth>
</node>
</tree>
</code></pre>
<p>which represents the following structure</p>
<ul>
<li>root
<ul>
<li>TELEVISIONS
<ul>
<li>TUBE</li>
<li>LCD</li>
<li>PLASMA</li>
</ul></li>
<li>PORTABLE ELECTRONICS
<ul>
<li>MP3 PLAYERS
<ul>
<li>FLASH</li>
</ul></li>
<li>CD PLAYERS</li>
<li>2 WAY RADIOS</li>
</ul></li>
</ul></li>
</ul>
<p>now, i can't seem to find a way to get from my XML to this html list using XSLT. does anyone have a suggestion?</p>
<p>cheers ... pierre</p>
<p>PS: this is the example tree from the <a href="http://dev.mysql.com/tech-resources/articles/hierarchical-data.html" rel="nofollow">nested sets tutorial on dev.mysql.com</a></p>
http://stackoverflow.com/questions/480300/should-i-really-use-a-relation-table-when-tagging-blog-posts1should i really use a relation table when tagging blog posts?Pierre Spring2009-01-26T16:05:52Z2009-01-26T16:46:56Z
<p>hi all,</p>
<p>while trying to figure out how to tag a blog post with a single sql statement <a href="http://stackoverflow.com/questions/480065/nested-insert-in-mysql-for-tagging">here</a>, the following thought crossed my mind: using a relation table tag2post that references tags by id as follows just isn't necessary:</p>
<pre><code>tags
+-------+-----------+
| tagid | tag |
+-------+-----------+
| 1 | news |
| 2 | top-story |
+-------+-----------+
tag2post
+----+--------+-------+
| id | postid | tagid |
+----+--------+-------+
| 0 | 322 | 1 |
+----+--------+-------+
</code></pre>
<p><strong>why not</strong> just using the following model, where you <strong>index the tag itself</strong> as follows? taken that tags are never renamed, but added and removed, this could make sense, right? what do you think?</p>
<pre><code>tag2post
+----+--------+-------+
| id | postid | tag |
+----+--------+-------+
| 1 | 322 | sun |
+----+--------+-------+
| 2 | 322 | moon |
+----+--------+-------+
| 3 | 4443 | sun |
+----+--------+-------+
| 4 | 2567 | love |
+----+--------+-------+
</code></pre>
<p>PS: i keep an <strong>id</strong>, i order to easily display the last <em>n</em> tags added...</p>
http://stackoverflow.com/questions/480065/nested-insert-in-mysql-for-tagging3nested insert in mysql for taggingPierre Spring2009-01-26T15:04:48Z2009-01-26T15:31:26Z
<p>hi all,</p>
<p>i'd like to add a tag to a blogpost with a single sql statement.</p>
<p>say my tables would look as follows:</p>
<pre><code>tags
+-------+-----------+
| tagid | tag |
+-------+-----------+
| 1 | news |
| 2 | top-story |
+-------+-----------+
tag2post
+----+--------+-------+
| id | postid | tagid |
+----+--------+-------+
| 0 | 322 | 1 |
+----+--------+-------+
</code></pre>
<p>the problem i'd like to solve is <strong>inserting a new tag</strong>, <strong>retrieve it's id</strong> and then <strong>inset this new id into the relation table</strong> in a single sql statement.</p>
<pre><code>INSERT INTO tag2post (postid, tagid)
VALUES
(
332, # the post
IF (
(SELECT tagid FROM tags WHERE tag = 'new_tag'),
(SELECT tagid FROM tags WHERE tag = 'new_tag'),
# here is where i'd like to insert
# the new_tag and return it's id
'i am lost here'
)
)
</code></pre>
http://stackoverflow.com/questions/469844/convert-xhtml-to-wiki-syntax-using-xslt3convert xhtml to wiki syntax using xsltPierre Spring2009-01-22T16:29:04Z2009-01-23T00:01:15Z
<p>hi all,</p>
<p>i would like to <strong>convert xhtml to dokuwiki syntax using xslt</strong>.</p>
<p>now, one thing i can not seem to work my head around is how to handle nested lists. the dokuwiki syntax uses an asterisk (*) for a list item which is prepended by two white spaces per nesting level (c.f. <a href="http://www.dokuwiki.org/syntax#lists" rel="nofollow">wiki syntax</a>).</p>
<p><strong>my question:</strong> in the following example, how can the <strong><xsl:template mach="li"></strong> that matches the list <strong>item 2.1.1</strong> be aware of it's <strong>nesting level</strong>, in order to prepend the right amount of white spaces?</p>
<pre><code>* list item 1
* list item 2
* list item 2.1
* list item 2.1.1
* list item 2.2
* list item 2.3
* list item 3
</code></pre>
<p>corresponds to</p>
<ul>
<li>list item 1</li>
<li>list item 2
<ul>
<li>list item 2.1
<ul>
<li>list item 2.1.1</li>
</ul></li>
<li>list item 2.2</li>
<li>list item 2.3</li>
</ul></li>
<li>list item 3</li>
</ul>
<p>which is how the following html is displayed:</p>
<pre><code><ul>
<li>
list item 1
</li>
<li>
list item 2
<ul>
<li>
list item 2.1
<ul>
<li>list item 2.1.1</li>
</ul>
</li>
<li>list item 2.2</li>
<li>list item 2.3</li>
</ul>
</li>
<li>
list item 3
</li>
</ul>
</code></pre>
http://stackoverflow.com/questions/435005/xslt-javascript-and-unescaped-html-entities/435468#4354684Answer by Pierre Spring for xslt, javascript and unescaped html entitiesPierre Spring2009-01-12T13:54:28Z2009-01-12T13:54:28Z<p>ok. long story, short answer: </p>
<p>it seems that with <strong>some libxslt versions</strong> the xslt processor leaves the content of a <script/> element unescaped when using the html output method, <strong>with others
not</strong> ... therefor the following is recommended:</p>
<pre><code><script type="text/javascript">
<xsl:value-of select="/some/node"/>
<xsl:text disable-output-escaping="yes">
// ^ does the trick ...
for (var i = 0; i < 5; i++) {
// ^ works
}
</xsl:text>
</script>
</code></pre>
http://stackoverflow.com/questions/169574/keeping-dot-files-synched-across-machines/169663#1696632Answer by Pierre Spring for Keeping dot files synched across machines?Pierre Spring2008-10-04T03:14:48Z2008-10-04T03:14:48Z<p>i use svn ... having a public and a private repository ... so as soon as i get on a server i just</p>
<pre><code>svn co http://my.rep/home/public
</code></pre>
<p>and have all my dot files ...</p>
http://stackoverflow.com/questions/161342/is-there-a-php-library-for-email-address-validation/161909#1619090Answer by Pierre Spring for Is there a php library for email address validation?Pierre Spring2008-10-02T12:00:39Z2008-10-02T12:00:39Z<p>i'd recommend to look at the source code of Zend_Validate_EmailAddress [<a href="http://framework.zend.com/svn/framework/standard/trunk/library/Zend/Validate/EmailAddress.php" rel="nofollow">source</a>].</p>
<p>once you have your dependencies fixed you can simply do the following:</p>
<pre><code>$mail_validator = new Zend_Validate_EmailAddress();
$mail_validator->isValid($address); // returns true or false
</code></pre>
<p>best would be to get the full Zend Library into your project via svn external and point the include path to it...</p>
<p>but you can just download the necessary files (<a href="http://framework.zend.com/svn/framework/standard/trunk/library/Zend/Validate/EmailAddress.php" rel="nofollow">1</a>,<a href="http://framework.zend.com/svn/framework/standard/trunk/library/Zend/Validate/Abstract.php" rel="nofollow">2</a>,<a href="http://framework.zend.com/svn/framework/standard/trunk/library/Zend/Validate/Ip.php" rel="nofollow">3</a>,<a href="http://framework.zend.com/svn/framework/standard/trunk/library/Zend/Validate/Interface.php" rel="nofollow">4</a>,<a href="http://framework.zend.com/svn/framework/standard/trunk/library/Zend/Validate/Hostname.php" rel="nofollow">5</a>,<a href="http://framework.zend.com/svn/framework/standard/trunk/library/Zend/Loader.php" rel="nofollow">6</a>), and include them all (remove the require_once calls)</p>
http://stackoverflow.com/questions/61995/xslt-and-xpath-match-conditionally-upon-current-node-value3xslt and xpath: match conditionally upon current node valuePierre Spring2008-09-15T08:06:59Z2008-09-16T22:18:31Z
<p>given the following xml:</p>
<pre><code><current>
<login_name>jd</login_name>
</current>
<people>
<person>
<first>John</first>
<last>Doe</last>
<login_name>jd</login_name>
</preson>
<person>
<first>Pierre</first>
<last>Spring</last>
<login_name>ps</login_name>
</preson>
</people>
</code></pre>
<p>how can i get "John Doe" from within the current/login matcher?</p>
<p>i tried the following:</p>
<pre><code><xsl:template match="current/login_name">
<xsl:value-of select="../people/first[login_name = .]"/>
<xsl:text> </xsl:text>
<xsl:value-of select="../people/last[login_name = .]"/>
</xsl:template>
</code></pre>
http://stackoverflow.com/questions/49883/xslt-apply-templates-in-reverse-order/49887#498871Answer by Pierre Spring for xslt: apply-templates in reverse orderPierre Spring2008-09-08T15:05:09Z2008-09-08T15:13:51Z<p>you can do this, using xsl:sort. it is important to set the data-type="number" because else, the position will be sorted as a string, end therefor, the 10th node would ge considered before the 2nd one.</p>
<pre><code><xsl:template match="/">
<xsl:apply-templates select="root/node">
<xsl:sort
select="position()"
order="descending"
data-type="number"/>
</xsl:aplly-templates>
</xsl:template>
<xsl:template match="node">
<xsl:value-of select="."/>
</xsl:template>
</code></pre>
http://stackoverflow.com/questions/49883/xslt-apply-templates-in-reverse-order2xslt: apply-templates in reverse orderPierre Spring2008-09-08T15:03:52Z2008-09-08T15:13:51Z
<p>say i have this given xml file</p>
<pre><code><root>
<node>x</node>
<node>y</node>
<node>a</node>
</root>
</code></pre>
<p>and i want the following to be displayed</p>
<pre><code>ayx
</code></pre>
<p>using something similar to</p>
<pre><code><xsl:template match="/">
<xsl:apply-templates select="root/node"/>
</xsl:template>
<xsl:template match="node">
<xsl:value-of select="."/>
</xsl:template>
</code></pre>
http://stackoverflow.com/questions/32085/xslt-nodesets-length/39644#396440Answer by Pierre Spring for XSLT nodesets LengthPierre Spring2008-09-02T14:21:39Z2008-09-02T14:21:39Z<p>there is no need to put that into a </p>
<pre><code><xsl:variable name="length" select="count(nodes/node)"/>
</code></pre>
<p>though... you can just print it out as follows:</p>
<pre><code><xsl:value-of select="count(nodes/node)"/>
</code></pre>
<p>or use it in a if-clause as follows:</p>
<pre><code><xsl:if test="count(comments/comment) > '0'">
<ul>
<xsl:apply-templates select="comments/comment"/>
</ul>
</xsl:if>
</code></pre>
http://stackoverflow.com/questions/31870/using-a-html-entity-in-xslt-e-g-nbsp/31886#318861Answer by Pierre Spring for using a html entity in xslt (e.g. )Pierre Spring2008-08-28T09:10:04Z2008-08-28T09:10:04Z<p>one other possibility to use html entities from within xslt is the following one:</p>
<pre><code><xsl:text disable-output-escaping="yes">&amp;nbsp;</xsl:text>
</code></pre>
http://stackoverflow.com/questions/1560075/zip-files-get-corrupted-by-ie/1560159#1560159Comment by Pierre Spring on ZIP Files get corrupted by IEPierre Spring2009-10-13T13:13:15Z2009-10-13T13:13:15Zsorry for not mentioning the fact that we work on a lamp stack ;) the zip file is generated by php and then sent out by php itself.http://stackoverflow.com/questions/1560075/zip-files-get-corrupted-by-ie/1560141#1560141Comment by Pierre Spring on ZIP Files get corrupted by IEPierre Spring2009-10-13T13:10:24Z2009-10-13T13:10:24Zi did not add this header by myself. this is a header set by apache.http://stackoverflow.com/questions/1440808/mysql-union-of-a-left-join-with-a-right-join/1440825#1440825Comment by Pierre Spring on MySQL: Union of a Left Join with a Right JoinPierre Spring2009-09-18T12:42:15Z2009-09-18T12:42:15Zthis kind of returns 4 columns, right?http://stackoverflow.com/questions/1440808/mysql-union-of-a-left-join-with-a-right-join/1440820#1440820Comment by Pierre Spring on MySQL: Union of a Left Join with a Right JoinPierre Spring2009-09-17T20:46:04Z2009-09-17T20:46:04Zquite clever indeed!http://stackoverflow.com/questions/1440808/mysql-union-of-a-left-join-with-a-right-joinComment by Pierre Spring on MySQL: Union of a Left Join with a Right JoinPierre Spring2009-09-17T19:25:31Z2009-09-17T19:25:31Zhere are the tables, if you want to try it:
CREATE TABLE IF NOT EXISTS <code>t1</code> (
<code>id</code> int(11) NOT NULL,
<code>column_1</code> int(11) NOT NULL
);
INSERT INTO <code>t1</code> (<code>id</code>, <code>column_1</code>) VALUES
(1, 1),
(2, 2);
CREATE TABLE IF NOT EXISTS <code>t2</code> (
<code>id</code> int(11) NOT NULL,
<code>column_2</code> int(11) NOT NULL
);
INSERT INTO <code>t2</code> (<code>id</code>, <code>column_2</code>) VALUES
(2, 2),
(3, 3);http://stackoverflow.com/questions/1327151/soap-request-with-attribute/1344219#1344219Comment by Pierre Spring on SOAP request with attributePierre Spring2009-08-28T14:53:07Z2009-08-28T14:53:07Zi understand your liking of REST over SOAP. yet this answer really does not help at all. it does not help to tell people, not to use a technology, when they try to solve a problem in that particular technology. plus, what you write is simlpy wrong: SOAP does support attributes. c.f. <a href="http://www.w3.org/TR/2000/NOTE-SOAP-20000508/#_Toc478383492" rel="nofollow">w3.org/TR/2000/…</a>http://stackoverflow.com/questions/1327151/soap-request-with-attributeComment by Pierre Spring on SOAP request with attributePierre Spring2009-08-25T18:30:48Z2009-08-25T18:30:48Z@Anthony: i unfortunately do not control the SOAP server and have no influence over the service definition ;( else, of course, i could just make the attribute an element.http://stackoverflow.com/questions/951373/when-is-eval-evil-in-php/951607#951607Comment by Pierre Spring on when is eval evil in php?Pierre Spring2009-06-05T09:09:55Z2009-06-05T09:09:55Zeven though this did not answer the question per se, this is a very good answer to the question: what would be the best way to parse an enum() … thank you ;)http://stackoverflow.com/questions/629638/build-tree-from-flat-list-in-xml-using-xslt/629838#629838Comment by Pierre Spring on build tree from flat list in XML using xsltPierre Spring2009-03-10T15:15:43Z2009-03-10T15:15:43Zit seems like you can not do things like <xsl:if test="$descendants/*"> … but using EXSLT you can do <xsl:if test="exslt:node-set($descendants)/*"> …http://stackoverflow.com/questions/629638/build-tree-from-flat-list-in-xml-using-xslt/629838#629838Comment by Pierre Spring on build tree from flat list in XML using xsltPierre Spring2009-03-10T13:59:29Z2009-03-10T13:59:29Zthat is just what i was looking for! cheers!http://stackoverflow.com/questions/469844/convert-xhtml-to-wiki-syntax-using-xslt/471324#471324Comment by Pierre Spring on convert xhtml to wiki syntax using xsltPierre Spring2009-01-27T08:04:31Z2009-01-27T08:04:31Zgreat answer ... thank you!http://stackoverflow.com/questions/480065/nested-insert-in-mysql-for-tagging/480100#480100Comment by Pierre Spring on nested insert in mysql for taggingPierre Spring2009-01-26T15:46:25Z2009-01-26T15:46:25Zehhh ... you replace the tagid by the md5(tagid, tag)? isn't there some strange recursion that could break the universe?http://stackoverflow.com/questions/480065/nested-insert-in-mysql-for-tagging/480097#480097Comment by Pierre Spring on nested insert in mysql for taggingPierre Spring2009-01-26T15:42:15Z2009-01-26T15:42:15Ztried it and it failed ... but thx ;)
http://stackoverflow.com/questions/439226/html-rendered-incorrectly-in-net/439237#439237Comment by Pierre Spring on HTML rendered incorrectly in .NETPierre Spring2009-01-13T16:41:42Z2009-01-13T16:41:42Zjoe: this should be your first tag within the <xsl:stylesheet>http://stackoverflow.com/questions/435005/xslt-javascript-and-unescaped-html-entities/435088#435088Comment by Pierre Spring on xslt, javascript and unescaped html entitiesPierre Spring2009-01-12T11:17:39Z2009-01-12T11:17:39Zlooks like a bug then ... i'll try to narrow it down the best i can an submit the bug report ... cheerz for your answer ...