User sydlawrence - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T19:35:05Zhttp://stackoverflow.com/feeds/user/5838http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1796001/ckeditor-ie8-issue0CKEditor IE8 issuesydlawrence2009-11-25T10:24:57Z2009-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><div>
<p>This content cannot be changed in IE8</p>
</div>
</code></pre>
<p>Anyone have a fix?</p>
http://stackoverflow.com/questions/66649/google-maps-style-scrolling-anyone7Google maps style scrolling anyone?sydlawrence2008-09-15T20:32:19Z2009-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#8446150Answer by sydlawrence for How do I write a search query using Kohana PHP?sydlawrence2009-05-10T03:15:01Z2009-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-strings1Mysql query with wildcard on number stringssydlawrence2009-03-13T12:35:21Z2009-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-2xslt sql query [closed]sydlawrence2008-12-12T11:52:17Z2008-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 <= 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><xsl:for-each select="sql_result">
<xsl:value-of select="name"/>
<xsl:value-of select="language"/>
</xsl:for-each>
</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 <= 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#3626330Answer by sydlawrence for xslt sql querysydlawrence2008-12-12T12:40:04Z2008-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-xslt3How to to create a boolean value in XSLT?sydlawrence2008-12-06T12:34:41Z2008-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><xsl:variable name="var" select="boolean('false')"/>
<xsl:if test="$var'">variable is true</xsl:if>
</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#1303599Comment by sydlawrence on Google maps style scrolling anyone?sydlawrence2009-09-10T10:20:19Z2009-09-10T10:20:19Zthanks, that is exactly what I needed, have kept note of it for futurehttp://stackoverflow.com/questions/642474/mysql-query-with-wildcard-on-number-strings/642485#642485Comment by sydlawrence on Mysql query with wildcard on number stringssydlawrence2009-03-13T12:47:40Z2009-03-13T12:47:40Zah ha, I didnt use LIKE I used =http://stackoverflow.com/questions/642474/mysql-query-with-wildcard-on-number-strings/642485#642485Comment by sydlawrence on Mysql query with wildcard on number stringssydlawrence2009-03-13T12:46:27Z2009-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,10http://stackoverflow.com/questions/362545/xslt-sql-queryComment by sydlawrence on xslt sql querysydlawrence2008-12-12T12:42:14Z2008-12-12T12:42:14ZIts ms-sql rather than mysql, it is all handled by their "open-source" 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 CLOSEDhttp://stackoverflow.com/questions/362545/xslt-sql-queryComment by sydlawrence on xslt sql querysydlawrence2008-12-12T12:12:17Z2008-12-12T12:12:17Zsorry 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#346505Comment by sydlawrence on How to to create a boolean value in XSLT?sydlawrence2008-12-09T07:16:56Z2008-12-09T07:16:56Zthanks guys, great help!http://stackoverflow.com/questions/346226/how-to-to-create-a-boolean-value-in-xsltComment by sydlawrence on How to to create a boolean value in XSLT?sydlawrence2008-12-09T07:15:41Z2008-12-09T07:15:41ZThanks guys, sorry about that.http://stackoverflow.com/questions/66649/google-maps-style-scrolling-anyone/66719#66719Comment by sydlawrence on Google maps style scrolling anyone?sydlawrence2008-09-15T20:44:02Z2008-09-15T20:44:02Zthe 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