User sydlawrence - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T19:35:05Z http://stackoverflow.com/feeds/user/5838 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1796001/ckeditor-ie8-issue 0 CKEditor IE8 issue sydlawrence 2009-11-25T10:24:57Z 2009-11-27T16:36:50Z <p>Has anyone experienced this problem with CKEditor and IE8?</p> <p>Basiclally, when the content included a nested p tag, you cant edit the content.</p> <p>i.e.</p> <pre><code>&lt;div&gt; &lt;p&gt;This content cannot be changed in IE8&lt;/p&gt; &lt;/div&gt; </code></pre> <p>Anyone have a fix?</p> http://stackoverflow.com/questions/66649/google-maps-style-scrolling-anyone 7 Google maps style scrolling anyone? sydlawrence 2008-09-15T20:32:19Z 2009-08-20T02:06:07Z <p>I am looking for some javascript plugin (preferably jquery) to be able to scroll through an image, in the same way that google maps works.</p> <p>I can make the image draggable but then i see the whole image while dragging even if the parent div is overflow:hidden.</p> <p>Any help would be greatly appreciated!</p> http://stackoverflow.com/questions/843617/how-do-i-write-a-search-query-using-kohana-php/844615#844615 0 Answer by sydlawrence for How do I write a search query using Kohana PHP? sydlawrence 2009-05-10T03:15:01Z 2009-05-10T03:15:01Z <p>Shouldnt your table be "product_shoppingcarts" or am I missing something?</p> http://stackoverflow.com/questions/642474/mysql-query-with-wildcard-on-number-strings 1 Mysql query with wildcard on number strings sydlawrence 2009-03-13T12:35:21Z 2009-03-13T12:52:23Z <p>I am trying to query a mysql table which contains strings of numbers (i.e. '1,2,3,4,5').</p> <p>How do I search to see if it has '1' but not '11' bearing in mind if it is '9,10' '9%' doesnt work??</p> <p>Fixed!</p> <pre><code>(field like '10' OR field like '%,10,%' OR field like '%,10' OR field like '10,%') </code></pre> http://stackoverflow.com/questions/362545/xslt-sql-query -2 xslt sql query [closed] sydlawrence 2008-12-12T11:52:17Z 2008-12-12T18:13:46Z <p>Hi guys I am new to xslt I have an sql query:</p> <pre><code>SELECT name, language, Year($Date), Month($Date), DayOfMonth($Date), %FeatureThumbnail.size, %SimpleDocumentContent.content WHERE documentType = 'News' AND $Date &lt;= CurrentDate() AND InCollection('arocha') AND language = 'en' AND $NotOnMainPage = 'false' AND $NewsSubType = 'by-us' </code></pre> <p>and I am trying to display the results i.e.</p> <pre><code>&lt;xsl:for-each select="sql_result"&gt; &lt;xsl:value-of select="name"/&gt; &lt;xsl:value-of select="language"/&gt; &lt;/xsl:for-each&gt; </code></pre> <p>so how do i create the sql_result? Does this make sense?</p> <p>All I am trying to do is display the results of the sql query? Theoretically it is simple. If I were using php I would out</p> <pre><code>$result = mysql_query("SELECT name, language, Year($Date), Month($Date), DayOfMonth($Date), %FeatureThumbnail.size, %SimpleDocumentContent.content WHERE documentType = 'News' AND $Date &lt;= CurrentDate() AND InCollection('arocha') AND language = 'en' AND $NotOnMainPage = 'false' AND $NewsSubType = 'by-us' "); while($row = mysql_fetch_array($result)) { echo $row['name']; echo $row['language']; } </code></pre> <p>I am trying to build a site for a client, and they have to use <a href="http://cocoondev.org/daisy/index.html" rel="nofollow">Daisy CMS</a> the sql query I have used returns all the news items to be displayed on the front page. Now all I am trying to do is display them on the front page.</p> <p>Daisy seems to have little to no useful documentation.</p> http://stackoverflow.com/questions/362545/xslt-sql-query/362633#362633 0 Answer by sydlawrence for xslt sql query sydlawrence 2008-12-12T12:40:04Z 2008-12-12T12:40:04Z <p>Sorry guys, it appears that the problems I am having are due to the rubbish CMS that my clients are using. And the fact that for an open source CMS seems very closed.</p> <p>Sorry for being a pain. Thank you for all of your comments. I provided you with pretty much all the info my client provided.</p> <p>This question is no longer open</p> http://stackoverflow.com/questions/346226/how-to-to-create-a-boolean-value-in-xslt 3 How to to create a boolean value in XSLT? sydlawrence 2008-12-06T12:34:41Z 2008-12-06T17:29:56Z <p>I am totally new to XSLT and can't work out where I am going wrong with the following code.</p> <pre><code>&lt;xsl:variable name="var" select="boolean('false')"/&gt; &lt;xsl:if test="$var'"&gt;variable is true&lt;/xsl:if&gt; </code></pre> <p>It is always returning true when it is meant to be false. Can anyone help?</p> http://stackoverflow.com/questions/66649/google-maps-style-scrolling-anyone/1303599#1303599 Comment by sydlawrence on Google maps style scrolling anyone? sydlawrence 2009-09-10T10:20:19Z 2009-09-10T10:20:19Z thanks, that is exactly what I needed, have kept note of it for future http://stackoverflow.com/questions/642474/mysql-query-with-wildcard-on-number-strings/642485#642485 Comment by sydlawrence on Mysql query with wildcard on number strings sydlawrence 2009-03-13T12:47:40Z 2009-03-13T12:47:40Z ah ha, I didnt use LIKE I used = http://stackoverflow.com/questions/642474/mysql-query-with-wildcard-on-number-strings/642485#642485 Comment by sydlawrence on Mysql query with wildcard on number strings sydlawrence 2009-03-13T12:46:27Z 2009-03-13T12:46:27Z '9%' definitely doesnt work have tried it direct into CLI, on the sun site is says that numbers dont work correctly with wildcards 9% would pick up 9 or 900 but not 9,10 http://stackoverflow.com/questions/362545/xslt-sql-query Comment by sydlawrence on xslt sql query sydlawrence 2008-12-12T12:42:14Z 2008-12-12T12:42:14Z Its ms-sql rather than mysql, it is all handled by their &quot;open-source&quot; cms which is surprisingly closed. Thanks for all your comments, but I am putting this down to their rubbish cms and will go back to their admin for help. THIS QUESTION IS NOW CLOSED http://stackoverflow.com/questions/362545/xslt-sql-query Comment by sydlawrence on xslt sql query sydlawrence 2008-12-12T12:12:17Z 2008-12-12T12:12:17Z sorry guys, I have tried to explain it slightly better. As I said I am brand new to xslt, I use php. And I appreciate your help. It isnt a project that I would have chosen to do, but unfortunately it wasnt my decision. http://stackoverflow.com/questions/346226/how-to-to-create-a-boolean-value-in-xslt/346505#346505 Comment by sydlawrence on How to to create a boolean value in XSLT? sydlawrence 2008-12-09T07:16:56Z 2008-12-09T07:16:56Z thanks guys, great help! http://stackoverflow.com/questions/346226/how-to-to-create-a-boolean-value-in-xslt Comment by sydlawrence on How to to create a boolean value in XSLT? sydlawrence 2008-12-09T07:15:41Z 2008-12-09T07:15:41Z Thanks guys, sorry about that. http://stackoverflow.com/questions/66649/google-maps-style-scrolling-anyone/66719#66719 Comment by sydlawrence on Google maps style scrolling anyone? sydlawrence 2008-09-15T20:44:02Z 2008-09-15T20:44:02Z the html and css does seem to be the problem, when not dragging, the image is clipped in the parent div, but the draggable plug-in (jquery.interface) then makes the whole image viewable again