User Pierre Spring - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T14:11:34Z http://stackoverflow.com/feeds/user/1532 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1693677/debugging-php-on-mac/1694831#1694831 0 Answer by Pierre Spring for debugging php on mac? Pierre Spring 2009-11-07T23:42:59Z 2009-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&amp;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#1694786 0 Answer by Pierre Spring for Mac OS X 10.5 Apache and Subversion upgrade alternatives Pierre Spring 2009-11-07T23:22:51Z 2009-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#1664379 0 Answer by Pierre Spring for Access an Array Returned by a Function Pierre Spring 2009-11-02T23:30:34Z 2009-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-ie 0 ZIP Files get corrupted by IE Pierre Spring 2009-10-13T12:58:35Z 2009-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#1560303 2 Answer by Pierre Spring for ZIP Files get corrupted by IE Pierre Spring 2009-10-13T13:35:16Z 2009-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-0 0 MySQL: Typecasting NULL to 0 Pierre Spring 2009-09-17T21:01:58Z 2009-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-join 0 MySQL: Union of a Left Join with a Right Join Pierre Spring 2009-09-17T19:13:25Z 2009-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-attribute 1 SOAP request with attribute Pierre Spring 2009-08-25T09:37:32Z 2009-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>&lt;request xmlns:ns="/some/ns"&gt; ... &lt;ns:parameter attr="some attribute"&gt; value &lt;/ns:parameter&gt; ... &lt;/request&gt; </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( '&lt;ns_xxx:parameter xmlns:ns_xxx="/some/ns" attr="some attribute"&gt; value &lt;/ns_xxx:parameter&gt;', 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( '_' =&gt; 'value', 'attr' =&gt; '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#1276937 0 Answer by Pierre Spring for PHP SOAP client that understands multi-part messages? Pierre Spring 2009-08-14T09:37:25Z 2009-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('#^.*(&lt;\?xml.*&gt;)[^&gt;]*$#s', '$1', $response); return $response; } } </code></pre> http://stackoverflow.com/questions/13109/php-access-array-value-on-the-fly 3 php: access array value on the fly Pierre Spring 2008-08-16T12:42:54Z 2009-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-nbsp 4 using a html entity in xslt (e.g. &nbsp;) Pierre Spring 2008-08-28T08:55:34Z 2009-08-07T10:13:14Z <p>what is the best way to include a htlm entity in XSLT?</p> <pre><code>&lt;xsl:template match="/a/node"&gt; &lt;xsl:value-of select="."/&gt; &lt;!-- due to a strange behaviour in stackoverflow, the &amp;_nbsp_; gets evaluated, buth the amp not. hencce the space in the following code. --&gt; &lt;xsl:text&gt;&amp;_nbsp_;&lt;/xsl:text&gt; &lt;/xsl:template&gt; </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#1007570 0 Answer 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 Spring 2009-06-17T14:55:35Z 2009-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>&lt;a href="page2.php" onClick="stop_and_call(event);"/&gt; </code></pre> <p>the javascript:</p> <pre><code>function stop_and_call(e) { if (!!(window.attachEvent &amp;&amp; !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#1007229 0 Answer by Pierre Spring for DB Design: when should you make a superclass of common attributes? Pierre Spring 2009-06-17T14:04:28Z 2009-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-php 6 when is eval evil in php? Pierre Spring 2009-06-04T15:43:26Z 2009-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-css 1 html: text decoration of a link without css Pierre Spring 2008-11-18T15:55:09Z 2009-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>&lt;style type="text/css"&gt; a.hover { border:0; } a { text-decoration: none; } &lt;/style&gt; </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-mysql 0 SQL syntax error when creating a stored procedure in MYSQL Pierre Spring 2009-03-12T15:14:06Z 2009-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 &gt;= @child_left; UPDATE cms_tree SET lft = lft+2 WHERE lft &gt;= @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-entities 0 xslt, javascript and unescaped html entities Pierre Spring 2009-01-12T10:17:03Z 2009-03-17T19:58:12Z <p>i have a tiny little problem with xslt, js and html entities, eg. within a template:</p> <pre><code>&lt;script type="text/javascript"&gt; &lt;xsl:value-of select="/some/node"/&gt; for (var i = 0; i &amp;lt; 5; i++) { // ^^^ js error } &lt;/script&gt; &lt;script type="text/javascript"&gt; &lt;xsl:value-of select="/some/node"/&gt; for (var i = 0; i &lt; 5; i++) { // ^ xslt error } &lt;/script&gt; &lt;script type="text/javascript"&gt; &lt;xsl:value-of select="/some/node"/&gt; // &lt;![CDATA[ for (var i = 0; i &lt; 5; i++) { // ^ becomes &amp;lt; } // ]]&gt; &lt;/script&gt; &lt;script type="text/javascript"&gt; &lt;xsl:value-of select="/some/node"/&gt; for (var i = 0; i &lt;xsl:value-of disable-output-escaping="yes" select="string('&amp;lt;')"/&gt; 5; i++) { // works of course } &lt;/script&gt; </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 &lt;script/&gt; 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-procedure 2 access LAST_INSERT_ID() from php after calling a stored procedure Pierre Spring 2009-03-13T09:10:59Z 2009-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-xslt 2 build tree from flat list in XML using xslt Pierre Spring 2009-03-10T10:49:01Z 2009-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>&lt;tree&gt; &lt;node&gt; &lt;name&gt;root&lt;/name&gt; &lt;depth&gt;0&lt;/depth&gt; &lt;/node&gt; &lt;node&gt; &lt;name&gt;TELEVISIONS&lt;/name&gt; &lt;depth&gt;1&lt;/depth&gt; &lt;/node&gt; &lt;node&gt; &lt;name&gt;TUBE&lt;/name&gt; &lt;depth&gt;2&lt;/depth&gt; &lt;/node&gt; &lt;node&gt; &lt;name&gt;LCD&lt;/name&gt; &lt;depth&gt;2&lt;/depth&gt; &lt;/node&gt; &lt;node&gt; &lt;name&gt;PLASMA&lt;/name&gt; &lt;depth&gt;2&lt;/depth&gt; &lt;/node&gt; &lt;node&gt; &lt;name&gt;PORTABLE ELECTRONICS&lt;/name&gt; &lt;depth&gt;1&lt;/depth&gt; &lt;/node&gt; &lt;node&gt; &lt;name&gt;MP3 PLAYERS&lt;/name&gt; &lt;depth&gt;2&lt;/depth&gt; &lt;/node&gt; &lt;node&gt; &lt;name&gt;FLASH&lt;/name&gt; &lt;depth&gt;3&lt;/depth&gt; &lt;/node&gt; &lt;node&gt; &lt;name&gt;CD PLAYERS&lt;/name&gt; &lt;depth&gt;2&lt;/depth&gt; &lt;/node&gt; &lt;node&gt; &lt;name&gt;2 WAY RADIOS&lt;/name&gt; &lt;depth&gt;2&lt;/depth&gt; &lt;/node&gt; &lt;/tree&gt; </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-posts 1 should i really use a relation table when tagging blog posts? Pierre Spring 2009-01-26T16:05:52Z 2009-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-tagging 3 nested insert in mysql for tagging Pierre Spring 2009-01-26T15:04:48Z 2009-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-xslt 3 convert xhtml to wiki syntax using xslt Pierre Spring 2009-01-22T16:29:04Z 2009-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>&lt;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>&lt;ul&gt; &lt;li&gt; list item 1 &lt;/li&gt; &lt;li&gt; list item 2 &lt;ul&gt; &lt;li&gt; list item 2.1 &lt;ul&gt; &lt;li&gt;list item 2.1.1&lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;li&gt;list item 2.2&lt;/li&gt; &lt;li&gt;list item 2.3&lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;li&gt; list item 3 &lt;/li&gt; &lt;/ul&gt; </code></pre> http://stackoverflow.com/questions/435005/xslt-javascript-and-unescaped-html-entities/435468#435468 4 Answer by Pierre Spring for xslt, javascript and unescaped html entities Pierre Spring 2009-01-12T13:54:28Z 2009-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 &lt;script/> element unescaped when using the html output method, <strong>with others not</strong> ... therefor the following is recommended:</p> <pre><code>&lt;script type="text/javascript"&gt; &lt;xsl:value-of select="/some/node"/&gt; &lt;xsl:text disable-output-escaping="yes"&gt; // ^ does the trick ... for (var i = 0; i &lt; 5; i++) { // ^ works } &lt;/xsl:text&gt; &lt;/script&gt; </code></pre> http://stackoverflow.com/questions/169574/keeping-dot-files-synched-across-machines/169663#169663 2 Answer by Pierre Spring for Keeping dot files synched across machines? Pierre Spring 2008-10-04T03:14:48Z 2008-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#161909 0 Answer by Pierre Spring for Is there a php library for email address validation? Pierre Spring 2008-10-02T12:00:39Z 2008-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-&gt;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-value 3 xslt and xpath: match conditionally upon current node value Pierre Spring 2008-09-15T08:06:59Z 2008-09-16T22:18:31Z <p>given the following xml:</p> <pre><code>&lt;current&gt; &lt;login_name&gt;jd&lt;/login_name&gt; &lt;/current&gt; &lt;people&gt; &lt;person&gt; &lt;first&gt;John&lt;/first&gt; &lt;last&gt;Doe&lt;/last&gt; &lt;login_name&gt;jd&lt;/login_name&gt; &lt;/preson&gt; &lt;person&gt; &lt;first&gt;Pierre&lt;/first&gt; &lt;last&gt;Spring&lt;/last&gt; &lt;login_name&gt;ps&lt;/login_name&gt; &lt;/preson&gt; &lt;/people&gt; </code></pre> <p>how can i get "John Doe" from within the current/login matcher?</p> <p>i tried the following:</p> <pre><code>&lt;xsl:template match="current/login_name"&gt; &lt;xsl:value-of select="../people/first[login_name = .]"/&gt; &lt;xsl:text&gt; &lt;/xsl:text&gt; &lt;xsl:value-of select="../people/last[login_name = .]"/&gt; &lt;/xsl:template&gt; </code></pre> http://stackoverflow.com/questions/49883/xslt-apply-templates-in-reverse-order/49887#49887 1 Answer by Pierre Spring for xslt: apply-templates in reverse order Pierre Spring 2008-09-08T15:05:09Z 2008-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>&lt;xsl:template match="/"&gt; &lt;xsl:apply-templates select="root/node"&gt; &lt;xsl:sort select="position()" order="descending" data-type="number"/&gt; &lt;/xsl:aplly-templates&gt; &lt;/xsl:template&gt; &lt;xsl:template match="node"&gt; &lt;xsl:value-of select="."/&gt; &lt;/xsl:template&gt; </code></pre> http://stackoverflow.com/questions/49883/xslt-apply-templates-in-reverse-order 2 xslt: apply-templates in reverse order Pierre Spring 2008-09-08T15:03:52Z 2008-09-08T15:13:51Z <p>say i have this given xml file</p> <pre><code>&lt;root&gt; &lt;node&gt;x&lt;/node&gt; &lt;node&gt;y&lt;/node&gt; &lt;node&gt;a&lt;/node&gt; &lt;/root&gt; </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>&lt;xsl:template match="/"&gt; &lt;xsl:apply-templates select="root/node"/&gt; &lt;/xsl:template&gt; &lt;xsl:template match="node"&gt; &lt;xsl:value-of select="."/&gt; &lt;/xsl:template&gt; </code></pre> http://stackoverflow.com/questions/32085/xslt-nodesets-length/39644#39644 0 Answer by Pierre Spring for XSLT nodesets Length Pierre Spring 2008-09-02T14:21:39Z 2008-09-02T14:21:39Z <p>there is no need to put that into a </p> <pre><code>&lt;xsl:variable name="length" select="count(nodes/node)"/&gt; </code></pre> <p>though... you can just print it out as follows:</p> <pre><code>&lt;xsl:value-of select="count(nodes/node)"/&gt; </code></pre> <p>or use it in a if-clause as follows:</p> <pre><code>&lt;xsl:if test="count(comments/comment) &gt; '0'"&gt; &lt;ul&gt; &lt;xsl:apply-templates select="comments/comment"/&gt; &lt;/ul&gt; &lt;/xsl:if&gt; </code></pre> http://stackoverflow.com/questions/31870/using-a-html-entity-in-xslt-e-g-nbsp/31886#31886 1 Answer by Pierre Spring for using a html entity in xslt (e.g. &nbsp;) Pierre Spring 2008-08-28T09:10:04Z 2008-08-28T09:10:04Z <p>one other possibility to use html entities from within xslt is the following one:</p> <pre><code>&lt;xsl:text disable-output-escaping="yes"&gt;&amp;amp;nbsp;&lt;/xsl:text&gt; </code></pre> http://stackoverflow.com/questions/1560075/zip-files-get-corrupted-by-ie/1560159#1560159 Comment by Pierre Spring on ZIP Files get corrupted by IE Pierre Spring 2009-10-13T13:13:15Z 2009-10-13T13:13:15Z sorry 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#1560141 Comment by Pierre Spring on ZIP Files get corrupted by IE Pierre Spring 2009-10-13T13:10:24Z 2009-10-13T13:10:24Z i 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#1440825 Comment by Pierre Spring on MySQL: Union of a Left Join with a Right Join Pierre Spring 2009-09-18T12:42:15Z 2009-09-18T12:42:15Z this kind of returns 4 columns, right? http://stackoverflow.com/questions/1440808/mysql-union-of-a-left-join-with-a-right-join/1440820#1440820 Comment by Pierre Spring on MySQL: Union of a Left Join with a Right Join Pierre Spring 2009-09-17T20:46:04Z 2009-09-17T20:46:04Z quite clever indeed! http://stackoverflow.com/questions/1440808/mysql-union-of-a-left-join-with-a-right-join Comment by Pierre Spring on MySQL: Union of a Left Join with a Right Join Pierre Spring 2009-09-17T19:25:31Z 2009-09-17T19:25:31Z here 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&#95;1</code> int(11) NOT NULL ); INSERT INTO <code>t1</code> (<code>id</code>, <code>column&#95;1</code>) VALUES (1, 1), (2, 2); CREATE TABLE IF NOT EXISTS <code>t2</code> ( <code>id</code> int(11) NOT NULL, <code>column&#95;2</code> int(11) NOT NULL ); INSERT INTO <code>t2</code> (<code>id</code>, <code>column&#95;2</code>) VALUES (2, 2), (3, 3); http://stackoverflow.com/questions/1327151/soap-request-with-attribute/1344219#1344219 Comment by Pierre Spring on SOAP request with attribute Pierre Spring 2009-08-28T14:53:07Z 2009-08-28T14:53:07Z i 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/&hellip;</a> http://stackoverflow.com/questions/1327151/soap-request-with-attribute Comment by Pierre Spring on SOAP request with attribute Pierre Spring 2009-08-25T18:30:48Z 2009-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#951607 Comment by Pierre Spring on when is eval evil in php? Pierre Spring 2009-06-05T09:09:55Z 2009-06-05T09:09:55Z even 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#629838 Comment by Pierre Spring on build tree from flat list in XML using xslt Pierre Spring 2009-03-10T15:15:43Z 2009-03-10T15:15:43Z it seems like you can not do things like &lt;xsl:if test=&quot;$descendants/*&quot;&gt; … but using EXSLT you can do &lt;xsl:if test=&quot;exslt:node-set($descendants)/*&quot;&gt; … http://stackoverflow.com/questions/629638/build-tree-from-flat-list-in-xml-using-xslt/629838#629838 Comment by Pierre Spring on build tree from flat list in XML using xslt Pierre Spring 2009-03-10T13:59:29Z 2009-03-10T13:59:29Z that is just what i was looking for! cheers! http://stackoverflow.com/questions/469844/convert-xhtml-to-wiki-syntax-using-xslt/471324#471324 Comment by Pierre Spring on convert xhtml to wiki syntax using xslt Pierre Spring 2009-01-27T08:04:31Z 2009-01-27T08:04:31Z great answer ... thank you! http://stackoverflow.com/questions/480065/nested-insert-in-mysql-for-tagging/480100#480100 Comment by Pierre Spring on nested insert in mysql for tagging Pierre Spring 2009-01-26T15:46:25Z 2009-01-26T15:46:25Z ehhh ... 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#480097 Comment by Pierre Spring on nested insert in mysql for tagging Pierre Spring 2009-01-26T15:42:15Z 2009-01-26T15:42:15Z tried it and it failed ... but thx ;) http://stackoverflow.com/questions/439226/html-rendered-incorrectly-in-net/439237#439237 Comment by Pierre Spring on HTML rendered incorrectly in .NET Pierre Spring 2009-01-13T16:41:42Z 2009-01-13T16:41:42Z joe: this should be your first tag within the &lt;xsl:stylesheet&gt; http://stackoverflow.com/questions/435005/xslt-javascript-and-unescaped-html-entities/435088#435088 Comment by Pierre Spring on xslt, javascript and unescaped html entities Pierre Spring 2009-01-12T11:17:39Z 2009-01-12T11:17:39Z looks like a bug then ... i'll try to narrow it down the best i can an submit the bug report ... cheerz for your answer ...