<?xml version="1.0"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title></title>
		<link>http://www.silverstripe.org/forums/rss</link>
		<atom:link href="http://www.silverstripe.org/forums/rss" rel="self" type="application/rss+xml" />
		<description></description>

		
		<item>
			<title>Fluid Images?</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/23711</link>
			<description>&lt;p&gt;I am wondering if there is a way to insert an image (WYSIWYG) without pixel dimensions? Using v2.4&lt;/p&gt;&lt;p&gt;For responsive layouts it is quite counterproductive to have only one fixed width  &lt;img src='http://www.silverstripe.org/sapphire/images/smilies/sad.gif'&gt; &lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: Fluid Images? | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/23711&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/23711&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Sun, 12 May 2013 02:45:00 +1200</pubDate>
			<dc:creator>suntrop</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/23711</guid>
		</item>
		
		<item>
			<title>Re: Css inside Content</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/23538#post321560</link>
			<description>&lt;p&gt;Add in your themes/theme-name/templates/Page.ss&lt;br /&gt;those lines:&lt;br /&gt;&amp;lt;% require themedCSS(layout) %&amp;gt;&lt;br /&gt;&amp;lt;% require themedCSS(typography) %&amp;gt;&lt;br /&gt;&amp;lt;% require themedCSS(form) %&amp;gt;&lt;br /&gt;If your style css file is called style.css and its in themes/theme-name/css folder add line:&lt;br /&gt;&amp;lt;% require themedCSS(style) %&amp;gt;&lt;/p&gt;&lt;p&gt;your theme can u change in mysite/_config.php file using line:&lt;br /&gt;SSViewer::set_theme('theme-name');&lt;/p&gt;&lt;p&gt;Arvixe Web Hosting / SilverStripe Community Liaison | Looking for quality &lt;a href=&quot;http://www.arvixe.com/preloaded_silverstripe_hosting/&quot; rel=&quot;nofollow&quot;&gt;SilverStripe Web Hosting&lt;/a&gt;? Look no further than &lt;a href=&quot;http://www.arvixe.com/&quot; rel=&quot;nofollow&quot;&gt;Arvixe Web Hosting&lt;/a&gt;!&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: Css inside Content | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/23538#post321560&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/23538&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Thu, 25 Apr 2013 03:56:27 +1200</pubDate>
			<dc:creator>Webdoc</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/23538#post321560</guid>
		</item>
		
		<item>
			<title>Css inside Content</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/23538</link>
			<description>&lt;p&gt;I have some html code, which has some css.&lt;br /&gt;This css is inside the themes folder.&lt;br /&gt;How can I apply the styles when the site renders, as currently not working.&lt;/p&gt;&lt;p&gt;Would be cool to see it styles inside the editior too?&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: Css inside Content | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/23538&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/23538&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Wed, 24 Apr 2013 17:27:16 +1200</pubDate>
			<dc:creator>pinkfloydim</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/23538</guid>
		</item>
		
		<item>
			<title>Re: Styling the dropdowns in TinyMCE</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/22069#post320945</link>
			<description>&lt;p&gt;Hey, I've found how to get style_formats to work in SS 3.0; I am not sure about 2.4, it's possible that its TinyMCE version is not compatible.&lt;/p&gt;&lt;p&gt;Anyway, you need to pass parameter as actual nested PHP array, which then gets converted to JavaScript objects; if you pass the string, even TinyMCE gets the string and won't be happy.&lt;/p&gt;&lt;p&gt;In your case, it may look like this:&lt;br /&gt;&lt;div class=&quot;codesnippet&quot;&gt;&lt;p&gt;$formats = array(&lt;br /&gt;  array('title' =&amp;gt; 'Red text', 'inline' =&amp;gt; 'span', 'styles' =&amp;gt; array('color' =&amp;gt; '#ff0000'))&lt;br /&gt;);&lt;br /&gt;HtmlEditorConfig::get('cms')-&amp;gt;setOption('style_formats',$formats);&lt;/p&gt;&lt;/div&gt;&lt;/p&gt;&lt;p&gt;Or this HTML5 example from TinyMCE – &lt;a href=&quot;http://www.tinymce.com/tryit/html5_formats.php&quot; rel=&quot;nofollow&quot;&gt;http://www.tinymce.com/tryit/html5_formats.php&lt;/a&gt; – may be implemented in SilverStripe like this:&lt;/p&gt;&lt;p&gt;&lt;div class=&quot;codesnippet&quot;&gt;&lt;p&gt;$formats = array(&lt;br /&gt;        array('title' =&amp;gt; 'section', 'block' =&amp;gt; 'section', 'wrapper' =&amp;gt; true, 'merge_siblings' =&amp;gt; false),&lt;br /&gt;        array('title' =&amp;gt; 'article', 'block' =&amp;gt; 'article', 'wrapper' =&amp;gt; true, 'merge_siblings' =&amp;gt; false),&lt;br /&gt;        array('title' =&amp;gt; 'hgroup', 'block' =&amp;gt; 'hgroup', 'wrapper' =&amp;gt; true),&lt;br /&gt;        array('title' =&amp;gt; 'aside', 'block' =&amp;gt; 'aside', 'wrapper' =&amp;gt; true),&lt;br /&gt;        array('title' =&amp;gt; 'figure', 'block' =&amp;gt; 'figure', 'wrapper' =&amp;gt; true),&lt;br /&gt;    );&lt;br /&gt;HtmlEditorConfig::get('cms')-&amp;gt;setOption('style_formats',$formats);&lt;/p&gt;&lt;/div&gt;&lt;/p&gt;&lt;p&gt;(Note that for HTML5 tags to work, you also need to add them to valid_elements.)&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: Styling the dropdowns in TinyMCE | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/22069#post320945&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/22069&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Thu, 21 Mar 2013 17:22:45 +1300</pubDate>
			<dc:creator>jnv</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/22069#post320945</guid>
		</item>
		
		<item>
			<title>Re: Ajax-free admin panel?</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/22593#post320116</link>
			<description>&lt;p&gt;I'm not sure I understand &quot;ajax free&quot; in terms of the modern CMS, however if you are looking at providing more info within one &quot;page&quot; load in the admin (and you are on a 2.4.x system) then this might help...&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://github.com/axyr/panelmodeladmin&quot; rel=&quot;nofollow&quot;&gt;https://github.com/axyr/panelmodeladmin&lt;/a&gt;&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: Ajax-free admin panel? | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/22593#post320116&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/22593&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Sun, 17 Feb 2013 22:26:42 +1300</pubDate>
			<dc:creator>swaiba</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/22593#post320116</guid>
		</item>
		
		<item>
			<title>Ajax-free admin panel?</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/22593</link>
			<description>&lt;p&gt;Is there a way to turn off ajax in the admin panel? &lt;/p&gt;&lt;p&gt;Often requests to display different admin areas complete (after quite a long time), but the interface won't reload, and it is confusing to our content editors who end up needing to refresh the page to input the next piece of content. We are in process of doing a redesign of a large, content-heavy, and complex site on SilverStripe, so any performance boosts or ways to reduce complexity of code executing in the admin area could be a gain in efficiency for this part of the process.&lt;/p&gt;&lt;p&gt;I have done a lot of searching and haven't found anyone asking about this, but maybe I'm using the wrong search terms.&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: Ajax-free admin panel? | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/22593&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/22593&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Sun, 17 Feb 2013 11:20:02 +1300</pubDate>
			<dc:creator>project707</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/22593</guid>
		</item>
		
		<item>
			<title>Re: elRTE</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/21255#post319702</link>
			<description>&lt;p&gt;Hi it's for SS3 I have also fixed few issues and here's the latest version.&lt;br /&gt;Sorry, I have taken it from my project so script paths should be fixed.&lt;br /&gt;Plz, share if u'll make any improvements.&lt;/p&gt;&lt;p&gt;In this version u don't need to do any core modifications just replace HtmlEditorField in DataObjects or Pages with this code&lt;br /&gt;&lt;div class=&quot;codesnippet&quot;&gt;&lt;p&gt;public function getCMSFields() {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$fields = parent::getCMSFields();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$fields-&amp;gt;replaceField('Content',&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;new ElEditorField('Content',_t('SiteTree.Content','Content'))&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return $fields;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;/p&gt;&lt;/div&gt;&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: elRTE | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/21255#post319702&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/21255&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Sat, 02 Feb 2013 15:10:29 +1300</pubDate>
			<dc:creator>Tony Air</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/21255#post319702</guid>
		</item>
		
		<item>
			<title>Re: elRTE</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/21255#post319521</link>
			<description>&lt;p&gt;Hi, I been looking for this  &lt;img src='http://www.silverstripe.org/sapphire/images/smilies/smile.gif'&gt; &lt;br /&gt;is it for SS3 or SS2.4.x ?&lt;br /&gt;Thanks&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: elRTE | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/21255#post319521&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/21255&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Sun, 27 Jan 2013 13:49:08 +1300</pubDate>
			<dc:creator>DesignerX.com.au</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/21255#post319521</guid>
		</item>
		
		<item>
			<title>Re: turn off validation tinymce html editor in SS3</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/22131#post319463</link>
			<description>&lt;p&gt;HtmlEditorConfig::get('cms')-&amp;gt;setOption('formats', 'none');&lt;br /&gt;HtmlEditorConfig::get('cms')-&amp;gt;setOption('valid_children', '*&lt;ul&gt;&lt;li&gt;');&lt;br /&gt;HtmlEditorConfig::get('cms')-&amp;gt;setOption('convert_newlines_to_brs', 'false');&lt;br /&gt;HtmlEditorConfig::get('cms')-&amp;gt;setOption('force_br_newlines', 'false');&lt;br /&gt;HtmlEditorConfig::get('cms')-&amp;gt;setOption('force_p_newlines', 'false');&lt;br /&gt;HtmlEditorConfig::get('cms')-&amp;gt;setOption('remove_linebreaks', 'false');&lt;br /&gt;HtmlEditorConfig::get('cms')-&amp;gt;setOption('apply_source_formatting', 'false');&lt;/p&gt;&lt;p&gt;HtmlEditorConfig::get('cms')-&amp;gt;setOption('cleanup_on_startup', 'false');&lt;br /&gt;HtmlEditorConfig::get('cms')-&amp;gt;setOption('trim_span_elements', 'false');&lt;br /&gt;HtmlEditorConfig::get('cms')-&amp;gt;setOption('verify_html', 'false');&lt;br /&gt;HtmlEditorConfig::get('cms')-&amp;gt;setOption('cleanup', 'false');&lt;br /&gt;HtmlEditorConfig::get('cms')-&amp;gt;setOption('convert_urls', 'false');&lt;/p&gt;&lt;p&gt;HtmlEditorConfig::get('cms')-&amp;gt;setOption('paste_auto_cleanup_on_paste','false'); &lt;br /&gt;HtmlEditorConfig::get('cms')-&amp;gt;setOption('paste_remove_styles','false'); &lt;br /&gt;HtmlEditorConfig::get('cms')-&amp;gt;setOption('paste_remove_styles_if_webkit','false'); &lt;br /&gt;HtmlEditorConfig::get('cms')-&amp;gt;setOption('paste_strip_class_attributes','false'); &lt;br /&gt;HtmlEditorConfig::get('cms')-&amp;gt;setOption('cleanup','false');&lt;/p&gt;&lt;p&gt;There's no solution&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: turn off validation tinymce html editor in SS3 | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/22131#post319463&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/22131&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Thu, 24 Jan 2013 06:18:58 +1300</pubDate>
			<dc:creator>Molodoi</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/22131#post319463</guid>
		</item>
		
		<item>
			<title>Re: turn off validation tinymce html editor in SS3</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/22131#post319462</link>
			<description>&lt;p&gt;Please, help me tinymce make me crazy  &lt;img src='http://www.silverstripe.org/sapphire/images/smilies/grin.gif'&gt; &lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: turn off validation tinymce html editor in SS3 | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/22131#post319462&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/22131&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Thu, 24 Jan 2013 06:10:14 +1300</pubDate>
			<dc:creator>Molodoi</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/22131#post319462</guid>
		</item>
		
		<item>
			<title>Re: turn off validation tinymce html editor in SS3</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/22131#post319460</link>
			<description>&lt;p&gt;First way, but not complete&lt;/p&gt;&lt;p&gt;In framework/admin/_config.php&lt;/p&gt;&lt;p&gt;In HtmlEditorConfig::get('cms')-&amp;gt;setOptions(array(...&lt;/p&gt;&lt;p&gt;Replace : 'valid_elements' =&amp;gt; &quot;@[id|class|... some constraints...&quot;,&lt;br /&gt;By : 'valid_elements' =&amp;gt; &quot;*&lt;ul&gt;&lt;li&gt;&quot;,&lt;/p&gt;&lt;p&gt;And replace : 'extended_valid_elements' =&amp;gt; &quot;img[class|src|... some constraints...&quot;,&lt;br /&gt;By : 'extended_valid_elements' =&amp;gt; &quot;*&lt;/li&gt;&lt;li&gt;&quot;,&lt;/p&gt;&lt;p&gt;That's a funky baby hacks, but, i'm always blocked for insert this blocks :&lt;/p&gt;&lt;p&gt;&amp;lt;div id=&quot;controls&quot;&amp;gt; &lt;br /&gt;&amp;lt;label for=&quot;slide1&quot;&amp;gt;&amp;lt;/label&amp;gt; &lt;br /&gt;&amp;lt;label for=&quot;slide2&quot;&amp;gt;&amp;lt;/label&amp;gt; &lt;br /&gt;&amp;lt;label for=&quot;slide3&quot;&amp;gt;&amp;lt;/label&amp;gt; &lt;br /&gt;&amp;lt;label for=&quot;slide4&quot;&amp;gt;&amp;lt;/label&amp;gt; &lt;br /&gt;&amp;lt;/div&amp;gt; &lt;/p&gt;&lt;p&gt;&amp;lt;div id=&quot;active&quot;&amp;gt; &lt;br /&gt;&amp;lt;label for=&quot;slide1&quot;&amp;gt;&amp;lt;/label&amp;gt; &lt;br /&gt;&amp;lt;label for=&quot;slide2&quot;&amp;gt;&amp;lt;/label&amp;gt; &lt;br /&gt;&amp;lt;label for=&quot;slide3&quot;&amp;gt;&amp;lt;/label&amp;gt; &lt;br /&gt;&amp;lt;label for=&quot;slide4&quot;&amp;gt;&amp;lt;/label&amp;gt; &lt;br /&gt;&amp;lt;/div&amp;gt;&lt;/p&gt;&lt;p&gt;Does anyone have an idea?&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: turn off validation tinymce html editor in SS3 | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/22131#post319460&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/22131&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Thu, 24 Jan 2013 04:35:15 +1300</pubDate>
			<dc:creator>Molodoi</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/22131#post319460</guid>
		</item>
		
		<item>
			<title>turn off validation tinymce html editor in SS3</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/22131</link>
			<description>&lt;p&gt;Hi everybody,&lt;/p&gt;&lt;p&gt;I would to know &quot;How can i turning off html validation in tinymce editor in Silverstripe 3?&quot;.&lt;/p&gt;&lt;p&gt;I want to add all HTML5 (&amp;lt;article&amp;gt;... and more) as the html code below directly into my HTML editor :&lt;/p&gt;&lt;p&gt;... some html ...&lt;br /&gt;&amp;lt;input checked type=&quot;radio&quot; name=&quot;slider&quot; id=&quot;slide1&quot; /&amp;gt;&lt;br /&gt;&amp;lt;input type=&quot;radio&quot; name=&quot;slider&quot; id=&quot;slide2&quot; /&amp;gt;&lt;br /&gt;&amp;lt;input type=&quot;radio&quot; name=&quot;slider&quot; id=&quot;slide3&quot; /&amp;gt;&lt;br /&gt;&amp;lt;input type=&quot;radio&quot; name=&quot;slider&quot; id=&quot;slide4&quot; /&amp;gt;&lt;br /&gt;&amp;lt;div id=&quot;slides&quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;div id=&quot;overflow&quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;div class=&quot;inner&quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;article&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;img src=&quot;images/slide/slide01.jpg&quot; alt=&quot;#&quot;/&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;/article&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;article&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;img src=&quot;images/slide/slide02.jpg&quot; alt=&quot;#&quot; /&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;/article&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;article&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;img src=&quot;images/slide/slide03.jpg&quot; alt=&quot;#&quot; /&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;/article&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;article&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;img src=&quot;images/slide/slide04.jpg&quot; alt=&quot;#&quot; /&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;/article&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;/div&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;/div&amp;gt;&lt;br /&gt;&amp;lt;/div&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;lt;div id=&quot;controls&quot;&amp;gt;&lt;br /&gt;        &amp;lt;label for=&quot;slide1&quot;&amp;gt;&amp;lt;/label&amp;gt;&lt;br /&gt;        &amp;lt;label for=&quot;slide2&quot;&amp;gt;&amp;lt;/label&amp;gt;&lt;br /&gt;        &amp;lt;label for=&quot;slide3&quot;&amp;gt;&amp;lt;/label&amp;gt;&lt;br /&gt;        &amp;lt;label for=&quot;slide4&quot;&amp;gt;&amp;lt;/label&amp;gt;&lt;br /&gt;&amp;lt;/div&amp;gt; &lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;lt;div id=&quot;active&quot;&amp;gt;&lt;br /&gt;        &amp;lt;label for=&quot;slide1&quot;&amp;gt;&amp;lt;/label&amp;gt;&lt;br /&gt;        &amp;lt;label for=&quot;slide2&quot;&amp;gt;&amp;lt;/label&amp;gt;&lt;br /&gt;        &amp;lt;label for=&quot;slide3&quot;&amp;gt;&amp;lt;/label&amp;gt;&lt;br /&gt;        &amp;lt;label for=&quot;slide4&quot;&amp;gt;&amp;lt;/label&amp;gt;&lt;br /&gt;&amp;lt;/div&amp;gt;&lt;br /&gt;&amp;lt;br /&amp;gt;&lt;br /&gt;... some html ...&lt;/p&gt;&lt;p&gt;Does anyone have an idea?&lt;/p&gt;&lt;p&gt;Thanks a lot&lt;/p&gt;&lt;p&gt;Matt ; )&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: turn off validation tinymce html editor in SS3 | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/22131&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/22131&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Thu, 24 Jan 2013 03:38:34 +1300</pubDate>
			<dc:creator>Molodoi</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/22131</guid>
		</item>
		
		<item>
			<title>Styling the dropdowns in TinyMCE</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/22069</link>
			<description>&lt;p&gt;Hi all,&lt;/p&gt;&lt;p&gt;I'm using SilverStripe 2.4.7, trying to customize the TinyMCE menu bar.&lt;br /&gt;There's a way to&lt;br /&gt;1. use Style Formats? &lt;a href=&quot;http://www.tinymce.com/wiki.php/Configuration:style_formats&quot; rel=&quot;nofollow&quot;&gt;http://www.tinymce.com/wiki.php/Configuration:style_formats&lt;/a&gt;&lt;br /&gt;2. style the dropdown items to reflect what will appear in the editor? So &quot;Header 1&quot; text is bigger than the &quot;Header 2&quot; in the dropdown, ecc.&lt;/p&gt;&lt;p&gt;For the first question I've tryed adding&lt;br /&gt;&lt;div class=&quot;codesnippet&quot;&gt;&lt;p&gt;HtmlEditorConfig::get('cms')-&amp;gt;setOption('style_formats',&quot;[{title : 'Red text', inline : 'span', styles : {color : '#ff0000'}]&quot;);&lt;/p&gt;&lt;/div&gt;&lt;br /&gt;in the _config.php but with no success.&lt;/p&gt;&lt;p&gt;Thanks in advance&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: Styling the dropdowns in TinyMCE | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/22069&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/22069&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Thu, 17 Jan 2013 04:01:19 +1300</pubDate>
			<dc:creator>Borgopio</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/22069</guid>
		</item>
		
		<item>
			<title>Re: Image border</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/21744#post318912</link>
			<description>&lt;p&gt;in css use line&lt;/p&gt;&lt;p&gt;a img {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;border: none;&lt;br /&gt;}&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: Image border | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/21744#post318912&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/21744&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Sat, 22 Dec 2012 18:51:47 +1300</pubDate>
			<dc:creator>Webdoc</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/21744#post318912</guid>
		</item>
		
		<item>
			<title>Image border</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/21744</link>
			<description>&lt;p&gt;Hi!&lt;br /&gt;Installed SS 3.03&lt;/p&gt;&lt;p&gt;I've a question about placing images in the editor.&lt;br /&gt;Every image I placed has a border around it. Is it possible to remove this border? If yes, how can I do this?&lt;br /&gt;THX.&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: Image border | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/21744&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/21744&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Sun, 16 Dec 2012 08:23:11 +1300</pubDate>
			<dc:creator>Mastrcode</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/21744</guid>
		</item>
		
		<item>
			<title>Re: server error in upload image field</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/21377#post318230</link>
			<description>&lt;p&gt;Hi KimK,&lt;br /&gt;The reason nobody replied to your question might be that this is the section devoted to the content editor = the TinyMCE editor used in the CMS... &lt;/p&gt;&lt;p&gt;No, I've not had this problem, but it might have something to do with the server settings - memory even. Did you get any other error or just the 500 server error. In that case setting your site to dev mode might help. In your _config.php:&lt;/p&gt;&lt;p&gt;&lt;div class=&quot;codesnippet&quot;&gt;&lt;p&gt;Director::set_environment_type(&quot;dev&quot;);&lt;/p&gt;&lt;/div&gt;&lt;/p&gt;&lt;p&gt;Also the Firebug extension in FireFox might give you some clue...&lt;/p&gt;&lt;p&gt;You say the error only happens on the last image. Does it make any difference if you change the sequence of the ImageFields in your getCMSFields function?&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: server error in upload image field | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/21377#post318230&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/21377&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Mon, 19 Nov 2012 22:42:28 +1300</pubDate>
			<dc:creator>martimiz</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/21377#post318230</guid>
		</item>
		
		<item>
			<title>Re: server error in upload image field</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/21377#post318221</link>
			<description>&lt;p&gt;Does nobody else have the problem? &lt;/p&gt;&lt;p&gt;Any hint why it works on my local server (wamp) and not on the webserver out there? Is there any configuration or version of anything I have to look for? &lt;/p&gt;&lt;p&gt;I still use SS2.4&lt;/p&gt;&lt;p&gt;Any help would be really appreciated.&lt;/p&gt;&lt;p&gt;Thanks&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: server error in upload image field | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/21377#post318221&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/21377&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Mon, 19 Nov 2012 13:19:33 +1300</pubDate>
			<dc:creator>KimK</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/21377#post318221</guid>
		</item>
		
		<item>
			<title>Re: Linking an Image in Content Editor</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/18850#post318030</link>
			<description>&lt;p&gt;Hi Folks,&lt;/p&gt;&lt;p&gt;one year later and still the same problem  &lt;img src='http://www.silverstripe.org/sapphire/images/smilies/sad.gif'&gt; . Can't imagine, that nobody is linking images within the content editor? (Still Silverstripe 2.4.).&lt;/p&gt;&lt;p&gt;Still grateful for any hint!&lt;/p&gt;&lt;p&gt;Regards&lt;br /&gt;SF&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: Linking an Image in Content Editor | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/18850#post318030&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/18850&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Thu, 08 Nov 2012 02:17:37 +1300</pubDate>
			<dc:creator>Silverfish</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/18850#post318030</guid>
		</item>
		
		<item>
			<title>server error in upload image field</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/21377</link>
			<description>&lt;p&gt;Hello,&lt;/p&gt;&lt;p&gt;I have a strange error: It all works fine locally, but now on the webserver I get a server error message instead of the uploading field for the image. It only happens for the last image..&lt;/p&gt;&lt;p&gt;I have a couple of images:&lt;/p&gt;&lt;p&gt;static $has_one = array(&lt;br /&gt;        'Logo' =&amp;gt; 'Image',&lt;br /&gt;        'QRCode_img' =&amp;gt; 'Image',&lt;br /&gt;        'Image_1' =&amp;gt; 'Image',&lt;br /&gt;        'Image_2' =&amp;gt; 'Image',&lt;br /&gt;        'SponsoredBYImage' =&amp;gt; 'Image',&lt;br /&gt;        'SponsorOfImage' =&amp;gt; 'Image',&lt;br /&gt;        'fakeImage' =&amp;gt; 'Image',&lt;br /&gt;        'Author' =&amp;gt; 'Member'&lt;br /&gt;);&lt;/p&gt;&lt;p&gt; function getCMSFields() {&lt;br /&gt;        $fields = new FieldSet(....&lt;/p&gt;&lt;p&gt;           new ImageField('Logo'),&lt;br /&gt;            new ImageField('Image_1'),&lt;br /&gt;            new ImageField('Image_2'),&lt;br /&gt;            new ImageField('QRCode_img'),&lt;br /&gt;            new ImageField('SponsoredBYImage'),&lt;br /&gt;            new ImageField('SponsorOfImage'),&lt;br /&gt;...);&lt;/p&gt;&lt;p&gt;as I mentioned I have no problems locally (wamp), but on the webserver where I really need it, I don't get the normal uploading field. Instead I have the server error message...&lt;/p&gt;&lt;p&gt;Has anybody an idea how that can be? Exactly the same code local and there...&lt;/p&gt;&lt;p&gt;Any help really appreciated!&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: server error in upload image field | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/21377&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/21377&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Thu, 08 Nov 2012 00:10:24 +1300</pubDate>
			<dc:creator>KimK</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/21377</guid>
		</item>
		
		<item>
			<title>Divs in the editor</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/21259</link>
			<description>&lt;p&gt;I have created a 2 column layout in the editor using divs. When I press enter within these columns, it is creating new divs rather than &amp;lt;p&amp;gt; or &amp;lt;br&amp;gt; tags. Is there a setting to override this?&lt;/p&gt;&lt;p&gt;&amp;lt;code&amp;gt;&lt;/p&gt;&lt;p&gt;&amp;lt;div style =&quot;float left; width:50%&quot;&amp;gt;&lt;br /&gt;some text goes here&lt;br /&gt;&amp;lt;div style =&quot;float left; width:50%&quot;&amp;gt; &amp;lt; --- This automated div is wrong! Should be either &amp;lt;br&amp;gt; or &amp;lt;p&amp;gt;&lt;br /&gt;the next paragraph is here&lt;br /&gt;&amp;lt;/div&amp;gt;&lt;br /&gt;&amp;lt;/div&amp;gt; &lt;/p&gt;&lt;p&gt;&amp;lt;/code&amp;gt;&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: Divs in the editor | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/21259&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/21259&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Wed, 24 Oct 2012 03:56:47 +1300</pubDate>
			<dc:creator>codemonkey88</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/21259</guid>
		</item>
		
		<item>
			<title>elRTE</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/21255</link>
			<description>&lt;p&gt;Hi there, I don't like TinyMCE and we're using CKEditor at the customized SS2, but I don't have module implementation.&lt;br /&gt;Since SilverStripe CMS was moved to jQuery UI we decided to work on elRTE integration. I think it will be the best editor for SS.&lt;br /&gt;I have attached draft elRTE module for the SS3.&lt;/p&gt;&lt;p&gt;Ah, also u need to comment out a line at framework/admin/code/LeftAndMain.php:&lt;br /&gt;FRAMEWORK_DIR . '/javascript/HtmlEditorField.js',&lt;/p&gt;&lt;p&gt;elRTE is an open-source WYSIWYG HTML-editor written in JavaScript using jQuery UI. It features rich text editing, options for changing its appearance, style and many more. You can use it in any commercial or non-commercial projects.&lt;/p&gt;&lt;p&gt;Here's some additional information about elRTE: &lt;a href=&quot;http://elrte.org/&quot; rel=&quot;nofollow&quot;&gt;http://elrte.org/&lt;/a&gt;&lt;/p&gt;&lt;p&gt;P.S. For some reason my old account is inaccessible so I've got to use one a new one, sorry&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: elRTE | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/21255&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/21255&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Tue, 23 Oct 2012 16:23:23 +1300</pubDate>
			<dc:creator>Tony Air</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/21255</guid>
		</item>
		
		<item>
			<title>Cannot log out of CMS - Windows server only issue</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/21220</link>
			<description>&lt;p&gt;Hi Guys&lt;/p&gt;&lt;p&gt;I recently put a site live and noticed that once logged into the CMS the Log out link didn't work - it merely refreshed the page.&lt;/p&gt;&lt;p&gt;I have narrowed this down to a problem with the Windows server by testing another site recently moved to this server from a Linux server where it was possible to log out of the CMS. Same issue on the Windows server.&lt;/p&gt;&lt;p&gt;Has anyone else come across this before?&lt;/p&gt;&lt;p&gt;Thanks&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: Cannot log out of CMS - Windows server only issue | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/21220&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/21220&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Fri, 19 Oct 2012 18:49:09 +1300</pubDate>
			<dc:creator>Grid</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/21220</guid>
		</item>
		
		<item>
			<title>TinyMCE messing with my links </title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/21060</link>
			<description>&lt;p&gt;Hi just found something annoying when trying to set up some links in the content section.&lt;br /&gt;I was using the HTML frame directly and had set up link as follows:&lt;/p&gt;&lt;p&gt;&amp;lt;li&amp;gt;&amp;lt;a href=&quot;gallery&quot;&amp;gt;&amp;lt;h4&amp;gt;Gallery&amp;lt;/h4&amp;gt;&amp;lt;img src=&quot;assets/gallery.jpg&quot;/ width=&quot;250&quot;&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;&lt;/p&gt;&lt;p&gt;However when I click on update the link moves to only be surrounding the image so you don't get any hover or click through over the heading which I wanted. Any way around that?&lt;/p&gt;&lt;p&gt;Cheers&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: TinyMCE messing with my links  | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/21060&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/21060&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Fri, 05 Oct 2012 02:30:06 +1300</pubDate>
			<dc:creator>markeaston</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/21060</guid>
		</item>
		
		<item>
			<title>show page in default language when there is no translation</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/20678</link>
			<description>&lt;p&gt;I have a a site with many pages and I'm in the process of translating some pages in about 6 languages.  Many pages will not be translated and will just be in English (default language). However when I choose a different language then the non-translated pages are hidden/ not available.&lt;br /&gt;Is there an option to show the page in the default language when a page is not (yet) translated instead of hiding it?&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: show page in default language when there is no translation | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/20678&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/20678&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Wed, 22 Aug 2012 23:58:38 +1200</pubDate>
			<dc:creator>lxer</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/20678</guid>
		</item>
		
		<item>
			<title>Re: SS3: Images for content editors</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/20321#post316064</link>
			<description>&lt;p&gt;I agree with the above. My problem is that the first time I tried to resize an image once it was on the the editor panel, I wasn't able to change the size. There is no way to edit the size without jumping into the html mode, or re-uploading a resized image, or resizing the proportion in the image editor.&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: SS3: Images for content editors | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/20321#post316064&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/20321&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Wed, 15 Aug 2012 22:27:56 +1200</pubDate>
			<dc:creator>Graphicator</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/20321#post316064</guid>
		</item>
		
		<item>
			<title>SS3: Images for content editors</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/20321</link>
			<description>&lt;p&gt;I have used SS2.x.x for a while.&lt;/p&gt;&lt;p&gt;I set up a new site to trial SS3.&lt;/p&gt;&lt;p&gt;I am finding the usability for inserting images into the editor very clumsy &amp;amp; way too many clicks.  Pretty yes, quick &amp;amp; productive, no.&lt;/p&gt;&lt;p&gt;I've just added some images to a page, and frankly it was painful and felt very non productive.&lt;/p&gt;&lt;p&gt;Is this a the appropriate place to give more detailed feedback on issues such as this?&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: SS3: Images for content editors | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/20321&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/20321&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Thu, 19 Jul 2012 11:58:26 +1200</pubDate>
			<dc:creator>Flipper</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/20321</guid>
		</item>
		
		<item>
			<title>Macrons enabled but not saving</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/20155</link>
			<description>&lt;p&gt;Hello, I have enabled the macron plugin for the editor in 2.4.5&lt;br /&gt;The plugin works to insert the char in the field, but is scrubbed and replaced with the comparable non-macron character upon save.&lt;/p&gt;&lt;p&gt;The really frustrating bit is that the same plugin works very happily in a 2.4 installation.&lt;/p&gt;&lt;p&gt;Any ideas why this is occurring?&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: Macrons enabled but not saving | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/20155&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/20155&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Thu, 28 Jun 2012 16:31:44 +1200</pubDate>
			<dc:creator>zoose</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/20155</guid>
		</item>
		
		<item>
			<title>Problem with custom URL</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/20081</link>
			<description>&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;Anytime I enter anything with string &quot;miejsca&quot; to URL I cannot get to that page. I'm redirected to Page Not Found ( but not the one that I've set-up ).&lt;br /&gt;Does anyone have any idea why it's happening?&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: Problem with custom URL | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/20081&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/20081&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Wed, 20 Jun 2012 22:02:22 +1200</pubDate>
			<dc:creator>Zonczak</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/20081</guid>
		</item>
		
		<item>
			<title>Re: problem pasting in tables from word</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/19623#post313124</link>
			<description>&lt;p&gt;That's exactly what i did and it keeps the messy html code that word generates.&lt;br /&gt;I found a pretty decent solution though. Just take the table (from Excel) and past it in  this website&lt;br /&gt;&lt;a href=&quot;http://www.shancarter.com/data_converter/&quot; rel=&quot;nofollow&quot;&gt;http://www.shancarter.com/data_converter/&lt;/a&gt;&lt;/p&gt;&lt;p&gt;It cleans up the code pretty nicely....&lt;/p&gt;&lt;p&gt;But.... @Microsoft...please let your products generate decent html...&lt;/p&gt;&lt;p&gt;Guy&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: problem pasting in tables from word | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/19623#post313124&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/19623&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Sat, 07 Apr 2012 01:19:48 +1200</pubDate>
			<dc:creator>Guy Van Bael</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/19623#post313124</guid>
		</item>
		
		<item>
			<title>Re: problem pasting in tables from word</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/19623#post313094</link>
			<description>&lt;p&gt;How about opening the HTML in a popup and pasting the raw HTML in there?&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: problem pasting in tables from word | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/19623#post313094&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/19623&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Thu, 05 Apr 2012 21:09:09 +1200</pubDate>
			<dc:creator>swaiba</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/19623#post313094</guid>
		</item>
		
		<item>
			<title>problem pasting in tables from word</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/19623</link>
			<description>&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;I encountered a problem when pasting in tables from word in de $content-field (tinymce-editor). When pasting, it keeps the formatting from word which causes the table to exceed the content div. I also can't use the &quot;paste as plain text&quot;-option, because then it isn't a table anymore.&lt;/p&gt;&lt;p&gt;Does anyone have a solution?&lt;/p&gt;&lt;p&gt;Thanks,&lt;br /&gt;Guy&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: problem pasting in tables from word | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/19623&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/19623&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Thu, 05 Apr 2012 19:09:20 +1200</pubDate>
			<dc:creator>Guy Van Bael</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/19623</guid>
		</item>
		
		<item>
			<title>Re: Using the CMS with iPad</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/18756#post312717</link>
			<description>&lt;p&gt;Can't follow that link from my ipad neither  &lt;img src='http://www.silverstripe.org/sapphire/images/smilies/smile.gif'&gt;  &lt;/p&gt;&lt;p&gt;Just tried TinyMCE from pad ii with v3 - still the same issue, have to exit keyboard on cursormove to be able to type again..&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: Using the CMS with iPad | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/18756#post312717&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/18756&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Mon, 19 Mar 2012 00:48:31 +1300</pubDate>
			<dc:creator>martimiz</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/18756#post312717</guid>
		</item>
		
		<item>
			<title>Accessibility improvements  for the CMS</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/19507</link>
			<description>&lt;p&gt;I am planing to imrove the accessibility features of the CMS as a GSoC project. So If you have any suggestions regarding to accessibility improvements post here. Then I will be able to work on them. Thank you!&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: Accessibility improvements  for the CMS | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/19507&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/19507&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Sun, 18 Mar 2012 16:20:41 +1300</pubDate>
			<dc:creator>Prabhath</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/19507</guid>
		</item>
		
		<item>
			<title>Re: Using the CMS with iPad</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/18756#post312606</link>
			<description>&lt;p&gt;Not 2.4.x, but still relevant I think...&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;https://groups.google.com/forum/?fromgroups#!topic/silverstripe-dev/5J1xUap5y9g&quot; rel=&quot;nofollow&quot;&gt;https://groups.google.com/forum/?fromgroups#!topic/silverstripe-dev/5J1xUap5y9g&lt;/a&gt;&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: Using the CMS with iPad | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/18756#post312606&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/18756&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Thu, 15 Mar 2012 01:59:20 +1300</pubDate>
			<dc:creator>swaiba</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/18756#post312606</guid>
		</item>
		
		<item>
			<title>Re: Using the CMS with iPad</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/18756#post312584</link>
			<description>&lt;p&gt;Just tried with the latest version of iOS (5.1) and SS 2.4.7 on a 1st gen iPad. I didn't do a full test but I could edit text in TinyMCE quite happily. Moving the cursor while the keypad was showing worked fine and I could save the resulting page. Everything 'just worked' so Apple must have been busy with fixes in that last update.&lt;/p&gt;&lt;p&gt;This isn't a full test so I wouldn't be saying to clients its fully compatible with the iPad but certainly I'd say is quite usable with limitations e.g. no file upload. (but adding an image already in assets was OK.)&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: Using the CMS with iPad | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/18756#post312584&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/18756&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Wed, 14 Mar 2012 16:43:10 +1300</pubDate>
			<dc:creator>Bruce B</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/18756#post312584</guid>
		</item>
		
		<item>
			<title>Inserting HTML5</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/19171</link>
			<description>&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;I've recently created and exported the HTML5 data in and out of Tumult Hype.&lt;br /&gt;How can I insert the &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;div&amp;gt; code to my homepage in Silverstripe?&lt;/p&gt;&lt;p&gt;Any help/advice appreciated.&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: Inserting HTML5 | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/19171&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/19171&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Fri, 10 Feb 2012 00:37:53 +1300</pubDate>
			<dc:creator>mdre83</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/19171</guid>
		</item>
		
		<item>
			<title>Can&#39;t Move Pages</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/19096</link>
			<description>&lt;p&gt;Hello,&lt;/p&gt;&lt;p&gt;I can't move pages around on my website.  The guidance I have says I ought to tick the checkbox saying &quot;Allow drag &amp;amp; drop reordering&quot; but I can't see this checkbox.&lt;/p&gt;&lt;p&gt;Is there another way to move pages? Is there something I can do to see the checkbox?&lt;/p&gt;&lt;p&gt;Many thanks!&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: Can&amp;#39;t Move Pages | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/19096&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/19096&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Fri, 27 Jan 2012 04:21:39 +1300</pubDate>
			<dc:creator>Greensuffolk</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/19096</guid>
		</item>
		
		<item>
			<title>Re: Anchor Tags in HTMLEditor [SOLVED]</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/17687#post311089</link>
			<description>&lt;p&gt;I was able to figure it out thanks to this thread &lt;a href=&quot;http://www.silverstripe.org/template-questions/show/9583&quot; rel=&quot;nofollow&quot;&gt;http://www.silverstripe.org/template-questions/show/9583&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;div class=&quot;codesnippet&quot;&gt;&lt;p&gt;SSViewer::setOption('rewriteHashlinks', false);&lt;/p&gt;&lt;/div&gt;&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: Anchor Tags in HTMLEditor [SOLVED] | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/17687#post311089&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/17687&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Fri, 13 Jan 2012 11:14:50 +1300</pubDate>
			<dc:creator>Media Contour</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/17687#post311089</guid>
		</item>
		
		<item>
			<title>Re: Anchor Tags in HTMLEditor [SOLVED]</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/17687#post311040</link>
			<description>&lt;p&gt;can you give an example?&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: Anchor Tags in HTMLEditor [SOLVED] | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/17687#post311040&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/17687&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Thu, 12 Jan 2012 11:19:48 +1300</pubDate>
			<dc:creator>gemmaf</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/17687#post311040</guid>
		</item>
		
		<item>
			<title>Re: Showing my HTML Editor Problem In Opera v.11.01</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/15649#post310927</link>
			<description>&lt;p&gt;Hi.&lt;/p&gt;&lt;p&gt;I have seen the same problem with Opera 11.60.&lt;/p&gt;&lt;p&gt;The error I am having is due to an error in a javascript workaround in a file that is included with Opera. I tried to collect as much information that I could, and submitted a bug report to Opera. &lt;/p&gt;&lt;p&gt;The error message that I get is:&lt;br /&gt;&lt;div class=&quot;codesnippet&quot;&gt;&lt;p&gt;TinyMCE detected. Various fixes applied. See browser.js for details&lt;br /&gt;Uncaught exception: TypeError: 'this' is not coercible to object&lt;/p&gt;&lt;p&gt;Error thrown at line 477, column 5 in &amp;lt;anonymous function&amp;gt;(e) in browser.js:&lt;br /&gt;    if( match.call(e.event.target.tagName, /iframe/i) &amp;amp;&amp;amp; ( match.call(e.event.target.name, /^mce_editor_\d/ ) || match.call(e.event.target.id, /^mce_editor_\d/ )))&lt;/p&gt;&lt;/div&gt;&lt;/p&gt;&lt;p&gt;The full code in Opera looks like this:&lt;br /&gt;&lt;div class=&quot;codesnippet&quot;&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;postError.call(opera, 'TinyMCE detected. Various fixes applied. See browser.js for details');&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;addEventListener.call(opera, 'BeforeScript', function(e){&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;indexOf.call=removeEventListener.call=call;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if( indexOf.call(e.element.src, 'tiny_mce'&amp;gt;-1) ){&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;setTinyMCEVersion(e);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;sendOperaEvent( 'bjsOnTinyMCEScript', e.element );&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}, false);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;addEventListener.call(opera, 'BeforeEvent.load', function(e){&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;match.call=call;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;if( match.call(e.event.target.tagName, /iframe/i) &amp;amp;&amp;amp; ( match.call(e.event.target.name, /^mce_editor_\d/ ) || match.call(e.event.target.id, /^mce_editor_\d/ ))){&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;setTinyMCEVersion();&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;sendOperaEvent('bjsOnTinyMCEInstance', e.event.target);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}, false);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;fixed=true;&lt;/p&gt;&lt;/div&gt;&lt;/p&gt;&lt;p&gt;Anyone has any idea how to do a fix/workaround for this in the tinycme code?&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: Showing my HTML Editor Problem In Opera v.11.01 | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/15649#post310927&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/15649&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Mon, 09 Jan 2012 09:58:03 +1300</pubDate>
			<dc:creator>hagar</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/15649#post310927</guid>
		</item>
		
		<item>
			<title>Re: Using the CMS with iPad</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/18756#post310754</link>
			<description>&lt;p&gt;At first I gave up right away because I couldn't get TinyMCE to work consistently. Later I found I can at least edit some text - as long as I don't move the cursor while the keyboard is active, so: hide the keyboard then try to position the cursor in one go. Doable but no party.&lt;/p&gt;&lt;p&gt;the CMS responds quickly, no problems there, and saving a page is no problem. Of course file uploads are not available. DOM seems to be working so far, haven't tried anything else so far, as I see this somewhat as a last resort...&lt;/p&gt;&lt;p&gt;[EDIT] hey, I see the new year has already started up in NZ.. Here we still have some 10,5 hours to go... Have a good one SilverStripers, cheers!!!&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: Using the CMS with iPad | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/18756#post310754&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/18756&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Sun, 01 Jan 2012 01:27:21 +1300</pubDate>
			<dc:creator>martimiz</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/18756#post310754</guid>
		</item>
		
		<item>
			<title>Linking an Image in Content Editor</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/18850</link>
			<description>&lt;p&gt;Hi All,&lt;/p&gt;&lt;p&gt;how can an Author link an Image within the content editor? (So the user can click on the image to get somewhere else).&lt;/p&gt;&lt;p&gt;Currently it's really hard to even mark the image within the editor. If u did and klick the link icon, the right link window opens. Within &quot;Link Text&quot; The image tag is shown, together with surrounding &amp;lt;p&amp;gt; tags. If u select the link target and klick 'insert link' nothing happens  &lt;img src='http://www.silverstripe.org/sapphire/images/smilies/sad.gif'&gt; &lt;br /&gt;Even in if you remove the p tags within 'link text'.&lt;/p&gt;&lt;p&gt;No idea how to handle this, ANY ideas?&lt;/p&gt;&lt;p&gt;any hint appreciated!&lt;/p&gt;&lt;p&gt;Regards&lt;br /&gt;SF&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: Linking an Image in Content Editor | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/18850&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/18850&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Tue, 20 Dec 2011 23:03:42 +1300</pubDate>
			<dc:creator>Silverfish</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/18850</guid>
		</item>
		
		<item>
			<title>SilverStripe does support CSS, Database connection and Web component without coding </title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/18799</link>
			<description>&lt;p&gt;Hi all,&lt;/p&gt;&lt;p&gt;SilverStripe does support CSS, Database connection and Web component without coding. I think there is need to use some library from PHP-GTK to make this work well.&lt;/p&gt;&lt;p&gt;The major objective of a CMS is Non-technical authoring. The platform has no switch between source code and design view. PHP-GTK will help to solve these issues and make it much more user friendly and doing much less coding.&lt;/p&gt;&lt;p&gt;Programming need to be made easier.&lt;/p&gt;&lt;p&gt;Looking forward to your suggestions soon all.&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: SilverStripe does support CSS, Database connection and Web component without coding  | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/18799&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/18799&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Tue, 13 Dec 2011 13:16:45 +1300</pubDate>
			<dc:creator>ab2sure</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/18799</guid>
		</item>
		
		<item>
			<title>Using the CMS with iPad</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/18756</link>
			<description>&lt;p&gt;It's time to resurrect this issue. With the release of iPad 2 and the fact that it's been about a year since anyone last talked about the CMS + iPads (at least, that's what my search turned up).&lt;/p&gt;&lt;p&gt;Has anyone had any luck running the CMS flawlessly on the iPad lately? I don't own one myself, so I'm wondering.&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: Using the CMS with iPad | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/18756&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/18756&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Tue, 06 Dec 2011 12:06:47 +1300</pubDate>
			<dc:creator>Ryan M.</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/18756</guid>
		</item>
		
		<item>
			<title>Re: Image Alignment/Style pulldown disabled...why?</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/13582#post310032</link>
			<description>&lt;p&gt;Hi Patrick,&lt;/p&gt;&lt;p&gt;I'm banging my head against this problem too, along with trying to get the alignment settings to work at all! Did you find a solution?&lt;/p&gt;&lt;p&gt;Thanks,&lt;/p&gt;&lt;p&gt;David&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: Image Alignment/Style pulldown disabled...why? | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/13582#post310032&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/13582&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Fri, 25 Nov 2011 12:31:19 +1300</pubDate>
			<dc:creator>davepolyester</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/13582#post310032</guid>
		</item>
		
		<item>
			<title>Re: Images &quot;Alignment / style&quot; dropdown</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/17279#post309005</link>
			<description>&lt;p&gt;Hi Johan,&lt;/p&gt;&lt;p&gt;I have the same problem and I can't figure out why the field stops working.&lt;/p&gt;&lt;p&gt;The trick I use is to click Insert Image button to hide the side panel and click it again to redisplay the panel; in this case the button works again.&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: Images &amp;quot;Alignment / style&amp;quot; dropdown | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/17279#post309005&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/17279&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Tue, 25 Oct 2011 08:55:14 +1300</pubDate>
			<dc:creator>MitraX</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/17279#post309005</guid>
		</item>
		
		<item>
			<title>Re: Insert link in html editor. Unwanted html tag selected, cause runtime error, IE related. </title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/16493#post308689</link>
			<description>&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;I;ve just used the newer code provided here. it fixed the issues of selecting a whole paragraph line &amp;lt;p&amp;gt;,&lt;br /&gt;but i still get the error message when selecting the a full &amp;lt;li&amp;gt; item...&lt;br /&gt;not much of an issue, but thought i'd point it out...&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: Insert link in html editor. Unwanted html tag selected, cause runtime error, IE related.  | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/16493#post308689&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/16493&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Fri, 14 Oct 2011 10:41:23 +1300</pubDate>
			<dc:creator>Futureweb</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/16493#post308689</guid>
		</item>
		
		<item>
			<title>Re: Image uploader root folder</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/14397#post308150</link>
			<description>&lt;p&gt;Does anybody have a solution for this?&lt;/p&gt;&lt;p&gt;When the DataObjectManager is installed, the &quot;root&quot; assets folder is empty!&lt;/p&gt;&lt;p&gt;Thanks,&lt;/p&gt;&lt;p&gt;Jeremy&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: Image uploader root folder | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/14397#post308150&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/14397&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Tue, 27 Sep 2011 16:16:41 +1300</pubDate>
			<dc:creator>dynamite</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/14397#post308150</guid>
		</item>
		
		<item>
			<title>Anchor Tags in HTMLEditor [SOLVED]</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/17687</link>
			<description>&lt;p&gt;Whenever I add an anchor tag with an HREF in the HTMLEditor it gets removed leaving the content area with empty anchor tags. Any help?&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: Anchor Tags in HTMLEditor [SOLVED] | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/17687&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/17687&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Tue, 02 Aug 2011 04:11:59 +1200</pubDate>
			<dc:creator>Media Contour</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/17687</guid>
		</item>
		
		<item>
			<title>how to embed into 2.3.7 the motigo-counter</title>
			<link>http://www.silverstripe.org/content-editor-discussions/show/17394</link>
			<description>&lt;p&gt;Hello dear users,&lt;br /&gt;could any of you help me ?&lt;br /&gt;A PC-friend wrote:&lt;br /&gt;&quot; You might be able to turn that filtering off, or can try to edit the footer file to include the javascript   To get this to work you would need to download the full source code  and chop up the file and paste into both the page and the footer.  &lt;br /&gt;It's not going to be easy i'm afraid, but it is probably possible.  &lt;br /&gt;Sorry that I cannot be of more help since I'm limited to the demo version.  It might be worth asking on the Silver Stripe forums if there are any new work arounds for inserting javascript&quot;&lt;/p&gt;&lt;p&gt;Is that the only way out to get m´s counter work with &lt;a href=&quot;http://www.familiehoffmann.com.ar/newSite/&quot; rel=&quot;nofollow&quot;&gt;http://www.familiehoffmann.com.ar/newSite/&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Regards&lt;br /&gt;Jurgen&lt;/p&gt;

&lt;br /&gt;
&lt;p&gt;Posted to: how to embed into 2.3.7 the motigo-counter | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/show/17394&quot; class=&quot;showLink&quot;&gt;Show Thread&lt;/a&gt; | &lt;a href=&quot;http://www.silverstripe.org/content-editor-discussions/reply/17394&quot; class=&quot;replyLink&quot;&gt;Post Reply&lt;/a&gt;&lt;/p&gt;
</description>
			<pubDate>Thu, 07 Jul 2011 00:16:00 +1200</pubDate>
			<dc:creator>Jurgen12</dc:creator>
			<guid>http://www.silverstripe.org/content-editor-discussions/show/17394</guid>
		</item>
		

	</channel>
</rss>